diff --git a/celestial.js b/celestial.js index 95c9408..19c7d81 100644 --- a/celestial.js +++ b/celestial.js @@ -1,7 +1,7 @@ // Copyright 2015-2020 Olaf Frohn https://github.com/ofrohn, see LICENSE !(function() { var Celestial = { - version: '0.7.15', + version: '0.7.16', container: null, data: [] }; @@ -577,7 +577,7 @@ Celestial.display = function(config) { var dt = Celestial.date(), o = Celestial.origin(dt).spherical(); container.selectAll(".planet").each(function(d) { - var id = d.id(), r = 6, + var id = d.id(), r = 12, p = d(dt).equatorial(o), pos = transformDeg(p.ephemeris.pos, euler[cfg.transform]); //transform; if (clip(pos)) { @@ -586,15 +586,14 @@ Celestial.display = function(config) { if (cfg.planets.symbolType === "letter") { setTextStyle(cfg.planets.symbolStyle); context.fillStyle = sym.fill; - context.fillText(sym.letter, pt[0], pt[1]); + context.fillText(sym.letter, pt[0], pt[1]); } else if (id === "lun") { - Canvas.symbol().type("crescent").size(144).age(p.ephemeris.age).position(pt)(context); + if (has(sym, "size") && isNumber(sym.size)) r = sym.size; + Canvas.symbol().type("crescent").size(r*r).age(p.ephemeris.age).position(pt)(context); } else if (cfg.planets.symbolType === "disk") { - r = planetSize(p.ephemeris); + r = has(sym, "size") && isNumber(sym.size) ? sym.size : planetSize(p.ephemeris); context.fillStyle = sym.fill; - context.beginPath(); - context.arc(pt[0], pt[1], r, 0, 2 * Math.PI); - context.closePath(); + Canvas.symbol().type("circle").size(r*r).position(pt)(context); context.fill(); } else if (cfg.planets.symbolType === "symbol") { setTextStyle(cfg.planets.symbolStyle); @@ -607,7 +606,7 @@ Celestial.display = function(config) { setTextStyle(cfg.planets.nameStyle); //context.direction = "ltr" || "rtl" ar il ir context.fillStyle = sym.fill; - context.fillText(name, pt[0] - r, pt[1] + r); + context.fillText(name, pt[0] - r/2, pt[1] + r/2); } } }); @@ -1587,11 +1586,11 @@ var settings = { which: ["sol", "mer", "ven", "ter", "lun", "mar", "jup", "sat", "ura", "nep", "cer", "plu"], // Symbols as unicode codepoints, letter abbreviations and colors to be displayed symbols: { - "sol": {symbol: "\u2609", letter:"Su", fill: "#ffff00"}, + "sol": {symbol: "\u2609", letter:"Su", fill: "#ffff00", size: 12}, "mer": {symbol: "\u263f", letter:"Me", fill: "#cccccc"}, "ven": {symbol: "\u2640", letter:"V", fill: "#eeeecc"}, "ter": {symbol: "\u2295", letter:"T", fill: "#00ccff"}, - "lun": {symbol: "\u25cf", letter:"L", fill: "#ffffff"}, + "lun": {symbol: "\u25cf", letter:"L", fill: "#ffffff", size: 12}, "mar": {symbol: "\u2642", letter:"Ma", fill: "#ff6600"}, "cer": {symbol: "\u26b3", letter:"C", fill: "#cccccc"}, "ves": {symbol: "\u26b6", letter:"Ma", fill: "#cccccc"}, @@ -2466,9 +2465,6 @@ function form(cfg) { col.append("br"); -// col.append("label").attr("for", "dsos-names").html("Show names"); -// col.append("input").attr("type", "checkbox").attr("id", "dsos-names").property("checked", config.dsos.names).on("change", apply); - names = formats.dsonames[config.culture] || formats.dsonames.iau; for (fld in names) { @@ -2491,10 +2487,7 @@ function form(cfg) { col.append("label").attr("for", "dsos-" + fld).html("names"); col.append("input").attr("type", "checkbox").attr("id", "dsos-" + fld).property("checked", config.dsos[fld]).on("change", apply); } - -// col.append("label").attr("for", "dsos-desig").html("or designations"); -// col.append("input").attr("type", "checkbox").attr("id", "dsos-desig").property("checked", config.dsos.desig).on("change", apply); - + col.append("label").attr("for", "dsos-nameLimit").html("down to mag"); col.append("input").attr("type", "number").attr("id", "dsos-nameLimit").attr("title", "DSO name display limit (magnitude)").attr("value", config.dsos.nameLimit).attr("max", "6").attr("min", "0").attr("step", "0.1").on("change", apply); col.append("br"); @@ -2542,14 +2535,6 @@ function form(cfg) { col.append("input").attr("type", "checkbox").attr("id", "constellations-" + fld).attr("class", "advanced").property("checked", config.constellations[fld]).on("change", apply); } } - - /* - col.append("label").attr("for", "constellations-names").html("Show names"); - col.append("input").attr("type", "checkbox").attr("id", "constellations-names").property("checked", config.constellations.names).on("change", apply); - - col.append("label").attr("for", "constellations-desig").html("abbreviated"); - col.append("input").attr("type", "checkbox").attr("id", "constellations-desig").property("checked", config.constellations.desig).on("change", apply); - */ col.append("label").attr("for", "constellations-lines").html(" lines"); col.append("input").attr("type", "checkbox").attr("id", "constellations-lines").property("checked", config.constellations.lines).on("change", apply); @@ -3020,7 +3005,7 @@ function setLimits() { res.d = parseFloat(t[t.length-1]); } - if (res.d != 6) { + if (res.d !== 6) { $("dsos-limit").max = res.d; $("dsos-nameLimit").max = res.d; } @@ -3114,18 +3099,17 @@ function geo(cfg) { zenith = [0,0], geopos = [0,0], date = new Date(), - zone = date.getTimezoneOffset(), + localZone = date.getTimezoneOffset(), + timeZone = localZone, config = settings.set(cfg), frm = d3.select("#celestial-form form").insert("div", "div#general").attr("id", "loc"); var dtpick = new datetimepicker(config, function(date, tz) { $("datetime").value = dateFormat(date, tz); - zone = tz; + timeZone = tz; go(); }); - //var tzone = timezones(); - if (has(config, "geopos") && config.geopos !== null && config.geopos.length === 2) geopos = config.geopos; var col = frm.append("div").attr("class", "col").attr("id", "location").style("display", "none"); //Latitude & longitude fields @@ -3146,18 +3130,18 @@ function geo(cfg) { col.append("label").attr("title", "Local date/time").attr("for", "datetime").html(" Date/time"); col.append("input").attr("type", "button").attr("id", "day-left").attr("title", "One day back").on("click", function () { date.setDate(date.getDate() - 1); - $("datetime").value = dateFormat(date, zone); + $("datetime").value = dateFormat(date, timeZone); go(); }); - col.append("input").attr("type", "text").attr("id", "datetime").attr("title", "Date and time").attr("value", dateFormat(date, zone)) + col.append("input").attr("type", "text").attr("id", "datetime").attr("title", "Date and time").attr("value", dateFormat(date, timeZone)) .on("click", showpick, true).on("input", function () { - this.value = dateFormat(date, zone); + this.value = dateFormat(date, timeZone); if (!dtpick.isVisible()) showpick(); }); col.append("div").attr("id", "datepick").on("click", showpick); col.append("input").attr("type", "button").attr("id", "day-right").attr("title", "One day forward").on("click", function () { date.setDate(date.getDate() + 1); - $("datetime").value = dateFormat(date, zone); + $("datetime").value = dateFormat(date, timeZone); go(); }); //Now -button sets current time & date of device @@ -3214,7 +3198,7 @@ function geo(cfg) { function now() { date.setTime(Date.now()); - $("datetime").value = dateFormat(date, zone); + $("datetime").value = dateFormat(date, timeZone); go(); } @@ -3277,13 +3261,16 @@ function geo(cfg) { //Celestial.apply(config); if (!isNaN(lon) && !isNaN(lat)) { - //if (lat !== geopos[0] || lon !== geopos[1]) tz = Celestial.getTimezone([lat, lon]); - if (!tz) tz = date.getTimezoneOffset(); - else $("datetime").value = dateFormat(date, tz); + if (lat !== geopos[0] || lon !== geopos[1]) { + geopos = [lat, lon]; + setPosition([lat, lon]); + return; + } + //if (!tz) tz = date.getTimezoneOffset(); + $("datetime").value = dateFormat(date, timeZone); - var dtc = new Date(date.valueOf() + (zone - tz) * 60000); + var dtc = new Date(date.valueOf() + (localZone - timeZone) * 60000); - geopos = [lat, lon]; zenith = Celestial.getPoint(horizontal.inverse(dtc, [90, 0], geopos), config.transform); zenith[2] = 0; if (config.follow === "zenith") { @@ -3294,61 +3281,72 @@ function geo(cfg) { } } - Celestial.getPosition = function (p) { - - }; + + function setPosition(p) { + if (!p) return; + var url = "http://api.timezonedb.com/v2.1/get-time-zone?key=AEFXZPQ3FDPF&format=json&by=position"; + url += "&lat=" + p[0] + "&lng=" + p[1]; + url += "&time=" + Math.floor(date.getTime() / 1000); + + d3.json(url, function(error, json) { + if (error) return console.warn(error); + timeZone = json.gmtOffset / 60; + go(); + }); + } Celestial.dateFormat = dateFormat; Celestial.date = function (dt, tz) { if (!dt) return date; - zone = tz || zone; + timeZone = tz || timeZone; Object.assign(config, settings.set()); if (dtpick.isVisible()) dtpick.hide(); date.setTime(dt.valueOf()); - $("datetime").value = dateFormat(dt, zone); + $("datetime").value = dateFormat(dt, timeZone); go(); }; Celestial.timezone = function (tz) { - if (!tz) return zone; - zone = tz || zone; + if (!tz) return timeZone; + timeZone = tz || timeZone; Object.assign(config, settings.set()); if (dtpick.isVisible()) dtpick.hide(); - $("datetime").value = dateFormat(date, zone); + $("datetime").value = dateFormat(date, timeZone); go(); }; Celestial.position = function () { return geopos; }; Celestial.location = function (loc) { if (!loc || loc.length < 2) return geopos; - if (isValidLocation(config.location)) { - geopos = config.location.slice(); + if (isValidLocation(loc)) { + geopos = loc.slice(); $("lat").value = geopos[0]; $("lon").value = geopos[1]; - go(); + setPosition(geopos); } }; //{"date":dt, "location":loc, "timezone":tz} Celestial.skyview = function (cfg) { - if (!cfg) return {"date": date, "location": geopos, "timezone": zone}; + if (!cfg) return {"date": date, "location": geopos, "timezone": timeZone}; var valid = false; if (dtpick.isVisible()) dtpick.hide(); - if (has(cfg, "date") && isValidDate(cfg.date)) { - date.setTime(cfg.date.valueOf()); - $("datetime").value = dateFormat(cfg.date, zone); + if (has(cfg, "timezone") && isNumber(cfg.timezone) && Math.abs(cfg.timezone) <= 14) { + timeZone = cfg.timezone; valid = true; } - if (has(cfg, "timezone") && isNumber(cfg.timezone) && Math.abs(cfg.timezone) <= 14) { - zone = cfg.timezone; + if (has(cfg, "date") && isValidDate(cfg.date)) { + date.setTime(cfg.date.valueOf()); + $("datetime").value = dateFormat(cfg.date, timeZone); valid = true; } if (has(cfg, "date") && isValidLocation(cfg.location)) { geopos = cfg.location.slice(); $("lat").value = geopos[0]; $("lon").value = geopos[1]; - valid = true; + setPosition(geopos); + return; } //Celestial.updateForm(); - if (valid === false) return {"date": date, "location": geopos, "timezone": zone}; + if (valid === false) return {"date": date, "location": geopos, "timezone": timeZone}; if (config.follow === "zenith") go(); else Celestial.redraw(); }; @@ -5100,66 +5098,6 @@ function saveSVG(fname) { }); } -function timezones() { - var cfg = settings.set(), - world, timezone; - d3.json(cfg.datapath + "timezones.json", function(error, json) { - world = topojson.feature(json, json.objects.timezones); - - Celestial.container.selectAll(".timezones") - .data(world.features) - .enter().append("path") - .attr("class", "tz"); - }); - - function getTimezone(pos) { - var tz; - Celestial.container.selectAll(".tz").each( function(d,i) { - if (pointInPolygon(pos, d.geometry.coordinates[0])) { - tz = getMinutes(d.properties.zone); - return false; - } - }); - return tz; - } - - function getMinutes(s) { - if (!s) return; - /*var tza = s.match(/UTC([\+\-])(\d+)\:(\d+)/); - if (tza === null) return; - var tzm = parseInt(tza[2]) * 60 + parseInt(tza[3]); - if (tza[1] === "-") tzm *= -1;*/ - return parseFloat(s) * 60; - } - - function pointInPolygon(p, polygon) { - var isInside = false; - var minX = polygon[0][0], maxX = polygon[0][0]; - var minY = polygon[0][1], maxY = polygon[0][1]; - for (var n = 1; n < polygon.length; n++) { - var q = polygon[n]; - minX = Math.min(q[0], minX); - maxX = Math.max(q[0], maxX); - minY = Math.min(q[1], minY); - maxY = Math.max(q[1], maxY); - } - - if (p[0] < minX || p[0] > maxX || p[1] < minY || p[1] > maxY) { - return false; - } - - var i = 0, j = polygon.length - 1; - for (i, j; i < polygon.length; j = i++) { - if ( (polygon[i][1] > p[1]) != (polygon[j][1] > p[1]) && - p[0] < (polygon[j][0] - polygon[i][0]) * (p[1] - polygon[i][1]) / (polygon[j][1] - polygon[i][1]) + polygon[i][0] ) { - isInside = !isInside; - } - } - - return isInside; - } - Celestial.getTimezone = getTimezone; -} var datetimepicker = function(cfg, callback) { var date = new Date(), tzFormat = d3.time.format("%Z"), diff --git a/celestial.min.js b/celestial.min.js index 870bfde..f0b52ca 100644 --- a/celestial.min.js +++ b/celestial.min.js @@ -1,5 +1,5 @@ // Copyright 2015-2020 Olaf Frohn https://github.com/ofrohn, see LICENSE -!function(){function t(t,e){function a(a,r){var s=t([a*=180/Math.PI,r*=180/Math.PI]),o=e([a,r]);return[(1-n)*s[0]+n*o[0],(n-1)*s[1]-n*o[1]]}var n,r=d3.geo.projection(a).scale(1),s=r.center,o=r.translate;return r.alpha=function(a){if(!arguments.length)return n;n=+a;var i=t.center(),l=e.center(),c=t.translate(),p=e.translate();return s([(1-n)*i[0]+n*l[0],(1-n)*i[1]+n*l[1]]),o([(1-n)*c[0]+n*p[0],(1-n)*c[1]+n*p[1]]),r},delete r.translate,delete r.center,r.alpha(0)}function e(t,e){return a(t.map(function(t){return t*ht}),e).map(function(t){return t/ht})}function a(t,e){var a,n,r,s,o,i,l,c,p,d;return e?(i=t[0],i<0&&(i+=ut),l=t[1],i-=e[0],s=e[1],o=e[2],a=Math.sin(l)*Math.sin(s)-Math.cos(l)*Math.cos(s)*Math.cos(i),Math.abs(a)<1e-5&&(a=-Math.cos(l+s)+Math.cos(l)*Math.cos(s)*(1-Math.cos(i))),n=-Math.cos(l)*Math.sin(i),c=0!==a||0!==n?Math.atan2(n,a):i-Math.PI,p=o+c,p>Math.PI&&(p-=ut),i%Math.PI==0?(d=l+Math.cos(i)*s,d>ft&&(d=Math.PI-d),d<-ft&&(d=-Math.PI-d)):(r=Math.sin(l)*Math.cos(s)+Math.cos(l)*Math.sin(s)*Math.cos(i),Math.abs(r)>.99?(d=Math.abs(Math.acos(Math.sqrt(a*a+n*n))),r<0&&(d*=-1)):d=Math.asin(r)),[p,d]):t}function n(t){if(null===t||t.length<=0)return[0,0,0];var e=pt.equatorial;return t[2]||(t[2]=0),[e[0]-t[0],e[1]-t[1],e[2]+t[2]]}function r(t,e){var a=t.getUTCFullYear(),n=t.getUTCMonth()+1,r=t.getUTCDate(),s=t.getUTCHours(),o=t.getUTCMinutes(),i=t.getUTCSeconds();1!=n&&2!=n||(a-=1,n+=12);var l=Math.floor(a/100),c=2-l+Math.floor(l/4),p=Math.floor(365.25*a),d=Math.floor(30.6001*(n+1)),u=c+p+d-730550.5+r+(s+o/60+i/3600)/24,f=u/36525,h=280.46061837+360.98564736629*u+387933e-9*f*f-f*f*f/3871e4+e;if(h>0)for(;h>360;)h-=360;else for(;h<0;)h+=360;return h}function s(t,a){return e(t,mt[a])}function o(t,e){if("equatorial"===e)return t;for(var a=mt[e],n=t.features,r=0;r=3?t:void 0:[t,t,t]}function v(t){return document.getElementById(t)}function M(t){return t+"px"}function b(t,e){return Math.round(Math.pow(10,e)*t)/Math.pow(10,e)}function w(t){return t<10?"0"+t:t}function k(t,e){return null!==t&&hasOwnProperty.call(t,e)}function x(t){return!isNaN(parseFloat(t))&&isFinite(t)}function z(t){return null!==t&&"[object Array]"===Object.prototype.toString.call(t)}function T(t){var e=typeof t;return"function"===e||"object"===e&&!!t}function S(t){return t&&t instanceof Date&&!isNaN(t)}function j(t){var e=0,a=0;if(t.offsetParent)do{e+=t.offsetLeft,a+=t.offsetTop}while(null!==(t=t.offsetParent));return[e,a]}function P(t,e){for(;t.parentNode;){if(t.id===e)return!0;t=t.parentNode}return!1}function I(t,e,a){var n=e.valueOf()-t.valueOf();switch(a||"d"){case"y":case"yr":n/=31556926080;break;case"m":case"mo":n/=26298e5;break;case"d":case"dy":n/=864e5;break;case"h":case"hr":n/=36e5;break;case"n":case"mn":n/=6e4;break;case"s":case"sec":n/=1e3}return Math.floor(n)}function A(t){if(t){var e=t.split(".");if(!(e.length<1)&&(e=e[0].split("-"),e[0]=e[0].replace(/\D/g,""),e[0]))return e[1]=e[1]?e[1].replace(/\D/g,""):"1",e[2]=e[2]?e[2].replace(/\D/g,""):"1",new Date(Date.UTC(e[0],e[1]-1,e[2]))}}function q(t,e,a){return t=(t*ht+ut)%ut,e=(e*ht+ut)%ut,Math.abs(t-e)>Math.PI&&(t>e?t-=ut:e>t&&(e-=ut)),d3.interpolateNumber(t/ht,e/ht)}function L(t){function a(){var t=this,e=t.value;!1!==E(t)&&(m.width=e,Z.resize({width:e}))}function n(){var t=this,e=t.value,a=C(e,m.transform);null!==a&&(m.center[0]=a),m.transform=e,Mt.set(m),Z.reload(m)}function r(){var t=this;t&&(m.projection=t.value,Mt.set(m),Z.reproject(m))}function s(){!1!==E(this)&&!1!==o()&&Z.rotate(m)}function o(){var t=v("centerx"),e=v("centery"),a=v("centerz");if(t&&e){if("equatorial"!==m.transform)m.center[0]=parseFloat(t.value);else{var n=parseFloat(t.value);m.center[0]=n>12?15*n-360:15*n}m.center[1]=parseFloat(e.value);var r=parseFloat(a.value);return m.center[2]=isNaN(r)?0:r,""!==t.value&&""!==e.value}}function i(t){var e=d3.time.format("%Y%m%dT%H%M%S%Z"),a="d3-celestial",n=Z.date();return n&&(a+=e(n)),a+t}function l(){var t=this.value;t&&c(t)}function c(t){var a,n=[],r=vt;if("---"===t)return Z.constellation=null,a=Z.zoomBy(),1!==a&&n.push({param:"zoom",value:1/a,duration:0}),void Z.animate(n,!1);if(T(Z.constellations)&&k(Z.constellations,t)){var s=Z.constellations[t],o=e(s.center,mt[r.transform]);r.center=o,N(r.center,r.transform),a=Z.zoomBy(),1!==a&&n.push({param:"zoom",value:1/a,duration:0}),n.push({param:"center",value:o,duration:0});var i=1+360/s.scale;n.push({param:"zoom",value:i,duration:0}),Z.constellation=t,Z.animate(n,!1)}}function p(){var t,e=this;switch(Object.assign(m,Mt.set()),e.type){case"checkbox":t=e.checked,_(e);break;case"number":if(!1===E(e))return;t=parseFloat(e.value);break;case"color":if(!1===D(e))return;t=e.value;break;case"text":if(-1===e.id.search(/fill$/))return;if(!1===D(e))return;t=e.value;break;case"select-one":t=e.value}null!==t&&(d(e.id,t),"dsos-style-fill"===e.id?(d("dsos-style-stroke",t),d("dsos-nameStyle-fill",t)):"constellations-namesType"===e.id?B():"lang"===e.id?u(t):"advanced"===e.id&&G(t),o(),Object.assign(vt,m),Z.apply(m))}function d(t,e){var a=t.split("-");switch(a.length){case 1:m[a[0]]=e;break;case 2:m[a[0]][a[1]]=e;break;case 3:m[a[0]][a[1]][a[2]]=e;break;default:return}}function u(t){Object.assign(m,vt);for(var e=["constellations","planets"],a=0;a1?(S.append("label").attr("for","stars-"+q).html("Show"),P=0,S.append("label").attr("title","Type of star name").attr("for","stars-"+q+"Type").html(""),j=S.append("select").attr("id","stars-"+q+"Type").on("change",p),I=L.map(function(t,e){return t===m.stars[q+"Type"]&&(P=e),{o:t,n:A[q][t]}}),j.selectAll("option").data(I).enter().append("option").attr("value",function(t){return t.o}).text(function(t){return t.n}),j.property("selectedIndex",P),S.append("input").attr("type","checkbox").attr("id","stars-"+q).property("checked",m.stars[q]).on("change",p)):1===L.length&&(S.append("label").attr("for","stars-"+q).html(" "+A[q][L[0]]),S.append("input").attr("type","checkbox").attr("id","stars-"+q).property("checked",m.stars[q]).on("change",p)),S.append("label").attr("for","stars-"+q+"Limit").html("down to mag"),S.append("input").attr("type","number").attr("id","stars-"+q+"Limit").attr("title","Star name display limit (magnitude)").attr("value",m.stars[q+"Limit"]).attr("max","6").attr("min","-1").attr("step","0.1").on("change",p)}S.append("br"),S.append("label").attr("for","stars-size").attr("class","advanced").html("Stellar disk size: base"),S.append("input").attr("type","number").attr("id","stars-size").attr("class","advanced").attr("title","Size of the displayed star disk; base").attr("value",m.stars.size).attr("max","100").attr("min","0").attr("step","0.1").on("change",p),S.append("label").attr("for","stars-exponent").attr("class","advanced").html(" * e ^ (exponent"),S.append("input").attr("type","number").attr("id","stars-exponent").attr("class","advanced").attr("title","Size of the displayed star disk; exponent").attr("value",m.stars.exponent).attr("max","3").attr("min","-1").attr("step","0.01").on("change",p),S.append("span").attr("class","advanced").text(" * (magnitude + 2)) [* adaptation]"),_(v("stars-show")),S=x.append("div").attr("class","col").attr("id","dsos"),S.append("label").attr("class","header").attr("title","Deep Space Objects").attr("for","dsos-show").html("DSOs"),S.append("input").attr("type","checkbox").attr("id","dsos-show").property("checked",m.dsos.show).on("change",p),S.append("label").attr("for","dsos-limit").html("down to mag"),S.append("input").attr("type","number").attr("id","dsos-limit").attr("title","DSO display limit (magnitude)").attr("value",m.dsos.limit).attr("max","6").attr("min","0").attr("step","0.1").on("change",p),S.append("label").attr("for","dsos-colors").html("with symbol colors"),S.append("input").attr("type","checkbox").attr("id","dsos-colors").property("checked",m.dsos.colors).on("change",p),S.append("label").attr("for","dsos-color").html("or default color "),S.append("input").attr("type","color").attr("autocomplete","off").attr("id","dsos-style-fill").attr("title","DSO color").property("value",m.dsos.style.fill).on("change",p),S.append("br"),A=kt.dsonames[m.culture]||kt.dsonames.iau;for(q in A)if(k(A,q)){var O=Object.keys(A[q]);S.append("label").attr("for","dsos-"+q).html("Show"),P=0,S.append("label").attr("title","Type of DSO name").attr("for","dsos-"+q+"Type").attr("class","advanced").html(""),j=S.append("select").attr("id","dsos-"+q+"Type").attr("class","advanced").on("change",p),I=O.map(function(t,e){return t===m.stars[q+"Type"]&&(P=e),{o:t,n:A[q][t]}}),j.selectAll("option").data(I).enter().append("option").attr("value",function(t){return t.o}).text(function(t){return t.n}),j.property("selectedIndex",P),S.append("label").attr("for","dsos-"+q).html("names"),S.append("input").attr("type","checkbox").attr("id","dsos-"+q).property("checked",m.dsos[q]).on("change",p)}S.append("label").attr("for","dsos-nameLimit").html("down to mag"),S.append("input").attr("type","number").attr("id","dsos-nameLimit").attr("title","DSO name display limit (magnitude)").attr("value",m.dsos.nameLimit).attr("max","6").attr("min","0").attr("step","0.1").on("change",p),S.append("br"),S.append("label").attr("for","dsos-size").attr("class","advanced").html("DSO symbol size: (base"),S.append("input").attr("type","number").attr("id","dsos-size").attr("class","advanced").attr("title","Size of the displayed symbol: base").attr("value",m.dsos.size).attr("max","100").attr("min","0").attr("step","0.1").on("change",p),S.append("label").attr("for","dsos-exponent").attr("class","advanced").html(" * 2 [* adaptation] - magnitude) ^ exponent"),S.append("input").attr("type","number").attr("id","dsos-exponent").attr("class","advanced").attr("title","Size of the displayed symbol; exponent").attr("value",m.dsos.exponent).attr("max","3").attr("min","-1").attr("step","0.01").on("change",p),_(v("dsos-show")),S=x.append("div").attr("class","col").attr("id","constellations"),S.append("label").attr("class","header").html("Constellations"),A=kt.constellations[m.culture]||kt.constellations.iau;for(q in A)if(k(A,q)){var F=Object.keys(A[q]);F.length>1?(S.append("label").attr("for","constellations-"+q).html("Show"),P=0,S.append("label").attr("title","Language of constellation names").attr("for","constellations-"+q+"Type").attr("class","advanced").html(""),j=S.append("select").attr("id","constellations-"+q+"Type").attr("class","advanced").on("change",p),I=F.map(function(t,e){return t===m.constellations[q+"Type"]&&(P=e),{o:t,n:A[q][t]}}),j.selectAll("option").data(I).enter().append("option").attr("value",function(t){return t.o}).text(function(t){return t.n}),j.property("selectedIndex",P),S.append("label").attr("for","constellations-"+q).html("names"),S.append("input").attr("type","checkbox").attr("id","constellations-"+q).property("checked",m.constellations[q]).on("change",p)):1===F.length&&(S.append("label").attr("for","constellations-"+q).attr("class","advanced").html(" "+A[q][F[0]]),S.append("input").attr("type","checkbox").attr("id","constellations-"+q).attr("class","advanced").property("checked",m.constellations[q]).on("change",p))}S.append("label").attr("for","constellations-lines").html(" lines"),S.append("input").attr("type","checkbox").attr("id","constellations-lines").property("checked",m.constellations.lines).on("change",p),S.append("label").attr("for","constellations-bounds").html(" boundaries"),S.append("input").attr("type","checkbox").attr("id","constellations-bounds").property("checked",m.constellations.bounds).on("change",p),_(v("constellations-names")),S=x.append("div").attr("class","col").attr("id","lines"),S.append("label").attr("class","header").html("Lines"),S.append("label").attr("title","Latitude/longitude grid lines").attr("for","lines-graticule").html("Graticule"),S.append("input").attr("type","checkbox").attr("id","lines-graticule-show").property("checked",m.lines.graticule.show).on("change",p),S.append("label").attr("for","lines-equatorial").html("Equator"),S.append("input").attr("type","checkbox").attr("id","lines-equatorial-show").property("checked",m.lines.equatorial.show).on("change",p),S.append("label").attr("for","lines-ecliptic").html("Ecliptic"),S.append("input").attr("type","checkbox").attr("id","lines-ecliptic-show").property("checked",m.lines.ecliptic.show).on("change",p),S.append("label").attr("for","lines-galactic").html("Galactic plane"),S.append("input").attr("type","checkbox").attr("id","lines-galactic-show").property("checked",m.lines.galactic.show).on("change",p),S.append("label").attr("for","lines-supergalactic").html("Supergalactic plane"),S.append("input").attr("type","checkbox").attr("id","lines-supergalactic-show").property("checked",m.lines.supergalactic.show).on("change",p),S=x.append("div").attr("class","col").attr("id","other"),S.append("label").attr("class","header").html("Other"),S.append("label").attr("for","mw-show").html("Milky Way"),S.append("input").attr("type","checkbox").attr("id","mw-show").property("checked",m.mw.show).on("change",p),S.append("label").attr("for","mw-style-fill").attr("class","advanced").html(" color"),S.append("input").attr("type","color").attr("id","mw-style-fill").attr("class","advanced").attr("title","Milky Way color").attr("value",m.mw.style.fill).on("change",p),S.append("label").attr("for","mw-style-opacity").attr("class","advanced").html(" opacity"),S.append("input").attr("type","number").attr("id","mw-style-opacity").attr("class","advanced").attr("title","Transparency of each Milky Way layer").attr("value",m.mw.style.opacity).attr("max","1").attr("min","0").attr("step","0.01").on("change",p),S.append("label").attr("for","advanced").html("Advanced options"),S.append("input").attr("type","checkbox").attr("id","advanced").property("checked",m.advanced).on("change",p),S.append("br"),S.append("label").attr("for","background").html("Background color"),S.append("input").attr("type","color").attr("id","background-fill").attr("title","Background color").attr("value",m.background.fill).on("change",p),S.append("label").attr("title","Star/DSO sizes are increased with higher zoom-levels").attr("for","adaptable").attr("class","advanced").html("Adaptable object sizes"),S.append("input").attr("type","checkbox").attr("id","adaptable").attr("class","advanced").property("checked",m.adaptable).on("change",p);var V=xt[m.culture];P=0,S.append("label").attr("title","General language setting").attr("for","lang").html("Object names "),j=S.append("select").attr("id","lang").on("change",p),I=V.map(function(t,e){return t===m.lang&&(P=e),{o:t,n:kt.constellations[m.culture].names[t]}}),I=[{o:"---",n:"(Select language)"}].concat(I),j.selectAll("option").data(I).enter().append("option").attr("value",function(t){return t.o}).text(function(t){return t.n}),j.property("selectedIndex",P),S=x.append("div").attr("class","col").attr("id","download"),S.append("label").attr("class","header").html("Download"),S.append("input").attr("type","button").attr("id","download-png").attr("value","PNG Image").on("click",function(){var t=d3.select("body").append("a").node(),e=document.querySelector("#"+m.container+" canvas");t.download=i(".png"),t.rel="noopener",t.href=e.toDataURL("image/png").replace("image/png","image/octet-stream"),t.click(),d3.select(t).remove()}),S.append("input").attr("type","button").attr("id","download-svg").attr("value","SVG File").on("click",function(){return W(i(".svg")),!1}),H(),C(m.transform),U(t),G(m.advanced),Z.updateForm=f,Z.showConstellation=c,Z.setLanguage=function(t){var e=Mt.set();return-1!==xt[m.culture].indexOf(t)&&(e=u(t)),e}}function _(t){var e,a=t.id;switch(a){case"stars-show":e=!v(a).checked;for(var n=0;nt.max)return F(t,t.title+" must be between "+(t.min+a)+" and "+(+t.max-a)),!1}return d3.select("#error").style({top:"-9999px",left:"-9999px",opacity:0}),!0}function D(t){var e;if(t.validity){if(e=t.validity,e.typeMismatch||e.badInput)return F(t,t.title+": check field value"),!1;if(-1===t.value.search(/^#[0-9A-F]{6}$/i))return F(t,t.title+": not a color value"),!1}else{if(""===(e=t.value))return!0;if(-1===e.search(/^#[0-9A-F]{6}$/i))return F(t,t.title+": not a color value"),!1}return d3.select("#error").style({top:"-9999px",left:"-9999px",opacity:0}),!0}function C(t,e){var a=v("centerx");return a?(e&&("equatorial"===t&&"equatorial"!==e?(a.value=(a.value/15).toFixed(1),a.value<0&&(a.value+=24)):"equatorial"!==t&&"equatorial"===e&&(a.value=(15*a.value).toFixed(1),a.value>180&&(a.value-=360))),"equatorial"===t?(a.min="0",a.max="24",v("cxunit").innerHTML="h"):(a.min="-180",a.max="180",v("cxunit").innerHTML="°"),a.value):null}function N(t,e){var a=v("centerx"),n=v("centery"),r=v("centerz");a&&n&&((null===t||t.length<1)&&(t=[0,0,0]),(t.length<=2||void 0===t[2])&&(t[2]=0),a.value="equatorial"!==e?t[0].toFixed(1):t[0]<0?(t[0]/15+24).toFixed(1):(t[0]/15).toFixed(1),n.value=t[1].toFixed(1),r.value=null!==t[2]?t[2].toFixed(1):0,Mt.set({center:t}))}function H(){var t,e,a,n=/\d+(\.\d+)?/g,r={s:6,d:6},s=Z.settings();return a=s.dsos.data,t=a.match(n),null!==t&&(r.d=parseFloat(t[t.length-1])),6!=r.d&&(v("dsos-limit").max=r.d,v("dsos-nameLimit").max=r.d),e=s.stars.data,t=e.match(n),null!==t&&(r.s=parseFloat(t[t.length-1])),6!=r.s&&(v("stars-limit").max=r.s,v("stars-designationLimit").max=r.s,v("stars-propernameLimit").max=r.s),r}function G(t){var e=t?"inline-block":"none";d3.selectAll(".advanced").style("display",e)}function U(t,e){var a,n;if(k(t,"formFields")){if(e&&k(t.formFields,e))return void d3.select("#"+e).style({display:"none"});if(!1!==t.form||!0!==t.location){!1===t.form&&d3.select("#celestial-form").style("display","none");for(n in t.formFields)k(t.formFields,n)&&"location"!==n&&(a=!1===t.formFields[n]?"none":"block",d3.select("#"+n).style({display:a}))}else{d3.select("#celestial-form").style("display","inline-block");for(n in t.formFields)k(t.formFields,n)&&"location"!==n&&d3.select("#"+n).style({display:"none"})}}}function B(){var t,e,a=d3.select("#constellation"),n=[],r=0,s=vt;if(Z.container.selectAll(".constname").each(function(a,o){t=a.id,t===s.constellation&&(r=o),e=a.properties[s.constellations.namesType],e!==t&&(e+=" ("+t+")"),n.push({o:t,n:e})}),n.length<1||a.length<1)return void setTimeout(B,1e3);n=[{o:"---",n:"(Select constellation)"}].concat(n),a.selectAll("option").remove(),a.selectAll("option").data(n).enter().append("option").attr("value",function(t){return t.o}).text(function(t){return t.n}),a.property("selectedIndex",r)}function V(t){function e(){d.setTime(Date.now()),v("datetime").value=r(d,u),i()}function a(){navigator.geolocation.getCurrentPosition(function(t){p=[b(t.coords.latitude,4),b(t.coords.longitude,4)],v("lat").value=p[0],v("lon").value=p[1],i()})}function n(){m.show(d)}function r(t,e){var a;if(e&&"0"!==e){var n=Math.floor(Math.abs(e)/60),r=Math.abs(e)-60*n;a=(e<0?" +":" −")+w(n)+w(r)}else a=" ±0000";return l(t)+a}function s(t){return!(!t||!z(t)||t.length<2)&&(!(!x(t[0])||t[0]<-90||t[0]>90)&&!(!x(t[1])||t[1]<-180||t[1]>180))}function o(){Object.assign(f,Mt.set()),f.horizon.show=!!v("horizon-show").checked,f.daylight.show=!!v("daylight-show").checked,f.planets.show=!!v("planets-show").checked,f.planets.names=!!v("planets-names").checked,f.planets.namesType=v("planets-namesType").value,f.planets.symbolType=v("planets-symbolType").value,_(v("planets-show")),Z.apply(f)}function i(){var t,e=parseFloat(v("lon").value),a=parseFloat(v("lat").value);if(Object.assign(f,Mt.set()),d=l.parse(v("datetime").value.slice(0,-6)),!isNaN(e)&&!isNaN(a)){t?v("datetime").value=r(d,t):t=d.getTimezoneOffset();var n=new Date(d.valueOf()+6e4*(u-t));p=[a,e],c=Z.getPoint(yt.inverse(n,[90,0],p),f.transform),c[2]=0,"zenith"===f.follow?Z.rotate({center:c}):Z.redraw()}}var l=d3.time.format("%Y-%m-%d %H:%M:%S"),c=[0,0],p=[0,0],d=new Date,u=d.getTimezoneOffset(),f=Mt.set(t),h=d3.select("#celestial-form form").insert("div","div#general").attr("id","loc"),m=new Ft(f,function(t,e){v("datetime").value=r(t,e),u=e,i()});k(f,"geopos")&&null!==f.geopos&&2===f.geopos.length&&(p=f.geopos);var y=h.append("div").attr("class","col").attr("id","location").style("display","none");y.append("label").attr("title","Location coordinates long/lat").attr("for","lat").html("Location"),y.append("input").attr("type","number").attr("id","lat").attr("title","Latitude").attr("placeholder","Latitude").attr("max","90").attr("min","-90").attr("step","0.0001").attr("value",p[0]).on("change",function(){!0===E(this)&&i()}),y.append("span").html("°"),y.append("input").attr("type","number").attr("id","lon").attr("title","Longitude").attr("placeholder","Longitude").attr("max","180").attr("min","-180").attr("step","0.0001").attr("value",p[1]).on("change",function(){!0===E(this)&&i()}),y.append("span").html("°"),"geolocation"in navigator&&y.append("input").attr("type","button").attr("value","Here").attr("id","here").on("click",a),y.append("label").attr("title","Local date/time").attr("for","datetime").html(" Date/time"),y.append("input").attr("type","button").attr("id","day-left").attr("title","One day back").on("click",function(){d.setDate(d.getDate()-1),v("datetime").value=r(d,u),i()}),y.append("input").attr("type","text").attr("id","datetime").attr("title","Date and time").attr("value",r(d,u)).on("click",n,!0).on("input",function(){this.value=r(d,u),m.isVisible()||n()}),y.append("div").attr("id","datepick").on("click",n),y.append("input").attr("type","button").attr("id","day-right").attr("title","One day forward").on("click",function(){d.setDate(d.getDate()+1),v("datetime").value=r(d,u),i()}),y.append("input").attr("type","button").attr("value","Now").attr("id","now").on("click",e),y.append("br"),y.append("label").attr("title","Show horizon marker").attr("for","horizon-show").html(" Horizon marker"),y.append("input").attr("type","checkbox").attr("id","horizon-show").property("checked",f.horizon.show).on("change",o),y.append("label").attr("title","Show daylight").attr("for","daylight-show").html("Daylight sky"),y.append("input").attr("type","checkbox").attr("id","daylight-show").property("checked",f.daylight.show).on("change",o),y.append("br"),y.append("label").attr("title","Show solar system objects").attr("for","planets-show").html(" Planets, Sun & Moon"),y.append("input").attr("type","checkbox").attr("id","planets-show").property("checked",f.planets.show).on("change",o);var g=kt.planets[f.culture]||kt.planets.iau;for(var M in g)if(k(g,M)){var T=Object.keys(g[M]);if(T.length>1){var j="symbol"===M?"as":"with";y.append("label").attr("for","planets-"+M+"Type").html(j);var I=0 -;y.append("label").attr("title","Type of planet name").attr("for","planets-"+M+"Type").attr("class","advanced").html("");var A=y.append("select").attr("id","planets-"+M+"Type").on("change",o),q=T.map(function(t,e){return t===f.planets[M+"Type"]&&(I=e),{o:t,n:g[M][t]}});A.selectAll("option").data(q).enter().append("option").attr("value",function(t){return t.o}).text(function(t){return t.n}),A.property("selectedIndex",I),"names"===M&&(A.attr("class","advanced"),y.append("label").attr("for","planets-"+M).html("names"),y.append("input").attr("type","checkbox").attr("id","planets-"+M).property("checked",f.planets[M]).on("change",o))}}_(v("planets-show")),G(f.advanced),d3.select(document).on("mousedown",function(){!P(d3.event.target,"celestial-date")&&m.isVisible()&&m.hide()}),Z.getPosition=function(t){},Z.dateFormat=r,Z.date=function(t,e){if(!t)return d;u=e||u,Object.assign(f,Mt.set()),m.isVisible()&&m.hide(),d.setTime(t.valueOf()),v("datetime").value=r(t,u),i()},Z.timezone=function(t){if(!t)return u;u=t||u,Object.assign(f,Mt.set()),m.isVisible()&&m.hide(),v("datetime").value=r(d,u),i()},Z.position=function(){return p},Z.location=function(t){if(!t||t.length<2)return p;s(f.location)&&(p=f.location.slice(),v("lat").value=p[0],v("lon").value=p[1],i())},Z.skyview=function(t){if(!t)return{date:d,location:p,timezone:u};var e=!1;if(m.isVisible()&&m.hide(),k(t,"date")&&S(t.date)&&(d.setTime(t.date.valueOf()),v("datetime").value=r(t.date,u),e=!0),k(t,"timezone")&&x(t.timezone)&&Math.abs(t.timezone)<=14&&(u=t.timezone,e=!0),k(t,"date")&&s(t.location)&&(p=t.location.slice(),v("lat").value=p[0],v("lon").value=p[1],e=!0),!1===e)return{date:d,location:p,timezone:u};"zenith"===f.follow?i():Z.redraw()},Z.dtLoc=Z.skyview,Z.zenith=function(){return c},Z.nadir=function(){var t=-c[1],e=c[0]+180;return e>180&&(e-=360),[e,t-.001]},!k(t,"formFields")||!0!==t.location&&!0!==t.formFields.location||d3.select("#location").style({display:"inline-block"}),!0===t.location&&!0===t.formFields.location&&setTimeout(i,1e3)}function W(t){function a(t){return F.clip&&d3.geo.distance(D,t)>ft?0:1}function r(t){return"translate("+N(t)+")"}function s(t,e){var a=k(kt[t],G)?"."+G:"";return e=e?"."+e:"",t+a+e+".json"}function i(t){var e={};return e.fill=t.fill||"none",e["fill-opacity"]=t.opacity||1,e.stroke=t.stroke||"none",e["stroke-width"]=t.width||null,e["stroke-opacity"]=t.opacity||1,k(t,"dash")?e["stroke-dasharray"]=t.dash.join(" "):e["stroke-dasharray"]="none",e.font=t.font||null,e}function c(t){var e={};return e.stroke="none",e.fill=t.fill||"none",e["fill-opacity"]=t.opacity||1,e["text-anchor"]=h(t.align),e.font=t.font||null,e}function d(t,e){var a,n,r,s;if(t>1.885)return{fill:"transparent"};t<=1.36?(n="#daf1fa",r="#93d7f0",s="#57c0e8",a=-(1.36-t)/10):(a=(t-1.36)/(1.885-1.36),n=d3.interpolateLab("#daf1fa","#e8c866")(a),r=d3.interpolateLab("#93c7d0","#ff854a")(a),s=d3.interpolateLab("#57b0c8","#6caae2")(a));var o=W.append("radialGradient").attr("cx",e[0]).attr("cy",e[1]).attr("fr","0").attr("r","300").attr("id","skygradient").attr("gradientUnits","userSpaceOnUse");return o.append("stop").attr("offset","0").attr("stop-color",n),o.append("stop").attr("offset",.2+.4*a).attr("stop-color",r),o.append("stop").attr("offset","1").attr("stop-color",s),{fill:"url(#skygradient)","fill-opacity":f(a,1.4)}}function f(t,e){return.9*(1-(Math.pow(Math.E,t*e)-1)/(Math.pow(Math.E,e)-1))}function h(t){return t?"center"===t?"middle":"right"===t?"end":"start":"start"}function m(t){var e=g(t.mag,t.dim)||9,a=y(t.type);return-1!==d3.svg.symbolTypes.indexOf(a)?d3.svg.symbol().type(a).size(e)():d3.svg.customSymbol().type(a).size(e)()}function y(t){return t&&k(_.dsos.symbols,t)?_.dsos.symbols[t].shape:"circle"}function g(t,e){return t&&999!==t?Math.pow(2*_.dsos.size*H-t,_.dsos.exponent):Math.pow(parseInt(e)*_.dsos.size*H/7,.5)}function v(t){var e=_.dsos.namesType,a=t.id;return"desig"!==e&&k(it,a)&&k(it[a],e)?it[a][e]:t.properties.desig}function M(t){return k(ot,t)?ot[t][_.stars.designationType]:""}function b(t){var e=_.stars.propernameType;return k(ot,t)?k(ot[t],e)?ot[t][e]:ot[t].name:""}function w(t){if(null===t)return.1;var e=_.stars.size*H*Math.exp(_.stars.exponent*(t+2));return Math.max(e,.1)}function x(t){return!_.stars.colors||isNaN(t.bv)?_.stars.style.fill:bt(t.bv)}function T(t){return t.properties[_.constellations.namesType]}function S(t){return d3.svg.customSymbol().type("crescent").size(121).ratio(t.age)()}function j(t){var e=P(t.mag)||2;return d3.svg.symbol().type("circle").size(e)()}function P(t){var e=t||2,a=4*H*Math.exp(-.05*(e+2));return Math.max(a,2)}function I(t){var e={type:"Feature",id:t.id,properties:{},geometry:{}};return e.properties.name=t[_.planets.namesType],"symbol"!==_.planets.symbolType&&"letter"!==_.planets.symbolType||(e.properties.symbol=_.planets.symbols[e.id][_.planets.symbolType]),e.properties.mag=t.ephemeris.mag||10,"lun"===e.id&&(e.properties.age=t.ephemeris.age),e.geometry.type="Point",e.geometry.coordinates=t.ephemeris.pos,e}var A,q=(d3.select("body").append("div").attr("id","d3-celestial-svg").attr("style","display: none"),d3.select("#d3-celestial-svg").append("svg")),L=Z.metrics(),_=Mt.set(),O=_.datapath,F=wt[_.projection],E=n(_.center),D=[-E[0],-E[1]],C=F.scale*L.width/1024,N=Z.projection(_.projection).rotate(E).translate([L.width/2,L.height/2]).scale([L.scale]),H=_.adaptable?Math.sqrt(L.scale/C):1,G=""!==_.culture&&"iau"!==_.culture?_.culture:"";q.selectAll("*").remove(),F.clip&&(N.clipAngle(90),A=d3.geo.circle().angle([179.95]).origin(D)),q.attr("width",L.width).attr("height",L.height);var U=q.append("g"),B=q.append("g"),V=q.append("g"),W=q.append("g"),R=d3.geo.graticule().minorStep([15,10]),Y=d3.geo.path().projection(N),J=d3.queue(2);if(A?U.append("path").datum(A).attr("class","outline").attr("d",Y).style("fill",_.background.fill):U.append("path").datum(R.outline).attr("class","outline").attr("d",Y).style("fill",_.background.fill),_.lines.graticule.show){if("equatorial"===_.transform?B.append("path").datum(R).attr("class","gridline").style(i(_.lines.graticule)).attr("d",Y):Z.graticule(B,Y,_.transform),k(_.lines.graticule,"lon")&&_.lines.graticule.lon.pos.length>0){var $={type:"FeatureCollection",features:u("lon",_.lines.graticule.lon.pos)};B.selectAll(".gridvalues_lon").data($.features).enter().append("text").attr("transform",function(t,e){return r(t.geometry.coordinates)}).text(function(t){return t.properties.value}).attr({dy:".5em",dx:"-.75em",class:"graticule_lon"}).style(c(_.lines.graticule.lon))}if(k(_.lines.graticule,"lat")&&_.lines.graticule.lat.pos.length>0){var K={type:"FeatureCollection",features:u("lat",_.lines.graticule.lat.pos)};B.selectAll(".gridvalues_lat").data(K.features).enter().append("text").attr("transform",function(t,e){return r(t.geometry.coordinates)}).text(function(t){return t.properties.value}).attr({dy:"-.5em",dx:"-.75em",class:"graticule_lat"}).style(c(_.lines.graticule.lat))}}for(var Q in _.lines)k(_.lines,Q)&&"graticule"!=Q&&!1!==_.lines[Q].show&&B.append("path").datum(d3.geo.circle().angle([90]).origin(dt[Q])).attr("class",Q).style(i(_.lines[Q])).attr("d",Y);_.mw.show&&J.defer(function(t){d3.json(O+"mw.json",function(e,a){e&&t(e);var n=o(a,_.transform),r=p(n);U.selectAll(".mway").data(n.features).enter().append("path").attr("class","mw").style(i(_.mw.style)).attr("d",Y),U.selectAll(".mwaybg").data(r.features).enter().append("path").attr("class","mwbg").style({fill:_.background.fill,"fill-opacity":_.background.opacity}).attr("d",Y),t(null)})}),_.constellations.bounds&&J.defer(function(t){d3.json(O+s("constellations","bounds"),function(e,a){e&&t(e);var n=o(a,_.transform);B.selectAll(".bounds").data(n.features).enter().append("path").attr("class","boundaryline").style(i(_.constellations.boundStyle)).attr("d",Y),t(null)})}),_.constellations.lines&&J.defer(function(t){d3.json(O+s("constellations","lines"),function(e,a){e&&t(e);var n=o(a,_.transform);B.selectAll(".lines").data(n.features).enter().append("path").attr("class","constline").style({fill:"none",stroke:function(t){return z(_.constellations.lineStyle.stroke)?_.constellations.lineStyle.stroke[t.properties.rank-1]:null},"stroke-width":function(t){return z(_.constellations.lineStyle.width)?_.constellations.lineStyle.width[t.properties.rank-1]:0},"stroke-opacity":function(t){return z(_.constellations.lineStyle.opacity)?_.constellations.lineStyle.opacity[t.properties.rank-1]:0}}).attr("d",Y),t(null)})}),J.defer(function(t){var e=A||R.outline;V.append("path").datum(e).attr("class","outline").style({fill:"none",stroke:_.background.stroke,"stroke-width":_.background.width,"stroke-opacity":1,"stroke-dasharray":"none"}).attr("d",Y),t(null)}),_.constellations.names&&J.defer(function(t){d3.json(O+s("constellations"),function(e,n){e&&t(e);var s=o(n,_.transform);V.selectAll(".constnames").data(s.features.filter(function(t){return 1===a(t.geometry.coordinates)})).enter().append("text").attr("class","constname").style({fill:function(t){return z(_.constellations.nameStyle.fill)?_.constellations.nameStyle.fill[t.properties.rank-1]:"#ffffff"},"fill-opacity":function(t){return z(_.constellations.nameStyle.opacity)?_.constellations.nameStyle.opacity[t.properties.rank-1]:1},font:function(t){return z(_.constellations.nameStyle.font)?_.constellations.nameStyle.font[t.properties.rank-1]:"14px sans-serif"},"text-anchor":h(_.constellations.nameStyle.align)}).attr("transform",function(t,e){return r(t.geometry.coordinates)}).text(function(t){return T(t)}),t(null)})}),_.stars.show&&J.defer(function(t){d3.json(O+_.stars.data,function(e,n){e&&t(e);var s=o(n,_.transform);V.selectAll(".stars").data(s.features.filter(function(t){return t.properties.mag<=_.stars.limit})).enter().append("path").attr("class","star").attr("d",Y.pointRadius(function(t){return t.properties?w(t.properties.mag):1})).style("fill",function(t){return x(t.properties)}),_.stars.designation&&V.selectAll(".stardesigs").data(s.features.filter(function(t){return t.properties.mag<=_.stars.designationLimit*H&&1===a(t.geometry.coordinates)})).enter().append("text").attr("transform",function(t){return r(t.geometry.coordinates)}).text(function(t){return M(t.id)}).attr({dy:".85em",dx:".35em",class:"stardesig"}).style(c(_.stars.designationStyle)),_.stars.propername&&V.selectAll(".starnames").data(s.features.filter(function(t){return t.properties.mag<=_.stars.propernameLimit*H&&1===a(t.geometry.coordinates)})).enter().append("text").attr("transform",function(t){return r(t.geometry.coordinates)}).text(function(t){return b(t.id)}).attr({dy:"-.5em",dx:"-.35em",class:"starname"}).style(c(_.stars.propernameStyle)),t(null)})}),_.dsos.show&&J.defer(function(t){d3.json(O+_.dsos.data,function(e,n){e&&t(e);var s=o(n,_.transform);V.selectAll(".dsos").data(s.features.filter(function(t){return 1===a(t.geometry.coordinates)&&(999===t.properties.mag&&Math.sqrt(parseInt(t.properties.dim))>_.dsos.limit*H||999!==t.properties.mag&&t.properties.mag<=_.dsos.limit)})).enter().append("path").attr("class",function(t){return"dso "+t.properties.type}).style({fill:function(t){return k(_.dsos.symbols[t.properties.type],"stroke")?"none":_.dsos.colors?_.dsos.symbols[t.properties.type].fill:_.dsos.style.fill},"fill-opacity":_.dsos.style.opacity,stroke:function(t){return k(_.dsos.symbols[t.properties.type],"stroke")?_.dsos.colors?_.dsos.symbols[t.properties.type].stroke:_.dsos.style.stroke:"none"},"stroke-width":function(t){return k(_.dsos.symbols[t.properties.type],"width")?_.dsos.colors?_.dsos.symbols[t.properties.type].width:_.dsos.style.width:1},"stroke-opacity":_.dsos.style.opacity}).attr("transform",function(t){return r(t.geometry.coordinates)}).attr("d",function(t){return m(t.properties)}),_.dsos.names&&V.selectAll(".dsonames").data(s.features.filter(function(t){return 1===a(t.geometry.coordinates)&&(999==t.properties.mag&&Math.sqrt(parseInt(t.properties.dim))>_.dsos.nameLimit||999!=t.properties.mag&&t.properties.mag<=_.dsos.nameLimit)})).enter().append("text").attr("class",function(t){return"dsoname "+t.properties.type}).attr("transform",function(t){return r(t.geometry.coordinates)}).text(function(t){return v(t)}).attr({dy:"-.5em",dx:".35em"}).style({fill:function(t){return _.dsos.colors?_.dsos.symbols[t.properties.type].fill:_.dsos.style.fill},"fill-opacity":_.dsos.style.opacity,font:_.dsos.nameStyle.font,"text-anchor":h(_.dsos.nameStyle.align)}),t(null)})}),(_.location||_.formFields.location)&&_.planets.show&&Z.origin&&J.defer(function(t){var n=Z.date(),s=Z.origin(n).spherical(),o={type:"FeatureCollection",features:[]},l={type:"FeatureCollection",features:[]};Z.container.selectAll(".planet").each(function(t){var r=t.id(),i=t(n).equatorial(s);i.ephemeris.pos=e(i.ephemeris.pos,mt[_.transform]),1===a(i.ephemeris.pos)&&("lun"===r?l.features.push(I(i)):o.features.push(I(i)))}),l.features.length>0&&("letter"===_.planets.symbolType?V.selectAll(".moon").data(l.features).enter().append("text").attr("transform",function(t){return r(t.geometry.coordinates)}).text(function(t){return t.properties.symbol}).attr("class","luna").attr({dy:".35em"}).style(c(_.planets.symbolStyle)).style("fill",function(t){return _.planets.symbols[t.id].fill}):(V.selectAll(".dmoon").data(l.features).enter().append("path").attr("class","darkluna").style("fill","#557").attr("transform",function(t){return r(t.geometry.coordinates)}).attr("d",function(t){return d3.svg.symbol().type("circle").size(121)()}),V.selectAll(".moon").data(l.features).enter().append("path").attr("class","luna").style(i(_.planets.symbolStyle)).attr("transform",function(t){return r(t.geometry.coordinates)}).attr("d",function(t){return S(t.properties)}))),"disk"===_.planets.symbolType?V.selectAll(".planets").data(o.features).enter().append("path").attr("transform",function(t){return r(t.geometry.coordinates)}).attr("d",function(t){return j(t.properties)}).attr("class","planet").style(i(_.planets.symbolStyle)).style("fill",function(t){return _.planets.symbols[t.id].fill}):V.selectAll(".planets").data(o.features).enter().append("text").attr("transform",function(t){return r(t.geometry.coordinates)}).text(function(t){return t.properties.symbol}).attr("class","planet").attr({dy:".35em"}).style(c(_.planets.symbolStyle)).style("fill",function(t){return _.planets.symbols[t.id].fill}),_.planets.names&&(V.selectAll(".planetnames").data(o.features).enter().append("text").attr("transform",function(t){return r(t.geometry.coordinates)}).text(function(t){return t.properties.name}).attr({dy:".85em",dx:"-.35em",class:"planetname"}).style(c(_.planets.nameStyle)).style("fill",function(t){return _.planets.symbols[t.id].fill}),l.features.length>0&&V.selectAll(".moonname").data(l.features).enter().append("text").attr("transform",function(t){return r(t.geometry.coordinates)}).text(function(t){return t.properties.name}).attr({dy:".85em",dx:"-.35em",class:"planetname"}).style(c(_.planets.nameStyle)).style("fill",function(t){return _.planets.symbols[t.id].fill})),t(null)}),(_.location||_.formFields.location)&&_.daylight.show&&F.clip&&J.defer(function(t){var e=l("sol");if(e){var n=Z.zenith(),r=e.ephemeris.pos,s=d3.geo.distance(n,r),o=N(r),i=d3.geo.circle().angle([179.95]).origin(r);W.append("path").datum(i).attr("class","daylight").attr("d",Y).style(d(s,o)),1===a(r)&&s0&&Z.data.forEach(function(t){k(t,"save")&&J.defer(function(e){t.save(),e(null)})});var X=d3.map({ellipse:function(t,e){var a=Math.sqrt(t),n=.666*a,r=a/3;return"M"+-n+","+-r+" m"+-n+",0 a"+n+","+r+" 0 1,0"+2*n+",0 a"+n+","+r+" 0 1,0"+-2*n+",0"},marker:function(t,e){var a=t>48?t/4:12,n=a/2,r=n-3;return"M "+-n+" 0 h "+r+" M 0 "+-n+" v "+r+" M "+n+" 0 h "+-r+" M 0 "+n+" v "+-r},"cross-circle":function(t,e){var a=Math.sqrt(t),n=a/2;return"M"+-n+","+-n+" m"+-n+",0 a"+n+","+n+" 0 1,0"+2*n+",0 a"+n+","+n+" 0 1,0"+-2*n+",0 M"+-n+" 0 h "+a+" M 0 "+-n+" v "+a},"stroke-circle":function(t,e){var a=Math.sqrt(t),n=a/2;return"M"+-n+","+-n+" m"+-n+",0 a"+n+","+n+" 0 1,0"+2*n+",0 a"+n+","+n+" 0 1,0"+-2*n+",0 M"+(-a-2)+","+(-a-2)+" l"+(a+4)+","+(a+4)},crescent:function(t,e){var a=Math.sqrt(t),n=a/2,r=.5*(1-Math.cos(e)),s=1.6*Math.abs(r-.5)+.01,o=e>Math.PI?0:1;return"M -1,-1 m 1,"+(1-n)+" a"+n+","+n+" 0 1 "+o+" 0,"+2*n+" a"+n*s+","+n+" 0 1 "+(Math.abs(r)>.5?o:Math.abs(o-1))+" 0,"+-2*n+"z"}});d3.svg.customSymbol=function(){function t(t,r){return X.get(e.call(this,t,r))(a.call(this,t,r),n.call(this,t,r))}var e,a=64,n=d3.functor(1);return t.type=function(a){return arguments.length?(e=d3.functor(a),t):e},t.size=function(e){return arguments.length?(a=d3.functor(e),t):a},t.ratio=function(e){return arguments.length?(n=d3.functor(e),t):n},t},J.await(function(e){if(e)throw e;var a=d3.select("svg").attr("title","D3-Celestial").attr("version",1.1).attr("xmlns","http://www.w3.org/2000/svg"),n=new Blob([a.node().outerHTML],{type:"image/svg+xml;charset=utf-8"}),r=d3.select("body").append("a").node();r.download=t||"d3-celestial.svg",r.rel="noopener",r.href=URL.createObjectURL(n),r.click(),d3.select(r).remove(),d3.select("#d3-celestial-svg").remove()})}var R,Y,J,$,K,Q,Z={version:"0.7.15",container:null,data:[]},X=.035,tt=1.4,et=2e3,at=2500,nt=1500,rt=10,st=1,ot={},it={};if(Z.display=function(a){function r(){F(Nt.clip),At.append("path").datum(Xt.outline).attr("class","outline"),At.append("path").datum(K).attr("class","horizon"),At.append("path").datum(Q).attr("class","daylight"),"equatorial"===R.transform?Xt.minorStep([15,10]):Xt.minorStep([10,10]);for(var t in R.lines)k(R.lines,t)&&("graticule"===t?(At.append("path").datum(Xt).attr("class","graticule"),k(R.lines.graticule,"lon")&&R.lines.graticule.lon.pos.length>0&&At.selectAll(".gridvalues_lon").data(u("lon",R.lines.graticule.lon.pos)).enter().append("path").attr("class","graticule_lon"),k(R.lines.graticule,"lat")&&R.lines.graticule.lat.pos.length>0&&At.selectAll(".gridvalues_lat").data(u("lat",R.lines.graticule.lat.pos)).enter().append("path").attr("class","graticule_lat")):At.append("path").datum(d3.geo.circle().angle([90]).origin(e(dt[t],mt[R.transform]))).attr("class",t));d3.json($t+"mw.json",function(t,e){if(t)return window.alert("Data file could not be loaded or doesn't exist. See readme.md"),console.warn(t);var a=o(e,R.transform),n=p(a);At.selectAll(".mway").data(a.features).enter().append("path").attr("class","mw"),At.selectAll(".mwaybg").data(n.features).enter().append("path").attr("class","mwbg"),y()}),d3.json($t+E("constellations"),function(t,e){if(t)return console.warn(t);var a=o(e,R.transform);At.selectAll(".constnames").data(a.features).enter().append("text").attr("class","constname"),Z.constellations=c(a),y()}),d3.json($t+E("constellations","bounds"),function(t,e){if(t)return console.warn(t);var a=o(e,R.transform);At.selectAll(".bounds").data(a.features).enter().append("path").attr("class","boundaryline"),y()}),d3.json($t+E("constellations","lines"),function(t,e){if(t)return console.warn(t);var a=o(e,R.transform);At.selectAll(".lines").data(a.features).enter().append("path").attr("class","constline"),B(),y()}),d3.json($t+R.stars.data,function(t,e){if(t)return console.warn(t);var a=o(e,R.transform);At.selectAll(".stars").data(a.features).enter().append("path").attr("class","star"),y()}),d3.json($t+E("starnames"),function(t,e){if(t)return console.warn(t);Object.assign(ot,e),y()}),d3.json($t+R.dsos.data,function(t,e){if(t)return console.warn(t);var a=o(e,R.transform);At.selectAll(".dsos").data(a.features).enter().append("path").attr("class","dso"),y()}),d3.json($t+E("dsonames"),function(t,e){if(t)return console.warn(t);Object.assign(it,e),y()}),d3.json($t+E("planets"),function(t,e){if(t)return console.warn(t);var a=i(e,R.transform);At.selectAll(".planets").data(a).enter().append("path").attr("class","planet"),y()}),Z.data.length>0&&Z.data.forEach(function(t){k(t,"file")?d3.json(t.file,t.callback):setTimeout(t.callback,0)},this),R.lang&&""!=R.lang&&d(Z.setLanguage(R.lang))}function s(t){if(t&&1!==t){var e=Y.scale(),a=e*t,n=J.scaleExtent(),r=nt*Math.sqrt(Math.abs(1-t));an[1]&&(a=n[1]);var s=d3.interpolateNumber(e,a);return d3.select({}).transition().duration(r).tween("scale",function(){return function(t){var e=s(t);Y.scale(e),y()}}).transition().duration(0).tween("scale",function(){J.scale(a),y()}),r}}function d(t){R=Mt.set(t),y()}function f(t){var e,a,r,s=R.center,o=Y.rotate(),i=Y.scale(),l=et,c=!1,p=R.orientationfixed;b(o[1],1)===-b(t.center[1],1)&&(c=!0),R=R.set(t);var d=b(d3.geo.distance(s,R.center),2),u=d3.geo.distance([s[2],0],[R.center[2],0]);return dUt*tt?d3.interpolateNumber(i,Ut):function(){return i},r=0===u?function(){return o[2]}:q(s[2],R.center[2]),d>3.14&&(R.center[0]-=.01),R.orientationfixed=!1,e=0===d?function(){return R.center}:d3.geo.interpolate(s,R.center),l=0!==d?l*d:l*u,d3.select({}).transition().duration(l).tween("center",function(){return function(t){var s=n(e(t));s[2]=r(t);var i=a(t<.5?t:1-t);c&&(s[1]=o[1]),Y.scale(i),Y.rotate(s),y()}}).transition().duration(0).tween("center",function(){R.orientationfixed=p,Jt=n(R.center),Y.rotate(Jt),y()})),l}function h(t){Dt=xt(),(R.width!==Dt||t)&&(Gt=Dt/Ht,Ut=Nt.scale*Dt/1024,Kt.style("width",M(Dt)).style("height",M(Gt)).attr("width",Dt*Ct).attr("height",Gt*Ct),J.scaleExtent([Ut,Ut*rt]).scale(Ut*st),Y.translate([Dt/2,Gt/2]).scale(Ut*st),Ot&&(Ot.style.height=M(Gt)),Ut*=st,y())}function m(e){var a=Tt(e.projection);if(a){var n=Y.rotate(),r=Y.center(),o=Y.scale(),i=J.scaleExtent(),l=Z.projection(R.projection).center(r).translate([Dt/2,Gt/2]).scale([i[0]]),c=at,p=0,d=d3.interpolateNumber(Ht,a.ratio);Nt.clip!=a.clip&&(c=0),F(a.clip);var u=Z.projection(e.projection).center(r).translate([Dt/2,Dt/a.ratio/2]).scale([a.scale*Dt/1024]),f=R.adaptable;return o>i[0]?(p=s(.1),setTimeout(m,p,e),p+c):((R.location||R.formFields.location)&&(O("horizon-show",a.clip),O("daylight-show",!a.clip)),Y=t(l,u),R.adaptable=!1,d3.select({}).transition().duration(c).tween("projection",function(){return function(t){Y.alpha(t).rotate(n),$.projection(Y),F(a.clip),Ht=d(t),Gt=Dt/Ht,Kt.style("width",M(Dt)).style("height",M(Gt)).attr("width",Dt*Ct).attr("height",Gt*Ct),Ot&&(Ot.style.height=M(Gt)),y()}}).transition().duration(0).tween("projection",function(){Nt=a,Ht=Nt.ratio,Gt=Dt/Nt.ratio,Ut=Nt.scale*Dt/1024,Kt.style("width",M(Dt)).style("height",M(Gt)).attr("width",Dt*Ct).attr("height",Gt*Ct),Ot&&(Ot.style.height=M(Gt)),R.projection=e.projection,Y=Z.projection(e.projection).rotate(n).translate([Dt/2,Gt/2]).scale(Ut*st),$.projection(Y),F(Nt.clip),J.projection(Y).scaleExtent([Ut,Ut*rt]).scale(Ut*st),R.adaptable=f,Ut*=st,y()}),c)}}function y(){var t=Y.rotate();Zt.setTransform(Ct,0,0,Ct,0,0),R.adaptable&&(Yt=Math.sqrt(Y.scale()/Ut)),Yt||(Yt=1),Bt=R.stars.size,Wt=R.stars.exponent,Vt=R.dsos.size||Bt,Rt=R.dsos.exponent,R.orientationfixed&&R.center.length>2&&(t[2]=R.center[2],Y.rotate(t)),R.center=[-t[0],-t[1],t[2]],N(R.center,R.transform),vt(),w(),R.mw.show&&(At.selectAll(".mw").each(function(t){S(R.mw.style),$(t),Zt.fill()}),"supergalactic"!==R.transform&&At.selectAll(".mwbg").each(function(t){S(R.background),$(t),Zt.fill()}));for(var a in R.lines)k(R.lines,a)&&!0===R.lines[a].show&&(S(R.lines[a]),At.selectAll("."+a).attr("d",$),Zt.stroke());if(k(R.lines.graticule,"lon")&&(j(R.lines.graticule.lon),At.selectAll(".graticule_lon").each(function(t,e){if(T(t.geometry.coordinates)){var a=Y(t.geometry.coordinates);yt(a,t.properties.orientation),Zt.fillText(t.properties.value,a[0],a[1])}})),k(R.lines.graticule,"lat")&&(j(R.lines.graticule.lat),At.selectAll(".graticule_lat").each(function(t,e){if(T(t.geometry.coordinates)){var a=Y(t.geometry.coordinates);yt(a,t.properties.orientation),Zt.fillText(t.properties.value,a[0],a[1])}})),R.constellations.bounds&&(At.selectAll(".boundaryline").each(function(t){S(R.constellations.boundStyle),Z.constellation&&Z.constellation===t.id&&(Zt.lineWidth*=1.5,Zt.setLineDash([])),$(t),Zt.stroke()}),Zt.setLineDash([])),R.constellations.lines&&At.selectAll(".constline").each(function(t){P(t.properties.rank,R.constellations.lineStyle),$(t),Zt.stroke()}),w(!0),R.constellations.names&&At.selectAll(".constname").each(function(t){if(T(t.geometry.coordinates)){P(t.properties.rank,R.constellations.nameStyle);var e=Y(t.geometry.coordinates);Zt.fillText(ut(t),e[0],e[1])}}),R.stars.show&&(S(R.stars.style),At.selectAll(".star").each(function(t){if(T(t.geometry.coordinates)&&t.properties.mag<=R.stars.limit){var e=Y(t.geometry.coordinates),a=ct(t);Zt.fillStyle=pt(t),Zt.beginPath(),Zt.arc(e[0],e[1],a,0,2*Math.PI),Zt.closePath(),Zt.fill(),R.stars.designation&&t.properties.mag<=R.stars.designationLimit*Yt&&(j(R.stars.designationStyle),Zt.fillText(W(t.id),e[0]+a,e[1])),R.stars.propername&&t.properties.mag<=R.stars.propernameLimit*Yt&&(j(R.stars.propernameStyle),Zt.fillText(lt(t.id),e[0]-a,e[1]))}})),R.dsos.show&&At.selectAll(".dso").each(function(t){if(T(t.geometry.coordinates)&&D(t.properties,R.dsos.limit)){var e=Y(t.geometry.coordinates),a=t.properties.type;S(!0===R.dsos.colors?R.dsos.symbols[a]:R.dsos.style);var n=C(t,e);k(R.dsos.symbols[a],"stroke")?Zt.stroke():Zt.fill(),R.dsos.names&&D(t.properties,R.dsos.nameLimit*Yt)&&(j(R.dsos.nameStyle),!0===R.dsos.colors&&(Zt.fillStyle=R.dsos.symbols[a].fill),Zt.fillText(U(t),e[0]+n,e[1]-n))}}),(R.location||R.formFields.location)&&R.planets.show&&Z.origin){var n=Z.date(),r=Z.origin(n).spherical();At.selectAll(".planet").each(function(t){var a=t.id(),s=6,o=t(n).equatorial(r),i=e(o.ephemeris.pos,mt[R.transform]);if(T(i)){var l=Y(i),c=R.planets.symbols[a];if("letter"===R.planets.symbolType?(j(R.planets.symbolStyle),Zt.fillStyle=c.fill,Zt.fillText(c.letter,l[0],l[1])):"lun"===a?zt.symbol().type("crescent").size(144).age(o.ephemeris.age).position(l)(Zt):"disk"===R.planets.symbolType?(s=ht(o.ephemeris),Zt.fillStyle=c.fill,Zt.beginPath(),Zt.arc(l[0],l[1],s,0,2*Math.PI),Zt.closePath(),Zt.fill()):"symbol"===R.planets.symbolType&&(j(R.planets.symbolStyle),Zt.fillStyle=c.fill,Zt.fillText(c[R.planets.symbolType],l[0],l[1])),R.planets.names){var p=o[R.planets.namesType];j(R.planets.nameStyle),Zt.fillStyle=c.fill,Zt.fillText(p,l[0]-s,l[1]+s)}}})}if(Z.data.length>0&&Z.data.forEach(function(t){t.redraw()}),(R.location||R.formFields.location)&&R.daylight.show&&Nt.clip){var s=l("sol");if(s){var o=Z.zenith(),i=s.ephemeris.pos,c=d3.geo.distance(o,i),p=Y(i);Q.origin(i),I(c,p),At.selectAll(".daylight").datum(Q).attr("d",$),Zt.fill(),Zt.fillStyle="#fff",T(i)&&(Zt.beginPath(),Zt.arc(p[0],p[1],6,0,2*Math.PI),Zt.closePath(),Zt.fill())}}(R.location||R.formFields.location)&&R.horizon.show&&!Nt.clip&&(K.origin(Z.nadir()),S(R.horizon),At.selectAll(".horizon").datum(K).attr("d",$),Zt.fill(),R.horizon.stroke&&Zt.stroke()),R.controls&&_(Y.scale()),gt&&Z.runCallback()}function w(t){var e=Y.rotate();Tt(R.projection);Y.rotate([0,0]),S(R.background),At.selectAll(".outline").attr("d",$),!0===t?Zt.stroke():Zt.fill(),Y.rotate(e)}function T(t){return Nt.clip&&d3.geo.distance(R.center,t)>ft?0:1}function S(t){Zt.fillStyle=t.fill||null,Zt.strokeStyle=t.stroke||null,Zt.lineWidth=t.width||null,Zt.globalAlpha=t.opacity||1,Zt.font=t.font||null,k(t,"dash")?Zt.setLineDash(t.dash):Zt.setLineDash([]),Zt.beginPath()}function j(t){Zt.fillStyle=t.fill,Zt.textAlign=t.align||"left",Zt.textBaseline=t.baseline||"bottom",Zt.globalAlpha=t.opacity||1,Zt.font=t.font}function P(t,e){t=t||1,Zt.fillStyle=z(e.fill)?e.fill[t-1]:null,Zt.strokeStyle=z(e.stroke)?e.stroke[t-1]:null,Zt.lineWidth=z(e.width)?e.width[t-1]:null,Zt.globalAlpha=z(e.opacity)?e.opacity[t-1]:1,Zt.font=z(e.font)?e.font[t-1]:null,Zt.textAlign=e.align||"left",Zt.textBaseline=e.baseline||"bottom",Zt.beginPath()}function I(t,e){var a,n,r,s;if(t>1.885)return Zt.fillStyle="transparent",void(Zt.globalAlpha=0);t<=1.36?(n="#daf1fa",r="#93d7f0",s="#57c0e8",a=-(1.36-t)/10):(a=(t-1.36)/(1.885-1.36),n=d3.interpolateLab("#daf1fa","#e8c866")(a),r=d3.interpolateLab("#93c7d0","#ff854a")(a),s=d3.interpolateLab("#57b0c8","#6caae2")(a));var o=Zt.createRadialGradient(e[0],e[1],0,e[0],e[1],300);o.addColorStop(0,n),o.addColorStop(.2+.4*a,r),o.addColorStop(1,s),Zt.fillStyle=o,Zt.globalAlpha=.9*(1-A(a,1.4))}function A(t,e){return(Math.pow(Math.E,t*e)-1)/(Math.pow(Math.E,e)-1)}function _(t){var e=v("celestial-zoomin"),a=v("celestial-zoomout"),n=Nt.scale*Dt/1024;e&&a&&(e.disabled=t>=n*rt*.99,a.disabled=t<=n)}function F(t){t?Y.clipAngle(90):Y.clipAngle(null)}function E(t,e){var a=k(kt[t],Qt)?"."+Qt:"";return e=e?"."+e:"",t+a+e+".json"}function D(t,e){return 999===t.mag&&Math.sqrt(parseInt(t.dim))>e||999!==t.mag&&t.mag<=e}function C(t,e){var a=t.properties,n=G(a)||9,r=H(a.type);return zt.symbol().type(r).size(n).position(e)(Zt),Math.sqrt(n)/2}function H(t){return t&&k(R.dsos.symbols,t)?R.dsos.symbols[t].shape:"circle"}function G(t){return t.mag&&999!==t.mag?Math.pow(2*Vt*Yt-t.mag,Rt):Math.pow(parseInt(t.dim)*Vt*Yt/7,.5)}function U(t){var e=R.dsos.namesType,a=t.id;return"desig"!==e&&k(it,a)&&k(it[a],e)?it[a][e]:t.properties.desig}function W(t){return k(ot,t)?ot[t][R.stars.designationType]:""}function lt(t){var e=R.stars.propernameType;return k(ot,t)?k(ot[t],e)?ot[t][e]:ot[t].name:""}function ct(t){var e=t.properties.mag;if(null===e)return.1;var a=Bt*Yt*Math.exp(Wt*(e+2));return Math.max(a,.1)}function pt(t){var e=t.properties.bv;return!R.stars.colors||isNaN(e)?R.stars.style.fill:bt(e)}function ut(t){return t.properties[R.constellations.namesType]}function ht(t){var e=t.mag;if(null===e)return 2;var a=4*Yt*Math.exp(-.05*(e+2));return Math.max(a,2)}function yt(t,e){for(var a=e.split(""),n="center",r="middle",s=a.length-1;s>=0;s--)switch(a[s]){case"N":r="bottom";break;case"S":r="top";break;case"E":n="left",t[0]+=2;break;case"W":n="right",t[0]-=2}return Zt.textAlign=n,Zt.textBaseline=r,t}function vt(){Zt.clearRect(0,0,Dt+Et[0],Gt+Et[1])}function xt(){return R.width&&R.width>0?R.width:Ot?Ot.getBoundingClientRect().width-Et[0]:window.getBoundingClientRect().width-2*Et[0]}function Tt(t){if(k(wt,t)){var e=wt[t];return k(e,"ratio")||(e.ratio=2),e}}function St(){if(qt&&!(qt.length<1)){var t,e=qt[Lt];switch(e.param){case"projection":t=m({projection:e.value});break;case"center":t=f({center:e.value});break;case"zoom":t=s(e.value)}e.callback&&setTimeout(e.callback,t),Lt++,!0===_t&&Lt===qt.length&&(Lt=0),t=0===e.duration||e.duration0&&(l=2*Math.PI-l),[i/ht,l/ht,0]};yt.inverse=function(t,e,a){var n=e[0]*ht,s=e[1]*ht,o=a[0]*ht,i=Math.asin(Math.sin(n)*Math.sin(o)+Math.cos(n)*Math.cos(o)*Math.cos(s)),l=((Math.sin(n)-Math.sin(i)*Math.sin(o))/(Math.cos(i)*Math.cos(o))).toFixed(6);return l=Math.acos(l),l/=ht,[r(t,a[1])-l,i/ht,0]},Z.horizontal=yt;var gt=!1;Z.add=function(t){var e={};return k(t,"type")?"dso"!==t.type&&"json"!==t.type||k(t,"file")&&k(t,"callback")?"line"!==t.type&&"raw"!==t.type||k(t,"callback")?(k(t,"file")&&(e.file=t.file),e.type=t.type,k(t,"callback")&&(e.callback=t.callback),k(t,"redraw")&&(e.redraw=t.redraw),k(t,"save")&&(e.save=t.save),void Z.data.push(e)):console.log("Can't add data"):console.log("Can't add data file"):console.log("Missing type")},Z.remove=function(t){if(null!==t&&tMath.PI,p=Math.abs(i)>.5?c:!c;return t.save(),t.fillStyle="#557",t.beginPath(),t.moveTo(e[0],e[1]),t.arc(e[0],e[1],s,0,2*Math.PI),t.closePath(),t.fill(),t.fillStyle="#eee",t.beginPath(),t.moveTo(e[0],e[1]),t.arc(e[0],e[1],s,-Math.PI/2,Math.PI/2,c),t.scale(l,1),t.arc(e[0]/l,e[1],s,Math.PI/2,-Math.PI/2,p),t.closePath(),t.fill(),t.restore(),s}});return t.type=function(e){return arguments.length?(a=d3.functor(e),t):a},t.size=function(e){return arguments.length?(n=d3.functor(e),t):n},t.age=function(e){return arguments.length?(r=d3.functor(e),t):r},t.text=function(e){return arguments.length?(s=d3.functor(e),t):s},t.position=function(a){if(arguments.length)return e=a,t},t},Z.Canvas=zt;var Tt={sinh:function(t){return(Math.pow(Math.E,t)-Math.pow(Math.E,-t))/2},cosh:function(t){return(Math.pow(Math.E,t)+Math.pow(Math.E,-t))/2},tanh:function(t){return 2/(1+Math.exp(-2*t))-1},asinh:function(t){return Math.log(t+Math.sqrt(t*t+1))},acosh:function(t){return Math.log(t+Math.sqrt(t*t-1))},normalize0:function(t){return(t+3*Math.PI)%(2*Math.PI)-Math.PI},normalize:function(t){return(t+2*Math.PI)%(2*Math.PI)},cartesian:function(t){var e=t[0],a=ft-t[1],n=t[2];return{x:n*Math.sin(a)*Math.cos(e),y:n*Math.sin(a)*Math.sin(e),z:n*Math.cos(a)}},spherical:function(t){var e=Math.sqrt(t.x*t.x+t.y*t.y+t.z*t.z),a=Math.atan(t.y/t.x),n=Math.acos(t.z/e);return[a/ht,n/ht,e]},distance:function(t,e){return Math.acos(Math.sin(t[1])*Math.sin(e[1])+Math.cos(t[1])*Math.cos(e[1])*Math.cos(t[0]-e[0]))}},St={"stars-show":["stars-limit","stars-colors","stars-style-fill","stars-designation","stars-propername","stars-size","stars-exponent"],"stars-designation":["stars-designationType","stars-designationLimit"],"stars-propername":["stars-propernameLimit","stars-propernameType"],"dsos-show":["dsos-limit","dsos-colors","dsos-style-fill","dsos-names","dsos-size","dsos-exponent"],"dsos-names":["dsos-namesType","dsos-nameLimit"],"mw-show":["mw-style-opacity","mw-style-fill"],"constellations-names":["constellations-namesType"],"planets-show":["planets-symbolType","planets-names"],"planets-names":["planets-namesType"]},jt={sol:.0002959122082855911,mer:0x95955473dbc3,ven:0x89d9374048629,ter:0xa923c08a47948,lun:36599199229256,mar:319711652803400,cer:467549107200,ves:129071530155,jup:0xd20883d548bcd80,sat:0x3ee3798098fbac0,ura:0x99ad2c4e2f7f70,nep:0xb54f848fd74430,plu:7327611364884,eri:827117568e4},Pt={sol:"☉",mer:"☿",ven:"♀",ter:"⊕",lun:"●",mar:"♂",cer:"⚳",ves:"⚶",jup:"♃",sat:"♄",ura:"♅",nep:"♆",plu:"♇",eri:"⚪"},It=23.43928*ht,At=Math.sin(It),qt=Math.cos(It),Lt=["a","e","i","w","M","L","W","N","n","ep","ref","lecl","becl","Tilt"],_t=function(){function t(e){return b(e),"sol"===f?(M.ephemeris.x=0,M.ephemeris.y=0,M.ephemeris.z=0,M.ephemeris.mag=-6,t):(w(),t)}function e(t,e){for(var a=e>1?t*t:-t*t,n=e*a*t/6,r=(1-e)*t-n,s=4;Math.abs(n)>1e-15;)n*=a/(s*(s+1)),r-=n,s+=2;return r}function a(){var t,a,n,r,s=M.ephemeris,o=s.e,i=s.M,l=1e-8,c=0,p=1.9,d=!1,u=0;if(!i)return 0;if(o<1&&((i<-Math.PI||i>Math.PI)&&(r=Tt.normalize0(i),c=i-r,i=r),o<.9)){t=Math.atan2(Math.sin(i),Math.cos(i)-o);do{a=(t-o*Math.sin(t)-i)/(1-o*Math.cos(t)),t-=a}while(Math.abs(a)>l);return t}if(i<0&&(i=-i,d=!0),t=i,l*=Math.abs(1-o),l<1e-15&&(l=1e-15),(o>.8&&i1)&&(n=i/Math.abs(1-o),n*n>6*Math.abs(1-o)&&(n=i1&&i>4&&(t=Math.log(i)),o<1)for(;Math.abs(p)>l;)a=u++>8?e(t,o)-i:t-o*Math.sin(t)-i,p=-a/(1-o*Math.cos(t)),t+=p;else for(;Math.abs(p)>l;)a=u++>7?-e(t,o)-i:o*Tt.sinh(t)-t-i,p=-a/(o*Tt.cosh(t)-1),t+=p;return d?c-t:c+t}function n(){var t,e,n,r,s,o=M.ephemeris;1===o.e?(s=o.jd0-o.T,r=o.w0*s*.5,e=Math.pow(r+Math.sqrt(r*r+1),1/3),o.v=2*Math.atan(e-1/e)):(o.E=a(),o.e>1?(t=o.e-Tt.cosh(o.E),e=Tt.sinh(o.E)):(t=Math.cos(o.E)-o.e,e=Math.sin(o.E)),e*=Math.sqrt(Math.abs(1-o.e*o.e)),o.v=Math.atan2(e,t)),n=o.q*(1+o.e),o.r=n/(1+o.e*Math.cos(o.v))}function r(){var t=M.ephemeris;t.hasOwnProperty("w")||(t.w=t.W-t.N),t.hasOwnProperty("M")||(t.M=t.L-t.W),t.e<1&&(t.M=Tt.normalize0(t.M)),t.P=ut*Math.sqrt(Math.pow(t.a,3)/y)/365.25,t.T=t.jd0-t.M/ft/t.P,1!==t.e?(t.q=t.a*(1-t.e),t.t0=t.a*Math.sqrt(Math.abs(t.a)/y)):(t.w0=3/Math.sqrt(2)/(t.q*Math.sqrt(t.q/y)),t.a=0,t.t0=0),t.am=Math.sqrt(y*t.q*(1+t.e))}function s(){var t=M.ephemeris;if(!t.ref||"ecl"===t.ref)return t.tx=t.x,t.ty=t.y,void(t.tz=t.z);var e=(t.lecl,Math.PI,t.becl,Tt.cartesian([t.tl,t.tb,t.r]));t.tx=e.x,t.ty=e.y,t.tz=e.z}function o(t){var e=M.ephemeris,a=t.ephemeris;It=(23.439292-.0130042*e.cy-1.667e-7*e.cy*e.cy+5.028e-7*e.cy*e.cy*e.cy)*ht,At=Math.sin(It),qt=Math.cos(It);var n="lun"===f?{x:0,y:0,z:0}:{x:a.x,y:a.y,z:a.z};e.xeq=e.x-n.x,e.yeq=(e.y-n.y)*qt-(e.z-n.z)*At,e.zeq=(e.y-n.y)*At+(e.z-n.z)*qt,e.ra=Tt.normalize(Math.atan2(e.yeq,e.xeq)),e.dec=Math.atan2(e.zeq,Math.sqrt(e.xeq*e.xeq+e.yeq*e.yeq)),"lun"===f&&(e=u(e,a)),e.pos=[e.ra/ht,e.dec/ht],e.rt=Math.sqrt(e.xeq*e.xeq+e.yeq*e.yeq+e.zeq*e.zeq),"sol"!==f&&(e.mag=i())}function i(){var t=M.ephemeris,e=t.r,a=t.rt,n=Math.acos((e*e+a*a-1)/(2*e*a)),r=.666*((1-n/Math.PI)*Math.cos(n)+1/Math.PI*Math.sin(n));return 1*M.H+5*Math.log(e*a)*Math.LOG10E-2.5*Math.log(r)*Math.LOG10E}function l(){var t=M.ephemeris,e=t.v+t.w;return t.x=t.r*(Math.cos(t.N)*Math.cos(e)-Math.sin(t.N)*Math.sin(e)*Math.cos(t.i)),t.y=t.r*(Math.sin(t.N)*Math.cos(e)+Math.cos(t.N)*Math.sin(e)*Math.cos(t.i)),t.z=t.r*(Math.sin(e)*Math.sin(t.i)),M}function c(){var t=M.ephemeris,e=Math.atan2(t.y,t.x),a=Math.atan2(t.z,Math.sqrt(t.x*t.x+t.y*t.y));return t.l=Tt.normalize(e),t.b=a,M}function p(t){var e=t.getUTCFullYear(),a=t.getUTCMonth()+1,n=t.getUTCDate(),r=(t.getUTCHours()-12+t.getUTCMinutes()/60+t.getUTCSeconds()/3600)/24;if(e<-4799)return-1;var s=Math.floor((14-a)/12),o=e+4800-s,i=a+12*s-3;return n+Math.floor((153*i+2)/5)+365*o+Math.floor(o/4)-Math.floor(o/100)+Math.floor(o/400)-32045+r}function d(t){if(void 0!==Ot)return Ot.elements(t)}function u(t,e){if(c(),void 0!==Ot)return Ot.corr(t,e)}var f,h,m,y=jt.sol,g="sol",v={},M={},b=function(t){var e,a=M.ephemeris={};t&&(e=t instanceof Date?new Date(t.valueOf()):A(t)),e||(e=new Date),a.jd=p(e),e=A(v.ep),e||(e=A("2000-01-01")),a.jd0=p(e),a.d=a.jd-a.jd0,a.cy=a.d/36525},w=function(){var t,e=M.ephemeris;if("lun"===f){if(!(e=d(e)))return}else{for(var a=0;a=100?[y[0]-10,y[0]+10]:[t-y[0],t+y[0]]:2===y.length&&x(y[0])&&x(y[1])?y[1]>=100?[y[0],y[1]]:[y[0]-y[1],y[0]+y[1]]:[t-10,t+10]}function i(t,e){for(var a=v(t),n=0;n=0;)if((a=t._tasks[n])&&(t._tasks[n]=null,a.abort))try{a.abort()}catch(e){}t._active=NaN,o(t)}function o(t){if(!t._active&&t._call){var e=t._data;t._data=void 0,t._call(t._error,e)}}function i(t){if(null==t)t=1/0;else if(!((t=+t)>=1))throw new Error("invalid concurrency");return new e(t)}var l=[].slice,c={};e.prototype=i.prototype={constructor:e,defer:function(t){if("function"!=typeof t)throw new Error("invalid callback");if(this._call)throw new Error("defer after await");if(null!=this._error)return this;var e=l.call(arguments,1);return e.push(t),++this._waiting,this._tasks.push(e),a(this),this},abort:function(){return null==this._error&&s(this,new Error("abort")),this},await:function(t){if("function"!=typeof t)throw new Error("invalid callback");if(this._call)throw new Error("multiple await");return this._call=function(e,a){t.apply(null,[e].concat(a))},o(this),this},awaitAll:function(t){if("function"!=typeof t)throw new Error("invalid callback");if(this._call)throw new Error("multiple await");return this._call=t,o(this),this}},t.queue=i,Object.defineProperty(t,"__esModule",{value:!0})}),this.Celestial=Z}(); \ No newline at end of file +!function(){function t(t,e){function a(a,r){var s=t([a*=180/Math.PI,r*=180/Math.PI]),o=e([a,r]);return[(1-n)*s[0]+n*o[0],(n-1)*s[1]-n*o[1]]}var n,r=d3.geo.projection(a).scale(1),s=r.center,o=r.translate;return r.alpha=function(a){if(!arguments.length)return n;n=+a;var i=t.center(),l=e.center(),c=t.translate(),p=e.translate();return s([(1-n)*i[0]+n*l[0],(1-n)*i[1]+n*l[1]]),o([(1-n)*c[0]+n*p[0],(1-n)*c[1]+n*p[1]]),r},delete r.translate,delete r.center,r.alpha(0)}function e(t,e){return a(t.map(function(t){return t*ht}),e).map(function(t){return t/ht})}function a(t,e){var a,n,r,s,o,i,l,c,p,d;return e?(i=t[0],i<0&&(i+=ut),l=t[1],i-=e[0],s=e[1],o=e[2],a=Math.sin(l)*Math.sin(s)-Math.cos(l)*Math.cos(s)*Math.cos(i),Math.abs(a)<1e-5&&(a=-Math.cos(l+s)+Math.cos(l)*Math.cos(s)*(1-Math.cos(i))),n=-Math.cos(l)*Math.sin(i),c=0!==a||0!==n?Math.atan2(n,a):i-Math.PI,p=o+c,p>Math.PI&&(p-=ut),i%Math.PI==0?(d=l+Math.cos(i)*s,d>ft&&(d=Math.PI-d),d<-ft&&(d=-Math.PI-d)):(r=Math.sin(l)*Math.cos(s)+Math.cos(l)*Math.sin(s)*Math.cos(i),Math.abs(r)>.99?(d=Math.abs(Math.acos(Math.sqrt(a*a+n*n))),r<0&&(d*=-1)):d=Math.asin(r)),[p,d]):t}function n(t){if(null===t||t.length<=0)return[0,0,0];var e=pt.equatorial;return t[2]||(t[2]=0),[e[0]-t[0],e[1]-t[1],e[2]+t[2]]}function r(t,e){var a=t.getUTCFullYear(),n=t.getUTCMonth()+1,r=t.getUTCDate(),s=t.getUTCHours(),o=t.getUTCMinutes(),i=t.getUTCSeconds();1!=n&&2!=n||(a-=1,n+=12);var l=Math.floor(a/100),c=2-l+Math.floor(l/4),p=Math.floor(365.25*a),d=Math.floor(30.6001*(n+1)),u=c+p+d-730550.5+r+(s+o/60+i/3600)/24,f=u/36525,h=280.46061837+360.98564736629*u+387933e-9*f*f-f*f*f/3871e4+e;if(h>0)for(;h>360;)h-=360;else for(;h<0;)h+=360;return h}function s(t,a){return e(t,mt[a])}function o(t,e){if("equatorial"===e)return t;for(var a=mt[e],n=t.features,r=0;r=3?t:void 0:[t,t,t]}function v(t){return document.getElementById(t)}function M(t){return t+"px"}function b(t,e){return Math.round(Math.pow(10,e)*t)/Math.pow(10,e)}function w(t){return t<10?"0"+t:t}function k(t,e){return null!==t&&hasOwnProperty.call(t,e)}function x(t){return!isNaN(parseFloat(t))&&isFinite(t)}function z(t){return null!==t&&"[object Array]"===Object.prototype.toString.call(t)}function T(t){var e=typeof t;return"function"===e||"object"===e&&!!t}function S(t){return t&&t instanceof Date&&!isNaN(t)}function j(t){var e=0,a=0;if(t.offsetParent)do{e+=t.offsetLeft,a+=t.offsetTop}while(null!==(t=t.offsetParent));return[e,a]}function P(t,e){for(;t.parentNode;){if(t.id===e)return!0;t=t.parentNode}return!1}function I(t,e,a){var n=e.valueOf()-t.valueOf();switch(a||"d"){case"y":case"yr":n/=31556926080;break;case"m":case"mo":n/=26298e5;break;case"d":case"dy":n/=864e5;break;case"h":case"hr":n/=36e5;break;case"n":case"mn":n/=6e4;break;case"s":case"sec":n/=1e3}return Math.floor(n)}function A(t){if(t){var e=t.split(".");if(!(e.length<1)&&(e=e[0].split("-"),e[0]=e[0].replace(/\D/g,""),e[0]))return e[1]=e[1]?e[1].replace(/\D/g,""):"1",e[2]=e[2]?e[2].replace(/\D/g,""):"1",new Date(Date.UTC(e[0],e[1]-1,e[2]))}}function q(t,e,a){return t=(t*ht+ut)%ut,e=(e*ht+ut)%ut,Math.abs(t-e)>Math.PI&&(t>e?t-=ut:e>t&&(e-=ut)),d3.interpolateNumber(t/ht,e/ht)}function L(t){function a(){var t=this,e=t.value;!1!==E(t)&&(m.width=e,Z.resize({width:e}))}function n(){var t=this,e=t.value,a=C(e,m.transform);null!==a&&(m.center[0]=a),m.transform=e,Mt.set(m),Z.reload(m)}function r(){var t=this;t&&(m.projection=t.value,Mt.set(m),Z.reproject(m))}function s(){!1!==E(this)&&!1!==o()&&Z.rotate(m)}function o(){var t=v("centerx"),e=v("centery"),a=v("centerz");if(t&&e){if("equatorial"!==m.transform)m.center[0]=parseFloat(t.value);else{var n=parseFloat(t.value);m.center[0]=n>12?15*n-360:15*n}m.center[1]=parseFloat(e.value);var r=parseFloat(a.value);return m.center[2]=isNaN(r)?0:r,""!==t.value&&""!==e.value}}function i(t){var e=d3.time.format("%Y%m%dT%H%M%S%Z"),a="d3-celestial",n=Z.date();return n&&(a+=e(n)),a+t}function l(){var t=this.value;t&&c(t)}function c(t){var a,n=[],r=vt;if("---"===t)return Z.constellation=null,a=Z.zoomBy(),1!==a&&n.push({param:"zoom",value:1/a,duration:0}),void Z.animate(n,!1);if(T(Z.constellations)&&k(Z.constellations,t)){var s=Z.constellations[t],o=e(s.center,mt[r.transform]);r.center=o,N(r.center,r.transform),a=Z.zoomBy(),1!==a&&n.push({param:"zoom",value:1/a,duration:0}),n.push({param:"center",value:o,duration:0});var i=1+360/s.scale;n.push({param:"zoom",value:i,duration:0}),Z.constellation=t,Z.animate(n,!1)}}function p(){var t,e=this;switch(Object.assign(m,Mt.set()),e.type){case"checkbox":t=e.checked,F(e);break;case"number":if(!1===E(e))return;t=parseFloat(e.value);break;case"color":if(!1===D(e))return;t=e.value;break;case"text":if(-1===e.id.search(/fill$/))return;if(!1===D(e))return;t=e.value;break;case"select-one":t=e.value}null!==t&&(d(e.id,t),"dsos-style-fill"===e.id?(d("dsos-style-stroke",t),d("dsos-nameStyle-fill",t)):"constellations-namesType"===e.id?B():"lang"===e.id?u(t):"advanced"===e.id&&G(t),o(),Object.assign(vt,m),Z.apply(m))}function d(t,e){var a=t.split("-");switch(a.length){case 1:m[a[0]]=e;break;case 2:m[a[0]][a[1]]=e;break;case 3:m[a[0]][a[1]][a[2]]=e;break;default:return}}function u(t){Object.assign(m,vt);for(var e=["constellations","planets"],a=0;a1?(S.append("label").attr("for","stars-"+q).html("Show"),P=0,S.append("label").attr("title","Type of star name").attr("for","stars-"+q+"Type").html(""),j=S.append("select").attr("id","stars-"+q+"Type").on("change",p),I=L.map(function(t,e){return t===m.stars[q+"Type"]&&(P=e),{o:t,n:A[q][t]}}),j.selectAll("option").data(I).enter().append("option").attr("value",function(t){return t.o}).text(function(t){return t.n}),j.property("selectedIndex",P),S.append("input").attr("type","checkbox").attr("id","stars-"+q).property("checked",m.stars[q]).on("change",p)):1===L.length&&(S.append("label").attr("for","stars-"+q).html(" "+A[q][L[0]]),S.append("input").attr("type","checkbox").attr("id","stars-"+q).property("checked",m.stars[q]).on("change",p)),S.append("label").attr("for","stars-"+q+"Limit").html("down to mag"),S.append("input").attr("type","number").attr("id","stars-"+q+"Limit").attr("title","Star name display limit (magnitude)").attr("value",m.stars[q+"Limit"]).attr("max","6").attr("min","-1").attr("step","0.1").on("change",p)}S.append("br"),S.append("label").attr("for","stars-size").attr("class","advanced").html("Stellar disk size: base"),S.append("input").attr("type","number").attr("id","stars-size").attr("class","advanced").attr("title","Size of the displayed star disk; base").attr("value",m.stars.size).attr("max","100").attr("min","0").attr("step","0.1").on("change",p),S.append("label").attr("for","stars-exponent").attr("class","advanced").html(" * e ^ (exponent"),S.append("input").attr("type","number").attr("id","stars-exponent").attr("class","advanced").attr("title","Size of the displayed star disk; exponent").attr("value",m.stars.exponent).attr("max","3").attr("min","-1").attr("step","0.01").on("change",p),S.append("span").attr("class","advanced").text(" * (magnitude + 2)) [* adaptation]"),F(v("stars-show")),S=x.append("div").attr("class","col").attr("id","dsos"),S.append("label").attr("class","header").attr("title","Deep Space Objects").attr("for","dsos-show").html("DSOs"),S.append("input").attr("type","checkbox").attr("id","dsos-show").property("checked",m.dsos.show).on("change",p),S.append("label").attr("for","dsos-limit").html("down to mag"),S.append("input").attr("type","number").attr("id","dsos-limit").attr("title","DSO display limit (magnitude)").attr("value",m.dsos.limit).attr("max","6").attr("min","0").attr("step","0.1").on("change",p),S.append("label").attr("for","dsos-colors").html("with symbol colors"),S.append("input").attr("type","checkbox").attr("id","dsos-colors").property("checked",m.dsos.colors).on("change",p),S.append("label").attr("for","dsos-color").html("or default color "),S.append("input").attr("type","color").attr("autocomplete","off").attr("id","dsos-style-fill").attr("title","DSO color").property("value",m.dsos.style.fill).on("change",p),S.append("br"),A=kt.dsonames[m.culture]||kt.dsonames.iau;for(q in A)if(k(A,q)){var _=Object.keys(A[q]);S.append("label").attr("for","dsos-"+q).html("Show"),P=0,S.append("label").attr("title","Type of DSO name").attr("for","dsos-"+q+"Type").attr("class","advanced").html(""),j=S.append("select").attr("id","dsos-"+q+"Type").attr("class","advanced").on("change",p),I=_.map(function(t,e){return t===m.stars[q+"Type"]&&(P=e),{o:t,n:A[q][t]}}),j.selectAll("option").data(I).enter().append("option").attr("value",function(t){return t.o}).text(function(t){return t.n}),j.property("selectedIndex",P),S.append("label").attr("for","dsos-"+q).html("names"),S.append("input").attr("type","checkbox").attr("id","dsos-"+q).property("checked",m.dsos[q]).on("change",p)}S.append("label").attr("for","dsos-nameLimit").html("down to mag"),S.append("input").attr("type","number").attr("id","dsos-nameLimit").attr("title","DSO name display limit (magnitude)").attr("value",m.dsos.nameLimit).attr("max","6").attr("min","0").attr("step","0.1").on("change",p),S.append("br"),S.append("label").attr("for","dsos-size").attr("class","advanced").html("DSO symbol size: (base"),S.append("input").attr("type","number").attr("id","dsos-size").attr("class","advanced").attr("title","Size of the displayed symbol: base").attr("value",m.dsos.size).attr("max","100").attr("min","0").attr("step","0.1").on("change",p),S.append("label").attr("for","dsos-exponent").attr("class","advanced").html(" * 2 [* adaptation] - magnitude) ^ exponent"),S.append("input").attr("type","number").attr("id","dsos-exponent").attr("class","advanced").attr("title","Size of the displayed symbol; exponent").attr("value",m.dsos.exponent).attr("max","3").attr("min","-1").attr("step","0.01").on("change",p),F(v("dsos-show")),S=x.append("div").attr("class","col").attr("id","constellations"),S.append("label").attr("class","header").html("Constellations"),A=kt.constellations[m.culture]||kt.constellations.iau;for(q in A)if(k(A,q)){var O=Object.keys(A[q]);O.length>1?(S.append("label").attr("for","constellations-"+q).html("Show"),P=0,S.append("label").attr("title","Language of constellation names").attr("for","constellations-"+q+"Type").attr("class","advanced").html(""),j=S.append("select").attr("id","constellations-"+q+"Type").attr("class","advanced").on("change",p),I=O.map(function(t,e){return t===m.constellations[q+"Type"]&&(P=e),{o:t,n:A[q][t]}}),j.selectAll("option").data(I).enter().append("option").attr("value",function(t){return t.o}).text(function(t){return t.n}),j.property("selectedIndex",P),S.append("label").attr("for","constellations-"+q).html("names"),S.append("input").attr("type","checkbox").attr("id","constellations-"+q).property("checked",m.constellations[q]).on("change",p)):1===O.length&&(S.append("label").attr("for","constellations-"+q).attr("class","advanced").html(" "+A[q][O[0]]),S.append("input").attr("type","checkbox").attr("id","constellations-"+q).attr("class","advanced").property("checked",m.constellations[q]).on("change",p))}S.append("label").attr("for","constellations-lines").html(" lines"),S.append("input").attr("type","checkbox").attr("id","constellations-lines").property("checked",m.constellations.lines).on("change",p),S.append("label").attr("for","constellations-bounds").html(" boundaries"),S.append("input").attr("type","checkbox").attr("id","constellations-bounds").property("checked",m.constellations.bounds).on("change",p),F(v("constellations-names")),S=x.append("div").attr("class","col").attr("id","lines"),S.append("label").attr("class","header").html("Lines"),S.append("label").attr("title","Latitude/longitude grid lines").attr("for","lines-graticule").html("Graticule"),S.append("input").attr("type","checkbox").attr("id","lines-graticule-show").property("checked",m.lines.graticule.show).on("change",p),S.append("label").attr("for","lines-equatorial").html("Equator"),S.append("input").attr("type","checkbox").attr("id","lines-equatorial-show").property("checked",m.lines.equatorial.show).on("change",p),S.append("label").attr("for","lines-ecliptic").html("Ecliptic"),S.append("input").attr("type","checkbox").attr("id","lines-ecliptic-show").property("checked",m.lines.ecliptic.show).on("change",p),S.append("label").attr("for","lines-galactic").html("Galactic plane"),S.append("input").attr("type","checkbox").attr("id","lines-galactic-show").property("checked",m.lines.galactic.show).on("change",p),S.append("label").attr("for","lines-supergalactic").html("Supergalactic plane"),S.append("input").attr("type","checkbox").attr("id","lines-supergalactic-show").property("checked",m.lines.supergalactic.show).on("change",p),S=x.append("div").attr("class","col").attr("id","other"),S.append("label").attr("class","header").html("Other"),S.append("label").attr("for","mw-show").html("Milky Way"),S.append("input").attr("type","checkbox").attr("id","mw-show").property("checked",m.mw.show).on("change",p),S.append("label").attr("for","mw-style-fill").attr("class","advanced").html(" color"),S.append("input").attr("type","color").attr("id","mw-style-fill").attr("class","advanced").attr("title","Milky Way color").attr("value",m.mw.style.fill).on("change",p),S.append("label").attr("for","mw-style-opacity").attr("class","advanced").html(" opacity"),S.append("input").attr("type","number").attr("id","mw-style-opacity").attr("class","advanced").attr("title","Transparency of each Milky Way layer").attr("value",m.mw.style.opacity).attr("max","1").attr("min","0").attr("step","0.01").on("change",p),S.append("label").attr("for","advanced").html("Advanced options"),S.append("input").attr("type","checkbox").attr("id","advanced").property("checked",m.advanced).on("change",p),S.append("br"),S.append("label").attr("for","background").html("Background color"),S.append("input").attr("type","color").attr("id","background-fill").attr("title","Background color").attr("value",m.background.fill).on("change",p),S.append("label").attr("title","Star/DSO sizes are increased with higher zoom-levels").attr("for","adaptable").attr("class","advanced").html("Adaptable object sizes"),S.append("input").attr("type","checkbox").attr("id","adaptable").attr("class","advanced").property("checked",m.adaptable).on("change",p);var V=xt[m.culture];P=0,S.append("label").attr("title","General language setting").attr("for","lang").html("Object names "),j=S.append("select").attr("id","lang").on("change",p),I=V.map(function(t,e){return t===m.lang&&(P=e),{o:t,n:kt.constellations[m.culture].names[t]}}),I=[{o:"---",n:"(Select language)"}].concat(I),j.selectAll("option").data(I).enter().append("option").attr("value",function(t){return t.o}).text(function(t){return t.n}),j.property("selectedIndex",P),S=x.append("div").attr("class","col").attr("id","download"),S.append("label").attr("class","header").html("Download"),S.append("input").attr("type","button").attr("id","download-png").attr("value","PNG Image").on("click",function(){var t=d3.select("body").append("a").node(),e=document.querySelector("#"+m.container+" canvas");t.download=i(".png"),t.rel="noopener",t.href=e.toDataURL("image/png").replace("image/png","image/octet-stream"),t.click(),d3.select(t).remove()}),S.append("input").attr("type","button").attr("id","download-svg").attr("value","SVG File").on("click",function(){return W(i(".svg")),!1}),H(),C(m.transform),U(t),G(m.advanced),Z.updateForm=f,Z.showConstellation=c,Z.setLanguage=function(t){var e=Mt.set();return-1!==xt[m.culture].indexOf(t)&&(e=u(t)),e}}function F(t){var e,a=t.id;switch(a){case"stars-show":e=!v(a).checked;for(var n=0;nt.max)return O(t,t.title+" must be between "+(t.min+a)+" and "+(+t.max-a)),!1}return d3.select("#error").style({top:"-9999px",left:"-9999px",opacity:0}),!0}function D(t){var e;if(t.validity){if(e=t.validity,e.typeMismatch||e.badInput)return O(t,t.title+": check field value"),!1;if(-1===t.value.search(/^#[0-9A-F]{6}$/i))return O(t,t.title+": not a color value"),!1}else{if(""===(e=t.value))return!0;if(-1===e.search(/^#[0-9A-F]{6}$/i))return O(t,t.title+": not a color value"),!1}return d3.select("#error").style({top:"-9999px",left:"-9999px",opacity:0}),!0}function C(t,e){var a=v("centerx");return a?(e&&("equatorial"===t&&"equatorial"!==e?(a.value=(a.value/15).toFixed(1),a.value<0&&(a.value+=24)):"equatorial"!==t&&"equatorial"===e&&(a.value=(15*a.value).toFixed(1),a.value>180&&(a.value-=360))),"equatorial"===t?(a.min="0",a.max="24",v("cxunit").innerHTML="h"):(a.min="-180",a.max="180",v("cxunit").innerHTML="°"),a.value):null}function N(t,e){var a=v("centerx"),n=v("centery"),r=v("centerz");a&&n&&((null===t||t.length<1)&&(t=[0,0,0]),(t.length<=2||void 0===t[2])&&(t[2]=0),a.value="equatorial"!==e?t[0].toFixed(1):t[0]<0?(t[0]/15+24).toFixed(1):(t[0]/15).toFixed(1),n.value=t[1].toFixed(1),r.value=null!==t[2]?t[2].toFixed(1):0,Mt.set({center:t}))}function H(){var t,e,a,n=/\d+(\.\d+)?/g,r={s:6,d:6},s=Z.settings();return a=s.dsos.data,t=a.match(n),null!==t&&(r.d=parseFloat(t[t.length-1])),6!==r.d&&(v("dsos-limit").max=r.d,v("dsos-nameLimit").max=r.d),e=s.stars.data,t=e.match(n),null!==t&&(r.s=parseFloat(t[t.length-1])),6!=r.s&&(v("stars-limit").max=r.s,v("stars-designationLimit").max=r.s,v("stars-propernameLimit").max=r.s),r}function G(t){var e=t?"inline-block":"none";d3.selectAll(".advanced").style("display",e)}function U(t,e){var a,n;if(k(t,"formFields")){if(e&&k(t.formFields,e))return void d3.select("#"+e).style({display:"none"});if(!1!==t.form||!0!==t.location){!1===t.form&&d3.select("#celestial-form").style("display","none");for(n in t.formFields)k(t.formFields,n)&&"location"!==n&&(a=!1===t.formFields[n]?"none":"block",d3.select("#"+n).style({display:a}))}else{d3.select("#celestial-form").style("display","inline-block");for(n in t.formFields)k(t.formFields,n)&&"location"!==n&&d3.select("#"+n).style({display:"none"})}}}function B(){var t,e,a=d3.select("#constellation"),n=[],r=0,s=vt;if(Z.container.selectAll(".constname").each(function(a,o){t=a.id,t===s.constellation&&(r=o),e=a.properties[s.constellations.namesType],e!==t&&(e+=" ("+t+")"),n.push({o:t,n:e})}),n.length<1||a.length<1)return void setTimeout(B,1e3);n=[{o:"---",n:"(Select constellation)"}].concat(n),a.selectAll("option").remove(),a.selectAll("option").data(n).enter().append("option").attr("value",function(t){return t.o}).text(function(t){return t.n}),a.property("selectedIndex",r)}function V(t){function e(){u.setTime(Date.now()),v("datetime").value=r(u,h),i()}function a(){navigator.geolocation.getCurrentPosition(function(t){d=[b(t.coords.latitude,4),b(t.coords.longitude,4)],v("lat").value=d[0],v("lon").value=d[1],i()})}function n(){g.show(u)}function r(t,e){var a;if(e&&"0"!==e){var n=Math.floor(Math.abs(e)/60),r=Math.abs(e)-60*n;a=(e<0?" +":" −")+w(n)+w(r)}else a=" ±0000";return c(t)+a}function s(t){return!(!t||!z(t)||t.length<2)&&(!(!x(t[0])||t[0]<-90||t[0]>90)&&!(!x(t[1])||t[1]<-180||t[1]>180))}function o(){Object.assign(m,Mt.set()),m.horizon.show=!!v("horizon-show").checked,m.daylight.show=!!v("daylight-show").checked,m.planets.show=!!v("planets-show").checked,m.planets.names=!!v("planets-names").checked,m.planets.namesType=v("planets-namesType").value,m.planets.symbolType=v("planets-symbolType").value,F(v("planets-show")),Z.apply(m)}function i(){var t=parseFloat(v("lon").value),e=parseFloat(v("lat").value);if(Object.assign(m,Mt.set()),u=c.parse(v("datetime").value.slice(0,-6)),!isNaN(t)&&!isNaN(e)){if(e!==d[0]||t!==d[1])return d=[e,t],void l([e,t]);v("datetime").value=r(u,h);var a=new Date(u.valueOf()+6e4*(f-h));p=Z.getPoint(yt.inverse(a,[90,0],d),m.transform),p[2]=0,"zenith"===m.follow?Z.rotate({center:p}):Z.redraw()}}function l(t){if(t){var e="http://api.timezonedb.com/v2.1/get-time-zone?key=AEFXZPQ3FDPF&format=json&by=position";e+="&lat="+t[0]+"&lng="+t[1],e+="&time="+Math.floor(u.getTime()/1e3),d3.json(e,function(t,e){if(t)return console.warn(t);h=e.gmtOffset/60,i()})}}var c=d3.time.format("%Y-%m-%d %H:%M:%S"),p=[0,0],d=[0,0],u=new Date,f=u.getTimezoneOffset(),h=f,m=Mt.set(t),y=d3.select("#celestial-form form").insert("div","div#general").attr("id","loc"),g=new Ot(m,function(t,e){v("datetime").value=r(t,e),h=e,i()});k(m,"geopos")&&null!==m.geopos&&2===m.geopos.length&&(d=m.geopos);var M=y.append("div").attr("class","col").attr("id","location").style("display","none");M.append("label").attr("title","Location coordinates long/lat").attr("for","lat").html("Location"),M.append("input").attr("type","number").attr("id","lat").attr("title","Latitude").attr("placeholder","Latitude").attr("max","90").attr("min","-90").attr("step","0.0001").attr("value",d[0]).on("change",function(){!0===E(this)&&i()}),M.append("span").html("°"),M.append("input").attr("type","number").attr("id","lon").attr("title","Longitude").attr("placeholder","Longitude").attr("max","180").attr("min","-180").attr("step","0.0001").attr("value",d[1]).on("change",function(){!0===E(this)&&i()}),M.append("span").html("°"),"geolocation"in navigator&&M.append("input").attr("type","button").attr("value","Here").attr("id","here").on("click",a),M.append("label").attr("title","Local date/time").attr("for","datetime").html(" Date/time"),M.append("input").attr("type","button").attr("id","day-left").attr("title","One day back").on("click",function(){u.setDate(u.getDate()-1),v("datetime").value=r(u,h),i()}),M.append("input").attr("type","text").attr("id","datetime").attr("title","Date and time").attr("value",r(u,h)).on("click",n,!0).on("input",function(){this.value=r(u,h),g.isVisible()||n()}),M.append("div").attr("id","datepick").on("click",n),M.append("input").attr("type","button").attr("id","day-right").attr("title","One day forward").on("click",function(){u.setDate(u.getDate()+1),v("datetime").value=r(u,h),i()}),M.append("input").attr("type","button").attr("value","Now").attr("id","now").on("click",e),M.append("br"),M.append("label").attr("title","Show horizon marker").attr("for","horizon-show").html(" Horizon marker"),M.append("input").attr("type","checkbox").attr("id","horizon-show").property("checked",m.horizon.show).on("change",o),M.append("label").attr("title","Show daylight").attr("for","daylight-show").html("Daylight sky"),M.append("input").attr("type","checkbox").attr("id","daylight-show").property("checked",m.daylight.show).on("change",o),M.append("br"),M.append("label").attr("title","Show solar system objects").attr("for","planets-show").html(" Planets, Sun & Moon"), +M.append("input").attr("type","checkbox").attr("id","planets-show").property("checked",m.planets.show).on("change",o);var T=kt.planets[m.culture]||kt.planets.iau;for(var j in T)if(k(T,j)){var I=Object.keys(T[j]);if(I.length>1){var A="symbol"===j?"as":"with";M.append("label").attr("for","planets-"+j+"Type").html(A);var q=0;M.append("label").attr("title","Type of planet name").attr("for","planets-"+j+"Type").attr("class","advanced").html("");var L=M.append("select").attr("id","planets-"+j+"Type").on("change",o),_=I.map(function(t,e){return t===m.planets[j+"Type"]&&(q=e),{o:t,n:T[j][t]}});L.selectAll("option").data(_).enter().append("option").attr("value",function(t){return t.o}).text(function(t){return t.n}),L.property("selectedIndex",q),"names"===j&&(L.attr("class","advanced"),M.append("label").attr("for","planets-"+j).html("names"),M.append("input").attr("type","checkbox").attr("id","planets-"+j).property("checked",m.planets[j]).on("change",o))}}F(v("planets-show")),G(m.advanced),d3.select(document).on("mousedown",function(){!P(d3.event.target,"celestial-date")&&g.isVisible()&&g.hide()}),Z.dateFormat=r,Z.date=function(t,e){if(!t)return u;h=e||h,Object.assign(m,Mt.set()),g.isVisible()&&g.hide(),u.setTime(t.valueOf()),v("datetime").value=r(t,h),i()},Z.timezone=function(t){if(!t)return h;h=t||h,Object.assign(m,Mt.set()),g.isVisible()&&g.hide(),v("datetime").value=r(u,h),i()},Z.position=function(){return d},Z.location=function(t){if(!t||t.length<2)return d;s(t)&&(d=t.slice(),v("lat").value=d[0],v("lon").value=d[1],l(d))},Z.skyview=function(t){if(!t)return{date:u,location:d,timezone:h};var e=!1;return g.isVisible()&&g.hide(),k(t,"timezone")&&x(t.timezone)&&Math.abs(t.timezone)<=14&&(h=t.timezone,e=!0),k(t,"date")&&S(t.date)&&(u.setTime(t.date.valueOf()),v("datetime").value=r(t.date,h),e=!0),k(t,"date")&&s(t.location)?(d=t.location.slice(),v("lat").value=d[0],v("lon").value=d[1],void l(d)):!1===e?{date:u,location:d,timezone:h}:void("zenith"===m.follow?i():Z.redraw())},Z.dtLoc=Z.skyview,Z.zenith=function(){return p},Z.nadir=function(){var t=-p[1],e=p[0]+180;return e>180&&(e-=360),[e,t-.001]},!k(t,"formFields")||!0!==t.location&&!0!==t.formFields.location||d3.select("#location").style({display:"inline-block"}),!0===t.location&&!0===t.formFields.location&&setTimeout(i,1e3)}function W(t){function a(t){return O.clip&&d3.geo.distance(D,t)>ft?0:1}function r(t){return"translate("+N(t)+")"}function s(t,e){var a=k(kt[t],G)?"."+G:"";return e=e?"."+e:"",t+a+e+".json"}function i(t){var e={};return e.fill=t.fill||"none",e["fill-opacity"]=t.opacity||1,e.stroke=t.stroke||"none",e["stroke-width"]=t.width||null,e["stroke-opacity"]=t.opacity||1,k(t,"dash")?e["stroke-dasharray"]=t.dash.join(" "):e["stroke-dasharray"]="none",e.font=t.font||null,e}function c(t){var e={};return e.stroke="none",e.fill=t.fill||"none",e["fill-opacity"]=t.opacity||1,e["text-anchor"]=h(t.align),e.font=t.font||null,e}function d(t,e){var a,n,r,s;if(t>1.885)return{fill:"transparent"};t<=1.36?(n="#daf1fa",r="#93d7f0",s="#57c0e8",a=-(1.36-t)/10):(a=(t-1.36)/(1.885-1.36),n=d3.interpolateLab("#daf1fa","#e8c866")(a),r=d3.interpolateLab("#93c7d0","#ff854a")(a),s=d3.interpolateLab("#57b0c8","#6caae2")(a));var o=W.append("radialGradient").attr("cx",e[0]).attr("cy",e[1]).attr("fr","0").attr("r","300").attr("id","skygradient").attr("gradientUnits","userSpaceOnUse");return o.append("stop").attr("offset","0").attr("stop-color",n),o.append("stop").attr("offset",.2+.4*a).attr("stop-color",r),o.append("stop").attr("offset","1").attr("stop-color",s),{fill:"url(#skygradient)","fill-opacity":f(a,1.4)}}function f(t,e){return.9*(1-(Math.pow(Math.E,t*e)-1)/(Math.pow(Math.E,e)-1))}function h(t){return t?"center"===t?"middle":"right"===t?"end":"start":"start"}function m(t){var e=g(t.mag,t.dim)||9,a=y(t.type);return-1!==d3.svg.symbolTypes.indexOf(a)?d3.svg.symbol().type(a).size(e)():d3.svg.customSymbol().type(a).size(e)()}function y(t){return t&&k(F.dsos.symbols,t)?F.dsos.symbols[t].shape:"circle"}function g(t,e){return t&&999!==t?Math.pow(2*F.dsos.size*H-t,F.dsos.exponent):Math.pow(parseInt(e)*F.dsos.size*H/7,.5)}function v(t){var e=F.dsos.namesType,a=t.id;return"desig"!==e&&k(it,a)&&k(it[a],e)?it[a][e]:t.properties.desig}function M(t){return k(ot,t)?ot[t][F.stars.designationType]:""}function b(t){var e=F.stars.propernameType;return k(ot,t)?k(ot[t],e)?ot[t][e]:ot[t].name:""}function w(t){if(null===t)return.1;var e=F.stars.size*H*Math.exp(F.stars.exponent*(t+2));return Math.max(e,.1)}function x(t){return!F.stars.colors||isNaN(t.bv)?F.stars.style.fill:bt(t.bv)}function T(t){return t.properties[F.constellations.namesType]}function S(t){return d3.svg.customSymbol().type("crescent").size(121).ratio(t.age)()}function j(t){var e=P(t.mag)||2;return d3.svg.symbol().type("circle").size(e)()}function P(t){var e=t||2,a=4*H*Math.exp(-.05*(e+2));return Math.max(a,2)}function I(t){var e={type:"Feature",id:t.id,properties:{},geometry:{}};return e.properties.name=t[F.planets.namesType],"symbol"!==F.planets.symbolType&&"letter"!==F.planets.symbolType||(e.properties.symbol=F.planets.symbols[e.id][F.planets.symbolType]),e.properties.mag=t.ephemeris.mag||10,"lun"===e.id&&(e.properties.age=t.ephemeris.age),e.geometry.type="Point",e.geometry.coordinates=t.ephemeris.pos,e}var A,q=(d3.select("body").append("div").attr("id","d3-celestial-svg").attr("style","display: none"),d3.select("#d3-celestial-svg").append("svg")),L=Z.metrics(),F=Mt.set(),_=F.datapath,O=wt[F.projection],E=n(F.center),D=[-E[0],-E[1]],C=O.scale*L.width/1024,N=Z.projection(F.projection).rotate(E).translate([L.width/2,L.height/2]).scale([L.scale]),H=F.adaptable?Math.sqrt(L.scale/C):1,G=""!==F.culture&&"iau"!==F.culture?F.culture:"";q.selectAll("*").remove(),O.clip&&(N.clipAngle(90),A=d3.geo.circle().angle([179.95]).origin(D)),q.attr("width",L.width).attr("height",L.height);var U=q.append("g"),B=q.append("g"),V=q.append("g"),W=q.append("g"),R=d3.geo.graticule().minorStep([15,10]),Y=d3.geo.path().projection(N),J=d3.queue(2);if(A?U.append("path").datum(A).attr("class","outline").attr("d",Y).style("fill",F.background.fill):U.append("path").datum(R.outline).attr("class","outline").attr("d",Y).style("fill",F.background.fill),F.lines.graticule.show){if("equatorial"===F.transform?B.append("path").datum(R).attr("class","gridline").style(i(F.lines.graticule)).attr("d",Y):Z.graticule(B,Y,F.transform),k(F.lines.graticule,"lon")&&F.lines.graticule.lon.pos.length>0){var $={type:"FeatureCollection",features:u("lon",F.lines.graticule.lon.pos)};B.selectAll(".gridvalues_lon").data($.features).enter().append("text").attr("transform",function(t,e){return r(t.geometry.coordinates)}).text(function(t){return t.properties.value}).attr({dy:".5em",dx:"-.75em",class:"graticule_lon"}).style(c(F.lines.graticule.lon))}if(k(F.lines.graticule,"lat")&&F.lines.graticule.lat.pos.length>0){var K={type:"FeatureCollection",features:u("lat",F.lines.graticule.lat.pos)};B.selectAll(".gridvalues_lat").data(K.features).enter().append("text").attr("transform",function(t,e){return r(t.geometry.coordinates)}).text(function(t){return t.properties.value}).attr({dy:"-.5em",dx:"-.75em",class:"graticule_lat"}).style(c(F.lines.graticule.lat))}}for(var Q in F.lines)k(F.lines,Q)&&"graticule"!=Q&&!1!==F.lines[Q].show&&B.append("path").datum(d3.geo.circle().angle([90]).origin(dt[Q])).attr("class",Q).style(i(F.lines[Q])).attr("d",Y);F.mw.show&&J.defer(function(t){d3.json(_+"mw.json",function(e,a){e&&t(e);var n=o(a,F.transform),r=p(n);U.selectAll(".mway").data(n.features).enter().append("path").attr("class","mw").style(i(F.mw.style)).attr("d",Y),U.selectAll(".mwaybg").data(r.features).enter().append("path").attr("class","mwbg").style({fill:F.background.fill,"fill-opacity":F.background.opacity}).attr("d",Y),t(null)})}),F.constellations.bounds&&J.defer(function(t){d3.json(_+s("constellations","bounds"),function(e,a){e&&t(e);var n=o(a,F.transform);B.selectAll(".bounds").data(n.features).enter().append("path").attr("class","boundaryline").style(i(F.constellations.boundStyle)).attr("d",Y),t(null)})}),F.constellations.lines&&J.defer(function(t){d3.json(_+s("constellations","lines"),function(e,a){e&&t(e);var n=o(a,F.transform);B.selectAll(".lines").data(n.features).enter().append("path").attr("class","constline").style({fill:"none",stroke:function(t){return z(F.constellations.lineStyle.stroke)?F.constellations.lineStyle.stroke[t.properties.rank-1]:null},"stroke-width":function(t){return z(F.constellations.lineStyle.width)?F.constellations.lineStyle.width[t.properties.rank-1]:0},"stroke-opacity":function(t){return z(F.constellations.lineStyle.opacity)?F.constellations.lineStyle.opacity[t.properties.rank-1]:0}}).attr("d",Y),t(null)})}),J.defer(function(t){var e=A||R.outline;V.append("path").datum(e).attr("class","outline").style({fill:"none",stroke:F.background.stroke,"stroke-width":F.background.width,"stroke-opacity":1,"stroke-dasharray":"none"}).attr("d",Y),t(null)}),F.constellations.names&&J.defer(function(t){d3.json(_+s("constellations"),function(e,n){e&&t(e);var s=o(n,F.transform);V.selectAll(".constnames").data(s.features.filter(function(t){return 1===a(t.geometry.coordinates)})).enter().append("text").attr("class","constname").style({fill:function(t){return z(F.constellations.nameStyle.fill)?F.constellations.nameStyle.fill[t.properties.rank-1]:"#ffffff"},"fill-opacity":function(t){return z(F.constellations.nameStyle.opacity)?F.constellations.nameStyle.opacity[t.properties.rank-1]:1},font:function(t){return z(F.constellations.nameStyle.font)?F.constellations.nameStyle.font[t.properties.rank-1]:"14px sans-serif"},"text-anchor":h(F.constellations.nameStyle.align)}).attr("transform",function(t,e){return r(t.geometry.coordinates)}).text(function(t){return T(t)}),t(null)})}),F.stars.show&&J.defer(function(t){d3.json(_+F.stars.data,function(e,n){e&&t(e);var s=o(n,F.transform);V.selectAll(".stars").data(s.features.filter(function(t){return t.properties.mag<=F.stars.limit})).enter().append("path").attr("class","star").attr("d",Y.pointRadius(function(t){return t.properties?w(t.properties.mag):1})).style("fill",function(t){return x(t.properties)}),F.stars.designation&&V.selectAll(".stardesigs").data(s.features.filter(function(t){return t.properties.mag<=F.stars.designationLimit*H&&1===a(t.geometry.coordinates)})).enter().append("text").attr("transform",function(t){return r(t.geometry.coordinates)}).text(function(t){return M(t.id)}).attr({dy:".85em",dx:".35em",class:"stardesig"}).style(c(F.stars.designationStyle)),F.stars.propername&&V.selectAll(".starnames").data(s.features.filter(function(t){return t.properties.mag<=F.stars.propernameLimit*H&&1===a(t.geometry.coordinates)})).enter().append("text").attr("transform",function(t){return r(t.geometry.coordinates)}).text(function(t){return b(t.id)}).attr({dy:"-.5em",dx:"-.35em",class:"starname"}).style(c(F.stars.propernameStyle)),t(null)})}),F.dsos.show&&J.defer(function(t){d3.json(_+F.dsos.data,function(e,n){e&&t(e);var s=o(n,F.transform);V.selectAll(".dsos").data(s.features.filter(function(t){return 1===a(t.geometry.coordinates)&&(999===t.properties.mag&&Math.sqrt(parseInt(t.properties.dim))>F.dsos.limit*H||999!==t.properties.mag&&t.properties.mag<=F.dsos.limit)})).enter().append("path").attr("class",function(t){return"dso "+t.properties.type}).style({fill:function(t){return k(F.dsos.symbols[t.properties.type],"stroke")?"none":F.dsos.colors?F.dsos.symbols[t.properties.type].fill:F.dsos.style.fill},"fill-opacity":F.dsos.style.opacity,stroke:function(t){return k(F.dsos.symbols[t.properties.type],"stroke")?F.dsos.colors?F.dsos.symbols[t.properties.type].stroke:F.dsos.style.stroke:"none"},"stroke-width":function(t){return k(F.dsos.symbols[t.properties.type],"width")?F.dsos.colors?F.dsos.symbols[t.properties.type].width:F.dsos.style.width:1},"stroke-opacity":F.dsos.style.opacity}).attr("transform",function(t){return r(t.geometry.coordinates)}).attr("d",function(t){return m(t.properties)}),F.dsos.names&&V.selectAll(".dsonames").data(s.features.filter(function(t){return 1===a(t.geometry.coordinates)&&(999==t.properties.mag&&Math.sqrt(parseInt(t.properties.dim))>F.dsos.nameLimit||999!=t.properties.mag&&t.properties.mag<=F.dsos.nameLimit)})).enter().append("text").attr("class",function(t){return"dsoname "+t.properties.type}).attr("transform",function(t){return r(t.geometry.coordinates)}).text(function(t){return v(t)}).attr({dy:"-.5em",dx:".35em"}).style({fill:function(t){return F.dsos.colors?F.dsos.symbols[t.properties.type].fill:F.dsos.style.fill},"fill-opacity":F.dsos.style.opacity,font:F.dsos.nameStyle.font,"text-anchor":h(F.dsos.nameStyle.align)}),t(null)})}),(F.location||F.formFields.location)&&F.planets.show&&Z.origin&&J.defer(function(t){var n=Z.date(),s=Z.origin(n).spherical(),o={type:"FeatureCollection",features:[]},l={type:"FeatureCollection",features:[]};Z.container.selectAll(".planet").each(function(t){var r=t.id(),i=t(n).equatorial(s);i.ephemeris.pos=e(i.ephemeris.pos,mt[F.transform]),1===a(i.ephemeris.pos)&&("lun"===r?l.features.push(I(i)):o.features.push(I(i)))}),l.features.length>0&&("letter"===F.planets.symbolType?V.selectAll(".moon").data(l.features).enter().append("text").attr("transform",function(t){return r(t.geometry.coordinates)}).text(function(t){return t.properties.symbol}).attr("class","luna").attr({dy:".35em"}).style(c(F.planets.symbolStyle)).style("fill",function(t){return F.planets.symbols[t.id].fill}):(V.selectAll(".dmoon").data(l.features).enter().append("path").attr("class","darkluna").style("fill","#557").attr("transform",function(t){return r(t.geometry.coordinates)}).attr("d",function(t){return d3.svg.symbol().type("circle").size(121)()}),V.selectAll(".moon").data(l.features).enter().append("path").attr("class","luna").style(i(F.planets.symbolStyle)).attr("transform",function(t){return r(t.geometry.coordinates)}).attr("d",function(t){return S(t.properties)}))),"disk"===F.planets.symbolType?V.selectAll(".planets").data(o.features).enter().append("path").attr("transform",function(t){return r(t.geometry.coordinates)}).attr("d",function(t){return j(t.properties)}).attr("class","planet").style(i(F.planets.symbolStyle)).style("fill",function(t){return F.planets.symbols[t.id].fill}):V.selectAll(".planets").data(o.features).enter().append("text").attr("transform",function(t){return r(t.geometry.coordinates)}).text(function(t){return t.properties.symbol}).attr("class","planet").attr({dy:".35em"}).style(c(F.planets.symbolStyle)).style("fill",function(t){return F.planets.symbols[t.id].fill}),F.planets.names&&(V.selectAll(".planetnames").data(o.features).enter().append("text").attr("transform",function(t){return r(t.geometry.coordinates)}).text(function(t){return t.properties.name}).attr({dy:".85em",dx:"-.35em",class:"planetname"}).style(c(F.planets.nameStyle)).style("fill",function(t){return F.planets.symbols[t.id].fill}),l.features.length>0&&V.selectAll(".moonname").data(l.features).enter().append("text").attr("transform",function(t){return r(t.geometry.coordinates)}).text(function(t){return t.properties.name}).attr({dy:".85em",dx:"-.35em",class:"planetname"}).style(c(F.planets.nameStyle)).style("fill",function(t){return F.planets.symbols[t.id].fill})),t(null)}),(F.location||F.formFields.location)&&F.daylight.show&&O.clip&&J.defer(function(t){var e=l("sol");if(e){var n=Z.zenith(),r=e.ephemeris.pos,s=d3.geo.distance(n,r),o=N(r),i=d3.geo.circle().angle([179.95]).origin(r);W.append("path").datum(i).attr("class","daylight").attr("d",Y).style(d(s,o)),1===a(r)&&s0&&Z.data.forEach(function(t){k(t,"save")&&J.defer(function(e){t.save(),e(null)})});var X=d3.map({ellipse:function(t,e){var a=Math.sqrt(t),n=.666*a,r=a/3;return"M"+-n+","+-r+" m"+-n+",0 a"+n+","+r+" 0 1,0"+2*n+",0 a"+n+","+r+" 0 1,0"+-2*n+",0"},marker:function(t,e){var a=t>48?t/4:12,n=a/2,r=n-3;return"M "+-n+" 0 h "+r+" M 0 "+-n+" v "+r+" M "+n+" 0 h "+-r+" M 0 "+n+" v "+-r},"cross-circle":function(t,e){var a=Math.sqrt(t),n=a/2;return"M"+-n+","+-n+" m"+-n+",0 a"+n+","+n+" 0 1,0"+2*n+",0 a"+n+","+n+" 0 1,0"+-2*n+",0 M"+-n+" 0 h "+a+" M 0 "+-n+" v "+a},"stroke-circle":function(t,e){var a=Math.sqrt(t),n=a/2;return"M"+-n+","+-n+" m"+-n+",0 a"+n+","+n+" 0 1,0"+2*n+",0 a"+n+","+n+" 0 1,0"+-2*n+",0 M"+(-a-2)+","+(-a-2)+" l"+(a+4)+","+(a+4)},crescent:function(t,e){var a=Math.sqrt(t),n=a/2,r=.5*(1-Math.cos(e)),s=1.6*Math.abs(r-.5)+.01,o=e>Math.PI?0:1;return"M -1,-1 m 1,"+(1-n)+" a"+n+","+n+" 0 1 "+o+" 0,"+2*n+" a"+n*s+","+n+" 0 1 "+(Math.abs(r)>.5?o:Math.abs(o-1))+" 0,"+-2*n+"z"}});d3.svg.customSymbol=function(){function t(t,r){return X.get(e.call(this,t,r))(a.call(this,t,r),n.call(this,t,r))}var e,a=64,n=d3.functor(1);return t.type=function(a){return arguments.length?(e=d3.functor(a),t):e},t.size=function(e){return arguments.length?(a=d3.functor(e),t):a},t.ratio=function(e){return arguments.length?(n=d3.functor(e),t):n},t},J.await(function(e){if(e)throw e;var a=d3.select("svg").attr("title","D3-Celestial").attr("version",1.1).attr("xmlns","http://www.w3.org/2000/svg"),n=new Blob([a.node().outerHTML],{type:"image/svg+xml;charset=utf-8"}),r=d3.select("body").append("a").node();r.download=t||"d3-celestial.svg",r.rel="noopener",r.href=URL.createObjectURL(n),r.click(),d3.select(r).remove(),d3.select("#d3-celestial-svg").remove()})}var R,Y,J,$,K,Q,Z={version:"0.7.16",container:null,data:[]},X=.035,tt=1.4,et=2e3,at=2500,nt=1500,rt=10,st=1,ot={},it={};if(Z.display=function(a){function r(){O(Nt.clip),At.append("path").datum(Xt.outline).attr("class","outline"),At.append("path").datum(K).attr("class","horizon"),At.append("path").datum(Q).attr("class","daylight"),"equatorial"===R.transform?Xt.minorStep([15,10]):Xt.minorStep([10,10]);for(var t in R.lines)k(R.lines,t)&&("graticule"===t?(At.append("path").datum(Xt).attr("class","graticule"),k(R.lines.graticule,"lon")&&R.lines.graticule.lon.pos.length>0&&At.selectAll(".gridvalues_lon").data(u("lon",R.lines.graticule.lon.pos)).enter().append("path").attr("class","graticule_lon"),k(R.lines.graticule,"lat")&&R.lines.graticule.lat.pos.length>0&&At.selectAll(".gridvalues_lat").data(u("lat",R.lines.graticule.lat.pos)).enter().append("path").attr("class","graticule_lat")):At.append("path").datum(d3.geo.circle().angle([90]).origin(e(dt[t],mt[R.transform]))).attr("class",t));d3.json($t+"mw.json",function(t,e){if(t)return window.alert("Data file could not be loaded or doesn't exist. See readme.md"),console.warn(t);var a=o(e,R.transform),n=p(a);At.selectAll(".mway").data(a.features).enter().append("path").attr("class","mw"),At.selectAll(".mwaybg").data(n.features).enter().append("path").attr("class","mwbg"),y()}),d3.json($t+E("constellations"),function(t,e){if(t)return console.warn(t);var a=o(e,R.transform);At.selectAll(".constnames").data(a.features).enter().append("text").attr("class","constname"),Z.constellations=c(a),y()}),d3.json($t+E("constellations","bounds"),function(t,e){if(t)return console.warn(t);var a=o(e,R.transform);At.selectAll(".bounds").data(a.features).enter().append("path").attr("class","boundaryline"),y()}),d3.json($t+E("constellations","lines"),function(t,e){if(t)return console.warn(t);var a=o(e,R.transform);At.selectAll(".lines").data(a.features).enter().append("path").attr("class","constline"),B(),y()}),d3.json($t+R.stars.data,function(t,e){if(t)return console.warn(t);var a=o(e,R.transform);At.selectAll(".stars").data(a.features).enter().append("path").attr("class","star"),y()}),d3.json($t+E("starnames"),function(t,e){if(t)return console.warn(t);Object.assign(ot,e),y()}),d3.json($t+R.dsos.data,function(t,e){if(t)return console.warn(t);var a=o(e,R.transform);At.selectAll(".dsos").data(a.features).enter().append("path").attr("class","dso"),y()}),d3.json($t+E("dsonames"),function(t,e){if(t)return console.warn(t);Object.assign(it,e),y()}),d3.json($t+E("planets"),function(t,e){if(t)return console.warn(t);var a=i(e,R.transform);At.selectAll(".planets").data(a).enter().append("path").attr("class","planet"),y()}),Z.data.length>0&&Z.data.forEach(function(t){k(t,"file")?d3.json(t.file,t.callback):setTimeout(t.callback,0)},this),R.lang&&""!=R.lang&&d(Z.setLanguage(R.lang))}function s(t){if(t&&1!==t){var e=Y.scale(),a=e*t,n=J.scaleExtent(),r=nt*Math.sqrt(Math.abs(1-t));an[1]&&(a=n[1]);var s=d3.interpolateNumber(e,a);return d3.select({}).transition().duration(r).tween("scale",function(){return function(t){var e=s(t);Y.scale(e),y()}}).transition().duration(0).tween("scale",function(){J.scale(a),y()}),r}}function d(t){R=Mt.set(t),y()}function f(t){var e,a,r,s=R.center,o=Y.rotate(),i=Y.scale(),l=et,c=!1,p=R.orientationfixed;b(o[1],1)===-b(t.center[1],1)&&(c=!0),R=R.set(t);var d=b(d3.geo.distance(s,R.center),2),u=d3.geo.distance([s[2],0],[R.center[2],0]);return dUt*tt?d3.interpolateNumber(i,Ut):function(){return i},r=0===u?function(){return o[2]}:q(s[2],R.center[2]),d>3.14&&(R.center[0]-=.01),R.orientationfixed=!1,e=0===d?function(){return R.center}:d3.geo.interpolate(s,R.center),l=0!==d?l*d:l*u,d3.select({}).transition().duration(l).tween("center",function(){return function(t){var s=n(e(t));s[2]=r(t);var i=a(t<.5?t:1-t);c&&(s[1]=o[1]),Y.scale(i),Y.rotate(s),y()}}).transition().duration(0).tween("center",function(){R.orientationfixed=p,Jt=n(R.center),Y.rotate(Jt),y()})),l}function h(t){Dt=xt(),(R.width!==Dt||t)&&(Gt=Dt/Ht,Ut=Nt.scale*Dt/1024,Kt.style("width",M(Dt)).style("height",M(Gt)).attr("width",Dt*Ct).attr("height",Gt*Ct),J.scaleExtent([Ut,Ut*rt]).scale(Ut*st),Y.translate([Dt/2,Gt/2]).scale(Ut*st),_t&&(_t.style.height=M(Gt)),Ut*=st,y())}function m(e){var a=Tt(e.projection);if(a){var n=Y.rotate(),r=Y.center(),o=Y.scale(),i=J.scaleExtent(),l=Z.projection(R.projection).center(r).translate([Dt/2,Gt/2]).scale([i[0]]),c=at,p=0,d=d3.interpolateNumber(Ht,a.ratio);Nt.clip!=a.clip&&(c=0),O(a.clip);var u=Z.projection(e.projection).center(r).translate([Dt/2,Dt/a.ratio/2]).scale([a.scale*Dt/1024]),f=R.adaptable;return o>i[0]?(p=s(.1),setTimeout(m,p,e),p+c):((R.location||R.formFields.location)&&(_("horizon-show",a.clip),_("daylight-show",!a.clip)),Y=t(l,u),R.adaptable=!1,d3.select({}).transition().duration(c).tween("projection",function(){return function(t){Y.alpha(t).rotate(n),$.projection(Y),O(a.clip),Ht=d(t),Gt=Dt/Ht,Kt.style("width",M(Dt)).style("height",M(Gt)).attr("width",Dt*Ct).attr("height",Gt*Ct),_t&&(_t.style.height=M(Gt)),y()}}).transition().duration(0).tween("projection",function(){Nt=a,Ht=Nt.ratio,Gt=Dt/Nt.ratio,Ut=Nt.scale*Dt/1024,Kt.style("width",M(Dt)).style("height",M(Gt)).attr("width",Dt*Ct).attr("height",Gt*Ct),_t&&(_t.style.height=M(Gt)),R.projection=e.projection,Y=Z.projection(e.projection).rotate(n).translate([Dt/2,Gt/2]).scale(Ut*st),$.projection(Y),O(Nt.clip),J.projection(Y).scaleExtent([Ut,Ut*rt]).scale(Ut*st),R.adaptable=f,Ut*=st,y()}),c)}}function y(){var t=Y.rotate();Zt.setTransform(Ct,0,0,Ct,0,0),R.adaptable&&(Yt=Math.sqrt(Y.scale()/Ut)),Yt||(Yt=1),Bt=R.stars.size,Wt=R.stars.exponent,Vt=R.dsos.size||Bt,Rt=R.dsos.exponent,R.orientationfixed&&R.center.length>2&&(t[2]=R.center[2],Y.rotate(t)),R.center=[-t[0],-t[1],t[2]],N(R.center,R.transform),vt(),w(),R.mw.show&&(At.selectAll(".mw").each(function(t){S(R.mw.style),$(t),Zt.fill()}),"supergalactic"!==R.transform&&At.selectAll(".mwbg").each(function(t){S(R.background),$(t),Zt.fill()}));for(var a in R.lines)k(R.lines,a)&&!0===R.lines[a].show&&(S(R.lines[a]),At.selectAll("."+a).attr("d",$),Zt.stroke());if(k(R.lines.graticule,"lon")&&(j(R.lines.graticule.lon),At.selectAll(".graticule_lon").each(function(t,e){if(T(t.geometry.coordinates)){var a=Y(t.geometry.coordinates);yt(a,t.properties.orientation),Zt.fillText(t.properties.value,a[0],a[1])}})),k(R.lines.graticule,"lat")&&(j(R.lines.graticule.lat),At.selectAll(".graticule_lat").each(function(t,e){if(T(t.geometry.coordinates)){var a=Y(t.geometry.coordinates);yt(a,t.properties.orientation),Zt.fillText(t.properties.value,a[0],a[1])}})),R.constellations.bounds&&(At.selectAll(".boundaryline").each(function(t){S(R.constellations.boundStyle),Z.constellation&&Z.constellation===t.id&&(Zt.lineWidth*=1.5,Zt.setLineDash([])),$(t),Zt.stroke()}),Zt.setLineDash([])),R.constellations.lines&&At.selectAll(".constline").each(function(t){P(t.properties.rank,R.constellations.lineStyle),$(t),Zt.stroke()}),w(!0),R.constellations.names&&At.selectAll(".constname").each(function(t){if(T(t.geometry.coordinates)){P(t.properties.rank,R.constellations.nameStyle);var e=Y(t.geometry.coordinates);Zt.fillText(ut(t),e[0],e[1])}}),R.stars.show&&(S(R.stars.style),At.selectAll(".star").each(function(t){if(T(t.geometry.coordinates)&&t.properties.mag<=R.stars.limit){var e=Y(t.geometry.coordinates),a=ct(t);Zt.fillStyle=pt(t),Zt.beginPath(),Zt.arc(e[0],e[1],a,0,2*Math.PI),Zt.closePath(),Zt.fill(),R.stars.designation&&t.properties.mag<=R.stars.designationLimit*Yt&&(j(R.stars.designationStyle),Zt.fillText(W(t.id),e[0]+a,e[1])),R.stars.propername&&t.properties.mag<=R.stars.propernameLimit*Yt&&(j(R.stars.propernameStyle),Zt.fillText(lt(t.id),e[0]-a,e[1]))}})),R.dsos.show&&At.selectAll(".dso").each(function(t){if(T(t.geometry.coordinates)&&D(t.properties,R.dsos.limit)){var e=Y(t.geometry.coordinates),a=t.properties.type;S(!0===R.dsos.colors?R.dsos.symbols[a]:R.dsos.style);var n=C(t,e);k(R.dsos.symbols[a],"stroke")?Zt.stroke():Zt.fill(),R.dsos.names&&D(t.properties,R.dsos.nameLimit*Yt)&&(j(R.dsos.nameStyle),!0===R.dsos.colors&&(Zt.fillStyle=R.dsos.symbols[a].fill),Zt.fillText(U(t),e[0]+n,e[1]-n))}}),(R.location||R.formFields.location)&&R.planets.show&&Z.origin){var n=Z.date(),r=Z.origin(n).spherical();At.selectAll(".planet").each(function(t){var a=t.id(),s=12,o=t(n).equatorial(r),i=e(o.ephemeris.pos,mt[R.transform]);if(T(i)){var l=Y(i),c=R.planets.symbols[a];if("letter"===R.planets.symbolType?(j(R.planets.symbolStyle),Zt.fillStyle=c.fill,Zt.fillText(c.letter,l[0],l[1])):"lun"===a?(k(c,"size")&&x(c.size)&&(s=c.size),zt.symbol().type("crescent").size(s*s).age(o.ephemeris.age).position(l)(Zt)):"disk"===R.planets.symbolType?(s=k(c,"size")&&x(c.size)?c.size:ht(o.ephemeris),Zt.fillStyle=c.fill,zt.symbol().type("circle").size(s*s).position(l)(Zt),Zt.fill()):"symbol"===R.planets.symbolType&&(j(R.planets.symbolStyle),Zt.fillStyle=c.fill,Zt.fillText(c[R.planets.symbolType],l[0],l[1])),R.planets.names){var p=o[R.planets.namesType];j(R.planets.nameStyle),Zt.fillStyle=c.fill,Zt.fillText(p,l[0]-s/2,l[1]+s/2)}}})}if(Z.data.length>0&&Z.data.forEach(function(t){t.redraw()}),(R.location||R.formFields.location)&&R.daylight.show&&Nt.clip){var s=l("sol");if(s){var o=Z.zenith(),i=s.ephemeris.pos,c=d3.geo.distance(o,i),p=Y(i);Q.origin(i),I(c,p),At.selectAll(".daylight").datum(Q).attr("d",$),Zt.fill(),Zt.fillStyle="#fff",T(i)&&(Zt.beginPath(),Zt.arc(p[0],p[1],6,0,2*Math.PI),Zt.closePath(),Zt.fill())}}(R.location||R.formFields.location)&&R.horizon.show&&!Nt.clip&&(K.origin(Z.nadir()),S(R.horizon),At.selectAll(".horizon").datum(K).attr("d",$),Zt.fill(),R.horizon.stroke&&Zt.stroke()),R.controls&&F(Y.scale()),gt&&Z.runCallback()}function w(t){var e=Y.rotate();Tt(R.projection);Y.rotate([0,0]),S(R.background),At.selectAll(".outline").attr("d",$),!0===t?Zt.stroke():Zt.fill(),Y.rotate(e)}function T(t){return Nt.clip&&d3.geo.distance(R.center,t)>ft?0:1}function S(t){Zt.fillStyle=t.fill||null,Zt.strokeStyle=t.stroke||null,Zt.lineWidth=t.width||null,Zt.globalAlpha=t.opacity||1,Zt.font=t.font||null,k(t,"dash")?Zt.setLineDash(t.dash):Zt.setLineDash([]),Zt.beginPath()}function j(t){Zt.fillStyle=t.fill,Zt.textAlign=t.align||"left",Zt.textBaseline=t.baseline||"bottom",Zt.globalAlpha=t.opacity||1,Zt.font=t.font}function P(t,e){t=t||1,Zt.fillStyle=z(e.fill)?e.fill[t-1]:null,Zt.strokeStyle=z(e.stroke)?e.stroke[t-1]:null,Zt.lineWidth=z(e.width)?e.width[t-1]:null,Zt.globalAlpha=z(e.opacity)?e.opacity[t-1]:1,Zt.font=z(e.font)?e.font[t-1]:null,Zt.textAlign=e.align||"left",Zt.textBaseline=e.baseline||"bottom",Zt.beginPath()}function I(t,e){var a,n,r,s;if(t>1.885)return Zt.fillStyle="transparent",void(Zt.globalAlpha=0);t<=1.36?(n="#daf1fa",r="#93d7f0",s="#57c0e8",a=-(1.36-t)/10):(a=(t-1.36)/(1.885-1.36),n=d3.interpolateLab("#daf1fa","#e8c866")(a),r=d3.interpolateLab("#93c7d0","#ff854a")(a),s=d3.interpolateLab("#57b0c8","#6caae2")(a));var o=Zt.createRadialGradient(e[0],e[1],0,e[0],e[1],300);o.addColorStop(0,n),o.addColorStop(.2+.4*a,r),o.addColorStop(1,s),Zt.fillStyle=o,Zt.globalAlpha=.9*(1-A(a,1.4))}function A(t,e){return(Math.pow(Math.E,t*e)-1)/(Math.pow(Math.E,e)-1)}function F(t){var e=v("celestial-zoomin"),a=v("celestial-zoomout"),n=Nt.scale*Dt/1024;e&&a&&(e.disabled=t>=n*rt*.99,a.disabled=t<=n)}function O(t){t?Y.clipAngle(90):Y.clipAngle(null)}function E(t,e){var a=k(kt[t],Qt)?"."+Qt:"";return e=e?"."+e:"",t+a+e+".json"}function D(t,e){return 999===t.mag&&Math.sqrt(parseInt(t.dim))>e||999!==t.mag&&t.mag<=e}function C(t,e){var a=t.properties,n=G(a)||9,r=H(a.type);return zt.symbol().type(r).size(n).position(e)(Zt),Math.sqrt(n)/2}function H(t){return t&&k(R.dsos.symbols,t)?R.dsos.symbols[t].shape:"circle"}function G(t){return t.mag&&999!==t.mag?Math.pow(2*Vt*Yt-t.mag,Rt):Math.pow(parseInt(t.dim)*Vt*Yt/7,.5)}function U(t){var e=R.dsos.namesType,a=t.id;return"desig"!==e&&k(it,a)&&k(it[a],e)?it[a][e]:t.properties.desig}function W(t){return k(ot,t)?ot[t][R.stars.designationType]:""}function lt(t){var e=R.stars.propernameType;return k(ot,t)?k(ot[t],e)?ot[t][e]:ot[t].name:""}function ct(t){var e=t.properties.mag;if(null===e)return.1;var a=Bt*Yt*Math.exp(Wt*(e+2));return Math.max(a,.1)}function pt(t){var e=t.properties.bv;return!R.stars.colors||isNaN(e)?R.stars.style.fill:bt(e)}function ut(t){return t.properties[R.constellations.namesType]}function ht(t){var e=t.mag;if(null===e)return 2;var a=4*Yt*Math.exp(-.05*(e+2));return Math.max(a,2)}function yt(t,e){for(var a=e.split(""),n="center",r="middle",s=a.length-1;s>=0;s--)switch(a[s]){case"N":r="bottom";break;case"S":r="top";break;case"E":n="left",t[0]+=2;break;case"W":n="right",t[0]-=2}return Zt.textAlign=n,Zt.textBaseline=r,t}function vt(){Zt.clearRect(0,0,Dt+Et[0],Gt+Et[1])}function xt(){return R.width&&R.width>0?R.width:_t?_t.getBoundingClientRect().width-Et[0]:window.getBoundingClientRect().width-2*Et[0]}function Tt(t){if(k(wt,t)){var e=wt[t];return k(e,"ratio")||(e.ratio=2),e}}function St(){if(qt&&!(qt.length<1)){var t,e=qt[Lt];switch(e.param){case"projection":t=m({projection:e.value});break;case"center":t=f({center:e.value});break;case"zoom":t=s(e.value)}e.callback&&setTimeout(e.callback,t),Lt++,!0===Ft&&Lt===qt.length&&(Lt=0),t=0===e.duration||e.duration0&&(l=2*Math.PI-l),[i/ht,l/ht,0]};yt.inverse=function(t,e,a){var n=e[0]*ht,s=e[1]*ht,o=a[0]*ht,i=Math.asin(Math.sin(n)*Math.sin(o)+Math.cos(n)*Math.cos(o)*Math.cos(s)),l=((Math.sin(n)-Math.sin(i)*Math.sin(o))/(Math.cos(i)*Math.cos(o))).toFixed(6);return l=Math.acos(l),l/=ht,[r(t,a[1])-l,i/ht,0]},Z.horizontal=yt;var gt=!1;Z.add=function(t){var e={};return k(t,"type")?"dso"!==t.type&&"json"!==t.type||k(t,"file")&&k(t,"callback")?"line"!==t.type&&"raw"!==t.type||k(t,"callback")?(k(t,"file")&&(e.file=t.file),e.type=t.type,k(t,"callback")&&(e.callback=t.callback),k(t,"redraw")&&(e.redraw=t.redraw),k(t,"save")&&(e.save=t.save),void Z.data.push(e)):console.log("Can't add data"):console.log("Can't add data file"):console.log("Missing type")},Z.remove=function(t){if(null!==t&&tMath.PI,p=Math.abs(i)>.5?c:!c;return t.save(),t.fillStyle="#557",t.beginPath(),t.moveTo(e[0],e[1]),t.arc(e[0],e[1],s,0,2*Math.PI),t.closePath(),t.fill(),t.fillStyle="#eee",t.beginPath(),t.moveTo(e[0],e[1]),t.arc(e[0],e[1],s,-Math.PI/2,Math.PI/2,c),t.scale(l,1),t.arc(e[0]/l,e[1],s,Math.PI/2,-Math.PI/2,p),t.closePath(),t.fill(),t.restore(),s}});return t.type=function(e){return arguments.length?(a=d3.functor(e),t):a},t.size=function(e){return arguments.length?(n=d3.functor(e),t):n},t.age=function(e){return arguments.length?(r=d3.functor(e),t):r},t.text=function(e){return arguments.length?(s=d3.functor(e),t):s},t.position=function(a){if(arguments.length)return e=a,t},t},Z.Canvas=zt;var Tt={sinh:function(t){return(Math.pow(Math.E,t)-Math.pow(Math.E,-t))/2},cosh:function(t){return(Math.pow(Math.E,t)+Math.pow(Math.E,-t))/2},tanh:function(t){return 2/(1+Math.exp(-2*t))-1},asinh:function(t){return Math.log(t+Math.sqrt(t*t+1))},acosh:function(t){return Math.log(t+Math.sqrt(t*t-1))},normalize0:function(t){return(t+3*Math.PI)%(2*Math.PI)-Math.PI},normalize:function(t){return(t+2*Math.PI)%(2*Math.PI)},cartesian:function(t){var e=t[0],a=ft-t[1],n=t[2];return{x:n*Math.sin(a)*Math.cos(e),y:n*Math.sin(a)*Math.sin(e),z:n*Math.cos(a)}},spherical:function(t){var e=Math.sqrt(t.x*t.x+t.y*t.y+t.z*t.z),a=Math.atan(t.y/t.x),n=Math.acos(t.z/e);return[a/ht,n/ht,e]},distance:function(t,e){return Math.acos(Math.sin(t[1])*Math.sin(e[1])+Math.cos(t[1])*Math.cos(e[1])*Math.cos(t[0]-e[0]))}},St={"stars-show":["stars-limit","stars-colors","stars-style-fill","stars-designation","stars-propername","stars-size","stars-exponent"],"stars-designation":["stars-designationType","stars-designationLimit"],"stars-propername":["stars-propernameLimit","stars-propernameType"],"dsos-show":["dsos-limit","dsos-colors","dsos-style-fill","dsos-names","dsos-size","dsos-exponent"],"dsos-names":["dsos-namesType","dsos-nameLimit"],"mw-show":["mw-style-opacity","mw-style-fill"],"constellations-names":["constellations-namesType"],"planets-show":["planets-symbolType","planets-names"],"planets-names":["planets-namesType"]},jt={sol:.0002959122082855911,mer:0x95955473dbc3,ven:0x89d9374048629,ter:0xa923c08a47948,lun:36599199229256,mar:319711652803400,cer:467549107200,ves:129071530155,jup:0xd20883d548bcd80,sat:0x3ee3798098fbac0,ura:0x99ad2c4e2f7f70,nep:0xb54f848fd74430,plu:7327611364884,eri:827117568e4},Pt={sol:"☉",mer:"☿",ven:"♀",ter:"⊕",lun:"●",mar:"♂",cer:"⚳",ves:"⚶",jup:"♃",sat:"♄",ura:"♅",nep:"♆",plu:"♇",eri:"⚪"},It=23.43928*ht,At=Math.sin(It),qt=Math.cos(It),Lt=["a","e","i","w","M","L","W","N","n","ep","ref","lecl","becl","Tilt"],Ft=function(){function t(e){return b(e),"sol"===f?(M.ephemeris.x=0,M.ephemeris.y=0,M.ephemeris.z=0,M.ephemeris.mag=-6,t):(w(),t)}function e(t,e){for(var a=e>1?t*t:-t*t,n=e*a*t/6,r=(1-e)*t-n,s=4;Math.abs(n)>1e-15;)n*=a/(s*(s+1)),r-=n,s+=2;return r}function a(){var t,a,n,r,s=M.ephemeris,o=s.e,i=s.M,l=1e-8,c=0,p=1.9,d=!1,u=0;if(!i)return 0;if(o<1&&((i<-Math.PI||i>Math.PI)&&(r=Tt.normalize0(i),c=i-r,i=r),o<.9)){t=Math.atan2(Math.sin(i),Math.cos(i)-o);do{a=(t-o*Math.sin(t)-i)/(1-o*Math.cos(t)),t-=a}while(Math.abs(a)>l);return t}if(i<0&&(i=-i,d=!0),t=i,l*=Math.abs(1-o),l<1e-15&&(l=1e-15),(o>.8&&i1)&&(n=i/Math.abs(1-o),n*n>6*Math.abs(1-o)&&(n=i1&&i>4&&(t=Math.log(i)),o<1)for(;Math.abs(p)>l;)a=u++>8?e(t,o)-i:t-o*Math.sin(t)-i,p=-a/(1-o*Math.cos(t)),t+=p;else for(;Math.abs(p)>l;)a=u++>7?-e(t,o)-i:o*Tt.sinh(t)-t-i,p=-a/(o*Tt.cosh(t)-1),t+=p;return d?c-t:c+t}function n(){var t,e,n,r,s,o=M.ephemeris;1===o.e?(s=o.jd0-o.T,r=o.w0*s*.5,e=Math.pow(r+Math.sqrt(r*r+1),1/3),o.v=2*Math.atan(e-1/e)):(o.E=a(),o.e>1?(t=o.e-Tt.cosh(o.E),e=Tt.sinh(o.E)):(t=Math.cos(o.E)-o.e,e=Math.sin(o.E)),e*=Math.sqrt(Math.abs(1-o.e*o.e)),o.v=Math.atan2(e,t)),n=o.q*(1+o.e),o.r=n/(1+o.e*Math.cos(o.v))}function r(){var t=M.ephemeris;t.hasOwnProperty("w")||(t.w=t.W-t.N),t.hasOwnProperty("M")||(t.M=t.L-t.W),t.e<1&&(t.M=Tt.normalize0(t.M)),t.P=ut*Math.sqrt(Math.pow(t.a,3)/y)/365.25,t.T=t.jd0-t.M/ft/t.P,1!==t.e?(t.q=t.a*(1-t.e),t.t0=t.a*Math.sqrt(Math.abs(t.a)/y)):(t.w0=3/Math.sqrt(2)/(t.q*Math.sqrt(t.q/y)),t.a=0,t.t0=0),t.am=Math.sqrt(y*t.q*(1+t.e))}function s(){var t=M.ephemeris;if(!t.ref||"ecl"===t.ref)return t.tx=t.x,t.ty=t.y,void(t.tz=t.z);var e=(t.lecl,Math.PI,t.becl,Tt.cartesian([t.tl,t.tb,t.r]));t.tx=e.x,t.ty=e.y,t.tz=e.z}function o(t){var e=M.ephemeris,a=t.ephemeris;It=(23.439292-.0130042*e.cy-1.667e-7*e.cy*e.cy+5.028e-7*e.cy*e.cy*e.cy)*ht,At=Math.sin(It),qt=Math.cos(It);var n="lun"===f?{x:0,y:0,z:0}:{x:a.x,y:a.y,z:a.z};e.xeq=e.x-n.x,e.yeq=(e.y-n.y)*qt-(e.z-n.z)*At,e.zeq=(e.y-n.y)*At+(e.z-n.z)*qt,e.ra=Tt.normalize(Math.atan2(e.yeq,e.xeq)),e.dec=Math.atan2(e.zeq,Math.sqrt(e.xeq*e.xeq+e.yeq*e.yeq)),"lun"===f&&(e=u(e,a)),e.pos=[e.ra/ht,e.dec/ht],e.rt=Math.sqrt(e.xeq*e.xeq+e.yeq*e.yeq+e.zeq*e.zeq),"sol"!==f&&(e.mag=i())}function i(){var t=M.ephemeris,e=t.r,a=t.rt,n=Math.acos((e*e+a*a-1)/(2*e*a)),r=.666*((1-n/Math.PI)*Math.cos(n)+1/Math.PI*Math.sin(n));return 1*M.H+5*Math.log(e*a)*Math.LOG10E-2.5*Math.log(r)*Math.LOG10E}function l(){var t=M.ephemeris,e=t.v+t.w;return t.x=t.r*(Math.cos(t.N)*Math.cos(e)-Math.sin(t.N)*Math.sin(e)*Math.cos(t.i)),t.y=t.r*(Math.sin(t.N)*Math.cos(e)+Math.cos(t.N)*Math.sin(e)*Math.cos(t.i)),t.z=t.r*(Math.sin(e)*Math.sin(t.i)),M}function c(){var t=M.ephemeris,e=Math.atan2(t.y,t.x),a=Math.atan2(t.z,Math.sqrt(t.x*t.x+t.y*t.y));return t.l=Tt.normalize(e),t.b=a,M}function p(t){var e=t.getUTCFullYear(),a=t.getUTCMonth()+1,n=t.getUTCDate(),r=(t.getUTCHours()-12+t.getUTCMinutes()/60+t.getUTCSeconds()/3600)/24;if(e<-4799)return-1;var s=Math.floor((14-a)/12),o=e+4800-s,i=a+12*s-3;return n+Math.floor((153*i+2)/5)+365*o+Math.floor(o/4)-Math.floor(o/100)+Math.floor(o/400)-32045+r}function d(t){if(void 0!==_t)return _t.elements(t)}function u(t,e){if(c(),void 0!==_t)return _t.corr(t,e)}var f,h,m,y=jt.sol,g="sol",v={},M={},b=function(t){var e,a=M.ephemeris={};t&&(e=t instanceof Date?new Date(t.valueOf()):A(t)),e||(e=new Date),a.jd=p(e),e=A(v.ep),e||(e=A("2000-01-01")),a.jd0=p(e),a.d=a.jd-a.jd0,a.cy=a.d/36525},w=function(){var t,e=M.ephemeris;if("lun"===f){if(!(e=d(e)))return}else{for(var a=0;a=100?[y[0]-10,y[0]+10]:[t-y[0],t+y[0]]:2===y.length&&x(y[0])&&x(y[1])?y[1]>=100?[y[0],y[1]]:[y[0]-y[1],y[0]+y[1]]:[t-10,t+10]}function i(t,e){for(var a=v(t),n=0;n=0;)if((a=t._tasks[n])&&(t._tasks[n]=null,a.abort))try{a.abort()}catch(e){}t._active=NaN,o(t)}function o(t){if(!t._active&&t._call){var e=t._data;t._data=void 0,t._call(t._error,e)}}function i(t){if(null==t)t=1/0;else if(!((t=+t)>=1))throw new Error("invalid concurrency");return new e(t)}var l=[].slice,c={};e.prototype=i.prototype={constructor:e,defer:function(t){if("function"!=typeof t)throw new Error("invalid callback");if(this._call)throw new Error("defer after await");if(null!=this._error)return this;var e=l.call(arguments,1);return e.push(t),++this._waiting,this._tasks.push(e),a(this),this},abort:function(){return null==this._error&&s(this,new Error("abort")),this},await:function(t){if("function"!=typeof t)throw new Error("invalid callback");if(this._call)throw new Error("multiple await");return this._call=function(e,a){t.apply(null,[e].concat(a))},o(this),this},awaitAll:function(t){if("function"!=typeof t)throw new Error("invalid callback");if(this._call)throw new Error("multiple await");return this._call=t,o(this),this}},t.queue=i,Object.defineProperty(t,"__esModule",{value:!0})}),this.Celestial=Z}(); \ No newline at end of file diff --git a/data/timezones.json b/data/timezones.json deleted file mode 100644 index 7a2dbcb..0000000 --- a/data/timezones.json +++ /dev/null @@ -1 +0,0 @@ -{"type":"Topology","objects":{"timezones":{"type":"GeometryCollection","geometries":[{"type":"Polygon","properties":{"objectid":18,"scalerank":6,"featurecla":"Timezone","name":"+3","map_color6":3,"map_color8":4,"note":null,"zone":3,"utc_format":"UTC+03:00","time_zone":"UTC+03:00","iso_8601":"2012-05-31T07:33:50+03:00","places":"Djibouti, Eritrea, Ethiopia, Iraq, Kenya, Madagasca, Saudi Arabia, South Sudan, Sudan, Somalia, South Sudan, Tanzania, Uganda, Yemen","dst_places":null,"tz_name1st":"Asia/Riyadh","tz_namesum":19,"cartodb_id":81,"created_at":"2014-10-19T10:00:54Z","updated_at":"2014-10-19T10:00:54Z"},"arcs":[[-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]]},{"type":"Polygon","properties":{"objectid":27,"scalerank":6,"featurecla":"Timezone","name":"+7","map_color6":5,"map_color8":1,"note":"Reflects 2012 shift in daylight savings time in Russia.","zone":7,"utc_format":"UTC+07:00","time_zone":"UTC+07:00","iso_8601":"2012-05-31T11:33:50+07:00","places":"Russia (Novosibirsk Oblast), Mongolia (western part)","dst_places":null,"tz_name1st":"Asia/Omsk","tz_namesum":4,"cartodb_id":82,"created_at":"2014-10-19T10:00:54Z","updated_at":"2014-10-19T10:00:54Z"},"arcs":[[-34,-35,-36,-37,-38,-39,-40,-41,-42,-43,-44,-45,-46,-47,-48,-49,-50,-51,-52,-53,-54,-55,-56,-57,-58,-59,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,-73,-74,-75,-76,-77,-78,-79,-80,-81,-82,-83,-84,-85,-86,-87,-88,-89,-90,-91,-92,-93,-94,-95,-96,-97,-98,-99,-100,-101,-102,-103,-104,-105,-106,-107,-108,-109,-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,-139,-140,-141,-142,-143,-144,-145]]},{"type":"Polygon","properties":{"objectid":12,"scalerank":6,"featurecla":"Timezone","name":"-3","map_color6":3,"map_color8":6,"note":null,"zone":-3,"utc_format":"UTC-03:00","time_zone":"UTC-03:00","iso_8601":"2012-05-31T01:33:50-03:00","places":"Greenland (central part)","dst_places":null,"tz_name1st":"America/Sao_Paulo","tz_namesum":23,"cartodb_id":84,"created_at":"2014-10-19T10:00:54Z","updated_at":"2014-10-19T10:00:54Z"},"arcs":[[-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,-184,-185,-186,-187,-188,-189,-190,-191,-192,-193,-194,-195,-196,-197,-198,-199,-200,-201,-202,-203,-204,-205,-206,-207,-208,-209,-210,-211,-212,-213,-214,-215,-216,-217,-218,-219,-220,-221,-222,-223,-224,-225,-226,-227,-228,-229,-230,-231,-232,-233,-234,-235,-236,-237,-238,-239,-240,-241,-242,-243,-244,-245,-246,-247,-248,-249,-250,-251,-252,-253,-254,-255,-256,-257,-258,-259,-260,-261,-262,-263,-264,-265,-266,-267,-268,-269,-270,-271,-272,-273,-274,-275,-276,-277,-278,-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,-308,-309,-310,-311,-312,-313,-314,-315,-316,-317,-318,-319,-320,-321,-322,-323,-324,-325,-326,-327,-328,-329,-330,-331,-332,-333,-334,-335,-336,-337,-338,-339,-340,-341,-342,-343,-344,-345,-346,-347,-348,-349,-350,-351,-352,-353,-354,-355,-356,-357,-358,-359,-360,-361,-362,-363,-364,-365,-366,-367,-368,-369,-370,-371,-372,-373,-374,-375,-376,-377,-378,-379,-380,-381,-382,-383,-384,-385,-386,-387,-388,-389,-390,-391,-392,-393,-394,-395,-396,-397,-398,-399,-400,-401,-402,-403,-404,-405,-406,-407,-408,-409,-410,-411,-412,-413,-414,-415,-416,-417,-418,-419,-420,-421,-422,-423,-424,-425,-426,-427,-428,-429,-430,-431,-432,-433,-434,-435,-436,-437,-438,-439,-440,-441,-442,-443,-444,-445,-446,-447,-448,-449,-450,-451,-452,-453,-454,-455,-456,-457,-458,-459,-460,-461,-462,-463,-464,-465,-466,-467]]},{"type":"Polygon","properties":{"objectid":0,"scalerank":6,"featurecla":"Timezone","name":"-3","map_color6":3,"map_color8":6,"note":null,"zone":-3,"utc_format":"UTC-03:00","time_zone":"UTC-03:00","iso_8601":"2012-05-30T16:33:50-03:00","places":"Teniente Jubany Station","dst_places":null,"tz_name1st":null,"tz_namesum":0,"cartodb_id":118,"created_at":"2014-10-19T10:00:54Z","updated_at":"2014-10-19T10:00:54Z"},"arcs":[[-468]]},{"type":"Polygon","properties":{"objectid":31,"scalerank":6,"featurecla":"Timezone","name":"+10","map_color6":2,"map_color8":5,"note":"Reflects 2012 shift in daylight savings time in Russia.","zone":10,"utc_format":"UTC+10:00","time_zone":"UTC+10:00","iso_8601":"2012-05-31T14:33:50+10:00","places":"Russia (Zabaykalsky Krai)","dst_places":null,"tz_name1st":"Asia/Yakutsk","tz_namesum":1,"cartodb_id":26,"created_at":"2014-10-19T10:00:54Z","updated_at":"2014-10-19T10:00:54Z"},"arcs":[[-469,-470,-471,-472,-473,-474,-475,-476,-477,-478,-479,-480,-481,-482,-483,-484,-485,-486,-487,-488,-489,-490,-491,-492,-493,-494,-495,-496,-497,-498,-499,-500,-501,-502,-503,-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,-537,-538,-539,-540,-541,-542,-543,-544,-545,-546,-547,-548,-549,-550,-551,-552,-553,-554,-555,-556,-557,-558,-559,-560,-561,-562,-563,-564,-565,-566,-567,-568,-569,-570,-571,-572,-573,-574,-575,-576,-577,-578,-579,-580,-581,-582,-583,-584,-585,-586,-587,-588,-589,-590,-591,-592,-593,-594,-595,-596,-597,-598,-599,-600,-601,-602,-603,-604,-605,-606,-607,-608,-609,-610,-611,-612,-613,-614,-615,-616,-617,-618,-619,-620,-621,-622,-623,-624,-625,-626,-627,-628,-629,-630,-631,-632,-633,-634,-635,-636,-637,-638,-639,-640,-641,-642,-643,-644,-645,-646,-647,-648,-649,-650,-651,-652,-653,-654,-655,-656,-657,-658,-659,-660,-661,-662,-663,-664,-665,-666,-667,-668,-669,-670,-671,-672,-673,-674,-675,-676,-677,-678,-679]]},{"type":"Polygon","properties":{"objectid":33,"scalerank":6,"featurecla":"Timezone","name":"+11","map_color6":1,"map_color8":6,"note":null,"zone":11,"utc_format":"UTC+11:00","time_zone":"UTC+11:00","iso_8601":"2012-05-31T15:33:50+11:00","places":"New Caledonia, Solomon Islands","dst_places":null,"tz_name1st":"Pacific/Guadalcanal","tz_namesum":6,"cartodb_id":27,"created_at":"2014-10-19T10:00:54Z","updated_at":"2014-10-19T10:00:54Z"},"arcs":[[-680,-681,-682,-683,-684,-685,-686,-687,-688,-689,-690,-691,-692],[-693],[-694]]},{"type":"Polygon","properties":{"objectid":33,"scalerank":6,"featurecla":"Timezone","name":"+11","map_color6":1,"map_color8":6,"note":"Reflects 2012 shift in daylight savings time in Russia.","zone":11,"utc_format":"UTC+11:00","time_zone":"UTC+11:00","iso_8601":"2012-05-31T15:33:50+11:00","places":"Russia (Primorsky Krai)","dst_places":null,"tz_name1st":"Asia/Vladivostok","tz_namesum":2,"cartodb_id":28,"created_at":"2014-10-19T10:00:54Z","updated_at":"2014-10-19T10:00:54Z"},"arcs":[[-695,646,-696,-697,643,-698,-699,-700,-701,-702,-703,-704,-705,-706,-707,-708,-709,-710,-711,-712,-713,-714,-715,-716,-717,-718,-719,-720,-721,-722,-723,-724,-725,-726,-727,-728,-729,-730,-731,-732,-733,-734,-735,-736,-737,-738,-739,-740,-741,-742,-743,-744,-745,-746,-747,-748,-749,-750,-751,-752,-753,-754]]},{"type":"Polygon","properties":{"objectid":13,"scalerank":6,"featurecla":"Timezone","name":"-2","map_color6":2,"map_color8":7,"note":null,"zone":-2,"utc_format":"UTC-02:00","time_zone":"UTC-02:00","iso_8601":"2012-05-31T02:33:50-02:00","places":"Brazil (Fernando de Noronha), South Georgia and the South Sandwich Islands","dst_places":null,"tz_name1st":"Atlantic/South_Georgia","tz_namesum":3,"cartodb_id":19,"created_at":"2014-10-19T10:00:54Z","updated_at":"2014-10-19T10:00:54Z"},"arcs":[[455,-755,453,-756,451,-757,449,-758,447,-759,-760,-761,-762,-763,-764,-765,-766,-767,-768,-769,-770]]},{"type":"Polygon","properties":{"objectid":15,"scalerank":6,"featurecla":"Timezone","name":"0","map_color6":6,"map_color8":1,"note":null,"zone":0,"utc_format":"UTC±00:00","time_zone":"UTC±00:00","iso_8601":"2012-05-31T09:03:50±00:00","places":"Côte d'Ivoire, Ghana, Senegal, Morocco, Portugal (continental and Madeira), Spain (Canary Islands)","dst_places":"Morocco, Portugal (continental and Madeira), Spain (Canary Islands)","tz_name1st":"Europe/Lisbon","tz_namesum":21,"cartodb_id":67,"created_at":"2014-10-19T10:00:54Z","updated_at":"2014-10-19T10:00:54Z"},"arcs":[[-771,-772,-773]]},{"type":"Polygon","properties":{"objectid":32,"scalerank":6,"featurecla":"Timezone","name":"+10.5","map_color6":3,"map_color8":8,"note":null,"zone":10.5,"utc_format":"UTC+10:30","time_zone":"UTC+10:30","iso_8601":"2012-05-31T15:03:50+10:30","places":"Lord Howe Island","dst_places":"Lord Howe Island","tz_name1st":"Australia/Lord_Howe","tz_namesum":1,"cartodb_id":43,"created_at":"2014-10-19T10:00:54Z","updated_at":"2014-10-19T10:00:54Z"},"arcs":[[693]]},{"type":"Polygon","properties":{"objectid":15,"scalerank":6,"featurecla":"Timezone","name":"0","map_color6":6,"map_color8":1,"note":null,"zone":0,"utc_format":"UTC±00:00","time_zone":"UTC±00:00","iso_8601":"2012-05-31T09:03:50±00:00","places":"Iceland, United Kingdom, Ireland","dst_places":"Ireland, United Kingdom","tz_name1st":"Europe/London","tz_namesum":5,"cartodb_id":69,"created_at":"2014-10-19T10:00:54Z","updated_at":"2014-10-19T10:00:54Z"},"arcs":[[-774,-775,-776,-777,768,-778,766,-779]]},{"type":"Polygon","properties":{"objectid":2,"scalerank":6,"featurecla":"Timezone","name":"-10","map_color6":4,"map_color8":4,"note":null,"zone":-10,"utc_format":"UTC-10:00","time_zone":"UTC-10:00","iso_8601":"2012-05-30T18:33:50-10:00","places":"United States (Hawaii)","dst_places":"Most of French Polynesia, United States (Aleutian Islands)","tz_name1st":"Pacific/Honolulu","tz_namesum":6,"cartodb_id":7,"created_at":"2014-10-19T10:00:54Z","updated_at":"2014-10-19T10:00:54Z"},"arcs":[[-780,-781,-782,-783,-784,-785,-786,-787,-788,-789,-790,-791,-792,-793,-794,-795,-796,-797,-798,-799,-800,-801,-802,-803,-804,-805,-806,-807,-808,-809,-810,-811,-812,-813,-814,-815,-816,-817,-818,-819,-820,-821]]},{"type":"Polygon","properties":{"objectid":14,"scalerank":6,"featurecla":"Timezone","name":"-1","map_color6":1,"map_color8":8,"note":null,"zone":-1,"utc_format":"UTC-01:00","time_zone":"UTC-01:00","iso_8601":"2012-05-31T03:33:50-01:00","places":"Portugal (Azores), Cape Verde","dst_places":null,"tz_name1st":"Atlantic/Cape_Verde","tz_namesum":2,"cartodb_id":20,"created_at":"2014-10-19T10:00:54Z","updated_at":"2014-10-19T10:00:54Z"},"arcs":[[778,765,-822,-823,771,-824]]},{"type":"Polygon","properties":{"objectid":6,"scalerank":6,"featurecla":"Timezone","name":"-8","map_color6":2,"map_color8":7,"note":null,"zone":-8,"utc_format":"UTC-08:00","time_zone":"UTC-08:00","iso_8601":"2012-05-30T20:33:50-08:00","places":"Canada (most of British Columbia), Mexico (Baja California), United States (California, most of Nevada, most of Oregon, Washington (state))","dst_places":"Canada (most of British Columbia), Mexico (Baja California), United States (California, most of Nevada, most of Oregon, Washington (state))","tz_name1st":"America/Los_Angeles","tz_namesum":8,"cartodb_id":21,"created_at":"2014-10-19T10:00:54Z","updated_at":"2014-10-19T10:00:54Z"},"arcs":[[-825,814,-826,-827,-828,-829,-830]]},{"type":"Polygon","properties":{"objectid":7,"scalerank":6,"featurecla":"Timezone","name":"-7","map_color6":1,"map_color8":1,"note":null,"zone":-7,"utc_format":"UTC-07:00","time_zone":"UTC-07:00","iso_8601":"2012-05-30T21:33:50-07:00","places":"Canada (northeastern British Columbia), Mexico (Sonora), United States (Arizona)","dst_places":"Canada (Alberta), Mexico (Chihuahua), United States (Colorado)","tz_name1st":"America/Denver","tz_namesum":14,"cartodb_id":10,"created_at":"2014-10-19T10:00:54Z","updated_at":"2014-10-19T10:00:54Z"},"arcs":[[-831,-832,-833,-834,-835,-836,-837,829,-838,827,-839,-840,-841,-842,-843]]},{"type":"MultiPolygon","properties":{"objectid":10,"scalerank":6,"featurecla":"Timezone","name":"-4","map_color6":4,"map_color8":4,"note":null,"zone":-4,"utc_format":"UTC-04:00","time_zone":"UTC-04:00","iso_8601":"2012-05-31T00:33:50-04:00","places":"Bolivia, Brazil (Amazonas), Chile (continental), Dominican Republic, Canada (Nova Scotia), Puerto Rico, Trinidad and Tobago","dst_places":"Falkland Islands","tz_name1st":"America/La_Paz","tz_namesum":39,"cartodb_id":17,"created_at":"2014-10-19T10:00:54Z","updated_at":"2014-10-19T10:00:54Z"},"arcs":[[[-844,-845,150,-846,-847,-848,-849,-850,-851,-852,444,-853,442,-854,440,-855,438,-856,436,-857,434,-858,432,-859,430,-860,428,-861,426,-862,424,-863,422,-864,420,-865,418,-866,416,-867,414,-868,412,-869,410,-870,408,-871,406,-872,404,-873,402,-874,400,-875,398,-876,396,-877,394,-878,392,-879,390,-880,388,-881,386,-882,384,-883,382,-884,380,-885,378,-886,376,-887,374,-888,372,-889,370,-890,368,-891,366,-892,364,-893,362,-894,360,-895,358,-896,356,-897,354,-898,352,-899,350,-900,348,-901,346,-902,344,-903,342,-904,340,-905,338,-906,336,-907,334,-908,332,-909,330,-910,328,-911,326,-912,324,-913,322,-914,320,-915,318,-916,316,-917,314,-918,312,-919,310,-920,308,-921,306,-922,304,-923,302,-924,300,-925,298,-926,296,-927,294,-928,292,-929,290,-930,288,-931,286,-932,284,-933,282,-934,280,-935,278,-936,276,-937,274,-938,272,-939,270,-940,268,-941,266,-942,264,-943,262,-944,260,-945,258,-946,256,-947,254,-948,252,-949,250,-950,248,-951,246,-952,244,-953,242,-954,240,-955,238,-956,236,-957,234,-958,232,-959,230,-960,228,-961,226,-962,224,-963,222,-964,220,-965,218,-966,216,-967,214,-968,212,-969,210,-970,208,-971,206,-972,204,-973,202,-974,200,-975,198,-976,196,-977,194,-978,192,-979,190,-980,188,-981,186,-982,184,-983,182,-984,180,-985,178,-986,176,-987,174,-988,172,-989,170,-990,168,-991,166,-992,164,-993,162,-994,160,-995,158,-996,156,-997,154,-998,152,-999]],[[999,1000]]]},{"type":"Polygon","properties":{"objectid":27,"scalerank":6,"featurecla":"Timezone","name":"+7","map_color6":5,"map_color8":1,"note":null,"zone":7,"utc_format":"UTC+07:00","time_zone":"UTC+07:00","iso_8601":"2012-05-31T11:33:50+07:00","places":"Jakarta, Thailand, Vietnam","dst_places":null,"tz_name1st":"Asia/Jakarta","tz_namesum":9,"cartodb_id":55,"created_at":"2014-10-19T10:00:54Z","updated_at":"2014-10-19T10:00:54Z"},"arcs":[[-1002,-1003,-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,-1033,-1034,-1035,-1036,-1037,-1038,-1039,-1040,-1041,-1042,-1043,-1044,-1045,-1046,-1047,-1048,-1049,-1050,-1051,-1052,-1053,-1054,-1055,-1056,-1057,-1058,-1059,-1060,-1061,-1062,-1063,-1064,-1065,-1066,-1067,-1068,-1069,-1070,-1071,-1072,-1073,-1074,-1075,-1076,-1077,-1078,-1079,-1080,-1081,-1082,-1083,-1084,-1085,-1086,-1087,-1088,-1089,-1090,-1091,-1092,-1093,-1094,-1095,-1096,-1097,-1098,-1099,-1100,-1101,-1102,-1103,-1104,-1105,-1106,-1107,-1108,-1109,-1110,-1111,-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,-1143,-1144,-1145,-1146,-1147,-1148,-1149,-1150,-1151,-1152,-1153,-1154,-1155,-1156,-1157,-1158]]},{"type":"Polygon","properties":{"objectid":23,"scalerank":6,"featurecla":"Timezone","name":"+5.5","map_color6":3,"map_color8":3,"note":null,"zone":5.5,"utc_format":"UTC+05:30","time_zone":"UTC+05:30","iso_8601":"2012-05-31T10:03:50+05:30","places":"India, Sri Lanka","dst_places":null,"tz_name1st":"Asia/Kolkata","tz_namesum":1,"cartodb_id":57,"created_at":"2014-10-19T10:00:54Z","updated_at":"2014-10-19T10:00:54Z"},"arcs":[[-1159,-1160,-1161,-1162,-1163,-1164,-1165,-1166,-1167,-1168,-1169,-1170,-1171,-1172,-1173,-1174,-1175,-1176,-1177,-1178,-1179,-1180,-1181,-1182,-1183,-1184,-1185,-1186,-1187,-1188,-1189,-1190,-1191,-1192,-1193,-1194,-1195,-1196,-1197,-1198,-1199,-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,-1231,-1232,-1233,-1234,-1235,-1236,-1237,-1238,-1239,-1240,-1241,-1242,-1243,-1244,-1245,-1246,-1247,-1248,-1249,-1250,-1251]]},{"type":"Polygon","properties":{"objectid":31,"scalerank":6,"featurecla":"Timezone","name":"+10","map_color6":2,"map_color8":5,"note":null,"zone":10,"utc_format":"UTC+10:00","time_zone":"UTC+10:00","iso_8601":"2012-05-31T14:33:50+10:00","places":"Papua New Guinea, Australia (Queensland, New South Wales, Tasmania, Victoria)","dst_places":"Australia (New South Wales, Tasmania, Victoria)","tz_name1st":"Australia/Sydney","tz_namesum":10,"cartodb_id":25,"created_at":"2014-10-19T10:00:54Z","updated_at":"2014-10-19T10:00:54Z"},"arcs":[[683,-1252,753,-1253,-1254,-1255,-1256,-1257,-1258,-1259]]},{"type":"Polygon","properties":{"objectid":8,"scalerank":6,"featurecla":"Timezone","name":"-6","map_color6":6,"map_color8":2,"note":null,"zone":-6,"utc_format":"UTC-06:00","time_zone":"UTC-06:00","iso_8601":"2012-05-30T22:33:50-06:00","places":"Canada (almost all of Saskatchewan), Costa Rica, El Salvador, Ecuador (Galapagos Islands), Guatemala, Honduras, Mexico (most), Nicaragua,","dst_places":"Canada (Manitoba), United States (Illinois, most of Texas)","tz_name1st":"America/Chicago","tz_namesum":25,"cartodb_id":12,"created_at":"2014-10-19T10:00:54Z","updated_at":"2014-10-19T10:00:54Z"},"arcs":[[-1260,-1261,832,-1262,830,-1263,841,-1264,839,-1265,-1266,-1267]]},{"type":"Polygon","properties":{"objectid":9,"scalerank":6,"featurecla":"Timezone","name":"-5","map_color6":5,"map_color8":3,"note":null,"zone":-5,"utc_format":"UTC-05:00","time_zone":"UTC-05:00","iso_8601":"2012-05-30T23:33:50-05:00","places":"Colombia, Cuba, Ecuador (continental), Jamaica, Panama, Peru","dst_places":"Canada (most of Ontario, most of Quebec), Haiti, United States (most of Florida, Georgia, Massachusetts, most of Michigan, New York, North Carolina, Ohio, Washington D.C.)","tz_name1st":"America/New_York","tz_namesum":26,"cartodb_id":13,"created_at":"2014-10-19T10:00:54Z","updated_at":"2014-10-19T10:00:54Z"},"arcs":[[-1268,-1269,1259,-1270,1265,-1271,-1272,-1273,848,-1274,-1275,-1276,-1277,-1278,846,-1279,-1280,147]]},{"type":"Polygon","properties":{"objectid":23,"scalerank":6,"featurecla":"Timezone","name":"+5.5","map_color6":3,"map_color8":3,"note":null,"zone":5.5,"utc_format":"UTC+05:30","time_zone":"UTC+05:30","iso_8601":"2012-05-31T10:03:50+05:30","places":"India (Laccadive Is.)","dst_places":null,"tz_name1st":null,"tz_namesum":0,"cartodb_id":54,"created_at":"2014-10-19T10:00:54Z","updated_at":"2014-10-19T10:00:54Z"},"arcs":[[-1281]]},{"type":"Polygon","properties":{"objectid":22,"scalerank":6,"featurecla":"Timezone","name":"+5","map_color6":1,"map_color8":7,"note":null,"zone":5,"utc_format":"UTC+05:00","time_zone":"UTC+05:00","iso_8601":"2012-05-31T09:33:50+05:00","places":"Tajikistan","dst_places":null,"tz_name1st":null,"tz_namesum":0,"cartodb_id":58,"created_at":"2014-10-19T10:00:54Z","updated_at":"2014-10-19T10:00:54Z"},"arcs":[[-1282]]},{"type":"Polygon","properties":{"objectid":33,"scalerank":6,"featurecla":"Timezone","name":"+11","map_color6":1,"map_color8":6,"note":"Reflects 2012 shift in daylight savings time in Russia.","zone":11,"utc_format":"UTC+11:00","time_zone":"UTC+11:00","iso_8601":"2012-05-31T15:33:50+11:00","places":"Russia (Primorsky Krai)","dst_places":null,"tz_name1st":null,"tz_namesum":0,"cartodb_id":29,"created_at":"2014-10-19T10:00:54Z","updated_at":"2014-10-19T10:00:54Z"},"arcs":[[-1283,-1284,-1285,-1286,677,-1287,675,-1288,673,-1289,671,-1290,669,-1291,667,-1292,665,-1293,-1294,662,-1295,660,-1296,658,-1297,656,-1298,654,-1299,652,-1300,650,-1301,648]]},{"type":"MultiPolygon","properties":{"objectid":0,"scalerank":6,"featurecla":"Timezone","name":"+12","map_color6":6,"map_color8":2,"note":"Reflects 2012 shift in daylight savings time in Russia.","zone":12,"utc_format":"UTC+12:00","time_zone":"UTC+12:00","iso_8601":"2012-05-31T16:33:50+12:00","places":"Russia (Kamchatka Krai)","dst_places":null,"tz_name1st":"Asia/Kamchatka","tz_namesum":3,"cartodb_id":30,"created_at":"2014-10-19T10:00:54Z","updated_at":"2014-10-19T10:00:54Z"},"arcs":[[[-652,-1300]],[[-650,-1301]],[[-1286,-679]],[[-469,1301,-1285]],[[-1303,1282,647,694,1251,682,-1304,680,-1305]]]},{"type":"Polygon","properties":{"objectid":20,"scalerank":6,"featurecla":"Timezone","name":"+4","map_color6":2,"map_color8":5,"note":null,"zone":4,"utc_format":"UTC+04:00","time_zone":"UTC+04:00","iso_8601":"2012-05-31T08:33:50+04:00","places":"Mauritius, Oman, Seychelles, United Arab Emirates","dst_places":null,"tz_name1st":"Asia/Dubai","tz_namesum":6,"cartodb_id":31,"created_at":"2014-10-19T10:00:54Z","updated_at":"2014-10-19T10:00:54Z"},"arcs":[[-1306,31,-1307,29,-1308,27,-1309,-1310,-1311,-1312,-1313]]},{"type":"Polygon","properties":{"objectid":25,"scalerank":6,"featurecla":"Timezone","name":"+6","map_color6":6,"map_color8":8,"note":null,"zone":6,"utc_format":"UTC+06:00","time_zone":"UTC+06:00","iso_8601":"2012-05-31T10:33:50+06:00","places":"British Indian Ocean Territory","dst_places":null,"tz_name1st":"Indian/Chagos","tz_namesum":1,"cartodb_id":32,"created_at":"2014-10-19T10:00:54Z","updated_at":"2014-10-19T10:00:54Z"},"arcs":[[-1314,-1315,-1316]]},{"type":"Polygon","properties":{"objectid":25,"scalerank":6,"featurecla":"Timezone","name":"+6","map_color6":6,"map_color8":8,"note":"Reflects 2012 shift in daylight savings time in Russia.","zone":6,"utc_format":"UTC+06:00","time_zone":"UTC+06:00","iso_8601":"2012-05-31T10:33:50+06:00","places":"Kazakhstan (most), Russia (Ural: Sverdlovsk Oblast, Chelyabinsk Oblast)","dst_places":null,"tz_name1st":"Asia/Almaty","tz_namesum":4,"cartodb_id":36,"created_at":"2014-10-19T10:00:54Z","updated_at":"2014-10-19T10:00:54Z"},"arcs":[[-1317,-1318,-1319,-1320,-1321,-1322,-1323,-1324,-1325,-1326,-1327,-1328,-1329,-1330,-1331,-1332,-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,-1358,-1359,-1360,-1361,-1362,-1363,-1364,-1365,-1366,-1367,-1368,-1369,-1370,-1371,-1372,-1373,-1374,-1375,-1376,-1377,-1378,-1379,-1380,-1381,-1382,-1383,-1384,-1385,-1386,33,-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,-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,-1441,-1442,-1443,-1444,-1445,-1446,-1447,-1448,-1449,-1450,-1451,-1452,-1453,-1454,-1455,-1456,-1457,-1458,-1459,-1460,-1461,-1462,-1463,-1464,-1465,-1466,-1467,-1468,-1469,-1470,-1471,-1472,-1473,-1474,-1475,-1476,-1477,-1478,-1479,-1480,-1481,-1482,-1483,-1484,-1485,-1486,-1487,-1488],[1488],[1489],[1281]]},{"type":"Polygon","properties":{"objectid":29,"scalerank":6,"featurecla":"Timezone","name":"+9","map_color6":3,"map_color8":3,"note":"Reflects 2012 shift in daylight savings time in Russia.","zone":9,"utc_format":"UTC+09:00","time_zone":"UTC+09:00","iso_8601":"2012-05-31T13:33:50+09:00","places":"Russia (Irkutsk Oblast)","dst_places":null,"tz_name1st":"Asia/Irkutsk","tz_namesum":1,"cartodb_id":37,"created_at":"2014-10-19T10:00:54Z","updated_at":"2014-10-19T10:00:54Z"},"arcs":[[534,-1491,-1492,-1493,-1494,-1495,-1496,-1497,-1498,-1499,-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,-1539,-1540,-1541,-1542,-1543,-1544,-1545,-1546,-1547,-1548,-1549,-1550,-1551,-1552,-1553,-1554,-1555,-1556,-1557,-1558,-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,-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]]},{"type":"Polygon","properties":{"objectid":19,"scalerank":6,"featurecla":"Timezone","name":"+3.5","map_color6":5,"map_color8":6,"note":null,"zone":3.5,"utc_format":"UTC+03:30","time_zone":"UTC+03:30","iso_8601":"2012-05-31T08:03:50+03:30","places":"Iran","dst_places":"Iran","tz_name1st":"Asia/Tehran","tz_namesum":2,"cartodb_id":38,"created_at":"2014-10-19T10:00:54Z","updated_at":"2014-10-19T10:00:54Z"},"arcs":[[-1646,-1647,-1648,32,1305,-1649,-1650,-1651,-1652,-1653]]},{"type":"Polygon","properties":{"objectid":21,"scalerank":6,"featurecla":"Timezone","name":"+4.5","map_color6":3,"map_color8":2,"note":null,"zone":4.5,"utc_format":"UTC+04:30","time_zone":"UTC+04:30","iso_8601":"2012-05-31T09:03:50+04:30","places":"Afghanistan","dst_places":null,"tz_name1st":"Asia/Kabul","tz_namesum":1,"cartodb_id":39,"created_at":"2014-10-19T10:00:54Z","updated_at":"2014-10-19T10:00:54Z"},"arcs":[[-1654,1649,-1655,-1656,-1657,-1658,-1659,-1660,-1661,-1662,-1663,-1664,-1665,-1666,-1667,-1668,-1669,-1670,-1671,-1672,-1673,-1674,-1675,-1676,-1677,-1678,-1679,-1680,-1681,-1682]]},{"type":"Polygon","properties":{"objectid":24,"scalerank":6,"featurecla":"Timezone","name":"+5.75","map_color6":1,"map_color8":4,"note":null,"zone":5.75,"utc_format":"UTC+05:45","time_zone":"UTC+05:45","iso_8601":"2012-05-31T10:18:50+05:45","places":"Nepal","dst_places":null,"tz_name1st":"Asia/Kathmandu","tz_namesum":1,"cartodb_id":40,"created_at":"2014-10-19T10:00:54Z","updated_at":"2014-10-19T10:00:54Z"},"arcs":[[-1683,-1684,-1685,-1686,-1687,-1688,-1689,-1690,-1691,1225,-1692,-1693,-1694,-1695,-1696,-1697,-1698,-1699,-1700,-1701,-1702,-1703,-1704,-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]]},{"type":"Polygon","properties":{"objectid":28,"scalerank":6,"featurecla":"Timezone","name":"+8","map_color6":4,"map_color8":2,"note":null,"zone":8,"utc_format":"UTC+08:00","time_zone":"UTC+08:00","iso_8601":"2012-05-31T12:33:50+08:00","places":"China, Hong Kong, Russia (Krasnoyarsk Krai), Malaysia, Philippines, Singapore, Taiwan, most of Mongolia, Western Australia","dst_places":null,"tz_name1st":"Australia/Perth","tz_namesum":19,"cartodb_id":41,"created_at":"2014-10-19T10:00:54Z","updated_at":"2014-10-19T10:00:54Z"},"arcs":[[-1755,-1756,-1757,1319,-1758,1317,-1759,1487,-1760,-1761,-1762,-1763,-1764,1481,-1765,1479,-1766,-1767,1476,-1768,1474,-1769,-1770,1471,-1771,-1772,-1773,-1774,1466,-1775,-1776,1463,-1777,1461,-1778,1459,-1779,1457,-1780,1455,-1781,1453,-1782,1451,-1783,1449,-1784,1447,-1785,-1786,-1787,1443,-1788,-1789,1440,-1790,1438,-1791,-1792,1435,-1793,1433,-1794,1431,-1795,1429,-1796,-1797,1426,-1798,1424,-1799,1422,-1800,1420,-1801,1418,-1802,1416,-1803,-1804,-1805,-1806,1411,-1807,1409,-1808,-1809,1406,-1810,1404,-1811,-1812,1401,-1813,1399,-1814,-1815,-1816,1395,-1817,1393,-1818,1391,-1819,1389,-1820,1387,-1821,143,-1822,141,-1823,139,-1824,-1825,136,-1826,-1827,-1828,-1829,131,-1830,-1831,128,-1832,126,-1833,-1834,-1835,-1836,-1837,120,-1838,-1839,117,-1840,-1841,114,-1842,112,-1843,110,-1844,108,-1845,106,-1846,-1847,103,-1848,101,-1849,99,-1850,97,-1851,95,-1852,93,-1853,91,-1854,89,-1855,87,-1856,-1857,84,-1858,82,-1859,80,-1860,78,-1861,76,-1862,-1863,73,-1864,71,-1865,-1866,68,-1867,-1868,65,-1869,63,-1870,61,-1871,59,-1872,57,-1873,55,-1874,53,-1875,51,-1876,49,-1877,47,-1878,45,-1879,43,-1880,41,-1881,39,-1882,37,-1883,35,-1884,1384,-1885,1382,-1886,-1887,-1888,-1889,-1890,1376,-1891,1374,-1892,-1893,-1894,1370,-1895,1368,-1896,1366,-1897,1364,-1898,-1899,-1900,-1901,-1902,1358,-1903,1356,-1904,-1905,-1906,1352,-1907,1350,-1908,-1909,1347,-1910,1345,-1911,1343,-1912,1341,-1913,1339,-1914,1337,-1915,1335,-1916,1333,-1917,1331,-1918,1329,-1919,-1920,-1921,-1922,-1923,-1924,-1925,-1926,-1927,1679,-1928,1677,-1929,-1930,-1931,-1932,-1933,-1934,-1935,-1936,-1937,-1938,-1939,-1940,-1941,-1942,-1943,-1944,1250,-1945,-1946,1247,-1947,1245,-1948,1243,-1949,-1950,-1951,1239,-1952,1237,-1953,1235,-1954,1233,-1955,1231,-1956,-1957,-1958,1227,-1959,1689,-1960,1687,-1961,1685,-1962,1683,-1963,1753,-1964,-1965,1750,-1966,1748,-1967,1746,-1968,1744,-1969,1742,-1970,-1971,1739,-1972,-1973,1736,-1974,1734,-1975,1732,-1976,1730,-1977,-1978,-1979,-1980,1725,-1981,1723,-1982,1721,-1983,1719,-1984,1717,-1985,1715,-1986,-1987,1712,-1988,1710,-1989,1708,-1990,1706,-1991,-1992,1703,-1993,-1994,1700,-1995,1698,-1996,1696,-1997,1694,-1998,1692,-1999,1223,-2000,1221,-2001,1219,-2002,-2003,-2004,-2005,-2006,-2007,-2008,-2009,-2010,-2011,-2012,-2013,-2014,-2015,1214,-2016,1212,-2017,1210,-2018,1208,-2019,1206,-2020,1204,-2021,1202,-2022,1200,-2023,1198,-2024,1196,-2025,1194,-2026,1192,-2027,1190,-2028,1188,-2029,1186,-2030,1184,-2031,1182,-2032,1180,-2033,1178,-2034,1176,-2035,1174,-2036,-2037,-2038,1170,-2039,1168,-2040,1166,-2041,1164,-2042,-2043,-2044,-2045,-2046,-2047,-2048,-2049,-2050,-2051,-2052,-2053,-2054,-2055,-2056,-2057,-2058,-2059,-2060,-2061,-2062,-2063,-2064,-2065,-2066,-2067,-2068,-2069,-2070,-2071,-2072,-2073,-2074,-2075,-2076,-2077,-2078,-2079,-2080,-2081,-2082,-2083,-2084,-2085,-2086,-2087,-2088,-2089,-2090,-2091,-2092,-2093,-2094,-2095,-2096,-2097,-2098,1038,-2099,1036,-2100,1034,-2101,1032,-2102,1030,-2103,1028,-2104,1026,-2105,1024,-2106,1022,-2107,1020,-2108,1018,-2109,1016,-2110,1014,-2111,1012,-2112,1010,-2113,1008,-2114,1006,-2115,1004,-2116,1002,-2117,1157,-2118,1155,-2119,1153,-2120,1151,-2121,1149,-2122,1147,-2123,1145,-2124,1143,-2125,1141,-2126,1139,-2127,1137,-2128,1135,-2129,1133,-2130,1131,-2131,1129,-2132,1127,-2133,1125,-2134,1123,-2135,1121,-2136,1119,-2137,1117,-2138,1115,-2139,1113,-2140,1111,-2141,1109,-2142,1107,-2143,1105,-2144,1103,-2145,1101,-2146,1099,-2147,1097,-2148,1095,-2149,1093,-2150,1091,-2151,1089,-2152,1087,-2153,1085,-2154,1083,-2155,1081,-2156,1079,-2157,1077,-2158,1075,-2159,1073,-2160,1071,-2161,1069,-2162,1067,-2163,1065,-2164,1063,-2165,1061,-2166,1059,-2167,1057,-2168,1055,-2169,1053,-2170,1051,-2171,1049,-2172,1047,-2173,-2174,-2175,-2176,-2177,-2178,-2179,-2180,-2181,-2182,-2183,-2184,-2185,-2186,-2187,-2188,-2189,-2190,-2191,-2192,-2193,-2194,-2195,-2196,-2197,-2198,-2199,-2200,-2201,-2202,-2203,-2204,-2205,-2206,-2207,-2208,-2209,-2210,-2211,-2212,-2213,-2214,-2215,-2216,-2217,-2218,-2219,-2220,-2221,-2222,-2223,-2224,-2225,-2226,-2227,-2228,-2229,-2230,-2231,-2232,-2233,-2234,-2235,-2236,-2237,-2238,-2239,-2240,-2241,-2242,-2243,-2244,-2245,-2246,-2247,-2248,-2249,-2250,-2251,-2252,-2253,-2254,-2255,-2256,-2257,-2258,-2259,-2260,-2261,-2262,-2263,-2264,-2265,-2266,-2267,-2268,-2269,-2270,-2271,-2272,-2273,-2274,750,-2275,748,-2276,746,-2277,744,-2278,742,-2279,740,-2280,738,-2281,736,-2282,734,-2283,732,-2284,730,-2285,728,-2286,726,-2287,724,-2288,722,-2289,720,-2290,718,-2291,716,-2292,714,-2293,712,-2294,710,-2295,708,-2296,706,-2297,704,-2298,702,-2299,700,-2300,698,-2301,641,-2302,639,-2303,637,-2304,635,-2305,633,-2306,631,-2307,629,-2308,627,-2309,625,-2310,623,-2311,621,-2312,619,-2313,617,-2314,615,-2315,613,-2316,611,-2317,609,-2318,607,-2319,605,-2320,603,-2321,601,-2322,599,-2323,597,-2324,595,-2325,593,-2326,591,-2327,589,-2328,587,-2329,585,-2330,583,-2331,581,-2332,579,-2333,577,-2334,575,-2335,573,-2336,571,-2337,569,-2338,567,-2339,565,-2340,563,-2341,561,-2342,559,-2343,557,-2344,555,-2345,553,-2346,551,-2347,549,-2348,547,-2349,545,-2350,543,-2351,541,-2352,539,-2353,537,-2354,535,1644,-2355,1642,-2356,1640,-2357,-2358,-2359,-2360,-2361,1634,-2362,1632,-2363,1630,-2364,1628,-2365,1626,-2366,1624,-2367,1622,-2368,1620,-2369,1618,-2370,1616,-2371,1614,-2372,1612,-2373,1610,-2374,1608,-2375,1606,-2376,1604,-2377,-2378,1601,-2379,1599,-2380,1597,-2381,1595,-2382,1593,-2383,1591,-2384,1589,-2385,1587,-2386,1585,-2387,1583,-2388,1581,-2389,1579,-2390,1577,-2391,1575,-2392,1573,-2393,1571,-2394,1569,-2395,1567,-2396,1565,-2397,1563,-2398,1561,-2399,1559,-2400,1557,-2401,1555,-2402,1553,-2403,1551,-2404,1549,-2405,1547,-2406,-2407,1544,-2408,1542,-2409,1540,-2410,-2411,1537,-2412,1535,-2413,1533,-2414,1531,-2415,1529,-2416,-2417,1526,-2418,1524,-2419,1522,-2420,1520,-2421,1518,-2422,1516,-2423,1514,-2424,1512,-2425,1510,-2426,1508,-2427,1506,-2428,1504,-2429,-2430,1501,-2431,1499,-2432,1497,-2433,1495,-2434,-2435,1492,-2436,1490,533,-2437,531,-2438,529,-2439,527,-2440,525,-2441,523,-2442,521,-2443,519,-2444,517,-2445,515,-2446,513,-2447,511,-2448,509,-2449,507,-2450,505,-2451,503,-2452,501,-2453,499,-2454,497,-2455,495,-2456,493,-2457,491,-2458,489,-2459,487,-2460,485,-2461,483,-2462,481,-2463,479,-2464,477,-2465,475,-2466,473,-2467,471,-2468,-2469,-2470]]},{"type":"Polygon","properties":{"objectid":14,"scalerank":6,"featurecla":"Timezone","name":"-1","map_color6":1,"map_color8":8,"note":null,"zone":-1,"utc_format":"UTC-01:00","time_zone":"UTC-01:00","iso_8601":"2012-05-31T03:33:50-01:00","places":"Greenland (south eastern part)","dst_places":null,"tz_name1st":"America/Scoresbysund","tz_namesum":1,"cartodb_id":16,"created_at":"2014-10-19T10:00:54Z","updated_at":"2014-10-19T10:00:54Z"},"arcs":[[776,-2471,-2472,-2473,464,-2474,-2475,-2476,460,-2477,458,-2478,456,769]]},{"type":"Polygon","properties":{"objectid":22,"scalerank":6,"featurecla":"Timezone","name":"+5","map_color6":1,"map_color8":7,"note":null,"zone":5,"utc_format":"UTC+05:00","time_zone":"UTC+05:00","iso_8601":"2012-05-31T09:33:50+05:00","places":"Uzbekistan","dst_places":null,"tz_name1st":null,"tz_namesum":0,"cartodb_id":60,"created_at":"2014-10-19T10:00:54Z","updated_at":"2014-10-19T10:00:54Z"},"arcs":[[-1489]]},{"type":"Polygon","properties":{"objectid":17,"scalerank":6,"featurecla":"Timezone","name":"+2","map_color6":4,"map_color8":3,"note":null,"zone":2,"utc_format":"UTC+02:00","time_zone":"UTC+02:00","iso_8601":"2012-05-31T06:33:50+02:00","places":"Estonia, Finland, Latvia, Lithuania","dst_places":"Estonia, Finland, Latvia, Lithuania","tz_name1st":"Europe/Helsinki","tz_namesum":5,"cartodb_id":65,"created_at":"2014-10-19T10:00:54Z","updated_at":"2014-10-19T10:00:54Z"},"arcs":[[-2479,-2480,-2481,-2482,-2483,-2484,-2485,-2486,-2487]]},{"type":"Polygon","properties":{"objectid":17,"scalerank":6,"featurecla":"Timezone","name":"+2","map_color6":4,"map_color8":3,"note":null,"zone":2,"utc_format":"UTC+02:00","time_zone":"UTC+02:00","iso_8601":"2012-05-31T06:33:50+02:00","places":"Libya, Egypt, Bulgaria, Cyprus, Greece, Israel, Jordan, Lebanon, Moldova, Palestine, Romania, Syria, Turkey, Ukraine","dst_places":"Bulgaria, Cyprus, Greece, Israel, Jordan, Lebanon, Moldova, Palestine, Romania, Syria, Turkey, Ukraine","tz_name1st":"Europe/Mariehamn","tz_namesum":16,"cartodb_id":66,"created_at":"2014-10-19T10:00:54Z","updated_at":"2014-10-19T10:00:54Z"},"arcs":[[-2488,-2489,-2490,-2491,-2492,-2493,21,-2494,19,-2495,17,-2496,15,-2497,13,-2498,11,-2499,9,-2500,7,-2501,5,-2502,3,-2503,-2504,0,1647,1646,-1647,-2505,-2506,-2507,-2508]]},{"type":"Polygon","properties":{"objectid":26,"scalerank":6,"featurecla":"Timezone","name":"+6.5","map_color6":2,"map_color8":6,"note":null,"zone":6.5,"utc_format":"UTC+06:30","time_zone":"UTC+06:30","iso_8601":"2012-05-31T11:03:50+06:30","places":"Cocos Islands","dst_places":null,"tz_name1st":"Indian/Cocos","tz_namesum":1,"cartodb_id":74,"created_at":"2014-10-19T10:00:54Z","updated_at":"2014-10-19T10:00:54Z"},"arcs":[[-2509,1042]]},{"type":"Polygon","properties":{"objectid":0,"scalerank":6,"featurecla":"Timezone","name":"-3","map_color6":3,"map_color8":6,"note":null,"zone":-3,"utc_format":"UTC-03:00","time_zone":"UTC-03:00","iso_8601":"2012-05-30T16:33:50-03:00","places":"Esperanza, Vicecomodoro Marambio Stations","dst_places":null,"tz_name1st":null,"tz_namesum":0,"cartodb_id":119,"created_at":"2014-10-19T10:00:54Z","updated_at":"2014-10-19T10:00:54Z"},"arcs":[[-2510,850]]},{"type":"Polygon","properties":{"objectid":0,"scalerank":6,"featurecla":"Timezone","name":"+5","map_color6":1,"map_color8":7,"note":null,"zone":5,"utc_format":"UTC+05:00","time_zone":"UTC+05:00","iso_8601":"2012-05-31T09:33:50+05:00","places":"French Southern and Antarctic Lands","dst_places":null,"tz_name1st":null,"tz_namesum":0,"cartodb_id":34,"created_at":"2014-10-19T10:00:54Z","updated_at":"2014-10-19T10:00:54Z"},"arcs":[[1307,28]]},{"type":"Polygon","properties":{"objectid":20,"scalerank":6,"featurecla":"Timezone","name":"+4","map_color6":2,"map_color8":5,"note":"Reflects 2012 shift in daylight savings time in Russia.","zone":4,"utc_format":"UTC+04:00","time_zone":"UTC+04:00","iso_8601":"2012-05-31T08:33:50+04:00","places":"Armenia, Azerbaijan, Georgia, Russia (European)","dst_places":null,"tz_name1st":"Europe/Moscow","tz_namesum":6,"cartodb_id":35,"created_at":"2014-10-19T10:00:54Z","updated_at":"2014-10-19T10:00:54Z"},"arcs":[[-2511,-2512,-2513,-2514,-2515,2486,-2516,2484,-2517,2482,-2518,2487,-2519,2506,-2520,2504,1646,1645,-2521,1651,-2522,1326]]},{"type":"Polygon","properties":{"objectid":29,"scalerank":6,"featurecla":"Timezone","name":"+9","map_color6":3,"map_color8":3,"note":null,"zone":9,"utc_format":"UTC+09:00","time_zone":"UTC+09:00","iso_8601":"2012-05-31T13:33:50+09:00","places":"East Timor, Japan, North Korea, South Korea","dst_places":null,"tz_name1st":"Asia/Tokyo","tz_namesum":6,"cartodb_id":47,"created_at":"2014-10-19T10:00:54Z","updated_at":"2014-10-19T10:00:54Z"},"arcs":[[752,-2523,2272,-2524,2270,-2525,2268,-2526,2266,-2527,2264,-2528,2262,-2529,2260,-2530,2258,-2531,2256,-2532,2254,-2533,2252,-2534,2250,-2535,2248,-2536,2246,-2537,2244,-2538,2242,-2539,2240,-2540,2238,-2541,2236,-2542,2234,-2543,2232,-2544,2230,-2545,2228,-2546,2226,-2547,2224,-2548,2222,-2549,2220,-2550,2218,-2551,2216,-2552,2214,-2553,2212,-2554,2210,-2555,2208,-2556,2206,-2557,2204,-2558,2202,-2559,2200,-2560,2198,-2561,2196,-2562,2194,-2563,2192,-2564,2190,-2565,2188,-2566,2186,-2567,2184,-2568,2182,-2569,2180,-2570,2178,-2571,-2572,1254,-2573,1252]]},{"type":"Polygon","properties":{"objectid":22,"scalerank":6,"featurecla":"Timezone","name":"+5","map_color6":1,"map_color8":7,"note":null,"zone":5,"utc_format":"UTC+05:00","time_zone":"UTC+05:00","iso_8601":"2012-05-31T09:33:50+05:00","places":"Kazakhstan (West), Uzbekistan","dst_places":null,"tz_name1st":"Asia/Tashkent","tz_namesum":6,"cartodb_id":61,"created_at":"2014-10-19T10:00:54Z","updated_at":"2014-10-19T10:00:54Z"},"arcs":[[1327,2521,1650,1653,-2574,-1925,-2575,-2576,1921,-2577,1919,-2578]]},{"type":"Polygon","properties":{"objectid":0,"scalerank":6,"featurecla":"Timezone","name":"+3","map_color6":3,"map_color8":4,"note":null,"zone":3,"utc_format":"UTC+03:00","time_zone":"UTC+03:00","iso_8601":"2012-05-31T07:33:50+03:00","places":"Belarus","dst_places":null,"tz_name1st":"Europe/Minsk","tz_namesum":1,"cartodb_id":63,"created_at":"2014-10-19T10:00:54Z","updated_at":"2014-10-19T10:00:54Z"},"arcs":[[2481,-2579,2488,2517]]},{"type":"Polygon","properties":{"objectid":16,"scalerank":6,"featurecla":"Timezone","name":"+1","map_color6":5,"map_color8":2,"note":null,"zone":1,"utc_format":"UTC+01:00","time_zone":"UTC+01:00","iso_8601":"2012-05-31T05:33:50+01:00","places":"Angola, Cameroon, Nigeria, Tunisia","dst_places":"Albania, Algeria, Austria, Belgium, Bosnia & Herz., Spain (continental), Croatia, Czech Republic, Denmark, Germany, Hungary, Italy, Kinshasa, Kosovo, Macedonia, France (metropolitan), Netherlands,Norway,Poland,Serbia,Slovakia,Slovenia,Sweden,Switzerland","tz_name1st":"Europe/Paris","tz_namesum":48,"cartodb_id":73,"created_at":"2014-10-19T10:00:54Z","updated_at":"2014-10-19T10:00:54Z"},"arcs":[[-2580,773,823,770,-2581,-2582,-2583,-25,24,23,2491,-2491,2489,2578,2480,-2584,-2585,-2586,2478,2514,-2587,-2588]]},{"type":"Polygon","properties":{"objectid":4,"scalerank":6,"featurecla":"Timezone","name":"-9","map_color6":3,"map_color8":5,"note":null,"zone":-9,"utc_format":"UTC-09:00","time_zone":"UTC-09:00","iso_8601":"2012-05-30T19:33:50-09:00","places":"Gambier Islands","dst_places":"United States (most of Alaska)","tz_name1st":null,"tz_namesum":0,"cartodb_id":78,"created_at":"2014-10-19T10:00:54Z","updated_at":"2014-10-19T10:00:54Z"},"arcs":[[820,-821]]},{"type":"MultiPolygon","properties":{"objectid":35,"scalerank":6,"featurecla":"Timezone","name":"+12","map_color6":6,"map_color8":2,"note":null,"zone":12,"utc_format":"UTC+12:00","time_zone":"UTC+12:00","iso_8601":"2012-05-31T16:33:50+12:00","places":"New Zealand","dst_places":"New Zealand","tz_name1st":"Pacific/Auckland","tz_namesum":9,"cartodb_id":86,"created_at":"2014-10-19T10:00:54Z","updated_at":"2014-10-19T10:00:54Z"},"arcs":[[[2588,2589]],[[-2591,-2592,-2593,690,-2594,-2595,687,-2596]]]},{"type":"Polygon","properties":{"objectid":10,"scalerank":6,"featurecla":"Timezone","name":"-4","map_color6":4,"map_color8":4,"note":null,"zone":-4,"utc_format":"UTC-04:00","time_zone":"UTC-04:00","iso_8601":"2012-05-31T00:33:50-04:00","places":"Palmer, Escudero, Great Wall, Gen. Bernado O'Higgins Stations","dst_places":"Falkland Islands, Palmer Station, Capitan Arturo Prat Station, Escudero Base, Gen. Bernado O'Higgons Station,","tz_name1st":"Antarctica/Palmer","tz_namesum":1,"cartodb_id":93,"created_at":"2014-10-19T10:00:54Z","updated_at":"2014-10-19T10:00:54Z"},"arcs":[[849,-2597,-2598,-2599,-2600,-2601,-2602,851,2509],[467]]},{"type":"Polygon","properties":{"objectid":0,"scalerank":6,"featurecla":"Timezone","name":"-3","map_color6":3,"map_color8":6,"note":null,"zone":-3,"utc_format":"UTC-03:00","time_zone":"UTC-03:00","iso_8601":"2012-05-30T16:33:50-03:00","places":"Rothera, San Martín Stations","dst_places":null,"tz_name1st":null,"tz_namesum":0,"cartodb_id":117,"created_at":"2014-10-19T10:00:54Z","updated_at":"2014-10-19T10:00:54Z"},"arcs":[[1271,-2603,2598,-2604,-2605]]},{"type":"Polygon","properties":{"objectid":0,"scalerank":6,"featurecla":"Timezone","name":"+10","map_color6":2,"map_color8":5,"note":null,"zone":10,"utc_format":"UTC+10:00","time_zone":"UTC+10:00","iso_8601":"2012-05-30T18:33:50+10:00","places":"Concordia Research Station","dst_places":null,"tz_name1st":"Antarctica/DumontDUrville","tz_namesum":1,"cartodb_id":112,"created_at":"2014-10-19T10:00:54Z","updated_at":"2014-10-19T10:00:54Z"},"arcs":[[-2606]]},{"type":"Polygon","properties":{"objectid":2,"scalerank":6,"featurecla":"Timezone","name":"-10","map_color6":4,"map_color8":4,"note":null,"zone":-10,"utc_format":"UTC-10:00","time_zone":"UTC-10:00","iso_8601":"2012-05-30T18:33:50-10:00","places":"United States (Aleutian Islands)","dst_places":"United States (Aleutian Islands)","tz_name1st":null,"tz_namesum":0,"cartodb_id":2,"created_at":"2014-10-19T10:00:54Z","updated_at":"2014-10-19T10:00:54Z"},"arcs":[[1304,679,2591,-2607]]},{"type":"Polygon","properties":{"objectid":2,"scalerank":6,"featurecla":"Timezone","name":"-10","map_color6":4,"map_color8":4,"note":null,"zone":-10,"utc_format":"UTC-10:00","time_zone":"UTC-10:00","iso_8601":"2012-05-30T18:33:50-10:00","places":"Arctic Ocean","dst_places":null,"tz_name1st":null,"tz_namesum":0,"cartodb_id":1,"created_at":"2014-10-19T10:00:54Z","updated_at":"2014-10-19T10:00:54Z"},"arcs":[[-2608,-2609,-2610,-2611]]},{"type":"Polygon","properties":{"objectid":13,"scalerank":6,"featurecla":"Timezone","name":"-2","map_color6":2,"map_color8":7,"note":null,"zone":-2,"utc_format":"UTC-02:00","time_zone":"UTC-02:00","iso_8601":"2012-05-31T02:33:50-02:00","places":"Arctic Ocean","dst_places":null,"tz_name1st":null,"tz_namesum":0,"cartodb_id":18,"created_at":"2014-10-19T10:00:54Z","updated_at":"2014-10-19T10:00:54Z"},"arcs":[[-2612,466,-2613,2471]]},{"type":"Polygon","properties":{"objectid":0,"scalerank":6,"featurecla":"Timezone","name":"+3","map_color6":3,"map_color8":4,"note":null,"zone":3,"utc_format":"UTC+03:00","time_zone":"UTC+03:00","iso_8601":"2012-05-31T07:33:50+03:00","places":"Russia (Kaliningrad Oblast)","dst_places":null,"tz_name1st":"Europe/Kaliningrad","tz_namesum":1,"cartodb_id":64,"created_at":"2014-10-19T10:00:54Z","updated_at":"2014-10-19T10:00:54Z"},"arcs":[[2479,2585,-2614,2583]]},{"type":"Polygon","properties":{"objectid":1,"scalerank":6,"featurecla":"Timezone","name":"-11","map_color6":5,"map_color8":3,"note":null,"zone":-11,"utc_format":"UTC-11:00","time_zone":"UTC-11:00","iso_8601":"2012-05-30T17:33:50-11:00","places":"Arctic Ocean","dst_places":null,"tz_name1st":null,"tz_namesum":0,"cartodb_id":3,"created_at":"2014-10-19T10:00:54Z","updated_at":"2014-10-19T10:00:54Z"},"arcs":[[-2615,-2616,2609,-2617,-2618,-2619,-2620,-2621,-2622,-2623]]},{"type":"Polygon","properties":{"objectid":22,"scalerank":6,"featurecla":"Timezone","name":"+5","map_color6":1,"map_color8":7,"note":null,"zone":5,"utc_format":"UTC+05:00","time_zone":"UTC+05:00","iso_8601":"2012-05-31T09:33:50+05:00","places":"Arctic Ocean","dst_places":null,"tz_name1st":null,"tz_namesum":0,"cartodb_id":62,"created_at":"2014-10-19T10:00:54Z","updated_at":"2014-10-19T10:00:54Z"},"arcs":[[1325,-2624,1323,-2625,2510]]},{"type":"Polygon","properties":{"objectid":12,"scalerank":6,"featurecla":"Timezone","name":"-3","map_color6":3,"map_color8":6,"note":null,"zone":-3,"utc_format":"UTC-03:00","time_zone":"UTC-03:00","iso_8601":"2012-05-31T01:33:50-03:00","places":"St. Pierre et Miquelon","dst_places":null,"tz_name1st":"America/Miquelon","tz_namesum":1,"cartodb_id":83,"created_at":"2014-10-19T10:00:54Z","updated_at":"2014-10-19T10:00:54Z"},"arcs":[[843,999,-2626]]},{"type":"Polygon","properties":{"objectid":1,"scalerank":6,"featurecla":"Timezone","name":"-11","map_color6":5,"map_color8":3,"note":null,"zone":-11,"utc_format":"UTC-11:00","time_zone":"UTC-11:00","iso_8601":"2012-05-30T17:33:50-11:00","places":"American Samoa, Niue","dst_places":null,"tz_name1st":null,"tz_namesum":0,"cartodb_id":4,"created_at":"2014-10-19T10:00:54Z","updated_at":"2014-10-19T10:00:54Z"},"arcs":[[-2627,-2628,-2629,-2630,-2631,-2632,-2633,-2634,796,-2635]]},{"type":"Polygon","properties":{"objectid":0,"scalerank":6,"featurecla":"Timezone","name":"+8.75","map_color6":2,"map_color8":2,"note":null,"zone":8.75,"utc_format":"UTC+08:45","time_zone":"UTC+08:45","iso_8601":"2012-05-31T09:33:50+08:45","places":"Australia (Eucla)","dst_places":null,"tz_name1st":"Australia/Eucla","tz_namesum":0,"cartodb_id":70,"created_at":"2014-10-19T10:00:54Z","updated_at":"2014-10-19T10:00:54Z"},"arcs":[[-2636,-2637,-2638,-2639]]},{"type":"Polygon","properties":{"objectid":29,"scalerank":6,"featurecla":"Timezone","name":"+9","map_color6":3,"map_color8":3,"note":null,"zone":9,"utc_format":"UTC+09:00","time_zone":"UTC+09:00","iso_8601":"2012-05-31T13:33:50+09:00","places":"Arctic Ocean","dst_places":null,"tz_name1st":null,"tz_namesum":0,"cartodb_id":53,"created_at":"2014-10-19T10:00:54Z","updated_at":"2014-10-19T10:00:54Z"},"arcs":[[2469,-2640,2467,470,-2641]]},{"type":"Polygon","properties":{"objectid":1,"scalerank":6,"featurecla":"Timezone","name":"-11","map_color6":5,"map_color8":3,"note":null,"zone":-11,"utc_format":"UTC-11:00","time_zone":"UTC-11:00","iso_8601":"2012-05-30T17:33:50-11:00","places":"American Samoa, Niue","dst_places":null,"tz_name1st":"Pacific/Midway","tz_namesum":1,"cartodb_id":5,"created_at":"2014-10-19T10:00:54Z","updated_at":"2014-10-19T10:00:54Z"},"arcs":[[-2642,-2643,-2644,-2645,-2646,-2647,-2648,-2649,-2650,-2651,791]]},{"type":"Polygon","properties":{"objectid":36,"scalerank":6,"featurecla":"Timezone","name":"+12.75","map_color6":2,"map_color8":1,"note":null,"zone":12.75,"utc_format":"UTC+12:45","time_zone":"UTC+12:45","iso_8601":"2012-05-31T17:18:50+12:45","places":"Chatham Islands","dst_places":"Chatham Islands","tz_name1st":"Pacific/Chatham","tz_namesum":1,"cartodb_id":51,"created_at":"2014-10-19T10:00:54Z","updated_at":"2014-10-19T10:00:54Z"},"arcs":[[-2652,-2653]]},{"type":"Polygon","properties":{"objectid":25,"scalerank":6,"featurecla":"Timezone","name":"+6","map_color6":6,"map_color8":8,"note":null,"zone":6,"utc_format":"UTC+06:00","time_zone":"UTC+06:00","iso_8601":"2012-05-31T10:33:50+06:00","places":"Bangladesh","dst_places":null,"tz_name1st":"Asia/Dhaka","tz_namesum":1,"cartodb_id":52,"created_at":"2014-10-19T10:00:54Z","updated_at":"2014-10-19T10:00:54Z"},"arcs":[[1160,-2654,-2655,1043,2508,1041,-2656],[-2657,-2658,-2659,-2660]]},{"type":"Polygon","properties":{"objectid":4,"scalerank":6,"featurecla":"Timezone","name":"-9","map_color6":3,"map_color8":5,"note":null,"zone":-9,"utc_format":"UTC-09:00","time_zone":"UTC-09:00","iso_8601":"2012-05-30T19:33:50-09:00","places":"United States (most of Alaska)","dst_places":"United States (most of Alaska)","tz_name1st":"America/Anchorage","tz_namesum":4,"cartodb_id":79,"created_at":"2014-10-19T10:00:54Z","updated_at":"2014-10-19T10:00:54Z"},"arcs":[[-2661,-2662,2607,-2663,2614,-2664,-2665,-2666,-2667,-2668,-2669,779,-2670,-2671,815,824,836,-2672]]},{"type":"Polygon","properties":{"objectid":1,"scalerank":6,"featurecla":"Timezone","name":"-11","map_color6":5,"map_color8":3,"note":null,"zone":-11,"utc_format":"UTC-11:00","time_zone":"UTC-11:00","iso_8601":"2012-05-30T17:33:50-11:00","places":"American Samoa, Niue","dst_places":null,"tz_name1st":"Pacific/Pago_Pago","tz_namesum":2,"cartodb_id":6,"created_at":"2014-10-19T10:00:54Z","updated_at":"2014-10-19T10:00:54Z"},"arcs":[[807,-2673,-2674,-2675,-2676,-2677,-2678,-2679,-2680,-2681,-2682,-2683,-2684,-2685,-2686,-2687,-2688,-2689,-2690,-2691,-2692,-2693,811,-2694,809,-2695]]},{"type":"Polygon","properties":{"objectid":0,"scalerank":6,"featurecla":"Timezone","name":"-12","map_color6":1,"map_color8":8,"note":null,"zone":-12,"utc_format":"UTC-12:00","time_zone":"UTC-12:00","iso_8601":"2012-05-30T16:33:50-12:00","places":"Southern Ocean","dst_places":null,"tz_name1st":null,"tz_namesum":0,"cartodb_id":8,"created_at":"2014-10-19T10:00:54Z","updated_at":"2014-10-19T10:00:54Z"},"arcs":[[2691,-2696,-2697,-2698,-2699,-2700]]},{"type":"Polygon","properties":{"objectid":0,"scalerank":6,"featurecla":"Timezone","name":"-12","map_color6":1,"map_color8":8,"note":null,"zone":-12,"utc_format":"UTC-12:00","time_zone":"UTC-12:00","iso_8601":"2012-05-30T16:33:50-12:00","places":"Siberia","dst_places":null,"tz_name1st":null,"tz_namesum":0,"cartodb_id":9,"created_at":"2014-10-19T10:00:54Z","updated_at":"2014-10-19T10:00:54Z"},"arcs":[[-2701,2617,-2702,-2703]]},{"type":"Polygon","properties":{"objectid":3,"scalerank":6,"featurecla":"Timezone","name":"-9.5","map_color6":6,"map_color8":6,"note":null,"zone":-9.5,"utc_format":"UTC-09:30","time_zone":"UTC-09:30","iso_8601":"2012-05-30T19:03:50-09:30","places":"Marquesas Islands","dst_places":null,"tz_name1st":"Pacific/Marquesas","tz_namesum":1,"cartodb_id":11,"created_at":"2014-10-19T10:00:54Z","updated_at":"2014-10-19T10:00:54Z"},"arcs":[[-2704,2669,820,-2705,818,-2706]]},{"type":"Polygon","properties":{"objectid":34,"scalerank":6,"featurecla":"Timezone","name":"+11.5","map_color6":5,"map_color8":1,"note":null,"zone":11.5,"utc_format":"UTC+11:30","time_zone":"UTC+11:30","iso_8601":"2012-05-31T16:03:50+11:30","places":"Norfolk Island","dst_places":null,"tz_name1st":"Pacific/Norfolk","tz_namesum":1,"cartodb_id":44,"created_at":"2014-10-19T10:00:54Z","updated_at":"2014-10-19T10:00:54Z"},"arcs":[[692]]},{"type":"Polygon","properties":{"objectid":0,"scalerank":6,"featurecla":"Timezone","name":"-4.5","map_color6":2,"map_color8":8,"note":null,"zone":-4.5,"utc_format":"UTC-04:30","time_zone":"UTC-04:30","iso_8601":"2012-05-31T09:03:50-04:30","places":"Venezuela","dst_places":null,"tz_name1st":"America/Caracas","tz_namesum":1,"cartodb_id":45,"created_at":"2014-10-19T10:00:54Z","updated_at":"2014-10-19T10:00:54Z"},"arcs":[[847,1277,-2707,1275,-2708,1273]]},{"type":"Polygon","properties":{"objectid":11,"scalerank":6,"featurecla":"Timezone","name":"-3.5","map_color6":6,"map_color8":5,"note":null,"zone":-3.5,"utc_format":"UTC-03:30","time_zone":"UTC-03:30","iso_8601":"2012-05-31T01:03:50-03:30","places":"Canada (island of Newfoundland and southern Labrador)","dst_places":"Canada (island of Newfoundland and southern Labrador)","tz_name1st":"America/St_Johns","tz_namesum":2,"cartodb_id":14,"created_at":"2014-10-19T10:00:54Z","updated_at":"2014-10-19T10:00:54Z"},"arcs":[[844,2625,1000,998,151]]},{"type":"Polygon","properties":{"objectid":10,"scalerank":6,"featurecla":"Timezone","name":"-4","map_color6":4,"map_color8":4,"note":null,"zone":-4,"utc_format":"UTC-04:00","time_zone":"UTC-04:00","iso_8601":"2012-05-31T00:33:50-04:00","places":"Arctic Ocean","dst_places":null,"tz_name1st":null,"tz_namesum":0,"cartodb_id":15,"created_at":"2014-10-19T10:00:54Z","updated_at":"2014-10-19T10:00:54Z"},"arcs":[[-2709,1267,146]]},{"type":"Polygon","properties":{"objectid":1,"scalerank":6,"featurecla":"Timezone","name":"-12","map_color6":1,"map_color8":8,"note":null,"zone":-12,"utc_format":"UTC-12:00","time_zone":"UTC-12:00","iso_8601":"2012-05-30T16:33:50-12:00","places":"Baker Island, Howland Island (both uninhabited)","dst_places":null,"tz_name1st":null,"tz_namesum":0,"cartodb_id":76,"created_at":"2014-10-19T10:00:54Z","updated_at":"2014-10-19T10:00:54Z"},"arcs":[[-2710,2649,-2711,-2712,-2713,2645,-2714,2643,-2715,2641,790]]},{"type":"Polygon","properties":{"objectid":6,"scalerank":6,"featurecla":"Timezone","name":"-8","map_color6":2,"map_color8":7,"note":null,"zone":-8,"utc_format":"UTC-08:00","time_zone":"UTC-08:00","iso_8601":"2012-05-30T20:33:50-08:00","places":"Arctic Ocean","dst_places":null,"tz_name1st":null,"tz_namesum":0,"cartodb_id":22,"created_at":"2014-10-19T10:00:54Z","updated_at":"2014-10-19T10:00:54Z"},"arcs":[[834,-2716,2660,-2717]]},{"type":"Polygon","properties":{"objectid":23,"scalerank":6,"featurecla":"Timezone","name":"+5.5","map_color6":3,"map_color8":3,"note":null,"zone":5.5,"utc_format":"UTC+05:30","time_zone":"UTC+05:30","iso_8601":"2012-05-31T10:03:50+05:30","places":"India (Andaman Is.)","dst_places":null,"tz_name1st":null,"tz_namesum":0,"cartodb_id":56,"created_at":"2014-10-19T10:00:54Z","updated_at":"2014-10-19T10:00:54Z"},"arcs":[[2658,-2718,2656,-2719]]},{"type":"Polygon","properties":{"objectid":22,"scalerank":6,"featurecla":"Timezone","name":"+5","map_color6":1,"map_color8":7,"note":null,"zone":5,"utc_format":"UTC+05:00","time_zone":"UTC+05:00","iso_8601":"2012-05-31T09:33:50+05:00","places":"Uzbekistan","dst_places":null,"tz_name1st":null,"tz_namesum":0,"cartodb_id":59,"created_at":"2014-10-19T10:00:54Z","updated_at":"2014-10-19T10:00:54Z"},"arcs":[[-1490]]},{"type":"Polygon","properties":{"objectid":37,"scalerank":6,"featurecla":"Timezone","name":"+13","map_color6":2,"map_color8":6,"note":"Reflects 2012 International Date Line switch for Western Samoa and Kiribati","zone":13,"utc_format":"UTC+13:00","time_zone":"UTC+13:00","iso_8601":"2012-05-31T17:33:50+13:00","places":"Kiribati (Phoenix Islands), Tonga, Samoa","dst_places":"Samoa","tz_name1st":"Pacific/Enderbury","tz_namesum":3,"cartodb_id":23,"created_at":"2014-10-19T10:00:54Z","updated_at":"2014-10-19T10:00:54Z"},"arcs":[[-2720,-2721,-2722,-2723,-2724,-2725,2681,-2726,-2727,2678,-2728,2676,-2729,-2730,2673,-2731,805,-2732]]},{"type":"Polygon","properties":{"objectid":0,"scalerank":6,"featurecla":"Timezone","name":"+14","map_color6":1,"map_color8":1,"note":"Reflects 2012 International Date Line switch for Western Samoa and Kiribati","zone":14,"utc_format":"UTC+14:00","time_zone":"UTC+14:00","iso_8601":"2012-05-31T18:33:50+14:00","places":"Kiribati (Line Islands), Tokelau","dst_places":null,"tz_name1st":"Pacific/Kiritimati","tz_namesum":2,"cartodb_id":24,"created_at":"2014-10-19T10:00:54Z","updated_at":"2014-10-19T10:00:54Z"},"arcs":[[-2733,803,-2734,-2735,800,-2736,798,-2737,-2738,2631,-2739,-2740,-2741,2731]]},{"type":"Polygon","properties":{"objectid":12,"scalerank":6,"featurecla":"Timezone","name":"0","map_color6":6,"map_color8":1,"note":null,"zone":0,"utc_format":"UTC±00:00","time_zone":"UTC±00:00","iso_8601":"2012-05-31T09:03:50±00:00","places":"Greenland (north eastern part)","dst_places":null,"tz_name1st":"America/Danmarkshavn","tz_namesum":1,"cartodb_id":68,"created_at":"2014-10-19T10:00:54Z","updated_at":"2014-10-19T10:00:54Z"},"arcs":[[462,-2742,2474,-2743]]},{"type":"Polygon","properties":{"objectid":25,"scalerank":6,"featurecla":"Timezone","name":"+6","map_color6":6,"map_color8":8,"note":null,"zone":6,"utc_format":"UTC+06:00","time_zone":"UTC+06:00","iso_8601":"2012-05-31T10:33:50+06:00","places":"Bhutan","dst_places":null,"tz_name1st":"Asia/Thimphu","tz_namesum":1,"cartodb_id":33,"created_at":"2014-10-19T10:00:54Z","updated_at":"2014-10-19T10:00:54Z"},"arcs":[[-2744,2004,-2745,2002,-2746,1217,-2747,2012,-2748,2010,-2749,2008,-2750,2006]]},{"type":"Polygon","properties":{"objectid":18,"scalerank":6,"featurecla":"Timezone","name":"+3","map_color6":3,"map_color8":4,"note":null,"zone":3,"utc_format":"UTC+03:00","time_zone":"UTC+03:00","iso_8601":"2012-05-31T07:33:50+03:00","places":"Arctic Ocean","dst_places":null,"tz_name1st":null,"tz_namesum":0,"cartodb_id":71,"created_at":"2014-10-19T10:00:54Z","updated_at":"2014-10-19T10:00:54Z"},"arcs":[[2512,-2751,-2752]]},{"type":"Polygon","properties":{"objectid":30,"scalerank":6,"featurecla":"Timezone","name":"+9.5","map_color6":1,"map_color8":4,"note":null,"zone":9.5,"utc_format":"UTC+09:30","time_zone":"UTC+09:30","iso_8601":"2012-05-31T14:03:50+09:30","places":"Australia (Northern Territory)","dst_places":"Australia (South Australia)","tz_name1st":"Australia/Adelaide","tz_namesum":3,"cartodb_id":42,"created_at":"2014-10-19T10:00:54Z","updated_at":"2014-10-19T10:00:54Z"},"arcs":[[2570,2177,-2753,-2754,-2755,-2756,1256,-2757]]},{"type":"Polygon","properties":{"objectid":29,"scalerank":6,"featurecla":"Timezone","name":"+9","map_color6":3,"map_color8":3,"note":null,"zone":9,"utc_format":"UTC+09:00","time_zone":"UTC+09:00","iso_8601":"2012-05-31T13:33:50+09:00","places":"Southern Ocean","dst_places":null,"tz_name1st":null,"tz_namesum":1,"cartodb_id":46,"created_at":"2014-10-19T10:00:54Z","updated_at":"2014-10-19T10:00:54Z"},"arcs":[[2755,-2758,-2759,2174,-2760,-2761,1257]]},{"type":"Polygon","properties":{"objectid":27,"scalerank":6,"featurecla":"Timezone","name":"+7","map_color6":5,"map_color8":1,"note":"Reflects 2012 shift in daylight savings time in Russia.","zone":7,"utc_format":"UTC+07:00","time_zone":"UTC+07:00","iso_8601":"2012-05-31T11:33:50+07:00","places":"Arctic Ocean","dst_places":null,"tz_name1st":null,"tz_namesum":0,"cartodb_id":72,"created_at":"2014-10-19T10:00:54Z","updated_at":"2014-10-19T10:00:54Z"},"arcs":[[-2762,1321,-2763,1755]]},{"type":"Polygon","properties":{"objectid":26,"scalerank":6,"featurecla":"Timezone","name":"+6.5","map_color6":2,"map_color8":6,"note":null,"zone":6.5,"utc_format":"UTC+06:30","time_zone":"UTC+06:30","iso_8601":"2012-05-31T11:03:50+06:30","places":"Myanmar","dst_places":null,"tz_name1st":"Asia/Rangoon","tz_namesum":1,"cartodb_id":75,"created_at":"2014-10-19T10:00:54Z","updated_at":"2014-10-19T10:00:54Z"},"arcs":[[-2764,2045,-2765,2043,-2766,1161,2655,1040,-2767,2096,-2768,2094,-2769,2092,-2770,2090,-2771,2088,-2772,-2773,2085,-2774,2083,-2775,2081,-2776,-2777,-2778,-2779,-2780,2075,-2781,2073,-2782,2071,-2783,2069,-2784,2067,-2785,2065,-2786,2063,-2787,2061,-2788,2059,-2789,-2790,2056,-2791,-2792,2053,-2793,-2794,2050,-2795,-2796,2047]]},{"type":"Polygon","properties":{"objectid":17,"scalerank":6,"featurecla":"Timezone","name":"+2","map_color6":4,"map_color8":3,"note":null,"zone":2,"utc_format":"UTC+02:00","time_zone":"UTC+02:00","iso_8601":"2012-05-31T06:33:50+02:00","places":"Arctic Ocean","dst_places":null,"tz_name1st":null,"tz_namesum":0,"cartodb_id":48,"created_at":"2014-10-19T10:00:54Z","updated_at":"2014-10-19T10:00:54Z"},"arcs":[[2751,-2797,2586,2513]]},{"type":"Polygon","properties":{"objectid":17,"scalerank":6,"featurecla":"Timezone","name":"+2","map_color6":4,"map_color8":3,"note":null,"zone":2,"utc_format":"UTC+02:00","time_zone":"UTC+02:00","iso_8601":"2012-05-31T06:33:50+02:00","places":"Libya, Egypt, Malawi, Mozambique, South Africa, Swaziland, Zambia, Zimbabwe","dst_places":"Bulgaria, Cyprus, Estonia, Finland, Greece, Israel, Jordan, Latvia, Lebanon, Lithuania, Moldova, Palestine, Romania, Syria, Turkey, Ukraine","tz_name1st":"Africa/Johannesburg","tz_namesum":11,"cartodb_id":49,"created_at":"2014-10-19T10:00:54Z","updated_at":"2014-10-19T10:00:54Z"},"arcs":[[2582,-2798,25,24]]},{"type":"Polygon","properties":{"objectid":22,"scalerank":6,"featurecla":"Timezone","name":"+5","map_color6":1,"map_color8":7,"note":null,"zone":5,"utc_format":"UTC+05:00","time_zone":"UTC+05:00","iso_8601":"2012-05-31T09:33:50+05:00","places":"Maldives, Pakistan","dst_places":null,"tz_name1st":"Asia/Karachi","tz_namesum":5,"cartodb_id":50,"created_at":"2014-10-19T10:00:54Z","updated_at":"2014-10-19T10:00:54Z"},"arcs":[[-2799,1930,-2800,1674,-2801,1672,-2802,1670,-2803,1668,-2804,1666,-2805,1664,-2806,1662,-2807,1660,-2808,1658,-2809,1656,-2810,1654,1648,1312,-2811,1310,-2812,-2813,-2814,2653,1159,-2815,1942,-2816,1940,-2817,1938,-2818,1936,-2819,1934,-2820,1932],[1280],[1314,-2821,-2822]]},{"type":"Polygon","properties":{"objectid":1,"scalerank":6,"featurecla":"Timezone","name":"-12","map_color6":1,"map_color8":8,"note":null,"zone":-12,"utc_format":"UTC-12:00","time_zone":"UTC-12:00","iso_8601":"2012-05-30T16:33:50-12:00","places":"Pacific Ocean","dst_places":null,"tz_name1st":null,"tz_namesum":0,"cartodb_id":77,"created_at":"2014-10-19T10:00:54Z","updated_at":"2014-10-19T10:00:54Z"},"arcs":[[2720,-2823,2626,-2824,794,-2825,-2826,-2827,-2828]]},{"type":"Polygon","properties":{"objectid":1,"scalerank":6,"featurecla":"Timezone","name":"-11","map_color6":5,"map_color8":3,"note":null,"zone":-11,"utc_format":"UTC-11:00","time_zone":"UTC-11:00","iso_8601":"2012-05-30T17:33:50-11:00","places":"Antarctica","dst_places":null,"tz_name1st":"Antarctica/","tz_namesum":0,"cartodb_id":87,"created_at":"2014-10-19T10:00:54Z","updated_at":"2014-10-19T10:00:54Z"},"arcs":[[2692,-2829,-2830,-2831,-2832,-2833]]},{"type":"Polygon","properties":{"objectid":4,"scalerank":6,"featurecla":"Timezone","name":"-9","map_color6":3,"map_color8":5,"note":null,"zone":-9,"utc_format":"UTC-09:00","time_zone":"UTC-09:00","iso_8601":"2012-05-30T19:33:50-09:00","places":"Gambier Islands","dst_places":null,"tz_name1st":null,"tz_namesum":0,"cartodb_id":80,"created_at":"2014-10-19T10:00:54Z","updated_at":"2014-10-19T10:00:54Z"},"arcs":[[-2834,825,813]]},{"type":"Polygon","properties":{"objectid":0,"scalerank":6,"featurecla":"Timezone","name":"0","map_color6":6,"map_color8":1,"note":"DST is -3","zone":0,"utc_format":"UTC±00:00","time_zone":"UTC±00:00","iso_8601":"2012-05-30T16:33:50±00:00","places":"Halley Station","dst_places":"Halley Station","tz_name1st":null,"tz_namesum":0,"cartodb_id":116,"created_at":"2014-10-19T10:00:54Z","updated_at":"2014-10-19T10:00:54Z"},"arcs":[[-2835,-2836,-2837,762]]},{"type":"Polygon","properties":{"objectid":35,"scalerank":6,"featurecla":"Timezone","name":"+12","map_color6":6,"map_color8":2,"note":null,"zone":12,"utc_format":"UTC+12:00","time_zone":"UTC+12:00","iso_8601":"2012-05-31T16:33:50+12:00","places":"New Zealand, Kiribati (Gilbert Islands), Fiji","dst_places":"New Zealand","tz_name1st":"Pacific/Auckland","tz_namesum":9,"cartodb_id":85,"created_at":"2014-10-19T10:00:54Z","updated_at":"2014-10-19T10:00:54Z"},"arcs":[[2724,-2838,2722,-2839,2826,-2840,2697,-2841,2688,-2842,2686,-2843,2684,-2844,2682],[-2845,2651]]},{"type":"Polygon","properties":{"objectid":2,"scalerank":6,"featurecla":"Timezone","name":"-10","map_color6":4,"map_color8":4,"note":null,"zone":-10,"utc_format":"UTC-10:00","time_zone":"UTC-10:00","iso_8601":"2012-05-30T18:33:50-10:00","places":"Antarctica","dst_places":null,"tz_name1st":"Antarctica/","tz_namesum":0,"cartodb_id":88,"created_at":"2014-10-19T10:00:54Z","updated_at":"2014-10-19T10:00:54Z"},"arcs":[[812,2832,-2846,2830,-2847,-2848]]},{"type":"Polygon","properties":{"objectid":0,"scalerank":6,"featurecla":"Timezone","name":"-12","map_color6":1,"map_color8":8,"note":null,"zone":-12,"utc_format":"UTC-12:00","time_zone":"UTC-12:00","iso_8601":"2012-05-30T16:33:50-12:00","places":"Antarctica","dst_places":null,"tz_name1st":"Antarctica/","tz_namesum":0,"cartodb_id":89,"created_at":"2014-10-19T10:00:54Z","updated_at":"2014-10-19T10:00:54Z"},"arcs":[[-2849,2828,2699]]},{"type":"Polygon","properties":{"objectid":13,"scalerank":6,"featurecla":"Timezone","name":"-2","map_color6":2,"map_color8":7,"note":null,"zone":-2,"utc_format":"UTC-02:00","time_zone":"UTC-02:00","iso_8601":"2012-05-31T02:33:50-02:00","places":"Antarctica","dst_places":null,"tz_name1st":"Antarctica/","tz_namesum":0,"cartodb_id":94,"created_at":"2014-10-19T10:00:54Z","updated_at":"2014-10-19T10:00:54Z"},"arcs":[[-2850,764,-2851,2835,-2852,760,-2853,-2854,-2855]]},{"type":"Polygon","properties":{"objectid":7,"scalerank":6,"featurecla":"Timezone","name":"-7","map_color6":1,"map_color8":1,"note":null,"zone":-7,"utc_format":"UTC-07:00","time_zone":"UTC-07:00","iso_8601":"2012-05-30T21:33:50-07:00","places":"Antarctica","dst_places":null,"tz_name1st":"Antarctica/","tz_namesum":0,"cartodb_id":90,"created_at":"2014-10-19T10:00:54Z","updated_at":"2014-10-19T10:00:54Z"},"arcs":[[838,-2856,-2857,-2858]]},{"type":"Polygon","properties":{"objectid":8,"scalerank":6,"featurecla":"Timezone","name":"-6","map_color6":6,"map_color8":2,"note":null,"zone":-6,"utc_format":"UTC-06:00","time_zone":"UTC-06:00","iso_8601":"2012-05-30T22:33:50-06:00","places":"Antarctica","dst_places":null,"tz_name1st":"Antarctica/","tz_namesum":0,"cartodb_id":91,"created_at":"2014-10-19T10:00:54Z","updated_at":"2014-10-19T10:00:54Z"},"arcs":[[1264,2857,-2859,-2860]]},{"type":"Polygon","properties":{"objectid":6,"scalerank":6,"featurecla":"Timezone","name":"-8","map_color6":2,"map_color8":7,"note":null,"zone":-8,"utc_format":"UTC-08:00","time_zone":"UTC-08:00","iso_8601":"2012-05-30T20:33:50-08:00","places":"Antarctica","dst_places":null,"tz_name1st":"Antarctica/","tz_namesum":0,"cartodb_id":96,"created_at":"2014-10-19T10:00:54Z","updated_at":"2014-10-19T10:00:54Z"},"arcs":[[826,-2861,-2862,2855]]},{"type":"MultiPolygon","properties":{"objectid":9,"scalerank":6,"featurecla":"Timezone","name":"-5","map_color6":5,"map_color8":3,"note":null,"zone":-5,"utc_format":"UTC-05:00","time_zone":"UTC-05:00","iso_8601":"2012-05-30T23:33:50-05:00","places":"Antarctica","dst_places":null,"tz_name1st":"Antarctica/","tz_namesum":0,"cartodb_id":92,"created_at":"2014-10-19T10:00:54Z","updated_at":"2014-10-19T10:00:54Z"},"arcs":[[[-2863,2596,1272,2604]],[[1270,2859,-2864,2600,-2865]]]},{"type":"Polygon","properties":{"objectid":14,"scalerank":6,"featurecla":"Timezone","name":"-1","map_color6":1,"map_color8":8,"note":null,"zone":-1,"utc_format":"UTC-01:00","time_zone":"UTC-01:00","iso_8601":"2012-05-31T03:33:50-01:00","places":"Aboa, Svea, Wasa, Novolazarevskaya Stations","dst_places":null,"tz_name1st":"Antarctica/Central","tz_namesum":1,"cartodb_id":95,"created_at":"2014-10-19T10:00:54Z","updated_at":"2014-10-19T10:00:54Z"},"arcs":[[821,2849,-2866,-2867,-2868]]},{"type":"Polygon","properties":{"objectid":29,"scalerank":6,"featurecla":"Timezone","name":"+9","map_color6":3,"map_color8":3,"note":null,"zone":9,"utc_format":"UTC+09:00","time_zone":"UTC+09:00","iso_8601":"2012-05-31T13:33:50+09:00","places":"Antarctica","dst_places":null,"tz_name1st":"Antarctica/","tz_namesum":0,"cartodb_id":101,"created_at":"2014-10-19T10:00:54Z","updated_at":"2014-10-19T10:00:54Z"},"arcs":[[2759,-2869,-2870,-2871]]},{"type":"Polygon","properties":{"objectid":31,"scalerank":6,"featurecla":"Timezone","name":"+10","map_color6":2,"map_color8":5,"note":null,"zone":10,"utc_format":"UTC+10:00","time_zone":"UTC+10:00","iso_8601":"2012-05-31T14:33:50+10:00","places":"Dumont d'Urville Station","dst_places":null,"tz_name1st":"Antarctica/DumontDUrville","tz_namesum":1,"cartodb_id":97,"created_at":"2014-10-19T10:00:54Z","updated_at":"2014-10-19T10:00:54Z"},"arcs":[[1258,2760,2870,-2872,-2873]]},{"type":"Polygon","properties":{"objectid":33,"scalerank":6,"featurecla":"Timezone","name":"+11","map_color6":1,"map_color8":6,"note":null,"zone":11,"utc_format":"UTC+11:00","time_zone":"UTC+11:00","iso_8601":"2012-05-31T15:33:50+11:00","places":"Antarctica","dst_places":null,"tz_name1st":"Antarctica/","tz_namesum":0,"cartodb_id":98,"created_at":"2014-10-19T10:00:54Z","updated_at":"2014-10-19T10:00:54Z"},"arcs":[[684,2872,-2874,-2875,-2876,-2877,-2878]]},{"type":"Polygon","properties":{"objectid":20,"scalerank":6,"featurecla":"Timezone","name":"+4","map_color6":2,"map_color8":5,"note":null,"zone":4,"utc_format":"UTC+04:00","time_zone":"UTC+04:00","iso_8601":"2012-05-31T08:33:50+04:00","places":"Antarctica","dst_places":null,"tz_name1st":"Antarctica/","tz_namesum":0,"cartodb_id":99,"created_at":"2014-10-19T10:00:54Z","updated_at":"2014-10-19T10:00:54Z"},"arcs":[[1308,-2879,-2880,-2881]]},{"type":"Polygon","properties":{"objectid":17,"scalerank":6,"featurecla":"Timezone","name":"+2","map_color6":4,"map_color8":3,"note":null,"zone":2,"utc_format":"UTC+02:00","time_zone":"UTC+02:00","iso_8601":"2012-05-31T06:33:50+02:00","places":"Antarctica","dst_places":null,"tz_name1st":"Antarctica/","tz_namesum":0,"cartodb_id":102,"created_at":"2014-10-19T10:00:54Z","updated_at":"2014-10-19T10:00:54Z"},"arcs":[[2797,-2882,-2883,-2884,-2885,-2886,-2887,-2888]]},{"type":"Polygon","properties":{"objectid":28,"scalerank":6,"featurecla":"Timezone","name":"+8","map_color6":4,"map_color8":2,"note":null,"zone":8,"utc_format":"UTC+08:00","time_zone":"UTC+08:00","iso_8601":"2012-05-31T12:33:50+08:00","places":"Casety Station","dst_places":null,"tz_name1st":"Antarctica/Casey","tz_namesum":1,"cartodb_id":100,"created_at":"2014-10-19T10:00:54Z","updated_at":"2014-10-19T10:00:54Z"},"arcs":[[1045,-2889,-2890,-2891,2868,2173],[2605]]},{"type":"Polygon","properties":{"objectid":22,"scalerank":6,"featurecla":"Timezone","name":"+5","map_color6":1,"map_color8":7,"note":null,"zone":5,"utc_format":"UTC+05:00","time_zone":"UTC+05:00","iso_8601":"2012-05-31T09:33:50+05:00","places":"Mawson Station, Zhongshan Station","dst_places":null,"tz_name1st":"Antarctica/Mawson","tz_namesum":1,"cartodb_id":103,"created_at":"2014-10-19T10:00:54Z","updated_at":"2014-10-19T10:00:54Z"},"arcs":[[2811,1309,2880,-2892,-2893,2813,-2894]]},{"type":"Polygon","properties":{"objectid":25,"scalerank":6,"featurecla":"Timezone","name":"+6","map_color6":6,"map_color8":8,"note":null,"zone":6,"utc_format":"UTC+06:00","time_zone":"UTC+06:00","iso_8601":"2012-05-31T10:33:50+06:00","places":"Mirny Station","dst_places":null,"tz_name1st":"Antarctica/Mirny","tz_namesum":1,"cartodb_id":104,"created_at":"2014-10-19T10:00:54Z","updated_at":"2014-10-19T10:00:54Z"},"arcs":[[2654,2892,-2895,-2896]]},{"type":"Polygon","properties":{"objectid":27,"scalerank":6,"featurecla":"Timezone","name":"+7","map_color6":5,"map_color8":1,"note":null,"zone":7,"utc_format":"UTC+07:00","time_zone":"UTC+07:00","iso_8601":"2012-05-31T11:33:50+07:00","places":"Antarctica","dst_places":null,"tz_name1st":"Antarctica/","tz_namesum":0,"cartodb_id":105,"created_at":"2014-10-19T10:00:54Z","updated_at":"2014-10-19T10:00:54Z"},"arcs":[[1044,2895,-2897,-2898,2888],[-2899]]},{"type":"Polygon","properties":{"objectid":15,"scalerank":6,"featurecla":"Timezone","name":"0","map_color6":6,"map_color8":1,"note":null,"zone":0,"utc_format":"UTC±00:00","time_zone":"UTC±00:00","iso_8601":"2012-05-31T09:03:50±00:00","places":"Troll Station, Maitri Station","dst_places":null,"tz_name1st":"Antarctica/Troll","tz_namesum":1,"cartodb_id":106,"created_at":"2014-10-19T10:00:54Z","updated_at":"2014-10-19T10:00:54Z"},"arcs":[[2580,772,-2900,2866,-2901,-2902]]},{"type":"Polygon","properties":{"objectid":16,"scalerank":6,"featurecla":"Timezone","name":"+1","map_color6":5,"map_color8":2,"note":null,"zone":1,"utc_format":"UTC+01:00","time_zone":"UTC+01:00","iso_8601":"2012-05-31T05:33:50+01:00","places":"Antarctica","dst_places":null,"tz_name1st":"Antarctica/","tz_namesum":0,"cartodb_id":107,"created_at":"2014-10-19T10:00:54Z","updated_at":"2014-10-19T10:00:54Z"},"arcs":[[2581,2901,-2903,2885,-2904,2883,-2905,2881]]},{"type":"Polygon","properties":{"objectid":4,"scalerank":6,"featurecla":"Timezone","name":"-9","map_color6":3,"map_color8":5,"note":null,"zone":-9,"utc_format":"UTC-09:00","time_zone":"UTC-09:00","iso_8601":"2012-05-30T19:33:50-09:00","places":"Antarctica","dst_places":null,"tz_name1st":"Antarctica/","tz_namesum":0,"cartodb_id":108,"created_at":"2014-10-19T10:00:54Z","updated_at":"2014-10-19T10:00:54Z"},"arcs":[[2833,2847,-2906,2860]]},{"type":"Polygon","properties":{"objectid":18,"scalerank":6,"featurecla":"Timezone","name":"+3","map_color6":3,"map_color8":4,"note":null,"zone":3,"utc_format":"UTC+03:00","time_zone":"UTC+03:00","iso_8601":"2012-05-31T07:33:50+03:00","places":"Antarctica","dst_places":null,"tz_name1st":"Antarctica/","tz_namesum":0,"cartodb_id":109,"created_at":"2014-10-19T10:00:54Z","updated_at":"2014-10-19T10:00:54Z"},"arcs":[[2878,26,2887,-2907]]},{"type":"Polygon","properties":{"objectid":12,"scalerank":6,"featurecla":"Timezone","name":"-3","map_color6":3,"map_color8":6,"note":null,"zone":-3,"utc_format":"UTC-03:00","time_zone":"UTC-03:00","iso_8601":"2012-05-31T01:33:50-03:00","places":"General Belgrano, Doctor Sobral Stations","dst_places":null,"tz_name1st":"Antarctica/","tz_namesum":23,"cartodb_id":110,"created_at":"2014-10-19T10:00:54Z","updated_at":"2014-10-19T10:00:54Z"},"arcs":[[446,-2908,2853,-2909,758]]},{"type":"Polygon","properties":{"objectid":35,"scalerank":6,"featurecla":"Timezone","name":"+12","map_color6":6,"map_color8":2,"note":null,"zone":12,"utc_format":"UTC+12:00","time_zone":"UTC+12:00","iso_8601":"2012-05-31T16:33:50+12:00","places":"McMurdo Station, Scott Base, Zucchelli Station","dst_places":"McMurdo Station, Scott Base, Zucchelli Station","tz_name1st":"Antarctica/South_Pole","tz_namesum":1,"cartodb_id":111,"created_at":"2014-10-19T10:00:54Z","updated_at":"2014-10-19T10:00:54Z"},"arcs":[[686,-2910,2876,-2911,2874,-2912,2588,2595]]},{"type":"Polygon","properties":{"objectid":0,"scalerank":6,"featurecla":"Timezone","name":"+6","map_color6":6,"map_color8":8,"note":null,"zone":6,"utc_format":"UTC+06:00","time_zone":"UTC+06:00","iso_8601":"2012-05-30T16:33:50+06:00","places":"Vostok Station","dst_places":null,"tz_name1st":null,"tz_namesum":0,"cartodb_id":113,"created_at":"2014-10-19T10:00:54Z","updated_at":"2014-10-19T10:00:54Z"},"arcs":[[2898]]},{"type":"Polygon","properties":{"objectid":0,"scalerank":6,"featurecla":"Timezone","name":"+7","map_color6":5,"map_color8":1,"note":null,"zone":7,"utc_format":"UTC+07:00","time_zone":"UTC+07:00","iso_8601":"2012-05-30T16:33:50+07:00","places":"Davis Station","dst_places":null,"tz_name1st":null,"tz_namesum":0,"cartodb_id":114,"created_at":"2014-10-19T10:00:54Z","updated_at":"2014-10-19T10:00:54Z"},"arcs":[[2893,2812]]},{"type":"Polygon","properties":{"objectid":0,"scalerank":6,"featurecla":"Timezone","name":"+1","map_color6":5,"map_color8":2,"note":null,"zone":6,"utc_format":"UTC+01:00","time_zone":"UTC+01:00","iso_8601":"ccccc","places":"Neumayer Station","dst_places":null,"tz_name1st":null,"tz_namesum":0,"cartodb_id":115,"created_at":"2014-10-19T10:00:54Z","updated_at":"2014-10-19T10:00:54Z"},"arcs":[[2867,2899,822]]},{"type":"Polygon","properties":{"objectid":0,"scalerank":6,"featurecla":"Timezone","name":"+12","map_color6":6,"map_color8":2,"note":"Reflects 2012 shift in daylight savings time in Russia.","zone":12,"utc_format":"UTC-12:00","time_zone":"UTC-12:00","iso_8601":"2012-05-30T16:33:50+12:00","places":"Russia (Kamchatka Krai)","dst_places":null,"tz_name1st":"Asia/Kamchatka","tz_namesum":3,"cartodb_id":120,"created_at":"2014-10-19T10:00:54Z","updated_at":"2014-10-19T10:00:54Z"},"arcs":[[2702,-2913,788,-2914,786,-2915,-2916,-2917,782,-2918,-2919,2665,-2920,2663,-2921,2621,-2922,2619,-2923]]}]}},"arcs":[[[604,621],[0,13],[-1,0],[0,2],[-1,1],[0,1],[1,0],[0,1],[-1,1],[-1,0],[0,4],[-1,2],[0,1],[-1,1],[0,2],[-1,2],[0,1],[-1,0],[0,2],[-1,0],[0,-1],[-1,0],[0,2],[1,3],[0,3],[4,0],[1,1],[0,2],[1,0],[0,1],[2,0],[0,2],[1,1],[-1,1],[0,2],[-1,0],[0,1],[-1,1],[1,1],[1,0],[1,1],[1,0],[1,1],[1,0],[0,1],[1,0],[-1,1],[0,2],[-1,2],[0,2],[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,1],[0,10],[1,0],[0,1],[1,0],[1,1],[0,2],[1,0],[0,1],[2,0],[0,-1],[1,0],[1,1],[0,-2],[1,0],[0,1],[1,0]],[[602,621],[2,0]],[[602,621],[0,0]],[[602,622],[0,-1]],[[601,622],[1,0]],[[601,622],[0,0]],[[587,622],[14,0]],[[587,623],[0,-1]],[[569,622],[17,0],[1,1]],[[569,621],[0,1]],[[569,620],[0,1]],[[569,618],[0,2]],[[569,617],[0,1]],[[569,615],[0,2]],[[569,615],[0,0]],[[569,613],[0,2]],[[569,612],[0,1]],[[569,612],[0,0]],[[569,611],[0,1]],[[569,611],[0,0]],[[566,610],[3,0],[0,1]],[[566,608],[0,2]],[[566,608],[0,0]],[[576,528],[-1,0],[0,4],[-1,0],[0,1],[-1,0],[0,2],[-1,0],[0,1],[1,0],[0,1],[-1,0],[0,2],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[1,0],[0,1],[-1,0],[0,1],[-1,1],[-1,0],[0,1],[-1,0],[1,1],[0,1],[-2,0],[0,8],[-1,1],[0,1],[-1,1],[0,4],[-1,0],[0,7],[-2,0],[0,2],[1,0],[0,5],[1,0],[0,5],[1,0],[0,4],[1,1],[2,0],[0,21]],[[576,528],[0,0]],[[604,114],[0,124],[-1,0],[0,2],[1,1],[0,160],[3,3],[1,0],[0,1],[1,0],[1,2],[0,1],[1,0],[0,3],[2,2],[0,18],[-1,2],[0,4],[1,1],[0,3],[-1,1],[0,-1],[-1,0],[0,-2],[-2,0],[0,-1],[-2,0],[0,-1],[-1,-1],[0,1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,-1],[0,1],[-3,0],[0,1],[-1,0],[0,-1],[-2,0],[0,1],[-1,0],[0,2],[-1,0],[1,1],[0,2],[-1,0],[0,5],[-3,0],[0,1],[-1,0],[-1,1],[0,1],[-2,0],[0,1],[-1,0],[0,2],[-2,0],[0,4],[-1,1],[0,3],[-1,0],[0,2],[-1,0],[0,2],[-1,0],[0,3],[1,0],[0,1],[-1,2],[0,5],[1,0],[1,1],[0,2],[1,0],[0,2],[1,1],[0,2],[-1,0],[0,3],[1,0],[0,6],[-1,0],[0,1],[-1,0],[0,-2],[-1,0],[0,11],[1,0],[0,4],[1,0],[0,1],[1,1],[0,1],[1,0],[0,3],[-1,1],[0,7],[-1,0],[0,1],[-1,0],[0,2],[-1,1],[0,1],[-1,0],[0,-1],[-2,0],[-1,-1],[0,1],[-1,0],[0,2],[-1,0],[0,2]],[[645,134],[-3,0],[-1,-1],[-2,0],[0,-1],[-1,0],[0,-1],[-1,-1],[-5,0],[0,-4],[-1,1],[-4,0],[0,-1],[-1,0],[0,-1],[-2,0],[-1,-1],[-1,0],[0,-1],[-4,0],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-2,0],[0,-1],[-2,0],[-2,-2],[0,-3],[-1,0],[0,-1],[-1,1],[-2,0]],[[645,239],[0,-105]],[[645,250],[-10,0],[0,-11],[10,0]],[[645,650],[0,-13],[-1,0],[0,-1],[-1,0],[0,-5],[1,0],[0,-2],[1,0],[0,-2],[1,0],[1,-1],[3,0],[1,-1],[1,0],[1,1],[0,-3],[1,-1],[0,-3],[-1,0],[0,-6],[-1,0],[0,-3],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-3],[1,-1],[0,-3],[1,-1],[0,-4],[1,0],[0,-2],[-2,-2],[0,-14],[10,0],[0,-17],[-10,0],[0,-103],[-21,0],[0,-13],[1,-2],[1,-1],[2,0],[1,1],[3,0],[1,-1],[2,0],[1,2],[1,1],[0,-1],[1,-2],[1,-1],[6,0],[0,-188]],[[645,650],[0,0]],[[645,650],[0,0]],[[624,706],[0,-4],[1,0],[0,-3],[1,0],[0,-1],[1,0],[0,-2],[1,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-7],[1,0],[0,-2],[1,0],[0,-1],[-1,0],[0,-1],[2,0],[0,-1],[1,-1],[1,0],[0,-2],[1,0],[0,-6],[1,0],[0,-4],[1,0],[0,-3],[1,0],[1,1],[1,-1],[1,0],[1,-1],[0,-1],[-1,-1],[2,-2],[0,-1],[1,-1],[0,-3],[1,-2],[2,0],[0,-1],[1,0],[0,-2]],[[742,772],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[0,1],[-2,0],[0,1],[-1,0],[0,2],[-2,0],[0,3],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[0,-1],[-4,0],[1,1],[-2,0],[0,1],[1,0],[0,1],[-2,0],[0,-2],[-1,0],[0,-1],[-1,0],[0,3],[-1,1],[0,1],[-1,1],[0,1],[-1,1],[0,2],[-1,1],[0,1],[-1,1],[0,1],[-1,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,1],[2,0],[0,2],[-1,0],[0,-1],[-1,0],[0,-1],[-2,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-3,0],[0,-1],[-1,0],[0,3],[1,-1],[0,1],[-2,0],[0,1],[-1,0],[0,-1],[-1,0],[0,2],[-1,0],[0,-1],[-2,0],[0,4],[-1,0],[0,2],[-1,0],[0,1],[1,1],[-1,0],[0,2],[1,0],[0,3],[1,0],[0,1],[1,0],[0,2],[-1,1],[0,1],[-1,0],[0,-1],[-1,0],[0,1],[1,1],[-1,0],[0,2],[1,2],[0,1],[1,0],[0,-2],[4,0],[0,-1],[1,0],[0,1],[3,0],[1,1],[1,0],[0,1],[2,2],[0,1],[1,0],[-1,1],[1,0],[0,1],[1,1],[1,0],[0,2],[1,1],[0,1],[-1,0],[0,1],[1,0],[0,2],[7,0],[0,-1],[2,0],[1,1],[1,0],[0,-1],[3,0],[0,-1],[1,0],[0,2],[1,0],[1,1],[2,0],[0,-1],[1,0]],[[742,772],[0,0]],[[742,772],[0,0]],[[742,772],[0,0]],[[742,772],[0,0]],[[743,772],[-1,0]],[[743,770],[0,2]],[[744,770],[-1,0]],[[744,769],[0,1]],[[744,769],[0,0]],[[744,769],[0,0]],[[744,769],[0,0]],[[745,768],[0,1],[-1,0]],[[745,768],[0,0]],[[745,767],[0,1]],[[746,767],[-1,0]],[[746,766],[0,1]],[[746,767],[0,-1]],[[747,766],[-1,0],[0,1]],[[747,766],[0,0]],[[748,766],[-1,0]],[[748,766],[0,0]],[[749,765],[-1,0],[0,1]],[[749,765],[0,0]],[[751,760],[0,3],[-1,0],[0,1],[-1,1]],[[751,760],[0,0]],[[752,750],[0,1],[-1,0],[0,2],[1,2],[0,5],[-1,0]],[[752,750],[0,0]],[[753,750],[-1,0]],[[753,750],[0,0]],[[754,750],[-1,0]],[[754,750],[0,0]],[[754,750],[0,0]],[[754,750],[0,0]],[[755,750],[-1,0]],[[755,749],[0,1]],[[756,749],[-1,0]],[[756,749],[0,0]],[[756,749],[0,0]],[[756,749],[0,0]],[[756,749],[0,0]],[[757,749],[-1,0]],[[757,749],[0,0]],[[757,749],[0,0]],[[758,749],[-1,0]],[[758,749],[0,0]],[[759,758],[0,-4],[-1,0],[0,-5]],[[759,758],[0,0]],[[761,770],[-1,0],[-1,-1],[0,-2],[-1,0],[0,-2],[1,-1],[0,-1],[2,-2],[0,-2],[-1,0],[0,-1],[-1,0]],[[762,770],[-1,0]],[[762,770],[0,0]],[[762,770],[0,0]],[[763,777],[1,0],[0,-2],[1,-1],[0,-3],[-1,0],[0,-1],[-2,0]],[[762,777],[1,0]],[[762,777],[0,0]],[[758,780],[3,0],[0,-2],[1,0],[0,-1]],[[758,780],[0,0]],[[757,781],[1,0],[0,-1]],[[757,781],[0,0]],[[756,782],[0,-1],[1,0]],[[755,781],[1,0],[0,1]],[[754,781],[1,0]],[[753,780],[1,0],[0,1]],[[753,780],[0,0]],[[751,778],[0,1],[1,0],[1,1]],[[751,778],[0,0]],[[748,776],[0,1],[1,0],[1,1],[1,0]],[[748,778],[0,-2]],[[748,778],[0,0]],[[748,780],[0,-1],[-1,0],[0,-1],[1,0]],[[748,779],[0,1]],[[748,780],[1,0],[0,-1],[-1,0]],[[746,786],[0,-2],[1,0],[0,-2],[1,0],[0,-2]],[[745,784],[0,1],[1,0],[0,1]],[[744,785],[1,-1]],[[744,785],[0,0]],[[744,787],[0,-1],[-1,0],[0,-1],[1,0]],[[744,787],[0,0]],[[743,787],[1,0]],[[743,787],[0,0]],[[744,789],[0,-1],[-1,-1]],[[744,788],[0,1]],[[745,789],[-1,0],[0,-1]],[[747,793],[0,-2],[-1,0],[0,-2],[-1,0]],[[747,793],[0,0]],[[746,793],[1,0]],[[746,796],[0,-1],[1,0],[0,-1],[-1,0],[0,-1]],[[746,796],[0,0]],[[746,797],[0,-1]],[[747,798],[0,-1],[-1,0]],[[747,798],[0,0]],[[747,799],[0,-1]],[[747,801],[0,-1],[-1,0],[0,-1],[1,0]],[[747,801],[0,0]],[[746,801],[1,0]],[[745,801],[1,0]],[[746,803],[-1,0],[0,-2]],[[746,804],[0,-1]],[[746,804],[0,0]],[[745,805],[1,0],[0,-1]],[[747,809],[-1,-1],[0,-1],[-1,0],[0,-2]],[[747,811],[0,-1],[1,0],[0,-1],[-1,0]],[[746,816],[-1,-1],[0,-2],[1,0],[0,-1],[1,0],[0,-1]],[[745,816],[1,0]],[[747,819],[-1,0],[0,-2],[-1,0],[0,-1]],[[747,819],[0,0]],[[747,819],[0,0]],[[744,829],[1,0],[0,-1],[1,-1],[-2,-2],[0,-1],[-1,0],[1,-1],[0,-1],[2,0],[0,-1],[2,0],[-1,-1],[1,0],[0,-1],[-1,0]],[[744,828],[0,1]],[[738,832],[3,0],[0,-1],[1,0],[1,-2],[0,-1],[1,0]],[[737,832],[1,0]],[[733,837],[1,0],[1,-2],[0,-1],[-1,0],[0,-2],[3,0]],[[354,999],[41,0],[0,-35]],[[334,956],[3,0],[0,1],[8,0],[1,1],[8,0],[0,41]],[[310,946],[1,0],[2,2],[3,0],[1,1],[1,0],[1,1],[1,0],[1,1],[1,0],[1,1],[1,0],[1,1],[1,0],[1,1],[1,0],[1,1],[3,0],[1,1],[1,0]],[[309,945],[1,1]],[[309,944],[0,1]],[[354,765],[0,93],[-1,0],[0,3],[-1,0],[0,1],[-1,0],[0,1],[-1,1],[0,2],[-1,0],[0,3],[1,0],[0,1],[-1,0],[0,1],[-1,0],[0,2],[1,1],[0,3],[1,0],[0,3],[1,1],[0,2],[-3,0],[0,1],[-1,1],[-1,0],[0,1],[-1,0],[0,1],[1,1],[0,1],[-1,1],[0,1],[2,2],[1,0],[0,1],[-1,0],[-1,1],[-2,0],[0,1],[-1,0],[0,6],[-1,0],[0,2],[1,0],[0,3],[-1,0],[0,1],[-1,0],[-1,1],[0,1],[-2,0],[0,1],[1,1],[-1,0],[0,2],[1,0],[0,1],[-3,0],[0,2],[-2,0],[0,1],[1,0],[-1,1],[-2,0],[-1,1],[-2,0],[0,1],[-6,0],[0,1],[-2,4],[-1,3],[-5,10],[0,1],[1,1],[0,1],[-1,1],[-5,0],[0,1],[-1,0]],[[354,761],[0,4]],[[341,533],[0,1],[2,0],[1,-1],[0,1],[4,0],[1,-1],[1,0],[2,-2],[1,0],[1,-1],[0,231]],[[341,533],[0,0]],[[340,529],[1,0],[0,4]],[[340,529],[0,0]],[[340,529],[0,0]],[[341,529],[-1,0]],[[341,528],[0,1]],[[341,529],[0,-1]],[[341,528],[0,1]],[[341,528],[0,0]],[[341,527],[-1,1],[1,0]],[[340,527],[1,0]],[[340,527],[0,0]],[[340,527],[0,0]],[[340,527],[0,0]],[[340,527],[0,0]],[[339,527],[1,0]],[[339,527],[0,0]],[[340,518],[-1,0],[0,3],[-1,1],[0,1],[1,0],[0,4]],[[340,518],[0,0]],[[340,518],[0,0]],[[340,518],[0,0]],[[340,518],[0,0]],[[340,518],[0,0]],[[341,517],[0,1],[-1,0]],[[341,517],[0,0]],[[341,516],[0,1]],[[341,516],[0,0]],[[341,515],[0,1]],[[341,515],[0,0]],[[341,515],[0,0]],[[341,515],[0,0]],[[341,514],[0,1]],[[341,514],[0,0]],[[341,513],[0,1]],[[341,513],[0,0]],[[343,510],[0,1],[-1,0],[0,2],[-1,0]],[[342,510],[1,0]],[[342,510],[0,0]],[[342,510],[0,0]],[[342,510],[0,0]],[[341,510],[1,0]],[[341,510],[0,0]],[[341,511],[0,-1]],[[341,510],[0,1]],[[340,510],[1,0]],[[340,509],[0,1]],[[339,509],[1,0]],[[339,509],[0,0]],[[339,509],[0,0]],[[338,508],[1,0],[0,1]],[[338,508],[0,0]],[[338,508],[0,0]],[[338,508],[0,0]],[[337,507],[0,1],[1,0]],[[337,507],[0,0]],[[337,507],[0,0]],[[337,507],[0,0]],[[336,506],[1,1]],[[336,507],[0,-1]],[[337,495],[0,1],[-1,0],[0,11]],[[337,495],[0,0]],[[338,493],[-1,1],[0,1]],[[338,493],[0,0]],[[338,493],[0,0]],[[338,493],[0,0]],[[340,490],[-1,1],[0,1],[-1,0],[0,1]],[[341,490],[-1,0]],[[341,490],[0,0]],[[341,490],[0,0]],[[342,488],[0,1],[-1,0],[0,1]],[[342,488],[0,0]],[[342,487],[0,1]],[[343,488],[0,-1],[-1,0]],[[343,487],[0,1]],[[343,487],[0,0]],[[341,448],[0,2],[-1,0],[0,2],[-1,0],[0,6],[-1,0],[0,3],[-1,0],[0,2],[1,0],[0,3],[1,2],[0,2],[1,3],[0,2],[1,2],[0,3],[1,2],[0,2],[1,2],[0,1]],[[341,448],[0,0]],[[342,447],[0,1],[-1,0]],[[342,447],[0,0]],[[343,447],[-1,0]],[[343,447],[0,0]],[[359,430],[0,12],[1,0],[0,3],[-5,0],[-2,1],[-6,0],[-2,1],[-2,0]],[[359,430],[0,0]],[[359,428],[0,2]],[[359,428],[0,0]],[[359,428],[0,0]],[[359,428],[0,0]],[[358,421],[0,3],[1,0],[0,4]],[[358,421],[0,0]],[[357,416],[1,0],[0,5]],[[357,416],[0,0]],[[356,413],[0,3],[1,0]],[[356,413],[0,0]],[[355,412],[1,0],[0,1]],[[355,412],[0,0]],[[352,397],[0,9],[1,0],[0,3],[1,0],[0,2],[1,0],[0,1]],[[353,398],[0,-1],[-1,0]],[[353,396],[0,2]],[[353,396],[0,0]],[[353,396],[0,0]],[[354,396],[-1,0]],[[354,395],[0,1]],[[354,395],[0,0]],[[356,393],[0,1],[-1,0],[0,1],[-1,0]],[[356,393],[0,0]],[[357,392],[0,1],[-1,0]],[[358,392],[-1,0]],[[355,380],[0,1],[1,0],[0,4],[1,0],[0,2],[1,0],[0,5]],[[355,380],[0,0]],[[353,375],[0,1],[1,0],[0,2],[1,0],[0,2]],[[353,375],[0,0]],[[348,357],[0,4],[1,1],[0,6],[1,0],[0,2],[1,1],[0,2],[1,1],[0,1],[1,0]],[[348,357],[0,0]],[[347,352],[1,0],[0,5]],[[347,352],[0,0]],[[346,350],[1,0],[0,2]],[[346,350],[0,0]],[[346,349],[0,1]],[[345,349],[1,0]],[[345,347],[0,2]],[[344,348],[0,-1],[1,0]],[[344,348],[0,0]],[[344,348],[0,0]],[[343,346],[0,2],[1,0]],[[342,347],[1,0],[0,-1]],[[342,347],[0,0]],[[342,347],[0,0]],[[341,347],[1,0]],[[340,347],[1,0]],[[340,347],[0,0]],[[338,348],[1,0],[1,-1]],[[338,348],[0,0]],[[338,348],[0,0]],[[337,348],[1,0]],[[337,349],[0,-1]],[[337,349],[0,0]],[[338,351],[0,-1],[-1,0],[0,-1]],[[338,351],[0,0]],[[338,351],[0,0]],[[338,351],[0,0]],[[338,352],[0,-1]],[[338,352],[0,0]],[[338,354],[0,-2]],[[338,354],[0,0]],[[339,357],[0,-2],[-1,0],[0,-1]],[[339,357],[0,0]],[[339,357],[0,0]],[[340,357],[-1,0]],[[339,361],[0,-2],[1,0],[0,-2]],[[338,361],[1,0]],[[338,361],[0,0]],[[338,361],[0,0]],[[338,361],[0,0]],[[338,361],[0,0]],[[333,366],[1,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0]],[[332,366],[1,0]],[[332,366],[0,0]],[[332,366],[0,0]],[[332,366],[0,0]],[[332,366],[0,0]],[[331,367],[1,0],[0,-1]],[[331,367],[0,0]],[[331,367],[0,0]],[[331,367],[0,0]],[[330,367],[1,0]],[[330,367],[0,0]],[[330,369],[0,-2]],[[330,369],[0,0]],[[328,370],[1,0],[0,-1],[1,0]],[[328,370],[0,0]],[[327,374],[0,-2],[1,0],[0,-2]],[[327,374],[0,0]],[[327,375],[0,-1]],[[327,375],[0,0]],[[326,376],[0,-1],[1,0]],[[326,376],[0,0]],[[325,377],[0,-1],[1,0]],[[325,377],[0,0]],[[323,377],[2,0]],[[323,377],[0,0]],[[322,377],[1,0]],[[321,373],[0,2],[1,1],[0,1]],[[320,376],[0,-1],[1,0],[0,-2]],[[320,376],[0,0]],[[319,377],[1,0],[0,-1]],[[318,377],[1,0]],[[318,377],[0,0]],[[317,377],[1,0]],[[316,379],[0,-1],[1,0],[0,-1]],[[315,377],[1,0],[0,2]],[[315,377],[0,0]],[[315,376],[0,1]],[[314,376],[1,0]],[[314,374],[0,2]],[[314,374],[0,0]],[[310,364],[2,2],[1,0],[0,5],[1,1],[-1,1],[0,1],[1,0]],[[310,364],[0,0]],[[310,363],[0,1]],[[309,363],[1,0]],[[310,360],[0,1],[-1,0],[0,2]],[[310,360],[0,0]],[[310,349],[0,1],[-1,2],[0,2],[1,0],[0,1],[-1,1],[0,4],[1,0]],[[310,349],[0,0]],[[309,349],[1,0]],[[309,349],[0,0]],[[307,343],[0,1],[1,1],[0,4],[1,0]],[[307,343],[0,0]],[[305,332],[0,6],[1,0],[0,4],[1,1]],[[305,333],[0,-1]],[[305,331],[1,0],[0,1],[-1,1]],[[305,331],[0,0]],[[304,327],[0,2],[1,1],[0,1]],[[304,327],[0,0]],[[304,327],[0,0]],[[304,327],[0,0]],[[304,323],[0,4]],[[304,323],[0,0]],[[304,322],[0,1]],[[304,322],[0,0]],[[305,315],[0,5],[-1,0],[0,2]],[[306,315],[-1,0]],[[306,311],[0,4]],[[306,311],[0,0]],[[305,309],[1,0],[0,2]],[[305,309],[0,0]],[[304,300],[0,7],[1,0],[0,2]],[[304,300],[0,0]],[[304,299],[0,1]],[[304,299],[0,0]],[[303,297],[0,1],[1,1]],[[303,297],[0,0]],[[303,297],[0,0]],[[302,297],[1,0]],[[302,296],[0,1]],[[302,296],[0,0]],[[302,294],[0,2]],[[302,294],[0,0]],[[303,284],[0,2],[-1,1],[0,7]],[[302,284],[1,0]],[[301,280],[0,4],[1,0]],[[301,280],[0,0]],[[301,280],[0,0]],[[301,280],[0,0]],[[301,277],[0,2],[-1,0],[0,1],[1,0]],[[300,277],[1,0]],[[300,276],[0,1]],[[301,276],[-1,0]],[[300,275],[1,1]],[[300,275],[0,0]],[[300,265],[0,10]],[[300,266],[0,-1]],[[300,259],[0,1],[-1,0],[0,5],[1,0],[0,1]],[[300,259],[0,0]],[[300,258],[0,1]],[[300,258],[0,0]],[[300,258],[0,0]],[[300,258],[0,0]],[[300,257],[0,1]],[[300,257],[0,0]],[[300,253],[0,2],[1,1],[-1,0],[0,1]],[[300,253],[0,0]],[[302,251],[0,2],[-2,0]],[[301,251],[1,0]],[[301,251],[0,0]],[[300,251],[1,0]],[[300,251],[0,0]],[[300,251],[0,0]],[[300,250],[-1,0],[0,1],[1,0]],[[300,250],[0,0]],[[300,250],[0,0]],[[300,250],[0,0]],[[301,250],[-1,0]],[[301,250],[0,0]],[[301,247],[0,1],[1,0],[-1,1],[0,1]],[[301,247],[0,0]],[[300,237],[0,3],[1,0],[0,1],[-1,1],[0,2],[1,0],[0,1],[-1,0],[0,2],[1,0]],[[300,238],[0,-1]],[[299,236],[0,1],[1,0],[0,1]],[[299,236],[0,0]],[[299,231],[0,2],[-1,0],[0,1],[1,1],[0,1]],[[299,231],[0,0]],[[297,218],[-1,0],[0,3],[-1,0],[0,2],[1,0],[0,1],[-1,0],[0,1],[1,0],[0,1],[1,1],[0,1],[1,0],[0,3],[1,0]],[[298,219],[-1,-1]],[[298,218],[0,1]],[[298,219],[0,-1]],[[299,213],[-1,0],[1,1],[0,5],[-1,0]],[[299,213],[0,0]],[[309,195],[0,12],[1,2],[-1,0],[0,1],[-3,0],[0,1],[-6,0],[0,1],[-1,0],[0,1]],[[310,195],[-1,0]],[[312,202],[1,0],[0,-1],[4,-4],[6,0],[0,-3],[-5,0],[0,-1],[-2,0],[-1,1],[-1,0],[-1,1],[-3,0]],[[312,222],[0,-1],[-1,0],[-1,-1],[-1,0],[0,-2],[-1,-1],[1,-1],[0,-3],[1,-1],[0,-2],[1,0],[0,-1],[-1,-1],[0,-1],[1,-1],[0,-2],[1,-1],[0,-1]],[[354,72],[0,242],[-2,-2],[0,-2],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[-2,-2],[-1,1],[-2,0],[0,-1],[-2,2],[-1,0],[0,1],[-1,0],[1,-2],[0,-1],[1,0],[0,-2],[-1,-1],[0,-2],[2,0],[0,-5],[-1,-1],[0,-2],[-1,-2],[0,-1],[-4,-4],[-1,0],[-1,-1],[-2,0],[-1,-1],[-3,0],[-1,-1],[0,-3],[-1,-1],[0,-2],[1,0],[0,-2],[-3,-3],[-3,0],[0,1],[-1,0],[-1,1],[-1,-1],[1,0],[0,-5],[1,0],[1,1],[1,0],[0,-1],[1,-1],[0,-4],[-1,0],[-2,-2],[-1,0],[0,-1],[-1,-1],[0,-6],[-1,0],[0,-2],[-1,-1],[-2,0],[0,-1],[-1,1],[0,-2],[-1,0],[0,-4],[3,-3],[1,0],[1,-1],[0,-6],[-1,0],[-1,-1],[0,-1],[-1,0],[-1,-1],[0,-1],[-1,0],[0,-3],[-1,-2],[0,-1]],[[354,72],[0,0]],[[395,66],[-8,0],[-1,1],[-1,0],[-1,-1],[-4,0],[-1,1],[-2,0],[0,1],[-2,0],[-1,1],[-14,0],[-2,1],[-1,0],[-2,2],[-1,0]],[[395,84],[0,-18]],[[395,195],[0,-111]],[[375,195],[20,0]],[[375,210],[0,-15]],[[395,210],[-20,0]],[[395,431],[0,-221]],[[395,475],[1,0],[0,-1],[1,-1],[1,0],[0,-1],[1,0],[1,1],[1,-1],[1,0],[0,-4],[1,-1],[0,-6],[1,-2],[0,-2],[-1,-1],[0,-6],[-1,-1],[0,-1],[-1,-2],[0,-1],[-1,-2],[-1,-1],[0,-2],[-1,-1],[-1,0],[0,-3],[-1,0],[0,-3],[-1,-2]],[[395,861],[0,-386]],[[437,886],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[-3,0],[-1,-1],[-3,0],[-1,-1],[-2,0],[-1,-1],[-4,0],[0,-1],[-2,0],[-1,-1],[0,-2],[-1,0],[0,-1],[-1,0],[0,-1],[-2,-2],[0,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[0,-1],[-3,0],[0,-1]],[[439,889],[1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,-1]],[[431,891],[1,0],[1,-1],[4,0],[1,-1],[1,0]],[[438,899],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[-1,1],[0,-5],[-1,-3],[0,-3]],[[440,901],[-2,-2]],[[449,920],[-1,0],[0,-1],[4,0],[0,-1],[1,-1],[1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-2,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[0,-3],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1]],[[436,921],[6,0],[1,-1],[6,0]],[[451,941],[-15,0],[0,-20]],[[451,941],[0,0]],[[437,960],[4,0],[1,-1],[2,0],[0,-1],[1,0],[-1,-1],[-2,0],[0,-1],[8,0],[0,-1],[1,0],[0,-1],[1,0],[1,1],[10,0],[0,-1],[5,0],[1,-1],[1,0],[1,-1],[1,0],[0,-1],[-2,0],[0,-1],[-2,0],[0,-1],[-2,0],[-1,-1],[-2,0],[0,-1],[-3,0],[-1,-1],[0,-1],[-2,0],[0,-1],[-2,0],[0,-1],[-1,0],[-1,-1],[0,-1],[-2,0]],[[437,960],[0,0]],[[395,964],[6,0],[0,1],[15,0],[1,-1],[8,0],[1,-1],[6,0],[0,-1],[2,0],[0,-1],[2,0],[0,-1],[1,0]],[[337,153],[0,3],[1,0],[0,-3],[-1,0]],[[937,971],[0,-46]],[[895,999],[42,0],[0,-28]],[[853,943],[42,0],[0,56]],[[807,908],[0,1],[1,0],[1,1],[0,1],[-1,1],[1,1],[1,0],[1,1],[1,0],[1,1],[3,0],[1,1],[0,16],[17,0],[2,2],[2,1],[1,0],[1,1],[2,1],[1,1],[1,0],[2,1],[2,2],[1,0],[2,1],[1,1],[1,0]],[[807,908],[0,0]],[[807,902],[0,1],[-1,0],[0,1],[1,0],[0,2],[-1,0],[0,1],[1,0],[0,1]],[[807,902],[0,0]],[[809,901],[-1,0],[0,1],[-1,0]],[[809,901],[0,0]],[[812,895],[-1,0],[-1,1],[0,4],[-1,0],[0,1]],[[812,895],[0,0]],[[812,894],[0,1]],[[811,894],[1,0]],[[811,894],[0,0]],[[811,894],[0,0]],[[807,892],[0,1],[3,0],[0,1],[1,0]],[[807,893],[0,-1]],[[807,892],[0,1]],[[806,892],[1,0]],[[805,891],[0,1],[1,0]],[[805,891],[0,0]],[[805,890],[1,0],[-1,1]],[[805,890],[0,0]],[[804,890],[1,0]],[[804,890],[0,0]],[[802,887],[1,0],[0,2],[1,1]],[[802,887],[0,0]],[[801,887],[1,0]],[[800,887],[1,0]],[[799,886],[0,1],[1,0]],[[799,886],[0,0]],[[795,885],[1,0],[1,1],[2,0]],[[795,886],[0,-1]],[[795,873],[1,0],[0,9],[-2,2],[0,1],[1,0],[0,1]],[[795,873],[0,0]],[[793,871],[-1,0],[1,1],[1,0],[1,1]],[[793,871],[0,0]],[[794,870],[0,1],[-1,0]],[[794,870],[0,0]],[[794,867],[0,1],[1,0],[0,1],[-1,0],[0,1]],[[795,867],[-1,0]],[[796,862],[0,2],[-1,0],[0,3]],[[796,862],[0,0]],[[796,862],[0,0]],[[795,862],[1,0]],[[795,861],[0,1]],[[795,861],[0,0]],[[794,859],[0,2],[1,0]],[[794,860],[0,-1]],[[794,859],[0,1]],[[793,859],[1,0]],[[793,858],[0,1]],[[793,858],[0,0]],[[793,857],[0,1]],[[793,857],[0,0]],[[793,857],[0,0]],[[794,858],[0,-1],[-1,0]],[[794,857],[0,1]],[[795,858],[0,-1],[-1,0]],[[796,857],[-1,1]],[[796,857],[0,0]],[[797,856],[0,1],[-1,0]],[[798,856],[-1,0]],[[799,856],[-1,0]],[[800,856],[-1,0]],[[800,856],[0,0]],[[798,777],[1,0],[0,2],[1,0],[0,1],[1,-1],[0,1],[-1,0],[0,3],[1,0],[-1,1],[1,1],[3,0],[0,1],[2,0],[0,-1],[1,0],[0,2],[2,0],[0,1],[1,0],[0,2],[1,0],[0,-1],[1,0],[0,1],[1,0],[0,1],[2,0],[1,1],[0,1],[1,0],[0,1],[-1,0],[0,4],[1,0],[0,1],[2,0],[0,2],[1,0],[0,1],[3,0],[0,1],[1,0],[0,3],[-1,0],[0,1],[-2,0],[0,7],[-1,0],[0,2],[1,0],[0,-1],[2,0],[0,-1],[1,0],[0,1],[2,0],[0,2],[-1,0],[0,3],[-1,0],[1,1],[0,1],[1,0],[0,2],[1,0],[1,-1],[2,0],[0,1],[-1,0],[0,5],[-1,1],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[0,3],[-1,0],[0,1],[-1,0],[-1,1],[-3,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-2],[-2,0],[0,-2],[-1,0],[0,-1],[-2,0],[0,1],[-2,0],[0,-1],[-4,0],[0,-1],[-2,0],[0,1],[-1,0],[0,3],[1,1],[0,3],[1,0],[0,2],[1,0],[0,2],[-1,0],[0,1],[-1,0],[0,4],[1,0],[0,1],[-1,1],[-1,0],[0,2],[1,0],[-1,1],[0,3],[-3,0],[0,2],[1,0],[0,2],[-1,0]],[[799,777],[-1,0]],[[799,777],[0,0]],[[799,775],[0,2]],[[799,775],[0,0]],[[801,773],[-2,2]],[[801,773],[0,0]],[[802,773],[-1,0]],[[802,773],[0,0]],[[802,773],[0,0]],[[802,773],[0,0]],[[803,773],[-1,0]],[[803,773],[0,0]],[[803,773],[0,0]],[[804,773],[-1,0]],[[805,772],[0,1],[-1,0]],[[806,773],[-1,-1]],[[807,772],[-1,0],[0,1]],[[809,773],[-2,0],[0,-1]],[[809,773],[0,0]],[[812,774],[-3,0],[0,-1]],[[812,774],[0,0]],[[815,777],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,0]],[[815,777],[0,0]],[[817,779],[-2,-2]],[[817,778],[0,1]],[[818,778],[-1,0]],[[820,776],[-1,1],[0,1],[-1,0]],[[820,776],[0,0]],[[820,776],[0,0]],[[820,776],[0,0]],[[821,776],[-1,0]],[[822,777],[-1,-1]],[[826,774],[-1,1],[-1,0],[-1,1],[0,1],[-1,0]],[[826,774],[0,0]],[[826,774],[0,0]],[[828,775],[-1,0],[0,-1],[-1,0]],[[828,775],[0,0]],[[829,777],[-1,-1],[0,-1]],[[829,777],[0,0]],[[830,777],[-1,0]],[[830,777],[0,0]],[[831,779],[0,-2],[-1,0]],[[830,779],[1,0]],[[830,779],[0,0]],[[830,779],[0,0]],[[830,779],[0,0]],[[830,779],[0,0]],[[832,784],[0,-1],[-1,-1],[0,-2],[-1,0],[0,-1]],[[832,784],[0,0]],[[833,786],[-1,-1],[0,-1]],[[833,786],[0,0]],[[834,787],[-1,0],[0,-1]],[[834,787],[0,0]],[[834,788],[0,-1]],[[834,788],[0,0]],[[834,792],[0,-2],[1,0],[0,-2],[-1,0]],[[833,791],[1,1]],[[835,795],[-1,0],[0,-2],[-1,0],[0,-2]],[[836,795],[-1,0]],[[836,795],[0,0]],[[836,795],[0,0]],[[838,796],[-1,0],[0,-1],[-1,0]],[[838,796],[0,0]],[[839,796],[-1,0]],[[839,796],[0,0]],[[842,797],[-1,0],[0,-1],[-2,0]],[[842,797],[0,0]],[[842,797],[0,0]],[[842,797],[0,0]],[[843,797],[-1,0]],[[844,796],[-1,0],[0,1]],[[844,796],[0,0]],[[846,794],[0,1],[-2,0],[0,1]],[[846,795],[0,-1]],[[846,794],[0,1]],[[847,795],[-1,0],[0,-1]],[[848,794],[-1,1]],[[848,794],[0,0]],[[848,793],[0,1]],[[849,793],[-1,0]],[[849,792],[0,1]],[[849,792],[0,0]],[[849,791],[0,1]],[[849,791],[0,0]],[[850,791],[-1,0]],[[850,791],[0,0]],[[852,784],[-1,0],[1,1],[-1,0],[0,2],[-1,1],[1,0],[0,1],[-1,0],[0,2]],[[852,784],[0,0]],[[854,775],[0,1],[-1,0],[0,1],[1,1],[-1,1],[0,2],[-1,1],[0,2]],[[855,775],[-1,0]],[[855,774],[0,1]],[[855,775],[0,-1]],[[856,774],[-1,1]],[[856,775],[0,-1]],[[856,775],[0,0]],[[857,775],[-1,0]],[[857,774],[0,1]],[[857,774],[0,0]],[[858,773],[0,1],[-1,0]],[[858,774],[0,-1]],[[858,773],[0,1]],[[859,774],[-1,-1]],[[859,773],[0,1]],[[859,773],[0,0]],[[861,771],[-1,0],[0,2],[-1,0]],[[861,771],[0,0]],[[862,771],[-1,0]],[[862,771],[0,0]],[[867,826],[0,-2],[-1,0],[0,-2],[-1,0],[0,-2],[1,0],[0,-1],[-1,0],[0,-2],[-1,0],[0,-1],[1,0],[0,-3],[-2,0],[0,-5],[3,0],[0,1],[1,0],[0,-1],[1,0],[0,-2],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-3],[2,0],[0,-3],[1,0],[0,-1],[1,0],[0,1],[3,0],[0,1],[1,0],[0,1],[1,-1],[1,0],[0,1],[1,0],[0,-1],[1,0],[0,-2],[-1,0],[0,-3],[-3,0],[0,1],[-1,0],[0,-2],[1,0],[0,-1],[-3,0],[0,-2],[-2,0],[0,-1],[-1,0],[0,-2],[-1,0],[0,-1],[-1,0],[0,-2],[1,0],[0,-2],[1,0],[0,-6],[-1,0],[0,-2],[-1,0]],[[867,826],[0,0]],[[868,826],[-1,0]],[[889,863],[-1,0],[-1,-1],[0,-1],[-1,-1],[1,-1],[1,0],[0,-1],[1,0],[0,-2],[1,-1],[0,-1],[-1,0],[1,-1],[0,-1],[-2,0],[0,-1],[-1,0],[0,-3],[1,-1],[1,0],[0,-3],[-1,0],[0,-2],[-1,0],[0,-1],[-2,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-2],[1,-1],[-1,0],[0,-5],[-2,0],[0,-1],[-1,0],[0,-1],[-3,0],[0,1],[-1,0],[0,-1],[-1,0],[0,-1],[-6,0],[-1,-1],[0,-1]],[[888,865],[1,0],[0,-2]],[[887,864],[1,1]],[[886,865],[1,-1]],[[886,864],[0,1]],[[885,865],[1,-1]],[[881,862],[2,0],[0,1],[1,0],[0,1],[1,0],[0,1]],[[881,862],[0,0]],[[880,862],[1,0]],[[877,863],[1,0],[1,-1],[1,0]],[[873,860],[2,0],[0,1],[1,1],[0,1],[1,0]],[[872,861],[0,-1],[1,0]],[[870,856],[1,1],[0,4],[1,0]],[[869,856],[1,0]],[[868,856],[1,0]],[[864,875],[-1,-1],[-1,0],[-1,-2],[-1,-1],[1,-1],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[1,-1],[1,0],[0,-1],[1,-1],[1,0],[0,-1],[-1,0],[0,-1],[1,0],[1,-1],[0,-1],[1,-1],[-1,-1],[1,0],[1,-1],[0,-1]],[[865,875],[-1,0]],[[867,882],[1,0],[0,-1],[1,-1],[0,-1],[-2,-2],[-1,0],[-1,-2]],[[867,883],[0,-1]],[[868,883],[-1,0]],[[869,886],[-1,-1],[0,-2]],[[869,886],[0,0]],[[869,886],[0,0]],[[870,886],[-1,0]],[[870,887],[0,-1]],[[870,887],[0,0]],[[869,887],[1,0]],[[869,887],[0,0]],[[868,890],[1,0],[0,-2],[-1,0],[0,-1],[1,0]],[[867,890],[1,0]],[[865,905],[0,-9],[1,-2],[0,-4],[1,0]],[[907,905],[-42,0]],[[937,925],[-2,-1],[-1,-2],[-2,-2],[-1,-2],[-2,-1],[-1,-1],[-1,-2],[-6,-6],[-1,-2],[-13,0],[0,-1]],[[971,794],[7,-7]],[[970,791],[0,2],[1,1]],[[968,789],[2,2]],[[937,777],[22,0],[1,1],[1,2],[2,2],[1,2],[2,2],[1,2],[1,1]],[[937,116],[0,316],[-1,2],[0,2],[-3,6],[0,2],[-2,4],[-1,1],[0,2],[-1,2],[-1,1],[1,3],[2,4],[1,0],[1,2],[-1,0],[3,3],[1,2],[1,1],[1,2],[2,2],[4,0],[0,7],[-7,0],[0,19],[-10,0],[0,67],[10,0],[0,211]],[[961,89],[1,0],[1,1],[1,0],[1,1],[1,0],[1,1],[1,0],[0,-1],[1,-1],[3,0],[0,1],[1,0],[0,1],[-1,1],[0,1],[1,2],[1,0],[0,2],[-1,1],[1,0],[1,1],[0,2],[-1,0],[0,2],[-1,0],[0,1],[-2,0],[-1,-1],[-1,1],[-1,0],[-1,1],[0,1],[-2,0],[-1,1],[-1,0],[-1,1],[-1,0],[-1,-1],[-1,1],[-4,0],[0,1],[-5,0],[-1,1],[-1,0],[-1,-1],[0,1],[-1,0],[0,2],[-1,0],[0,1],[-1,0],[-1,1],[-2,0],[0,1],[-3,0],[0,1],[-1,-1]],[[960,89],[1,0]],[[978,69],[-6,0],[0,1],[-1,0],[-1,1],[-5,0],[0,2],[-2,0],[0,1],[-1,0],[0,-1],[-2,0],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[-2,0],[0,1],[-1,0],[0,2],[-1,0],[0,1],[-1,0],[0,2],[-1,1],[1,0],[0,1],[-1,0],[0,2],[1,1],[-1,0],[1,1],[-1,1],[-1,0],[1,1],[0,1],[3,0],[0,1],[1,1],[1,-1],[2,0],[0,1],[1,1],[-1,0],[0,1],[-1,1],[1,0],[0,1]],[[978,197],[0,-128]],[[971,197],[7,0]],[[958,197],[13,0]],[[978,781],[0,-166],[-33,0],[0,-71],[10,0],[0,-58],[23,0],[0,-168],[-3,-6],[0,-2],[-2,-4],[0,-3],[-2,-4],[0,-2],[-1,-2],[-1,-3],[-1,-2],[0,-2],[-1,-3],[-1,-2],[0,-2],[-1,-3],[-2,-4],[0,-3],[-3,-6],[0,-2],[-1,-3],[-1,-2],[0,-61]],[[978,787],[0,-6]],[[963,344],[0,-11],[7,0],[0,11],[-7,0]],[[939,327],[0,-5],[3,0],[0,5],[-3,0]],[[889,863],[2,0],[0,-1],[1,0],[0,1],[1,0],[1,-1],[0,-1],[1,1],[1,0],[0,-1],[2,0],[1,-1],[1,1],[0,-1],[3,-3],[1,0],[0,-1],[1,0],[0,-2],[-1,0],[0,-1],[-1,0],[0,-7],[-1,0],[0,-3],[1,0],[0,1],[2,0],[0,-1],[1,0],[0,-3],[1,0],[0,-2],[-1,0],[0,-2],[-2,0],[0,-2],[2,0],[0,-1],[1,0],[-1,-1],[2,0],[0,-3],[-1,0],[0,-27],[6,-12],[1,-1],[7,-14],[1,-1],[5,-10]],[[867,826],[1,0]],[[867,826],[0,0]],[[862,771],[0,0]],[[862,769],[0,2]],[[862,769],[0,0]],[[863,764],[0,1],[-1,1],[0,1],[1,0],[0,1],[-1,0],[0,1]],[[864,764],[-1,0]],[[865,764],[-1,0]],[[865,764],[0,0]],[[865,764],[0,0]],[[865,764],[0,0]],[[866,764],[-1,0]],[[866,764],[0,0]],[[866,764],[0,0]],[[867,764],[-1,0]],[[867,764],[0,0]],[[868,766],[0,-1],[-1,0],[0,-1]],[[868,766],[0,0]],[[869,767],[0,-1],[-1,0]],[[869,766],[0,1]],[[870,766],[-1,0]],[[870,766],[0,0]],[[871,767],[-1,0],[0,-1]],[[871,767],[0,0]],[[871,767],[0,0]],[[871,767],[0,0]],[[872,768],[-1,0],[0,-1]],[[873,768],[-1,0]],[[873,768],[0,0]],[[873,767],[0,1]],[[873,767],[0,0]],[[873,763],[0,4]],[[873,763],[0,0]],[[871,757],[0,2],[1,1],[0,3],[1,0]],[[871,757],[0,0]],[[871,756],[0,1]],[[871,756],[0,0]],[[870,754],[1,1],[-1,1],[1,0]],[[870,754],[0,0]],[[870,754],[0,0]],[[870,754],[0,0]],[[868,749],[1,1],[0,2],[1,0],[0,2]],[[865,751],[1,0],[1,-1],[1,0],[0,-1]],[[864,749],[1,1],[0,1]],[[864,749],[0,0]],[[863,749],[1,0]],[[863,749],[0,0]],[[863,738],[0,1],[1,0],[0,5],[-1,2],[0,3]],[[863,738],[0,0]],[[863,737],[0,1]],[[862,737],[1,0]],[[862,737],[0,0]],[[862,737],[0,0]],[[861,736],[0,1],[1,0]],[[862,736],[-1,0]],[[862,736],[0,0]],[[862,736],[0,0]],[[904,739],[0,2],[-1,0],[0,4],[1,0],[-1,1],[-1,0],[0,-1],[-1,0],[0,-1],[-2,2],[-1,0],[-2,2],[0,1],[-1,1],[0,3],[-2,0],[-1,1],[-1,0],[0,3],[2,2],[0,11],[-1,0],[1,1],[0,11],[1,1],[-1,1],[0,1],[-1,1],[-1,-1],[0,-3],[-1,-1],[0,-2],[1,-1],[0,-1],[-1,-1],[0,-5],[-1,-1],[0,-3],[-1,-1],[-1,-2],[-1,0],[0,-3],[-1,0],[0,-1],[-1,-1],[0,-2],[-1,-1],[0,-2],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-2],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,-2],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[-1,0],[0,-1],[-1,-1],[-5,0],[0,1],[-1,0],[0,-2],[-2,0],[0,-1],[-1,0],[0,2]],[[927,764],[-1,-1],[-1,-2],[-2,-1],[-1,-2],[-1,-1],[-1,-2],[-5,-5],[-1,-2],[-1,-1],[-1,-2],[-1,-1],[-2,-1],[-3,-3],[-2,-1]],[[395,475],[0,386]],[[395,210],[0,221]],[[375,195],[0,15]],[[395,84],[0,111]],[[406,72],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-2,-2],[-2,0]],[[406,72],[0,0]],[[421,77],[-3,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-2,0],[-1,-1],[-2,0],[-1,-1],[-1,0]],[[422,78],[-1,-1]],[[430,80],[-2,0],[-1,-1],[-2,0],[0,-1],[-3,0]],[[431,80],[-1,0]],[[437,81],[-2,0],[0,-1],[-4,0]],[[437,853],[0,-130],[-26,0],[0,-21],[26,0],[0,-100],[-14,0],[0,-28],[14,0],[0,-493]],[[432,862],[0,-2],[-1,0],[0,-1],[1,-1],[4,0],[0,-1],[1,0],[0,-1],[-2,0],[0,-3],[1,0],[1,-1],[0,1]],[[431,862],[1,0]],[[437,870],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-2],[-1,0],[0,-1],[-1,0],[0,-2],[1,0]],[[437,886],[0,-16]],[[474,732],[1,0],[0,1],[2,0],[0,-1],[4,0],[0,-1],[1,0],[0,-2],[-1,0],[0,-2],[-1,0],[0,-1],[1,0],[0,-3],[-1,0],[0,-3],[-1,0],[0,-3],[1,0],[0,-2],[-1,0],[0,-3],[1,0],[0,-2],[-1,0],[0,-5],[1,0],[0,-1],[1,0],[0,-2],[1,-1],[0,-2],[4,0],[-1,-1],[1,0],[0,-1],[1,-1],[2,0],[0,1],[1,-1],[1,1],[1,0],[0,-2],[1,1],[0,-2],[1,0],[0,-1],[1,-1],[-1,0],[1,-1],[-1,-1],[1,0],[0,-8],[2,-2],[-1,0],[0,-2],[-4,0],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-4],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[-3,0],[0,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-8],[1,-1],[1,0],[0,-1],[2,-2],[0,-1],[1,0],[0,-1],[5,-5],[0,-1],[1,0],[0,-1],[1,0],[0,-2],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[2,-2],[0,-1],[1,0],[0,-1],[1,-1],[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,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-3],[1,0],[0,-2],[2,0],[0,-1],[1,0],[0,-1],[1,0],[0,-5],[2,0],[1,1],[0,-18],[-1,0],[0,-2],[-1,0],[0,-1],[-3,0],[0,-1],[-3,0],[0,-1],[-1,0],[-1,-1],[0,1],[-1,0],[0,-4],[1,0],[0,-4],[1,0],[0,-3],[1,0],[0,-2],[1,0],[1,-1],[0,1],[1,0],[0,-2],[-1,0],[0,-1],[1,0],[0,-3],[-1,0],[0,-1],[-2,0],[0,-2],[-1,0],[0,-5],[1,0],[0,-5],[1,0],[0,-17],[1,0],[0,-1],[1,0],[1,1],[4,0],[1,-1],[0,-1],[1,0],[0,-3],[1,0],[0,-4],[1,-1],[0,-1],[1,0],[0,-1],[2,0],[1,1],[1,0],[0,-13],[1,0],[0,-3],[-1,0],[0,-11],[-13,0],[0,-18],[13,0],[0,-277],[-14,0],[0,-8],[14,0],[0,-82]],[[479,108],[0,160],[-20,0],[0,34],[20,0],[0,146],[-24,0],[0,19],[24,0],[0,55],[-1,0],[0,1],[-1,0],[-1,1],[0,1],[-1,0],[0,1],[-1,0],[-1,2],[-1,1],[0,2],[-2,2],[-1,0],[0,2],[-1,1],[-1,0],[0,2],[-1,1],[-2,0],[0,1],[-1,0],[0,4],[-1,1],[0,6],[-1,0],[0,2],[-1,1],[0,1],[-1,0],[0,1],[-1,1],[0,1],[-1,1],[0,1],[-1,1],[0,-1],[-2,0],[0,2],[-1,1],[0,1],[1,1],[-1,1],[0,1],[-1,1],[0,6],[1,1],[-1,1],[0,3],[-2,2],[0,1],[1,1],[1,0],[0,2],[1,2],[0,5],[1,2],[0,11],[-1,0],[0,5],[1,0],[0,2],[-1,1],[0,1],[-1,0],[-1,1],[0,1],[1,2],[0,5],[1,1],[0,1],[1,1],[0,2],[1,2],[-1,1],[1,1],[0,1],[1,1],[0,1],[1,1],[0,1],[1,0],[0,6],[1,1],[0,2],[2,2],[0,1],[1,1],[-14,0],[0,33],[1,1],[5,10],[1,1],[6,12],[1,1],[5,10],[1,1],[6,12],[0,1]],[[520,111],[-10,0],[0,-1],[-3,0],[-1,-1],[-1,0],[0,3],[-4,0],[0,-1],[-1,0],[0,-1],[1,-1],[0,-1],[1,0],[1,-1],[1,0],[0,-1],[-3,0],[0,-1],[-1,0],[-1,-1],[-1,1],[-3,0],[0,1],[1,0],[-2,2],[0,2],[-1,0],[-1,1],[-1,0],[-1,-1],[-1,0],[-1,-1],[0,-4],[-3,0],[1,1],[0,1],[-1,1],[0,1],[-1,0],[0,1],[-3,0],[-1,-1],[0,-1],[-1,0]],[[520,971],[0,-120],[-1,-1],[-1,0],[-1,-1],[0,-1],[-1,0],[0,-1],[-2,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-5],[-1,-1],[0,-1],[1,-1],[0,-4],[1,0],[0,-1],[-1,-1],[1,-1],[0,-3],[1,0],[0,-3],[3,-3],[1,0],[1,-1],[1,0],[0,-21],[-2,0],[0,-1],[-1,0],[-1,-1],[-3,0],[0,-1],[-1,0],[0,-3],[-1,0],[0,-4],[-1,0],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,0],[-1,-1],[-1,0],[-2,-2],[0,-1],[-1,-2],[-2,0],[0,-1],[-6,0],[-1,-1],[-1,0],[-3,-3],[-2,0],[-1,-1],[-2,0],[0,-5],[1,-1],[1,0],[0,-2],[1,-1],[2,0],[0,-1],[1,0],[0,-2],[1,0],[1,-2],[0,-1],[1,0],[0,-1],[1,1],[0,-2],[1,-1],[0,-2],[1,-1],[-1,-2],[0,-8],[-1,0],[0,-1],[-1,0],[-1,1],[-7,0],[0,1],[-6,0],[-1,1]],[[520,999],[0,-28]],[[479,999],[41,0]],[[437,870],[1,0],[0,-1],[1,-1],[1,0],[0,-1],[2,0],[1,1],[1,0],[1,-1],[1,1],[2,0],[0,2],[31,0],[0,129]],[[432,862],[-1,0]],[[478,744],[0,42],[-1,0],[-1,-1],[-1,0],[0,-1],[-3,0],[-1,1],[-1,0],[0,3],[-1,1],[1,0],[0,1],[1,1],[0,1],[1,0],[0,1],[-1,1],[0,1],[-1,0],[0,2],[1,1],[-1,0],[0,3],[1,0],[0,1],[3,0],[0,2],[1,0],[0,2],[1,0],[0,1],[2,0],[0,1],[1,0],[0,6],[-1,0],[0,1],[-1,0],[0,1],[1,0],[0,2],[-1,1],[-2,0],[0,3],[3,0],[1,1],[0,20],[-2,0],[0,2],[1,0],[0,1],[1,0],[0,4],[-33,0],[-1,1],[-1,0],[0,-1],[-1,0],[-1,1],[0,1],[-1,0],[0,1],[-4,0]],[[17,845],[0,-15],[4,-8],[0,-2],[5,-10],[0,-2],[1,-3],[3,-6],[0,-7],[2,0],[1,1],[1,0],[2,1],[1,0],[1,1],[2,0],[1,1],[1,0],[2,1],[1,0],[1,1],[2,1],[1,0],[1,1],[2,0],[1,1],[1,0],[2,1],[1,0],[2,2],[2,0],[1,1],[1,0],[1,1],[2,1],[1,0],[2,2],[2,1],[3,3],[2,1],[2,2],[2,1],[2,2],[2,1],[3,3],[2,1],[2,2],[2,1],[2,2],[1,0],[2,1],[2,0],[1,1],[2,0],[1,1],[0,-366]],[[17,849],[0,-4]],[[15,847],[2,2]],[[11,843],[2,1],[2,2],[0,1]],[[9,841],[2,2]],[[8,840],[1,1]],[[7,838],[1,2]],[[3,834],[4,4]],[[2,832],[1,2]],[[1,831],[1,1]],[[0,766],[0,64],[1,1]],[[21,766],[-21,0]],[[0,666],[5,0],[0,-13],[5,0],[0,13],[52,0],[0,100],[-41,0]],[[0,638],[0,28]],[[21,638],[-21,0]],[[21,597],[0,41]],[[21,583],[0,14]],[[62,530],[0,53],[-41,0]],[[67,527],[-5,0],[0,3]],[[83,438],[0,9],[-1,2],[0,3],[-1,2],[0,3],[-1,2],[0,6],[-1,2],[0,2],[-1,3],[0,2],[-1,3],[0,3],[-1,2],[0,3],[-1,2],[0,3],[-1,2],[0,3],[-1,3],[0,2],[-1,3],[0,2],[-1,3],[0,5],[-1,2],[0,3],[-1,2],[0,3],[-1,4],[-1,0]],[[83,435],[0,3]],[[82,435],[1,0]],[[78,435],[4,0]],[[71,435],[7,0]],[[66,467],[1,-3],[0,-3],[1,-3],[0,-6],[1,-3],[0,-5],[1,-3],[0,-2],[1,-4]],[[60,467],[6,0]],[[58,467],[2,0]],[[33,467],[25,0]],[[33,455],[0,12]],[[33,440],[0,15]],[[33,427],[0,13]],[[36,377],[0,50],[-3,0]],[[62,73],[0,288],[-15,0],[0,16],[-11,0]],[[104,82],[-2,0],[0,-1],[-7,0],[0,1],[-1,0],[0,-1],[-2,0],[0,-3],[-7,0],[0,-1],[-2,0],[-1,-1],[0,-1],[-2,0],[-1,-1],[-1,0],[0,-1],[1,0],[0,-1],[-5,0],[-1,1],[-11,0]],[[130,355],[0,-5],[-19,0],[0,-11],[-7,0],[0,-257]],[[130,377],[0,-22]],[[119,427],[1,-2],[0,-3],[1,-2],[1,-3],[0,-2],[1,-3],[0,-2],[1,-3],[0,-2],[1,-3],[0,-2],[1,-3],[1,-2],[0,-3],[1,-2],[0,-3],[1,-2],[0,-3],[1,-2],[0,-3]],[[112,427],[7,0]],[[104,427],[8,0]],[[104,427],[0,0]],[[104,461],[0,-34]],[[104,466],[0,-5]],[[472,107],[-2,0],[-1,-1],[0,-1],[-5,0],[0,-1],[-1,0],[0,-2],[1,0],[0,-1],[-2,0],[0,-3],[1,0],[-1,-1],[-4,0],[0,-2],[-2,0],[1,1],[0,1],[-1,1],[-1,0],[-1,1],[-1,-1],[-1,0],[0,-3],[3,0],[-1,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[2,-2],[-4,0],[0,-2],[-1,0],[-1,-1],[1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[0,-2],[-1,1],[-2,0],[-1,-1],[-4,0]],[[479,108],[-2,0],[0,-1],[-1,0],[0,-1],[-1,-1],[-1,1],[-1,0],[0,1],[-1,0]],[[478,744],[-1,0],[0,-1],[-1,0],[0,-2],[-2,0],[0,-1],[-1,0],[0,-4],[1,0],[0,-4]],[[130,377],[16,0],[0,399],[-3,3],[0,1],[-1,0],[0,2],[1,0],[1,1],[0,1],[-1,0],[0,4],[-1,0],[0,1],[-1,0],[0,1],[-1,1],[0,1],[-1,0],[0,1],[-1,1],[0,1],[-1,0],[0,1],[-1,0],[0,4],[-1,0],[0,-2],[-1,-1],[0,-1],[1,-1],[0,-2],[1,-1],[0,-1],[1,-1],[0,-3],[-2,0],[0,1],[-3,3],[0,1],[-1,1],[0,1],[-1,1],[0,2],[-1,0],[0,4],[1,1],[1,0],[0,-1],[2,0],[1,1],[1,0],[0,1],[2,0],[0,1],[1,0],[0,2],[1,0],[0,1],[-1,1],[0,1],[1,0],[0,2],[-2,0],[0,1],[-1,0],[0,1],[-1,0],[-1,1],[0,1],[-1,0],[0,1],[-1,0],[0,3],[-1,0],[0,2],[-1,0],[0,2],[-1,0],[0,1],[-1,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,2],[-1,0],[0,1],[-2,0],[0,-1],[-1,0],[0,-2],[-2,0],[0,-1],[-1,0],[0,1],[-3,3],[0,1],[-1,0],[-1,1],[0,1],[-5,0],[0,53],[7,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[2,0],[0,-1],[1,0],[1,1]],[[146,94],[0,261],[-16,0]],[[187,88],[0,1],[-1,0],[0,1],[-2,0],[0,1],[-3,0],[0,-1],[-3,0],[0,1],[-2,0],[-1,-1],[-2,0],[-1,-1],[0,-1],[-1,0],[0,1],[1,0],[0,1],[-1,0],[0,1],[-10,0],[0,1],[-4,0],[0,-1],[-3,0],[-1,1],[0,1],[-2,0],[0,1],[-5,0]],[[121,882],[0,-7],[1,0],[0,-4],[6,0],[0,-2],[1,0],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[3,0],[0,-2],[1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[1,0],[0,-2],[1,0],[0,-1],[1,0],[0,-1],[2,0],[0,-2],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-3],[1,0],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-3],[2,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[2,0],[0,-4],[6,0],[0,1],[1,0],[0,-3],[1,0],[0,-2],[1,0],[0,-1],[11,0],[0,-15],[-1,0],[-1,1],[-1,0],[-1,-1],[-2,0],[0,-1],[-2,0],[0,1],[-2,0],[0,-1],[-1,0],[0,-3],[1,0],[0,-4],[1,0],[0,-2],[2,0],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[1,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-2],[1,0],[0,-2],[1,0],[0,-1],[2,0],[0,-2],[1,0],[0,-3],[-1,0],[0,-1],[1,-1],[1,0],[0,-3],[2,0],[0,-2],[1,-1],[0,-1],[1,0],[0,-5],[-1,0],[0,-2],[1,-1],[-1,0],[0,-2],[2,0],[0,-5],[1,0],[0,-3],[1,0],[0,-1],[1,0],[0,-2],[1,0],[0,-2],[1,0],[0,-6],[-2,0],[0,1],[-1,-1],[-2,0],[0,2],[-1,1],[-1,-1],[1,0],[0,-4],[-1,-1],[0,-2],[-1,0],[0,-2],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[0,-10],[4,0],[0,-2],[8,0],[0,-34],[-1,0],[0,1],[-1,0],[0,-4],[1,0],[0,-1],[-1,0],[0,-2],[1,0],[0,-2],[1,-1],[0,-1],[-1,0],[0,-4],[-1,0],[0,-2],[1,0],[0,-2],[-1,0],[0,-1],[-1,0],[0,-3],[1,0],[0,-2],[1,-3],[2,-4],[0,-2],[1,-2],[1,-3],[1,-2],[0,-2],[1,-2],[-5,0],[-3,3],[-5,0],[0,-25],[12,0],[0,-70],[16,0],[0,-16],[-16,0],[0,-459]],[[121,882],[0,0]],[[121,884],[0,-2]],[[229,947],[0,-1],[-1,0],[0,-1],[-9,0],[0,-1],[-1,0],[0,-4],[-2,0],[0,-33],[2,-1],[3,0],[1,-1],[2,0],[1,-1],[4,0],[1,-1],[2,0],[0,-1],[3,0],[1,-1],[2,0],[1,-1],[1,0],[0,-1],[1,-1],[0,-1],[1,0],[1,-1],[0,-1],[1,0],[0,-2],[3,-3],[0,-2],[2,-2],[2,0],[0,-1],[1,0],[0,-4],[1,-2],[0,-8],[-37,0],[0,-39],[-22,0],[0,-35],[1,0],[0,-1],[2,0],[0,-3],[-1,0],[0,-1],[-2,0],[0,-21],[17,0],[0,-6],[1,-1],[4,0],[1,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[-1,0],[1,-1],[0,-2],[-1,0],[0,-1],[-1,0],[0,-2],[3,0],[0,-6],[-1,0],[0,-1],[1,0],[0,-2],[-2,0],[0,-7],[1,0],[0,-7],[-2,0],[0,-4],[1,0],[0,-2],[-1,0],[0,-3],[-2,0],[0,-3],[2,0],[0,-10],[-2,0],[0,-4],[-2,0],[0,-25],[-1,-1],[0,-2],[-5,0],[0,-8],[1,0],[0,-5],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[-1,-1],[0,-3],[-1,0],[0,-5],[1,-1],[0,-2],[-2,0],[0,-2],[-1,0],[0,1],[-3,0],[0,1],[-1,0],[0,-2],[-1,0],[0,-4],[-1,0],[0,-1],[-1,0],[0,-3],[1,0],[0,-2],[1,0],[0,-1],[1,0],[0,-2],[1,0],[0,-5],[1,0],[0,-1],[1,0],[0,-2],[1,0],[0,-1],[1,0],[0,-3],[1,0],[0,-1],[-1,0],[0,-1],[1,0],[0,-2],[-1,0],[0,-2],[-1,1],[-1,0],[0,-1],[-1,-1],[-1,0],[0,-4],[1,-1],[0,-2],[1,-1],[0,-1],[1,0],[2,-2],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[2,0],[1,-1],[1,0],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[1,0],[3,-3],[1,0],[2,-2],[1,0],[0,-1],[1,-1],[1,0],[0,-226]],[[229,971],[0,-24]],[[229,999],[0,-28]],[[187,999],[42,0]],[[146,892],[1,-1],[1,0],[0,-1],[1,-1],[0,-2],[1,0],[0,1],[1,1],[0,1],[4,0],[1,2],[0,2],[-1,0],[0,2],[-1,0],[0,1],[-2,0],[-1,1],[-3,0],[0,2],[1,0],[0,1],[1,1],[0,1],[1,0],[-1,1],[1,0],[0,2],[1,0],[0,1],[1,1],[0,1],[-1,1],[0,1],[-1,0],[0,2],[3,0],[1,1],[7,0],[0,3],[1,2],[-2,0],[-1,1],[-3,0],[0,1],[-1,0],[0,2],[1,0],[0,1],[1,0],[1,1],[2,0],[0,1],[2,0],[0,1],[1,0],[0,1],[2,0],[0,1],[1,0],[0,1],[5,0],[1,1],[5,0],[0,1],[-1,0],[1,1],[1,0],[1,1],[2,0],[2,2],[2,0],[1,1],[0,62]],[[145,892],[1,0]],[[121,884],[0,1],[1,0],[0,2],[3,0],[1,1],[1,0],[1,-1],[3,0],[0,1],[2,0],[1,1],[1,0],[0,1],[4,0],[0,1],[1,0],[2,-2],[0,3],[1,1],[2,0],[0,-1]],[[121,882],[0,0]],[[229,102],[-9,0],[-2,-1],[-4,0],[0,-3],[1,0],[0,-1],[-3,0],[-1,-1],[0,-1],[-1,0],[-1,1],[-2,0],[0,-1],[-1,0],[0,-2],[1,0],[0,-1],[3,0],[1,1],[1,-1],[0,-3],[1,0],[0,-1],[3,0],[0,-2],[1,-1],[1,0],[0,-1],[-11,0],[-1,-1],[-9,0],[-1,1],[0,3],[-1,1],[-1,0],[-1,1],[-5,0],[-1,-1]],[[229,339],[0,-237]],[[219,339],[10,0]],[[223,361],[-32,0],[0,-22],[28,0]],[[229,361],[-6,0]],[[343,762],[-1,0],[0,-1],[-1,-1],[1,-2],[0,-1],[1,0],[1,-1],[0,2]],[[354,765],[-1,1],[1,0],[-1,1],[0,4],[-1,0],[0,-1],[-1,0],[0,1],[1,1],[0,2],[-1,0],[0,1],[-1,0],[0,2],[-1,0],[-1,-1],[-2,0],[0,1],[-1,1],[-1,0],[0,1],[1,1],[1,0],[0,5],[1,1],[-1,0],[0,1],[1,0],[0,1],[-1,1],[0,4],[-1,1],[1,0],[0,2],[-1,1],[0,1],[-1,0],[0,1],[-2,0],[0,-1],[-2,-2],[0,-2],[1,-1],[0,-9],[-1,-1],[0,-1],[-1,-1],[0,-3],[-1,-2],[0,-1],[-1,0],[0,-2],[-1,-1],[0,-1],[-2,-2],[0,-1],[1,-1],[-1,0],[0,-4],[1,0],[0,-1],[1,1],[4,0],[1,-1],[1,0],[1,1],[0,-1]],[[309,944],[0,0]],[[303,568],[-1,0],[0,1],[-1,1],[-1,0],[0,31],[1,0],[-1,1],[0,3],[1,1],[-1,1],[1,0],[0,1],[-1,1],[0,3],[12,0],[0,131],[1,2],[0,2],[1,0],[0,2],[-1,0],[0,1],[-1,0],[0,3],[-1,0],[0,9],[-2,0],[-1,-1],[0,1],[1,1],[1,0],[0,3],[2,0],[1,-1],[0,1],[1,-1],[0,1],[3,0],[1,-1],[3,3],[2,0],[2,1],[0,-2],[1,-3],[0,-2],[1,-2],[2,0],[1,2],[0,9],[-1,2],[0,5],[-1,0],[0,4],[1,0],[0,1],[-1,1],[0,3],[-1,0],[0,1],[-4,0],[0,2],[-1,0],[0,2],[-1,0],[0,-1],[1,0],[0,-1],[-1,0],[0,-4],[-1,0],[0,1],[-2,0],[0,1],[-1,0],[0,1],[-2,0],[0,2],[1,0],[0,1],[-1,0],[0,1],[-1,-1],[-1,0],[0,2],[1,0],[0,2],[-1,1],[-1,0],[0,2],[-1,0],[0,1],[1,0],[0,1],[-1,0],[0,1],[2,0],[0,2],[-1,1],[1,0],[0,-1],[1,0],[0,2],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,1],[2,0],[0,-1],[2,0],[0,1],[1,0],[0,5],[-1,1],[1,0],[0,1],[-1,0],[0,5],[1,1],[-1,0],[0,1],[1,0],[0,2],[-1,0],[0,1],[-1,0],[0,2],[1,0],[0,2],[1,0],[0,1],[-3,0],[-1,1],[2,0],[0,1],[-1,0],[0,1],[1,0],[0,1],[-2,0],[0,1],[1,0],[0,1],[-1,1],[1,0],[0,1],[1,1],[0,2],[-1,0],[0,2],[1,0],[0,3],[-1,1],[0,2],[2,0],[0,3],[-1,0],[0,2],[2,0],[0,2],[-1,0],[0,2],[-1,1],[0,1],[-1,0],[0,2],[1,2],[0,-1],[4,0],[0,3],[2,0],[0,1],[1,0],[0,2],[1,0],[0,2],[1,0],[0,1],[1,1],[0,1],[-3,3],[-1,0],[0,1],[-3,0],[0,1],[-1,1],[-1,0],[0,1],[-1,0],[0,1],[-3,0],[0,1],[-1,0],[-1,1],[-1,0],[0,1],[-2,0],[0,1],[2,0],[1,1],[0,2],[-1,0],[0,3],[-2,1],[0,1],[-1,0],[0,30],[-1,0],[-1,1],[-3,0],[-1,1],[-1,0],[-2,2],[0,1],[-2,0],[-1,1],[-1,0],[0,1],[-1,1],[-2,0],[0,1],[-1,0],[1,1],[2,0],[1,1],[-2,0],[-1,1],[-1,0],[0,1],[-1,0],[0,1],[3,3],[1,0],[1,1],[2,1],[1,0],[1,1],[2,0],[3,3],[0,1],[1,0]],[[314,506],[1,-1],[0,-1],[2,0],[0,1],[1,0],[0,-1],[-1,0],[1,-1],[0,2],[1,0],[0,1],[1,0],[0,1],[1,1],[1,0],[0,2],[1,0],[0,1],[1,0],[0,2],[-2,0],[0,3],[-1,0],[0,4],[-1,1],[0,1],[1,1],[0,-1],[1,0],[0,-1],[1,0],[0,1],[1,0],[0,-2],[1,0],[0,2],[1,0],[0,1],[1,-1],[0,1],[2,0],[0,2],[1,0],[0,1],[1,0],[0,3],[-1,1],[0,1],[-1,1],[0,1],[1,0],[0,4],[1,0],[0,1],[1,0],[0,1],[-1,0],[0,4],[1,0],[0,1],[1,0],[0,1],[1,0],[-1,1],[0,2],[-1,1],[0,-1],[-1,0],[0,5],[-2,2],[-2,0],[1,2],[0,5],[-1,1],[0,1],[-2,1],[-1,0],[-1,1],[-1,0],[-2,1],[-7,0],[-1,1],[-1,-1],[0,-3],[-2,0],[-2,2],[0,1],[-1,1],[-3,0]],[[312,133],[0,55],[-1,0],[-2,2],[0,1],[-1,-1],[-1,0],[0,1],[-2,0],[-2,2],[-1,0],[-2,2],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-2,0],[0,2],[-2,2],[0,2],[-1,1],[0,1],[-1,0],[0,1],[1,1],[-2,2],[0,6],[1,0],[-2,2],[0,28],[1,2],[0,5],[1,2],[0,4],[1,0],[0,1],[1,1],[0,7],[1,1],[0,1],[-1,1],[0,1],[1,1],[0,6],[1,0],[0,6],[-1,0],[0,3],[1,0],[-1,2],[0,2],[-21,0],[0,70],[30,0],[0,11],[1,0],[0,25],[1,0],[0,1],[1,0],[0,3],[1,0],[0,1],[-1,0],[0,1],[1,0],[0,3],[1,0],[0,3],[-1,0],[0,9],[1,0],[0,10],[1,0],[0,2],[-1,1],[0,2],[-1,1],[0,3],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[0,1],[-1,-1],[0,7],[1,0],[0,2],[-1,0],[0,-2],[-1,0],[0,-1],[-3,0],[0,3],[-3,0],[1,1],[0,3],[-1,0],[0,2],[-1,0],[0,4],[-1,0],[0,2],[1,0],[0,3],[1,0],[0,1],[1,1],[-1,0],[0,2],[1,1],[0,4],[1,0],[0,1],[1,0],[0,2],[1,0],[0,1],[3,0],[0,2],[1,0],[-1,-1],[2,0],[0,1],[1,1],[0,10],[1,1],[0,5],[-1,1],[0,3],[-1,0],[0,5],[1,0],[1,1],[0,-1],[1,0],[-1,1],[0,1],[-1,0],[0,4],[4,0],[0,1],[2,0],[0,1],[1,0],[0,-5],[1,0]],[[343,145],[0,1],[1,-1],[1,0],[0,1],[1,0],[0,1],[2,0],[0,2],[-1,1],[-2,0],[0,1],[-3,0],[-1,-1],[-1,0],[-1,-1],[-2,0],[0,-1],[-4,0],[-1,-1],[-3,0],[0,2],[-1,0],[0,1],[1,0],[1,-1],[3,0],[0,1],[2,2],[1,0],[1,1],[2,0],[0,1],[2,0],[0,2],[-1,1],[-3,0],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-3,0],[0,-1],[-1,0],[-1,-1],[-2,0],[0,-1],[-1,0],[-1,-1],[0,-1],[2,-2],[1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-3,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-3],[1,0],[0,-1],[-1,0],[0,-2],[-1,0],[0,1],[-4,0],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,0]],[[343,144],[-1,0],[0,1],[1,0]],[[354,72],[-2,1],[-1,0],[-1,1],[-2,1],[-1,0],[-1,1],[-2,0],[-2,2],[-2,0],[-1,1],[-1,0],[-2,1],[-1,1],[-1,0],[-1,1],[-2,1],[-1,0],[0,2],[2,0],[0,1],[1,0],[0,2],[-1,0],[0,1],[1,0],[0,2],[1,1],[1,0],[0,4],[-1,0],[-1,1],[1,0],[0,1],[1,0],[0,1],[-1,0],[0,1],[-1,0],[0,2],[-1,0],[0,2],[1,0],[0,3],[1,1],[-1,0],[0,1],[-4,0],[1,1],[1,0],[0,1],[1,0],[0,1],[-1,0],[0,1],[-1,0],[0,2],[-1,0],[0,1],[-1,0],[0,1],[-2,0],[0,2],[1,0],[0,1],[-1,0],[0,1],[-4,0],[-1,-1],[0,3],[1,1],[0,1],[-1,0],[0,2],[3,0],[0,1],[3,0],[2,2],[2,0],[0,1],[1,0],[0,1],[1,1],[0,1],[-1,0],[0,1],[-2,0],[0,1],[-1,1],[1,0],[2,2],[0,-2],[1,0],[0,-1],[2,0],[0,1],[1,0],[0,1],[-1,0],[0,2],[2,0],[0,1],[2,0],[0,-1],[3,0],[0,1],[1,0],[0,1],[1,0],[0,2],[-1,0]],[[312,202],[0,1],[-1,1],[0,2],[-1,1],[0,1],[1,1],[0,1],[-1,0],[0,2],[-1,1],[0,3],[-1,1],[1,1],[0,2],[1,0],[1,1],[1,0],[0,1]],[[309,195],[1,0]],[[299,213],[0,0]],[[298,218],[0,1]],[[297,218],[1,1]],[[299,231],[0,0]],[[299,236],[0,0]],[[300,237],[0,1]],[[301,247],[0,0]],[[301,250],[0,0]],[[300,250],[0,0]],[[300,250],[0,0]],[[300,251],[0,0]],[[301,251],[-1,0]],[[302,251],[-1,0]],[[300,253],[0,0]],[[300,257],[0,0]],[[300,258],[0,0]],[[300,258],[0,0]],[[300,259],[0,0]],[[300,265],[0,1]],[[300,275],[0,0]],[[300,276],[1,0]],[[301,277],[-1,0]],[[301,280],[0,0]],[[301,280],[0,0]],[[303,284],[-1,0]],[[302,294],[0,0]],[[302,296],[0,0]],[[303,297],[-1,0]],[[303,297],[0,0]],[[304,299],[0,0]],[[304,300],[0,0]],[[305,309],[0,0]],[[306,311],[0,0]],[[305,315],[1,0]],[[304,322],[0,0]],[[304,323],[0,0]],[[304,327],[0,0]],[[304,327],[0,0]],[[305,331],[0,0]],[[305,332],[0,1]],[[307,343],[0,0]],[[309,349],[0,0]],[[310,349],[0,0]],[[310,360],[0,0]],[[310,363],[-1,0]],[[310,364],[0,0]],[[314,374],[0,0]],[[315,376],[-1,0]],[[315,377],[0,0]],[[317,377],[0,1],[-1,0],[0,1]],[[318,377],[0,0]],[[320,376],[0,1],[-1,0]],[[321,373],[0,2],[-1,0],[0,1]],[[323,377],[-1,0]],[[325,377],[-2,0]],[[326,376],[-1,0],[0,1]],[[327,375],[-1,0],[0,1]],[[327,374],[0,1]],[[328,370],[0,2],[-1,0],[0,2]],[[330,369],[-1,0],[0,1],[-1,0]],[[330,367],[0,2]],[[331,367],[-1,0]],[[331,367],[0,0]],[[332,366],[0,1],[-1,0]],[[332,366],[0,0]],[[332,366],[0,0]],[[338,361],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,1]],[[338,361],[0,0]],[[338,361],[0,0]],[[340,357],[0,2],[-1,0],[0,2]],[[339,357],[0,0]],[[338,354],[0,1],[1,0],[0,2]],[[338,352],[0,2]],[[338,351],[0,1]],[[338,351],[0,0]],[[337,349],[0,1],[1,0],[0,1]],[[337,348],[0,1]],[[338,348],[0,0]],[[340,347],[-1,1],[-1,0]],[[341,347],[-1,0]],[[342,347],[0,0]],[[343,346],[0,1],[-1,0]],[[344,348],[0,0]],[[345,347],[-1,0],[0,1]],[[346,349],[-1,0]],[[346,350],[0,0]],[[347,352],[0,0]],[[348,357],[0,0]],[[353,375],[0,0]],[[355,380],[0,0]],[[357,392],[1,0]],[[356,393],[0,0]],[[354,395],[0,0]],[[353,396],[1,0]],[[353,396],[0,0]],[[352,397],[1,0],[0,1]],[[355,412],[0,0]],[[356,413],[0,0]],[[357,416],[0,0]],[[358,421],[0,0]],[[359,428],[0,0]],[[359,428],[0,0]],[[359,430],[0,0]],[[343,447],[0,0]],[[342,447],[0,0]],[[341,448],[0,0]],[[343,487],[0,0]],[[342,487],[1,0],[0,1]],[[342,488],[0,0]],[[341,490],[0,0]],[[340,490],[1,0]],[[338,493],[0,0]],[[338,493],[0,0]],[[337,495],[0,0]],[[336,506],[0,1]],[[337,507],[0,0]],[[337,507],[0,0]],[[338,508],[0,0]],[[338,508],[0,0]],[[339,509],[0,0]],[[340,509],[-1,0]],[[341,510],[-1,0]],[[341,510],[0,1]],[[342,510],[-1,0]],[[342,510],[0,0]],[[343,510],[-1,0]],[[341,513],[0,0]],[[341,514],[0,0]],[[341,515],[0,0]],[[341,515],[0,0]],[[341,516],[0,0]],[[341,517],[0,0]],[[340,518],[0,0]],[[340,518],[0,0]],[[340,518],[0,0]],[[339,527],[0,0]],[[340,527],[0,0]],[[340,527],[0,0]],[[341,527],[-1,0]],[[341,528],[0,0]],[[341,528],[0,1]],[[340,529],[1,0]],[[340,529],[0,0]],[[341,533],[0,0]],[[344,758],[0,1],[1,-1],[0,1],[2,0],[0,1],[1,1],[1,0],[-1,-1],[0,-1],[1,0],[0,-1],[1,0],[1,-1],[2,0],[0,2],[1,1],[0,1]],[[344,758],[0,1]],[[344,759],[0,-1]],[[792,629],[0,0]],[[791,629],[1,0]],[[791,629],[0,0]],[[791,628],[0,1]],[[791,628],[0,0]],[[790,626],[0,2],[1,0]],[[790,626],[0,0]],[[790,626],[0,0]],[[790,626],[0,0]],[[789,625],[0,1],[1,0]],[[789,626],[0,-1]],[[788,624],[0,2],[1,0]],[[787,626],[1,-1],[0,-1]],[[787,625],[0,1]],[[786,626],[0,-1],[1,0]],[[785,624],[1,0],[0,2]],[[784,626],[0,-1],[1,0],[0,-1]],[[784,625],[0,1]],[[784,626],[0,-1]],[[784,625],[0,1]],[[784,625],[0,0]],[[783,624],[1,1]],[[783,624],[0,0]],[[783,624],[0,0]],[[783,624],[0,0]],[[782,624],[1,0]],[[782,624],[0,0]],[[781,623],[1,0],[0,1]],[[781,623],[0,0]],[[782,617],[0,4],[-1,0],[0,2]],[[782,617],[0,0]],[[782,617],[0,0]],[[782,617],[0,0]],[[781,617],[1,0]],[[781,617],[0,0]],[[781,617],[0,0]],[[780,618],[0,-1],[1,0]],[[780,618],[0,0]],[[780,619],[0,-1]],[[770,553],[1,0],[0,-1],[1,0],[0,2],[1,1],[0,2],[1,0],[0,4],[1,0],[0,3],[1,0],[0,3],[-1,0],[0,9],[-1,0],[0,2],[-1,0],[0,3],[-1,0],[0,3],[1,0],[0,5],[1,0],[0,1],[-1,0],[0,4],[-1,0],[0,2],[-1,1],[0,3],[-1,1],[0,2],[1,-1],[0,7],[3,0],[0,2],[2,0],[0,1],[-1,0],[0,1],[1,-1],[0,1],[1,0],[0,1],[1,0],[0,2],[1,0],[0,2],[1,0],[0,1]],[[770,437],[0,66],[-1,0],[0,3],[-1,1],[0,3],[-1,0],[0,1],[-1,1],[0,1],[-1,0],[0,1],[-1,1],[1,1],[0,1],[1,0],[0,-1],[1,0],[0,-2],[1,-1],[0,-1],[1,1],[1,0],[0,1],[-1,1],[0,2],[-1,1],[0,1],[-1,0],[0,1],[-1,1],[0,1],[-1,2],[-1,1],[-1,2],[0,6],[1,0],[2,-2],[0,-1],[4,0],[0,23]],[[770,428],[0,9]],[[770,132],[0,296]],[[805,130],[-1,0],[-1,-1],[-1,0],[-1,1],[-1,0],[0,1],[-3,0],[0,1],[-3,0],[-1,1],[-3,0],[0,1],[-4,0],[0,1],[1,0],[0,1],[1,0],[0,1],[-1,0],[0,1],[-1,1],[-2,0],[0,-2],[1,-1],[0,-1],[-2,0],[0,-1],[-2,0],[0,1],[1,0],[0,1],[-2,2],[-1,0],[-1,-1],[-1,0],[0,-3],[-1,-1],[0,-2],[-1,0],[0,1],[-3,0],[-1,-1],[0,1],[-1,0]],[[812,135],[-1,0],[-1,-1],[-3,0],[-2,-2],[0,-2]],[[812,446],[0,-311]],[[818,446],[-6,0]],[[821,458],[-3,0],[0,-2],[-1,-1],[0,-2],[1,-1],[0,-6]],[[822,458],[-1,0]],[[822,471],[0,-13]],[[815,471],[7,0]],[[820,492],[0,-3],[-1,0],[0,-1],[1,0],[-1,-1],[-1,0],[0,-3],[-1,0],[0,-4],[-1,-2],[0,-2],[-1,-3],[0,-2]],[[821,492],[-1,0]],[[821,493],[0,-1]],[[821,493],[0,0]],[[819,500],[1,0],[0,-1],[-1,0],[0,-2],[1,0],[0,-3],[1,0],[0,-1]],[[819,499],[0,1]],[[818,504],[1,0],[0,-5]],[[817,503],[1,0],[0,1]],[[816,503],[1,0]],[[815,503],[1,0]],[[816,505],[0,-2],[-1,0]],[[816,504],[0,1]],[[816,507],[0,-2],[-1,0],[0,-1],[1,0]],[[816,507],[0,0]],[[816,508],[0,-1]],[[815,506],[0,1],[1,0],[0,1]],[[814,507],[1,0],[0,-1]],[[814,507],[0,0]],[[813,507],[1,0]],[[813,507],[0,0]],[[813,508],[0,-1]],[[813,508],[0,0]],[[813,508],[0,0]],[[813,508],[0,0]],[[812,508],[1,0]],[[810,505],[0,1],[1,0],[0,2],[1,0]],[[809,505],[1,0]],[[809,505],[0,0]],[[809,505],[0,0]],[[809,505],[0,0]],[[808,505],[1,0]],[[807,505],[1,0]],[[807,505],[0,0]],[[807,504],[0,1]],[[807,505],[0,-1]],[[807,504],[0,1]],[[806,504],[1,0]],[[806,504],[0,0]],[[806,505],[0,-1]],[[806,505],[0,0]],[[804,507],[1,0],[0,-2],[1,0]],[[804,507],[0,0]],[[804,508],[0,-1]],[[804,508],[0,0]],[[804,516],[0,-8]],[[786,507],[0,-1],[2,0],[0,1],[1,-1],[0,1],[1,1],[1,2],[0,4],[-1,2],[0,11],[14,0],[0,-11]],[[782,512],[2,-2],[0,-1],[1,0],[0,-1],[1,-1]],[[782,512],[0,0]],[[777,533],[0,-6],[1,-1],[0,-5],[1,-1],[0,-1],[1,-1],[0,-4],[1,0],[0,-1],[1,0],[0,-1]],[[776,533],[1,0]],[[775,535],[0,-1],[1,0],[0,-1]],[[777,535],[0,1],[-1,0],[0,-1],[-1,0]],[[778,537],[-1,0],[0,-2]],[[778,537],[0,0]],[[778,537],[0,0]],[[778,536],[0,1]],[[778,536],[0,0]],[[779,535],[-1,0],[0,1]],[[779,536],[0,-1]],[[779,534],[0,2]],[[779,534],[0,0]],[[780,534],[-1,0]],[[780,534],[0,0]],[[780,534],[0,0]],[[780,534],[0,0]],[[780,531],[0,3]],[[780,531],[0,0]],[[780,531],[0,0]],[[781,532],[-1,0],[0,-1]],[[782,531],[0,1],[-1,0]],[[782,532],[0,-1]],[[782,531],[0,1]],[[783,534],[0,-1],[-1,0],[0,-2]],[[812,534],[-29,0]],[[812,581],[0,-47]],[[799,619],[1,-1],[2,0],[0,-3],[1,0],[0,-1],[1,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-2],[-1,0],[0,-1],[-1,-1],[0,-3],[1,-1],[-1,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,1],[1,0],[0,1],[1,1],[1,2],[0,2],[1,1],[0,4],[-1,1],[0,5],[1,0],[1,1],[1,0],[1,1],[0,-1],[1,0],[0,-37]],[[799,620],[0,-1]],[[798,619],[0,1],[1,0]],[[798,619],[0,0]],[[798,619],[0,0]],[[798,620],[0,-1]],[[797,619],[1,1]],[[797,620],[0,-1]],[[797,620],[0,0]],[[796,621],[1,-1]],[[796,621],[0,0]],[[796,621],[0,0]],[[796,621],[0,0]],[[796,622],[0,-1]],[[796,621],[0,1]],[[795,625],[0,-4],[1,0]],[[795,625],[0,0]],[[796,626],[0,-1],[-1,0]],[[796,626],[0,0]],[[795,626],[1,0]],[[795,626],[0,0]],[[795,627],[0,-1]],[[794,626],[1,0],[0,1]],[[794,627],[0,-1]],[[793,627],[1,0]],[[793,627],[0,0]],[[793,627],[0,0]],[[793,627],[0,0]],[[793,627],[0,0]],[[792,629],[0,-2],[1,0]],[[792,629],[0,0]],[[715,696],[1,0]],[[728,591],[0,-1],[-1,0],[-1,-1],[-1,0],[0,-3],[-2,0],[0,-1],[-1,-1],[0,-2],[1,-1],[0,-12],[-1,-1],[0,-3],[-1,-1],[1,-1],[0,-8],[1,0],[0,-1],[2,-4],[0,-2],[1,-1],[0,-2],[1,-1],[0,-9],[-3,-3],[0,-1],[-1,0],[-2,2],[0,4],[-1,2],[0,7],[1,1],[0,2],[-1,0],[-1,1],[-1,-1],[-1,0],[0,-4],[-1,0],[0,-1],[-1,-1],[-1,0],[0,1],[-1,1],[0,1],[-2,2],[0,6],[-1,2],[0,3],[-1,1],[0,4],[-1,2],[-1,1],[0,3],[-1,2],[0,5],[-1,1],[0,3],[-1,1],[0,4],[-1,0],[0,3],[-1,2],[0,8],[-1,1],[0,8],[-1,1],[0,1],[1,0],[0,6],[-2,0],[0,-1],[-1,0],[-1,-1],[0,-1],[-1,0],[-2,2],[0,1],[-1,1],[0,1],[-1,1],[0,1],[-1,0],[0,1],[-1,1],[0,3],[1,0],[0,1],[-1,0],[0,1],[-1,1],[0,1],[-1,1],[1,1],[0,2],[1,0],[0,1],[4,0],[0,1],[1,0],[0,-1],[1,0],[0,2],[1,0],[0,1],[-1,1],[0,4],[-2,0],[0,5],[-1,0],[0,1],[-1,0],[0,2],[1,0],[0,2],[1,1],[0,2],[2,0],[0,-2],[1,1],[1,0],[1,1],[0,1],[1,1],[0,2],[2,2],[0,1],[1,1],[0,3],[1,0],[1,1],[0,3],[1,0],[0,6],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,2],[-1,0],[0,7],[-1,0],[0,1],[1,0],[0,1],[3,0],[0,-1],[2,0],[0,1],[2,0],[0,1],[1,0],[0,1],[2,2]],[[756,621],[0,10],[-1,0],[0,-1],[-1,0],[0,-3],[-1,0],[0,3],[-1,0],[0,1],[1,0],[0,2],[1,0],[0,1],[1,0],[0,4],[1,0],[0,1],[-6,0],[-1,1],[0,4],[-2,0],[0,2],[-2,0],[0,-1],[-1,0],[0,-2],[1,-1],[0,-1],[1,0],[0,-2],[-1,0],[0,-1],[-1,0],[0,-3],[1,0],[0,-1],[1,0],[0,-2],[-1,0],[0,-2],[1,0],[0,-7],[1,0],[0,-5],[-3,0],[0,1],[-1,0],[0,-1],[-1,0],[-1,-1],[0,-5],[-1,-1],[0,-1],[-3,-3],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,-2],[0,-1],[-2,-2],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,0],[0,-4],[-1,0]],[[770,656],[-1,-1],[1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[1,-1],[0,-1],[-1,0],[0,1],[-2,0],[0,-2],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-6],[-1,0],[0,-5],[-1,0],[0,-4],[-1,0],[0,1],[-2,0],[0,-1],[1,0],[0,-5],[-1,0],[0,-5],[-2,0],[0,-1]],[[769,657],[0,-1],[1,0]],[[769,657],[0,0]],[[769,657],[0,0]],[[768,657],[1,0]],[[768,657],[0,0]],[[768,657],[0,0]],[[767,657],[1,0]],[[767,657],[0,0]],[[767,657],[0,0]],[[767,657],[0,0]],[[767,658],[0,-1]],[[767,661],[0,-1],[1,-1],[-1,0],[0,-1]],[[766,660],[1,0],[0,1]],[[767,662],[0,-1],[-1,0],[0,-1]],[[767,662],[0,0]],[[766,663],[0,-1],[1,0]],[[766,663],[0,0]],[[766,663],[0,0]],[[765,662],[0,1],[1,0]],[[765,662],[0,0]],[[765,661],[0,1]],[[764,661],[1,0]],[[764,661],[0,0]],[[763,661],[1,0]],[[763,661],[0,0]],[[763,661],[0,0]],[[763,661],[0,0]],[[762,662],[0,-1],[1,0]],[[761,661],[0,1],[1,0]],[[761,661],[0,0]],[[761,660],[0,1]],[[760,660],[1,0]],[[760,660],[0,0]],[[760,660],[0,0]],[[760,659],[0,1]],[[759,659],[1,0]],[[759,659],[0,0]],[[759,659],[0,0]],[[759,659],[0,0]],[[758,659],[1,0]],[[757,656],[1,0],[0,3]],[[757,656],[0,0]],[[756,654],[1,0],[0,2]],[[756,654],[0,0]],[[756,654],[0,0]],[[756,654],[0,0]],[[756,654],[0,0]],[[755,654],[1,0]],[[755,654],[0,0]],[[755,654],[0,0]],[[755,653],[0,1]],[[755,653],[0,0]],[[754,653],[1,0]],[[754,654],[0,-1]],[[754,654],[0,0]],[[746,651],[0,-2],[1,0],[1,-1],[2,0],[0,1],[1,-1],[3,0],[1,1],[0,3],[-1,0],[0,2]],[[745,655],[1,0],[0,-4]],[[745,655],[0,0]],[[745,655],[0,0]],[[744,655],[1,0]],[[744,655],[0,0]],[[744,654],[0,1]],[[744,654],[0,0]],[[724,667],[0,-1],[-1,0],[0,-1],[-1,0],[0,-7],[2,0],[0,-1],[1,0],[0,-1],[1,0],[0,-2],[2,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,1],[2,0],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[1,1],[0,-1],[1,0],[0,-1],[3,0],[0,-1],[4,0],[0,8]],[[723,669],[0,-1],[1,0],[0,-1]],[[723,669],[0,0]],[[722,669],[1,0]],[[722,670],[0,-1]],[[722,670],[0,0]],[[722,670],[0,0]],[[721,671],[1,0],[0,-1]],[[720,671],[1,0]],[[720,672],[0,-1]],[[720,672],[0,0]],[[719,674],[0,-2],[1,0]],[[719,673],[0,1]],[[718,673],[1,1],[0,-1]],[[718,673],[0,0]],[[718,673],[0,0]],[[718,675],[0,-2]],[[718,681],[0,-1],[-1,0],[0,-2],[1,-1],[0,-2]],[[718,679],[0,2]],[[719,679],[-1,0]],[[719,679],[0,0]],[[719,680],[0,-1]],[[719,680],[0,0]],[[719,684],[1,0],[0,-4],[-1,0]],[[716,696],[0,-3],[1,0],[0,-2],[1,0],[0,-1],[1,0],[0,-1],[-1,0],[0,-4],[1,-1]],[[716,696],[0,0]],[[927,764],[1,2],[2,2],[1,2],[1,1],[1,2],[1,1],[2,1],[1,2]],[[895,724],[0,9],[2,-2],[0,1],[1,0],[0,2],[1,2],[0,1],[3,0],[1,1],[1,0],[0,1]],[[895,594],[0,130]],[[882,409],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,1],[2,2],[1,-1],[0,-2],[-1,0],[0,-4],[1,0],[0,-1],[1,0],[0,1],[1,0],[0,3],[1,1],[0,6],[1,1],[0,8],[-1,1],[1,0],[0,10],[1,1],[0,7],[1,1],[-1,0],[0,3],[1,0],[0,2],[-3,0],[0,15],[-1,0],[0,1],[1,0],[0,26],[1,3],[2,4],[0,3],[1,2],[0,21],[-18,0],[0,72],[18,0]],[[882,408],[0,1]],[[891,287],[0,35],[2,0],[0,3],[-2,0],[0,30],[-9,0],[0,53]],[[895,129],[0,157],[-1,-1],[0,1],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[0,1]],[[937,116],[-1,0],[0,1],[-3,0],[0,1],[-2,0],[-1,1],[0,1],[-1,0],[-1,1],[-3,0],[0,-2],[-5,0],[0,2],[-11,0],[0,1],[-1,1],[-1,0],[0,1],[-1,0],[0,1],[-2,0],[0,1],[-2,0],[0,-1],[-1,0],[1,1],[0,2],[-1,0],[-1,1],[0,-1],[-1,1],[-3,0],[-1,-1],[0,1]],[[271,999],[0,-39],[-2,0],[0,-1],[-2,0],[-1,-1],[-2,0],[0,-91],[-1,0],[-1,-1],[-1,0],[0,-1],[-8,-16],[0,-34],[-2,-2],[-1,-2],[0,-12],[2,0],[2,-2],[0,-1],[-2,-2],[0,-2],[-2,0],[0,-4],[-1,0],[-1,-1],[0,-4],[2,-2],[0,-7],[-1,0],[-1,-1],[-1,0],[0,-4],[1,-1],[1,0],[1,-1],[0,-1],[1,0],[0,-2],[-1,0],[0,-6],[2,0],[0,-1],[3,0],[0,-1],[1,0],[0,-1],[1,0],[0,-3],[2,0],[0,-1],[1,0],[0,-1],[-1,0],[0,-3],[-1,-1],[0,-14],[-1,-1],[2,0],[0,-2],[-1,-1],[0,-2],[-1,0],[0,-8],[-1,0],[0,-2],[1,0],[0,-2],[-1,0],[0,-1],[2,0],[0,-1],[1,0],[0,-1],[1,-1],[0,-2],[1,0],[0,-1],[1,0],[1,-1],[1,0],[0,-1],[1,0],[0,-1],[-1,-1],[0,-1],[1,-1],[-1,0],[0,-3],[-1,-1],[0,-3],[-1,0],[0,-5],[1,-1],[0,-7],[1,-1],[0,-2],[-1,0],[0,-3],[1,0],[-1,-1],[0,-2],[1,0],[0,-4],[-1,-1],[0,-1],[1,0],[-1,-1],[0,-2],[1,0],[1,1],[1,0],[0,1],[1,0],[0,-2],[1,0],[0,-2],[1,-1],[0,-8],[1,-2],[0,-1],[1,-1],[0,-19],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[0,-3],[-1,0],[0,-1],[-1,0],[0,-2],[1,0],[1,-1],[1,1],[2,0],[0,-2],[1,0],[0,-1],[1,1],[1,0],[0,-16]],[[229,999],[42,0]],[[229,947],[0,24]],[[223,361],[6,0]],[[229,339],[-10,0]],[[271,91],[-1,0],[0,1],[-5,0],[0,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[-1,-1],[-2,0],[-1,1],[0,1],[-1,0],[0,1],[-4,0],[0,1],[-1,-1],[-2,0],[-1,1],[-4,0],[0,-1],[-1,0],[-1,1],[-5,0],[-1,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-5,0]],[[271,598],[0,-45],[-1,0],[0,-1],[-1,0],[0,-2],[1,0],[0,-1],[-1,-1],[1,0],[0,-2],[-1,0],[0,-3],[1,0],[0,1],[1,0],[0,-453]],[[271,602],[0,-4]],[[312,999],[0,-38],[11,0],[0,-1],[5,0],[0,-1],[1,0],[1,-1],[3,0],[1,-1],[0,-1]],[[271,999],[41,0]],[[271,598],[0,4]],[[312,119],[-1,-1],[0,-2],[-3,0],[0,-1],[-1,0],[0,2],[-2,2],[-3,0],[-1,-1],[-3,0],[0,-3],[-2,0],[0,-1],[-1,0],[0,-1],[-1,-1],[0,1],[-1,0],[0,1],[-2,0],[-1,-1],[-1,0],[-2,-2],[2,-2],[1,0],[0,-1],[-2,0],[-1,-1],[-1,0],[-1,-1],[0,-1],[1,0],[0,-1],[3,0],[0,-2],[-1,0],[0,-2],[1,0],[0,-4],[-1,0],[-1,-1],[0,-1],[-1,0],[0,-1],[-4,0],[0,1],[-1,0],[-1,1],[-1,0],[-1,1],[-3,0],[0,-1],[-1,0],[0,-1],[-2,0],[0,-3],[-1,0]],[[310,130],[-1,0],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-2],[2,-2],[2,0],[0,1],[1,0],[0,-2],[1,0],[0,-2]],[[312,133],[0,-2],[-2,0],[0,-1]],[[298,560],[0,-1],[-1,-1],[0,-5],[-1,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-4],[1,0],[0,-2],[-1,0],[0,-3],[1,0],[0,-2],[2,0],[0,-1],[2,0],[0,1],[1,0],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[1,0],[0,1],[3,0],[0,1],[1,-1],[0,-4],[-1,0],[0,-8],[1,0],[0,-3],[1,0],[0,-1],[-1,0],[0,-2],[-1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-4],[1,-1],[0,-3]],[[298,560],[0,0]],[[298,561],[0,-1]],[[298,561],[0,0]],[[303,568],[0,-2],[-1,-1],[-2,0],[0,-1],[-1,-1],[0,-2],[-1,0]],[[309,945],[0,-1]],[[310,946],[-1,-1]],[[705,555],[0,-13],[-4,0],[-1,1],[-2,0],[0,26],[7,0],[0,-14]],[[695,721],[1,0],[0,-1],[-1,0],[0,1]],[[978,999],[0,-110],[-2,0],[-1,1],[-4,0],[0,-2],[-1,0],[0,1],[-5,0],[-2,-2],[-7,0],[0,1],[-4,0],[-1,-1],[-6,0],[0,2],[1,0],[0,1],[-1,0],[0,1],[1,0],[0,1],[1,0],[0,-1],[2,0],[1,-1],[1,1],[1,0],[0,1],[-1,1],[-2,0],[0,1],[-6,0],[0,-1],[-1,1],[-2,0],[-1,1],[-11,0],[-1,-1],[-4,0],[0,1],[-1,1],[-1,0],[-1,1],[-2,0],[0,2],[-2,2],[-1,0],[-1,1],[-7,0],[0,-1],[-6,0],[0,-1],[-1,0],[0,1],[-1,0],[-2,-2],[0,-1],[-1,0],[0,-1],[-1,0],[0,-3],[-1,-1],[-1,0],[0,-2],[-1,0],[-1,-1],[0,-1],[-1,0],[0,-1],[1,0],[1,-1],[2,0],[0,-1],[1,0],[-1,-1],[1,0],[0,-1],[-1,-1],[0,1],[-2,0],[0,-2],[1,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-3],[-2,0],[-1,-1],[-1,0],[0,-1],[-2,0],[0,-2],[1,0],[0,-1],[1,-1],[1,0],[0,-1],[1,0],[0,-1],[-2,0],[0,-1],[1,-1],[0,-1]],[[937,971],[0,28],[41,0]],[[937,925],[0,46]],[[907,905],[0,1],[13,0],[1,2],[6,6],[1,2],[1,1],[2,1],[1,2],[2,2],[1,2],[2,1]],[[867,890],[-1,0],[0,4],[-1,2],[0,9]],[[869,887],[-1,0],[0,1],[1,0],[0,2],[-1,0]],[[870,887],[-1,0]],[[870,886],[0,1]],[[869,886],[0,0]],[[868,883],[0,2],[1,1]],[[867,882],[0,1]],[[865,875],[1,2],[1,0],[2,2],[0,2],[-1,1],[-1,0]],[[868,856],[0,1],[-1,1],[-1,0],[1,1],[-1,1],[0,1],[-1,1],[-1,0],[0,1],[1,0],[0,1],[-1,0],[-1,1],[0,1],[-1,0],[-1,1],[0,1],[-1,0],[0,1],[1,0],[0,1],[-1,1],[1,1],[1,0],[0,2],[1,0],[1,1]],[[870,856],[-1,0]],[[873,860],[-1,0],[0,1]],[[880,862],[-1,0],[-1,1],[-1,0]],[[881,862],[0,0]],[[886,864],[-1,1]],[[887,864],[-1,1]],[[937,971],[0,0]],[[978,999],[21,0],[0,-169]],[[970,791],[-2,-2]],[[999,830],[-2,-2],[-1,-2],[-2,-2],[0,-1],[-5,-5],[0,-1],[-2,-2],[-1,-2],[-4,-4],[0,-1],[-2,-2],[-1,-2],[-2,-2],[0,-1],[-3,-3],[0,-1],[-3,-3]],[[645,650],[1,0],[0,-2],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-2],[1,-1],[0,1],[1,0],[-1,1],[0,1],[1,0],[0,1],[3,0],[1,1],[0,1],[1,1],[0,-4],[1,-1],[0,-3],[2,0],[0,-1],[3,0],[0,-1],[1,0],[0,1],[1,-1],[3,0],[1,-1],[1,0]],[[645,650],[0,0]],[[645,239],[0,11]],[[672,126],[-3,0],[-1,1],[-3,0],[-1,1],[-3,0],[-1,1],[0,2],[-1,0],[-1,1],[-2,0],[0,1],[-1,0],[0,1],[-2,1],[-7,0],[0,-1],[-1,0]],[[687,124],[-3,0],[-1,1],[-4,0],[-1,1],[-4,0],[-1,-1],[-1,1]],[[687,604],[0,-480]],[[687,631],[0,-27]],[[670,638],[1,-1],[1,1],[1,0],[0,1],[1,0],[0,-1],[2,0],[0,1],[2,0],[1,-1],[1,1],[2,0],[1,1],[1,-1],[0,-3],[1,0],[1,-1],[0,-4],[1,0]],[[702,478],[0,-23]],[[696,455],[0,29],[4,0],[1,-1],[1,0],[0,-5]],[[702,455],[-6,0]],[[717,951],[0,-5]],[[719,951],[-2,0]],[[721,951],[-2,0]],[[723,951],[-2,0]],[[770,952],[-24,0],[0,-1],[-23,0]],[[770,999],[0,-47]],[[729,999],[41,0]],[[708,955],[21,0],[0,44]],[[708,955],[0,0]],[[694,955],[14,0]],[[640,787],[1,0],[0,1],[1,0],[0,2],[1,0],[0,1],[-1,1],[1,0],[0,1],[1,0],[0,4],[1,0],[0,4],[2,0],[0,-2],[1,0],[0,6],[-1,0],[0,1],[1,0],[1,1],[0,1],[1,0],[0,1],[-1,0],[0,2],[1,0],[0,3],[-1,0],[1,1],[0,6],[-1,1],[0,6],[-1,0],[-1,1],[1,1],[0,2],[1,0],[0,1],[-1,0],[-2,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[2,0],[0,1],[1,0],[0,1],[2,-1],[0,-1],[1,0],[0,1],[2,0],[1,-1],[0,1],[1,0],[0,1],[3,0],[0,1],[1,1],[7,0],[0,2],[1,0],[0,1],[-1,0],[1,1],[0,2],[-1,0],[0,1],[1,0],[0,1],[-1,0],[0,3],[1,1],[0,2],[1,0],[0,1],[-1,0],[0,3],[1,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],[1,1],[1,0],[0,2],[1,0],[0,1],[1,0],[0,1],[2,0],[0,1],[2,0],[0,2],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[-1,-1],[0,1],[1,0],[0,2],[-1,0],[0,-1],[-1,1],[0,2],[1,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[1,0],[0,11],[1,1],[2,4],[1,1],[2,4],[1,1],[0,1],[1,1],[1,2],[1,1],[1,2],[1,1],[1,2],[1,1],[0,39]],[[704,718],[0,1],[-1,0],[0,-1],[-5,0],[0,1],[-1,0],[0,-1],[-1,0],[0,1],[-4,0],[0,3],[1,0],[1,1],[0,-1],[1,0],[0,-1],[1,1],[0,1],[2,0],[0,-1],[1,0],[0,2],[1,0],[0,1],[2,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,1],[0,-2],[-2,0],[0,2],[-1,-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,0],[0,-1],[-1,0],[-2,-2],[0,-1],[-1,0],[0,-3],[-1,0],[0,1],[-1,0],[0,2],[-3,0],[-1,1],[0,4],[-1,0],[0,5],[-1,-1],[0,2],[-2,2],[0,1],[-1,0],[0,-1],[-3,0],[0,1],[-2,0],[0,-1],[-3,0],[0,2],[-1,0],[0,1],[-1,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,3],[1,1],[0,2],[2,2],[0,1],[1,0],[0,1],[1,0],[1,1],[0,1],[1,1],[0,1],[1,0],[1,-1],[0,-1],[2,-2],[1,2],[2,2],[1,0],[0,1],[-1,1],[-1,2],[-1,0],[-1,1],[0,1],[-1,0],[0,1],[-1,0],[1,1],[-1,1],[1,0],[0,2],[1,0],[0,1],[-1,1],[0,3],[-1,0],[1,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,-3],[-4,0],[0,-1],[-1,0],[-1,1],[-2,0],[0,2],[-2,0],[0,-1],[-2,0],[0,1],[-1,0],[0,-1],[-1,1],[0,-1],[-1,0],[0,-1],[-1,-1],[-1,1],[-1,0],[0,1],[-1,1],[0,-3],[-1,0],[0,1],[1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-3,0],[0,2],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[0,1],[-1,0]],[[705,722],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[-1,0],[0,-1]],[[706,722],[-1,0]],[[707,723],[-1,0],[0,-1]],[[707,723],[0,0]],[[707,724],[0,-1]],[[708,724],[-1,0]],[[708,724],[0,0]],[[708,724],[0,0]],[[709,725],[-1,-1]],[[710,723],[-1,0],[0,2]],[[710,723],[0,0]],[[710,723],[0,0]],[[711,724],[-1,-1]],[[711,724],[0,0]],[[711,724],[0,0]],[[711,723],[0,1]],[[713,727],[0,-1],[-1,0],[0,-2],[-1,0],[0,-1]],[[714,727],[-1,0]],[[714,727],[0,0]],[[714,727],[0,0]],[[715,727],[-1,0]],[[716,727],[-1,0]],[[716,727],[0,0]],[[720,731],[-2,0],[0,-1],[-1,0],[0,-2],[-1,0],[0,-1]],[[720,731],[0,0]],[[721,732],[-1,0],[0,-1]],[[721,733],[0,-1]],[[722,737],[0,-4],[-1,0]],[[722,737],[0,0]],[[723,739],[0,-2],[-1,0]],[[723,739],[0,0]],[[722,748],[1,0],[0,-1],[-1,-1],[1,-1],[-1,0],[0,-1],[1,0],[0,-4],[1,0],[0,-1],[-1,0]],[[722,749],[-1,0],[0,-1],[1,0]],[[722,750],[0,-1]],[[723,750],[0,-1],[-1,1]],[[724,750],[-1,0]],[[724,750],[0,0]],[[726,751],[-1,-1],[-1,0]],[[727,750],[-1,0],[0,1]],[[728,751],[0,-1],[-1,0]],[[728,750],[0,1]],[[730,762],[0,-2],[-1,-1],[0,-3],[-1,-1],[0,-3],[1,0],[0,-2],[-1,0]],[[732,760],[-1,1],[-1,0],[0,1]],[[733,760],[-1,0]],[[733,760],[0,0]],[[734,760],[-1,0]],[[734,760],[0,0]],[[734,760],[0,0]],[[735,759],[0,1],[-1,0]],[[736,761],[0,-1],[-1,0],[0,-1]],[[737,761],[-1,0]],[[738,768],[-1,0],[0,-7]],[[739,769],[0,-1],[-1,0]],[[741,772],[-1,0],[0,-3],[-1,0]],[[741,772],[0,0]],[[741,772],[0,0]],[[741,772],[0,0]],[[742,772],[-1,0]],[[738,841],[-2,-2],[-1,0],[-2,-2]],[[737,841],[1,0]],[[736,842],[1,0],[0,-1]],[[736,842],[0,0]],[[735,842],[1,0]],[[735,842],[0,0]],[[737,851],[0,-2],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-2],[1,0],[0,-1]],[[737,851],[0,0]],[[736,852],[0,-1],[1,0]],[[736,852],[0,0]],[[736,852],[0,0]],[[735,852],[1,0]],[[736,853],[0,-1],[-1,0]],[[736,852],[0,1]],[[737,859],[1,0],[0,-4],[-1,0],[0,-1],[-1,0],[0,-2]],[[736,859],[1,0]],[[735,859],[1,0]],[[735,860],[0,-1]],[[734,860],[1,0]],[[732,865],[1,0],[0,-1],[1,-1],[0,-3]],[[731,865],[1,0]],[[730,870],[1,0],[0,-1],[-1,0],[0,-1],[1,0],[0,-3]],[[728,873],[-1,0],[2,-2],[1,0],[0,-1]],[[728,873],[0,0]],[[728,873],[0,0]],[[728,873],[0,0]],[[728,874],[0,-1]],[[728,874],[0,0]],[[728,874],[0,0]],[[728,874],[0,0]],[[728,874],[0,0]],[[727,876],[0,-1],[1,0],[0,-1]],[[727,875],[0,1]],[[726,877],[0,-1],[1,0],[0,-1]],[[727,877],[-1,0]],[[727,877],[0,0]],[[727,877],[0,0]],[[728,878],[0,-1],[-1,0]],[[728,878],[0,0]],[[729,880],[0,-2],[-1,0]],[[729,880],[0,0]],[[729,880],[0,0]],[[729,881],[1,0],[0,-1],[-1,0]],[[729,881],[0,0]],[[728,883],[0,-1],[1,0],[0,-1]],[[728,883],[0,0]],[[726,885],[1,-1],[0,-1],[1,0]],[[726,884],[0,1]],[[725,884],[1,0]],[[724,884],[1,0]],[[722,884],[2,0]],[[722,884],[0,0]],[[722,884],[0,0]],[[722,884],[0,0]],[[721,884],[1,0]],[[721,884],[0,0]],[[720,886],[0,-1],[1,0],[0,-1]],[[720,886],[0,0]],[[720,886],[0,0]],[[718,887],[1,0],[0,-1],[1,0]],[[719,888],[0,-1],[-1,0]],[[719,888],[0,0]],[[720,888],[-1,0]],[[720,888],[0,0]],[[720,889],[0,-1]],[[720,889],[0,0]],[[721,890],[0,-1],[-1,0]],[[721,889],[0,1]],[[722,890],[-1,0],[0,-1]],[[722,890],[0,0]],[[722,890],[0,0]],[[722,890],[0,0]],[[723,891],[-1,0],[0,-1]],[[723,890],[0,1]],[[723,890],[0,0]],[[723,890],[0,0]],[[724,890],[-1,0]],[[724,890],[0,0]],[[724,890],[0,0]],[[720,897],[0,-1],[-1,0],[0,-1],[1,0],[1,-1],[2,0],[0,-2],[1,0],[0,-1],[-1,0],[0,-1],[1,0]],[[720,897],[0,0]],[[720,897],[0,0]],[[722,898],[0,-1],[-2,0]],[[722,898],[0,0]],[[722,899],[0,-1]],[[722,899],[0,0]],[[721,899],[1,0]],[[721,899],[0,0]],[[720,899],[1,0]],[[720,899],[0,0]],[[720,899],[0,0]],[[720,899],[0,0]],[[719,900],[1,-1]],[[719,900],[0,0]],[[719,900],[0,0]],[[719,900],[0,0]],[[718,900],[1,0]],[[717,901],[1,0],[0,-1]],[[726,946],[20,0],[0,-14],[-3,-3],[-2,-1],[-1,-1],[-1,-2],[-2,-2],[-2,-1],[-3,-3],[-1,0],[-2,-2],[-2,-1],[-5,-5],[-3,0],[-1,-1],[-1,0],[0,-9]],[[723,946],[3,0]],[[720,946],[3,0]],[[717,946],[3,0]],[[697,722],[0,0]],[[699,721],[0,0]],[[800,855],[0,1]],[[800,855],[0,0]],[[800,855],[0,0]],[[799,855],[1,0]],[[799,855],[0,0]],[[799,855],[0,0]],[[799,855],[0,0]],[[798,854],[0,1],[1,0]],[[798,854],[0,0]],[[798,854],[0,0]],[[797,854],[1,0]],[[797,854],[0,0]],[[796,855],[0,-1],[1,0]],[[796,855],[0,0]],[[795,851],[0,1],[1,1],[0,2]],[[795,851],[0,0]],[[795,846],[1,0],[-1,1],[0,1],[-1,1],[0,1],[1,0],[0,1]],[[795,846],[0,0]],[[795,845],[0,1]],[[795,845],[0,0]],[[795,845],[0,0]],[[795,845],[0,0]],[[793,841],[0,2],[1,0],[0,1],[1,0],[0,1]],[[793,842],[0,-1]],[[791,840],[1,0],[0,1],[1,0],[0,1]],[[791,840],[0,0]],[[791,839],[0,1]],[[790,839],[1,0]],[[790,839],[0,0]],[[790,839],[0,0]],[[791,834],[-1,0],[0,5]],[[791,834],[0,0]],[[791,834],[0,0]],[[792,834],[-1,0]],[[792,834],[0,0]],[[792,834],[0,0]],[[792,832],[0,2]],[[792,832],[0,0]],[[791,832],[1,0]],[[791,831],[0,1]],[[791,831],[0,0]],[[791,830],[-1,0],[0,1],[1,0]],[[791,830],[0,0]],[[791,829],[0,1]],[[791,830],[0,-1]],[[790,825],[1,0],[-1,1],[1,0],[0,1],[1,0],[0,1],[-1,1],[0,1]],[[790,825],[0,0]],[[789,825],[1,0]],[[789,825],[0,0]],[[788,826],[1,0],[0,-1]],[[788,825],[0,1]],[[788,826],[0,-1]],[[788,826],[0,0]],[[787,827],[1,-1]],[[787,826],[0,1]],[[786,828],[0,-1],[1,0],[0,-1]],[[786,829],[0,-1]],[[786,828],[0,1]],[[785,829],[0,-1],[1,0]],[[785,828],[0,1]],[[784,828],[1,0]],[[782,824],[1,0],[0,1],[1,0],[0,3]],[[782,824],[0,0]],[[781,823],[1,0],[0,1]],[[781,823],[0,0]],[[780,821],[0,1],[1,1]],[[779,821],[1,0]],[[780,818],[0,1],[-1,0],[0,2]],[[779,818],[1,0]],[[779,818],[0,0]],[[777,822],[0,-1],[1,-1],[0,-1],[1,-1]],[[776,822],[1,0]],[[776,822],[0,0]],[[775,820],[0,1],[1,0],[0,1]],[[775,820],[0,0]],[[775,820],[0,0]],[[774,820],[1,0]],[[774,820],[0,0]],[[773,820],[1,0]],[[773,820],[0,0]],[[771,820],[2,0]],[[770,815],[0,2],[1,1],[0,2]],[[771,815],[-1,0]],[[770,811],[0,1],[1,0],[0,3]],[[769,811],[1,0]],[[767,802],[0,1],[1,0],[0,6],[1,1],[0,1]],[[767,802],[0,0]],[[766,802],[1,0]],[[766,802],[0,0]],[[766,801],[0,1]],[[765,802],[0,-1],[1,0]],[[766,800],[-1,0],[0,2]],[[766,800],[0,0]],[[767,797],[0,2],[-1,0],[0,1]],[[768,797],[-1,0]],[[768,797],[0,0]],[[768,798],[0,-1]],[[769,797],[-1,1]],[[769,797],[0,0]],[[769,797],[0,0]],[[770,797],[-1,0]],[[770,796],[0,1]],[[770,796],[0,0]],[[770,796],[0,0]],[[771,796],[-1,0]],[[771,796],[0,0]],[[771,796],[0,0]],[[772,795],[-1,0],[0,1]],[[772,795],[0,0]],[[772,795],[0,0]],[[772,795],[0,0]],[[772,794],[0,1]],[[773,794],[-1,0]],[[773,795],[0,-1]],[[773,795],[0,0]],[[774,794],[-1,1]],[[775,793],[-1,1]],[[774,793],[1,0]],[[774,792],[0,1]],[[774,793],[0,-1]],[[774,792],[0,1]],[[774,792],[0,0]],[[774,791],[0,1]],[[773,791],[1,0]],[[773,790],[0,1]],[[773,790],[0,0]],[[774,789],[0,1],[-1,0]],[[774,789],[0,0]],[[777,787],[-1,0],[-1,1],[-1,0],[0,1]],[[777,787],[0,0]],[[778,787],[-1,0]],[[778,787],[0,0]],[[781,785],[-1,0],[0,1],[-1,0],[-1,1]],[[781,785],[0,0]],[[782,785],[-1,0]],[[782,785],[0,0]],[[782,785],[0,0]],[[782,785],[0,0]],[[785,779],[-1,0],[0,1],[-1,0],[0,5],[-1,0]],[[786,779],[-1,0]],[[786,778],[0,1]],[[786,778],[0,0]],[[787,778],[-1,0]],[[788,778],[-1,0]],[[788,778],[0,0]],[[789,779],[0,-1],[-1,0]],[[790,779],[-1,0]],[[791,779],[-1,0]],[[792,780],[-1,-1]],[[793,779],[-1,1]],[[794,779],[-1,0]],[[795,779],[-1,0]],[[797,777],[0,1],[-1,0],[0,1],[-1,0]],[[797,777],[0,0]],[[798,777],[-1,0]],[[624,719],[0,-1],[1,0],[0,-2],[2,0],[0,-1],[1,0],[0,1],[1,-1],[0,2],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,-1],[1,-1],[-1,0],[0,-1],[1,-1],[-1,0],[0,-2],[1,0],[0,-1],[1,0]],[[624,720],[0,-1]],[[624,706],[0,1],[-1,0],[0,3],[-1,0],[0,1],[1,0],[0,1],[-1,0],[0,6],[1,0],[0,2],[1,0]],[[668,665],[1,0],[0,-2],[1,0],[0,-3],[1,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-5],[1,0],[0,-4],[-3,0],[0,-2],[-1,0],[0,-5],[-1,0],[0,-2]],[[670,697],[-1,-1],[0,-4],[-1,0],[0,-3],[-1,0],[0,-3],[2,0],[0,-1],[-1,0],[0,-11],[3,0],[0,-4],[-1,-1],[0,-1],[-1,0],[0,-2],[-1,-1]],[[643,717],[2,-4],[0,-1],[2,-4],[1,-1],[3,0],[0,1],[1,0],[0,2],[1,0],[0,1],[3,0],[0,1],[2,0],[0,-1],[1,0],[0,-1],[1,0],[1,-1],[0,-1],[1,0],[0,1],[1,-1],[1,0],[0,-2],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[2,0],[0,-6],[1,0]],[[635,713],[2,0],[2,2],[1,0],[1,1],[2,1]],[[635,713],[0,0]],[[670,697],[0,-1],[2,0],[0,-1],[2,0],[0,1],[1,0],[0,3],[2,0],[0,1],[1,0],[0,1],[1,0],[0,5],[2,0],[0,1],[1,0],[0,1],[1,-1],[3,0],[0,-1],[2,0],[0,-2],[1,1],[0,1],[1,0],[0,1],[1,0],[0,-1],[1,-1],[0,3],[2,0],[0,2],[1,0],[0,2],[1,0],[0,1],[1,0],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[1,0],[0,-7],[1,0],[1,1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,-1],[0,-1],[1,0],[0,1],[2,0],[0,-1]],[[674,663],[-3,0],[0,1],[-1,0],[0,1],[-2,0]],[[675,663],[-1,0]],[[692,677],[0,-1],[-1,0],[0,-1],[-1,0],[0,1],[-2,0],[0,-1],[-1,-1],[1,0],[0,-1],[-3,0],[-1,-1],[0,-1],[-1,-2],[1,0],[0,-1],[-1,0],[0,-3],[-1,0],[0,-1],[-2,0],[0,-1],[-1,1],[-1,0],[0,-1],[-3,0]],[[692,677],[0,0]],[[694,687],[0,-2],[1,0],[0,-1],[-1,0],[0,-1],[-2,0],[0,-6]],[[694,687],[0,0]],[[697,693],[0,-5],[-4,0],[0,-1],[1,0]],[[698,693],[-1,0]],[[698,696],[0,-3]],[[698,696],[0,0]],[[704,704],[-3,0],[0,-1],[-2,0],[0,-2],[-1,1],[0,-1],[-1,-1],[0,-1],[1,0],[0,-3]],[[704,704],[0,0]],[[706,704],[-2,0]],[[706,705],[0,-1]],[[706,705],[0,0]],[[706,705],[0,0]],[[706,705],[0,0]],[[706,705],[0,0]],[[706,705],[0,0]],[[706,705],[0,0]],[[706,705],[0,0]],[[706,706],[0,-1]],[[706,706],[0,0]],[[707,706],[-1,0]],[[707,707],[0,-1]],[[707,706],[0,1]],[[707,706],[0,0]],[[707,706],[0,0]],[[726,668],[0,0]],[[726,668],[0,0]],[[725,668],[1,0]],[[725,667],[0,1]],[[725,667],[0,0]],[[725,666],[0,1]],[[725,666],[0,0]],[[725,666],[0,0]],[[724,667],[0,-1],[1,0]],[[744,654],[0,0]],[[744,654],[0,0]],[[743,654],[1,0]],[[743,654],[0,0]],[[743,654],[0,0]],[[743,654],[0,0]],[[742,654],[1,0]],[[742,654],[0,0]],[[742,654],[0,0]],[[742,654],[0,0]],[[741,654],[1,0]],[[741,655],[0,-1]],[[741,655],[0,0]],[[740,655],[1,0]],[[740,655],[0,0]],[[740,655],[0,0]],[[740,655],[0,0]],[[739,654],[1,1]],[[739,655],[0,-1]],[[739,655],[0,0]],[[738,655],[1,1],[0,-1]],[[738,654],[0,1]],[[738,654],[0,0]],[[737,657],[0,-1],[1,0],[0,-2]],[[737,656],[0,1]],[[737,656],[0,0]],[[737,656],[0,0]],[[737,657],[0,-1]],[[736,656],[0,1],[1,0]],[[736,656],[0,0]],[[736,656],[0,0]],[[736,657],[0,-1]],[[736,657],[0,0]],[[735,658],[1,0],[0,-1]],[[735,658],[0,0]],[[735,658],[0,0]],[[734,659],[0,-1],[1,0]],[[733,662],[0,-2],[1,0],[0,-1]],[[733,662],[0,0]],[[733,662],[0,0]],[[733,662],[0,0]],[[733,662],[0,0]],[[732,662],[1,0]],[[732,662],[0,0]],[[732,662],[0,0]],[[732,661],[0,1]],[[731,663],[0,-2],[1,0]],[[730,664],[1,0],[0,-1]],[[730,664],[0,0]],[[730,664],[0,0]],[[729,664],[1,0]],[[729,664],[0,0]],[[729,665],[0,-1]],[[729,665],[0,0]],[[728,666],[1,0],[0,-1]],[[728,666],[0,0]],[[728,666],[0,0]],[[728,666],[0,0]],[[727,668],[0,-2],[1,0]],[[727,668],[0,0]],[[727,668],[0,0]],[[727,668],[0,0]],[[726,668],[1,0]],[[777,952],[35,0],[0,47],[41,0]],[[770,952],[7,0]],[[723,951],[23,0],[0,1],[24,0]],[[719,951],[2,0]],[[717,946],[0,5]],[[723,946],[-3,0]],[[726,946],[-3,0]],[[717,901],[0,9],[1,0],[1,1],[3,0],[5,5],[2,1],[2,2],[1,0],[3,3],[2,1],[2,2],[1,2],[1,1],[2,1],[3,3],[0,14],[-20,0]],[[718,900],[0,1],[-1,0]],[[719,900],[-1,0]],[[719,900],[0,0]],[[720,899],[-1,1]],[[720,899],[0,0]],[[720,899],[0,0]],[[721,899],[0,0]],[[722,899],[-1,0]],[[722,898],[0,1]],[[722,898],[0,0]],[[720,897],[2,0],[0,1]],[[720,897],[0,0]],[[724,890],[-1,0],[0,1],[1,0],[0,1],[-1,0],[0,2],[-2,0],[-1,1],[-1,0],[0,1],[1,0],[0,1]],[[724,890],[0,0]],[[723,890],[1,0]],[[723,890],[0,0]],[[722,890],[0,1],[1,0]],[[722,890],[0,0]],[[721,889],[0,1],[1,0]],[[720,889],[1,0],[0,1]],[[720,888],[0,1]],[[719,888],[1,0]],[[718,887],[1,0],[0,1]],[[720,886],[-1,0],[0,1],[-1,0]],[[720,886],[0,0]],[[721,884],[0,1],[-1,0],[0,1]],[[721,884],[0,0]],[[722,884],[0,0]],[[722,884],[0,0]],[[724,884],[-2,0]],[[726,884],[-1,0]],[[728,883],[-1,0],[0,1],[-1,1]],[[729,881],[0,1],[-1,0],[0,1]],[[729,880],[1,0],[0,1],[-1,0]],[[729,880],[0,0]],[[728,878],[1,0],[0,2]],[[727,877],[1,0],[0,1]],[[727,877],[0,0]],[[727,875],[0,1],[-1,0],[0,1]],[[728,874],[0,1],[-1,0],[0,1]],[[728,874],[0,0]],[[728,874],[0,0]],[[728,874],[0,0]],[[728,873],[0,1]],[[728,873],[0,0]],[[730,870],[0,1],[-1,0],[-2,2],[1,0]],[[731,865],[0,3],[-1,0],[0,1],[1,0],[0,1],[-1,0]],[[734,860],[0,3],[-1,1],[0,1],[-1,0]],[[735,859],[0,1]],[[736,859],[-1,0]],[[736,852],[0,2],[1,0],[0,1],[1,0],[0,4],[-1,0]],[[735,852],[1,0],[0,1]],[[736,852],[-1,0]],[[736,852],[0,0]],[[737,851],[-1,0],[0,1]],[[735,842],[0,1],[-1,0],[0,2],[1,1],[0,1],[1,0],[0,1],[1,1],[0,2]],[[736,842],[-1,0]],[[737,841],[0,1],[-1,0]],[[737,832],[-3,0],[0,2],[1,0],[0,1],[-1,2],[-1,0],[2,2],[1,0],[2,2]],[[744,828],[-1,0],[0,1],[-1,2],[-1,0],[0,1],[-3,0]],[[747,819],[1,0],[0,1],[-1,0],[1,1],[-2,0],[0,1],[-2,0],[0,1],[-1,1],[1,0],[0,1],[2,2],[-1,1],[0,1],[-1,0]],[[747,819],[0,0]],[[745,816],[0,1],[1,0],[0,2],[1,0]],[[747,811],[0,1],[-1,0],[0,1],[-1,0],[0,2],[1,1]],[[747,809],[1,0],[0,1],[-1,0],[0,1]],[[745,805],[0,2],[1,0],[0,1],[1,1]],[[746,804],[0,1],[-1,0]],[[746,803],[0,1]],[[745,801],[0,2],[1,0]],[[747,801],[-1,0]],[[747,799],[-1,0],[0,1],[1,0],[0,1]],[[747,798],[0,1]],[[747,798],[0,0]],[[746,797],[1,0],[0,1]],[[746,796],[0,1]],[[746,793],[0,1],[1,0],[0,1],[-1,0],[0,1]],[[747,793],[-1,0]],[[745,789],[1,0],[0,2],[1,0],[0,2]],[[744,788],[0,1],[1,0]],[[743,787],[1,1],[0,1]],[[744,787],[-1,0]],[[744,785],[-1,0],[0,1],[1,0],[0,1]],[[745,784],[-1,1]],[[748,780],[0,2],[-1,0],[0,2],[-1,0],[0,2]],[[748,779],[1,0],[0,1],[-1,0]],[[748,778],[-1,0],[0,1],[1,0],[0,1]],[[748,776],[0,2]],[[751,778],[0,0]],[[753,780],[0,0]],[[755,781],[-1,0]],[[757,781],[-1,0],[0,1]],[[758,780],[0,1],[-1,0]],[[762,777],[0,1],[-1,0],[0,2],[-3,0]],[[763,777],[-1,0]],[[762,770],[2,0],[0,1],[1,0],[0,3],[-1,1],[0,2],[-1,0]],[[762,770],[0,0]],[[759,758],[1,0],[0,1],[1,0],[0,2],[-2,2],[0,1],[-1,1],[0,2],[1,0],[0,2],[1,1],[1,0]],[[758,749],[0,5],[1,0],[0,4]],[[757,749],[1,0]],[[757,749],[0,0]],[[756,749],[1,0]],[[756,749],[0,0]],[[756,749],[0,0]],[[755,749],[1,0]],[[754,750],[1,0]],[[754,750],[0,0]],[[754,750],[0,0]],[[753,750],[0,0]],[[752,750],[0,0]],[[751,760],[0,0]],[[749,765],[0,0]],[[748,766],[0,0]],[[747,766],[0,0]],[[746,766],[0,1]],[[745,767],[1,0]],[[745,768],[0,0]],[[744,769],[0,0]],[[744,769],[0,0]],[[743,770],[1,0]],[[742,772],[1,0]],[[742,772],[0,0]],[[741,772],[1,0]],[[741,772],[0,0]],[[739,769],[1,0],[0,3],[1,0]],[[738,768],[1,0],[0,1]],[[737,761],[0,7],[1,0]],[[736,761],[1,0]],[[735,759],[0,1],[1,0],[0,1]],[[734,760],[0,0]],[[733,760],[1,0]],[[733,760],[0,0]],[[732,760],[1,0]],[[728,750],[1,0],[0,2],[-1,0],[0,3],[1,1],[0,3],[1,1],[0,2]],[[727,750],[1,0],[0,1]],[[724,750],[1,0],[1,1]],[[723,750],[1,0]],[[722,750],[1,-1],[0,1]],[[722,749],[0,1]],[[722,748],[-1,0],[0,1],[1,0]],[[723,739],[1,0],[0,1],[-1,0],[0,4],[-1,0],[0,1],[1,0],[-1,1],[1,1],[0,1],[-1,0]],[[722,737],[1,0],[0,2]],[[721,733],[1,0],[0,4]],[[721,732],[0,1]],[[720,731],[0,1],[1,0]],[[716,727],[0,1],[1,0],[0,2],[1,0],[0,1],[2,0]],[[715,727],[1,0]],[[714,727],[1,0]],[[714,727],[0,0]],[[711,723],[0,1],[1,0],[0,2],[1,0],[0,1]],[[711,724],[0,0]],[[710,723],[1,1]],[[710,723],[0,0]],[[708,724],[1,1]],[[708,724],[0,0]],[[707,723],[0,1]],[[706,722],[0,1],[1,0]],[[705,713],[0,1],[-1,0],[0,5],[1,0],[0,1],[-1,0],[0,1],[1,0],[0,1]],[[705,714],[0,-1]],[[705,714],[0,0]],[[706,714],[-1,0]],[[707,713],[0,1],[-1,0]],[[707,706],[1,0],[0,2],[-1,0],[0,5]],[[707,706],[0,0]],[[707,706],[0,0]],[[707,706],[0,0]],[[707,706],[0,1]],[[706,706],[0,0]],[[706,705],[0,1]],[[707,705],[-1,0]],[[707,704],[0,1]],[[708,705],[-1,0],[0,-1]],[[709,703],[0,1],[-1,0],[0,1]],[[709,704],[0,-1]],[[711,698],[0,1],[-1,0],[0,4],[-1,0],[0,1]],[[711,698],[0,0]],[[711,698],[0,0]],[[711,698],[0,0]],[[711,698],[0,0]],[[712,699],[0,-1],[-1,0]],[[715,696],[-1,0],[0,1],[-2,0],[0,2]],[[715,697],[0,-1]],[[716,696],[-1,0],[0,1]],[[719,684],[-1,1],[0,4],[1,0],[0,1],[-1,0],[0,1],[-1,0],[0,2],[-1,0],[0,3]],[[719,680],[1,0],[0,4],[-1,0]],[[719,679],[0,1]],[[718,679],[1,0]],[[718,675],[0,2],[-1,1],[0,2],[1,0],[0,1]],[[718,673],[0,2]],[[718,673],[0,0]],[[719,673],[0,1],[-1,-1]],[[720,672],[-1,0],[0,2]],[[720,671],[0,1]],[[722,670],[0,1],[-1,0]],[[722,670],[0,0]],[[722,669],[0,1]],[[723,669],[-1,0]],[[725,666],[-1,0],[0,2],[-1,0],[0,1]],[[725,666],[0,0]],[[725,667],[0,0]],[[726,668],[-1,0]],[[726,668],[0,0]],[[727,668],[0,0]],[[727,668],[0,0]],[[728,666],[-1,0],[0,2]],[[728,666],[0,0]],[[729,665],[0,1],[-1,0]],[[729,664],[0,1]],[[730,664],[-1,0]],[[730,664],[0,0]],[[731,663],[0,1],[-1,0]],[[732,661],[-1,0],[0,2]],[[732,662],[0,0]],[[733,662],[-1,0]],[[733,662],[0,0]],[[733,662],[0,0]],[[734,659],[0,1],[-1,0],[0,2]],[[735,658],[-1,0],[0,1]],[[735,658],[0,0]],[[736,657],[0,1],[-1,0]],[[736,656],[0,1]],[[736,656],[0,0]],[[737,656],[0,1]],[[737,656],[0,0]],[[738,654],[0,2],[-1,0],[0,1]],[[738,654],[0,0]],[[739,655],[0,1],[-1,-1]],[[739,654],[0,1]],[[740,655],[0,0]],[[740,655],[0,0]],[[741,655],[-1,0]],[[741,654],[0,1]],[[742,654],[-1,0]],[[742,654],[0,0]],[[743,654],[-1,0]],[[743,654],[0,0]],[[744,654],[-1,0]],[[744,654],[0,0]],[[744,655],[0,0]],[[745,655],[0,0]],[[746,651],[0,4],[-1,0]],[[749,657],[0,-1],[-1,0],[0,-2],[-1,0],[0,-2],[-1,0],[0,-1]],[[749,656],[0,1]],[[749,657],[0,-1]],[[750,655],[0,1],[-1,1]],[[751,655],[-1,0]],[[751,655],[0,0]],[[751,655],[0,0]],[[752,655],[-1,0]],[[753,655],[-1,0]],[[753,655],[0,0]],[[753,655],[0,0]],[[754,654],[0,1],[-1,0]],[[754,653],[0,1]],[[755,653],[0,0]],[[755,654],[0,0]],[[756,654],[-1,0]],[[756,654],[0,0]],[[756,654],[0,0]],[[757,656],[0,0]],[[759,659],[-1,0]],[[759,659],[0,0]],[[760,659],[-1,0]],[[760,660],[0,0]],[[761,660],[-1,0]],[[761,661],[0,0]],[[763,661],[-1,0],[0,1]],[[763,661],[0,0]],[[764,661],[-1,0]],[[765,661],[-1,0]],[[765,662],[0,0]],[[766,663],[0,0]],[[767,662],[-1,0],[0,1]],[[766,660],[0,1],[1,0],[0,1]],[[767,658],[0,1],[1,0],[-1,1],[0,1]],[[767,657],[0,1]],[[767,657],[0,0]],[[767,657],[0,0]],[[768,657],[0,0]],[[769,657],[-1,0]],[[769,657],[0,0]],[[770,656],[-1,0],[0,1]],[[770,656],[0,0]],[[770,656],[0,0]],[[770,658],[0,-2]],[[770,658],[0,0]],[[770,658],[0,0]],[[771,657],[0,1],[-1,0]],[[772,652],[0,4],[-1,0],[0,1]],[[773,653],[0,-1],[-1,0]],[[773,653],[0,0]],[[773,653],[0,0]],[[773,653],[0,0]],[[773,645],[0,2],[1,0],[0,1],[-1,0],[0,5]],[[773,644],[0,1]],[[773,645],[0,-1]],[[773,644],[0,1]],[[773,643],[0,1]],[[773,643],[0,0]],[[772,641],[0,1],[1,0],[0,1]],[[772,642],[0,-1]],[[771,639],[0,1],[1,0],[0,2]],[[771,640],[0,-1]],[[771,637],[0,3]],[[771,637],[0,0]],[[770,635],[0,2],[1,0]],[[770,635],[0,0]],[[770,632],[1,1],[0,1],[-1,0],[0,1]],[[772,633],[-1,0],[0,-1],[-1,0]],[[772,633],[0,0]],[[773,633],[-1,0]],[[773,633],[0,0]],[[774,633],[-1,0]],[[774,630],[0,1],[-1,1],[0,1],[1,0]],[[774,630],[0,0]],[[774,629],[0,1]],[[774,628],[0,1]],[[774,628],[0,0]],[[775,628],[-1,0]],[[775,627],[0,1]],[[775,628],[0,-1]],[[776,627],[0,1],[-1,0]],[[775,627],[1,0]],[[775,622],[0,5]],[[775,622],[0,0]],[[776,622],[-1,0]],[[776,622],[0,0]],[[776,622],[0,0]],[[777,622],[-1,0]],[[777,622],[0,0]],[[778,618],[-1,0],[0,4]],[[778,619],[0,-1]],[[778,619],[0,0]],[[778,619],[0,0]],[[779,619],[-1,0]],[[780,620],[-1,0],[0,-1]],[[780,618],[0,2]],[[781,617],[-1,0],[0,1]],[[781,617],[0,0]],[[782,617],[0,0]],[[782,617],[0,0]],[[781,623],[0,0]],[[782,624],[0,0]],[[783,624],[0,0]],[[783,624],[0,0]],[[784,625],[0,0]],[[784,625],[0,1]],[[785,624],[0,1],[-1,0],[0,1]],[[787,625],[-1,0],[0,1]],[[788,624],[0,1],[-1,1]],[[789,625],[0,1]],[[790,626],[0,0]],[[790,626],[0,0]],[[791,628],[0,0]],[[791,629],[0,0]],[[792,629],[0,0]],[[793,627],[-1,0],[0,2]],[[793,627],[0,0]],[[793,627],[0,0]],[[794,626],[0,1]],[[795,626],[0,1]],[[796,626],[-1,0]],[[795,625],[1,0],[0,1]],[[796,621],[-1,0],[0,4]],[[796,621],[0,1]],[[796,621],[0,0]],[[797,620],[-1,1]],[[797,619],[0,1]],[[798,619],[0,1]],[[798,619],[0,0]],[[799,619],[0,1]],[[812,534],[0,47]],[[782,531],[0,2],[1,0],[0,1]],[[782,531],[0,1]],[[780,531],[0,1],[1,0]],[[780,531],[0,0]],[[780,534],[0,0]],[[780,534],[0,0]],[[779,534],[0,0]],[[779,535],[0,1]],[[778,536],[0,0]],[[778,537],[0,0]],[[777,535],[0,2],[1,0]],[[776,533],[0,1],[-1,0],[0,1]],[[782,512],[0,1],[-1,0],[0,1],[-1,0],[0,4],[-1,1],[0,1],[-1,1],[0,5],[-1,1],[0,6]],[[786,507],[-1,1],[0,1],[-1,0],[0,1],[-2,2]],[[804,508],[0,8]],[[804,507],[0,1]],[[806,505],[-1,0],[0,2],[-1,0]],[[806,504],[0,1]],[[807,504],[-1,0]],[[807,504],[0,1]],[[807,505],[0,0]],[[809,505],[-1,0]],[[809,505],[0,0]],[[810,505],[-1,0]],[[813,508],[-1,0]],[[813,508],[0,0]],[[813,507],[0,1]],[[814,507],[-1,0]],[[815,506],[0,1],[-1,0]],[[816,507],[0,1]],[[816,504],[-1,0],[0,1],[1,0],[0,2]],[[815,503],[1,0],[0,2]],[[817,503],[-1,0]],[[819,499],[0,5],[-1,0]],[[821,493],[0,1],[-1,0],[0,3],[-1,0],[0,2],[1,0],[0,1],[-1,0]],[[821,492],[0,1]],[[815,471],[0,2],[1,3],[0,2],[1,2],[0,4],[1,0],[0,3],[1,0],[1,1],[-1,0],[0,1],[1,0],[0,3]],[[822,458],[0,13]],[[818,446],[0,6],[-1,1],[0,2],[1,1],[0,2],[3,0]],[[812,135],[0,311]],[[853,129],[-1,1],[1,0],[0,1],[-1,0],[0,1],[-5,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,1],[-2,0],[-1,-1],[-3,0],[0,-1],[-2,0],[0,1],[-2,0],[-1,-1],[-1,0],[-1,-1],[-7,0],[0,1],[-2,0],[0,-1],[-1,0],[0,2],[-1,0],[0,1],[-3,0],[0,1],[-3,3],[-3,0]],[[853,320],[0,-191]],[[857,326],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[0,-3]],[[857,351],[0,-25]],[[857,418],[0,-67]],[[856,419],[1,-1]],[[856,419],[0,0]],[[846,449],[0,-2],[1,0],[0,-1],[1,-1],[1,-2],[3,-3],[1,-2],[0,-15],[1,-1],[1,-2],[0,-1],[1,0]],[[847,448],[-1,0],[0,1]],[[847,449],[0,-1]],[[847,449],[0,0]],[[847,450],[0,-1]],[[846,449],[1,0],[0,1]],[[844,720],[0,-1],[1,0],[0,-2],[1,0],[0,1],[1,0],[0,-1],[-1,-1],[0,-2],[-1,0],[0,-6],[3,0],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[1,-1],[0,-4],[-1,0],[1,-1],[1,0],[0,-1],[-1,0],[0,-4],[-1,-1],[-2,0],[0,-2],[1,0],[0,-1],[-1,0],[0,-2],[1,-1],[0,2],[1,1],[0,1],[1,0],[-1,-1],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[-1,-1],[0,-2],[3,0],[0,3],[1,1],[0,-39],[-1,0],[0,-1],[-1,0],[-1,-1],[-8,0],[0,-6],[-1,0],[-1,-1],[0,-2],[-1,-1],[0,-5],[1,-1],[13,0],[0,-113],[-1,-1],[0,-3],[-3,-6],[-1,-3],[0,-2],[-1,-2],[-1,-3],[-2,-4],[0,-11],[1,-2],[0,-8],[1,-2],[0,-5],[1,-3],[0,-9],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[1,-1],[0,-1],[1,0],[0,3],[1,1],[0,-2]],[[845,722],[-1,-1],[0,-1]],[[846,724],[0,-1],[-1,0],[0,-1]],[[846,724],[0,0]],[[846,724],[0,0]],[[846,724],[0,0]],[[847,725],[-1,-1]],[[847,725],[0,0]],[[847,725],[0,0]],[[848,725],[-1,0]],[[848,725],[0,0]],[[848,725],[0,0]],[[848,726],[0,-1]],[[848,726],[0,0]],[[849,726],[-1,0]],[[849,726],[0,0]],[[849,726],[0,0]],[[849,726],[0,0]],[[849,727],[0,-1]],[[849,727],[0,0]],[[850,729],[0,-1],[-1,-1]],[[851,729],[-1,0]],[[851,731],[0,-2]],[[851,731],[0,0]],[[851,731],[0,0]],[[851,731],[0,0]],[[852,731],[-1,0]],[[852,731],[0,0]],[[852,731],[0,0]],[[852,731],[0,0]],[[852,731],[0,0]],[[852,731],[0,0]],[[852,731],[0,0]],[[852,730],[0,1]],[[852,730],[0,0]],[[852,730],[0,0]],[[853,730],[-1,0]],[[853,730],[0,0]],[[853,730],[0,0]],[[853,730],[0,0]],[[853,730],[0,0]],[[853,730],[0,0]],[[853,730],[0,0]],[[853,730],[0,0]],[[853,730],[0,0]],[[854,729],[0,1],[-1,0]],[[854,730],[0,-1]],[[854,729],[0,1]],[[854,730],[0,-1]],[[854,729],[0,1]],[[855,730],[-1,0],[0,-1]],[[855,730],[0,0]],[[855,730],[0,0]],[[855,729],[0,1]],[[855,729],[0,0]],[[855,729],[0,0]],[[855,729],[0,0]],[[855,729],[0,0]],[[855,733],[0,-4]],[[856,733],[-1,0]],[[856,733],[0,0]],[[856,733],[0,0]],[[856,733],[0,0]],[[856,733],[0,0]],[[856,733],[0,0]],[[857,733],[-1,0]],[[857,733],[0,0]],[[857,733],[0,0]],[[858,733],[-1,0]],[[858,733],[0,0]],[[858,735],[0,-2]],[[858,735],[0,0]],[[858,735],[0,0]],[[859,735],[-1,0]],[[859,735],[0,0]],[[859,735],[0,0]],[[859,735],[0,0]],[[859,735],[0,0]],[[860,738],[0,-3],[-1,0]],[[860,738],[0,0]],[[861,738],[-1,0]],[[861,738],[0,0]],[[861,738],[0,0]],[[861,736],[0,2]],[[861,736],[0,0]],[[862,736],[-1,0]],[[862,736],[0,0]],[[862,736],[0,0]],[[861,736],[1,0]],[[862,737],[0,0]],[[863,737],[-1,0]],[[863,738],[0,0]],[[863,749],[0,0]],[[864,749],[0,0]],[[868,749],[0,1],[-1,0],[-1,1],[-1,0]],[[870,754],[0,0]],[[870,754],[0,0]],[[871,756],[0,0]],[[871,757],[0,0]],[[873,763],[0,0]],[[873,767],[0,0]],[[873,768],[0,0]],[[871,767],[0,1],[1,0]],[[871,767],[0,0]],[[870,766],[0,1],[1,0]],[[869,766],[1,0]],[[868,766],[1,0],[0,1]],[[867,764],[0,1],[1,0],[0,1]],[[866,764],[1,0]],[[866,764],[0,0]],[[865,764],[0,0]],[[865,764],[0,0]],[[863,764],[1,0]],[[862,769],[0,0]],[[862,771],[0,0]],[[861,771],[0,0]],[[859,773],[0,0]],[[858,773],[1,1]],[[858,773],[0,1]],[[857,774],[0,0]],[[856,775],[1,0]],[[856,774],[0,1]],[[855,774],[0,1]],[[854,775],[1,0]],[[852,784],[0,0]],[[850,791],[0,0]],[[849,791],[0,0]],[[849,792],[0,0]],[[848,793],[1,0]],[[848,794],[0,0]],[[846,794],[0,1],[1,0]],[[846,794],[0,1]],[[844,796],[0,0]],[[842,797],[1,0]],[[842,797],[0,0]],[[839,796],[2,0],[0,1],[1,0]],[[838,796],[1,0]],[[836,795],[1,0],[0,1],[1,0]],[[836,795],[0,0]],[[833,791],[0,2],[1,0],[0,2],[1,0]],[[834,788],[1,0],[0,2],[-1,0],[0,2]],[[834,787],[0,1]],[[833,786],[0,1],[1,0]],[[832,784],[0,1],[1,1]],[[830,779],[0,1],[1,0],[0,2],[1,1],[0,1]],[[830,779],[0,0]],[[830,779],[0,0]],[[830,777],[1,0],[0,2]],[[829,777],[1,0]],[[828,775],[0,1],[1,1]],[[826,774],[1,0],[0,1],[1,0]],[[826,774],[0,0]],[[821,776],[1,1]],[[820,776],[0,0]],[[820,776],[0,0]],[[817,778],[1,0]],[[815,777],[2,2]],[[812,774],[1,0],[0,1],[1,1],[0,1],[1,0]],[[809,773],[0,1],[3,0]],[[807,772],[0,1],[2,0]],[[805,772],[1,1]],[[803,773],[1,0]],[[803,773],[0,0]],[[802,773],[0,0]],[[802,773],[0,0]],[[801,773],[0,0]],[[799,775],[0,0]],[[799,777],[0,0]],[[797,777],[0,0]],[[794,779],[1,0]],[[792,780],[1,-1]],[[791,779],[1,1]],[[790,779],[1,0]],[[789,779],[1,0]],[[788,778],[1,0],[0,1]],[[787,778],[1,0]],[[786,778],[0,0]],[[785,779],[1,0]],[[782,785],[0,0]],[[782,785],[0,0]],[[781,785],[0,0]],[[778,787],[0,0]],[[777,787],[0,0]],[[774,789],[0,0]],[[773,790],[0,0]],[[774,791],[-1,0]],[[774,792],[0,0]],[[774,792],[0,1]],[[775,793],[-1,0]],[[773,795],[1,-1]],[[773,794],[0,1]],[[772,794],[1,0]],[[772,795],[0,0]],[[772,795],[0,0]],[[771,796],[0,0]],[[770,796],[1,0]],[[770,796],[0,0]],[[769,797],[1,0]],[[769,797],[0,0]],[[768,797],[0,1]],[[767,797],[1,0]],[[766,800],[0,0]],[[766,801],[-1,0],[0,1]],[[766,802],[0,0]],[[767,802],[0,0]],[[770,811],[-1,0]],[[770,815],[1,0]],[[773,820],[-2,0]],[[774,820],[-1,0]],[[775,820],[-1,0]],[[775,820],[0,0]],[[776,822],[0,0]],[[779,818],[-1,1],[0,1],[-1,1],[0,1]],[[780,818],[-1,0]],[[780,821],[-1,0]],[[781,823],[0,0]],[[782,824],[0,0]],[[785,828],[-1,0]],[[786,828],[-1,0],[0,1]],[[786,828],[0,1]],[[787,826],[0,1],[-1,0],[0,1]],[[788,826],[-1,1]],[[788,825],[0,1]],[[789,825],[0,1],[-1,0]],[[789,825],[0,0]],[[790,825],[0,0]],[[791,829],[0,1]],[[791,830],[0,0]],[[791,831],[0,0]],[[792,832],[-1,0]],[[792,832],[0,0]],[[792,834],[0,0]],[[791,834],[1,0]],[[791,834],[0,0]],[[790,839],[0,0]],[[791,839],[-1,0]],[[791,840],[0,0]],[[793,841],[0,1]],[[795,845],[0,0]],[[795,845],[0,0]],[[795,846],[0,0]],[[795,851],[0,0]],[[796,855],[0,0]],[[797,854],[-1,0],[0,1]],[[798,854],[-1,0]],[[798,854],[0,0]],[[799,855],[0,0]],[[799,855],[0,0]],[[800,855],[-1,0]],[[800,855],[0,0]],[[799,856],[1,0]],[[797,856],[1,0]],[[796,857],[0,0]],[[794,857],[1,0],[0,1]],[[793,857],[1,0],[0,1]],[[793,857],[0,0]],[[793,858],[0,0]],[[794,859],[-1,0]],[[794,859],[0,1]],[[795,861],[0,0]],[[796,862],[-1,0]],[[796,862],[0,0]],[[794,867],[1,0]],[[794,870],[0,0]],[[793,871],[0,0]],[[795,873],[0,0]],[[795,885],[0,1]],[[799,886],[0,0]],[[801,887],[-1,0]],[[802,887],[0,0]],[[804,890],[0,0]],[[805,890],[0,0]],[[805,891],[0,0]],[[807,892],[-1,0]],[[807,892],[0,1]],[[811,894],[0,0]],[[812,894],[-1,0]],[[812,895],[0,0]],[[809,901],[0,0]],[[807,902],[0,0]],[[807,908],[0,0]],[[853,943],[0,0]],[[853,971],[0,-28]],[[853,999],[0,-28]],[[437,999],[42,0]],[[437,960],[0,39]],[[437,960],[0,0]],[[451,941],[0,0]],[[449,920],[1,0],[0,5],[1,1],[0,3],[1,1],[1,0],[0,2],[-1,0],[0,1],[-2,0],[0,2],[1,0],[1,1],[0,1],[1,0],[0,1],[1,0],[0,1],[-1,1],[-4,0],[0,1],[2,0]],[[449,920],[0,0]],[[438,899],[2,2]],[[439,889],[-1,0],[-1,1],[-4,0],[-1,1],[-1,0]],[[553,803],[0,2],[-1,2],[0,4],[1,2],[0,1],[1,0],[0,2],[1,1],[0,2],[1,2],[0,7],[-1,1],[-2,4],[-1,1],[1,1],[0,8],[1,2],[0,4],[3,3],[1,0],[2,2],[1,2],[2,2],[1,2],[1,1],[1,2],[1,0],[0,1],[-1,0],[1,1],[-1,0],[0,2],[-1,0],[0,2],[1,0],[0,2],[-1,0],[0,6],[-1,0],[0,2],[-2,0],[-1,1],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[0,1],[1,0],[0,1],[2,0],[1,-1],[0,-1],[1,0],[0,-1],[2,0],[0,-1],[1,1],[3,0],[0,-1],[1,0],[0,1],[1,1],[1,0],[0,3],[1,0],[0,2],[1,0],[0,1],[1,0],[1,-1],[0,1],[2,0],[1,-1],[1,0],[1,-1],[1,0],[0,-1],[-1,-1],[0,-1]],[[563,801],[0,1],[-1,0],[1,1],[0,1],[-1,0],[0,1],[-2,0],[0,1],[-2,0],[-1,1],[-1,-1],[-2,0],[0,-3],[-1,0]],[[565,799],[0,1],[-1,0],[0,1],[-1,0]],[[578,811],[-1,0],[0,-1],[-1,0],[0,-1],[-3,0],[0,-2],[1,-1],[-2,0],[0,-2],[-1,0],[0,-4],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[0,-1],[-3,0]],[[577,829],[0,-2],[-1,0],[0,-6],[1,0],[-1,-1],[-1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[-1,0],[0,-2],[1,0],[0,-1],[1,-1],[0,-2]],[[577,830],[0,-1]],[[577,835],[-1,-1],[-1,0],[0,-1],[-2,0],[0,-1],[2,-2],[0,1],[2,-1]],[[577,835],[0,0]],[[580,883],[0,-1],[-1,0],[0,-1],[-1,-1],[1,-1],[0,-1],[1,0],[3,-3],[0,-1],[-2,-1],[-1,-2],[0,-1],[1,0],[0,-2],[1,0],[0,-2],[1,0],[0,-2],[-1,0],[0,-5],[1,0],[0,-2],[1,-1],[0,-2],[-1,0],[0,-2],[1,0],[3,-3],[0,-2],[-1,0],[0,-1],[-1,0],[0,-1],[-1,-1],[-1,-2],[-1,0],[0,-1],[-1,0],[0,-2],[-2,0],[0,-1],[-2,-2],[0,-1]],[[588,789],[0,-1],[1,0],[0,2],[5,0],[0,-2],[1,-1],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[2,0],[0,-2],[1,0],[0,-3],[3,0],[0,-1],[1,1],[2,0],[0,-2],[3,0],[0,-1],[2,0],[0,-1],[2,0],[0,-3],[-1,0],[0,-1],[1,0],[0,-1],[-1,0],[0,-5],[-3,0],[0,-1],[-1,0],[0,-3]],[[565,785],[0,1],[1,0],[2,2],[0,-1],[1,1],[3,0],[0,-1],[3,0],[0,-1],[1,0],[0,-1],[1,0],[0,1],[4,0],[0,-1],[3,0],[0,-1],[1,0],[0,1],[-1,0],[0,1],[1,1],[0,2],[3,0]],[[541,627],[-2,-2],[-1,1],[0,1],[-1,1],[-1,0],[0,1],[-2,0],[0,1],[-1,0],[0,1],[-1,1],[0,2],[-1,0],[-2,2],[-1,-1],[0,2],[-1,0],[0,5],[-1,0],[0,4],[1,1],[0,2],[-1,2],[1,0],[0,11],[-1,2],[0,2],[-1,0],[0,1],[1,0],[1,1],[0,1],[1,1],[0,6],[1,0],[0,1],[1,1],[0,1],[1,0],[1,1],[-1,0],[0,4],[1,0],[0,1],[2,-2],[4,0],[2,-2],[1,0],[2,-2],[0,-4],[1,0],[0,-1],[2,0],[1,-1],[1,0],[1,-1],[1,0],[0,-1],[2,-2],[1,0],[1,1],[1,2],[-1,1],[0,5],[1,1],[0,1],[2,2],[1,0],[2,2],[0,-1],[1,1],[0,-1],[1,0],[0,18],[-1,0],[0,2],[-1,-1],[-1,0],[0,5],[-1,0],[0,1],[-1,-1],[0,1],[-1,0],[0,2],[-1,1],[0,1],[1,1],[0,3],[-1,0],[0,1],[-1,0],[0,2],[-1,0],[0,2],[2,0],[0,-1],[1,-1],[0,3],[1,0],[0,2],[1,0],[0,2],[2,0],[0,2],[3,0],[0,5],[-1,0],[0,4],[1,1],[0,2],[-1,0],[0,8],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[0,2],[-1,0],[0,1],[-1,1],[0,2],[-1,0],[0,2],[2,0],[0,2],[1,0],[0,2],[1,0],[0,2],[1,1],[0,1],[1,0],[0,1],[1,0],[0,1],[-1,0],[0,1],[-1,1],[0,2],[1,0],[0,2],[1,1],[0,1],[-1,0],[0,1],[1,0],[0,1],[2,2],[0,1],[1,0],[0,5],[-1,0],[0,1]],[[541,627],[0,0]],[[566,608],[-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],[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],[0,1],[-2,0],[0,-1],[-1,0],[-1,-1]],[[566,608],[0,0]],[[569,611],[0,-1],[-3,0]],[[569,612],[0,-1]],[[569,613],[0,-1]],[[569,615],[0,0]],[[569,618],[0,-1]],[[569,621],[0,-1]],[[587,623],[-1,-1],[-17,0]],[[601,622],[-14,0]],[[602,622],[-1,0]],[[602,621],[0,0]],[[604,621],[-2,0]],[[601,749],[1,0],[0,-2],[1,0],[0,-1],[2,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[3,-3],[0,-1],[1,-1],[1,0],[1,-1],[0,-1],[1,0],[0,-3],[1,-1],[-1,-1],[1,-1],[0,-1],[1,0],[0,1],[3,0],[0,-2],[1,0],[0,-1],[1,0],[0,-3],[-1,0],[0,-1],[1,0],[0,-1],[2,0],[0,-2],[1,0]],[[601,749],[0,0]],[[604,759],[0,-5],[-1,0],[0,-2],[-1,1],[-1,0],[0,-4]],[[606,761],[-2,-2]],[[770,428],[-4,0],[0,9],[4,0]],[[343,144],[0,-2],[-3,0],[0,7],[3,0],[0,-4]],[[687,999],[0,-44],[7,0]],[[645,999],[42,0]],[[604,960],[41,0],[0,39]],[[588,889],[2,0],[0,-1],[2,0],[1,-1],[0,-1],[3,0],[0,-1],[4,0],[1,-1],[1,0],[0,-1],[2,0],[0,55],[-6,0],[0,11],[6,0],[0,11]],[[580,883],[1,0],[0,1],[2,0],[0,2],[1,0],[0,-1],[1,0],[0,3],[2,0],[0,1],[1,0]],[[577,835],[0,0]],[[577,829],[0,1]],[[588,789],[-1,0],[0,4],[-1,0],[0,1],[1,0],[0,1],[1,0],[0,-1],[1,0],[0,1],[1,0],[0,3],[-2,0],[0,2],[-2,0],[0,3],[-1,0],[0,5],[-1,0],[0,1],[-3,0],[0,1],[-2,0],[0,1],[-1,0]],[[604,759],[2,2]],[[601,749],[0,0]],[[635,713],[0,0]],[[640,787],[0,-2],[-1,0],[0,-1],[-1,0],[0,-1],[-2,0],[0,-1],[1,0],[-2,-2],[-1,1],[0,-1],[1,0],[0,-4],[-2,0],[0,2],[-1,0],[0,2],[-1,0],[0,-3],[-1,0],[0,-1],[-1,-1],[0,-2],[1,0],[0,-2],[-1,0],[0,-1],[-1,-2],[2,0],[0,-3],[1,-1],[0,1],[2,0],[0,-1],[1,-1],[0,-1],[1,-1],[0,-2],[-1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[2,0],[0,-3],[-1,-1],[0,-1],[-1,0],[0,-5],[1,0],[0,-2],[-2,0],[0,-4],[1,0],[2,-2],[0,-3],[1,0],[0,-2],[1,-1],[0,-1],[1,0],[0,-5],[1,-3],[0,-4],[1,-2]],[[862,736],[0,0]],[[861,736],[1,0]],[[861,738],[0,-2]],[[861,738],[0,0]],[[860,738],[0,0]],[[859,735],[0,0]],[[859,735],[0,0]],[[858,735],[1,0]],[[858,735],[0,0]],[[858,733],[0,0]],[[857,733],[0,0]],[[856,733],[1,0]],[[856,733],[0,0]],[[856,733],[0,0]],[[855,733],[1,0]],[[855,729],[0,0]],[[855,729],[0,0]],[[855,730],[0,-1]],[[855,730],[0,0]],[[854,730],[0,-1]],[[854,730],[0,-1]],[[853,730],[1,0],[0,-1]],[[853,730],[0,0]],[[853,730],[0,0]],[[853,730],[0,0]],[[853,730],[0,0]],[[852,730],[0,0]],[[852,731],[0,-1]],[[852,731],[0,0]],[[852,731],[0,0]],[[852,731],[0,0]],[[851,731],[0,0]],[[851,731],[0,0]],[[850,729],[1,0]],[[849,727],[0,0]],[[849,726],[0,0]],[[849,726],[0,0]],[[848,726],[0,0]],[[848,725],[0,0]],[[847,725],[1,0]],[[847,725],[0,0]],[[846,724],[0,0]],[[846,724],[0,0]],[[844,720],[0,1],[1,1]],[[847,450],[0,-1],[-1,0]],[[847,449],[0,0]],[[846,449],[0,-1],[1,0]],[[856,419],[0,0]],[[882,409],[0,2],[-1,0],[0,1],[-1,1],[0,2],[-1,0],[0,-1],[-1,0],[0,1],[-1,1],[0,2],[-1,0],[1,1],[0,1],[1,-1],[2,0],[0,6],[-1,0],[0,4],[1,1],[0,3],[-1,1],[1,0],[0,2],[-1,0],[0,1],[1,1],[0,1],[-2,0],[0,-3],[-1,1],[0,-1],[-1,-1],[0,-1],[-1,0],[0,2],[-1,0],[0,-2],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,2],[-1,1],[-1,0],[0,-1],[-1,0],[-1,-1],[-3,0],[0,1],[-1,0],[0,-1],[-1,-1],[0,-4],[2,0],[0,-1],[-1,-1],[0,-2],[-1,0],[0,-3],[-1,-1],[0,-2],[-1,-1],[0,-4],[-1,0]],[[882,409],[0,0]],[[895,724],[0,-130]],[[707,706],[0,0]],[[707,713],[0,-5],[1,0],[0,-2],[-1,0]],[[706,714],[1,0],[0,-1]],[[705,714],[0,0]],[[704,718],[0,-4],[1,0],[0,-1]],[[565,785],[0,4],[-1,0],[0,2],[1,0],[0,1],[1,0],[0,3],[-1,0],[0,4]],[[520,971],[0,28]],[[535,112],[-2,0],[0,-1],[-2,0],[0,1],[-3,0],[-1,-1],[-1,1],[-2,0],[0,-1],[-4,0]],[[562,110],[-1,0],[0,1],[-2,0],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[-2,0],[1,2],[0,1],[-1,0],[0,1],[-4,0],[0,-1],[-1,0],[-1,-1],[0,1],[-1,0],[0,3],[-1,1],[-3,0],[-1,-1],[-1,0],[0,-3],[-1,1],[-1,0],[-1,-1],[0,1],[-1,0],[0,1],[-2,0]],[[576,528],[-5,0],[0,1],[-1,0],[0,-2],[-2,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,-3],[1,0],[0,-1],[2,0],[0,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[-1,0],[0,-2],[1,0],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[-2,0],[0,-2],[-1,-1],[1,0],[0,-2],[1,0],[0,-4],[1,-1],[0,-3],[-1,-1],[2,0],[0,-1],[-1,-1],[1,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-2],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,1],[-3,0],[0,-3],[-3,0],[0,-2],[-1,0],[0,-8],[-1,0],[0,-1],[-1,1],[0,-5],[1,0],[0,-1],[-1,0],[0,-4],[-1,0],[0,-4],[1,0],[0,-1],[2,0],[0,-1],[-1,0],[0,-1],[4,0],[0,-14],[1,0],[0,-8],[1,1],[2,0],[0,1],[1,0],[0,-1],[1,0],[0,-11],[-6,0],[0,-17],[1,0],[0,-3],[1,0],[0,-2],[1,0],[0,-2],[1,0],[0,-1],[5,0],[0,-1],[-1,0],[0,-2],[-2,0],[0,-1],[-1,-1],[0,2],[-1,-1],[0,2],[-1,-1],[-2,0],[-1,-1],[-2,0],[0,-21],[-3,0],[0,-36],[-1,0],[0,-1],[-1,0],[0,-1],[-3,0],[-1,1],[-1,0],[0,3],[-1,0],[0,1],[-1,0],[0,-3],[-1,0],[0,-2],[1,-1],[0,-3],[1,-2],[0,-3],[1,-1],[0,-2],[1,-1],[0,-1],[1,-2],[0,-4],[-1,0],[0,-4],[1,-1],[0,-5],[1,-1],[2,0],[0,-1],[1,-1],[2,0],[0,1],[1,1],[3,0],[1,1],[0,1],[1,0],[0,-200]],[[554,802],[2,0],[1,-1],[6,0]],[[554,802],[0,0]],[[553,803],[1,-1]],[[562,999],[0,-50],[34,0],[0,-31],[-34,0],[0,-25],[1,1],[2,0],[0,1],[5,0],[0,1],[1,0],[1,-1],[1,0],[1,-1],[0,1],[5,0],[1,-1],[2,0],[0,-1],[3,0],[0,-1],[1,0],[0,-1],[1,0],[0,-2],[1,0]],[[520,999],[42,0]],[[999,0],[0,29]],[[999,29],[0,-29]],[[999,766],[0,-737]],[[978,787],[1,-1],[2,-1],[1,-2],[2,-2],[2,-1],[1,-2],[3,-3],[2,-1],[1,-2],[6,-6]],[[978,781],[0,6]],[[971,197],[-13,0]],[[978,197],[-7,0]],[[999,29],[0,38],[-1,0],[-2,1],[-12,0],[-2,1],[-4,0]],[[312,130],[0,3]],[[316,130],[-4,0]],[[316,119],[0,11]],[[312,119],[4,0]],[[312,0],[0,119]],[[354,72],[0,-72],[-42,0]],[[316,119],[-4,0]],[[310,130],[6,0]],[[310,130],[0,0]],[[848,78],[-11,0],[0,12],[11,0],[0,-12]],[[999,830],[0,-64]],[[104,999],[0,-109],[-5,0],[0,-1],[-2,0],[-1,1],[-5,0],[-1,1],[-2,0],[-1,1],[-8,0],[0,1],[-1,0],[0,1],[-6,0],[-1,1],[-1,0],[-1,1],[-2,0],[0,1],[-3,0],[-1,-1],[-1,0],[0,-1]],[[62,999],[42,0]],[[62,915],[0,84]],[[62,895],[0,20]],[[395,964],[0,35],[42,0]],[[437,960],[0,0]],[[554,802],[0,0]],[[62,895],[-1,-1],[-5,0],[-2,-2],[-1,0],[-1,-1],[-3,0],[0,-1],[-2,0],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-2,-2],[-6,0],[0,-1],[-2,-1],[-4,-4]],[[62,915],[0,-20]],[[21,999],[41,0]],[[21,915],[0,84]],[[21,891],[0,24]],[[23,888],[-1,1],[-1,2]],[[25,885],[-1,1],[-1,2]],[[29,880],[-3,3],[-1,2]],[[31,877],[-2,1],[0,2]],[[708,955],[0,0]],[[687,999],[42,0]],[[343,762],[1,-1],[0,-2]],[[21,494],[0,89]],[[60,486],[-39,0],[0,8]],[[60,498],[0,-12]],[[54,508],[1,-2],[1,-1],[1,-2],[1,-1],[0,-2],[2,-2]],[[54,522],[0,-14]],[[54,527],[0,-5]],[[62,527],[-8,0]],[[62,530],[0,-3]],[[21,583],[0,0]],[[857,322],[-1,-1],[-1,0],[-1,-1],[-1,0],[0,3],[1,1],[1,0],[1,1],[1,0],[0,1]],[[857,323],[0,-1]],[[857,324],[0,-1]],[[857,326],[0,-2]],[[853,943],[0,28]],[[853,999],[42,0]],[[21,758],[0,8]],[[21,753],[0,5]],[[21,745],[0,8]],[[21,739],[0,6]],[[21,737],[0,2]],[[21,731],[0,6]],[[21,723],[0,8]],[[17,694],[4,0],[0,29]],[[0,694],[17,0]],[[0,666],[0,28]],[[7,261],[7,0],[0,-11],[-7,0]],[[7,250],[0,11]],[[728,125],[0,466]],[[770,132],[0,1],[-1,1],[-3,0],[0,-3],[-2,0],[-1,1],[-1,-1],[-1,0],[0,-1],[-1,1],[-8,0],[-1,-1],[-8,0],[-1,-1],[-1,0],[0,1],[-4,0],[0,1],[-2,0],[-1,-1],[0,-1],[1,0],[0,-1],[-2,0],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0]],[[756,621],[0,-3],[1,0],[-1,-1],[0,1],[-1,0],[0,-1],[1,-1],[0,-2],[-1,0],[1,-1],[0,-2],[1,-1],[0,-2],[1,0],[0,-2],[1,-1],[-1,0],[0,-2],[1,0],[0,-1],[1,0],[1,-1],[0,-9],[-1,-1],[0,-3],[1,-1],[0,-1],[4,0],[0,1],[1,1],[0,1],[1,0],[0,1],[2,2],[0,-3],[1,0],[0,-23],[-1,-1],[0,-1],[1,0],[0,-11]],[[760,576],[-1,-1],[0,1],[-1,0],[-1,2],[-2,2],[0,-58],[1,0],[1,1]],[[762,576],[-2,0]],[[761,533],[0,1],[1,1],[0,41]],[[757,523],[1,2],[0,2],[3,6]],[[146,999],[0,-107]],[[104,999],[42,0]],[[62,895],[0,0]],[[25,857],[1,2],[3,3],[2,1],[0,14]],[[23,855],[0,1],[2,1]],[[21,853],[0,1],[2,1]],[[18,850],[1,2],[2,1]],[[17,849],[1,1]],[[17,845],[0,4]],[[119,444],[0,22],[-15,0]],[[119,427],[0,17]],[[146,892],[-1,0]],[[29,467],[4,0]],[[26,450],[0,3],[1,2],[0,3],[1,3],[1,2],[0,4]],[[25,447],[0,2],[1,1]],[[24,438],[0,4],[1,2],[0,3]],[[24,436],[0,2]],[[24,433],[0,3]],[[21,387],[0,29],[1,1],[1,2],[1,0],[1,3],[0,8],[-1,3]],[[21,380],[0,7]],[[21,375],[0,5]],[[21,355],[0,20]],[[21,344],[0,11]],[[21,340],[0,4]],[[21,328],[0,12]],[[21,320],[0,8]],[[21,315],[0,5]],[[21,310],[0,5]],[[21,250],[0,60]],[[21,250],[0,0]],[[21,222],[0,28]],[[21,65],[0,157]],[[62,73],[-3,0],[0,-1],[-1,0],[0,-3],[-1,-1],[0,-1],[-1,-1],[-2,0],[-1,-1],[-3,0],[-1,-1],[-3,0],[-1,-1],[-7,0],[-1,1],[-15,0],[-1,1]],[[33,427],[3,0],[0,-50]],[[33,455],[0,-15]],[[21,250],[0,-28]],[[20,248],[1,2]],[[0,217],[1,1],[1,2],[1,1],[1,2],[1,1],[2,4],[1,1],[3,6],[1,1],[1,2],[3,3],[2,4],[1,1],[1,2]],[[0,67],[0,150]],[[21,65],[-12,0],[-1,1],[-5,0],[-2,1],[-1,0]],[[21,915],[0,-24]],[[0,916],[0,83],[21,0]],[[21,891],[-1,1],[-1,0],[0,1],[-1,1],[0,1],[-4,4],[0,1],[-1,0],[0,1],[-3,3],[0,1],[-1,0],[0,1],[-4,4],[0,1],[-1,0],[0,1],[-4,4]],[[119,444],[0,-17],[-7,0]],[[104,427],[0,34]],[[112,427],[-8,0]],[[298,561],[0,0]],[[298,560],[0,0]],[[312,999],[42,0]],[[0,694],[0,72]],[[21,723],[0,-29],[-4,0]],[[21,731],[0,-8]],[[21,737],[0,-6]],[[21,745],[0,-6]],[[21,758],[0,-5]],[[146,999],[41,0]],[[146,892],[0,0]],[[760,576],[2,0]],[[761,533],[-3,-6],[0,-2],[-1,-2]],[[21,486],[39,0]],[[5,486],[16,0]],[[5,457],[0,29]],[[15,416],[0,5],[1,2],[0,7],[-1,2],[-1,3],[-3,6],[0,2],[-2,4],[-1,3],[-1,1],[0,2],[-2,4]],[[8,416],[7,0]],[[21,355],[-21,0],[1,3],[0,2],[1,2],[0,3],[2,4],[0,3],[1,2],[0,3],[2,4],[0,3],[1,2],[0,30]],[[21,380],[0,-5]],[[21,387],[0,-7]],[[24,436],[0,-3]],[[25,447],[0,-3],[-1,-3],[0,-3]],[[26,450],[-1,-3]],[[58,467],[-29,0]],[[60,486],[0,-19]],[[66,467],[-6,0]],[[78,435],[-7,0]],[[82,435],[-4,0]],[[83,438],[0,-3]],[[62,527],[5,0]],[[54,527],[8,0]],[[54,508],[0,14]],[[60,498],[-2,3],[-1,1],[-1,2],[-1,1],[0,2],[-1,1]],[[60,486],[0,12]],[[449,920],[-6,0],[-1,1],[-6,0]],[[451,941],[0,0]],[[749,657],[1,-1],[0,-1]],[[749,657],[0,-1]],[[746,651],[0,0]],[[753,655],[1,0],[0,-1]],[[753,655],[0,0]],[[751,655],[1,0]],[[751,655],[0,0]],[[604,999],[41,0]],[[604,960],[0,39]],[[857,324],[0,27]],[[857,323],[0,1]],[[857,323],[0,0]],[[891,287],[-1,0],[-1,1],[0,1],[-1,1],[0,1],[-1,1],[0,5],[-1,1],[0,2],[-1,1],[-2,0],[0,-2],[-1,0],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1],[-1,1],[-1,2],[0,2],[-1,0],[0,2],[-1,0],[-1,1],[0,2],[-1,1],[0,4],[-1,1],[0,2],[-1,1],[0,1],[-2,0],[0,1],[-2,0],[0,1],[-1,1],[-1,0],[0,1],[-1,-1],[-6,0]],[[882,409],[0,-1]],[[857,322],[0,1]],[[853,320],[1,0],[1,1],[1,0],[1,1]],[[887,131],[-4,0],[-1,1],[-4,0],[-1,1],[-3,0],[0,-1],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[0,-1],[-9,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-2],[-1,-1],[-3,0],[0,1],[-1,0]],[[895,129],[-1,0],[0,1],[-6,0],[-1,1]],[[770,999],[42,0],[0,-47],[-35,0]],[[770,952],[0,0]],[[770,658],[0,0]],[[770,656],[0,0]],[[770,656],[0,0]],[[780,620],[0,-1]],[[778,619],[1,0]],[[778,619],[0,0]],[[777,622],[0,-4],[1,0]],[[776,622],[1,0]],[[776,622],[0,0]],[[775,622],[1,0]],[[775,627],[0,-5]],[[775,628],[1,0],[0,-1]],[[775,628],[0,-1]],[[774,628],[1,0]],[[774,628],[0,0]],[[774,629],[0,-1]],[[774,630],[0,-1]],[[774,633],[-1,0],[0,-2],[1,0],[0,-1]],[[773,633],[0,0]],[[772,633],[0,0]],[[770,635],[0,-1],[1,0],[0,-1],[-1,-1]],[[771,637],[-1,0],[0,-2]],[[771,640],[0,-3]],[[772,642],[0,-2],[-1,0],[0,-1]],[[773,643],[0,-1],[-1,0],[0,-1]],[[773,644],[0,-1]],[[773,645],[0,-1]],[[773,645],[0,-1]],[[773,653],[0,-5],[1,0],[0,-1],[-1,0],[0,-2]],[[773,653],[0,0]],[[773,653],[0,0]],[[771,657],[0,-1],[1,0],[0,-4]],[[770,658],[1,0],[0,-1]],[[562,999],[42,0]],[[604,114],[-5,0],[0,2],[-1,0],[-1,1],[-1,0],[0,2],[-2,0],[-1,1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[0,-2],[1,-1],[0,-3],[-1,0],[0,-1],[-5,0],[-1,-1],[-2,0],[0,-1],[-2,0],[0,-1],[-2,0],[0,2],[-1,0],[0,1],[-1,1],[-2,0],[-1,-1],[-1,0],[0,-2],[-1,-1],[0,1],[-1,0],[0,1],[-4,0],[0,-1],[-1,0],[-1,1]],[[707,705],[0,-1]],[[706,705],[0,0]],[[706,705],[0,0]],[[706,705],[0,0]],[[706,705],[0,0]],[[706,704],[0,1]],[[704,704],[0,0]],[[698,696],[0,0]],[[697,693],[1,0]],[[694,687],[0,0]],[[692,677],[0,0]],[[674,663],[1,0]],[[687,604],[0,27]],[[714,117],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[-2,0],[0,1],[-2,2],[0,1],[-2,1],[-5,0],[-1,1],[0,1],[-2,1],[0,3],[-1,0],[0,1],[-2,0],[0,-1],[-4,0]],[[719,122],[-1,0],[-1,-1],[-1,0],[0,-2],[-1,0],[0,-1],[-1,-1]],[[728,125],[-2,0],[-1,-1],[-2,0],[-1,-1],[-3,0],[0,-1]],[[715,697],[0,-1]],[[712,699],[0,-2],[2,0],[0,-1],[1,0]],[[711,698],[0,0]],[[711,698],[0,0]],[[709,704],[0,-1],[1,0],[0,-4],[1,0],[0,-1]],[[708,705],[0,-1],[1,0],[0,-1]],[[702,455],[0,23]],[[696,455],[6,0]],[[21,494],[0,-8]],[[21,597],[0,-14]],[[0,638],[21,0]],[[0,486],[0,152]],[[4,486],[-4,0]],[[5,486],[-1,0]],[[21,0],[0,65]],[[62,0],[-41,0]],[[62,3],[0,-3]],[[62,8],[0,-5]],[[62,73],[0,-65]],[[146,94],[-1,0],[0,-1],[-1,0],[0,-3],[1,0],[0,-2],[-3,0],[0,-2],[-1,-1],[-3,0],[0,2],[-1,0],[0,1],[-2,0],[0,1],[-4,0],[-1,-1],[0,-1],[-1,0],[0,-2],[-1,0],[0,1],[-2,0],[-1,1],[-2,0],[-1,-1],[-3,0],[-1,-1],[0,-1],[-6,0],[0,-1],[-2,0],[-1,-1],[-5,0]],[[422,71],[0,7]],[[430,71],[-8,0]],[[430,80],[0,-9]],[[15,416],[-7,0]],[[4,486],[1,0],[0,-29]],[[0,217],[0,269]],[[21,250],[-1,-2]],[[21,315],[0,-5]],[[21,328],[0,-8]],[[21,344],[0,-4]],[[7,261],[0,-11]],[[62,3],[0,5]],[[104,0],[-42,0]],[[104,82],[0,-82]],[[21,0],[-21,0],[0,67]],[[437,81],[0,-81]],[[430,71],[0,9],[1,0]],[[421,77],[1,1],[0,-7]],[[406,57],[0,15]],[[395,57],[11,0]],[[437,0],[-42,0],[0,57]],[[187,0],[0,88]],[[229,0],[-42,0]],[[229,102],[0,-102]],[[271,0],[-42,0]],[[271,91],[0,-91]],[[146,0],[0,94]],[[187,0],[-41,0]],[[312,130],[-2,0]],[[312,0],[-41,0]],[[312,119],[0,0]],[[479,0],[-42,0]],[[479,100],[0,-100]],[[472,107],[0,-7],[7,0]],[[853,0],[0,129]],[[895,0],[-42,0]],[[887,131],[0,-7],[8,0],[0,-124]],[[937,0],[-42,0]],[[937,116],[0,-116]],[[978,0],[-41,0]],[[978,30],[0,-30]],[[949,90],[0,-34],[29,0],[0,-26]],[[961,89],[0,4],[-12,0],[0,-3]],[[961,89],[0,0]],[[645,0],[0,134]],[[687,0],[-42,0]],[[672,126],[0,-12],[15,0],[0,-114]],[[562,21],[0,89]],[[562,15],[0,6]],[[562,13],[0,2]],[[562,8],[0,5]],[[562,0],[0,8]],[[604,0],[-42,0]],[[604,114],[0,-114]],[[806,126],[-1,0],[0,4]],[[809,126],[-3,0]],[[853,0],[-41,0],[0,126],[-3,0]],[[728,0],[-41,0]],[[728,125],[0,-125]],[[714,117],[0,-2],[5,0],[0,7]],[[770,0],[-42,0]],[[770,132],[0,-132]],[[809,126],[3,0],[0,-126],[-42,0]],[[806,126],[3,0]],[[791,70],[0,-12],[10,0],[0,12],[-10,0]],[[479,100],[0,8]],[[520,0],[-41,0]],[[535,112],[0,-11],[-15,0],[0,-101]],[[562,0],[-42,0]],[[562,13],[0,-5]],[[562,21],[0,-6]],[[146,0],[-42,0]],[[645,0],[-41,0]],[[395,57],[0,-57],[-41,0],[0,72]],[[406,72],[0,-15]],[[961,89],[-1,0]],[[978,30],[0,26],[-29,0],[0,34]],[[999,0],[-21,0]],[[1,831],[-1,-1],[0,86]],[[3,834],[0,-1],[-1,-1]],[[8,840],[0,-1],[-1,-1]],[[9,841],[0,-1],[-1,0]],[[11,843],[0,-1],[-2,-1]],[[18,850],[-3,-3]],[[21,853],[-2,-1],[-1,-2]],[[25,857],[-2,-2]],[[29,880],[0,-2],[2,-1]],[[23,888],[1,-2],[1,-1]],[[21,891],[0,0]]],"transform":{"scale":[0.36036036036036034,0.18018038638638634],"translate":[-180,-90]}} \ No newline at end of file diff --git a/data/timezones2.json b/data/timezones2.json deleted file mode 100644 index ce777c9..0000000 --- a/data/timezones2.json +++ /dev/null @@ -1 +0,0 @@ -{"type":"Topology","transform":{"scale":[0.36016016016016017,0.13789660360360362],"translate":[-179.9,-54.204523]},"objects":{"timezones":{"type":"GeometryCollection","geometries":[{"type":"Polygon","arcs":[[-1,-2,-3,-4,-5,-6]],"properties":{"Name":"Afghanistan  +4.5"}},{"type":"Polygon","arcs":[[-7,-8,-9,-10,-11,-12,-13,-14]],"properties":{"Name":"Albania  +1"}},{"type":"Polygon","arcs":[[-15,-16,-17,-18,-19,-20,-21,-22,-23]],"properties":{"Name":"Algeria  +1"}},{"type":"Polygon","arcs":[[-24,-25,-26]],"properties":{"Name":"Andorra  +1"}},{"type":"MultiPolygon","arcs":[[[-27,-28,-29,-30,-31,-32,-33,-34,-35]],[[-36,-37,-38,-39]]],"properties":{"Name":"Angola  +1"}},{"type":"MultiPolygon","arcs":[[[-40,-41,-42,-43,-44,-45,-46,-47,-48,-49,-50,-51]],[[-52,-53,-54,-55,-56,-57,-58,-59]],[[-60]],[[-61]]],"properties":{"Name":"Argentina  -3"}},{"type":"MultiPolygon","arcs":[[[-62,-63,-64,-65,65,-66,-67,-68,-69,-70,-71],[71]]],"properties":{"Name":"Armenia  +4"}},{"type":"MultiPolygon","arcs":[[[-73,-74,-75,-76,-77,-78,-79,-80,-81,-82]],[[-83,-84,-85,-86]],[[-87,-88,-89,-90]],[[-91]],[[-92]],[[-93]]],"properties":{"Name":"Australia +9.5"}},{"type":"MultiPolygon","arcs":[[[80,-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,-125]],[[-126,-127]],[[-128,126]],[[-129,-130]],[[99,-131]],[[102,-132]],[[-133,-134]]],"properties":{"Name":"Australia  +10"}},{"type":"MultiPolygon","arcs":[[[-135,-136,-137]]],"properties":{"Name":"Australia  +8"}},{"type":"Polygon","arcs":[[-138,-139,-140,-141,-142,-143,-144,-145,-146,-147,-148]],"properties":{"Name":"Australia  +9"}},{"type":"Polygon","arcs":[[-149,-150,-151,-152,-153,-154,-155,-156,-157,-158,-159]],"properties":{"Name":"Austria  +1"}},{"type":"MultiPolygon","arcs":[[[68,-160]],[[-161,-162,-163,-164,-165,66,65,-66,64],[165]]],"properties":{"Name":"Azerbaijan  +4"}},{"type":"MultiPolygon","arcs":[[[-167,-167,-168,-169,-170,170,-171,-172]],[[-173,-174,-175,-176,174,-175,-177,-178]],[[-171,169,-179,173],[179]]],"properties":{"Name":"Bahamas  -5"}},{"type":"Polygon","arcs":[[-181]],"properties":{"Name":"Bahamas  -5"}},{"type":"MultiPolygon","arcs":[[[-182,-183,-184]],[[-185,-186,182,-187,-188,-189,-190]],[[-191,-192,-193,-194,-195,-196,-197,-198,-199,-200,-201,186,-202,-203,-204,-205,-206,-207,-208,-209,-208,-210],[208]]],"properties":{"Name":"Bangladesh  +6"}},{"type":"Polygon","arcs":[[-211]],"properties":{"Name":"Barbados  -4"}},{"type":"Polygon","arcs":[[-212,-213,-214,-215,215,-216,-217,-218,-219,-220,-221,-222]],"properties":{"Name":"Belgium  +1"}},{"type":"MultiPolygon","arcs":[[[-223,-224,-225,-226,-227]],[[227,228,229]],[[-231]]],"properties":{"Name":"Belize  -6"}},{"type":"Polygon","arcs":[[-232,-233,-234,-235,-236,-237,-238,-239]],"properties":{"Name":"Benin  +1"}},{"type":"Polygon","arcs":[[-240,-241,-242]],"properties":{"Name":"Bhutan  +6"}},{"type":"Polygon","arcs":[[-243,-244,-245,-246,-247,-248,-249,40,-250]],"properties":{"Name":"Bolivia  -4"}},{"type":"Polygon","arcs":[[-251,-252,-253,-254,-255,-256,-257,-258]],"properties":{"Name":"Bosnia and Herzegovina  +1"}},{"type":"Polygon","arcs":[[-259,-260,-261,-262,-263,-264]],"properties":{"Name":"Botswana  +2"}},{"type":"MultiPolygon","arcs":[[[-265,-266,-267,-268,-269,-270,-271,-272,-273,-274,-275,-276,-277,-278,-279,-280,-281,-282,-283,-284,284,-286,-287,-288,-285]],[[-289,-290]],[[285,-285,-291,291,-293,281,-294,294,-295,-296,-297,-298,-299,-292,-300,-301]],[[297,296,-302,-303,-304,-298]],[[-305,294,-306,-307,-308]],[[-309,-310,-311,-312,-313,-314]],[[-315,-316,-317,-318,-319,307,-320,-321,-322,-323,-324,-325]],[[-326,-327,270]],[[-328,-329,-330,330]],[[275,-332]],[[-333,328,-334,321]],[[-335,-336]],[[-337,-338,-339,-340]],[[-341,-342]],[[-343,-344]],[[-345]],[[43,-346,-347,-348,-349,289,300,-350,350,351,-352,-353,-354,-355,-356,-357,-358,-359,-360,-361,-362,-363,-364,-365,-366,-367,-368,-369,-370,-371,-372,-373,-374,-375,-376,-377,-378,378,-380,-379,-381,-382,-383,-384,-385,-386,-387,-388,-389,-390,-391,-392,336,-393,-394],[-395]]],"properties":{"Name":"Brazil  -3"}},{"type":"MultiPolygon","arcs":[[[-396,-397,397,-398,-399,-400,-401,-402,-403,-404,-405,-406,-407,264,284,287,-408,347,-409,246,245,-410]],[[407,-411]]],"properties":{"Name":"Brazil  -4"}},{"type":"Polygon","arcs":[[-412,396,395,244,243]],"properties":{"Name":"Brazil  -5"}},{"type":"Polygon","arcs":[[-413,-414,-415,-416,-417,-418,-419,-420]],"properties":{"Name":"Bulgaria  +2"}},{"type":"Polygon","arcs":[[-421,-422,-423,234,233,-424,-425,-426,-427,-428,-429]],"properties":{"Name":"Burkina Faso  0"}},{"type":"Polygon","arcs":[[-430,-431,-432,-433]],"properties":{"Name":"Burundi  +2"}},{"type":"Polygon","arcs":[[-434,-435,-436,-437,-438,-439]],"properties":{"Name":"Byelarus  +2"}},{"type":"Polygon","arcs":[[-440,-441,-442,-443,-444,-445,-446,-447,-448,-449]],"properties":{"Name":"Cambodia  +7"}},{"type":"Polygon","arcs":[[-450,-451,-452,-453,-454,-455,-456,-457,-458]],"properties":{"Name":"Cameroon  +1"}},{"type":"MultiPolygon","arcs":[[[-459,-460,-461,-462,-463,-464,-465,-466,-467,-468,-469,-470,-471,-472,-473]],[[-474]]],"properties":{"Name":"Canada -3.5"}},{"type":"MultiPolygon","arcs":[[[-475,-476,-477,-478,-479,-480,-481,-482,-483,-484,-485,-486,-487,-488,-489,-490,-491,-492,-493,-494,-495,-496,-497,-498,-499,-500,-501,-502,-503]],[[-504]],[[-505,-506,-507,-508]],[[507,-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]],[[480,-536]],[[536]],[[-538,-539]],[[-540,-541]],[[-542,540,-543]],[[-544,-545,493,-546]],[[-547]],[[-548,-549,-550]],[[-551,-552,-553]],[[-554]],[[-555]],[[-556]],[[-557]],[[-558,-559]],[[-560,-561]],[[-562]],[[-563,-564,-565,-566,-567,-568]],[[-569,565,-570,-571,-572,-573]],[[-574,-575,-576]],[[-577,-578]]],"properties":{"Name":"Canada -7"}},{"type":"MultiPolygon","arcs":[[[-579,-580]],[[-581,-582,-583]],[[-584,-585,-586,-587,-588,-589]],[[585,-590]],[[-591,-592]],[[-593,-594,-595,-596]],[[-597,-598]],[[-599,-600,-601,-602,-603,-604,-605,-606,-607]],[[-608,-609,-610,610,-611]],[[-612,-613,-614]],[[-615,-616]],[[-617,-618,-619,-620]],[[-621,612,-622,-623]],[[-624,-625,-626,-627,-628,-629,-630,-631,-632,-633,-634,-635,-636,-637,-638,637,-638,-639,-640,-641,-642,-643]],[[-644,-645]],[[645,-647,-648]],[[-649,-650,-644,-651]],[[-652,652,-653,-654]],[[-655,-656]],[[-657,652,-658,-659]],[[-660,-661]],[[-662,-663]],[[-664,-665]],[[-666,-667,-668,668,-669]],[[-670,665,668,-671]],[[-672,-673,-674,-675,630]],[[-676,-677,-678,-679,-680]],[[-681,-682,-683]],[[682,-684,634]],[[-685,-686,579,-687,-688,-689,-690,690,-692,-691,-693,678,-694,-695,-696,-697,-698,-699,673,-700,700,-701,-702,667,-703,-704,-705,-706,-707,-708,-709,662,-710,-711,-712,-713,655,-714,-715,-716,-717,-718,-719,-720,-721,-722,-723,-724,-725,-726,-727,726,-728,-727,-729,-730,-731,-732,646,-733,-734,-735,-736,-737,-738,-739,-740,-741,-742,601,-743,593,-744,-745,591,-746,-747,747,-749,-748,-750,-751,-752,-753],[753]],[[-755,-611,609,616,734,733,732,-646,621,755,-756,-757,757,-758],[758,759,610,-611,-760]]],"properties":{"Name":"Canada -8"}},{"type":"MultiPolygon","arcs":[[[-761,-762,-763]],[[-764,-765,-766]],[[-767,762,-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,-804,-805]],[[-806,-807]],[[-808,-809,-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,-835,-836,-837,-838,-839,-840]],[[840]],[[-842,-843]],[[-844]],[[-845,-846]],[[-847]],[[-848]],[[848,-850,-851,-852,-853,-854,854,-855,-856,-849,-857]],[[-858]],[[-859,-860,-861,-862]],[[-863,852]],[[861,-864,-865,-866,-867]],[[-868]],[[860,-869]],[[812,-870]],[[-871,-872]],[[-873,-874]],[[-875,-876,-877]],[[-878]],[[-879,817,-880]],[[-881]],[[-882,-883]],[[825,-884,-885,-886]],[[-887,827,885,-888]],[[-889,-890,-891,-892,-893]],[[-894]],[[835,-895,-896]],[[-897,-898,-899,-900,-901,-902,-903,-904,-905],[905]],[[-907,-908,-909,844,-910,-911,-912,-913,866,-914,914,915,-916,-915,-917,-918,-919,-920],[920]]],"properties":{"Name":"Canada  -4"}},{"type":"MultiPolygon","arcs":[[[-922,-923,-924,-925,-926,-927,-928,-929,-930,-931,-932,-933,-934,-935,-850,-849,-857,-809,-809,807,-936,896,-937,-938,-939,-940,-941,-942,-943,-944,-945,-946,-947,-948,-949,-950,-951,-952,-953,-954,-955,-956,-957,-958]],[[-959,-960,-961,-962,-963,-964,-965,-966,-967,-968,-969,-970,-971,-972,-973,-974,-975,-976,-977,-978,-979,-980,-981,-982,-983,-984,-985,-986,-987,-988,-989,-990,-991,-992]],[[-993,-994]],[[-995,-996,-997]],[[-998,-999,-1000]],[[-1001,-1002]],[[-1003,-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,763,-1032,-1033,766,-1034,-1035,-1036,-1037,769,-1038,771,-772,-1039,-1040,-1041,774,-1042,-1043,1043,-1045,-1046,919,-1047,805,-1048,-1049,-1050,-1051,-1052,-1053,-1054,-1055,-1056,-1057,-1058,-1059,-1060,-1061,-1062,-1063,-1064,-1065,-1066,-1067,-1068,-1069,-1070,-1071]],[[-1072,-1073,-1074]],[[-1075,-1076,-1077,-1078,-1079,-1080,-1081,-1082,-1083,-1084,-1085,-1086,-1087,-1088,-1089,-1090,-1091,-1092,-1093,-1094,-1095]],[[-1096,-1097]],[[-1098,-1099,-1100,-1101,-1102,-1103,1085,-1104,-1105,-1106,-1107]],[[-1108,-1109,-1110,-1111,-1112]],[[-1113]],[[1109,-1114]],[[-1115]],[[-1116]],[[-1117]],[[-1118]],[[-1119,-1120,-1121]],[[-1122]],[[-1123]],[[-1124]],[[-1125]],[[960,-1126]],[[-1127,-1128,-1129,-1130,1130,-1132,-1131,-1133,-1134]],[[-1135,-1136]],[[-1137]],[[-1138,-1139]],[[-1140]],[[-1141]],[[1135,-1142,-1143]],[[-1144]],[[-1145]],[[-1146]],[[1129,-1147,-1148,-1149]],[[-1150]],[[-1151]],[[-1152,-1153]],[[-1154]],[[-1155]],[[-1156]],[[-1157]],[[-1158,-1159]],[[1016,-1160]],[[1158,-1161,1055]],[[-1162]],[[-1163]],[[-1164]],[[-1165,-1166]],[[-1167,-1168,-1169]],[[-1170]],[[-1171,-1172]],[[-1173]],[[-1174,870]]],"properties":{"Name":"Canada  -5"}},{"type":"MultiPolygon","arcs":[[[-1175]],[[-1176,-1177]],[[-1178,-1179,-1180,-1181,-1182,-1183,-1184,-1185,-1186,575]],[[577,-1187,-1188,-1189,-1190,-1191,-1192,-1193,-1194,-1195]],[[514,-1196,-1197]],[[-1198,-1199,517]],[[-1200,-1201]],[[-1202]],[[-1203,-1204,-1205]],[[-1206]],[[-1207]],[[-1208]],[[-1209,-1210]],[[-1211]],[[1209,-1212]],[[-1213,1182,-1214]],[[-1215,-1216,-1217]],[[-1218,-1219]],[[-1220]],[[-1221]],[[-1222]],[[-1223]],[[-1224,-1225]],[[-1226,-1227,-1228,-1229,-1230,-1231,-1232,-1233,992,-1234,-1235,-1236,-1237,-1238]],[[-1239,997]],[[-1240,-1241,-1242]],[[-1243,-1244,-1245,-1246,-1247]],[[-1248,-1249,-1250,-1251]],[[-1252]],[[-1253,-1254]],[[-1255]],[[-1256,-1257]],[[-1258]],[[-1259,-1260,-1261]],[[-1262]],[[-1263,-1264]],[[-1265]],[[-1266]],[[-1267,-1268,-1269,-1270,990,-1271,-1272,-1273]],[[-1274]],[[-1275,-1276]],[[-1277,-1278]],[[-1279,-1280]],[[-1281]],[[-1282,1000,-1283,-1284,-1285,1072,-1286,1063]],[[-1287,-1288]],[[-1289,1272,-1290,-1291,988,-1292]],[[1277,-1293,-1294,970,-1295]],[[-1296,1237]],[[-1297,958,-1298]],[[-1299,-1300,-1301,981]],[[-1302]],[[-1303,1095]],[[-1304,-1305,986]],[[-1306,-1307,-1308]],[[-1309,984,-1310]],[[-1311,1309,983,-1312,1231]],[[-1313,-1314,-1315,-1316,-1317,1299]],[[-1318,1067,-1319]],[[-1320,979]],[[-1321,-1322,1069]],[[-1323,-1324]],[[1321,-1325,1002]],[[-1326,-1327,-1328,-1329,-1330,-1331,-1332,-1333,-1334,-1335,-1336,1262,-1337,-1338,1260,-1339,-1340,-1341,-1341,1274,-1342,-1343,1287,-1344,-1345,-1346,-1347,1091,1106,-1348,-1349,-1350,-1351,-1352,-1353,922,-1354,-1355,-1356,-1357,-1358,-1359,-1360,-1361,-1362,-1363,-1364,-1365,-1366,-1367,-1368,-1369],[-1370]]],"properties":{"Name":"Canada  -6"}},{"type":"Polygon","arcs":[[452,-1371,-1372,-1373,-1374,-1375,-1376,-1377,-1378,-1379]],"properties":{"Name":"Central African Republic  +1"}},{"type":"Polygon","arcs":[[-1380,-1381,-1382,1370,451,-1383]],"properties":{"Name":"Chad  +1"}},{"type":"MultiPolygon","arcs":[[[-1384]],[[-1385,-1386]],[[-1387,-1388,-1389,-1390,-1391,-1392,-1393,-1394]],[[-1395,-1396,-1397,-1398,-1399]],[[-1400,-1401,-1402]],[[-1403,1398,-1404]],[[-1405,-1406,-1407]],[[-1408,-1409,-1410,-1411]],[[-1412,1410,-1413]],[[-1414,-1415,-1416,-1417]],[[1413,-1418,-1419,-1391,-1420]],[[1400,-1421,-1422,1422,-1423,-1424]],[[-1425,-1426,-1427,1420]],[[-1428,-1429,-1430,1415]],[[-1431,-1432,-1433]],[[-1434,-1435,-1436]],[[-1437,-1438,-1439,-1440]],[[-1441,-1442,-1443,-1444,-1445]],[[-1446,-1409,-1410]],[[-1447,-1448,-1449,1409,-1450,-1451,-1452,-1453,-1454,-1455,-1456,-1457,-1458,-1459,-1460,1437]],[[-1461,-1462,-1463,-1464]],[[1412,1448]],[[1391,-1465,-1466,-1467,1418,-1468,-1469,-1470,-1471,-1472]],[[1432,1463,-1473]],[[-1474,-1475,-1476]],[[-1477]],[[-1478,-1479,-1480,-1481]],[[-1482,-1483,-1484]],[[1484,1422,-1486,1434]],[[-1487]],[[-1488]],[[-1489,-1490,-1491,1491,-1492]],[[-1493,-1494,-1495]],[[-1496,-1497,1497,1469]],[[-1499,-1500,-1501,1483]],[[-1502,-1503,1493]],[[-1504,-1505,-1506,-1507]],[[-1508,-1509]],[[-1510,-1511,-1512]],[[-1513,-1514,1452]],[[-1515,-1516,-1517,-1518]],[[1511,-1519,-1520,-1521,1521,-1522,-1523,-1524]],[[-1525,-1526,-1527,-1528]],[[-1529,-1530,-1531]],[[-1532,-1533,-1534,-1535,-1536,-1537,-1538]],[[-1539,1522,1521,1529]],[[-1522,-1540,-1541]],[[1541,-1543,-1544]],[[-1545,-1546,-1547]],[[-1548,-1549,-1550,-1551,1550,-1551,-1552,-1553,-1554,-1555,-1556]],[[-1557,-1558,-1559,-1560,-1561,-1562]],[[-1563,-1564]],[[-1565,1555]],[[-1566]],[[-1567,1567,-1569,-1568,1567,-1570,-1571,-1572,-1573,-1574,-1575,-1576,-1577,-1578,-1579]],[[-1580,-1581,-1582]],[[1575,-1583,-1584,-1585,1585,-1586,-1587,-1588,1580]],[[-1589,-1585,-1590,-1591,-1592,-1593]],[[-1594,-1595,1594,-1596,-1595,-1597,-1598]],[[-1599,-1600,-1601]],[[-1602,1602,-1603,-1604,-1605]],[[-1606,-1607]],[[-1608,-1609,-1610,-1611]],[[1610,-1612,-1613,-1614]],[[-1615,1613,-1616,-1617,-1618,-1619,-1620]],[[-1621,57,-1622,-1623,-1624,-1625,-1626,-1627,-1628]],[[-1629,-1630,-1631]],[[1628,-1632,-1633]],[[-1634,-1635,-1636,1444,-1637,1492,1637,-1639,-1640,-1638,-1641,-1642,-1643,-1644,1502,-1492,1644,-1646,-1645,1499,-1647,-1648,-1649,-1650,-1651,-1652,-1653,-1654,-1655,-1656,249,-1657,-1658,-1659,-1660,1583,-1661,-1662,-1663,-1664,-1665,-1666,-1667,-1668,-1669,-1670,1563,-1671,-1672,-1673,-1674,-1675,-1676,-1677,-1678,-1679,-1680,-1681,-1682,-1683,-1684,-1685,1685,-1686,-1687,-1688,-1689,-1690,-1690,-1691,1691,1539,1520,-1693,-1694,-1695,1526,-1696,-1697,-1698,-1699,-1700,1454,-1701,-1702,-1703,-1704,1451,-1705,-1706,1496,-1707,1707,1708,-1709,-1708,-1710,-1711,-1712,-1713,-1714,-1715,-1716,-1717,-1718,-1719,1429,-1720,-1721,-1722,-1723],[1723]],[[-1725,-1726,-1727,1727,-1729,-1730,-1728,-1731,1597,-1732,-1733,-1734,-1735,-1736,-1737,-1738,51,-1739,-1616,1615,-1740,-1741,1609,-1603,-1742,-1743,1599,-1744,-1745],[1745]]],"properties":{"Name":"Chile  -4"}},{"type":"MultiPolygon","arcs":[[[-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,1798,-1799,-1800,-1801,-1802,-1803,-1804,1754,-1805,-1806,-1807,-1808,-1809,-1810,-1811,-1812,1751,-1813,-1814,-1815,-1816,-1817,-1818,-1819,-1820,-1821,-1822,-1823,-1824,241,240,-1825,-1826,-1827,-1828,-1829,-1830,4],[1830]]],"properties":{"Name":"China  +8"}},{"type":"MultiPolygon","arcs":[[[-1832]],[[-1833,-1834,-1835,-1836,-1837,-1838,-1839,-1840,-1841,402,401,400,-1842,-1843,-1844]]],"properties":{"Name":"Colombia  -5"}},{"type":"Polygon","arcs":[[-1845,454,453,1377,-1846,-1847,-1848,35,-1849]],"properties":{"Name":"Congo  +1"}},{"type":"Polygon","arcs":[[-1850,-1851,-1852,-1853,-1854]],"properties":{"Name":"Costa Rica  -6"}},{"type":"MultiPolygon","arcs":[[[-1855,-1856,-1857,-1858,-253,-252,-1859,-1860,-1861,-1862,-1863,-1864,-1865,-1866,-1867,-1868,-1869,-1870,-1871,-1872,-1873,-1874]],[[-1875,-1873,-1876,-1877,1872]],[[-1878,-1879,-1880]],[[-1881,-1882,-1883,-1884]],[[-1885,1864,-1886]],[[-1887,-1888]],[[-1889,1862,-1890]],[[-1891]],[[-1892,-1893,257,256,255,-1894,-1895,-1896,-257]],[[-1897,-1898]]],"properties":{"Name":"Croatia  +1"}},{"type":"MultiPolygon","arcs":[[[-1899,-1900,-1901,-1902,-1903,-1904,-1905,-1906]],[[-1907]],[[-1908,-1909,-1910]],[[-1911,-1912]],[[-1913,-1914,-1915]],[[-1916,-1917]]],"properties":{"Name":"Cuba  -5"}},{"type":"Polygon","arcs":[[-1918]],"properties":{"Name":"Cyprus  +2"}},{"type":"Polygon","arcs":[[-1919,-1920,-1921,-1922,152,-1923]],"properties":{"Name":"Czech Republic  +1"}},{"type":"MultiPolygon","arcs":[[[-1924,-1925,-1926,-1927,-1928,-1929,-1930,-1931,-1932,-1933,-1934,-1935,1935,-1936,-1937,-1938,-1939]],[[-1940,1928,-1941,-1942,-1943,-1944,-1945,-1946]],[[1942,-1947,1926,-1948]],[[1933,-1949,-1950,-1951,-1952]],[[-1953,-1954,-1955,-1956]],[[-1957,1950,-1958]],[[-1959,-1960,1960,-1961,-1962,-1963,-1964]],[[-1965,-1966,-1967,-1968]],[[1961,-1969,-1970,-1971,-1972,-1973]],[[1967,-1974,1973,-1974,-1972,-1975,1971,1970]],[[1973,-1976]],[[-1977]]],"properties":{"Name":"Denmark  +1"}},{"type":"Polygon","arcs":[[-1978,-1979,-1980,-1981,-1982,-1983]],"properties":{"Name":"Djibouti  +3"}},{"type":"Polygon","arcs":[[-1984]],"properties":{"Name":"Dominica  -4"}},{"type":"MultiPolygon","arcs":[[[-1985,-1986,-1987]]],"properties":{"Name":"Dominican Republic  -4"}},{"type":"MultiPolygon","arcs":[[[-1988,-1989,-1990,-1991,-1992,-1993,-1994,-1995,-1996,-1997]],[[-1998,-1999]]],"properties":{"Name":"Ecuador  -5"}},{"type":"MultiPolygon","arcs":[[[-2000]],[[-2001,-2002,-2003]],[[-2004]],[[-2005]],[[-2006]],[[-2007]]],"properties":{"Name":"Ecuador  -6"}},{"type":"Polygon","arcs":[[-2008,-2009,-2010,-2011,-2012,-2013,-2014,-2015,-2016,-2017]],"properties":{"Name":"Egypt  +2"}},{"type":"Polygon","arcs":[[-2018,-2019,-2020,-2021]],"properties":{"Name":"El Salvador  -6"}},{"type":"MultiPolygon","arcs":[[[-2022]],[[-2023,456,-2024]]],"properties":{"Name":"Equatorial Guinea  +1"}},{"type":"MultiPolygon","arcs":[[[-2025,-2026,-2027,-2028,1979,-2029,-2030]]],"properties":{"Name":"Eritrea  +3"}},{"type":"MultiPolygon","arcs":[[[-2031]],[[-2032]],[[-2033,-2034]],[[-2035,-2036,-2037,-2038,-2039,-2040]]],"properties":{"Name":"Estonia  +2"}},{"type":"Polygon","arcs":[[-2041,2029,2028,-2042,-2043,-2044,-2045,-2046]],"properties":{"Name":"Ethiopia  +3"}},{"type":"MultiPolygon","arcs":[[[-2047,-2048,-2049]],[[-2050]],[[-2051,-2052,-2053,-2054,-2055,-2056,2056,-2057,-2058,-2059,-2060,-2061,-2062,-2063,-2064,-2065,-2066,-2067,-2068,-2069,-2070,-2071,-2072]],[[-2073,2068]],[[-2074]],[[-2075,2064]],[[-2076,-2077,-2078]],[[-2079,-2080,-2081]],[[-2082]]],"properties":{"Name":"Finland  +2"}},{"type":"MultiPolygon","arcs":[[[-2083,-2084,211,-2085,-2086,-2087,-2088,-2089,-2090,-2091,24,23,-2092,-2093,-2094]],[[-2095]],[[-2096]]],"properties":{"Name":"France  +1"}},{"type":"Polygon","arcs":[[-2097,-2098,-2099]],"properties":{"Name":"French Guiana  -3"}},{"type":"MultiPolygon","arcs":[[[-2100,-2101,-2102,2023,455,-2103,-2104,-2105],[-2106,-2107,-2108]]],"properties":{"Name":"Gabon  +1"}},{"type":"Polygon","arcs":[[-2109,-2110,-2111,-2112]],"properties":{"Name":"Gambia, The  0"}},{"type":"Polygon","arcs":[[-2113,-2114]],"properties":{"Name":"Gaza Strip  +2"}},{"type":"Polygon","arcs":[[-2115,161,160,62,-2116,-2117,-2118]],"properties":{"Name":"Georgia  +4"}},{"type":"MultiPolygon","arcs":[[[-2119,-2120,-2121,-2122,-2123,-2124,-2125,-2126,-2127,-2128,-2129,-2130,-2131,-2132,1919,1918,1922,150,-2133,-2134,-2135,-2136,2085,-2137,-2138,219]],[[-2139]],[[2127,-2140]],[[-2141,-2142,-2143,-2144,-2145]]],"properties":{"Name":"Germany  +1"}},{"type":"Polygon","arcs":[[-2146,427,426,425,-2147,-2148]],"properties":{"Name":"Ghana  0"}},{"type":"MultiPolygon","arcs":[[[-2149,13,-2150,-2151]],[[12,-2152,418,-2153,-2154,-2155,-2156,-2157,-2158,-2159,-2160,-2161,-2162,-2163,-2164,-2165,-2166,-2167,-2168,-2169,-2170,-2171,-2172,-2173]],[[-2174,-2175]],[[-2176,2169]],[[-2177,-2178]],[[-2179]],[[-2180,-2181,-2182,2161,-2183,-2184]],[[-2185]],[[-2186]],[[-2187]],[[-2188]],[[-2189]],[[-2190]],[[-2191]],[[-2192,-2193]],[[-2194,-2195,-2196,-2197]],[[-2198]],[[-2199]],[[-2200]],[[-2201]],[[-2202]]],"properties":{"Name":"Greece  +2"}},{"type":"MultiPolygon","arcs":[[[-2203,-2204,-2205,-2206,-2207,-2208,-2209,-2210,-2211,-2212]],[[-2213,-2214,-2215,-2216,-2217,-2218]],[[2218,-2220,-2219]],[[-2221,2216,-2222,-2223,-2224]],[[2223,-2225,-2226]],[[-2227,-2228,-2229]],[[-2230,-2231]],[[-2232,-2233,-2234]],[[-2235,-2236]],[[-2237]],[[-2238,-2239,-2240,-2241,-2242,-2243,-2244,-2245,-2246,-2247,-2248,-2249,-2250,2205,-2251,-2252,-2253,-2254,-2255,-2256,-2257,-2258,-2259,-2260,-2261,-2262,-2263,-2264,-2265,-2266],[2266]]],"properties":{"Name":"Greenland  -1"}},{"type":"MultiPolygon","arcs":[[[-2268,-2269]],[[-2270]],[[-2271,-2272,-2273]],[[-2274,-2275]],[[2275,-2276,-2277,-2278]],[[-2279,2274,-2280,-2281]],[[-2282,-2283,-2284,-2285,-2286,-2287,-2288,-2289]],[[-2290,-2291]],[[-2292,2280]],[[-2293,2287,-2294]],[[-2295]],[[-2296,-2297]],[[-2298,-2299,-2300,-2301,-2302,-2303]],[[-2304]],[[-2305,-2306]],[[-2307,-2308]],[[-2309,-2310,-2311]],[[-2312,-2313,-2314]],[[-2315,-2316]],[[-2317,-2318,-2319]],[[-2320,-2321]],[[-2322,-2323,-2324,2324,-2325,-2326]],[[-2327,-2328,-2329,-2330]],[[-2331,-2332]],[[2332,2329,2333,-2334,-2330]],[[-2335,-2336]],[[-2337,-2338,-2339]],[[-2340,-2341,-2342,-2343,-2344]],[[2338,-2345,-2346,-2347]],[[-2348,-2349,-2350,-2351]],[[-2352]],[[-2353,-2354,-2355,-2356]],[[-2357,-2358,-2359]],[[-2360,-2361]],[[-2362,-2363,-2364]],[[-2365,-2366,-2367]],[[-2368,-2369]],[[-2370,-2371,-2372,-2373,-2370,-2374,-2373]],[[-2375,-2376,-2377,-2378,-2379,2379,-2380,-2381,-2382]],[[-2383,-2384]],[[-2385,-2386,-2387,-2388,-2389,2389,-2391,-2392,-2393,-2394,-2390,-2395]],[[-2396,-2397,2397,-2399,-2400,-2401,-2402,-2398,-2403,-2404]],[[-2405,-2406]],[[-2407,-2408]],[[-2409,2402,-2410,2410,-2411,2390]],[[-2412,-2413]],[[-2414,-2415,-2416]],[[-2417,2412,-2418,2414]],[[2418,-2419]],[[-2420]],[[-2421,-2422,-2423,-2424,-2425]],[[2425]],[[-2427]],[[-2428,-2429,-2430,-2431]],[[-2432,-2433]],[[-2434,-2435]],[[-2436,-2437]],[[-2438,-2439,2204]],[[-2440,-2441]],[[-2442,-2443]],[[-2444]],[[-2445]],[[-2446]],[[-2447]],[[-2448,-2449,2302,-2450,2300,-2451,-2452,-2453,-2454,2349,-2455,-2456,-2457,-2458,-2459,-2460,-2461,2357,-2462,-2463,-2464,-2465,2394,-2466,2392,-2467,-2468,-2469,-2470,2398,-2471,-2472,-2473,-2474,-2475,-2476,-2477,-2478,-2479,-2480,-2481,-2482,-2483,-2484,-2485,2231,-2486,-2487,-2488,-2489,-2490,-2491,2234,-2492,2227,-2493,-2494,-2495,-2496,-2497,-2498,-2499,-2500,-2501,-2502,-2503,-2504,-2505,-2506,-2507,-2508,-2509,-2510,-2511,-2512,-2513,-2514,-2515,-2516,-2517,2433,-2518,-2519,-2520,-2521,-2522,-2523,-2524,-2525,-2526,-2527,-2528,-2529,-2530,-2531,-2532,-2533,-2534,-2533,-2535,2411,2416,-2417,-2536,2413,-2537,-2538,-2539,2404,-2540,-2541,-2542,2406,-2543,-2544,-2545,-2546,-2547,2377,-2548,-2549,-2550,2370,-2551,-2552,-2553,2368,-2554,-2555,-2556,2366,-2557,-2558,2558,-2559,-2560,-2561,-2562,-2563,-2564,-2565,2565,-2566,-2567,-2568,-2569,-2570,-2571,-2572,-2573,-2574,-2575,-2576,-2577,-2578,2336,-2579,-2337,-2580,2336,2346,-2581,-2582,-2583,-2584,2584,-2585,-2586,2309,-2587,-2588,-2589,-2590,-2591,-2592,-2593,-2594,-2595,-2596,-2597,-2598,-2599,-2600,-2601,-2602,-2603,-2604,-2605,-2606,2606,-2607,-2608,-2609,-2610,-2611,-2612,-2613,-2614,2321,-2615,-2616,2616,-2617,2343,2617,-2618,-2619,-2620,-2621,-2622,-2623,-2624,-2625,-2626,-2627,-2628,-2629,-2630,-2631,-2632,-2633,-2634,-2635,-2636,-2637,-2638,-2639,-2640,-2641,-2642,2641,-2642,-2643,-2644,-2645,-2646,-2647,-2648,-2649,-2650,-2651,2291,2276,-2652,-2653,-2654,-2655,-2656,-2657,-2658],[2658]]],"properties":{"Name":"Greenland  -3"}},{"type":"MultiPolygon","arcs":[[[-2660,2447,-2661,-2662,-2663,-2664]],[[-2665]],[[-2666]]],"properties":{"Name":"Greenland  -4"}},{"type":"MultiPolygon","arcs":[[[-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,2668,-2699]],[[-2700,-2701,2685]],[[-2702]],[[-2703,-2704,-2705,2670]],[[-2706,-2707,-2708]],[[-2709,-2710]],[[-2711,-2712]],[[-2713]],[[-2714,-2715]],[[-2716]],[[-2717]],[[-2718]],[[-2719]]],"properties":{"Name":"Greenland  0"}},{"type":"Polygon","arcs":[[-2720,222,-2721,-2722,-2723,-2724,-2725,-2726]],"properties":{"Name":"Guatemala  -6"}},{"type":"Polygon","arcs":[[-2727,-2728,-2729,-2730,-2731,-2732,-2733,-2734,-2735,-2736,-2737,-2738,-2739]],"properties":{"Name":"Guinea  0"}},{"type":"MultiPolygon","arcs":[[[-2740,-2741,-2742,-2743,-2744,-2745,-2746,-2747]],[[-2748]]],"properties":{"Name":"Guinea-Bissau  0"}},{"type":"Polygon","arcs":[[-2749,-2750,-2751,404]],"properties":{"Name":"Guyana  -3"}},{"type":"MultiPolygon","arcs":[[[-2752,-2753,-2754,-2755]],[[-2756]],[[-2757,2752]]],"properties":{"Name":"Haiti  -5"}},{"type":"MultiPolygon","arcs":[[[2723,-2758,-2759,-2760,-2761,-2762]],[[-2763]]],"properties":{"Name":"Honduras  -6"}},{"type":"Polygon","arcs":[[155,-2764,-2765,-2766,-2767,-2768,1856,-2769,-2770]],"properties":{"Name":"Hungary  +1"}},{"type":"Polygon","arcs":[[-2771]],"properties":{"Name":"Iceland  0"}},{"type":"MultiPolygon","arcs":[[[-2772,1828,1827,-2773,-2774,-2775,1825,1824,239,1823,-2776,-2777,-2778,193,-193,191,190,-2779,-2780,-2781,-2782,-2783,-2784,-2785]],[[-2786]],[[-2787]],[[-2788]],[[-2789]]],"properties":{"Name":"India  +5.5"}},{"type":"MultiPolygon","arcs":[[[-2790]],[[-2791,-2792,-2793,-2794,-2795,-2796,-2797,-2798,-2799,-2800,-2801,-2802,-2803,-2804,-2805,-2806,-2807]],[[-2808]],[[-2809]],[[-2810]],[[-2811]],[[-2812]],[[-2813]],[[2791,-2814]],[[-2815,-2816,-2817,2793]],[[-2818]],[[-2819,-2820,-2821,-2822,2822,-2823]],[[2796,-2823,-2824,-2825,2825,-2826,-2827]],[[-2828,-2829,-2830]],[[-2831,-2832,-2833]],[[2804,-2834]],[[-2835,-2836]],[[2835,-2837]],[[-2838]],[[-2839,-2840]],[[-2841,-2842,-2843]],[[-2844,-2845,-2846,-2847]],[[-2848]],[[-2849]],[[-2850]],[[-2851,-2852,-2853,-2854,-2855]],[[-2856]],[[-2857]],[[-2858,-2859]],[[-2860]]],"properties":{"Name":"Indonesia  +7"}},{"type":"MultiPolygon","arcs":[[[2853,-2861,-2862,-2863,-2864,-2865,-2866,-2867,-2868,-2869,-2870,-2871]],[[-2872,-2873]],[[-2874,-2875]],[[-2876]],[[-2877,-2878,-2879]],[[-2880,-2881,-2882]],[[-2883]],[[-2884,-2885,-2886,2863]],[[-2884,-2887]],[[-2888,-2889,-2890,-2891,-2892,-2893]],[[-2894]],[[-2895,-2896,-2897,-2898,-2899,-2900,-2901]],[[-2902]],[[-2903]],[[-2904]],[[-2905,-2906,-2907,-2908]],[[-2909,-2910,-2911,-2912]],[[-2913]],[[-2914]],[[2889,-2915]],[[-2916,2897,-2917,-2918]],[[-2919,2917,-2920,-2921,-2922]],[[-2923,-2924]],[[-2925,-2926,-2927,-2928]],[[-2929]],[[-2930]],[[-2931]]],"properties":{"Name":"Indonesia  +8"}},{"type":"MultiPolygon","arcs":[[[-2932,-2933]],[[-2934,-2935]],[[-2936]],[[-2937]],[[-2938]],[[-2939]],[[-2940,-2941,-2942,-2943]],[[-2944]],[[-2945,-2946]],[[-2947]],[[-2948,-2949]],[[-2950,-2951,-2952,-2953]],[[-2954]],[[-2955,2951,-2956,-2957]],[[-2958]],[[-2959]],[[-2960]],[[-2961]],[[-2962]],[[-2963]],[[-2964,-2965,-2966]],[[-2967]],[[-2968,-2969]],[[-2970,-2971,-2972]],[[-2973]],[[-2974,-2975]],[[-2976,-2977,-2978,-2979,-2980,-2981,-2982,-2983,-2984,-2985,-2986,-2987,-2988,-2989]],[[-2990,2974,-2991]],[[-2992]],[[-2993,-2994]],[[-2995]],[[-2996,-2997,-2998,-2999]],[[-3000,-3001,-2998,2997,2996]],[[-3002,-3003,-3004]],[[3000,3002,-3005,-3006,2997]],[[3005,-3007,-3008,2998]],[[-3009]],[[-3010]],[[-3011]],[[-3012,-3013]],[[-3014]]],"properties":{"Name":"Indonesia  +9"}},{"type":"MultiPolygon","arcs":[[[-3015,-3016,159,67,164,-3017,-3018,0,-3019,-3020,-3021,-3022,-3023,-3024,-3025]],[[-3026,-3027,-3028]],[[-3029]]],"properties":{"Name":"Iran  +3.5"}},{"type":"Polygon","arcs":[[-3030,-3031,-3032,-3033,3024,3023,-3034,-3035,-3036,-3037,-3038,-3039,-3040]],"properties":{"Name":"Iraq  +3"}},{"type":"MultiPolygon","arcs":[[[-3041,-3042,-3043,-3044,-3045,-3046,-3047,-3048,-3049]]],"properties":{"Name":"Ireland  0"}},{"type":"MultiPolygon","arcs":[[[-3050,-3051,-3052,-3053,-3054,-3055,-3056,-3057,-3058,-3059,-3060,-3061,-3062,-3063,-3064,-3065,-3066,2010]]],"properties":{"Name":"Israel  +2"}},{"type":"MultiPolygon","arcs":[[[-3067]],[[-3068]],[[-3069,-3070]],[[2088,-3071,157,-3072,-3073,3069,-3074],[3074]]],"properties":{"Name":"Italy  +1"}},{"type":"MultiPolygon","arcs":[[[-3076,2730,-3077,-3078,-3079,428,-3080,2145,-3081,-3082,-3083]]],"properties":{"Name":"Ivory Coast  0"}},{"type":"Polygon","arcs":[[-3084]],"properties":{"Name":"Jamaica  -5"}},{"type":"MultiPolygon","arcs":[[[-3085,-3086]],[[3085,-3087]],[[-3088]],[[-3089]],[[-3090]],[[-3091]],[[-3092]],[[-3093]],[[-3094,-3095,-3096,-3097,-3098,-3099,-3100]],[[-3101,3101,-3103]],[[-3104]],[[-3105,-3106,-3107,-3108,-3109,-3110,-3111,-3112,-3113,-3114]],[[-3115,-3116,-3117]],[[-3118,-3119,-3120]],[[-3121]],[[-3122,-3123,-3124,-3125]],[[-3126]],[[-3127]]],"properties":{"Name":"Japan  +9"}},{"type":"Polygon","arcs":[[2012,-3128,3064,3063,3062,-3129,-3130,3057,-3131,3039,-3132]],"properties":{"Name":"Jordan  +2"}},{"type":"Polygon","arcs":[[-3133,-3134,-3135,-3136,-3137,-3138,-3139,-3140,-3141,-3142,-3143]],"properties":{"Name":"Kazakhstan  +4"}},{"type":"Polygon","arcs":[[3137,-3144,-3145,-3146,-3147,-3148,-3149]],"properties":{"Name":"Kazakhstan  +5"}},{"type":"Polygon","arcs":[[-3150,-3151,-3152,-3153,-3154,-3155,1770,-3156,-3157,-3158,-3159]],"properties":{"Name":"Kazakhstan  +6"}},{"type":"MultiPolygon","arcs":[[[-3160,-3161,2045,-3162,-3163,-3164,-3165,-3166,-3167,-3168,-3169]]],"properties":{"Name":"Kenya  +3"}},{"type":"MultiPolygon","arcs":[[[3037,-3170,-3171,-3172,-3173]],[[3170,-3174,-3036,3035,-3175]]],"properties":{"Name":"Kuwait  +3"}},{"type":"Polygon","arcs":[[-3176,-3177,-3178,-3179,-3180,-3181,3156,3155,1769]],"properties":{"Name":"Kyrgyzstan  +6"}},{"type":"Polygon","arcs":[[-3182,-3183,1819,-3184,-3185,441,-3186,-3187,-3188]],"properties":{"Name":"Laos  +7"}},{"type":"Polygon","arcs":[[-3189,2036,-3190,435,-3191]],"properties":{"Name":"Latvia  +2"}},{"type":"Polygon","arcs":[[-3192,-3193,-3194,-3195]],"properties":{"Name":"Lebanon  +2"}},{"type":"Polygon","arcs":[[-3196]],"properties":{"Name":"Lesotho  +2"}},{"type":"Polygon","arcs":[[-3197,-3198,2731,-3199,-3200]],"properties":{"Name":"Liberia  0"}},{"type":"Polygon","arcs":[[-3201,17,-3202,-3203,-3204,-3205,1380,-3206]],"properties":{"Name":"Libya  +2"}},{"type":"MultiPolygon","arcs":[[[-3207,3190,434,-3208,-3209,-3210,-3211]]],"properties":{"Name":"Lithuania  +2"}},{"type":"Polygon","arcs":[[221,220,2137,2136,2084]],"properties":{"Name":"Luxembourg  +1"}},{"type":"Polygon","arcs":[[11,10,-3212,-3213,419,2151]],"properties":{"Name":"Macedonia  +1"}},{"type":"MultiPolygon","arcs":[[[-3214,-3215]]],"properties":{"Name":"Madagascar  +3"}},{"type":"MultiPolygon","arcs":[[[-3216,-3217,-3218,-3219,-3220,-3221]]],"properties":{"Name":"Malawi  +2"}},{"type":"MultiPolygon","arcs":[[[-3222]],[[-3223,-3224,-3225]],[[-3226,-3227,-3228,-3229,-3230,-3231,-3232,-3233,-2863,2862,2861,2860]],[[2862,-3234,-3235,2883]],[[-3236,-3237]]],"properties":{"Name":"Malaysia  +8"}},{"type":"Polygon","arcs":[[-3238,-3239,20,-3240,421,-3241,3077,2729,2728,-3242]],"properties":{"Name":"Mali  0"}},{"type":"MultiPolygon","arcs":[[[-3243]]],"properties":{"Name":"Martinique  -4"}},{"type":"MultiPolygon","arcs":[[[-3244,21,3238,-3238,-3245,-3246,-3247]]],"properties":{"Name":"Mauritania  0"}},{"type":"MultiPolygon","arcs":[[[-3248]],[[-3249,-3250,-3251,-3252,-3253,-3254,-3255,-3256]],[[-3257,-3258,-3259,-3260,-3261,-3262,-3263,-3264,-3265,-3266,-3267]],[[-3268,3253]],[[3268,3269]],[[3260,-3271]],[[-3272,-3273,3263]]],"properties":{"Name":"Mexico -7"}},{"type":"MultiPolygon","arcs":[[[-3274,-3275,-3276,-3277,3258,-3278]],[[-3279]]],"properties":{"Name":"Mexico -8"}},{"type":"MultiPolygon","arcs":[[[-3280,-3281,-3282,-3283,-3284,-3285,-3286,-3287,-3288,-3289,-3290,-3291,-3292,-3293,-3294,-3295,-3296,-3297,-3298,-3299,-3300,-3301,-3302,-3303,-3304,-3305,-3306]],[[-3307]],[[-3308]]],"properties":{"Name":"Mexico  -6"}},{"type":"Polygon","arcs":[[-3309,-3310]],"properties":{"Name":"Moldova  +2"}},{"type":"Polygon","arcs":[[1773,-3311,-3312,-3313,-3314]],"properties":{"Name":"Mongolia  +8"}},{"type":"Polygon","arcs":[[1893,254,-3315,-3316,7,-3317]],"properties":{"Name":"Montenegro  +1"}},{"type":"Polygon","arcs":[[-3318,-3319,-3320,-3321,-3322,-3323,-3324,14]],"properties":{"Name":"Morocco  0"}},{"type":"MultiPolygon","arcs":[[[-3325,-3326]],[[-3327,3219,-3328,-3329,3324,-3330,-3331,-3332,-3333,-3334,-3335,-3336,-3337],[3337]]],"properties":{"Name":"Mozambique  +2"}},{"type":"MultiPolygon","arcs":[[[-3339]],[[-3340]],[[-3341]],[[-3342]],[[-3343,-3344]],[[-3345,-3346,-3347]],[[-3348]],[[-3349,-3350]],[[-3351,-3352]],[[-3353,-3354,2776,2775,1821,1820,3181,-3355,-3356,-3357,-3358,3345,-3359,-3360,-3361,-3362,-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],[3388]]],"properties":{"Name":"Myanmar (Burma)  +6.5"}},{"type":"Polygon","arcs":[[-3390,34,-3391,258,263,-3392,-3393,-3394]],"properties":{"Name":"Namibia  +1"}},{"type":"Polygon","arcs":[[2772,-3395,1826,2774,2773]],"properties":{"Name":"Nepal  +5.75"}},{"type":"MultiPolygon","arcs":[[[-3396,-3397,214]],[[-3398,-3399,-3400,-3401,-3402,2119,2118,218,217,216,3396],[3402]]],"properties":{"Name":"Netherlands  +1"}},{"type":"MultiPolygon","arcs":[[[-3404,-3405,-3405,-3406,-3407,-3408,-3409,-3410,-3411,-3412,-3413,-3414,-3415]],[[-3416]],[[-3417,-3418]],[[-3419]],[[-3420]],[[-3421]]],"properties":{"Name":"New Zealand  +12"}},{"type":"Polygon","arcs":[[-3422,2758,-3423,-3424]],"properties":{"Name":"Nicaragua  -6"}},{"type":"Polygon","arcs":[[-3425,3239,19,3205,1379,-3426,-237,-3427,236,235,-3428]],"properties":{"Name":"Niger  +1"}},{"type":"MultiPolygon","arcs":[[[-3429]],[[-3430,-3427,236,3425,1382,-3431,-3432,-3433,-3434,-3435,-3436,-3437,-3438],[3438]]],"properties":{"Name":"Nigeria  +1"}},{"type":"Polygon","arcs":[[1777,-3440,-3441,-3442,-3443,-3444,-3445]],"properties":{"Name":"North Korea  +9"}},{"type":"MultiPolygon","arcs":[[[-3446]],[[-3447,-3448,-3449,-3450,-3451,-3452,-3453,-3454,-3455]],[[3448,-3456,-3457,-3458,-3458]],[[-3459]],[[-3460,-3461,3453,-3462,-3463]],[[-3464,-3465]],[[-3466,-3467,-3468,-3469,-3470]],[[-3471,-3472,-3473]],[[-3474,-3475]],[[-3476]],[[-3477]],[[-3478]],[[-3479,-3480,-3481,-3482,-3483,-3484,3463,-3485,-3486,-3487],[3487]]],"properties":{"Name":"Norway  +1"}},{"type":"MultiPolygon","arcs":[[[-3489]],[[-3490,-3491]],[[-3492,-3493,-3494,-3495]],[[-3496,-3497]],[[-3498,-3499,-3500,-3501]],[[-3502,-3503]],[[-3504,-3505,-3506]],[[3505,-3507,-3508]],[[-3509]],[[-3510]],[[-3511,-3512,-3513,-3514]],[[-3515,3510,-3516]],[[-3517,-3518]],[[-3519,-3520,-3521,-3522]],[[-3523]],[[-3524]],[[-3525,-3526,-3527]],[[-3528,-3529,-3530]],[[-3531,-3532,-3533]],[[-3534,3530,-3535]],[[-3536,-3537]],[[-3538,3536,-3539,-3540]],[[-3541,-3542,-3543]],[[-3544,-3545]],[[-3546,-3547,-3548,-3549]],[[-3550,-3551,-3552,-3553,-3554]],[[-3555,-3556]],[[-3557,-3558,-3559,3552,-3560,-3561,-3562,-3563,-3564,-3565,-3566]],[[3551,-3567,3559]],[[-3568,3562,-3569]],[[-3570,-3571]],[[-3572,-3573,-3574,-3575,-3576,-3577,-3578]],[[-3579,-3580,-3581]],[[-3582,-3583,-3584,-3585]],[[-3586,3586,-3588,-3589,-3587,-3590,-3591]],[[-3592,-3593]],[[3592,-3594,-3595,-3596,-3597,-3598,-3599,3588]],[[-3600,-3601]],[[3595,3600,-3602]],[[3597,3602,-3603,-3604,-3605]],[[-3606]],[[-3607]],[[-3608,-3609,-3610,-3611]],[[-3612,-3613,-3614]],[[-3615,-3616,-3617]],[[-3618,-3619,-3620,-3621,-3622,-3623,-3624]],[[-3625,3620,-3626,-3627,-3628]],[[-3629]],[[-3630,-3631]],[[-3632]],[[3632,3633,3634,-3636,-3637,3490,-3638,-3639,-3640,-3641,-3642,-3643,-3644,-3645,-3646,-3647,-3648,-3649,-3650,3503,-3651,-3652,-3653,-3654,-3655,3515,-3656,-3657,-3658,-3659,-3660,-3661,-3662,3521,-3663,-3664,-3665,-3666,-3667,-3668,-3669,-3670,-3671,-3672,-3673,-3674,3532,-3675,-3676,3544,-3677,-3678,3555,-3679,-3680,-3681,-3682,-3683,-3684,3568,-3685,-3686,3579,-3687,-3688,-3689,-3690,-3691,-3692,-3693,-3694,-3695,-3696,-3697,-3698,-3699,-3700,-3701,3604,-3702,-3703,-3704,3610,-3705,-3706,-3707,-3708,-3709,-3710,3616,-3711,-3712,-3713,-3714,-3715,-3716,-3717,-3718,3630,-3719,-3720,-3721,-3722,-3723,-3724,-3725,3725,-3726,-3727,-3728,-3729,-3730,2050,-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,3496,3757,-3759,-3760,-3635,-3634,-3633],[3760]]],"properties":{"Name":"Norway  +1"}},{"type":"MultiPolygon","arcs":[[[-3762,-3763,-3764,-3765,-3766,-3767]],[[-3768,-3769,-3770]],[[-3771,3764]]],"properties":{"Name":"Oman  +4"}},{"type":"Polygon","arcs":[[5,1829,-3772,-3773,3018]],"properties":{"Name":"Pakistan  +5"}},{"type":"MultiPolygon","arcs":[[[1852,-3774,1836,-3775]]],"properties":{"Name":"Panama  -5"}},{"type":"MultiPolygon","arcs":[[[2977,-3776,-3777,-3778,-3779,-3780,-3781,-3782,-3783]],[[-3784,-3785,3781]],[[-3786]],[[-3787]],[[-3788]],[[-3789]],[[-3790]],[[-3791]],[[-3792,-3793]],[[3792,-3794,-3795]],[[-3796,-3797]],[[-3798]],[[-3799]],[[-3800]],[[-3801]],[[-3802]],[[-3803]],[[-3804]]],"properties":{"Name":"Papua New Guinea  +10"}},{"type":"Polygon","arcs":[[248,247,408,346,-3805,41]],"properties":{"Name":"Paraguay  -4"}},{"type":"Polygon","arcs":[[-3806,1990,1989,1841,399,398,397,-398,411,242,1655]],"properties":{"Name":"Peru  -5"}},{"type":"MultiPolygon","arcs":[[[-3807]],[[-3808,-3809,-3810]],[[-3811,-3812,-3813,-3814,-3815,-3816]],[[3808,-3817]],[[-3818]],[[-3819]],[[-3820]],[[-3821]],[[-3822]],[[-3823]],[[-3824]],[[-3825]],[[-3826,-3827,-3828]],[[-3829,-3830,-3831,-3832,-3833,-3834,-3835]],[[-3836]],[[-3837]],[[-3838,-3839,-3840,-3841,-3842,-3843,-3844]],[[-3845]],[[-3846,-3847,-3848]],[[-3849,-3850,-3851,-3852]],[[-3853]],[[-3854]],[[-3855]],[[-3856,-3857,-3858]],[[-3859,-3860,3856,-3861,-3862,-3863,-3864,-3865]],[[-3866,3857,-3867]],[[3863,-3868,-3869,-3870]],[[-3871,-3872,3868]],[[-3873]],[[-3874]]],"properties":{"Name":"Philippines  +8"}},{"type":"Polygon","arcs":[[2131,-3875,-3876,-3877,-3878,-3879,-3880,3207,-3881,-3882,-3883,-3884,1920,-3885]],"properties":{"Name":"Poland  +1"}},{"type":"MultiPolygon","arcs":[[[-3886]],[[-3887,-3888]],[[-3889]],[[-3890]],[[-3891]]],"properties":{"Name":"Portugal  -1"}},{"type":"MultiPolygon","arcs":[[[-3892]],[[-3893,-3894]]],"properties":{"Name":"Portugal  0"}},{"type":"MultiPolygon","arcs":[[[-3895]]],"properties":{"Name":"Puerto Rico  -4"}},{"type":"Polygon","arcs":[[-3896,-3897]],"properties":{"Name":"Qatar  +3"}},{"type":"Polygon","arcs":[[2766,-3898,3309,-3899,-3900,414,-3901]],"properties":{"Name":"Romania  +2"}},{"type":"MultiPolygon","arcs":[[[-3902,-3903,-3904,-3905,-3906,-3907,-3908,-3909,-3910,-3911,-3912,-3913,-3914,-3915,-3916]],[[-3917,-3918,-3919,-3920]],[[-3921]],[[-3922]],[[-3923]],[[-3924]],[[-3925]],[[-3926]],[[-3927]],[[-3928]],[[-3929]],[[-3930,-3931]],[[-3932]],[[-3933,-3934,-3935]],[[-3936]],[[-3937,-3938,-3939,-3940]],[[-3941,-3942],[3942,-3943]]],"properties":{"Name":"Russia +11"}},{"type":"MultiPolygon","arcs":[[[-3944,-3945,-3946,-3947,-3948,-3949,-3950,-3951,-3952,3916,-3953,-3954,-3955,-3956,-3957,-3958,-3959,3439,1775]],[[-3960]],[[-3961]],[[-3962]],[[-3963,-3964,-3965,-3966,-3967]],[[-3968,-3969,-3970,-3971]],[[-3972]],[[-3973,-3974]],[[-3975]],[[-3976]],[[-3977]]],"properties":{"Name":"Russia  +10"}},{"type":"MultiPolygon","arcs":[[[-3978,-3979,-3980]],[[-3981]],[[-3982,-3983,-3984]],[[-3985,-3986,-3987,-3988,-3989,3914,-3990,-3991,-3992]],[[-3993]],[[-3994]],[[-3995]],[[-3996]],[[3996]],[[-3998,3990]]],"properties":{"Name":"Russia  +12"}},{"type":"MultiPolygon","arcs":[[[3878,-3999,-4000,-4001,-4002,3209,3879]]],"properties":{"Name":"Russia  +2"}},{"type":"MultiPolygon","arcs":[[[2035,-4003,-4004,2051,3729,-4005,-4006,-4007,-4008,-4009,-4010,-4011,-4012,-4013,-4014,-4015,-4016,-4017,-4018,-4019,-4020,-4021,-4022,-4023,-4024,-4025,-4026,-4027,-4028,-4029,-4030,162,-4031,-4032,-4033,-4034,-4035,-4036,-4037,-4038,436,3189]],[[-4039]],[[-4040,-4041]],[[-4042,-4043,4040]],[[-4044]],[[-4045,-4046]],[[-4047]],[[-4048]],[[-4049,-4050]],[[-4051,-4052,-4053,-4054,-4055,-4056,-4057,-4058,-4059,-4060,-4061,-4062]],[[-4063,-4064]],[[-4065,4061,-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,4081]],[[-4091,-4092]],[[-4093]],[[-4094,-4095]],[[-4096,-4097,-4098,-4099,-4100]],[[-4101,-4102,-4103]],[[-4104,-4105,-4106]],[[-4107,-4108,-4109,-4110,-4111,-4112,-4113,4087,-4114,-4115]],[[4096,-4116,-4117,-4118,-4119]],[[-4120,4105]],[[-4121,-4122,-4123]],[[-4124,-4125]],[[-4126]],[[4109,-4127,-4128,-4129]],[[4111,-4130]],[[4116,-4131,-4132]],[[-4133,-4134]],[[-4135,-4136,-4137]],[[-4138,-4139]],[[-4140,-4141]],[[-4142,-4143]],[[4135,-4144,-4145]],[[-4146]],[[-4147,-4148]],[[-4149,-4150,4072]],[[-4151]],[[-4152]],[[-4153]],[[-4154]]],"properties":{"Name":"Russia  +3"}},{"type":"MultiPolygon","arcs":[[[4021,-4155,4022]],[[-4156,-4157]],[[-4158,4027,4026,-4159,-4160,-4161,3133,3132,-4162,-4163,-4164,-4165,-4166,-4167],[4167]]],"properties":{"Name":"Russia  +4"}},{"type":"MultiPolygon","arcs":[[[4160,4159,-4169,4024,-4024,-4170,4154,4020,-4171,-4172,-4173,-4174,-4175,-4176,-4177,-4178,-4179,-4180,-4181,-4182,-4183,-4184,-4185,-4186,-4187,-4188,-4189,-4190,3150,3144,3143,3136,3135,-3135]],[[-4191,4174,-4192]],[[-4193,-4194,-4195]],[[-4196,-4197,-4198,-4199,-4200]],[[-4201]],[[-4202]],[[-4203]],[[-4204]],[[-4205]],[[-4206,-4207,4184]]],"properties":{"Name":"Russia  +5"}},{"type":"MultiPolygon","arcs":[[[4188,-4208,3152,-4209]],[[-4210]],[[-4211]],[[-4212]],[[-4213]],[[4213]]],"properties":{"Name":"Russia  +6"}},{"type":"MultiPolygon","arcs":[[[-4215]],[[-4216]],[[4216,-4217,-4218,-4219,-4220]],[[-4221,-4222,-4223]],[[-4224]],[[-4225]],[[4225]],[[-4227,-4228,4228,-4229]],[[-4230,-4231,-4232]],[[-4233]],[[-4234]],[[-4235]],[[-4236,-4237,-4238]],[[-4239]],[[-4240,-4241,-4242,-4243,-4244,-4245,-4246,4236]],[[-4247,-4248,-4249,-4250,-4251,-4252,-4253]],[[-4254,-4255]],[[-4256]],[[-4257,-4258,-4259,-4260,-4261,-4262]],[[4254,-4263]],[[-4264]],[[-4265]],[[4251,-4266]],[[-4267,-4268]],[[-4269]],[[-4270]],[[-4271]],[[-4272,-4273,-4274]],[[-4275,-4276]],[[4207,4187,-4277,-4278,-4279,-4280,-4281,-4282,-4283,-4284,4284,-4285,4222,-4286,-4287,-4288,-4289,-4290,-4291,-4292,-4293,-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,3310,1772,1771,3153],[4321]],[[-4323],[4323]]],"properties":{"Name":"Russia  +7"}},{"type":"Polygon","arcs":[[4319,-4325,-4326,-4327,-4328,3312,3311]],"properties":{"Name":"Russia  +8"}},{"type":"MultiPolygon","arcs":[[[4317,-4329,4272,-4330,-4331,-4332,-4333,-4334,-4335,-4336,-4337,-4338,-4339,-4340,-4341,-4342,-4343,-4344,-4345,-4346,-4347,-4348,-4349,-4350,-4351,-4352,1774,3313,4327,4326,4325,-4353]],[[-4354]],[[-4355]],[[-4356,-4357]],[[4333,-4358,-4359]],[[4334,-4335,-4360,-4361,4336,-4362,-4363]],[[-4364,-4365,-4366,-4367,-4368,-4369,-4370,-4371,-4372,-4373,-4374,-4375,-4376,-4377,-4378,-4379,4338,-4380,4359,-4381]],[[-4382]],[[4382,-4384,-4385,-4386,-4387,-4388,-4389,-4390,-4391,-4392,4382,-4383]],[[4392,-4393,-4394,-4395,-4396,-4397,-4398,-4399,-4400,-4401,-4402]],[[4395,-4403,4389,-4404,-4405,-4406,-4407,-4408,-4409]],[[-4410,4386]],[[-4411,-4412,-4413,-4414,-4409]],[[4388,-4415,-4416,-4417,4403]]],"properties":{"Name":"Russia  +9"}},{"type":"Polygon","arcs":[[-4418,-4419,-4420,431,-431]],"properties":{"Name":"Rwanda  +2"}},{"type":"Polygon","arcs":[[-4421]],"properties":{"Name":"Saint Lucia  -4"}},{"type":"Polygon","arcs":[[-4422]],"properties":{"Name":"Saint Vincent  -4"}},{"type":"MultiPolygon","arcs":[[[-4423,-4424,3131,3038,3172,-4425,-4426,-4427,-4428,-4429,-4430,-4431]],[[-4432,-4433]],[[-4434,-4435]]],"properties":{"Name":"Saudi Arabia  +3"}},{"type":"Polygon","arcs":[[-4436,-4437,3241,2727,-4438,-4439,-4440,-4441]],"properties":{"Name":"Senegal  0"}},{"type":"Polygon","arcs":[[2767,3900,413,3212,3211,-4442,9,3315,3314,253,1857]],"properties":{"Name":"Serbia  +1"}},{"type":"MultiPolygon","arcs":[[[2733,-4443,-4444,-4445,-4446,-4447,-4448]],[[-4449,4445]]],"properties":{"Name":"Sierra Leone  0"}},{"type":"Polygon","arcs":[[153,1921,3883,-4450,2764,-4451]],"properties":{"Name":"Slovakia  +1"}},{"type":"Polygon","arcs":[[-4452,-4453,156,2769,2768,1855,1854]],"properties":{"Name":"Slovenia  +1"}},{"type":"Polygon","arcs":[[-4454,-4455,2043,2042,-4456,-4457]],"properties":{"Name":"Somalia  +3"}},{"type":"MultiPolygon","arcs":[[[-4458,-4459]],[[-4460]],[[3391,-4461,262,-4462,3335,3334,-4463,-4464,3332,-4465],[3195]]],"properties":{"Name":"South Africa  +2"}},{"type":"MultiPolygon","arcs":[[[-4466,-4467]],[[-4468]],[[-4469,-4470,-4471,-4472,-4473,-4474,-4475,-4476,4466,-4477,-4478,-4479,-4480]]],"properties":{"Name":"South Korea  +9"}},{"type":"MultiPolygon","arcs":[[[-4481,2091,25,-4482,2090,-4483,-4484,3893]],[[-4485]],[[-4486]],[[-4487]]],"properties":{"Name":"Spain  +1"}},{"type":"MultiPolygon","arcs":[[[-4488]],[[-4489]],[[-4490]],[[-4491]],[[-4492]],[[-4493]]],"properties":{"Name":"Spain  0"}},{"type":"Polygon","arcs":[[-4494,-4495]],"properties":{"Name":"Sri Lanka  +5.5"}},{"type":"Polygon","arcs":[[-4496,4494]],"properties":{"Name":"Sri Lanka  +6"}},{"type":"Polygon","arcs":[[1381,3204,2016,-4497,-4498,2040,3160,-4499,-4500,-4501,-4502,1371]],"properties":{"Name":"Sudan  +2"}},{"type":"Polygon","arcs":[[-4503,-4504,-4505,2096,266,406,405]],"properties":{"Name":"Suriname  -3"}},{"type":"Polygon","arcs":[[4463,4462,3333]],"properties":{"Name":"Swaziland  +2"}},{"type":"MultiPolygon","arcs":[[[-4506,-4507]],[[-4508,-4509]],[[-4510]]],"properties":{"Name":"Sweden  +1"}},{"type":"MultiPolygon","arcs":[[[2087,-4511,2134,-2134,2132,149,148,158,3070],[4511]]],"properties":{"Name":"Switzerland  +1"}},{"type":"Polygon","arcs":[[3056,3194,3193,-4513,-4514,3030,3029,3130]],"properties":{"Name":"Syria  +2"}},{"type":"MultiPolygon","arcs":[[[-4515]]],"properties":{"Name":"Taiwan  +8"}},{"type":"Polygon","arcs":[[-4516,-4517,-4518,3177,3176,3175,1768,3]],"properties":{"Name":"Tajikistan  +6"}},{"type":"MultiPolygon","arcs":[[[-4519,432,4419,-4520,3168,-4521,3327,3218,3217,-4522]],[[-4523]],[[-4524]],[[-4525]]],"properties":{"Name":"Tanzania, United Republic of  +3"}},{"type":"MultiPolygon","arcs":[[[-4526,-3188,3186,3185,439,-4527,-4528,-4529,-4530,-4531,-4532,-4533,-4534,-4535,-4536,-4537,-4538,4538,-4539,-4540]],[[-4541,-4542,4542]],[[-4544,-4545]],[[-4546]],[[-4547,448]]],"properties":{"Name":"Thailand  +7"}},{"type":"Polygon","arcs":[[-4548,424,232,231,-4549,-4550]],"properties":{"Name":"Togo  0"}},{"type":"MultiPolygon","arcs":[[[-4551]]],"properties":{"Name":"Trinidad and Tobago  -4"}},{"type":"MultiPolygon","arcs":[[[16,-4552,-4553,-4554,3201,-4555]],[[-4556,-4557,-4558]]],"properties":{"Name":"Tunisia  +1"}},{"type":"MultiPolygon","arcs":[[[-4559,-4560,-4561,-4562,-4563,-4564,-4565,-4566,-4567,-4568]],[[-4569,-4570,4564,-4571,-4572,4562,-4573,-4574,61,70,69,3015,3014,3032,3031,-4575,-4576,-4577,-4578,-4579,-4580,-4581,2196,-4582]]],"properties":{"Name":"Turkey  +2"}},{"type":"Polygon","arcs":[[3139,-4583,1,3017,-4584,-4585]],"properties":{"Name":"Turkmenistan  +5"}},{"type":"Polygon","arcs":[[-4586,-4587,4498,3159,4519,4418]],"properties":{"Name":"Uganda  +3"}},{"type":"Polygon","arcs":[[-4588,3882,3881,437,-4589,-4590,-4591,-4592,-4593,-4594,3308,3897,2765]],"properties":{"Name":"Ukraine  +2"}},{"type":"MultiPolygon","arcs":[[[4427,-4595,-4596,-4597,-4598,-4599,3762]],[[-4600,-4601]]],"properties":{"Name":"United Arab Emirates  +4"}},{"type":"MultiPolygon","arcs":[[[-4602,-4603]],[[-4604]],[[-4605]],[[-4606]],[[-4607]],[[-4608,-4609,-4610,-4611,-4612,-4613]],[[-4614,-4615,-4616]],[[-4617,-4618]],[[-4619,-4620,-4621,-4622]],[[-4623,-4624,-4625,4611,-4626,-4627,-4628,4608,-4629,-4630,-4631,-4632,-4633,-4634,-4635,-4636,-4637,-4638,-4639,4639,-4641,-4640,-4642,-4643,-4644,-4645,-4646,-4647,-4648]],[[-4649,-4650,-4651,4643]],[[4638,-4652]],[[-4653,-4654,-4655]],[[4653,-4656,4656,-4657]],[[-4658,-4659,-4660]],[[-4661]],[[-4662,-4663,-4664]],[[4634,-4665,-4666]],[[-4667,4663,-4668,-4669]],[[-4670,-4671]]],"properties":{"Name":"United Kingdom  0"}},{"type":"MultiPolygon","arcs":[[[-4672,-4673,501,-4674,-4675,-4676,-4677,-4678,-4679,3280,-4680,-4681],[-4682,-4683,-4684,-4684,-4684,-4684,-4685,-4686,-4687]]],"properties":{"Name":"United States -7"}},{"type":"MultiPolygon","arcs":[[[3250,-4688,-4689,4680,4679]],[[-4690,-4691,-4692]],[[4686,4685,4684,-4684,-4684,-4684,-4684,4682,4681],[4692,4693]]],"properties":{"Name":"United States -7 no ds"}},{"type":"MultiPolygon","arcs":[[[-4695,-4696,-4697]],[[-4698]],[[-4699]],[[-4700]],[[-4701]],[[-4702]]],"properties":{"Name":"United States -8"}},{"type":"Polygon","arcs":[[-4703,-4704,-4705,-4706,-4707,-4708,-4709,-4710,-4711,-4712,-4713,-4714,-4715,-4716,4671,4688,-4688,3249,3273]],"properties":{"Name":"United States -8"}},{"type":"MultiPolygon","arcs":[[[-4717]],[[-4718]],[[-4719]],[[-4720]],[[-4721,-4722,-4723,-4724]],[[-4725]],[[-4726]],[[-4727,-4728,-4729,-4730]],[[4727,-4731]],[[-4732]],[[-4733,-4734]],[[-4735]],[[-4736,-4737]],[[-4738,-4739]],[[-4740,-4741]],[[-4742,-4743]],[[-4744,-4745]],[[-4746,4744,-4747]],[[-4748,-4749]],[[-4750]],[[-4751,-4752]],[[-4753,-4754,-4755,-4756,-4757,-4758,-4759]],[[-4760,-4761,4751]],[[-4762]],[[-4763]],[[-4764,-4765]],[[-4766]],[[-4767,-4768,-4769]],[[-4770]],[[-4771,-4772]],[[-4773]],[[-4774,-4775]],[[-4776]],[[-4777,-4778]],[[-4779,4774,-4780,-4781]],[[-4782,-4783]],[[-4784]],[[-4785,-4786,-4787,-4788,-4789,-4790,-4791,-4792,-4793,-4794,-4795,-4796,-4797,-4798,-4799,-4800,-4801,-4802,-4803,-4804,-4805,-4806,-4807,-4808,-4809,-4810,-4811,-4812,-4813,4813,-4814,-4815,-4816,-4817,-4818,-4819,-4820,-4821]],[[-4822,4822,-4823,-4824,-4825,-4826,-4827,-4828,-4829,4829,-4830,-4831,-4832,-4833,-4834]],[[-4835,-4836,-4837,-4838,-4839,-4840,-4841,-4842]],[[-4843,-4844,-4845,-4846,-4847,4809,-4848,-4849,-4850]],[[-4851,-4852,-4853,-4854,-4855]],[[-4856,-4857,4805,-4858,-4859,-4860,-4861,-4862,-4863]],[[-4864,-4865,-4866,-4867]],[[-4868,-4869]],[[-4870,-4871]],[[-4872,-4873,-4874,-4875,-4876,-4877,-4878,-4879,-4880,-4881,-4882,-4883,-4884,4883,-4884,-4885,-4886,-4887,-4888,-4889,-4890,-4891,-4892]],[[-4893,4870,-4894,4884]],[[4868,-4895,-4896]],[[-4897,-4898,4891,-4899]],[[-4900,-4901,-4902]],[[-4903,-4904,-4905]],[[-4906,4857,-4858,-4907,-4908]],[[-4909,-4910,-4911,4800,4799,-4912]],[[-4913,4802,-4914,4910]],[[-4915,-4916,-4917,-4918,-4919,-4920]],[[-4921,-4922,-4923]],[[-4924,-4925,-4926,-4927,-4928,-4929,684,-4930,-4931,-4932,4819,-4933,-4934,-4935,-4936,-4937,-4937,-4938,-4939,-4940,-4941,-4942,-4943,-4944,-4945,-4946,-4947,-4948,-4949,-4950,-4951,-4952,4779,-4953,-4954,-4955,-4956,4778,-4957,-4958,-4959,-4960,-4961,4770,-4962,-4963,-4964,-4965,-4966,-4967,-4968,-4969,-4970,-4971,4733,-4972,-4973,-4974,-4975,-4976],[4976]]],"properties":{"Name":"United States -9"}},{"type":"MultiPolygon","arcs":[[[-4978,-4979,-4980]],[[4978,-4981,-4982]],[[-4983,-4984,-4985]],[[-4986]],[[-4987]],[[-4988]],[[-4989]],[[-4990]],[[-4991]],[[-4992]],[[-4993]],[[-4994]]],"properties":{"Name":"United States  -10"}},{"type":"MultiPolygon","arcs":[[[-4995,-4996,-4997,-4998,-4999,-5000,-5001,-5002]],[[-5003,-5004,-5005]],[[-5006,-5007]],[[-5008,-5009,-5010]],[[5010,5011,5012]],[[-5014]],[[-5015,-5016,-5017]],[[-5018,-5019,-5020]],[[-5021]],[[-5022]],[[-5023]]],"properties":{"Name":"United States  -5"}},{"type":"MultiPolygon","arcs":[[[-5024,-5025,-5026,-5027,-5028,-5029,-5030,-5031,-5032,-5033,-5034,-5035,-5036,-5037,-5038,-5039,-5040,-5041,-5042,-5043,-5044,-5045,-5046,-5047,-5048,-5049,904,-5050,-5051,-5052,-5053,-5054,-5055,-5056,-5057,-5058,-5059,-5060,-5060,-5061,-5062,-5063,-5064,-5065,-5066,-5066,-5066,-5067,5066,-5067,5066,-5067,-5068,-5069,-5069,-5069,5069,-5070,-5071,5071,-5073,-5074,-5074,-5075,5075,-5077,5076,-5077,-5072,5071,5076,-5077,-5072,-5078,-5079,5077,-5078,-5080,-5081,-5076,-5082,5081,-5082,-5083,5082,-5083,5082,-5083,-5084,-5085,-5085,-5085,-5086,-5087,-5088,-5088,5088,-5090,-5089,-5088,-5091,-5091,5088,-5090,-5089,-5091,-5091,-5092,5091,-5092,-5093,5092,-5093,5092,-5093,5092,-5093,-5094,-5094,-5095,-5096,-5097,-5098,-5099,-5100,-5101,-5102,-5103,-5104,-5105,-5106,-5107,5015,-5108,-5109,-5110,-5111,-5112,-5113,-5114,-5115,-5116,-5117,-5118,5118,-5119]],[[-5120,5119,-5120,-5121,-5122]]],"properties":{"Name":"United States  -5"}},{"type":"MultiPolygon","arcs":[[[5122,-5123,-5124,-5125]],[[-5126,-5127,-5128,-5129]],[[-5130,-5131]],[[-5132]],[[5132]]],"properties":{"Name":"United States  -6"}},{"type":"MultiPolygon","arcs":[[[-5134,-5135,-5136,-5137,-5138,-5139,-5140,-5141,-5142,1356,-5143,-5144,-5145,-5146,4994,-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,-5123,-5175,-5176,-5177,-5178,-5179,-5180,-5181,-5182,-5183,-5184]],[[-5185,-5186,-5187,-5188,-5189]]],"properties":{"Name":"United States  -6"}},{"type":"Polygon","arcs":[[-5190,46,-5191,44,393,-5192,48]],"properties":{"Name":"Uruguay  -3"}},{"type":"Polygon","arcs":[[-5193,3148,3158,3157,-3181,3179,3178,4517,4516,4515,2,4582]],"properties":{"Name":"Uzbekistan  +5"}},{"type":"MultiPolygon","arcs":[[[-5194,-5195,-5196,-5197,-5198,-5199,-5200,-5201,-5202,-5203,-5204,-5205,-5206,-5207,-5208,403,1840]],[[-5209]],[[5204,-5210,5201]],[[-5211,5205]]],"properties":{"Name":"Venezuela  -4"}},{"type":"MultiPolygon","arcs":[[[-5212,-5213,-5214,-5215,-5216,-5217,-5218,-5219,-5220,-5221,442,3184]],[[-5222,-5223]]],"properties":{"Name":"Vietnam  +7"}},{"type":"MultiPolygon","arcs":[[[-5224]]],"properties":{"Name":"Virgin Islands  -4"}},{"type":"MultiPolygon","arcs":[[[3060,3059,3129,3128,3061],[5224]]],"properties":{"Name":"West Bank  +2"}},{"type":"Polygon","arcs":[[-5226,-5227,3317,22]],"properties":{"Name":"Western Sahara  0"}},{"type":"MultiPolygon","arcs":[[[-5228,-5229,3766,-5230]],[[-5231]]],"properties":{"Name":"Yemen  +3"}},{"type":"Polygon","arcs":[[37,-5232,1846,1845,1375,1374,-5233,29,-5234,27,-5235]],"properties":{"Name":"Zaire  +1"}},{"type":"Polygon","arcs":[[5232,-5236,1373,4501,4500,4586,-5237,4417,429,4518,-5238,32,-5239,30]],"properties":{"Name":"Zaire  +2"}},{"type":"Polygon","arcs":[[-5240,32,31,5238,-33,5237,4521,3216,3215,-3221,3326,-5241,259,3390]],"properties":{"Name":"Zambia  +2"}},{"type":"Polygon","arcs":[[259,-260,5240,3336,4461,-262,260]],"properties":{"Name":"Zimbabwe  +2"}}]}},"arcs":[[[669,650],[0,-1],[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,-1],[1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-2],[1,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[1,-1],[1,0],[0,-1],[0,-2],[-1,-1],[-1,-3],[0,-1],[0,-1],[-1,-1],[0,-1]],[[684,662],[-1,0],[0,1],[-1,0],[0,-1],[-1,-1],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,0],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[0,1],[0,1],[-1,0],[0,1],[0,-1],[-1,0],[0,1],[0,1],[-1,0]],[[687,661],[-1,0],[0,1],[-1,0],[-1,0]],[[707,661],[0,1],[-1,0],[-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],[-1,-1],[0,-1],[-1,0],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[1,1],[-1,1],[-1,1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,1],[-1,0],[0,-1],[-1,0],[0,-1],[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]],[[706,659],[0,1],[0,1],[1,0]],[[668,608],[1,0],[2,-2],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,1],[1,0],[1,1],[0,1],[0,1],[0,2],[0,1],[0,3],[1,0],[0,1],[0,1],[1,0],[1,0],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0],[0,-1],[0,1],[1,0],[0,-1],[0,-1],[1,1],[0,1],[0,1],[1,0],[-1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[1,0],[0,-1],[1,0],[1,0],[1,1],[0,1],[0,1],[-1,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[1,1],[0,1],[1,1],[1,1],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,1]],[[553,697],[1,-1],[0,-1],[-1,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[1,0],[0,-1]],[[555,701],[-1,0],[0,1],[0,-1],[-1,-2],[0,-1],[0,-1]],[[555,701],[0,1],[0,-1]],[[557,697],[-1,1],[0,1],[0,1],[-1,1]],[[556,697],[1,0]],[[558,689],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[555,681],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1]],[[555,682],[0,-1]],[[493,647],[1,-1],[0,-1],[1,0],[-1,-1],[1,-1],[-1,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-2],[1,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,1],[-1,0],[-1,0],[-1,0],[-2,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,-1],[0,-1],[-1,0],[0,1],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-6],[0,-2]],[[523,661],[-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],[1,1],[-1,0],[0,1],[-1,0],[0,-1],[0,1],[-1,0],[0,-1],[0,1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[0,1],[-1,0],[0,-1],[0,-1],[-1,0],[0,1],[0,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[0,-1],[-1,0],[-1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,1],[-1,0],[0,-1],[-1,0],[-1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0]],[[526,613],[0,1],[-1,1],[0,1],[0,2],[0,1],[0,2],[0,1],[0,2],[0,1],[-1,1],[0,1],[-1,0],[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,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[-1,1],[1,0],[0,1],[0,1],[0,1]],[[526,612],[0,1]],[[533,563],[-1,1],[0,2],[0,1],[-1,2],[0,1],[-1,0],[-1,0],[0,1],[0,-1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,3],[-1,0],[0,1],[1,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],[0,2],[0,1],[0,1],[-1,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,0],[0,1],[0,1],[1,0]],[[511,531],[0,1],[1,0],[1,0],[1,1],[1,0],[0,1],[1,1],[1,2],[0,1],[1,1],[1,2],[1,3],[1,1],[0,1],[1,0],[1,3],[1,2],[2,2],[0,1],[1,1],[1,1],[1,2],[1,2],[2,2],[1,1]],[[486,574],[1,-1],[1,-2],[1,-2],[1,-1],[0,-1],[2,-2],[1,-2],[1,-2],[1,-2],[0,-1],[1,-1],[1,-2],[1,-2],[1,-2],[1,-1],[1,-1],[1,-2],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,-1],[0,1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[1,1],[1,0]],[[475,590],[2,-2],[1,-2],[1,-1],[0,-1],[1,-1],[1,-1],[1,-2],[1,-2],[1,0],[1,-2],[1,-2]],[[475,593],[0,-1],[0,-2]],[[504,702],[0,1],[-1,-1]],[[504,701],[0,1]],[[503,702],[0,-1],[1,0]],[[533,350],[0,-1],[0,-2],[1,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[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],[1,-2],[0,-1],[0,-1],[0,-2],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[-1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,-2],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[534,350],[-1,0]],[[535,351],[0,-1],[-1,0]],[[554,343],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[0,1],[-1,-1],[-1,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,2],[0,1],[0,1],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0]],[[565,315],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,1],[0,-1],[0,1],[-1,0],[0,-1],[0,-1],[0,1],[0,1],[-1,0],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,2],[-1,0],[0,2],[0,1],[0,1],[1,1],[0,1],[0,2],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[1,1],[0,1],[-1,1],[-1,0],[-2,0],[0,1],[0,1],[0,1],[-1,0],[0,-1],[-1,0]],[[566,312],[-1,1],[0,2]],[[566,311],[0,1]],[[564,266],[-1,1],[0,1],[-1,2],[0,1],[-1,1],[0,2],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,3],[0,1],[0,4],[0,1],[0,2],[0,3],[0,1],[0,2],[0,1],[0,1],[0,3],[1,0],[2,0],[1,0],[1,0],[0,1],[0,2],[1,1],[0,1],[-1,0],[0,3],[0,1],[1,2]],[[531,270],[1,0],[0,1],[0,-1],[1,0],[1,1],[1,1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,1],[1,0],[1,0],[2,0],[1,0],[2,-1],[2,0],[1,0],[1,0],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[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]],[[535,361],[0,1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,-1]],[[535,360],[0,1]],[[533,352],[1,0],[0,4],[0,1],[0,1],[1,1],[0,1]],[[532,357],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1]],[[311,228],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-2],[0,-2],[-1,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-2],[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],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-2],[0,-1],[0,-1],[-1,0],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[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],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[1,0],[-1,-1],[0,-1],[0,-1],[1,0],[0,-1],[-1,0],[1,0],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[-1,0],[-1,0],[0,-1],[1,0],[1,-1],[1,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[-1,-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],[-1,0],[0,-1],[1,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[1,0],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,1],[0,-1],[0,1],[1,-1],[0,-1],[1,-1],[-1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,-1],[1,0],[2,0],[1,-1],[1,0],[1,-1],[1,0],[1,0],[0,-1],[1,0]],[[323,233],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[-1,1],[0,1],[0,1],[0,1],[-1,1],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1]],[[346,209],[0,-1],[0,-1],[-1,0],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,-1],[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,0],[0,1],[-1,0],[-1,0],[0,-1],[-1,0],[0,1],[0,1],[1,1],[0,1],[1,1],[0,1],[-1,0],[0,1],[1,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,2],[-1,0],[0,1],[-1,1]],[[346,210],[0,-1],[0,1],[0,-1]],[[337,175],[0,1],[1,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,1],[0,1],[0,1],[1,2],[0,1],[0,1],[1,0],[0,1],[0,1],[1,1],[0,1],[1,1],[1,1],[0,1],[1,1],[1,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[-1,0]],[[335,156],[0,1],[0,1],[0,1],[1,1],[-1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1]],[[335,154],[0,1],[0,1]],[[335,152],[0,1],[0,1]],[[335,148],[-1,1],[0,1],[0,1],[0,1],[1,0]],[[335,146],[0,1],[0,1]],[[314,21],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,-1],[0,1],[1,0],[0,-1],[1,1],[-1,1],[0,1],[0,1],[-1,0],[1,1],[-1,1],[0,1],[1,1],[1,1],[0,1],[-1,0],[-1,0],[1,0],[1,0],[0,-1],[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],[1,0],[0,1],[1,0],[0,1],[1,1],[0,1],[0,1],[-1,0],[0,-1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[-1,1],[-1,0],[-1,0],[-1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[1,1],[0,1],[0,1],[1,0],[1,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[1,0],[1,0],[0,-1],[0,-1],[1,0],[1,1],[0,1],[0,2],[-1,0],[0,1],[0,1],[0,-1],[-1,0],[0,-1],[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],[-1,0],[0,2],[0,1],[0,1],[0,1],[1,0],[0,-1],[1,0],[1,-1],[0,-1],[1,0],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[0,-1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[1,-1],[0,-1],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[1,1],[1,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[1,1],[0,3],[0,1],[-1,0],[0,1],[0,-1],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[-1,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1]],[[315,20],[0,1],[-1,0]],[[315,18],[0,-1],[1,-2],[0,-1],[0,-1],[1,-2],[0,-2],[1,-1],[0,-2]],[[316,15],[1,0],[-1,1],[0,1],[-1,1]],[[316,15],[0,1],[0,-1]],[[316,14],[0,1]],[[323,4],[1,0],[1,0],[1,0],[1,0],[0,1],[-1,1],[0,-1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,1],[-1,1],[-1,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0]],[[322,5],[1,0],[0,-1]],[[319,6],[1,0],[0,-1],[1,0],[1,0]],[[318,6],[1,0]],[[325,109],[1,-1],[0,1],[-1,0]],[[328,4],[1,0],[1,0],[-1,1],[0,-1],[-1,0]],[[620,691],[0,-1]],[[624,691],[-1,0],[-1,0],[-1,0],[0,-1],[-1,1]],[[624,691],[0,1],[0,-1]],[[625,690],[0,1],[-1,0]],[[625,690],[-1,0]],[[628,674],[0,1],[0,1],[0,1],[0,-1],[1,1],[-1,0],[0,1],[0,1],[0,1],[0,-1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[1,0],[0,1],[0,1],[-1,1],[0,1],[-1,1],[0,1],[1,0],[0,1],[-1,1]],[[627,674],[1,0]],[[624,680],[0,1],[1,-2],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1]],[[623,681],[0,-1],[1,0]],[[620,690],[1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[1,-1],[-1,0],[1,-1],[1,0],[0,1],[0,-1],[1,0],[0,-1]],[[625,690],[0,-1],[0,1]],[[856,288],[0,-79],[0,-41]],[[864,312],[1,0],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[0,-2],[0,-1],[0,1],[-1,-1],[0,-1],[0,1],[-1,-1],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,2],[-1,0],[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,-2],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[1,-1],[1,0],[-1,0],[0,-1],[0,-1],[1,0],[-1,0],[0,-1],[0,-1],[0,-1],[0,1],[0,1],[-1,1],[0,-1],[0,-1],[0,1],[0,1],[-1,0]],[[866,314],[-1,0],[1,-1],[0,-1],[-1,1],[0,1],[0,-1],[-1,0],[0,-1]],[[866,314],[0,-1],[0,1]],[[867,312],[-1,1],[0,1]],[[867,312],[0,-1],[0,1]],[[878,281],[-1,0],[0,1],[0,1],[-1,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[1,0],[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],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[-1,0],[0,2],[-1,-1],[0,-1],[0,-1],[-1,0],[1,1],[-1,0],[0,1],[0,-1],[-1,0],[0,1],[1,1],[0,1],[0,1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,1],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[0,-1],[-1,1],[-1,0],[0,1],[0,1],[0,1],[-1,0]],[[882,274],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,1],[-1,0],[0,1],[0,1]],[[890,120],[-1,22],[0,8],[0,1],[0,1],[0,10],[0,46],[-8,1],[1,65]],[[856,168],[1,0],[1,0],[1,0],[0,1],[1,0],[1,-1],[1,1],[1,0],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[0,1],[1,0],[1,0],[0,-1],[0,-1],[1,0],[1,1],[0,-1],[0,-1],[1,0],[-1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,-1],[0,-2],[0,-1],[-1,1],[0,1],[0,-1],[1,-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,1],[0,1],[0,1],[0,1],[1,1],[1,1],[0,1],[0,-1],[1,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,-1],[0,-1],[1,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-2],[0,-2],[-1,0],[0,-1],[0,-1],[0,-1],[0,1],[1,0],[0,1],[1,0],[0,-1],[0,1],[0,2],[0,1],[0,1],[1,1],[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],[-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],[0,1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,0],[-1,0],[0,1],[0,1],[-1,2],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-2],[1,-1],[0,-1],[1,-1],[0,1],[0,-1],[1,0]],[[860,313],[0,-1],[0,-1],[0,-1],[-1,-1],[1,0],[1,0]],[[861,312],[-1,1]],[[861,310],[0,1],[0,1]],[[861,309],[0,1]],[[860,313],[1,-1],[0,-2],[0,-1]],[[861,312],[0,1],[0,1],[-1,0],[0,-1]],[[864,312],[-1,1],[0,-1],[0,1],[-1,0],[0,-1],[0,1],[0,-1],[-1,0]],[[861,309],[1,0],[0,-1],[0,1],[1,0],[0,1],[1,1],[0,1]],[[877,137],[0,-1],[1,0],[1,0],[1,-1],[0,1],[0,1],[1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,-1],[0,1],[0,-1],[-1,-1]],[[877,294],[0,-1],[0,-2],[1,0],[1,0],[0,1],[0,-1],[-1,0],[0,1],[0,1],[1,0],[0,1],[-1,0],[0,1],[0,-1],[-1,0]],[[878,311],[0,1],[1,1],[0,1],[0,-1],[-1,0],[0,-1],[0,-1]],[[895,314],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[-1,0],[0,-1],[1,0],[-1,-1],[0,1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[1,0],[0,1],[0,-1],[0,-1],[0,-1],[0,1],[0,-1],[-1,0],[0,-1],[0,-1],[1,0],[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],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1]],[[905,260],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[1,0],[0,1],[-1,0],[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,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,-1],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[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],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[-1,1],[0,-1],[0,1],[1,1],[-1,0]],[[906,258],[-1,0],[0,2]],[[919,221],[-1,0],[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],[-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],[0,1],[0,1],[0,1],[-1,1],[-1,1],[0,1],[1,1],[0,-1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,-1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,-1],[-1,0],[0,1],[0,1],[0,1],[0,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]],[[920,219],[-1,0],[0,1],[0,1]],[[924,206],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,1],[0,1],[-1,-1],[0,1],[0,1],[0,1]],[[925,204],[-1,0],[0,1],[0,1]],[[925,195],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[925,193],[-1,1],[0,1],[1,0]],[[925,191],[0,1],[0,1]],[[902,118],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,1],[0,2],[-1,0],[0,-1],[0,1],[0,1],[1,0],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[1,1],[1,0],[1,0],[1,0],[1,0],[0,1],[1,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[1,1],[0,1],[0,2],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[1,0],[0,-1],[0,1],[-1,1],[1,0],[0,1],[0,1],[0,2],[0,1],[1,0],[0,1],[0,1],[0,2],[1,0],[0,1],[0,1],[0,1],[1,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[1,2],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[1,1],[0,2],[0,1],[0,2],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1]],[[901,118],[0,1],[1,0],[0,-1]],[[901,117],[0,1]],[[890,120],[0,-1],[1,0],[0,-1],[0,1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,-1],[1,0],[0,-1],[0,-1],[1,0],[0,1],[0,1],[1,0],[0,1],[1,2],[1,0],[0,1],[-1,0],[0,1],[1,0],[0,1],[1,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[1,0]],[[885,273],[1,0],[0,1],[1,0],[0,1],[-1,0],[-1,0],[0,-1],[0,-1]],[[895,314],[-1,1],[0,-1],[1,0]],[[894,318],[0,-1],[1,0],[0,1],[-1,0]],[[898,108],[0,-2],[0,-1],[0,-1],[0,1],[1,0],[0,1],[-1,1],[0,1],[0,1],[0,-1]],[[910,84],[0,1],[0,3],[0,2],[0,-1],[1,-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,1],[0,-1],[0,-1],[-1,1],[0,-1],[0,-1],[0,1],[-1,-1],[0,1],[-1,-1],[0,-1],[1,0],[-1,0],[0,1],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,1],[-1,0],[-1,1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-2],[1,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,1],[0,1],[-1,0],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-2],[1,-1],[1,0],[0,-1],[-1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,1]],[[910,83],[0,1]],[[909,80],[1,-1],[0,1],[0,1],[0,1],[0,1]],[[909,80],[0,1],[0,1],[1,-1],[0,-1],[0,1],[-1,0],[0,-1]],[[908,78],[0,1],[0,1],[1,1],[-1,1],[1,0],[0,-1],[0,-1]],[[908,78],[0,1],[0,1],[0,-1],[0,-1]],[[908,76],[0,1],[0,1]],[[901,118],[1,0],[0,1],[-1,0],[0,-1]],[[906,258],[-1,1],[0,1]],[[905,258],[1,0]],[[905,260],[0,-1],[0,-1]],[[908,77],[0,-1]],[[909,78],[-1,-1]],[[908,76],[1,0],[0,1],[0,1]],[[910,103],[0,1],[0,2],[-1,0],[0,1],[0,1],[0,-1],[-1,-1],[1,0],[0,-2],[0,-1]],[[909,103],[1,0]],[[909,103],[0,-1],[1,0],[0,1]],[[919,220],[0,1],[0,-1],[0,-1],[1,0]],[[920,219],[0,1],[-1,0]],[[925,204],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0]],[[925,191],[1,0],[0,1],[0,1],[-1,0]],[[925,195],[0,-1],[0,-1]],[[925,193],[0,1],[1,1],[-1,0]],[[813,209],[-1,1],[0,1],[0,-1],[0,-1],[0,-1],[1,-2]],[[813,207],[0,1],[0,1]],[[813,206],[0,1]],[[813,206],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-2],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[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],[0,-1],[0,-3],[0,-1],[0,-2],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[1,-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,1],[0,-1],[0,-1],[0,-1],[1,-2],[0,-1],[-1,-2],[0,-1],[-1,0],[0,1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[1,0],[1,-1],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[0,1],[1,0],[0,-1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,-1],[1,1],[1,0],[1,1],[1,0],[0,-1],[0,1],[1,0],[0,-1],[0,-1],[0,1],[1,0],[1,1],[0,-1],[0,1],[1,0],[0,-1],[0,1],[1,0],[0,1],[1,1],[0,1],[0,1],[0,2],[1,1],[1,1],[0,1],[1,1],[1,0],[0,1],[1,1],[0,1],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,1],[1,1],[0,1],[1,0],[0,1]],[[813,206],[0,1],[0,-1]],[[813,206],[0,-1],[0,1]],[[813,209],[1,0],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,1],[0,1],[0,1],[-1,1]],[[844,284],[0,-2],[0,-1],[0,-1],[0,1],[1,0],[-1,0],[0,-1],[0,-1],[0,-1],[1,-1],[-1,0],[-1,0],[0,1],[-1,0],[0,-1],[0,1],[0,1],[-1,0],[0,-1],[1,0],[0,-1],[-1,-1],[0,-1],[1,-1],[0,-1],[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],[0,1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[1,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[0,1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-2],[0,-1],[-1,0],[0,-1],[-1,-1],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,1],[0,-1],[-1,0],[0,-2],[-1,0],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[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],[-1,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[0,1],[0,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],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[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],[0,-1],[-1,-1],[0,1],[0,1],[0,1],[0,-1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,-1],[0,-1]],[[844,284],[0,-1],[0,1]],[[844,285],[0,-1]],[[846,289],[0,-1],[0,-1],[0,-1],[1,0],[-1,0],[0,1],[0,-1],[0,1],[-1,0],[0,-1],[0,-1],[0,1],[0,-1],[0,1],[0,-1],[1,0],[-1,-1],[1,0],[0,-1],[-1,1],[0,1],[-1,0]],[[846,290],[0,-1]],[[856,288],[-1,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],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,-1],[0,1],[0,1],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,1],[0,1],[1,0],[-1,0],[0,-1],[0,-1],[0,1],[0,1],[0,1],[-1,0],[0,-1],[1,-1],[-1,-1],[0,-2],[0,-1],[0,1],[0,1],[-1,0],[0,-1],[0,2],[0,-1],[0,-1],[-1,0]],[[856,168],[0,120]],[[526,736],[0,-1]],[[526,738],[0,-1],[0,-1]],[[538,746],[0,-1],[-1,0],[0,1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[1,-1],[-1,0],[0,-1],[1,0],[0,-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],[0,-1],[0,1],[-1,1],[0,1],[0,-1],[-1,0]],[[538,746],[0,1],[0,-1]],[[547,746],[-1,0],[0,1],[-1,0],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[0,-1],[0,-1],[-1,-1],[-1,0],[-1,0]],[[547,742],[0,1],[-1,0],[0,1],[0,1],[1,1]],[[547,741],[0,1]],[[544,733],[1,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[-1,0],[0,1],[1,0],[0,-1],[1,0],[0,1],[0,1]],[[538,731],[1,-1],[1,0],[1,1],[0,1],[1,0],[1,0],[1,0],[0,1]],[[529,733],[1,0],[0,1],[1,0],[1,0],[1,1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,0]],[[526,735],[1,-1],[0,-1],[1,0],[0,1],[1,0],[0,-1]],[[624,680],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0]],[[624,692],[0,-1]],[[628,696],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,1],[0,-1],[-1,0]],[[634,695],[0,-1],[-1,-1],[-1,-1],[0,-1],[-1,0],[0,1],[-1,2],[-1,1],[0,1],[0,-1],[0,1],[-1,0]],[[635,671],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,-1],[-1,0],[1,0],[0,2],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[1,0],[0,1],[1,-1],[0,1],[0,1],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[-1,0]],[[628,674],[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,0],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,1]],[[626,687]],[[282,572],[0,-1],[0,1]],[[282,572],[0,1],[0,-1]],[[284,570],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1]],[[283,570],[1,0]],[[283,570],[0,-1]],[[282,572],[0,-1],[1,0],[0,-1]],[[283,569],[0,-1]],[[284,569],[-1,0]],[[284,568],[0,1]],[[284,568],[0,-1],[0,1]],[[284,565],[0,1],[0,1],[0,1]],[[283,568],[0,-1],[0,-1],[1,0],[0,-1]],[[284,569],[0,1]],[[283,570]],[[280,587],[0,-1],[1,0],[0,-1],[0,1],[1,0],[1,0],[0,1],[-1,0],[-1,0],[0,1],[0,-1],[0,-1],[-1,0],[0,1]],[[751,556],[0,1],[-1,0],[0,-1]],[[750,556],[1,0]],[[750,556],[0,-1],[0,1]],[[750,555],[1,0]],[[750,556],[0,-1]],[[751,555],[0,1]],[[750,550],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1]],[[750,552],[0,-1],[0,-1]],[[751,555],[0,-1],[0,-1],[0,-1],[-1,0]],[[744,582],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[-1,1],[-1,-1],[1,0],[-1,-1],[0,-1],[0,1],[0,-1],[-1,-1],[1,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-4],[0,-1],[0,-1],[0,-1]],[[744,583],[1,0],[0,-1],[-1,0]],[[744,583],[0,1],[0,-1]],[[756,552],[0,1],[0,2],[0,1],[-1,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],[-1,-1],[0,1],[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],[1,0],[0,1],[1,1],[0,1],[0,1],[0,1],[1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[0,-1],[-1,0],[-1,0],[-1,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,-1],[0,-1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,-1],[-1,0],[0,1],[0,1],[-1,0]],[[756,550],[0,1],[0,1]],[[755,544],[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],[0,1]],[[754,547],[0,-1],[0,-1],[0,-1],[1,0]],[[754,549],[0,-1],[0,-1]],[[753,554],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[753,555],[0,-1]],[[751,555],[1,0],[0,1],[1,0],[0,-1]],[[751,557],[0,-1]],[[750,557],[0,1],[0,1],[0,1],[0,1],[0,-1],[0,1],[0,1],[0,-1],[1,0],[0,1],[0,-1],[-1,0],[0,-1],[1,-1],[-1,-1],[1,0],[0,-1]],[[750,556],[0,1]],[[750,552],[0,1],[0,1],[0,2]],[[750,550],[0,1],[0,1],[0,-1],[0,1]],[[749,551],[0,-1],[0,-1],[0,1],[1,0]],[[749,551],[0,-1],[0,1]],[[749,551],[0,1],[0,-1]],[[746,550],[0,-1],[1,0],[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],[1,0],[0,1],[-1,0],[1,0],[0,1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[1,-1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,-1],[-1,0],[0,-1],[0,-1],[1,0]],[[334,490],[0,-1],[0,-1],[1,0],[0,1],[-1,0],[0,1]],[[507,764],[0,-1],[0,-1],[0,-1],[1,0],[0,1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[0,1],[0,-1],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[0,1],[1,0]],[[509,766],[-1,0],[0,-1],[-1,0],[0,-1]],[[510,766],[-1,-1],[0,1]],[[511,766],[0,-1],[-1,0],[0,1]],[[511,766],[1,-1],[-1,0]],[[516,765],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[0,-1],[0,1],[0,-1],[-1,0],[0,1],[0,-1],[-1,0]],[[516,763],[0,1],[0,1]],[[516,762],[-1,0],[1,1]],[[517,757],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1]],[[516,756],[0,1],[1,0]],[[516,753],[0,1],[-1,1],[1,1]],[[252,523],[0,-1],[0,-3],[0,-2],[0,-5],[0,-2],[0,-1],[1,0]],[[255,526],[0,1],[0,-1],[-1,1],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,1],[0,-1]],[[255,525],[0,1]],[[255,523],[0,1],[0,1]],[[253,509],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,-1],[0,1],[0,1],[0,1],[1,0],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1]],[[256,525],[-1,-2]],[[255,523],[0,1]],[[255,524],[1,1]],[[255,519],[0,1],[1,0],[0,1],[-1,-1],[0,-1]],[[502,472],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-3],[0,-2],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[502,473],[0,-1]],[[506,479],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,1],[-1,0],[0,-1],[0,-1],[-1,-1]],[[506,480],[0,-1]],[[509,479],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,-1],[-1,0],[0,-1],[0,-1]],[[509,478],[0,1]],[[507,439],[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,0],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[1,1],[0,1],[-1,0],[0,1],[1,1],[0,-1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,2],[0,1],[0,1]],[[504,438],[1,1],[1,0],[1,0]],[[746,589],[0,-1],[-1,0],[1,-1],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[1,1],[1,1],[0,-1],[1,0],[1,0],[1,0],[0,1],[0,-1],[1,0],[1,0],[0,1],[0,1],[-1,0],[0,1],[1,1],[-1,1],[-1,0],[0,1],[0,1]],[[746,591],[0,-1],[0,-1]],[[753,592],[0,1],[1,0],[-1,0],[0,1],[-1,0],[0,-1],[0,1],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,0]],[[305,315],[0,-1],[0,-1],[1,-2],[0,-1],[0,-1],[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],[-1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[1,-1],[0,-1],[-1,-1],[0,-1],[1,-4],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[1,0],[0,-1]],[[313,322],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,1],[-1,0]],[[313,323],[0,-1]],[[336,252],[1,2],[0,2],[0,1],[0,1],[1,3],[0,2],[0,1],[0,2],[-1,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[-1,2],[1,0],[0,1],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[-2,0],[0,6],[-1,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,2],[-1,1],[0,1],[-1,0],[-1,-1],[0,1],[-1,0],[0,1],[0,1],[-1,1],[0,-1],[-1,1],[0,1],[0,-1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[-1,1],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[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],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,-1],[0,1],[-1,0],[0,-1],[-1,0],[-1,0]],[[336,249],[1,1],[-1,2]],[[336,252],[0,-1],[0,-1],[0,-1]],[[323,233],[1,1],[0,2],[0,1],[0,2],[1,3],[0,2],[0,1],[0,1],[0,1],[1,2],[0,1],[0,2],[1,1],[2,0],[0,1],[1,0],[1,1],[1,0],[1,0],[1,0],[0,-2],[1,0],[1,-1]],[[305,267],[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],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-2],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[1,0]],[[552,719],[-1,1],[-1,1],[0,-1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[0,-1],[0,-2],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,-1],[0,-1]],[[552,719],[-1,0],[1,0]],[[552,719],[0,-1],[0,1]],[[553,709],[1,1],[-1,0],[0,1],[0,1],[1,0],[0,1],[-1,0],[0,1],[-1,1],[0,1],[1,0],[0,1],[0,1],[0,1],[-1,0]],[[551,702],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,-1],[0,1],[0,1],[1,0]],[[549,703],[1,0],[0,-1],[1,0]],[[548,704],[1,0],[0,-1]],[[548,705],[0,-1]],[[569,265],[-1,0],[-1,-1],[0,-1],[0,1],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,1],[0,1],[-1,1],[0,1],[-2,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-4],[0,-6],[0,-1],[0,-5],[0,-1],[0,-2],[0,-2],[0,-3],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[0,-2],[0,-1],[0,-2],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-4],[0,-1],[0,-1]],[[569,264],[0,1]],[[580,233],[0,1],[-1,0],[0,1],[0,1],[-1,1],[-1,0],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[-1,0],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[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]],[[580,233],[0,1],[0,-1]],[[554,214],[1,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-2],[0,-1],[0,1],[1,0],[0,-1],[1,0],[1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[1,0],[0,-1],[0,-1],[1,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,1],[1,0],[1,1],[0,1],[0,2],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,1],[0,1],[0,1],[0,1],[1,1],[-1,0],[1,1],[0,1],[1,1],[0,1],[1,0],[0,1],[0,1],[1,1],[0,1],[0,1],[1,0],[1,0],[0,1],[0,1],[1,1]],[[554,215],[0,-1]],[[347,411],[0,-1],[0,-1],[0,-2],[1,0],[1,-1],[0,-1],[0,-1],[1,0],[-1,0],[1,0],[0,1],[0,-1],[0,1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[-1,0],[0,-1],[1,0],[0,-1],[1,0]],[[347,411],[0,1],[0,-1]],[[348,411],[-1,0]],[[356,426],[0,-1],[0,-1],[0,-1],[0,1],[0,-1],[0,-1],[-1,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],[-1,-1],[-1,0],[0,1],[0,-1],[-1,1],[0,-1],[-1,0],[0,-1],[-1,1],[0,1]],[[359,410],[-1,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,2],[1,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,1]],[[359,409],[0,1]],[[359,408],[0,1]],[[360,401],[1,0],[0,1],[-1,0],[1,0],[0,1],[-1,0],[1,1],[0,1],[0,1],[0,1],[-1,0],[-1,0],[0,1]],[[360,401],[0,1],[0,-1]],[[359,399],[0,1],[1,1]],[[359,398],[0,1]],[[359,397],[0,1]],[[358,395],[0,1],[1,1]],[[357,393],[0,1],[0,1],[1,0]],[[357,392],[0,1]],[[356,391],[0,1],[1,0]],[[356,390],[0,1]],[[356,389],[0,1]],[[356,387],[-1,1],[1,1]],[[355,386],[1,1]],[[355,386],[0,-1]],[[355,384],[0,1]],[[354,384],[1,0]],[[355,385],[-1,-1]],[[355,384],[-1,-1]],[[354,383],[1,0],[0,1]],[[356,386],[-1,0]],[[356,386],[0,1]],[[356,389],[0,-1],[0,-1]],[[357,390],[-1,0]],[[357,390],[0,1]],[[357,389],[0,1]],[[357,388],[0,1]],[[357,387],[0,1]],[[356,387],[1,0]],[[356,385],[0,1]],[[355,384],[1,0],[0,1]],[[358,390],[-1,-1]],[[358,389],[0,1]],[[357,388],[1,1]],[[357,390],[1,0]],[[358,391],[-1,0]],[[358,392],[0,-1]],[[358,390],[0,1],[0,1]],[[357,393],[1,-1]],[[358,393],[-1,0]],[[358,394],[0,-1]],[[359,394],[-1,0]],[[358,393],[1,1]],[[358,392],[0,1]],[[358,386],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1]],[[358,387],[1,0],[0,-1],[-1,0]],[[358,388],[0,-1]],[[358,390],[0,-2]],[[358,390],[1,0],[0,-1],[-1,1]],[[359,394],[0,-1],[0,-1],[-1,0]],[[361,393],[-1,0],[-1,1]],[[362,393],[-1,0]],[[363,383],[0,1],[1,2],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[-1,1],[-1,0],[-1,0]],[[361,381],[0,1],[0,1],[0,-1],[1,1],[1,0]],[[359,381],[1,1],[1,0],[0,-1]],[[359,409],[0,1],[0,-1]],[[359,408],[1,0],[0,1],[-1,0]],[[361,395],[0,1],[0,1],[-1,-1],[-1,0]],[[361,394],[0,1]],[[359,394],[1,0],[1,0]],[[359,394],[0,1],[0,1]],[[359,397],[1,0],[0,1],[0,1],[0,-1],[-1,0]],[[361,394],[0,-1]],[[362,393],[0,1],[0,1],[-1,0]],[[362,206],[0,-1],[0,-1],[0,1]],[[362,205],[1,0],[0,1],[-1,0]],[[362,197],[0,-1],[0,-1],[0,-1]],[[362,195],[1,0],[0,1],[0,1],[-1,0]],[[362,194],[0,1]],[[362,194],[1,0],[-1,0]],[[371,224],[0,-1]],[[371,223],[1,0],[0,-1],[0,2],[-1,0]],[[375,229],[-1,-1]],[[374,228],[1,0],[0,1]],[[375,373],[1,1],[0,1],[-1,0],[0,-1],[0,-1]],[[346,210],[0,-1],[0,1]],[[347,221],[-1,-1],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[354,383],[0,-1],[0,-2],[0,-2],[0,-2],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[0,1],[-1,0],[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,-1],[0,-1],[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],[-1,0],[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,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,1],[0,-1],[-1,1],[0,-1],[2,-1],[2,0],[3,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[1,0],[-1,-1],[0,-1],[1,0],[-1,0],[1,0],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[-1,0],[1,0],[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,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1]],[[354,383],[0,-1],[0,1]],[[357,386],[-1,-1]],[[357,386],[0,1]],[[357,387],[1,0]],[[358,388],[-1,-1]],[[358,382],[0,1],[0,1],[0,1],[0,1],[0,2]],[[357,381],[1,0],[0,1]],[[359,381],[-1,0],[0,-1],[0,-1],[0,-1],[0,1],[0,1],[-1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,1],[-1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[-1,0]],[[359,381],[0,-1],[0,1]],[[361,381],[-1,0],[-1,0]],[[363,381],[-1,0],[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,0]],[[363,382],[0,-1]],[[365,386],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[0,-1],[-1,1],[0,1],[0,-1],[-1,-1]],[[365,387],[0,-1]],[[370,388],[-1,0],[0,1],[0,-1],[0,1],[-1,0],[0,1],[-1,0],[0,-1],[1,0],[-1,0],[0,1],[0,-1],[0,1],[-1,0],[0,-1],[-1,-1],[0,-1]],[[370,387],[0,1]],[[372,386],[-1,1],[0,-1],[0,1],[-1,0]],[[372,385],[0,1],[0,-1],[0,1]],[[374,384],[0,-1],[-1,0],[1,-1],[-1,0],[0,1],[0,1],[0,1],[0,-1],[0,-1],[0,1],[0,1],[-1,0]],[[374,384],[1,0],[-1,0]],[[375,383],[-1,0],[0,1]],[[375,382],[0,1]],[[375,382],[0,-1],[0,1]],[[375,375],[0,1],[0,1],[1,0],[0,1],[0,1],[-1,-1],[0,1],[1,1],[-1,1],[0,1]],[[375,373],[0,1],[0,1]],[[376,374],[0,-1],[-1,-1],[0,-1],[0,1],[0,1]],[[376,375],[0,-1]],[[376,375],[1,0],[0,1],[0,1],[-1,0],[0,-1],[0,-1]],[[376,374],[0,1],[0,-1],[0,1]],[[391,301],[1,0],[0,1],[1,2],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[1,1],[-1,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],[-1,0],[0,1],[1,0],[0,-1],[0,-1],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,2],[0,1],[1,1],[0,2],[1,0],[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,1],[0,1],[0,2],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,1],[0,1],[-1,1],[0,1],[0,1],[-1,2],[-1,1],[0,1],[-1,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,-1],[1,0],[-1,0],[0,1],[0,-1],[0,1],[-1,0],[0,1],[-1,0],[1,-1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,-1]],[[391,301],[0,1]],[[391,302],[0,1],[-1,0],[0,1],[0,-1],[1,0],[0,1],[0,1],[0,-1],[1,-1],[0,-1],[-1,0]],[[390,299],[0,1],[1,1]],[[390,298],[0,1]],[[375,229],[1,0],[1,0],[0,1],[1,0],[-1,1],[1,1],[0,-1],[0,-1],[1,0],[1,0],[1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[1,1],[1,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,2],[1,0],[0,1],[0,1],[0,1],[0,-1],[0,1],[0,1],[0,1],[1,1],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[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,2],[0,1],[0,1],[0,1],[0,2],[0,2],[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]],[[375,229],[0,1],[1,0],[0,-1],[-1,0]],[[374,228],[-1,0],[0,1],[1,0],[0,1],[1,-1]],[[371,224],[0,1],[1,0],[0,1],[1,1],[1,0],[0,1]],[[371,224],[0,-1],[0,1]],[[362,206],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[-1,0],[1,0],[0,1],[1,1],[0,-1],[-1,0],[0,-1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,1],[0,1],[1,0],[0,1],[1,1],[0,1],[1,1],[0,1],[1,0],[-1,0],[1,1],[0,-1],[0,1],[1,1],[1,0]],[[362,206],[0,-1],[0,1]],[[362,206],[0,1],[0,-1]],[[362,204],[0,1],[0,1]],[[362,197],[0,1],[1,0],[-1,1],[0,2],[0,1],[0,1],[0,1]],[[349,150],[0,1],[1,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[1,2],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[1,-1],[-1,0],[1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[1,2],[0,-1],[0,-1],[0,-1],[1,0],[0,1],[1,0],[0,-1],[0,-1],[-1,0],[0,1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,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],[1,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,2],[0,1],[0,1],[0,1],[1,0],[0,1],[0,2],[0,1],[0,1],[1,1],[0,1],[0,1],[1,1],[0,2],[1,1],[1,1],[-1,0],[0,1],[1,0],[0,-1],[0,2],[0,1],[0,1],[0,1]],[[337,175],[1,0],[0,1],[1,0],[1,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,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,0],[0,-1],[0,-1],[1,-1],[0,1],[0,-1],[1,-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],[0,-1],[0,-1],[1,0]],[[357,381],[0,1],[-1,-1],[0,-1],[0,-2],[0,2],[0,1],[0,1],[1,1],[0,-1],[0,-1]],[[304,363],[9,-40]],[[303,364],[1,-1]],[[303,364],[1,0]],[[304,363],[-1,0],[0,1]],[[304,364],[0,-1]],[[313,406],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,1],[0,-1],[-2,0],[-1,0],[-1,0],[-1,-1],[0,-4],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-3],[0,-3],[-1,-1],[0,-7],[0,-3],[-1,-2]],[[313,405],[0,1]],[[313,403],[0,1],[0,1]],[[331,432],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,2],[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],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[-1,-1],[0,-1],[1,0],[1,0],[0,-2],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,1],[0,1],[-1,0],[0,-1],[-1,0],[-1,2],[-1,1]],[[342,408],[-1,0],[0,1],[-1,0],[0,-1],[0,1],[0,-1],[0,-1],[-1,0],[0,-1],[0,1],[-1,-1],[0,-1],[-1,1],[0,-1],[0,-1],[0,-1],[-1,1],[0,-1],[0,1],[-1,0],[-1,2],[0,1],[-1,0],[1,0],[0,1],[-1,0],[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,1],[0,1],[0,1],[-1,1],[0,1],[1,1],[-1,0],[0,1],[-1,0],[1,0],[0,1],[0,1],[0,1],[0,1],[-1,1],[-1,0]],[[347,412],[0,1],[-1,-1],[-1,0],[-1,0],[0,-1],[-1,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,1],[-1,0],[-1,0]],[[347,411],[0,1]],[[354,383],[-1,0],[0,1],[1,1],[0,-1]],[[336,249],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-3],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[1,-1],[0,1],[0,-1],[1,0],[1,0],[0,-1],[1,1],[0,1],[1,0],[0,-1],[0,-1],[1,0],[0,1],[0,-1],[1,0],[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,0],[1,0],[0,1],[1,1],[0,-1],[1,-1]],[[313,323],[0,-1],[0,1]],[[354,383],[0,1]],[[303,364],[-1,0],[0,-1],[0,-1],[-1,0],[0,1],[0,-1],[-1,0],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[1,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],[1,0],[0,-1],[1,1],[1,0]],[[562,700],[-1,0],[1,0]],[[562,714],[0,-1],[0,-1],[-1,-1],[1,-1],[0,-2],[1,0],[0,-1],[0,-1],[-1,-2],[0,-2],[0,-1],[0,-1]],[[579,710],[-1,0],[-1,1],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,-1],[0,-1],[-1,0],[0,-1],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[0,1],[0,1],[-1,1]],[[577,698],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[1,0],[0,1],[0,1]],[[572,696],[1,0],[0,1],[1,1],[1,0],[0,-1],[1,0],[1,0],[0,1],[0,-1],[0,1]],[[572,695],[0,1],[0,-1],[0,1]],[[563,693],[1,0],[1,0],[1,1],[1,0],[1,-1],[1,0],[0,-1],[1,0],[0,1],[1,0],[1,0],[0,1],[0,1]],[[562,700],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[484,469],[0,-1]],[[500,501],[-1,0],[0,1],[-1,-1],[0,1],[-1,0],[0,-2],[-1,0],[0,-1],[-1,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,1],[-1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[0,1],[-1,1],[0,-1],[0,-1],[-1,-1],[1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1]],[[506,480],[-1,2],[0,1],[1,0],[0,1],[-1,0],[0,1],[0,-1],[-1,0],[-1,2],[-1,1],[0,1],[0,1],[0,1],[0,-1],[1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,1],[1,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1]],[[502,473],[0,-1],[0,1]],[[499,473],[1,0],[1,0],[0,-1],[0,1],[1,0]],[[499,474],[0,-1]],[[492,462],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[1,1],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,1],[1,1]],[[492,461],[0,1]],[[484,468],[0,-1],[1,0],[0,1],[1,-2],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,-1],[0,-1],[0,-1],[1,-1]],[[580,373],[-1,0],[1,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1]],[[580,373],[0,1],[0,-1]],[[584,376],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0]],[[581,361],[1,0],[0,1],[1,2],[0,1],[0,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]],[[565,784],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,-2],[1,-1],[0,-1],[0,-2]],[[574,797],[0,-1],[-1,-1],[0,-1],[1,0],[0,-1],[-1,0],[-1,-1],[-1,-1],[0,-1],[0,-1],[0,-2],[0,-1],[-1,0],[1,0],[0,1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,1],[0,-1],[-1,0],[-1,0]],[[578,800],[-1,0],[0,-1],[-1,-1],[-1,0],[-1,0],[0,-1]],[[588,771],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[1,1],[0,1],[1,0],[0,-1],[1,0],[1,1],[0,1],[1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[0,1],[0,1],[-1,1],[0,1],[-1,1],[0,1],[0,1],[-1,0],[0,1],[1,1],[0,1],[-1,1],[1,1],[0,1],[-1,0],[0,1],[-1,1],[-1,0],[-1,-1],[-1,0],[0,1],[1,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0]],[[565,768],[1,0],[0,-1],[0,1],[1,0],[0,1],[1,0],[1,1],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,1],[0,-1],[0,-1],[1,0],[1,0],[-1,-1],[1,0],[0,1],[1,0],[0,1],[0,-1],[1,0],[0,-1],[1,1],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,1],[-1,1],[1,1],[0,1],[0,1],[1,0],[0,1],[1,0],[1,0]],[[565,768],[0,-1],[0,1]],[[791,495],[-1,0],[0,1],[0,1],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[1,0],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-2],[0,-2],[0,-1]],[[791,495],[0,1],[0,-1]],[[797,498],[-1,-1],[0,-1],[-1,0],[0,1],[-1,1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[0,1],[0,-1],[-1,0],[0,1]],[[789,468],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[1,-1],[0,1],[1,-1],[0,-1],[1,0],[-1,1],[0,1],[1,0],[-1,1],[0,-1],[0,1],[0,1],[0,1],[0,1],[-1,0],[1,1],[0,-1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,-1],[1,1],[0,1],[1,0],[0,1],[0,1],[0,2],[0,1],[0,2],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[788,468],[1,0]],[[787,468],[0,1],[1,0],[0,-1]],[[784,477],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[1,0],[0,1],[0,1],[1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[1,0]],[[784,477],[0,1],[0,-1]],[[784,476],[1,0],[0,1],[-1,0]],[[784,477],[0,-1]],[[523,427],[0,-1],[0,1]],[[538,488],[0,-1],[1,-3],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[-1,0],[0,-1],[0,-1],[0,-2],[-1,0],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,-1],[-1,1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1]],[[542,447],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,2],[-1,1],[0,1],[-1,2],[-1,3],[0,1],[1,1],[1,0],[1,0],[1,0],[1,0],[0,1],[-1,0],[0,1],[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],[-1,2],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0]],[[544,411],[0,1],[0,1],[0,1],[-1,2],[-1,1],[0,2],[0,1],[-1,0],[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],[0,2],[0,1],[-1,0],[0,1],[1,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1]],[[544,409],[0,1],[0,1]],[[536,409],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[0,1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,1],[0,1],[0,1],[0,1]],[[531,409],[0,1],[1,0],[1,0],[1,0],[1,-1],[0,1],[1,0],[0,-1]],[[526,410],[1,-1],[1,0],[1,0],[1,0],[1,0]],[[523,427],[0,-1],[1,0],[0,1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,1],[-1,1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[-1,-2],[0,-1],[0,-1]],[[351,743],[0,1],[1,0],[0,1],[0,1],[0,-1],[-1,1],[0,-1],[0,-1],[0,1],[-1,0],[0,1],[1,0],[-1,0],[0,1],[-1,0],[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],[0,-1],[0,1],[0,1],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[0,1],[0,2],[0,-1],[0,1],[-1,0],[0,-1],[0,1],[0,-1],[0,1],[-1,0],[0,1],[0,1],[0,-1],[0,1],[1,1],[0,1],[0,-1],[-1,1],[0,1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,1],[-1,0],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,1],[-1,0],[0,1],[1,0],[0,-1],[0,1],[0,1],[1,1],[0,1],[-1,0],[0,-1],[0,1],[0,1],[1,0],[0,-1],[0,1],[1,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],[0,-1],[0,-1],[-1,0],[1,-1],[-1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[1,0],[0,-1],[-1,1],[0,-1],[0,-1],[0,-1],[1,0],[-1,0],[1,0],[0,-1],[-1,0],[0,-1],[1,0],[-1,0],[0,1],[-1,0],[0,1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,1],[0,1],[0,-1],[-1,0],[0,-1],[1,0],[1,0],[0,-1],[0,1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[1,0],[0,-1],[0,-1],[1,0],[1,1],[1,0],[1,0],[0,-1],[1,1],[1,-1],[1,0],[1,0],[0,1],[1,0]],[[350,742],[0,1],[0,-1],[1,0],[0,1]],[[350,742],[0,-1],[0,1]],[[351,742],[-1,0]],[[349,739],[0,1],[1,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[1,1],[0,1],[0,1],[1,0],[0,-1],[0,-1],[-1,-1],[1,0],[0,-1],[0,1],[1,-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,-1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[0,1],[1,1],[0,1]],[[349,738],[0,1]],[[348,737],[0,1],[1,0]],[[348,737],[0,1],[0,-1]],[[344,738],[0,-1],[1,1],[0,-1],[1,0],[0,1],[0,1],[-1,-1],[0,1],[1,0],[0,-1],[1,1],[0,1],[0,-1],[0,-1],[0,1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[-1,-1],[0,-1],[1,0],[1,0],[0,1],[1,1],[0,1],[0,1],[1,0]],[[344,738],[1,0],[-1,0]],[[344,738],[-1,0],[1,-1],[0,1]],[[344,738],[1,1],[-1,-1]],[[344,739],[0,-1]],[[344,739],[0,1],[1,1],[-1,-1],[0,-1]],[[344,739],[0,1],[0,-1]],[[347,753],[0,-1],[1,1],[-1,0]],[[120,893],[0,-3],[0,-3],[0,-3],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[3,0],[1,0],[2,0],[1,0],[-1,0],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[1,0],[1,0],[-1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[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],[0,-1],[1,1],[0,-1],[0,1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,1],[1,0],[0,-1],[-1,0],[0,-1],[1,0],[0,1],[0,-1],[1,0],[0,-1],[-1,0],[1,-1],[-1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,1],[0,-1],[1,0],[-1,0],[0,-1],[0,-1],[1,0],[-1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[-1,0],[1,0],[-1,0],[0,-1],[1,0],[0,1],[0,-1],[0,-1],[0,-1],[0,1],[0,-1],[1,0],[0,1],[0,-1],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[-1,0],[1,1],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[3,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[0,-45],[0,-1],[1,0],[0,-1],[-1,1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,1],[0,-1],[0,1],[0,-1],[1,0],[0,1],[0,-1],[1,0],[-1,0],[0,-1],[0,1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[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],[0,-1],[1,0],[-1,0],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,1],[0,-1],[0,-1],[1,0],[-1,0],[1,0]],[[123,896],[0,-1],[1,-1],[-1,0],[0,1],[-1,0],[0,-1],[1,0],[1,0],[-1,0],[0,-1],[0,1],[-1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,-1],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[1,-1],[0,-1],[1,0],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[-1,0]],[[124,896],[-1,0]],[[124,896],[1,0],[-1,-1],[0,1]],[[144,905],[0,-1],[0,-1],[0,1],[1,0],[0,-1],[-1,0],[1,0],[1,-1],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[0,1],[0,1],[1,0],[0,1],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[0,1],[0,1],[0,1],[0,-1],[0,1],[0,1],[0,-1],[0,-1],[0,1],[-1,1],[0,-1],[1,0],[0,-1],[-1,0],[0,1],[0,-1],[0,1],[-1,0],[-1,-1],[1,0],[-1,-1],[-1,0],[0,-1],[0,1],[-1,-1],[0,-1],[0,-1],[1,1],[0,-1],[-1,0],[-1,0],[0,1],[0,-1],[0,-1],[0,1],[1,-1],[-1,0],[0,1],[-1,0],[0,1],[1,0],[-1,0],[1,0],[0,1],[1,0],[0,1],[1,1],[1,0],[0,1],[1,1],[1,0],[1,0],[1,0],[0,1],[1,1],[1,0],[1,1],[0,1],[0,1],[-1,-1],[0,-1],[-1,0],[0,1],[-1,-1],[0,1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,1],[-1,0],[0,-1],[-1,0],[0,-1],[0,1],[-1,0],[0,-1],[0,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],[-1,0],[0,-1],[1,-1],[-1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[0,-1],[0,1],[-1,-1],[0,1],[0,1],[-1,0],[1,-1],[-1,-1],[1,0],[-1,0],[-1,0],[-1,0],[0,-1]],[[191,885],[-1,0],[0,-1],[-1,1],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,1],[1,0],[0,1],[0,1],[0,-1],[1,0],[0,1],[1,0],[1,0],[0,2],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[1,-1],[-1,0],[0,1],[-1,0],[0,-1],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,1],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,-1],[1,0],[0,1],[0,-1],[-1,0],[-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],[0,-1],[-1,0],[1,0],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,1],[0,1],[-1,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0]],[[192,885],[-1,0]],[[198,883],[0,-1],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,-1]],[[198,883],[0,1],[0,-1]],[[199,882],[-1,0],[0,1]],[[199,882],[-1,0],[1,0]],[[200,881],[-1,0],[0,1]],[[200,879],[0,1],[0,1]],[[200,878],[-1,1],[-1,1],[0,-1],[0,1],[1,-1],[0,1],[1,0],[0,-1]],[[200,879],[1,-2],[0,-1],[1,-1],[0,-1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1]],[[201,880],[0,-1],[-1,0]],[[201,880],[1,0],[0,-1],[0,-1],[-1,1],[0,-1],[0,1],[0,1]],[[201,881],[0,-1]],[[200,883],[1,0],[0,-1],[0,-1]],[[200,884],[0,-1]],[[200,886],[1,0],[-1,-1],[0,-1]],[[200,886],[0,1],[1,0],[-1,0],[0,-1]],[[208,889],[0,-1],[-1,1],[-1,0],[1,0],[0,1],[0,1],[-1,1],[0,1],[-1,0],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,-1],[1,0],[1,0],[0,-1],[0,1],[1,-1],[0,1],[1,0],[0,-1],[0,1],[-1,0],[0,1],[1,0],[1,0],[0,-1],[0,1],[1,0],[1,-1],[0,1],[0,1],[1,0],[0,1],[1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[0,1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,-1]],[[209,887],[0,1],[-1,0],[0,1]],[[210,887],[0,-1],[-1,1]],[[216,885],[0,-1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,-1],[0,1],[0,-1],[-1,0],[0,1]],[[194,749],[0,48],[0,1],[0,1],[0,30],[2,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[2,0],[1,0],[10,0],[0,56]],[[189,749],[1,0],[2,0],[1,0],[1,0]],[[183,749],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0]],[[155,927],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[1,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,0],[1,0],[1,0],[1,0],[-1,0],[1,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[1,0],[0,1],[1,2],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,1],[1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[0,-1],[-1,0],[-1,0],[1,0],[0,-1],[-1,0],[0,1],[-1,0],[-1,0],[0,-1],[0,1],[-1,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[1,0],[0,-1],[0,-1],[1,-1],[1,0],[0,-1],[-1,-1]],[[164,944],[0,1],[-1,0],[1,1],[0,-1],[1,-1],[0,1],[0,-1],[0,-1],[1,0],[0,1],[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],[1,1],[0,-1],[0,1],[0,1],[-1,0],[0,1],[1,0],[0,-1],[1,1],[-1,0],[0,1],[1,0],[1,0],[0,1],[0,-1],[0,-1],[0,-1],[0,-1],[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,0],[0,1],[-1,0],[-1,1],[1,0],[1,0],[0,1],[1,0],[-1,1],[-1,0],[0,1],[-1,0],[-1,0],[0,-1],[-1,0],[1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[0,1],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[0,-1],[-1,0],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[0,-1],[1,1],[0,-1],[0,-1]],[[163,944],[1,0],[-1,0],[1,0]],[[160,944],[0,1],[1,0],[1,-1],[1,0]],[[159,944],[1,0]],[[159,944],[1,-1],[0,1]],[[168,941],[1,0],[1,0],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1]],[[205,923],[-1,0],[0,1],[-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],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,1],[-1,0],[0,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],[1,0],[1,-1],[-1,0],[0,1],[-1,0],[0,-1],[0,1],[-1,0],[1,0],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[-1,1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,-1],[1,0],[0,-1],[-1,0],[-1,0],[-1,-1],[-1,1],[1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[-1,1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,-1],[-1,0],[0,-1],[-1,0],[0,-1],[1,0],[1,0],[0,-1],[-1,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,1],[1,0],[0,-1],[1,0],[0,1],[1,0],[-1,0],[0,-1],[1,0],[-1,0],[-1,0],[0,-1],[1,0],[1,0],[0,1],[0,-1],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[0,-1],[1,0],[0,1],[0,-1],[-1,0],[-1,0],[-1,0],[1,0],[-1,-1],[0,1],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0]],[[207,921],[-1,1],[0,1],[-1,0]],[[207,921],[0,-1],[0,1]],[[216,903],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,-1],[1,0],[-1,0],[0,1],[-1,0],[-1,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[1,0],[0,1],[-1,0],[1,0],[0,1],[0,1],[-1,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1]],[[216,900],[0,3]],[[216,897],[-1,0],[-1,-1],[0,-1],[-1,0],[0,-1],[0,1],[1,1],[-1,1],[0,1],[-1,0],[0,1],[1,-1],[1,-1],[1,0],[0,1],[-1,1],[1,0],[1,1]],[[216,895],[0,2]],[[216,893],[0,2]],[[192,890],[0,1],[1,0],[0,-1],[0,1],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[-1,0],[1,0],[0,1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,1],[1,0],[1,-1],[1,0],[0,-1],[-1,0],[1,0],[1,-1],[0,1],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[0,1],[1,-1],[0,1],[1,0]],[[192,890],[-1,0],[1,0]],[[191,890],[0,1],[1,0],[0,-1]],[[191,890],[-1,0],[0,1],[1,-1]],[[188,903],[-1,-1],[-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],[0,-1],[-1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[0,1],[1,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[1,0],[-1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0]],[[189,903],[1,0],[-1,0],[-1,0]],[[177,905],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,-1],[0,1],[1,0],[0,-1],[0,1],[1,-1],[1,0],[1,0],[0,-1],[1,0],[1,-1]],[[176,905],[1,0]],[[175,905],[1,0]],[[174,905],[1,0]],[[173,939],[0,-1],[1,0],[1,0],[1,0],[1,1],[0,-1],[0,-1],[1,0],[1,0],[0,1],[-1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,1],[0,1],[-1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[1,0],[1,1],[1,0],[1,0],[-1,0],[0,1],[1,0],[0,-1],[0,1],[1,0],[0,-1],[-1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[-1,0],[1,0],[0,-1],[1,0],[1,0],[0,1],[0,1],[0,-1],[1,0],[0,-1],[1,0],[1,1],[1,0],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[1,1],[0,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[0,1],[-1,0],[-1,-1],[-1,0],[1,0],[0,1],[0,1],[-1,0],[-1,0],[0,1],[1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[1,0],[0,1],[-1,1],[0,-1],[-1,0],[-1,0],[0,-1],[-1,-1],[1,0],[-1,0],[-1,0],[0,-1],[0,-1],[1,0],[1,0],[1,-1],[-1,-1],[-1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[1,0],[1,0],[1,0],[0,-1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[1,0],[0,-1],[-1,0],[1,0],[0,-1],[1,0],[1,1],[1,0],[0,-1],[1,0],[0,1],[1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-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],[-2,0],[-1,0],[0,-1],[-1,0],[0,-1]],[[177,905],[-1,-1],[1,0],[0,1]],[[180,959],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,1],[-1,0],[0,1],[-1,1],[-1,-1],[-1,0]],[[180,950],[1,0],[1,0],[1,0],[1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0]],[[185,962],[0,-1],[1,0],[0,1],[1,0],[1,0],[1,-1],[1,0],[0,1],[1,0],[1,-1],[1,0],[1,1],[0,-1],[1,0],[1,1],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,-1]],[[185,958],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[0,1],[-1,1],[0,-1],[-1,0],[-1,1],[1,0],[1,0],[1,1],[1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[0,1],[0,-1]],[[189,888],[1,0],[0,1],[-1,-1]],[[192,885],[0,1],[-1,-1]],[[195,887],[-1,0],[-1,0],[1,0],[1,0]],[[195,887],[1,-1]],[[196,886],[0,1],[-1,0]],[[199,886],[-1,0],[0,-1],[1,0]],[[199,885],[0,1]],[[199,885],[1,1]],[[200,886],[-1,0]],[[199,883],[0,-1]],[[200,884],[-1,0],[0,-1]],[[199,882],[1,1]],[[199,927],[1,-1],[1,0],[0,1],[-1,0],[-1,0]],[[200,883],[0,-1],[-1,0]],[[200,881],[0,1],[0,1]],[[199,882],[1,-1]],[[207,921],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[0,-1],[-1,0],[1,0],[1,-1],[1,-1],[0,-1]],[[206,922],[1,0],[0,-1]],[[205,923],[1,0],[0,-1]],[[209,953],[0,1],[-1,1],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,1]],[[208,889],[1,0],[1,0],[0,1],[-1,0],[-1,0],[0,-1]],[[208,938],[1,-1],[1,0],[1,0],[0,1],[1,0],[-1,1],[0,1],[-1,0],[-1,0],[0,-1],[-1,0],[1,0],[-1,-1]],[[213,947],[0,1],[-1,0],[-1,1],[-1,-1],[0,1],[1,0],[-1,0],[-1,0],[0,-1],[1,-1],[-1,0],[1,0],[1,0],[1,0],[1,0]],[[213,947],[-1,-1],[-1,0],[-1,0],[-1,-1],[1,0],[1,0],[1,0],[2,0]],[[214,945],[1,1],[-1,0],[0,1],[-1,0]],[[209,887],[1,0]],[[210,887],[0,1],[-1,-1]],[[209,953],[0,-1],[1,0],[0,1],[-1,0]],[[213,944],[-1,0],[-1,0],[0,-1]],[[214,945],[-1,0],[0,-1]],[[215,944],[0,1],[-1,0]],[[213,944],[1,0],[1,0]],[[212,943],[0,1],[1,0]],[[211,943],[1,0]],[[213,944],[0,-1],[-1,0]],[[216,944],[-1,0]],[[215,943],[1,1]],[[214,942],[0,1],[1,0]],[[212,943],[0,-1],[1,0],[1,0]],[[214,942],[0,-1],[1,0],[1,0]],[[216,942],[-1,0],[-1,0]],[[216,941],[0,1]],[[216,923],[-1,0],[0,-1],[-1,-1],[0,-1],[1,0],[0,-1],[1,0]],[[216,919],[0,4]],[[114,897],[0,1],[-1,0],[0,-1]],[[113,897],[1,0]],[[133,779],[0,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],[0,-1],[-1,1],[1,0],[1,1],[0,1],[-1,0],[0,1],[0,-1],[-1,-1],[0,1],[1,0],[0,1],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[-1,0],[1,-1],[1,0],[0,-1],[-1,0],[1,0],[-1,0],[0,-1],[1,0]],[[133,779],[0,1],[0,-1]],[[132,779],[1,0],[-1,0],[1,0]],[[133,779],[-1,0]],[[134,776],[-1,1],[1,0],[0,1],[-1,0],[1,0],[0,1],[0,1],[-1,-1]],[[134,775],[0,1]],[[136,772],[-1,1],[0,-1],[0,1],[0,1],[0,-1],[0,1],[-1,0],[0,1]],[[135,771],[1,1]],[[132,779],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1]],[[134,775],[1,0],[0,1],[-1,0]],[[137,790],[-1,0],[0,-1],[0,-1],[0,1],[1,0]],[[137,789],[0,1]],[[138,786],[-1,-1],[0,-1],[0,1],[0,-1],[0,1],[1,0]],[[138,785],[0,1]],[[138,784],[0,1]],[[138,785],[-1,-1],[1,0]],[[138,782],[-1,0],[1,-1],[0,-1],[1,-1],[0,2]],[[139,781],[-1,1]],[[138,784],[0,-1],[0,-1]],[[138,784],[0,-1],[0,1]],[[139,784],[-1,0]],[[140,781],[0,1],[-1,1],[0,1]],[[140,779],[0,1],[0,1]],[[139,781],[0,-1],[1,-1]],[[138,782],[1,0],[0,-1]],[[139,783],[0,-1],[-1,0]],[[138,782],[0,1],[1,0]],[[140,779],[1,0]],[[141,780],[-1,-1]],[[141,779],[0,1]],[[141,779],[0,-1]],[[142,775],[-1,1],[0,1],[0,-1]],[[142,774],[0,1]],[[141,776],[0,-1],[0,-1],[1,0]],[[141,782],[0,-1],[0,1]],[[141,782],[1,1],[-1,0],[0,-1]],[[141,780],[1,0]],[[141,781],[0,-1]],[[141,781],[0,1],[0,-1]],[[142,780],[0,1],[-1,0]],[[142,774],[1,0]],[[143,775],[-1,0]],[[143,774],[0,1]],[[146,762],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,1],[-1,0],[1,0],[1,0],[-1,0],[0,-1],[1,0],[-1,0],[0,1],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[-1,0],[1,0],[1,0],[0,-1],[0,1],[1,0],[-1,-1],[0,-1],[1,0]],[[147,760],[-1,1],[0,1]],[[148,760],[-1,0]],[[150,759],[-1,0],[-1,0],[0,1]],[[151,759],[-1,0]],[[151,758],[0,1]],[[152,757],[-1,0],[0,1]],[[152,756],[0,1]],[[153,754],[-1,0],[0,1],[0,1]],[[156,750],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1]],[[156,748],[0,1],[0,1]],[[156,747],[0,1]],[[157,746],[-1,1]],[[150,750],[1,0],[-1,-1],[1,-1],[1,0],[0,1],[1,0],[0,1],[0,-1],[-1,-1],[0,-1],[1,-1],[1,0],[0,-1],[1,-1],[1,0],[1,0],[0,1],[0,-1],[0,1],[0,1]],[[150,751],[0,-1]],[[150,751],[0,1],[0,-1]],[[149,752],[0,-1],[1,0]],[[148,753],[0,-1],[0,-1],[0,1],[1,0]],[[148,754],[1,-1],[0,1],[0,-1],[-1,0]],[[147,755],[1,0],[0,-1]],[[144,772],[-1,0]],[[143,772],[0,-1],[1,1]],[[143,775],[0,1]],[[144,776],[0,1],[0,-1],[-1,0]],[[143,775],[1,1]],[[143,771],[1,0]],[[143,772],[0,-1]],[[144,771],[0,1]],[[144,770],[-1,0],[1,-1]],[[144,770],[0,1]],[[144,769],[0,1]],[[145,767],[-1,0],[0,1],[0,-1],[0,-1],[1,0]],[[145,766],[0,1]],[[144,770],[1,0]],[[145,771],[-1,0]],[[145,770],[0,1],[0,1],[1,0],[0,1],[0,1],[0,-1],[-1,0],[0,-1],[0,-1]],[[147,755],[0,-1],[0,-1],[1,0]],[[148,753],[0,1],[0,1],[-1,0]],[[148,762],[0,-1],[1,0]],[[149,761],[0,1],[-1,0]],[[150,751],[-1,0],[0,1],[0,-1]],[[149,751],[0,-1],[1,1]],[[151,758],[1,0]],[[152,759],[-1,-1]],[[152,758],[0,1]],[[152,758],[0,-1]],[[151,758],[1,-1]],[[152,757],[0,-1],[0,1]],[[153,757],[-1,0]],[[153,757],[0,1],[0,-1]],[[153,756],[0,1]],[[152,756],[1,0]],[[153,754],[1,0]],[[154,755],[-1,-1]],[[155,753],[-1,1],[0,1]],[[155,752],[0,1]],[[154,754],[0,-1],[1,-1]],[[156,749],[0,1],[0,-1],[0,-1]],[[157,748],[-1,1]],[[156,748],[1,0]],[[156,747],[1,0],[0,1]],[[108,898],[0,-1],[0,-4],[0,-3],[0,-2],[0,-3],[0,-1],[0,-1],[0,-2],[0,-1],[0,-2],[0,-1],[0,-2],[0,-2],[0,-3],[0,-4],[0,-7],[0,-2],[0,-1],[0,-5],[0,-3],[0,-13],[0,-4],[2,-1],[0,1],[1,-1],[1,1],[2,0],[-1,-1],[0,-1],[1,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,-1],[1,-1],[0,-1],[0,-1],[1,0],[0,1]],[[113,897],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0]],[[120,893],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1]],[[182,749],[1,0],[-1,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],[0,1],[-1,0],[1,0],[-1,0],[0,1],[0,1],[-1,0],[0,-1],[0,1],[0,1],[-1,0],[0,1],[0,-1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,-1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,-1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,-1],[0,1],[1,0],[-1,0],[0,1],[0,-1],[-1,0],[0,1],[0,-1],[0,1],[0,-1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[1,-1],[0,1],[-1,0],[0,1],[0,45],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-3,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[1,0],[0,1],[-1,0],[0,1],[-1,-1],[1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,1],[0,-1],[-1,0],[0,1],[0,-1],[0,1],[0,1],[0,1],[0,-1],[-1,0],[0,1],[1,0],[-1,0],[1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[1,0],[-1,0],[0,1],[0,1],[1,0],[-1,0],[0,1],[0,-1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[1,0],[-1,1],[1,0],[0,1],[-1,0],[0,1],[0,-1],[-1,0],[0,1],[1,0],[0,1],[-1,0],[0,-1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,-1],[0,1],[-1,-1],[0,1],[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],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[1,0],[-1,0],[-2,0],[-1,0],[-3,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,3],[0,3],[0,3]],[[158,749],[1,0],[1,0],[3,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]],[[157,752],[0,-1],[1,0],[0,1],[0,-1],[-1,0],[0,-1],[1,0],[0,-1]],[[157,752],[0,1]],[[157,753],[0,1],[1,0],[-1,-1]],[[155,752],[1,0],[1,0]],[[155,754],[0,-1]],[[155,754],[1,-1],[0,1],[1,0],[-1,0],[0,-1],[0,-1],[0,1],[0,1],[-1,0]],[[155,754],[0,1],[0,1],[1,0],[0,1],[-1,0],[0,1],[1,-1],[0,-1],[-1,0],[1,-1],[-1,0],[0,-1]],[[154,754],[1,0]],[[153,755],[1,0],[0,-1]],[[153,756],[0,-1]],[[153,758],[1,0],[0,-1],[-1,0]],[[153,758],[0,1]],[[152,758],[1,0]],[[152,759],[0,1],[1,0],[0,1],[0,1],[0,1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1]],[[151,759],[1,1],[0,-1]],[[151,759],[0,1],[0,1],[0,-1],[0,-1]],[[150,759],[0,1],[1,-1]],[[149,760],[1,-1]],[[149,761],[0,-1]],[[149,761],[1,0],[1,1],[0,1],[0,1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0]],[[148,762],[0,1],[0,-1]],[[147,762],[-1,1],[1,0],[1,-1]],[[146,762],[1,0]],[[145,766],[1,0],[0,-1],[0,1],[1,0],[-1,-1],[-1,0],[0,-1],[1,0],[1,0],[1,0],[0,1],[0,-1],[-1,0],[-1,0],[-1,-1],[1,0],[0,-1]],[[145,767],[1,0],[-1,0]],[[145,767],[0,1],[1,1],[0,1],[0,-1],[0,-1],[1,0],[1,0],[0,1],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1]],[[144,769],[1,-1],[0,-1]],[[145,770],[-1,-1]],[[146,772],[-1,0],[0,-1],[0,-1]],[[146,772],[0,-1],[0,1]],[[146,773],[0,-1]],[[146,773],[1,0],[1,0],[-1,0],[0,-1],[0,1],[-1,0]],[[146,774],[0,-1]],[[146,774],[0,1],[1,0],[0,1],[0,1],[0,-1],[0,-1],[-1,0],[0,-1]],[[145,772],[0,1],[1,0],[0,1]],[[144,773],[1,-1]],[[144,774],[1,0],[-1,-1]],[[144,773],[0,1]],[[144,774],[0,1],[0,-1]],[[143,772],[1,1]],[[143,773],[0,-1]],[[144,774],[-1,-1]],[[144,776],[0,-1],[0,-1]],[[143,777],[0,-1]],[[142,779],[1,0],[0,-1],[0,-1]],[[142,780],[0,-1]],[[142,781],[0,-1]],[[142,781],[0,1],[0,-1]],[[142,783],[0,-1],[1,-1],[1,0],[0,-1],[1,0],[-1,0],[0,1],[-1,0],[-1,0]],[[142,783],[0,1],[0,1],[1,0],[-1,0],[0,-1],[1,0],[-1,0],[0,-1]],[[141,782],[0,1],[1,0]],[[141,781],[0,1]],[[140,781],[1,0]],[[138,785],[1,-1]],[[138,786],[1,0],[0,1],[1,0],[0,-1],[-1,1],[0,-1],[-1,0]],[[137,789],[0,-1],[0,-1],[1,0],[0,1],[0,-1],[0,-1]],[[138,791],[0,-1],[1,0],[0,-1],[0,1],[-1,0],[0,-1],[0,-1],[1,0],[0,-1],[-1,0],[0,1],[0,1],[0,1],[-1,0]],[[139,794],[0,-1],[0,-1],[1,0],[-1,0],[-1,-1]],[[139,794],[0,1]],[[139,795],[0,1],[1,0],[0,-1],[-1,0]],[[138,792],[1,1],[0,1]],[[138,798],[0,-2],[1,-1],[0,-1],[-1,0],[0,-1],[0,-1]],[[139,799],[0,-1],[-1,0]],[[119,822],[1,0],[1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[1,0],[1,1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,-1],[1,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[1,-1],[-1,0],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[1,-1],[1,0],[0,-1],[1,0],[0,-1],[1,-1],[1,0],[0,-1]],[[153,759],[1,0],[0,1],[0,-1],[-1,0]],[[141,778],[0,-1]],[[142,775],[0,1],[0,1],[0,1]],[[141,777],[0,-1],[1,-1]],[[141,777],[1,1]],[[142,779],[0,-1],[0,1]],[[142,779],[-1,0]],[[310,898],[0,-1]],[[311,897],[0,1],[-1,0]],[[310,897],[1,0]],[[310,903],[0,-4]],[[312,898],[1,0],[0,1],[0,1],[-1,1],[0,1],[-1,0],[-1,1]],[[310,899],[1,0],[1,0],[0,-1]],[[310,897],[0,-2]],[[312,897],[-1,0]],[[310,895],[1,0],[0,-1],[1,0],[0,1],[1,0],[1,-1],[0,1],[0,1],[-1,1],[-1,0]],[[310,894],[0,-1]],[[310,893],[1,0],[-1,1]],[[310,893],[0,-1]],[[311,892],[-1,1]],[[310,892],[1,0]],[[310,890],[0,-17]],[[314,888],[-1,0],[0,-1],[-1,0],[0,1],[1,0],[0,1],[-1,0],[0,-1],[-1,0],[1,0],[-1,0],[0,1],[1,0],[1,0],[1,0],[-1,0],[-1,0],[1,0],[0,1],[-1,0],[0,-1],[0,1],[-1,0],[-1,0]],[[314,887],[0,1]],[[314,887],[0,-1],[-1,0],[0,1],[1,0]],[[314,887],[0,-1],[0,1]],[[315,887],[-1,0]],[[317,887],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[1,0],[0,1],[1,0],[-1,1]],[[322,883],[-1,1],[-1,0],[1,0],[-1,1],[0,-1],[-1,0],[0,1],[0,-1],[-1,-1],[0,1],[1,0],[0,1],[0,1],[1,0],[-1,0],[-1,0],[1,0],[-1,0],[0,-1],[-1,0],[1,-1],[0,-1],[0,1],[-1,0],[0,1],[1,1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,1],[0,1],[0,1],[1,1]],[[322,881],[0,1],[-1,0],[1,1]],[[322,881],[-1,0],[-1,0],[0,-1],[-1,0],[1,0],[0,1],[1,0],[-1,0],[1,0],[1,0]],[[322,881],[0,-1],[-1,0],[-1,0],[0,-1],[0,1],[1,0],[1,0],[0,1]],[[323,881],[-1,0]],[[324,879],[0,1],[1,1],[-1,0],[-1,-1],[0,-1],[-1,0],[1,0],[0,1],[0,1]],[[325,879],[-1,-1],[-1,-1],[0,1],[0,-1],[-1,1],[1,0],[1,0],[0,1]],[[326,879],[-1,-1],[0,-1],[0,-1],[0,1],[0,1],[0,1]],[[326,879],[0,-1],[0,-1],[0,1],[0,1]],[[327,874],[1,0],[1,0],[0,1],[-1,0],[-1,0],[1,0],[0,1],[-1,0],[0,1],[1,-1],[1,0],[0,1],[-1,1],[0,1],[-1,0],[0,-1],[0,1],[-1,0]],[[326,874],[-1,1],[1,0],[1,0],[0,-1]],[[326,873],[0,1]],[[326,873],[-1,0],[0,1],[0,-1],[1,0]],[[327,873],[-1,0]],[[326,870],[0,1],[0,1],[-1,0],[-1,1],[1,0],[0,-1],[1,0],[1,0],[0,1]],[[326,870],[-1,0],[0,1],[0,-1],[1,0]],[[326,869],[-1,1],[1,0]],[[315,874],[0,-1],[1,0],[0,-1],[0,1],[1,0],[0,1],[1,0],[-1,-1],[-1,-1],[0,-1],[1,0],[1,1],[1,0],[0,1],[1,0],[0,1],[1,0],[-1,0],[0,-1],[-1,-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,0],[0,1],[1,0],[-1,0],[0,-1],[-1,0],[1,0],[0,-1],[0,1],[1,0],[1,0],[-1,0],[-1,-1],[1,0],[-1,0],[0,-1],[1,0],[0,-1],[0,1],[0,1],[1,0],[0,1],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[-1,0],[0,-1],[1,0],[0,1],[0,1],[1,1],[-1,0],[0,1],[1,0],[-1,0],[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]],[[314,875],[1,0],[0,-1]],[[314,875],[0,-1],[0,1]],[[313,875],[1,1],[-1,0],[1,0],[0,-1]],[[313,875],[-1,1],[-1,0],[1,0],[1,-1]],[[313,875],[0,-1],[0,1]],[[310,873],[1,-1],[0,-1],[1,0],[1,0],[0,1],[-1,1],[-1,1],[0,1],[1,0],[0,-1],[1,0],[-1,1],[1,0]],[[310,851],[0,-6]],[[310,845],[1,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,1],[0,1],[0,1],[-1,0],[1,0],[-1,0],[0,1],[-1,1],[0,1],[-1,0],[0,1],[-1,1],[-1,0],[0,1],[1,0],[-1,0],[-1,0]],[[319,828],[0,-1],[1,0],[-1,0],[0,-1],[0,-1],[1,0],[1,0],[-1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[-1,0],[0,1],[-1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,1],[0,-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],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[-1,0],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,1],[0,-1],[0,-1],[0,-1],[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,0],[0,1],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[1,0],[-1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[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],[1,0],[0,-1],[-1,0],[0,1],[0,-1],[0,1],[-1,0],[1,0],[-1,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[1,0],[-1,0],[-1,0],[0,-1],[0,-1],[1,0],[-1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[-1,0],[0,-1],[0,1],[0,-1],[0,-1],[0,-1],[0,1],[-1,0],[0,-1],[1,0],[-1,0],[0,-1],[1,0],[0,-1],[1,0],[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],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,1],[1,0],[0,-1],[0,-1],[0,1],[0,-1],[1,0],[1,0],[0,-1],[1,0],[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,0],[1,1],[-1,0],[1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[-1,0],[0,-1],[1,-12]],[[319,828],[1,0],[-1,0]],[[320,829],[-1,-1]],[[320,828],[1,0],[0,1],[-1,0]],[[321,827],[0,1],[0,1],[0,-1],[-1,0]],[[322,826],[-1,0],[0,1]],[[321,825],[1,1]],[[322,826],[0,-1],[-1,0]],[[322,821],[0,1],[1,0],[0,1],[0,1],[-1,-1],[0,1],[0,1],[0,1]],[[327,813],[0,1],[-1,0],[-1,0],[1,0],[0,1],[0,-1],[0,1],[-1,0],[-1,-1],[0,1],[1,0],[1,0],[0,1],[-1,0],[1,0],[0,1],[0,1],[-1,-1],[-1,0],[-1,0],[0,-1],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[-1,-1]],[[327,812],[0,1]],[[328,812],[-1,0]],[[328,811],[0,1]],[[327,811],[1,0]],[[327,810],[-1,0],[1,1]],[[328,810],[-1,0]],[[328,809],[0,1]],[[329,806],[0,1],[0,1],[-1,0],[-1,1],[1,0]],[[328,804],[0,1],[0,1],[1,0]],[[328,804],[-1,0],[-1,1],[0,1],[1,0],[0,-1],[-1,0],[1,-1],[1,0]],[[328,803],[0,1]],[[328,803],[-1,0],[1,0]],[[328,802],[0,1]],[[328,802],[0,-1],[0,1]],[[329,800],[0,1],[-1,0],[-1,0],[0,1],[1,0]],[[330,799],[-1,0],[0,1]],[[330,799],[0,-1],[0,1]],[[338,791],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[0,-1],[0,1],[0,1],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[0,1],[1,1],[0,1],[0,1],[0,-1],[-1,0],[1,1],[-1,1],[0,-1],[0,-1],[-1,0],[0,-1],[0,1],[1,1],[-1,0],[-1,-1],[0,-1],[0,1],[1,1],[-1,0],[1,0],[0,1],[0,1],[0,-1],[-1,0],[1,0],[0,1],[0,1],[-1,0],[1,0],[0,1],[-1,0],[0,-1],[0,1],[-1,0],[1,0],[-1,1]],[[338,790],[0,1]],[[344,781],[0,1],[-1,0],[-1,0],[0,1],[1,0],[-1,0],[-1,0],[0,-1],[-1,-1],[0,1],[0,1],[1,0],[0,1],[-1,1],[0,1],[-1,0],[0,1],[-1,0],[-1,-1],[1,0],[1,0],[0,-1],[-1,1],[0,-1],[0,1],[0,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,1],[0,-1],[0,-1],[-1,0],[0,1],[1,0],[-1,1],[-1,1],[-1,0],[1,0],[1,0],[0,-1],[1,0],[-1,0],[1,1],[0,1],[1,0],[1,0],[0,1],[1,0],[-1,0],[1,0],[1,0],[0,1],[0,1],[-1,-1],[-1,-1],[-1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[-1,0],[1,0],[0,1],[0,1],[-1,0],[-1,0]],[[344,781],[-1,1],[1,0],[0,-1]],[[344,781],[0,-1],[0,1]],[[323,758],[1,0],[1,0],[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],[0,1],[1,0],[0,1],[0,-1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[-1,0],[1,0],[1,0],[0,1],[1,0],[0,1],[0,-1],[1,0],[0,1],[1,-1],[1,1],[1,1],[0,1],[1,1],[1,1],[0,1],[-1,1],[-1,0],[0,1],[1,-1],[1,0],[0,1],[-1,0],[-1,0],[0,1],[0,-1],[1,1],[1,0],[-1,0],[0,1],[0,1],[0,1],[-1,0],[1,0],[1,1],[0,1],[-1,0],[0,1]],[[313,875],[1,0],[0,-1],[1,0],[-1,0],[0,1],[-1,0]],[[314,888],[0,-1],[1,0]],[[315,887],[1,1],[-1,0],[-1,0]],[[316,841],[1,0],[0,1],[-1,-1]],[[317,862],[0,-1],[1,0]],[[318,861],[0,1],[0,1],[0,-1],[-1,0]],[[319,841],[-1,0],[0,-1],[0,-1],[1,-1],[1,1],[0,1],[-1,1]],[[319,841],[0,1],[0,1],[-1,0],[0,-1],[1,-1]],[[319,828],[0,1],[1,0]],[[320,829],[-1,0],[1,0]],[[319,830],[1,0],[0,-1]],[[319,831],[0,-1]],[[320,831],[-1,0]],[[320,830],[1,0],[-1,1]],[[320,830],[0,1]],[[320,829],[1,1],[-1,0]],[[319,828],[0,1],[0,-1]],[[319,847],[0,-1],[1,0],[1,0],[0,1],[-1,0],[-1,0]],[[320,856],[0,1],[-1,-1],[1,0],[0,-1]],[[321,856],[-1,0]],[[321,855],[0,1]],[[320,855],[1,0]],[[320,831],[1,0],[-1,1],[-1,0],[0,-1]],[[321,854],[0,1]],[[321,854],[0,-1],[0,-1],[1,0],[-1,0],[0,1],[0,1]],[[320,854],[1,0]],[[320,855],[0,-1]],[[321,732],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,1],[1,0],[-1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,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],[0,-1]],[[321,855],[1,0],[0,1],[-1,0]],[[322,826],[0,1],[0,1],[-1,-1]],[[323,755],[0,-4]],[[323,751],[1,0],[0,-1],[1,0],[1,-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]],[[326,879],[0,1],[-1,0],[0,-1]],[[325,879],[1,0]],[[326,870],[0,-1]],[[326,870],[1,0],[-1,0]],[[326,869],[1,0],[0,1],[-1,0]],[[326,873],[1,0],[0,1],[-1,0],[0,-1]],[[327,812],[1,1]],[[328,813],[-1,0]],[[327,736],[1,0],[-1,0],[0,1],[1,0],[0,1],[0,-1],[0,1],[1,0],[-1,0],[1,0],[0,1],[-1,0],[0,-1],[-1,-1],[0,-1]],[[328,811],[-1,0],[0,-1],[1,0]],[[328,810],[0,1]],[[328,805],[1,0],[0,1]],[[329,804],[0,1],[-1,0]],[[328,804],[1,0]],[[328,803],[1,0],[-1,0]],[[328,803],[1,0],[1,0],[-1,0],[0,1]],[[330,724],[0,1],[0,1],[1,0],[0,1],[-1,0],[0,-1],[0,1],[1,0],[0,1],[1,1],[-1,0],[0,-1],[0,1],[0,1],[1,2],[0,1],[-1,0],[1,1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,-2],[0,-1],[0,-1],[0,-1],[0,-1]],[[330,724],[1,0],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[-1,0],[0,1],[0,-1],[-1,-1],[0,1],[1,0],[-1,-1],[0,-1],[1,1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1]],[[330,723],[0,1]],[[329,724],[1,-1]],[[329,724],[0,-1],[0,1]],[[329,800],[1,0],[0,1],[-1,-1]],[[338,791],[1,1],[-1,0],[0,-1]],[[338,790],[1,1],[-1,0]],[[315,742],[-1,0],[0,-1],[-1,0],[0,-1],[0,1],[-1,0],[0,-1],[0,1],[-2,0],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0]],[[320,740],[-1,0],[-1,0],[0,-1],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[0,1]],[[320,739],[0,1]],[[329,724],[-1,0],[-1,2],[1,0],[-1,0],[0,-1],[-1,-1],[-1,1],[-1,0],[-1,0],[1,0],[-1,0],[0,1],[0,-1],[-1,1],[0,1],[-1,0],[1,0],[0,1],[-1,0],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,-1],[0,1],[1,0],[0,2],[0,1],[0,1],[1,0]],[[329,723],[0,1]],[[313,721],[1,-1],[1,0],[0,1],[0,-1],[1,1],[0,1],[0,1],[0,-1],[0,-1],[1,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[0,-1],[0,-1],[1,0],[0,1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,1],[0,1],[0,1],[-1,0],[1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,-1],[-1,-1],[0,-1],[0,1],[0,-1],[-1,-1],[0,-1],[0,1],[1,0],[-1,0],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,1],[1,0],[0,-1],[0,-1],[1,-1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,-1],[1,-1],[0,1],[0,1],[0,-1],[1,1],[0,1],[1,-1],[0,1],[1,0],[0,1],[1,0],[1,1],[1,0],[0,1],[1,0],[0,1],[-1,0],[0,1]],[[311,735],[0,-1],[0,-1],[0,-4],[0,-3],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,1]],[[309,736],[1,1],[1,-2]],[[308,737],[0,-1],[0,-1],[0,1],[1,0]],[[315,742]],[[317,862],[-1,0],[0,1],[0,-1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,-1],[0,-1],[0,1],[0,1],[0,1],[0,-1],[-1,0],[1,0],[0,1],[-1,0],[0,1],[-1,0],[1,0],[0,1],[-1,0],[0,1],[1,0],[-1,0],[-1,0],[0,-1],[0,1],[-1,0],[1,0],[0,1],[-1,0]],[[317,862],[0,1],[0,1],[-1,0],[0,-1],[1,-1]],[[317,862],[0,1],[0,-1]],[[319,860],[0,1],[-1,0]],[[320,857],[0,1],[-1,0],[0,-1],[-1,0],[0,1],[1,0],[-1,0],[0,1],[0,1],[-1,-1],[0,1],[1,0],[0,-1],[0,1],[1,0]],[[319,856],[0,1],[1,0]],[[320,855],[0,1],[-1,0]],[[319,853],[1,-1],[0,1],[0,1]],[[319,853],[0,1]],[[319,854],[0,1],[-1,1],[1,0]],[[319,847],[0,1],[0,1],[-1,0],[0,1],[1,-1],[1,0],[0,1],[0,1],[-1,0],[0,1],[0,1]],[[313,852],[1,-1],[0,1],[0,-1],[0,-1],[1,0],[0,1],[-1,1],[0,1],[0,-1],[1,-1],[0,-1],[1,0],[-1,1],[1,0],[0,-1],[1,0],[-1,0],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0]],[[310,854],[1,0],[0,-1],[1,0],[-1,0],[0,1],[0,2],[0,-1],[1,-1],[0,-1],[1,-1]],[[310,870],[0,-16]],[[313,852],[0,1],[0,-1]],[[249,743],[0,-1]],[[252,806],[-3,-5],[0,-58]],[[271,778],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[-1,1],[0,1],[1,0],[0,1],[0,2],[0,1],[0,1],[0,1],[0,-1],[-1,0],[0,1],[-1,-1],[0,1],[-1,0],[-1,0],[0,-1],[0,1],[-1,1],[0,-1],[0,1],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[0,-1],[-1,-1],[0,-1],[0,1],[1,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,1],[0,1],[-1,0],[0,1],[-1,1],[0,1],[-1,0]],[[279,791],[-1,-1],[1,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[1,0],[-1,0],[0,-1],[1,0],[-1,0],[0,-1],[0,-1],[0,1],[0,1],[-1,0],[0,1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,1],[0,1],[-1,0],[0,1],[-1,1],[0,1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[1,0],[0,1],[1,1],[0,1],[0,1],[-1,1],[0,1],[-1,1],[-1,0],[0,1],[-1,0],[0,1],[1,0],[0,1],[-1,1],[0,1],[0,1],[-1,0],[0,1]],[[280,792],[0,-1],[-1,0]],[[282,834],[1,0],[0,1],[0,-1],[1,0],[0,1],[0,-1],[-1,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,1],[1,-1],[0,1],[0,-1],[-1,0],[-1,-1],[1,0],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[-1,0],[0,1],[-1,0],[1,0],[0,-1],[-1,0],[0,-1],[1,0],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[1,-1],[0,1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,-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,-2],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[-1,-1],[-1,0]],[[282,835],[0,-1]],[[307,822],[-1,0],[0,1],[1,0],[0,1],[-1,0],[0,-1],[0,1],[0,1],[0,1],[0,1],[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],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[-1,0],[0,-1],[-1,0],[0,-1],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[1,0],[-1,0],[0,1],[0,-1],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[1,0],[0,1],[0,1],[-1,0],[-1,1],[0,1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,1],[-1,0],[-1,0],[0,-1],[0,1],[-1,1],[-1,0],[-1,1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,-1],[0,-1],[-1,0],[1,-1],[0,-1],[-1,-1],[-1,-1]],[[307,822],[0,-1],[0,1]],[[307,821],[-1,0],[0,1],[1,0]],[[307,821],[0,-1],[-1,0],[0,-1],[0,-1],[-1,1],[0,1],[0,-1],[0,1],[1,0],[-1,1],[0,1],[1,-1],[0,-1],[1,0],[0,1]],[[319,827],[-1,0],[-1,-1],[1,0],[0,-1],[1,-1],[-1,0],[0,1],[-1,0],[1,-1],[0,-1],[0,1],[-1,0],[0,-1],[0,-1],[1,0],[-1,0],[0,-1],[1,0],[-1,0],[0,1],[0,-1],[-1,0],[0,-1],[1,0],[-1,0],[0,-1],[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,-1],[0,-1],[-1,-1],[0,-1],[0,1],[1,2],[-1,0],[0,1],[0,-1],[0,-1],[-1,0],[1,1],[0,1],[0,1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,-1],[-1,0],[-1,-1],[0,-1],[0,1],[1,1],[1,0],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,-1],[0,1],[-1,0]],[[319,828],[-1,0],[0,-1],[1,0]],[[320,829],[0,1],[-1,0],[0,-1],[0,-1]],[[315,742],[1,0],[0,1],[1,-1],[1,0],[0,-1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,1],[0,1],[0,1],[-1,0],[0,1],[1,0],[0,-1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,-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,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[-1,-1],[1,1],[-1,0],[0,-1],[-1,-1],[1,1],[0,1],[1,0],[0,1],[0,1],[1,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[-1,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[1,0],[0,-1],[1,0],[1,-1],[1,0],[0,-1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,1],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[1,0],[1,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[1,1],[0,-1],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0]],[[307,737],[1,0]],[[307,737],[0,1],[0,-1]],[[302,722],[0,-1],[0,1],[1,-1],[0,2],[0,1],[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]],[[301,721],[0,1],[1,0]],[[301,720],[0,1]],[[291,719],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0]],[[290,718],[0,1],[1,0]],[[289,716],[0,1],[1,1]],[[280,707],[-1,0],[0,-1],[0,1],[-1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[-1,0],[0,1],[1,0],[0,-1],[0,1],[0,-1],[1,0],[0,-1],[0,1],[1,0],[-1,0],[1,0],[0,1],[0,-1],[0,1],[-1,0],[1,0],[0,1],[1,0],[-1,0],[1,0],[0,1],[1,0],[1,1]],[[280,704],[0,1],[0,1],[0,-1],[0,1],[0,1]],[[269,698],[1,0],[0,-1],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[1,0],[0,-1],[1,0],[1,0],[-1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[1,0]],[[269,699],[-1,-1],[1,0]],[[269,699],[-1,0],[1,0]],[[269,700],[0,-1]],[[270,702],[0,-1],[0,-1],[-1,0]],[[270,702],[0,-1],[0,1]],[[271,706],[0,-1],[-1,-1],[0,-1],[0,-1]],[[266,729],[1,0],[1,0],[0,-1],[0,1],[0,-1],[1,0],[-1,0],[1,0],[1,0],[0,1],[0,-1],[1,0],[-1,0],[1,0],[1,0],[0,-1],[0,1],[1,0],[0,-1],[0,1],[-1,0],[1,0],[0,-1],[-1,0],[1,0],[-1,0],[1,0],[1,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],[0,-1],[1,0],[-1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[-1,0],[1,0],[-1,0],[1,0],[0,-1],[0,1],[0,-1],[0,-1],[0,1],[0,-1],[0,1],[0,-1],[0,-1],[1,0],[0,-1],[-1,0],[1,0],[-1,0],[0,1],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[-1,0],[0,1],[0,-1],[-1,0],[1,0],[0,1],[-1,0],[0,1],[0,1],[0,-1],[0,1],[0,1],[-1,0],[1,0],[0,1],[0,-1],[-1,0],[0,1],[0,-1],[0,1],[0,-1],[0,1],[0,-1],[0,1],[-1,0],[0,-1],[1,0],[-1,0],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,1],[-1,0],[0,-1],[1,0],[-1,0],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[1,0],[0,-1],[-1,0]],[[266,730],[0,-1],[0,1],[0,-1]],[[265,730],[0,1],[1,0],[0,-1]],[[264,732],[1,0],[0,1],[0,-1],[-1,-1],[1,0],[0,-1]],[[249,742],[1,0],[1,0],[-1,0],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0],[0,-1],[-1,0],[0,-1],[1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,1],[0,-1],[1,0],[0,1],[0,1],[1,0],[-1,1],[0,1],[1,0],[0,-1],[0,1],[0,-1],[1,0],[1,-1],[0,1],[0,-1],[1,0],[0,1],[0,-1],[0,1],[0,-1],[1,0],[0,-1],[1,0],[-1,0],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[-1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[-1,0],[0,-1]],[[259,991],[1,-3]],[[277,994],[-1,0],[0,-1],[-1,1],[-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],[0,1],[-1,0],[-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],[-2,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],[1,0],[0,-1],[1,0],[0,-1],[-1,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,-1],[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],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0]],[[278,993],[-1,0],[0,1]],[[314,985],[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],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[-1,0],[0,1],[-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],[-1,0],[-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,-1],[-1,0],[-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,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,-1],[1,0],[1,0],[1,-1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[1,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[-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],[-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,0],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,1],[-1,-1]],[[312,985],[1,0],[1,0]],[[312,985],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[0,-1],[1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0]],[[292,964],[-1,1],[-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,-1],[0,-1],[0,1],[1,1],[0,1],[-1,0],[-1,0],[-1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,1],[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],[0,-1],[1,0],[1,-1],[1,0],[1,0],[0,1],[-1,0],[0,1],[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,-1],[1,0],[1,0],[1,0],[-1,0],[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,-1],[1,0],[1,0],[0,1],[-1,0],[1,0],[1,0],[1,0],[0,1],[-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],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,1],[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],[1,0],[0,1],[-1,0],[1,0],[0,-1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[-1,0],[0,1],[-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,1],[1,0],[1,1],[1,0],[1,1],[1,0],[0,1],[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],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[0,1],[1,0],[-1,0],[-1,0],[1,0],[1,0],[1,0],[-1,0],[1,1],[0,-1],[1,0],[0,1],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[-1,0],[0,1]],[[284,958],[1,0],[1,0],[1,0],[0,1],[1,0],[0,-1],[1,1],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[1,0],[0,-1],[0,1],[1,0],[0,-1],[1,0],[1,0],[0,1],[1,0],[-1,1],[-1,0],[-1,0],[-1,1],[0,-1],[-1,0],[0,1],[1,0],[1,0],[0,-1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0]],[[283,958],[1,0]],[[283,957],[-1,1],[-1,0],[1,1],[1,-1]],[[266,948],[1,-1],[1,0],[0,1],[0,1],[-1,0],[1,1],[0,-1],[0,-1],[1,0],[-1,0],[1,-1],[1,0],[1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[1,0],[0,-1],[1,0],[1,0],[-1,0],[1,-1],[-1,0],[1,0],[1,0],[1,0],[1,-1],[0,-1],[-1,0],[0,-1],[1,0],[1,1],[1,0],[1,0],[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,1],[0,-1],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[0,1],[1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,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,1],[0,1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,-1],[0,1],[1,0],[1,0],[1,0],[1,0],[-1,0],[1,0],[1,0],[1,1],[0,1],[0,1]],[[263,946],[1,0],[1,0],[0,1],[-1,0],[-1,0],[0,1],[1,0],[0,-1],[1,0],[0,1],[0,1],[1,0],[0,-1]],[[262,954],[1,-8]],[[264,955],[1,0],[1,0],[1,0],[0,1],[1,0],[0,1],[1,1],[0,1],[1,0],[0,-1],[-1,-1],[0,-1],[-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]],[[263,956],[0,-1],[1,0]],[[263,956],[1,0],[0,1],[1,0],[-1,-1],[-1,0]],[[262,956],[1,0]],[[262,957],[0,-1]],[[262,957],[1,1],[0,-1],[-1,0]],[[262,958],[0,-1]],[[262,958],[1,0],[1,0],[1,0],[-1,0],[-1,0],[-1,0]],[[262,959],[0,-1]],[[262,960],[1,1],[0,1],[0,1],[1,0],[-1,-1],[1,-1],[0,1],[0,-1],[-1,0],[0,-1],[1,0],[1,0],[-1,0],[-1,0],[0,-1],[1,0],[1,1],[0,-1],[-1,0],[-1,0],[-1,0]],[[262,966],[0,-6]],[[262,971],[1,0],[0,-1],[1,0],[0,-1],[0,-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,0],[1,0],[1,0],[1,-1],[1,1],[1,0],[0,1],[1,0],[0,-1],[-1,0],[0,-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,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0]],[[262,973],[0,-2]],[[262,976],[0,-3]],[[262,977],[1,0],[1,0],[1,0],[1,0],[0,1],[0,1],[1,0],[0,1],[1,-1],[-1,0],[-1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[0,-1],[-1,0],[-1,0],[-1,-1],[0,-1],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,1],[1,1],[-1,0],[1,0],[-1,0],[0,1],[-1,0],[1,0],[1,0],[0,-1],[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,0],[1,0],[-1,0],[0,-1],[-1,0],[0,-1],[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],[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,-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,-1],[1,0],[1,-1],[1,0],[-1,0],[0,-1],[1,-1],[1,0],[1,0],[1,0],[1,0],[-1,0],[-1,0],[0,-1],[-1,1],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,-1],[0,1]],[[261,981],[1,-4]],[[261,981],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0]],[[261,982],[0,-1]],[[261,983],[1,0],[1,0],[-1,0],[0,-1],[-1,0]],[[260,988],[1,-5]],[[260,988],[1,0],[1,0],[0,-1],[0,1],[-1,0],[0,-1],[1,0],[-1,0],[0,1],[-1,0]],[[262,969],[0,-1]],[[262,968],[1,0],[0,1],[-1,0]],[[262,956],[0,-1]],[[263,955],[1,0],[-1,1],[-1,0]],[[262,955],[1,0]],[[263,941],[0,-8]],[[263,933],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[0,1],[-1,1],[1,0],[0,-1],[0,1],[1,-1],[-1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[0,1],[0,1],[-1,0],[1,0],[0,-1],[1,0],[0,1],[1,0],[-1,1],[-1,0],[-1,-1],[0,1],[1,0],[-1,0],[1,0],[0,1],[1,0],[1,1],[-1,0],[1,1],[-1,0],[-1,0],[-1,0],[1,0],[0,1],[-1,0],[0,1],[-1,-1],[-1,0],[0,1],[-1,1],[-1,0],[-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],[0,-1]],[[263,933],[0,1],[0,1],[0,-1],[0,-1]],[[263,928],[0,-1]],[[263,927],[1,0],[0,1],[-1,0]],[[263,923],[0,-1]],[[275,924],[-1,0],[0,1],[0,1],[-1,1],[-1,1],[-1,-1],[-1,0],[-1,1],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[1,0],[0,-1],[0,-1],[0,1],[-1,1],[-1,0],[0,-1],[-1,0],[1,-1],[-1,0],[0,1],[-1,0],[0,-1],[1,-1],[1,0],[1,0],[1,-1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0]],[[277,918],[0,-1],[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,1],[0,-1],[1,0],[0,1],[-1,0],[0,1],[1,1],[0,1],[-1,-1],[-1,-1],[-1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[-1,1],[1,0],[0,1],[-1,0],[0,1]],[[278,918],[-1,0]],[[278,918],[0,1],[0,-1]],[[278,917],[0,1]],[[278,917],[0,-1],[0,1]],[[279,918],[0,-1],[-1,0]],[[280,917],[-1,1]],[[280,917],[0,-1],[1,0],[1,0],[0,-1],[1,-1],[0,-1],[0,1],[-1,1],[0,-1],[1,0],[0,-1],[-1,1],[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]],[[281,918],[0,-1],[-1,0]],[[281,918],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[1,0],[0,-1],[-1,1],[0,1]],[[291,916],[0,1],[0,1],[-1,1],[-1,0],[-1,0],[0,-1],[0,1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1]],[[291,916],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[1,0],[0,1],[0,1],[1,0],[0,1],[-1,0],[-1,-1],[-1,-1],[1,1],[0,1],[1,0],[1,0],[1,0]],[[292,916],[-1,0]],[[295,912],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[1,0],[0,1],[-1,0],[1,0],[0,1],[0,1],[1,0],[-1,0],[-1,-1],[1,1],[-1,0],[-1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,1],[1,0],[0,1],[-1,0],[0,1],[1,0],[0,1],[-1,-1],[-1,-1],[1,1],[0,1],[-1,0],[1,0],[1,0],[0,1],[1,-1],[0,1],[1,1],[-1,0],[0,1],[-1,0]],[[296,910],[-1,1],[0,-1],[0,1],[0,1]],[[296,910],[-1,0],[0,-1],[0,-1],[-1,0],[1,0],[0,1],[0,1],[1,0]],[[297,910],[0,-1],[-1,0],[0,-1],[-1,0],[1,0],[0,1],[0,1]],[[297,911],[0,-1]],[[298,912],[0,-1],[-1,0]],[[302,909],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0]],[[301,908],[0,1],[1,0]],[[299,907],[0,1],[1,0],[1,0]],[[299,907],[-1,0],[0,-1],[0,1],[1,0]],[[299,906],[0,-1],[-1,0],[1,2]],[[301,907],[-1,0],[0,-1],[-1,0]],[[302,908],[-1,-1]],[[310,903],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,-1],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[1,1],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[0,1],[1,0],[1,0],[-1,1],[-1,0],[1,0],[0,1],[1,0],[1,0],[1,1],[1,0],[0,1],[0,-1],[1,1],[0,1],[-1,0],[-1,0],[-1,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],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,-1],[0,1],[0,1],[1,1],[-1,1],[0,-1],[-1,0],[0,-1],[0,1],[1,0],[0,1],[1,0],[1,1],[0,1],[1,0],[-1,1],[0,1],[-1,-1]],[[310,898],[0,1]],[[310,897],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[1,0],[1,0],[1,1],[1,0],[1,0]],[[310,895],[0,1],[0,-1]],[[310,895],[-1,0],[-1,1],[-1,-1],[0,1],[1,0],[1,0],[0,-1],[1,0]],[[310,895],[-1,0],[0,-1],[-1,0],[0,-1],[0,1],[1,0],[0,1],[-1,0],[1,0],[1,0]],[[310,894],[0,1]],[[310,893],[-1,0],[1,0]],[[310,892],[-1,0],[0,1],[1,0]],[[310,891],[-2,1],[-1,0],[1,0],[1,0],[1,0]],[[310,890],[-1,0],[0,1],[-1,-1],[0,1],[1,0],[1,0]],[[310,873],[-1,0],[-1,0],[1,0],[1,0]],[[310,873],[0,-1],[0,1]],[[310,873],[0,-2]],[[310,871],[0,1],[0,-1]],[[310,870],[0,1]],[[310,851],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,-1],[1,0],[0,1],[0,-1],[1,0],[0,-1]],[[304,848],[1,0],[1,1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0]],[[303,849],[1,0],[0,-1]],[[295,861],[1,0],[0,1],[0,-1],[0,-1],[0,-1],[0,1],[1,-1],[0,-1],[0,-1],[1,0],[0,1],[0,-1],[0,-1],[1,1],[0,-1],[-1,0],[1,-1],[0,1],[0,-1],[1,0],[0,1],[-1,0],[1,0],[0,-1],[1,0],[0,-1],[0,1],[0,-1],[0,1],[1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[1,0],[0,-1],[0,-1],[1,0],[1,-1],[0,1],[1,0],[-1,-1],[1,0],[0,-1]],[[295,861],[0,1],[0,-1]],[[294,860],[0,1],[0,1],[0,-1],[1,0]],[[293,861],[0,1],[1,1],[0,-1],[0,-1],[0,-1]],[[293,861],[0,1],[-1,0],[0,1],[-1,0],[1,0],[0,1],[1,-1],[-1,0],[0,-1],[1,-1]],[[292,890],[1,0],[1,0],[0,1],[1,0],[0,-1],[-1,0],[0,-1],[1,-1],[1,1],[0,-1],[-1,0],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[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,-1],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[-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,-1],[0,-1],[0,1],[-1,0],[1,0],[0,1],[-1,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[-1,0],[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],[0,-1],[1,0],[0,-1],[1,0],[1,-1],[1,0],[1,0],[-1,0],[0,1],[1,0],[0,-1],[1,0],[0,1],[1,0],[0,1],[0,1],[0,-1],[1,0],[1,-1],[0,1],[0,-1],[1,0],[0,1],[1,0]],[[292,891],[0,-1]],[[278,899],[0,1],[1,0],[1,0],[1,0],[0,1],[0,1],[-1,1],[-1,0],[-1,0],[0,1],[1,0],[1,0],[0,1],[1,-1],[0,1],[-1,0],[0,-1],[1,0],[0,-1],[1,0],[-1,0],[1,-1],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[1,1],[1,0],[-1,0],[0,-1],[1,0],[0,-1],[-1,0],[1,-1],[1,1],[1,0],[-1,0],[0,-1],[1,-1],[1,0],[0,-1],[1,-1],[-1,0],[-1,-1],[0,1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[1,0],[1,0],[0,1],[1,0],[1,1],[1,0],[0,-1],[0,1],[0,1],[1,0],[0,-1],[-1,0],[1,0],[0,-1],[-1,0],[1,0],[0,-1]],[[275,899],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[0,1],[1,0],[1,-1],[0,-1]],[[275,899],[0,-1],[0,1]],[[271,899],[1,1],[0,-1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[1,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,-1],[1,0]],[[270,900],[1,0],[0,-1]],[[265,900],[1,0],[1,0],[1,0],[0,1],[1,0],[0,-1],[1,0]],[[263,901],[1,0],[1,-1]],[[263,909],[0,-8]],[[264,910],[0,-1],[0,-1],[0,-1],[-1,0],[1,1],[-1,0],[1,0],[0,1],[-1,0]],[[264,911],[0,-1]],[[263,912],[1,0],[0,1],[0,-1],[1,0],[0,-1],[-1,0]],[[263,917],[0,-5]],[[263,918],[1,0],[1,0],[0,-1],[-1,1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[-1,1],[0,1],[-1,0],[0,1],[-1,0]],[[263,922],[0,-4]],[[263,922],[1,0],[0,-1],[1,0],[1,0],[0,-1],[0,1],[-1,0],[-1,0],[-1,1]],[[263,910],[1,0]],[[263,911],[0,-1]],[[264,910],[-1,1]],[[263,899],[0,-5],[0,1],[0,-1]],[[265,900],[-1,-1],[-1,0]],[[266,899],[-1,0],[0,1]],[[270,898],[-1,0],[-1,0],[-1,0],[-1,1]],[[270,898],[1,0],[-1,0]],[[272,889],[0,1],[1,0],[1,1],[0,1],[-1,0],[0,1],[-1,0],[0,-1],[0,1],[1,0],[1,1],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,1],[-1,0],[-1,0],[1,0],[1,0],[0,1]],[[271,889],[0,1],[1,0],[0,-1]],[[271,889],[-1,0],[0,1],[1,0],[0,-1]],[[272,888],[-1,-1],[0,1],[-1,0],[1,0],[0,1]],[[268,874],[1,1],[0,1],[1,0],[0,1],[1,0],[1,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,0],[0,1]],[[267,874],[1,0]],[[267,875],[0,-1]],[[266,876],[1,0],[0,-1]],[[266,877],[0,-1]],[[266,877],[0,1],[0,-1]],[[264,879],[1,0],[0,-1],[0,-1],[1,0]],[[263,878],[0,1],[1,0]],[[263,891],[0,-13]],[[263,892],[0,-1]],[[263,892],[1,0],[0,-1],[0,1],[-1,0]],[[263,894],[1,0],[1,0],[0,-1],[-1,0],[-1,0],[1,0],[-1,0],[0,-1]],[[263,871],[0,-1]],[[263,870],[1,-1],[1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,-1]],[[264,879],[0,-1],[-1,0]],[[265,878],[0,1],[-1,0]],[[265,878],[-1,0],[1,0]],[[265,877],[-1,1],[1,0]],[[266,876],[0,1],[-1,0]],[[267,875],[-1,0],[0,1]],[[266,873],[1,0],[0,1]],[[265,873],[0,1],[-1,0],[1,1],[0,-1],[1,0],[0,-1]],[[263,874],[1,0],[0,-1],[1,0]],[[263,878],[0,-4]],[[266,873],[-1,0]],[[267,871],[-1,1],[0,1]],[[268,870],[-1,0],[0,1]],[[267,870],[0,-1],[1,0],[0,1]],[[265,873],[0,-1],[1,0],[0,-1],[0,-1],[1,0]],[[266,846],[1,-1],[0,-1],[1,1],[1,-1],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,-1]],[[268,870],[0,1],[-1,0]],[[268,874],[1,-1],[0,1],[-1,0]],[[271,889],[1,-1],[0,1],[-1,0]],[[271,778],[1,0],[1,-1],[1,0],[0,-1],[1,0],[0,1],[0,1],[-1,1],[0,1],[-1,0],[0,-1],[-1,0],[-1,-1]],[[275,924],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[1,-1],[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],[0,1],[0,1],[-1,0],[0,1],[0,-1],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1]],[[275,899],[0,-1]],[[278,899],[-1,0],[-1,0],[-1,0]],[[275,898],[1,0],[1,0],[0,-1],[0,1],[1,0],[1,0],[0,1],[-1,0]],[[277,827],[-1,-1],[1,0],[0,1]],[[276,843],[0,-1],[1,-1],[1,-1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[-1,0],[0,-1],[0,-1],[-1,-1]],[[277,827],[1,0],[0,1],[-1,0],[0,-1]],[[277,801],[1,1],[0,1],[0,-1],[-1,0],[0,-1]],[[278,993],[0,1],[-1,0]],[[279,804],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[1,0],[0,1],[0,1],[1,0],[0,-1],[-1,0],[0,-2],[0,1],[1,0],[0,1],[0,1],[1,0]],[[279,804],[0,-1],[0,-2],[0,1],[0,1],[0,1]],[[280,802],[0,1],[0,1],[-1,0]],[[280,800],[0,1],[0,1]],[[280,800],[0,-1]],[[280,799],[-1,0],[1,0]],[[280,801],[0,1],[0,-1],[0,-1]],[[280,801],[-1,-1],[0,-1],[1,2]],[[278,806],[-1,0],[0,-1],[1,0]],[[278,805],[0,1]],[[278,943],[1,0],[1,0],[-1,0],[0,1],[1,0],[0,1],[-1,0],[0,-1],[-1,0],[0,-1]],[[280,792],[-1,0],[-1,-1],[1,0]],[[279,791],[0,1],[1,0]],[[278,917],[1,0],[0,1],[-1,0],[0,-1]],[[278,771],[0,-1],[1,0],[0,1],[-1,0]],[[279,804],[0,1],[-1,1]],[[278,805],[0,-1],[1,0]],[[279,893],[0,-1],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[-1,0],[0,-1],[-1,-1],[-1,0],[0,-1]],[[280,889],[0,-1],[0,-1],[0,1],[1,0],[-1,1]],[[280,889],[1,0],[0,1],[1,0],[0,1],[-1,0],[-1,0],[1,0],[0,-1],[-1,0],[0,-1]],[[280,802],[1,0],[-1,0]],[[280,801],[1,0],[0,1],[0,1],[-1,-1]],[[280,800],[0,1]],[[280,897],[1,0],[1,0],[1,1],[0,1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0]],[[281,853],[1,0],[0,-1],[0,-1],[1,0],[1,0],[0,1],[0,1],[-1,1],[-1,0],[-1,-1]],[[284,958],[-1,0],[0,-1]],[[283,957],[1,0],[0,1]],[[283,857],[1,0],[0,1],[-1,0],[0,-1]],[[284,855],[0,-1],[1,0],[0,-1],[1,0],[1,1],[-1,0],[1,0],[-1,0],[0,1],[-1,0],[-1,0]],[[285,895],[0,-1],[1,0],[0,1],[0,1],[1,0],[-1,0],[-1,0],[0,1],[0,-1],[0,-1]],[[285,884],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[0,1],[0,2],[0,1],[0,1],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,-1],[0,1],[-1,-1],[-1,0],[0,-1],[-1,-2],[0,-1]],[[291,891],[-1,0],[0,-1],[0,-1],[1,0],[1,-1],[0,1],[0,1]],[[292,890],[-1,0],[0,1]],[[292,916],[0,1],[-1,-1]],[[292,891],[-1,0]],[[292,886],[0,-1],[1,0],[0,-1],[0,1],[1,0],[1,-1],[1,0],[0,1],[0,1],[-1,0],[-1,0],[-1,1],[-1,0],[0,-1]],[[292,848],[1,0],[0,-1],[1,0],[0,1],[-1,0],[-1,0]],[[293,889],[0,-1],[1,0],[-1,1]],[[295,860],[-1,0]],[[294,860],[1,-1],[0,1]],[[296,912],[0,-1],[0,-1]],[[297,911],[-1,0],[0,1]],[[296,910],[1,0],[0,1]],[[301,908],[-1,0],[-1,0],[0,-1],[0,-1],[1,0],[0,1],[1,0],[0,1]],[[303,849],[-1,0],[1,-1],[0,-1],[1,0],[0,1]],[[304,848],[-1,1]],[[310,830],[1,1],[0,1],[0,1],[-1,0],[0,-1],[0,-1],[0,-1]],[[323,755],[-1,0],[-1,1],[-1,-1],[1,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1]],[[217,961],[1,-1],[0,1],[1,-1],[0,-1],[1,-1],[1,0],[1,-1],[0,1],[1,0],[1,0],[0,1],[0,1],[-1,1],[-1,0],[0,1],[0,1],[1,0],[-1,1],[-1,0],[1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[1,1],[-1,0],[-1,1],[-1,0],[-1,0],[0,-6],[1,0],[1,0]],[[215,958],[0,-1]],[[215,957],[1,0],[1,0],[1,0],[1,0],[-1,1],[-1,0],[-1,0],[-1,0]],[[216,943],[0,-1]],[[216,944],[0,-1]],[[217,948],[-1,0],[0,-1],[0,-1],[1,0],[1,0],[-1,0],[-1,-1],[1,-1],[1,0],[-1,0],[0,-1],[1,0],[0,-1],[0,1],[-1,0],[0,1],[-1,0]],[[220,949],[0,-1],[-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],[0,-1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,1]],[[222,949],[-1,0],[-1,0]],[[223,949],[-1,0]],[[221,941],[0,-1],[1,0],[-1,0],[-1,0],[0,-1],[0,1],[0,-1],[1,0],[1,0],[-1,0],[-1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,1],[0,-1],[-1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[0,1],[0,-1],[1,0],[0,1],[-1,0],[0,1],[0,-1],[1,1],[-1,0],[1,0],[-1,0],[0,1],[1,-1],[0,1],[1,-1],[0,1],[0,1],[-1,0],[-1,0],[1,0],[0,1],[0,1],[0,1],[1,0],[-1,1],[0,1],[0,1],[-1,0],[-1,0],[0,1],[0,-1],[1,1],[-1,0],[-1,0],[1,0],[-1,0],[-1,0],[0,-1],[1,0],[0,-1],[0,1],[-1,0],[0,-1],[0,1],[-1,0],[0,1]],[[219,941],[1,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]],[[216,941],[1,0],[1,0],[1,0]],[[224,928],[-1,0],[-1,0],[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,-1],[-1,0],[0,1],[-1,1],[-1,0],[0,-1],[-1,0],[1,-1],[1,-1],[1,0],[1,1],[0,-1],[1,0],[-1,0],[-1,0],[0,-1],[1,0],[0,-1],[1,0],[-1,-1],[0,1],[0,1],[-1,-1],[1,-1],[0,-1],[-1,0],[0,1],[0,-1],[-1,0],[-1,0],[0,1],[-1,1],[-1,1]],[[226,928],[-1,0],[-1,0]],[[227,929],[0,-1],[-1,0]],[[228,929],[-1,0]],[[230,921],[-1,0],[0,1],[-1,1],[-1,0],[0,-1],[-1,0],[0,-1],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[-1,0],[-1,0],[1,0],[1,0],[0,1],[0,1],[-1,1],[-1,0]],[[230,920],[0,1]],[[230,920],[0,-1],[0,1]],[[231,920],[-1,0]],[[216,919],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[0,1],[1,0],[0,-1],[1,-1],[1,-1],[1,-1],[0,-1],[1,-1],[0,-1],[1,1],[0,-1],[1,0],[1,1],[0,1],[-1,1],[0,1],[1,0],[-1,0],[0,-1],[1,0],[0,-1],[0,1],[1,-1],[1,0],[1,1],[1,1],[0,1],[0,-1],[0,1],[1,0],[-1,0],[-1,0],[1,0],[0,1],[1,0],[-1,1],[-1,0],[1,0],[0,1],[1,0],[0,1],[-1,1]],[[218,898],[1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,-1],[-1,1],[0,1],[0,-1],[-1,0],[0,1]],[[216,900],[0,-1],[1,0],[0,-1],[0,1],[1,0],[0,1],[0,-1],[0,-1]],[[217,895],[-1,0]],[[216,893],[1,0],[0,2]],[[216,892],[0,-1]],[[216,891],[1,-1],[0,1],[0,1],[-1,0]],[[217,961],[-1,-1],[1,0],[0,1]],[[221,950],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1]],[[220,949],[1,1]],[[217,948],[1,0],[1,1],[1,0]],[[217,895],[0,-1],[1,0],[0,1],[-1,0]],[[218,898],[0,-1],[1,0],[-1,-1],[1,0],[0,1],[-1,1]],[[220,905],[0,-1],[1,0],[0,1],[-1,0]],[[221,894],[-1,0],[0,-1],[0,-1],[1,-1],[0,1],[0,1]],[[221,893],[0,1]],[[221,974],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,1],[0,1],[-1,1],[0,1],[-1,0],[0,-1],[0,1],[-1,0],[-1,-1]],[[221,893],[1,0],[0,1],[-1,0]],[[223,949],[0,1],[-1,0],[-1,0]],[[221,950],[1,0],[0,-1]],[[231,897],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,1],[-1,0],[0,1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[0,1],[-1,-1],[0,-1],[1,-1],[0,1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,-1]],[[232,896],[-1,1]],[[229,890],[1,0],[1,0],[0,-1],[1,0],[0,1],[1,1],[0,1],[1,0],[0,-1],[1,1],[0,1],[-1,0],[0,-1],[0,1],[-1,-1],[0,1],[0,1],[0,1],[-1,0],[0,-1],[1,0],[-1,0],[0,1],[0,1]],[[228,929],[0,1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[1,-1]],[[224,928],[1,0],[1,0],[1,1],[1,0]],[[234,958],[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,0],[0,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[1,0],[-1,0],[0,-1],[1,0],[0,-1],[1,0],[-1,0],[1,0],[1,0],[0,-1],[1,0],[-1,0],[-1,0],[0,-1],[1,0],[1,-1],[-1,0],[1,0],[0,-1],[0,1],[1,0],[1,0],[1,0],[1,0]],[[228,933],[1,0],[0,1],[-1,0],[0,-1]],[[229,951],[1,1],[-1,0],[0,-1]],[[231,922],[0,1],[0,1],[-1,0],[0,-1],[0,-1],[1,0]],[[233,941],[-1,0],[0,1],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[1,1],[0,1],[1,0],[-1,0],[1,0],[0,-1]],[[232,940],[1,1]],[[232,978],[0,-1],[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,0],[1,0],[-1,0],[0,-1],[1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[0,-1],[1,0],[-1,0],[1,-1],[1,0],[-1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[0,-1],[1,0],[1,-1],[0,1],[1,0],[1,0],[-1,0],[1,0],[1,0],[-1,0],[0,-1],[1,0],[1,0],[0,1],[1,1],[0,-1],[1,0],[-1,0],[0,1],[1,0],[0,-1],[1,1],[1,0],[0,-1],[-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,-1],[-1,0],[0,1],[-1,0],[0,-1],[-1,1],[-1,-1],[-1,0],[-1,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[-1,-1],[0,1],[-1,0],[1,-1],[0,-1],[1,0],[0,1],[1,0],[0,-1],[1,0],[1,0],[1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[1,-1],[1,0],[0,-1],[1,0],[0,1],[1,-1],[1,0],[1,0],[1,0],[0,1],[-1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[-1,1],[0,1],[-1,0],[0,1],[1,0],[0,-1],[1,-1],[1,-1],[1,0],[0,1],[0,1],[0,1],[-1,0],[1,0],[1,0],[0,-1]],[[235,978],[-1,0],[-1,0],[-1,0]],[[235,979],[1,0],[1,0],[-1,0],[0,-1],[1,0],[1,0],[0,-1],[-1,1],[-1,0],[-1,0]],[[233,979],[1,0],[1,0]],[[260,971],[-1,0],[-1,0],[0,-1],[0,1],[-1,0],[0,-1],[-1,0],[0,1],[1,0],[0,1],[0,1],[-1,-1],[0,1],[1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[1,0],[1,0],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[-1,-1],[1,-1],[1,0],[0,-1],[-1,1],[0,-1],[-1,1],[-1,0],[0,1],[0,1],[0,-1],[0,1],[-1,0],[0,1],[-1,-1],[0,1],[-1,0],[-1,0],[-1,0],[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],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[0,-1],[0,1],[-1,0],[0,-1],[1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[1,0],[-1,0],[0,-1]],[[260,971],[0,-1],[0,-1],[0,1],[0,1]],[[261,971],[-1,0]],[[262,969],[0,1],[-1,0],[0,1]],[[261,967],[1,1]],[[260,967],[1,0]],[[259,966],[0,1],[1,0]],[[255,962],[0,1],[0,1],[-1,0],[0,1],[0,1],[1,0],[0,1],[0,-1],[0,-1],[0,-1],[1,0],[0,1],[1,0],[0,1],[1,0],[-1,0],[0,1],[1,0],[0,-1],[1,0]],[[254,962],[1,0]],[[263,941],[-1,0],[-1,0],[-1,0],[0,-1],[1,0],[-1,0],[-1,0],[0,-1],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[1,-1],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[0,1],[-1,-1],[1,0],[0,-1],[-1,0],[0,1],[-1,0],[-1,0],[1,0],[-1,0],[1,0],[1,1],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,-1],[0,1],[-1,0],[-1,-1],[0,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,-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],[0,1],[-1,0],[1,0],[1,0],[1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[1,0],[-1,0],[0,1],[1,0],[0,1],[0,1],[-1,1],[-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,0],[-1,0],[0,-1],[1,0],[1,0],[1,-1],[1,1],[0,-1],[-1,0],[-1,0],[1,-1],[1,0],[1,0],[1,0],[0,-1],[0,1],[-1,0],[0,-1],[-1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[0,-1],[1,1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[-1,0],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,-1],[1,0],[1,0],[0,-1],[-1,0],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,1],[1,0],[0,1],[0,-1],[0,-1],[1,0],[1,0],[1,-1],[1,0],[0,1],[1,0],[0,1],[-1,0],[1,0],[0,1],[0,-1],[0,-1],[1,0],[0,1],[0,1],[1,0],[0,-1],[-1,-1],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[-1,0],[0,1],[1,-1],[1,0],[0,1],[0,-1],[2,0],[0,1],[0,1],[0,-1],[0,-1],[1,0]],[[230,921],[0,-1],[1,0]],[[231,922],[0,-1],[-1,0]],[[231,920],[0,1],[0,1]],[[231,897],[0,1],[0,-1]],[[233,897],[-1,0],[-1,0]],[[233,896],[0,1]],[[232,896],[1,0]],[[231,897],[1,0],[0,-1]],[[232,940],[1,0],[0,-1],[-1,-1],[-1,0],[0,-1],[1,0],[0,-1],[0,1],[1,0],[-1,0],[1,-1],[1,0],[0,-1],[1,0],[0,-1]],[[233,941],[0,-1],[1,0],[-1,0],[-1,0]],[[236,942],[-1,-1],[-1,0],[-1,0]],[[235,934],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1]],[[231,909],[1,0],[-1,1],[0,-1]],[[233,979],[-1,0],[-1,-1],[1,0]],[[232,978],[1,0],[1,0],[1,0],[0,1],[-1,0],[-1,0]],[[234,958],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1]],[[233,897],[0,-1],[0,1]],[[233,897],[1,0],[0,-1],[1,0],[0,1],[-1,0],[0,1],[-1,0],[0,-1]],[[235,934],[-1,0],[-1,0],[1,-1],[1,0],[0,1]],[[249,929],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[-1,0],[0,-1],[0,1],[-1,0],[-1,-1],[-1,0],[-1,0],[0,-1],[0,-1],[1,0],[-1,0],[1,-1],[1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[-1,0],[0,-1]],[[237,915],[1,0],[0,1],[1,1],[1,1],[0,1],[-1,1],[-1,0],[-1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,1],[1,1],[0,1],[1,1],[0,1],[1,1],[1,1],[0,1],[1,0],[0,1]],[[235,915],[1,0],[1,0]],[[234,880],[1,0],[0,1],[-1,0],[0,-1]],[[234,913],[1,0],[0,1]],[[235,914],[-1,0],[0,-1]],[[236,942],[1,0],[0,1],[0,1],[-1,0],[0,-1],[0,-1]],[[236,961],[1,-1],[0,1],[-1,0]],[[256,988],[-1,-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,-1],[0,1],[-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,0],[1,0],[1,0],[0,-1],[0,1],[1,-1],[0,1],[1,0],[1,0],[0,1],[0,-1],[1,0],[1,0],[-1,0],[-1,-1],[-1,0],[1,0],[0,-1],[1,1],[1,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,0],[-1,0],[-1,-1],[-1,0],[1,0],[1,0],[0,-1],[0,1],[1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[1,-1],[1,0],[1,0],[1,0]],[[259,988],[-1,0],[-1,0],[-1,0]],[[259,988],[0,-1],[1,0],[-1,0],[0,1]],[[260,988],[-1,0]],[[260,982],[1,1]],[[257,981],[1,1],[1,0],[1,0]],[[251,981],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0]],[[246,956],[0,-1],[0,-1],[1,0],[1,-1],[1,0],[1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0]],[[248,896],[-1,0],[0,-1]],[[247,895],[1,0],[0,1]],[[250,949],[0,1],[-1,0],[-1,0],[0,-1],[1,-1],[1,0]],[[250,948],[0,1]],[[249,896],[0,1],[0,-1],[-1,0]],[[248,896],[1,-1],[0,1]],[[249,929],[1,1],[-1,0],[0,-1]],[[263,928],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,1],[0,-1],[0,-1],[-1,1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[-1,0],[-1,-1],[0,-1],[1,0],[0,-1],[-1,-1],[1,-1],[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],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[1,0],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[1,-1],[1,0],[1,-1],[-1,0],[1,0],[0,-1],[1,0],[0,1],[1,0],[1,0],[-1,0],[0,1],[1,0],[0,-1],[1,0],[0,1],[1,0],[-1,0],[0,-1],[0,-1],[1,-1],[1,0],[0,-1],[1,1],[1,-1],[-1,1],[-1,0],[1,0],[1,0]],[[260,917],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,1],[1,1],[1,1]],[[260,915],[-1,0],[0,1],[0,1],[1,0]],[[263,911],[-1,0],[-1,2],[-1,0],[0,1],[0,1]],[[263,909],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,1]],[[250,892],[-1,0],[1,-1]],[[250,891],[0,1]],[[251,981],[0,-1],[-1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,1],[2,1]],[[260,982],[-1,-1],[-1,0],[-1,0]],[[261,982],[-1,0]],[[259,980],[0,1],[1,0],[1,0]],[[262,955],[-1,0],[0,1],[-1,1],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[0,-1],[1,0],[1,-1],[-1,0],[1,-1],[1,0],[1,0],[-1,0],[1,0],[0,-1],[-1,0],[1,0],[0,-1],[0,1],[-1,0],[-1,0],[0,-1],[1,0],[-1,0],[0,1],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[0,-1],[0,-1],[-1,0]],[[262,954],[0,1]],[[250,948],[1,0],[0,-1],[1,0],[1,1],[0,1],[0,-1],[0,-1],[0,1],[0,1],[0,1],[0,-1],[1,-1],[0,-1],[1,0],[1,0],[0,1],[0,1],[0,-1],[1,-1],[1,0],[1,0],[0,1],[0,1],[1,-1],[-1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,0]],[[254,962],[0,-1],[1,1]],[[259,991],[-1,0],[0,-1],[1,0],[1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1]],[[256,988],[1,0],[1,0],[1,0],[1,0]],[[259,965],[-1,0],[0,-1],[-1,-1],[1,0],[-1,0],[-1,-1],[0,-1],[0,-1],[0,1],[1,0],[0,-1],[-1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,1],[0,-1],[-1,0],[0,-1],[-1,-1],[1,0],[1,0],[0,1],[1,0]],[[260,965],[-1,0]],[[262,966],[0,-1],[-1,0],[-1,0]],[[257,901],[1,-1],[0,1],[0,-1],[1,0],[0,1],[-1,0],[0,1],[-1,0],[1,-1],[-1,0]],[[263,871],[-1,0],[0,-1],[0,1],[-1,0],[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,0],[0,-1],[-1,0],[-1,-1],[0,-1],[0,-1],[1,0],[1,1],[1,0],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[1,1],[1,1],[0,1],[0,1],[1,0],[1,1],[0,1],[0,1],[1,0],[1,1],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[-1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,1],[1,1],[0,1],[0,-1],[1,1],[-1,0],[0,1],[-1,1],[0,-1],[-1,1],[-1,0],[-1,-1],[0,1],[1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,-1],[0,-1],[-1,1],[0,1],[0,1],[0,1]],[[259,980],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[1,0],[0,1],[1,0],[-1,0],[0,-1],[1,0],[1,0]],[[261,981],[-1,-1],[-1,0]],[[260,886],[-1,1],[1,1],[-1,0],[-1,-1],[0,-1],[0,-1],[1,-1]],[[260,885],[0,1]],[[259,884],[0,1],[1,0]],[[262,976],[-1,0],[-1,0],[-1,0],[-1,0],[0,-2],[1,0],[2,-1]],[[261,973],[1,0]],[[261,973],[-1,0],[-1,0],[0,-1],[1,-1]],[[261,971],[1,0]],[[259,966],[0,-1]],[[261,967],[-1,0],[-1,-1]],[[262,967],[-1,0]],[[262,966],[0,1]],[[260,965],[0,1],[1,0],[1,0]],[[263,917],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0]],[[260,915],[1,0],[1,-1],[0,-1],[1,0],[0,-1]],[[262,959],[-1,-1],[1,0]],[[262,922],[-1,-2],[0,-1],[1,0],[0,-1],[1,0]],[[263,922],[-1,0]],[[263,899],[-1,0],[0,-1],[0,-1],[0,-1],[0,1],[0,-1],[0,-1],[1,0]],[[263,895],[0,-1],[0,5]],[[263,923],[-1,0],[0,-1]],[[216,885],[0,-56],[-10,0],[-1,0],[-2,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[0,-30],[0,-2],[0,-48]],[[229,884],[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,-1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[-1,0]],[[229,890],[-1,0],[1,-1],[-1,0],[0,1],[-1,0],[1,-1],[-1,0],[0,-1],[0,1],[-1,0],[-1,0],[1,-1],[0,-1],[0,1],[0,-1],[0,-1],[1,0],[0,-1],[0,1],[1,0],[1,0],[0,-1],[0,1],[1,-1],[0,-1],[-1,0]],[[234,881],[0,1],[-1,-1],[-1,0],[1,1],[-1,0],[0,1],[0,1],[0,-1],[0,1],[0,1],[1,1],[0,1],[0,1],[-1,0],[0,-1],[-1,0],[1,0],[-1,-1],[0,1],[0,1],[1,0],[-1,0],[-1,0],[0,1],[-1,1]],[[234,880],[-1,0],[1,1]],[[235,881],[0,-1],[-1,0],[0,1],[0,-1]],[[232,909],[0,-1],[-1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,1],[0,-1],[0,-1],[0,1],[-1,0],[0,-1],[-1,-1],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[1,0],[1,-1],[1,0],[0,-1],[0,1],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[-1,-1],[0,1],[1,0],[0,1],[-1,0],[0,-1],[-1,0],[0,-2],[-1,-1],[0,-1],[0,-1],[1,1],[1,0],[0,1],[0,-1],[-1,0],[0,1],[1,0],[1,-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],[0,1],[-1,0],[-1,0],[1,-1],[-1,0],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1]],[[231,909],[1,-1],[0,1]],[[232,909],[-1,0]],[[231,910],[1,0],[0,-1]],[[234,913],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[-1,0],[0,1],[-1,0],[0,-1],[-1,0]],[[235,914],[1,0],[1,0],[-1,0],[-1,0]],[[235,915],[0,-1]],[[249,897],[-1,0],[-1,0],[-1,0],[-1,0],[1,0],[0,1],[-1,0],[0,-1],[-1,0],[-1,1],[1,0],[-1,0],[-1,0],[-1,0],[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],[0,1],[0,1],[-1,0],[0,1],[1,0],[-1,0],[-1,1],[-1,0],[0,1],[1,1],[0,1],[-1,0],[0,1],[0,1],[-1,1],[-1,0],[0,1],[-1,0],[0,1],[0,-1],[-1,0],[0,1],[0,-1],[0,1],[0,1]],[[248,896],[1,0],[0,1]],[[248,896],[0,1],[0,-1]],[[247,895],[-1,0],[0,1],[0,-1],[1,0]],[[250,891],[0,-1],[0,-1],[-1,0],[0,-1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1]],[[250,893],[0,-1]],[[259,884],[0,-1],[0,-1],[0,-1],[0,1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[1,0],[0,1],[-1,1],[0,1],[-1,0],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[1,-1],[1,0],[0,1],[-1,1],[0,1],[0,1],[0,1],[-1,0],[-1,1],[-1,1],[-1,0],[0,-1],[-1,0],[0,-1]],[[260,886],[0,-1],[-1,-1]],[[263,891],[-1,0],[0,1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0]],[[247,854],[1,1],[1,0],[0,1],[1,0],[-1,1],[0,1],[1,-1],[0,1],[-1,0],[1,1],[0,-1],[0,1],[0,-1],[1,0],[0,-1],[0,1],[0,-1],[1,0],[0,1],[0,1],[0,-1],[0,-1],[1,0],[1,1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[1,1],[1,2],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,-1],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,2],[-1,0],[-1,1],[-1,0],[-1,0],[1,0],[0,-1],[-1,1],[0,1],[1,-1],[1,0],[1,0],[-1,0],[1,0],[1,0],[1,0],[1,-1],[1,-1],[1,0],[-1,0],[1,0],[0,-1],[1,-1],[1,0],[1,0],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,1],[1,0],[-1,1],[1,0],[0,-1],[0,1],[1,0],[0,-1],[1,0],[0,1],[1,0],[0,-1],[1,-1]],[[243,856],[1,0],[1,-1],[0,1],[1,-1],[1,0],[0,-1]],[[241,843],[0,1],[0,1],[1,-1],[0,1],[-1,0],[0,1],[1,-1],[0,-1],[1,0],[-1,0],[0,1],[0,1],[0,1],[1,0],[1,0],[0,1],[-1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,1],[0,1],[-1,1],[-1,1],[-1,0],[0,1],[-1,0],[-1,0],[0,-1],[0,1],[1,0],[-1,1]],[[241,843],[-1,0],[1,0]],[[241,842],[-1,0],[-1,0],[1,0],[-1,1],[1,0],[0,-1],[1,1]],[[252,806],[-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],[0,1],[0,-1],[-1,0],[0,-1],[0,1],[0,1],[1,1],[0,1],[-1,2],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[-1,-1],[0,1],[1,0],[0,1],[0,1],[0,1],[-1,-1],[0,1],[0,1],[-1,1],[0,1],[0,1],[1,0],[-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,1],[1,1],[0,1],[1,1],[0,1],[-1,0],[1,1],[1,1],[1,1]],[[247,742],[2,1]],[[247,743],[0,-1]],[[246,742],[0,1],[1,0]],[[243,744],[0,-1],[0,1],[1,0],[0,-1],[1,0],[0,-1],[1,0]],[[242,745],[1,0],[0,-1]],[[241,746],[1,0],[0,-1]],[[238,746],[1,0],[1,0],[1,0]],[[237,747],[1,0],[0,-1]],[[236,748],[0,-1],[1,0]],[[236,751],[0,-1],[0,-1],[0,-1]],[[235,751],[0,1],[1,0],[0,-1]],[[235,750],[0,1]],[[206,749],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[2,0],[2,0],[1,0],[1,0],[1,0],[1,0],[1,0],[6,0],[0,1]],[[198,749],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0]],[[196,749],[1,0],[1,0]],[[194,749],[1,0],[1,0]],[[243,856],[-1,0],[-1,0],[0,1],[-1,0],[0,-1],[1,0],[-1,0],[0,1],[-1,0],[1,1],[-1,0],[0,1],[0,-1],[1,0],[0,-1],[1,0],[1,-1],[1,0]],[[563,472],[-1,0],[-1,1],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[1,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,-2],[0,-1],[-1,-1],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[-1,1],[0,1],[0,-1],[-1,-1],[0,-1],[-1,0],[-1,0]],[[575,430],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[-1,0],[0,1],[0,-1],[0,1],[-1,0],[1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[-1,0],[0,1],[1,0],[0,1],[-1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,2],[0,2],[0,1],[-1,1],[0,1],[0,1]],[[575,430],[0,-1],[0,1]],[[562,423],[0,1],[0,1],[0,1],[0,-1],[0,1],[0,1],[1,1],[0,-1],[1,0],[0,-1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[0,-1],[1,0],[1,0],[0,1],[0,1],[1,1],[0,-1],[1,0],[0,-1],[0,1],[1,0],[0,-1],[1,0],[0,-1],[0,1],[1,-1],[0,1],[0,1],[1,-1]],[[561,423],[1,0]],[[551,419],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[1,1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-2],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0]],[[551,419],[0,-1],[0,1]],[[544,411],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[1,0],[0,1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[0,1],[1,0]],[[544,411],[0,-1],[0,-1],[0,1],[0,1]],[[541,559],[0,-1],[0,-4],[0,-2],[0,-1],[0,-1],[0,-1],[1,-1],[0,-2],[0,-1],[1,0],[-1,-1],[0,-1],[1,0],[1,-3],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-4],[0,-2],[-1,-4],[0,-2],[0,-4],[0,-4],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,-3],[-1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[1,0],[-1,-1],[0,-1],[0,-1],[0,-3],[0,-1],[0,-1]],[[566,534],[-2,2],[-1,2],[-2,2],[-1,2],[-1,2],[-2,1],[-1,2],[-2,2],[-1,2],[-1,1],[-1,1],[-1,2],[-1,1],[-1,1],[-2,2],[-1,3],[-1,1],[-2,-2],[-1,-1],[0,-1]],[[563,472],[0,2],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[1,1],[-1,1],[0,-1],[-1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[-1,1],[1,1],[0,1],[1,0],[0,1],[-1,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,-1],[0,1],[1,0],[1,0],[0,3],[0,1],[0,14],[0,2],[0,2],[0,5]],[[537,492],[0,-1],[1,-2],[0,-1]],[[291,69],[0,-1],[1,0],[-1,1]],[[293,62],[-1,0],[0,-1],[0,-1]],[[292,60],[1,1],[0,1]],[[293,48],[-1,0],[0,-2]],[[293,47],[0,1]],[[293,46],[0,1]],[[294,46],[-1,0]],[[294,45],[0,1]],[[294,44],[0,1]],[[293,44],[1,0]],[[292,46],[1,0],[-1,0],[1,0],[0,-1],[0,-1]],[[292,46],[0,-1],[0,-1]],[[293,44],[0,1],[0,1],[-1,0]],[[293,44],[-1,0],[1,0]],[[293,44],[0,1],[0,-1]],[[292,44],[1,0]],[[293,70],[-1,0]],[[293,69],[0,1]],[[292,70],[0,-1],[1,0]],[[292,44],[1,-1]],[[293,43],[0,1]],[[294,89],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-2],[1,0],[1,-1],[0,1],[0,1],[1,0],[0,1],[-1,0],[0,1],[1,0],[-1,1],[0,1],[0,1]],[[294,85],[0,1],[1,0],[0,1],[-1,0],[1,0],[-1,1],[0,1]],[[294,85],[0,-1],[0,1]],[[293,43],[0,-1]],[[294,43],[-1,0]],[[294,42],[0,1]],[[293,42],[1,0]],[[293,42],[0,-1],[1,0]],[[294,41],[0,1]],[[293,48],[1,0]],[[293,49],[0,-1]],[[294,49],[-1,0]],[[294,48],[0,1]],[[294,47],[0,1]],[[294,46],[0,1]],[[293,48],[0,-1],[1,-2]],[[294,70],[-1,0]],[[294,69],[0,1]],[[294,69],[1,0]],[[293,69],[1,0]],[[293,71],[0,-1]],[[294,71],[-1,0]],[[294,70],[0,1]],[[293,50],[0,-1]],[[294,50],[-1,0]],[[294,49],[0,1]],[[293,66],[1,-1]],[[294,66],[-1,0]],[[294,65],[0,1]],[[294,68],[-1,-1],[1,0]],[[295,68],[-1,0]],[[294,67],[1,1]],[[294,38],[-1,0],[1,0]],[[295,37],[-1,1]],[[294,38],[0,-1],[1,0]],[[294,38],[0,-1],[0,1]],[[293,64],[0,-1],[0,-1]],[[294,64],[-1,0]],[[294,63],[0,1]],[[294,62],[0,1]],[[293,62],[1,0]],[[293,43],[1,-1]],[[294,41],[0,-1],[0,-1],[0,1],[-1,0],[1,-1],[0,1],[0,-1],[0,-1]],[[294,41],[0,-1],[0,1]],[[294,42],[1,0],[0,-1],[0,-1],[-1,1]],[[295,44],[-1,-1]],[[296,42],[-1,1],[0,1]],[[296,39],[0,1],[0,1],[0,1]],[[296,38],[0,1]],[[297,37],[-1,1]],[[297,36],[0,1]],[[295,36],[1,0],[0,1],[0,-1],[1,0]],[[295,37],[0,-1]],[[296,40],[-1,-1],[0,-1],[0,-1]],[[295,40],[1,0]],[[295,37],[0,1],[0,1],[0,1]],[[294,67],[0,-1]],[[295,66],[0,1],[-1,0]],[[295,65],[0,1]],[[294,66],[1,0],[0,-1]],[[294,45],[0,1],[0,-1]],[[295,45],[-1,0]],[[294,46],[1,-1]],[[295,47],[-1,0]],[[295,46],[0,1]],[[295,45],[0,1]],[[295,44],[0,1]],[[294,44],[1,0]],[[294,65],[1,0]],[[294,64],[1,0]],[[294,65],[0,-1]],[[295,64],[-1,1]],[[295,54],[-1,0],[0,-1],[1,1]],[[295,36],[-1,0],[1,-1],[-1,0],[0,-1],[1,0]],[[296,35],[-1,0],[0,1]],[[296,34],[0,1]],[[295,34],[1,0]],[[294,63],[1,0]],[[295,64],[-1,-1]],[[295,63],[0,1]],[[294,68],[0,1]],[[295,68],[0,1]],[[295,48],[1,0],[1,0],[0,1],[-1,0],[-1,0],[0,-1]],[[295,54],[0,-1],[1,1],[-1,0]],[[295,61],[1,1]],[[295,62],[0,-1]],[[296,62],[-1,0]],[[296,62],[0,-1]],[[295,61],[0,-1]],[[296,60],[-1,1]],[[295,60],[0,-1],[1,0],[0,1]],[[296,46],[-1,0]],[[296,45],[0,1]],[[296,45],[-1,0]],[[296,64],[-1,0]],[[296,62],[0,1],[0,1]],[[295,63],[1,-1]],[[296,61],[-1,0]],[[296,60],[0,1]],[[297,71],[-1,0],[0,-1],[0,-1],[0,-1]],[[298,70],[-1,1]],[[297,68],[0,1],[0,1],[1,0]],[[296,68],[1,0]],[[297,28],[-1,1],[0,-1],[0,-1],[1,0]],[[297,27],[-1,1],[1,0]],[[296,32],[0,-1]],[[297,32],[-1,0]],[[296,31],[1,0],[0,1]],[[297,38],[0,1],[-1,0]],[[296,38],[1,0]],[[296,34],[0,-1]],[[297,34],[-1,0]],[[297,33],[0,1]],[[296,33],[1,0]],[[297,31],[0,1]],[[298,31],[-1,0]],[[298,30],[0,1]],[[298,30],[0,-1]],[[297,30],[1,0]],[[296,31],[0,-1],[1,0]],[[297,33],[0,-1]],[[298,32],[-1,1]],[[298,31],[0,1]],[[297,32],[1,-1]],[[297,29],[0,-1]],[[298,29],[-1,0]],[[297,28],[1,0],[0,1]],[[297,27],[0,-1]],[[298,26],[0,1],[-1,0]],[[298,24],[0,1],[0,1]],[[297,25],[1,-1]],[[297,25],[0,1],[0,-1]],[[298,25],[-1,0]],[[297,26],[1,-1]],[[297,30],[0,-1]],[[299,29],[-1,1]],[[298,29],[1,0]],[[299,24],[-1,0]],[[299,25],[-1,-1]],[[299,24],[0,1]],[[299,26],[1,-1]],[[299,27],[0,-1]],[[300,25],[-1,2]],[[302,19],[-1,0],[-1,0],[0,1],[-1,1],[0,-1],[1,0],[0,-1],[1,0],[0,-1]],[[302,18],[0,1]],[[303,18],[-1,0]],[[303,17],[0,1]],[[304,17],[-1,0]],[[304,16],[0,1]],[[303,17],[1,-1]],[[302,18],[1,-1]],[[301,18],[1,0]],[[299,24],[0,-1]],[[300,24],[-1,0]],[[300,23],[0,1]],[[301,22],[-1,1]],[[300,23],[0,-1],[1,0]],[[299,23],[1,0]],[[301,22],[0,-1],[0,-1],[1,1]],[[302,21],[-1,1]],[[301,18],[0,-1],[1,1]],[[302,23],[1,0],[0,1],[-1,0],[0,-1]],[[303,16],[0,-1],[1,0],[-1,0],[1,0],[0,-1],[1,0],[0,-1]],[[303,16],[1,0]],[[304,16],[0,-1],[1,0],[-1,0],[0,1]],[[305,16],[-1,0]],[[305,16],[0,-1],[0,1]],[[306,15],[-1,0],[0,1]],[[306,15],[0,-1],[0,1]],[[307,14],[-1,0],[0,1]],[[307,13],[0,1]],[[307,12],[0,1]],[[307,12],[0,1],[0,-1]],[[305,13],[1,-1],[0,1],[1,-1]],[[305,13],[0,1],[1,0],[0,-1],[-1,0]],[[307,12],[0,-1]],[[308,11],[0,1],[-1,0]],[[307,11],[1,0]],[[308,13],[-1,0]],[[309,13],[-1,0]],[[309,12],[0,1]],[[309,12],[-1,0]],[[309,11],[0,1]],[[308,11],[1,0]],[[309,13],[0,-1],[0,-1]],[[311,11],[-1,1],[-1,0]],[[310,10],[1,0],[0,1]],[[309,11],[1,1],[0,-1],[0,-1]],[[309,11],[1,0],[-1,0]],[[312,12],[-1,1],[0,1],[0,-1],[0,-1],[0,1],[0,-1],[0,-1]],[[312,11],[0,1]],[[312,12],[-1,0],[1,0]],[[312,11],[0,-1],[0,1]],[[311,11],[1,0]],[[312,8],[-1,0]],[[312,7],[0,1]],[[311,8],[0,-1],[1,0]],[[313,7],[-1,0]],[[313,7],[1,0]],[[314,6],[-1,0],[0,1]],[[312,7],[0,-1],[1,0],[1,0]],[[312,10],[1,0],[-1,1]],[[312,11],[0,-1]],[[314,6],[1,0]],[[314,7],[0,-1]],[[315,7],[-1,0]],[[315,6],[0,1]],[[316,6],[-1,1]],[[317,6],[-1,0]],[[315,6],[1,0],[1,0]],[[315,6],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[-1,1],[0,1],[-1,0],[1,0],[0,-1],[1,0],[0,1],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[1,0]],[[318,6],[-1,0]],[[319,5],[-1,1]],[[320,4],[-1,0],[-1,1],[-1,0],[1,0],[1,0]],[[321,2],[-1,0],[0,1],[-1,1],[-1,0],[1,0],[1,0]],[[321,2],[0,-1],[0,1]],[[319,6],[0,-1]],[[322,4],[0,1]],[[323,4],[-1,0]],[[323,3],[0,1]],[[322,4],[0,-1],[1,0]],[[320,4],[1,0],[0,-1],[0,1],[1,0]],[[320,5],[0,-1]],[[319,5],[1,0]],[[323,1],[-1,0]],[[323,0],[0,1]],[[322,1],[0,-1],[1,0]],[[322,2],[0,-1]],[[323,1],[0,1],[-1,0]],[[292,60],[0,-1],[0,-1],[0,1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,1],[-1,0],[0,1],[1,0],[1,1],[0,-1],[-1,0],[1,-1],[1,-1],[0,1],[1,0],[0,-1],[0,-1]],[[293,61],[0,-1],[-1,0]],[[293,62],[0,-1]],[[295,61],[-1,1]],[[295,60],[0,-1]],[[295,59],[-1,0],[0,1],[0,-1],[1,0]],[[295,59],[0,-1],[0,1]],[[296,59],[-1,1]],[[296,59],[0,-1],[0,-1],[-1,0],[0,1],[1,0],[0,1]],[[296,60],[0,-1]],[[296,60],[0,-1],[0,1]],[[296,62],[0,1]],[[296,63],[1,0],[-1,0]],[[296,68],[0,-1],[0,-1],[0,-1],[0,1],[1,0],[0,-1],[0,-1],[1,1],[0,-1],[-1,0],[0,1],[-1,0],[0,-1]],[[297,68],[-1,-1],[0,1]],[[298,70],[0,-1],[-1,-1]],[[297,71],[1,0],[0,-1]],[[296,74],[0,-1],[0,-1],[1,0],[0,-1]],[[296,75],[0,-1]],[[298,85],[-1,0],[0,1],[-1,0],[1,-2],[-1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[-1,0]],[[294,89],[1,0],[0,1],[1,0],[-1,0],[0,1],[1,0],[0,-1],[1,0],[0,2],[0,-2],[-1,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0]],[[302,261],[0,-1],[0,-1],[0,-2],[0,-2],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-3],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-2],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[-1,-1],[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,-2],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[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,-2],[0,-1],[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,-1],[0,-1],[0,-1],[-1,0],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[-1,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[0,-2],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[-1,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-2],[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],[1,0],[0,-1],[0,-1]],[[305,267],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[-1,0]],[[312,21],[1,0],[1,-1],[1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,1],[-2,0],[-1,0],[-1,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[1,0],[-1,1],[0,1],[-1,1],[0,-1],[0,1],[0,-1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[-1,0],[1,1],[0,1],[1,0],[0,1],[-1,1],[0,1],[1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[1,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[-1,1],[-1,1],[-1,0],[0,1],[1,0],[1,0],[0,-1],[1,0],[0,1],[0,1],[0,1],[-1,0],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[1,0],[0,1],[-1,0],[0,1],[-1,0],[1,0],[0,1],[-1,0],[0,1],[0,1],[1,1],[-1,0],[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,1],[1,1],[0,1],[0,1],[-1,0],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[-1,0],[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],[1,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[1,0],[0,1],[0,1],[0,2],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[-1,0],[0,1],[0,1],[1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[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],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,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],[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,2],[0,1],[0,1],[0,1],[1,0],[0,1],[1,1],[1,1],[0,2],[1,2],[0,1],[0,1],[0,1],[0,1],[0,1]],[[312,19],[0,1],[0,1]],[[310,18],[-1,0],[0,1],[1,0],[1,0],[1,0]],[[309,13],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1]],[[307,14],[1,0],[0,-1]],[[306,15],[1,0],[0,-1]],[[305,16],[1,0],[0,1],[-1,0],[1,0],[0,1],[-1,0],[1,0],[0,-1],[1,0],[0,1],[1,1],[0,-1],[1,0],[-1,-1],[0,-1],[0,-1],[-1,0],[1,0],[-1,1],[0,1],[0,-1],[0,-1],[0,1],[-1,1],[0,-1],[0,-1]],[[306,15],[0,1],[-1,0]],[[304,16],[1,0],[1,-1]],[[304,17],[-1,1],[1,-1],[0,-1]],[[303,18],[1,0],[0,1],[0,1],[0,1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[-1,0],[0,1],[-1,-1],[-1,0],[0,-1],[1,-1],[0,1],[0,-1],[-1,0]],[[303,19],[0,-1]],[[302,21],[1,0],[0,-1],[0,1],[1,0],[-1,0],[0,-1],[-1,0],[1,-1]],[[302,21],[0,-1],[0,1]],[[301,23],[1,-1],[-1,0]],[[301,23],[0,1],[0,-1]],[[302,23],[-1,0]],[[303,23],[-1,0]],[[303,23],[0,-1],[0,1]],[[303,24],[0,-1]],[[304,25],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[1,0],[0,1],[0,1],[-1,1]],[[304,25],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[1,0],[0,-1],[1,0],[1,-1]],[[303,24],[1,1]],[[302,24],[0,1],[-1,1],[1,0],[0,-1],[1,0],[0,-1]],[[303,24],[0,1],[-1,0],[0,-1]],[[302,24],[0,-1],[0,1],[1,0]],[[302,23],[0,2],[-1,0],[0,1],[1,-1],[0,-1]],[[301,24],[1,-1]],[[301,24],[0,1],[0,-1]],[[301,24],[1,0]],[[300,26],[1,-1],[0,1],[0,-1],[0,-1]],[[300,28],[0,-1],[0,-1]],[[300,28],[0,-1],[1,-1],[-1,1],[0,1]],[[300,28],[0,1],[0,-1]],[[299,28],[1,0]],[[299,28],[0,1]],[[300,32],[-1,0],[0,-1],[0,-1],[0,1],[-1,0]],[[300,32],[0,-1],[0,1]],[[298,31],[1,0],[0,1],[0,1],[0,-1],[1,0]],[[297,34],[1,-1],[1,0],[0,-1],[-1,1],[0,-1]],[[296,35],[1,-1]],[[299,34],[-1,0],[-1,1],[-1,0]],[[297,36],[1,-1],[0,-1],[1,0]],[[297,36],[1,0],[0,-1],[0,1],[-1,0]],[[297,38],[0,-1]],[[297,39],[1,0],[0,-1],[0,-1],[0,1],[-1,0]],[[297,39],[0,1],[0,1],[0,1],[0,-1],[1,0],[-1,0],[0,-1],[1,0],[0,-1],[0,1],[-1,0],[0,-1]],[[296,39],[1,0]],[[296,45],[0,-1],[0,-1],[0,1],[0,-1],[1,0],[-1,0],[0,-1]],[[296,45],[1,0],[0,-1],[-1,1]],[[295,47],[1,-1]],[[295,47],[0,1]],[[295,48],[-1,0]],[[296,46],[0,1],[-1,0]],[[295,48],[1,-1],[0,-1]],[[297,48],[-1,0],[-1,0]],[[297,48],[0,-1],[1,0],[0,-1],[0,1],[0,-1],[-1,1],[0,1]],[[297,48],[1,0],[-1,0]],[[297,49],[0,-1]],[[297,49],[0,1],[0,1],[0,-1],[0,-1]],[[295,49],[1,0],[1,0]],[[295,49],[0,1],[0,-1]],[[294,49],[1,0]],[[295,49],[0,1],[0,1],[-1,0],[0,-1]],[[295,53],[0,-1],[-1,0],[0,-1],[1,-1],[0,1],[1,0],[0,-1],[-1,0],[1,0],[-1,-1]],[[295,53],[0,-1],[0,1]],[[295,54],[1,0],[-1,-1]],[[295,61],[0,-1],[0,1]],[[310,10],[-1,0],[1,-1],[-1,1],[0,-1],[1,0],[1,0],[0,-1]],[[311,10],[-1,0]],[[311,10],[0,-1],[0,1]],[[311,10],[1,0]],[[312,10],[0,-1],[0,1]],[[312,10],[1,-1],[1,0],[-1,0],[-1,0],[0,1]],[[311,11],[0,-1]],[[313,10],[-1,1]],[[313,10],[0,-1],[1,0],[-1,0],[0,1]],[[313,11],[1,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,1],[0,1],[-1,0],[-1,0],[0,1],[0,-1],[1,0],[0,-1],[-1,0],[0,1],[0,1],[-1,0]],[[312,12],[1,0],[0,-1]],[[310,18],[1,0],[0,-1],[0,-1],[0,-1],[1,-1],[0,1],[1,0],[1,0],[0,-1],[-1,-1],[-1,0],[0,-1]],[[312,19],[0,-1],[-1,0],[-1,0]],[[315,18],[-1,1],[0,-1],[-1,0],[0,1],[0,1],[-1,-1]],[[317,6],[0,1],[1,-1]],[[315,7],[1,0],[1,-1]],[[315,7],[0,1],[0,-1]],[[313,7],[0,1],[1,0],[-1,-1]],[[312,7],[1,1],[0,-1]],[[312,8],[1,0],[-1,0]],[[311,8],[0,1],[1,0],[0,-1]],[[312,8]],[[800,530],[0,-1],[0,-2],[0,-1],[1,0],[0,-1],[1,-1],[1,0],[0,-1],[0,1],[0,1],[1,0],[0,1],[1,1],[0,1],[1,0],[-1,0],[0,1],[1,1],[-1,0],[0,1],[0,-1],[1,0],[0,2],[0,1],[1,1],[0,2],[0,1],[-1,-1],[0,1],[-1,0],[-1,0],[0,-1],[-1,0],[0,1],[0,-1],[0,-1],[-1,1],[0,-1],[0,-1],[0,1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1]],[[805,544],[0,-1],[0,1],[0,-1]],[[806,544],[-1,0]],[[805,543],[1,0],[0,1]],[[805,545],[1,-1]],[[806,545],[-1,0]],[[806,544],[0,1]],[[813,557],[1,0],[0,-1],[0,1],[0,1],[-1,-1]],[[823,562],[0,-1]],[[824,562],[-1,0]],[[823,561],[1,0],[0,1]],[[824,563],[0,-1]],[[825,564],[-1,-1]],[[824,562],[1,1],[0,1]],[[827,569],[0,1],[-1,-1],[1,0]],[[831,624],[1,0],[0,1],[-1,0],[1,0],[-1,-1]],[[836,622],[-1,0]],[[837,621],[-1,0],[0,1]],[[837,619],[0,1],[0,1]],[[836,620],[1,0],[0,-1]],[[835,622],[1,-1],[0,-1]],[[837,609],[1,0],[0,1],[-1,0],[0,-1]],[[704,677],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[-1,0],[0,-1],[0,-1],[1,-1],[0,1],[1,0],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[-1,-1],[0,-1],[1,0],[0,-1],[0,-1],[-1,0]],[[723,696],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-2],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[0,-1],[-1,0],[0,2],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,1],[-1,-1],[0,-2],[0,-1],[0,-1],[-1,0]],[[743,747],[-1,0],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[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,-1],[-1,0],[0,-1],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[-1,-1],[-1,0],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[0,-1],[0,-1],[1,0],[0,1],[0,-1],[1,0],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-2],[0,-1],[-1,-1],[1,0],[0,-1],[-1,0],[-1,-1],[1,-2],[0,-1],[0,-1]],[[743,746],[0,1]],[[744,747],[-1,-1]],[[824,752],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-2],[-1,-1],[1,0],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-2],[1,-1],[1,1],[1,0],[1,0],[1,-1],[0,-1],[1,2],[0,1],[1,0],[1,0],[1,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,1],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,-1],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,0],[-1,0],[-1,1],[0,1],[-1,0],[-1,0],[0,1],[0,-1],[-1,0],[0,-2],[0,-1],[0,-1],[-1,0],[0,-1],[1,-1],[0,-1],[0,-1],[1,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,0],[0,1],[0,1],[-1,-1],[-1,0],[-1,1],[-1,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[0,1],[-1,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[0,2],[-1,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[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,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[0,-1],[-1,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[-1,0],[0,2],[0,2],[-1,0],[0,1],[0,1],[-1,1],[0,-1],[-1,1],[0,1],[-1,-1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[1,1],[-1,1]],[[862,746],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[1,0],[0,1],[-1,0],[0,1],[0,1],[-1,1],[0,1],[1,1],[-1,0],[0,-1],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[1,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[0,-1],[0,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,-1],[0,-1],[-1,0],[0,-1],[0,-1],[1,0],[1,-1],[-1,-1],[1,-1],[0,-1],[0,-1],[-1,0],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0]],[[861,702],[1,0],[0,1],[1,0],[0,1],[0,1],[1,1],[0,1],[-1,1],[1,2],[0,1],[0,1],[-1,3],[0,1],[0,1],[0,1],[1,0],[1,1],[0,1],[0,1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[1,2],[-1,1],[0,1],[0,1],[0,1],[1,0],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[0,1],[1,0],[0,1],[0,1],[-1,1],[0,1],[0,1]],[[861,702],[0,-1],[1,0],[0,-1],[0,-1],[0,1],[0,1],[-1,0],[0,1]],[[844,680],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[1,1],[1,1],[0,1],[1,0],[0,1],[1,1],[0,1],[0,1],[1,1],[0,1],[1,1],[0,-1],[0,-1],[1,-1],[1,0],[1,0],[0,1],[0,1],[0,1],[0,1],[1,1],[0,-1],[1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[1,-1],[0,1],[0,2],[1,1],[0,1],[0,-1],[1,0],[0,-1]],[[836,677],[1,0],[0,-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],[1,0],[0,1],[1,1],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[0,-1],[0,1],[1,0],[1,0]],[[837,621],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[1,1],[-1,0],[0,2],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[-1,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[1,1],[-1,1],[0,1],[1,0],[0,-1],[1,0],[0,1],[0,1],[0,1],[1,-1],[0,1],[0,1],[-1,-1],[0,1],[1,0],[0,-1],[0,1],[1,0],[0,1],[1,0],[-1,0],[1,0],[1,1],[0,1],[0,-1],[0,-1],[1,0],[0,1],[0,1],[0,1],[0,-1],[0,1],[0,1],[-1,1],[0,1],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[-1,1],[0,1],[-1,-1],[-1,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[1,0],[0,-1],[0,1],[1,0],[1,0],[-1,0],[1,0],[0,1],[0,1],[0,1],[1,1],[0,1],[1,1],[1,1],[1,0],[0,1],[0,1],[0,1],[1,1],[0,1],[1,0],[0,1],[1,0],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[-1,1],[0,-1],[0,-1]],[[835,622],[1,0],[1,-1]],[[832,624],[0,-1],[1,0],[0,1],[1,0],[0,-1],[1,-1]],[[832,625],[0,-1]],[[831,625],[0,1],[1,0],[0,-1]],[[832,624],[-1,0],[0,1]],[[835,622],[-1,0],[0,1],[-1,1],[0,-1],[-1,0],[0,1]],[[836,620],[-1,0],[0,1],[0,1]],[[837,619],[-1,0],[0,1]],[[837,609],[-1,0],[0,1],[0,1],[-1,0],[-1,-1],[0,-1],[0,1],[-1,0],[0,1],[-1,-1],[1,2],[1,0],[0,-1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1]],[[836,600],[0,1],[1,0],[0,1],[-1,1],[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],[1,0],[0,1],[0,1],[1,0],[-1,0],[0,1]],[[835,596],[1,0],[0,1],[0,1],[0,1],[0,1]],[[835,596],[0,1],[0,-1]],[[831,578],[0,1],[0,1],[-1,0],[-1,1],[1,0],[0,-1],[1,1],[0,1],[1,0],[0,1],[-1,0],[0,-1],[0,1],[0,1],[0,-1],[0,1],[0,1],[0,1],[0,-1],[0,1],[0,-1],[1,0],[0,1],[0,-1],[-1,-1],[1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[-1,0],[1,1],[0,-1],[0,1],[1,0],[0,1],[-1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[0,-1],[1,0],[0,2]],[[831,577],[-1,0],[0,1],[1,0]],[[831,576],[0,1]],[[831,576],[0,-1],[0,1]],[[828,569],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,-1],[1,0],[0,1],[-1,1],[1,0],[0,1],[0,-1],[1,0]],[[827,570],[1,0],[0,-1]],[[827,570],[0,-1]],[[826,569],[0,1],[1,0]],[[827,568],[-1,0],[0,1]],[[825,564],[0,1],[0,1],[1,0],[0,-1],[0,1],[0,1],[1,0],[0,1]],[[824,563],[0,1],[1,0]],[[823,562],[0,1],[1,0]],[[823,561],[-1,0],[1,0]],[[814,556],[1,0],[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],[1,0],[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]],[[814,558],[0,-1],[0,-1]],[[814,558],[0,1],[1,0],[-1,0],[0,-1]],[[813,557],[0,1],[1,0]],[[814,556],[0,1],[-1,0]],[[809,548],[0,1],[1,0],[-1,0],[0,1],[1,-1],[1,0],[0,1],[0,-1],[0,1],[1,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],[0,-1],[1,-2],[0,1],[0,1],[0,1],[0,1]],[[806,545],[0,1],[0,1],[0,-1],[0,1],[0,-1],[1,0],[0,1],[1,0],[0,1],[0,-1],[1,1]],[[805,545],[0,1],[0,-1]],[[805,544],[0,1]],[[805,543],[-1,0],[0,1],[1,0]],[[805,543],[0,-1],[0,1]],[[799,548],[0,1],[1,-1],[0,1],[0,1],[0,-1],[1,-1],[0,1],[0,1],[0,-1],[0,-1],[1,0],[0,-1],[-1,0],[1,0],[1,0],[0,1],[0,1],[0,-1],[0,-1],[0,1],[1,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,1],[0,-1],[1,0],[0,1],[0,1],[1,0],[-1,0],[0,1],[0,1],[0,1]],[[782,554],[1,0],[0,1],[0,1],[1,0],[0,-1],[1,-1],[0,1],[1,1],[0,-1],[0,1],[1,0],[0,-1],[0,-1],[1,0],[0,1],[0,1],[0,1],[0,-1],[1,0],[0,1],[1,0],[0,1],[0,1],[1,1],[1,-1],[0,-1],[1,0],[0,-1],[0,1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,1],[0,-1],[0,1],[0,-1],[0,1]],[[782,554],[0,-1],[0,1]],[[780,547],[0,-1],[0,-1],[1,0],[0,-1],[1,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[1,0]],[[780,548],[0,-1]],[[769,596],[1,0],[0,1],[0,1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,-1],[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,-2],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,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],[0,-1],[1,1],[0,1],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-2],[0,-1],[1,0],[0,1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[1,1],[0,1],[1,0],[0,-1]],[[769,596],[0,-1],[0,1]],[[753,592],[1,0],[1,0],[0,1],[0,-1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[1,1],[0,-1],[0,1],[1,0],[0,-1],[0,1],[0,1],[0,1],[1,0],[0,1],[1,1],[0,-1],[1,0],[1,-1],[0,1],[0,1],[1,0],[0,1],[1,0],[0,-1],[1,0],[-1,-1],[0,-1],[0,-1],[0,1],[1,0],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[1,0],[0,1],[1,0],[0,-1],[1,0]],[[746,591],[-1,-1],[1,-1]],[[744,593],[0,1],[1,0],[0,1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1]],[[724,609],[0,-1],[1,0],[0,1],[0,1],[0,1],[1,0],[1,0],[0,-2],[1,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,1],[0,-1],[1,-1],[0,-2],[0,1],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[1,0],[1,0],[-1,-1],[0,-1],[1,0],[1,0],[0,-1],[1,-1],[0,-1],[0,1],[0,1],[0,-1],[1,-1],[0,1],[0,1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,1],[0,-1],[1,0],[0,1],[1,0]],[[724,610],[0,-1]],[[715,648],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[0,1],[0,1],[-1,0],[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,0],[0,-1],[1,0],[1,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,-1]],[[706,659],[1,0],[1,0],[1,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-2],[0,-1],[1,0],[0,-1],[0,-1],[0,1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[1,0]],[[836,600],[-1,0],[0,1],[0,-1],[1,0]],[[272,484],[1,0],[0,1],[-1,0],[0,-1]],[[282,412],[-1,0],[0,-1],[0,1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,-1],[1,0],[0,-1],[0,-1]],[[284,424],[0,-1],[0,-1],[0,1],[1,1],[0,-1],[-1,-1],[1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-2],[-1,-1],[0,-1],[0,-1],[0,-1],[0,1],[0,-1],[-1,0]],[[284,425],[1,0],[0,-1],[-1,0]],[[283,446],[1,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[-1,0],[0,-1],[0,1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[284,457],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[-1,-1],[1,0],[-1,-2],[0,1],[-1,1],[0,-1],[0,-1],[0,-2]],[[285,454],[0,1],[0,1],[0,1],[-1,0]],[[301,479],[0,1],[1,0],[0,1],[0,2],[-1,1],[-1,0],[1,0],[-1,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[1,1],[-1,1],[-1,0],[0,-1],[0,-1],[-1,0],[1,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[1,0],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[0,1],[-1,1]],[[313,406],[0,3],[0,1],[-1,1],[1,0],[-1,1],[0,1],[-1,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[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,0],[-1,0],[0,1],[1,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,-1],[-1,0],[-1,0],[0,-1],[0,1],[-1,0],[-1,0],[0,-1],[-1,3],[-1,3],[-1,0],[0,1],[-1,0],[-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],[0,2],[0,1],[1,0],[-1,1],[0,1],[0,1],[0,1],[-1,2],[0,2],[0,1],[-1,0],[0,-1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[0,2],[0,1],[1,2],[0,1],[0,1],[1,1],[0,2],[1,1],[0,1],[1,0]],[[313,403],[0,2],[0,1]],[[290,394],[1,-1],[0,-1],[0,1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,-1],[1,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,1],[1,-1],[1,1],[0,1],[1,1],[0,-1],[1,0],[0,-1],[1,1],[1,-1],[0,-1],[1,0],[0,-1],[0,-1],[-1,-4],[0,-1],[0,-1],[0,-1],[-1,0],[1,-1],[0,1],[1,-1],[0,-1],[0,-1]],[[290,394],[0,-1],[0,1]],[[280,404],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[0,1],[1,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,1],[0,-1],[1,0],[1,0],[0,1],[1,-1],[0,-1],[1,-1],[1,0]],[[536,409],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[1,0],[0,1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[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,-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],[-1,1],[0,-1],[0,-1],[-1,0],[-1,1],[0,-1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,-1],[0,-1],[0,-1],[-2,-1],[0,1],[0,-1],[-1,0],[0,1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[-1,0],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[-1,-1],[0,-1],[0,-1]],[[551,418],[0,1]],[[535,360],[1,0],[0,-2],[0,1],[1,0],[0,2],[0,1],[1,-1],[1,1],[0,1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[0,-1],[1,0],[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],[0,1],[0,1],[0,1],[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],[1,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],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1]],[[535,361],[0,-1],[0,1],[0,-1]],[[530,365],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1]],[[261,474],[0,-1],[0,-1],[1,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[1,-1],[0,-1],[0,1],[1,1],[-1,0],[0,1],[0,1],[0,1],[0,-1],[0,-1],[1,0],[0,-2],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,1],[0,1],[-1,1],[1,0],[0,-1],[1,-1]],[[267,472],[0,1],[0,-1],[-1,-1],[0,1],[-1,0],[0,1],[-1,1],[0,-1],[-1,0],[0,1],[-1,0],[0,1],[-1,-1]],[[270,463],[0,1],[-1,0],[0,1],[0,1],[-1,2],[0,1],[0,1],[-1,0],[0,1],[0,1]],[[269,454],[0,-1],[0,-1],[0,2],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[-1,0],[0,1],[0,2],[0,1],[1,0],[0,-1],[0,1]],[[269,455],[-1,0],[0,-1],[1,0]],[[545,731],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[0,1],[-1,-1],[-1,0],[-1,0]],[[546,730],[-1,0],[0,1]],[[552,726],[-1,0],[0,-1],[-1,0],[-1,0],[-1,1],[-1,1],[0,1],[0,1],[-1,0],[0,1]],[[552,719],[0,1],[1,1],[0,1],[-1,0],[0,1],[0,1],[0,-1],[0,1],[0,1],[0,1]],[[548,705],[0,1],[-1,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,-1],[1,0],[0,1],[1,0],[1,0],[1,-1],[1,0],[1,0],[0,1],[1,-1],[1,-1]],[[547,706],[1,-1]],[[547,707],[0,-1]],[[546,708],[1,-1]],[[545,708],[1,0]],[[542,711],[1,0],[1,-1],[0,-1],[0,-1],[0,1],[1,0],[0,-1]],[[542,712],[0,-1]],[[541,714],[1,-1],[0,-1]],[[542,714],[-1,0]],[[541,717],[0,-1],[1,-1],[0,-1],[0,1],[0,-1]],[[541,719],[0,-1],[0,-1]],[[540,721],[0,-1],[1,0],[0,-1]],[[539,721],[0,1],[1,0],[0,-1]],[[539,720],[0,1]],[[539,719],[0,1]],[[537,723],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,1],[1,0]],[[539,720],[0,1],[0,-1]],[[540,717],[0,1],[-1,1]],[[539,719],[0,-2],[1,-1],[-1,1],[1,0]],[[541,719],[0,1],[-1,0],[0,1],[-1,-1]],[[540,720],[0,-1],[1,0]],[[539,720],[1,0]],[[540,717],[1,-1]],[[541,717],[-1,0]],[[542,714],[0,1],[-1,1],[0,1]],[[541,716],[0,-1],[1,-1]],[[542,712],[-1,0],[0,1],[0,1]],[[541,714],[0,-1],[0,-1],[1,-1]],[[545,707],[0,-1],[1,0],[1,0]],[[547,706],[-1,0],[-1,1]],[[545,708],[0,-1]],[[545,707],[1,0],[0,1]],[[547,705],[-1,0],[0,-1],[1,0],[0,1]],[[547,705],[1,-1]],[[548,705],[-1,0]],[[551,701],[0,1]],[[550,702],[0,-1],[1,0]],[[549,703],[1,-1]],[[548,704],[-1,-1],[1,0],[1,0]],[[549,703],[-1,0],[0,1]],[[278,559],[-1,0],[0,1],[0,-1],[-1,1],[0,1],[-1,0],[-1,-1],[0,1],[-1,-1],[0,1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,1],[1,0],[0,-1],[0,1],[1,0],[0,1],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[1,0],[1,-1],[0,-1],[-1,0],[-1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[0,1],[0,-1],[1,0],[1,0],[0,1],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,1],[1,0],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,1],[0,-1],[1,0],[1,0],[1,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[0,-1],[1,0],[0,1],[0,-1],[1,0],[0,1],[1,0],[1,0],[1,0],[1,-1],[1,1]],[[279,557],[-1,1],[0,1]],[[281,556],[-1,0],[0,-1],[-1,0],[0,1],[0,1]],[[283,553],[-1,1],[-1,1],[0,1]],[[284,552],[0,-1],[1,0],[0,-1],[0,1],[-1,0],[-1,1],[0,1]],[[291,538],[1,0],[0,1],[1,0],[1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,1],[-1,1],[0,-1],[-1,0],[0,1],[1,0],[0,1],[0,1],[-1,0],[-1,0],[0,1],[-1,1],[0,-1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,-1],[0,1],[-1,1],[0,1]],[[291,538],[0,-1],[0,1]],[[291,538],[0,1],[0,-1]],[[269,550],[0,-1],[1,0],[0,1],[0,1],[0,1],[-1,0],[0,-1],[0,-1],[0,-1],[0,1]],[[278,559],[0,-1]],[[279,557],[0,1],[0,1],[-1,0]],[[278,558],[1,0],[0,-1]],[[281,556],[1,0]],[[282,556],[0,1],[-1,0],[0,-1]],[[283,555],[0,1],[-1,0]],[[283,555],[-1,0],[1,0]],[[282,556],[0,-1],[1,0]],[[284,552],[0,1],[-1,0]],[[283,553],[1,-1]],[[589,647],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[1,0],[0,1],[1,0],[-1,1],[1,0],[1,0],[0,1],[-1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[-1,0],[-1,-1],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1]],[[541,762],[-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],[-1,0],[0,-1],[0,-1],[0,1],[-1,0],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1]],[[541,763],[0,-1]],[[552,752],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[1,-1],[0,-1],[0,1],[-1,0],[0,-1],[-1,1],[0,1],[0,1],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0]],[[547,746],[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]],[[538,747],[0,-1]],[[523,805],[-1,0],[0,-1],[0,-1],[0,-1],[0,-2],[1,0],[0,-1],[0,-1],[-1,0],[0,1],[0,-1],[0,-1],[0,-1],[1,0],[1,-1],[0,-1],[0,-1],[-1,0]],[[523,804],[-1,0],[1,1]],[[524,804],[0,-1],[-1,0],[0,1]],[[524,805],[0,-1]],[[525,807],[0,-1],[0,-2],[0,1],[1,0],[0,-1],[0,-1],[-1,1],[0,1],[-1,0]],[[528,807],[-1,0],[-1,0],[-1,0]],[[529,800],[0,1],[1,1],[0,1],[-1,0],[-1,1],[0,-1],[0,1],[0,1],[-1,-1],[1,1],[0,1],[0,1]],[[527,796],[0,1],[-1,0],[1,0],[1,1],[-1,0],[0,1],[1,0],[0,-1],[0,1],[0,1],[0,1],[1,1],[0,-1],[-1,0],[1,-1]],[[527,794],[-1,0],[0,1],[1,1]],[[526,793],[0,1],[1,0]],[[527,791],[0,1],[-1,0],[0,1]],[[526,791],[1,0]],[[526,791],[0,1]],[[524,792],[1,-1],[1,0]],[[523,793],[1,0],[0,-1]],[[523,793],[0,1],[0,-1]],[[528,807],[1,1],[0,2],[0,1],[0,1],[-1,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1]],[[524,806],[0,1],[1,0]],[[524,806],[0,1],[0,-1]],[[523,805],[1,1]],[[523,805],[0,-1],[0,1]],[[524,804],[-1,1]],[[523,805],[0,-1],[1,0]],[[524,805],[0,1]],[[523,805],[1,0],[0,-1]],[[527,792],[0,1],[-1,0]],[[528,792],[-1,0]],[[528,791],[0,1]],[[527,791],[1,0]],[[530,793],[0,1],[0,1],[-1,1],[0,1],[0,-1],[0,-1],[0,1],[0,1],[-1,0],[0,-1],[-1,0]],[[529,793],[1,0]],[[527,794],[1,0],[0,-1],[1,0]],[[527,796],[0,-1],[0,-1]],[[528,791],[1,0]],[[529,791],[-1,1]],[[529,792],[0,-1]],[[530,792],[-1,0]],[[530,792],[0,1]],[[530,791],[0,1]],[[529,791],[1,0]],[[529,791],[0,-1],[0,1]],[[535,800],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[0,1],[0,1],[0,-1],[-1,-1],[0,1],[0,1],[-1,0],[1,0],[0,-1],[-1,0],[0,-1],[0,1],[-1,0],[0,-1],[1,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1]],[[535,798],[0,1],[-1,0],[1,0],[0,1]],[[533,792],[0,1],[0,1],[1,0],[0,1],[-1,1],[1,0],[0,1],[1,0],[0,1]],[[532,792],[1,0]],[[532,791],[-1,0],[0,1],[-1,0]],[[532,792],[0,-1]],[[533,791],[-1,0],[0,1]],[[533,790],[0,1]],[[530,791],[0,-1],[1,0],[1,0],[1,0]],[[533,791],[0,1]],[[533,790],[0,-1],[0,1]],[[533,791],[1,1],[0,1],[-1,-1]],[[540,793],[1,0],[0,-1],[1,0],[0,1],[-1,0],[0,1],[-1,-1]],[[617,482],[-1,0],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[0,1],[1,0]],[[617,482],[0,1],[0,-1]],[[619,485],[-1,-1],[0,-1],[0,-1],[-1,0]],[[619,476],[-1,0],[0,1],[0,-1],[0,1],[0,-1],[-1,0],[1,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1]],[[618,473],[1,1],[0,1],[0,1]],[[618,473],[0,-1],[0,1]],[[329,506],[0,-1],[0,-1],[0,-1],[0,1],[1,0],[0,1],[-1,0],[1,0],[-1,0],[1,0],[-1,0],[1,0],[-1,0],[1,0],[-1,0],[0,1],[0,1],[0,-1]],[[300,536],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[-1,0],[0,-1],[0,-1]],[[309,525],[0,1],[1,0],[0,2],[0,1],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[1,-1],[1,1],[-1,0],[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],[-1,1],[0,-1],[-1,0],[-1,0],[0,-1]],[[300,524],[1,0],[0,-1],[0,-2],[1,2],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0],[0,-1],[0,-1],[1,0],[0,1],[0,1],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,-1]],[[280,403],[0,-1],[-1,1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[1,0],[0,-1],[0,1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[1,-1],[-1,-1],[0,-1],[0,-1],[1,-1],[-1,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,-1]],[[290,394],[-1,0],[-1,1],[0,1],[-1,1],[0,-1],[-1,0],[-1,0],[0,1],[0,-1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,1],[0,-1],[0,1],[-1,1],[0,1],[-1,0],[0,1],[0,-1]],[[290,393],[0,1]],[[276,369],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[1,0],[0,1],[0,-1],[1,-1],[0,1],[1,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,-1],[1,1],[-1,1],[1,0],[0,1],[0,1],[1,0],[1,1],[0,1],[1,0],[0,1],[1,0],[1,2],[1,2],[0,2],[1,1],[0,1],[0,2],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[1,0]],[[277,374],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1]],[[277,375],[0,-1]],[[277,375],[0,1],[0,1],[0,1],[0,1],[0,-1],[0,-1],[0,-1],[0,-1]],[[276,375],[1,0]],[[276,375],[0,1],[0,1],[1,0],[-1,-1],[0,-1]],[[276,374],[0,1]],[[276,374],[0,-1],[0,-1],[0,1],[1,1]],[[277,374],[0,1],[-1,0],[0,-1]],[[245,392],[-1,-1],[0,-1],[1,0],[0,1],[0,1]],[[245,392],[0,1],[0,1],[0,1],[-1,-1],[0,-1],[1,1],[0,-1],[0,-1]],[[246,391],[-1,1]],[[245,392],[1,-2],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[1,1],[0,1],[0,1],[0,1],[0,1]],[[246,391],[1,0],[0,1],[0,1],[-1,0],[0,-1],[0,-1]],[[247,389],[1,-1],[0,1],[0,1],[-1,0],[0,-1]],[[247,384],[1,0],[0,1],[-1,0],[0,-1]],[[250,387],[1,1],[0,1],[-1,-1],[0,-1]],[[569,621],[0,1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[1,-1],[0,-2],[0,-5],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-3],[0,-1],[0,-2],[0,-1],[0,-4],[0,-4],[0,-3],[0,-2],[0,-3],[0,-2],[0,-3],[0,-10],[0,-1],[0,-1]],[[594,619],[-1,0],[0,-1],[-1,0],[0,1],[0,-1],[-1,0],[0,1],[-1,-1],[-1,0],[0,1],[0,-1],[-1,0],[0,1],[-1,0],[0,1],[0,-1],[1,2],[0,-1],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,-1],[-1,-1],[0,1],[1,1],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[0,1],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[-1,1],[-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]],[[594,619],[0,1],[0,-1]],[[596,610],[-1,1],[0,2],[0,1],[0,1],[0,1],[-1,3]],[[596,606],[0,1],[0,1],[0,2]],[[596,605],[0,1]],[[595,599],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0]],[[595,596],[0,1],[0,1],[0,1]],[[601,552],[0,1],[-1,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[1,1],[0,1],[0,1],[-1,0],[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,2],[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,1],[-1,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,1],[1,0],[-1,0],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-2],[0,-1],[1,0],[0,-1],[0,-1],[1,-1],[0,-1],[1,-1],[0,1],[1,0],[0,1]],[[569,552],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[2,0],[1,0],[2,0],[0,1],[0,1],[1,0],[0,-1],[-1,-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]],[[251,498],[0,-1],[-1,-1],[0,-1],[0,1],[0,-1],[-1,0],[0,-1],[0,-1]],[[256,491],[0,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],[0,1],[-1,0]],[[256,490],[-1,0],[0,1],[1,0]],[[249,493],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[-1,1],[1,0],[0,-1],[1,0],[0,1],[1,0]],[[523,417],[0,-1],[1,1],[0,1],[0,1],[0,1],[-1,0],[0,-1],[0,-1],[0,-1]],[[526,410],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,1],[1,0],[0,-1]],[[526,401],[1,-1],[0,1],[1,0],[1,0],[1,0],[1,0],[0,3],[0,1],[0,1],[0,1],[0,1],[0,1]],[[606,521],[0,1],[0,1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,1],[-1,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[0,-2],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-5],[0,-1]],[[616,492],[0,1],[-1,0],[0,1],[-1,1],[0,1],[0,1],[-1,2],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,-1],[0,-1],[1,0],[-1,-1],[0,1],[0,1],[0,1],[-1,1],[1,0],[-1,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,2],[-1,0]],[[616,491],[0,1]],[[619,485],[0,1],[-1,0],[0,-1],[0,1],[0,1],[-1,1],[0,1],[0,1],[-1,1]],[[617,483],[0,-1]],[[600,496],[1,0],[1,0],[0,1],[1,0],[0,-1],[0,-1],[1,2],[0,2],[0,1],[1,-1],[0,-1],[1,-1],[1,0],[0,1],[0,1],[1,0],[0,-1],[0,-1],[0,1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,-1]],[[564,818],[-1,0],[-1,0],[-1,0],[0,-1],[0,1],[-1,0],[0,-1],[1,0],[0,-1],[-1,0],[1,-1],[0,-1],[0,-1],[0,1],[1,1],[0,1],[1,-1],[0,1],[1,0],[0,1],[1,0],[-1,0],[0,1]],[[561,821],[0,-1],[1,0],[0,-1],[1,0],[0,1],[0,-1],[0,1],[1,0],[-1,1],[-1,1],[0,-1],[-1,0]],[[564,818],[1,0]],[[565,818],[-1,1],[0,-1]],[[578,824],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[0,-1],[-1,1],[0,-1],[0,1],[0,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1]],[[576,810],[0,1],[0,1],[1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[1,0],[0,1]],[[567,813],[1,0],[0,1],[1,0],[1,0],[1,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,1],[1,0],[1,-1]],[[568,814],[-1,0],[0,-1]],[[565,818],[1,-1],[0,-1],[1,0],[0,1],[1,0],[0,-1],[0,-1],[0,-1]],[[565,821],[0,-1],[1,0],[0,-1],[-1,0],[0,-1]],[[600,496],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-3],[0,-1],[0,-1],[-1,-1],[-1,-3],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[-1,0],[0,1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-3],[0,-1],[0,-2],[-1,-1],[0,-1],[0,1],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,-1],[-1,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-2],[1,-2]],[[618,473],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[1,0]],[[618,472],[0,1]],[[615,422],[1,1],[1,0],[0,1],[1,0],[0,1],[1,1],[0,1],[1,1],[1,0],[0,1],[1,0],[0,-1],[1,0],[1,0],[0,1],[1,3],[1,2],[1,2],[0,1],[1,4],[1,3],[2,4],[1,1],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,1],[-1,1],[-1,0],[-1,1],[-1,1],[-2,2],[-1,2],[0,1],[-1,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[1,1],[0,1]],[[615,422],[0,-1],[0,1]],[[599,426],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,-1],[1,-3],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[0,1],[0,1],[1,2],[1,1],[0,1],[1,0],[0,1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,1],[1,0]],[[554,829],[1,0]],[[554,830],[0,-1]],[[555,829],[0,1],[0,1],[1,-1],[0,1],[-1,0],[0,-1],[-1,0]],[[555,829],[1,-1],[0,1],[-1,0]],[[580,894],[-1,0],[1,1],[0,1],[1,1],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[0,-1],[-1,0],[0,-1],[0,-1],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,1],[-1,1],[-1,-1],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[1,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[1,-1],[0,-1],[1,-2]],[[577,832],[1,1],[0,1],[1,0],[0,1],[1,1],[0,1],[1,0],[0,1],[1,1],[1,1],[0,1],[1,1],[0,1],[1,1],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[-1,1],[0,1],[0,1],[-1,0],[-1,1],[-1,0],[0,1],[-1,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],[-1,0],[0,1],[0,1],[1,0],[0,1],[-1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,1],[0,1],[0,1],[-1,0],[0,1],[1,0],[1,2],[0,1],[1,0],[0,1],[0,1],[-1,1],[0,1],[-1,1],[-1,0],[-1,1],[0,1],[0,1],[0,1],[0,1],[1,0],[-1,0],[0,1],[1,1]],[[566,828],[1,0],[0,1],[1,-1],[0,1],[1,0],[1,1],[1,0],[0,1],[0,-1],[1,0],[-1,0],[1,0],[0,1],[0,-1],[0,1],[1,0],[0,1],[1,0],[0,1],[0,-1],[0,1],[0,-1],[-1,0],[0,-1],[1,0],[0,1],[1,0],[0,-1],[0,1],[1,0],[1,0]],[[565,828],[1,0]],[[565,828],[0,1],[0,-1]],[[564,828],[0,-1],[-1,0],[1,0],[1,1]],[[564,828],[1,0]],[[563,829],[1,0],[0,-1]],[[563,830],[0,-1]],[[563,830],[0,1],[1,0],[0,-1],[-1,0]],[[562,830],[1,0]],[[562,831],[0,-1]],[[562,831],[1,0],[-1,0]],[[561,831],[1,0]],[[560,832],[1,0],[0,-1]],[[560,832],[0,1],[0,-1]],[[559,851],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,1],[-1,0],[0,-1],[1,0],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0]],[[559,851],[1,0],[0,-1],[-1,1]],[[559,852],[0,-1]],[[563,856],[0,-1],[0,-1],[0,1],[-1,0],[0,-1],[0,-1],[0,1],[-1,-1],[1,0],[0,-1],[-1,0],[0,-1],[0,1],[-1,0],[0,-1],[0,1],[-1,0]],[[569,864],[-1,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,1],[0,-1],[0,-1],[-1,0],[-1,0]],[[567,870],[1,0],[0,1],[0,-1],[0,-1],[1,0],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,1]],[[559,852],[-1,0],[0,-1],[1,0]],[[561,830],[-1,0],[0,-1],[1,1]],[[560,832],[0,-1],[1,0]],[[561,830],[1,0]],[[561,831],[0,-1]],[[562,830],[0,1],[-1,0]],[[562,830],[0,-1],[0,-1],[0,1],[1,-1]],[[563,829],[0,1],[-1,0]],[[563,828],[0,1]],[[569,864],[0,1],[-1,0],[0,-1],[1,0]],[[490,747],[0,-1],[-1,0],[0,1],[0,-1],[0,1],[-1,0],[-1,-1],[-1,0],[0,-1],[0,-1],[1,0],[1,0],[-1,0],[0,-1],[1,0],[0,-1],[-1,0],[-1,0],[1,0],[0,-1],[0,-1],[1,0],[0,1],[1,-1],[1,0],[1,-1],[0,-1],[0,1],[0,-1],[0,1],[1,0],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[1,0],[1,0],[0,1],[0,-1],[1,0],[-1,0],[-1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,-1],[0,-1]],[[507,764],[-1,0],[-1,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[0,-1],[0,-1],[1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[-1,-1],[0,1],[0,1],[0,1],[-1,0],[-1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[-1,0],[-1,0],[0,1],[0,-1],[0,-1],[0,1],[-1,0],[-1,-1],[0,1],[-1,2],[-1,0],[0,-1]],[[517,752],[-1,0],[0,1]],[[521,739],[-1,0],[0,1],[1,1],[0,1],[-1,0],[1,0],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[-1,0],[-1,1],[-1,0],[-1,0],[0,1],[0,1],[-1,0]],[[521,738],[0,1]],[[519,726],[0,1],[0,1],[-1,0],[0,2],[-1,0],[0,-1],[0,-1],[-1,0],[0,1],[1,1],[-1,0],[0,1],[1,1],[0,1],[1,1],[0,1],[1,1],[0,1],[0,1],[0,-1],[1,0],[0,1],[1,0]],[[520,711],[1,1],[0,1],[0,1],[-1,0],[0,-1],[-1,1],[0,1],[-1,1],[1,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[-1,1],[0,1],[1,0]],[[508,701],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[1,1],[0,1],[1,0],[0,-1],[0,1],[0,-1],[1,0],[1,0],[-1,1],[1,0],[0,-1],[0,1],[1,0],[0,-1],[-1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[-1,0],[1,0],[0,-1],[1,0],[-1,1],[1,0],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1]],[[504,701],[1,0],[0,-1],[0,1],[1,0],[0,-1],[1,0],[0,1],[1,0]],[[495,708],[0,-1],[1,0],[-1,-1],[0,-1],[1,0],[0,1],[0,-1],[1,0],[0,-1],[1,-1],[0,1],[1,0],[0,-1],[1,0],[1,0],[0,1],[1,0],[1,-1],[0,-1]],[[496,726],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,1],[-1,1],[0,1],[0,1],[0,1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,1],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-2],[0,-1],[0,-1],[0,-1]],[[496,728],[1,-1],[-1,-1]],[[496,728],[-1,1],[0,-1],[1,0]],[[523,699],[1,-1],[-1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[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,0],[0,-1],[0,-1],[-1,-1],[-1,0],[0,-1],[0,-1],[0,-1]],[[349,435],[0,-1],[0,-1],[0,-1],[-1,-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],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1]],[[356,426],[0,1],[-1,1],[0,-1],[0,-1],[0,-1],[0,1],[0,1],[0,1],[-1,2],[-1,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[-1,1],[0,1],[0,-1],[-1,0]],[[348,411],[0,-1],[1,-1],[0,1],[1,0],[0,1],[1,-1],[0,1],[0,-1],[1,0],[1,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1]],[[524,388],[-1,1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1]],[[524,389],[0,-1]],[[526,401],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[-1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[-1,-1],[0,1],[-1,0],[0,1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1]],[[530,366],[0,-1],[0,1],[0,1],[1,1],[0,-1],[1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[1,0],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,-1],[1,0],[0,1],[0,-1],[2,1],[0,1],[0,1],[0,1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[1,-1],[1,0],[0,1],[0,1],[1,-1],[0,-1],[0,-1],[0,1],[1,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,0],[0,1],[0,1],[0,-1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[0,-1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[525,381],[0,-1],[1,-1],[-1,0],[0,1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,1],[0,-1],[0,-1],[0,1],[-1,0],[0,1],[0,-2],[1,0],[0,-1],[1,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,-1]],[[524,384],[0,-1],[1,-1],[0,-1]],[[525,382],[0,-1],[0,1],[-1,2]],[[525,382],[0,1],[0,-1]],[[524,384],[1,-1],[0,1],[0,-1],[0,-1]],[[456,491],[0,-1],[-1,0],[-1,-1],[1,0],[-1,0],[-1,1],[0,-1],[0,-1]],[[456,491],[1,0],[0,-1],[-1,1]],[[454,491],[0,-1],[0,-1],[0,1],[1,0],[1,0],[0,1]],[[453,488],[0,-1],[0,1],[2,0],[1,0],[0,1],[1,1],[0,1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,1],[0,1],[-1,0],[0,-1],[-1,1],[0,1],[0,-1],[-1,1],[0,1],[-1,0],[0,-1],[0,1],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0]],[[594,620],[0,-1],[0,1]],[[594,620],[1,0],[0,1],[0,1],[0,-1],[-1,-1]],[[628,696],[0,1],[-1,0],[-1,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,1],[0,1],[-1,0],[-1,1],[0,1],[-1,0],[0,1],[0,-1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[0,-1],[-1,0],[0,-1]],[[620,691],[0,-1],[0,1]],[[615,694],[0,-1],[1,0],[1,0],[1,1],[0,-1],[1,-1],[0,-1],[1,0]],[[610,707],[1,0],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[516,765],[0,-1],[0,-1],[0,-1]],[[519,781],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[-1,0],[1,-1],[-1,0],[-1,0],[0,-1],[0,1],[-1,-1],[0,-1],[1,-1],[0,-1],[0,-1],[-1,0]],[[523,791],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[-1,0],[-1,-1],[1,0],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[1,0],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[0,1],[-1,0],[1,0],[0,-1],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[-1,-1],[0,-1]],[[523,791],[0,-1],[0,1]],[[523,793],[0,-1],[0,-1]],[[524,792],[-1,0],[0,1]],[[527,791],[-1,0],[-1,0],[-1,1]],[[530,788],[0,-1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,-1],[0,1],[0,1],[0,1]],[[536,788],[-1,0],[-1,0],[0,-1],[0,1],[1,0],[-1,0],[0,-1],[-1,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,1],[-1,0],[0,-1],[0,1],[-1,0],[1,1],[0,1],[0,1]],[[536,787],[0,1]],[[538,786],[-1,0],[-1,1]],[[538,784],[0,1],[0,1]],[[539,783],[-1,0],[0,1]],[[541,763],[0,1],[0,1],[0,1],[0,1],[-1,0],[1,1],[-1,0],[0,1],[0,1],[1,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[1,1],[0,1],[-1,2],[0,1]],[[524,739],[1,0],[1,-1]],[[524,739],[0,1],[0,-1]],[[521,738],[1,0],[0,1],[1,-1],[0,1],[0,1],[1,0],[0,-1]],[[521,739],[0,-1],[0,1],[0,-1]],[[516,756],[1,0],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[0,-1]],[[517,757],[-1,-1]],[[530,788],[1,0],[0,1],[-1,0],[0,-1]],[[536,787],[1,0],[1,1],[0,-1],[0,1],[-1,0],[0,1],[1,0],[-1,0],[0,1],[-1,0],[0,-1],[1,0],[-1,0],[0,-1]],[[538,785],[0,1],[0,-1]],[[539,784],[0,1],[-1,0]],[[538,784],[1,0]],[[538,785],[0,-1]],[[538,785],[1,0],[-1,0]],[[492,461],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-3],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-2],[-1,-2],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-2],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0]],[[503,437],[0,1],[-1,0],[0,1],[-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],[0,1],[-1,1],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,-1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1]],[[491,430],[1,-1],[1,0],[0,-1],[0,-1],[1,0],[0,1],[0,1],[1,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],[0,1],[-1,0],[1,0],[0,-1],[0,-1],[1,0],[0,1],[0,1],[1,0]],[[555,682],[-1,0],[0,-1],[0,-1],[0,-1],[1,0]],[[555,679],[-1,2],[1,0]],[[555,679],[0,-1],[0,1]],[[563,693],[-1,0],[0,-1],[0,-1],[-1,0],[0,1],[-1,-1],[0,-1],[-1,-1],[0,1],[0,-1],[-1,0]],[[572,695],[0,1],[0,-1]],[[572,689],[0,-1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[-1,0]],[[568,689],[0,1],[1,0],[1,0],[0,-1],[1,0],[1,0]],[[564,676],[0,1],[0,1],[-1,1],[0,1],[0,1],[-1,2],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,-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,-1],[0,1],[-1,1],[-1,0],[0,1],[0,1],[0,1],[1,0],[0,-1],[1,1],[0,1],[1,0],[0,-1]],[[563,676],[1,0]],[[563,676],[0,1],[0,1],[1,0],[0,-1],[-1,0],[0,-1]],[[563,675],[0,1]],[[564,673],[-1,0],[0,1],[-1,0],[0,1],[1,0]],[[565,672],[-1,0],[0,1]],[[566,670],[0,1],[-1,0],[0,1]],[[565,668],[0,-1],[1,0],[0,-1],[0,1],[0,1],[0,1],[0,1]],[[564,669],[1,0],[0,-1]],[[564,668],[0,1]],[[563,657],[1,0],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[1,-1],[0,-1],[0,-1],[1,0],[0,1],[1,0],[0,1],[-1,0],[0,1],[0,-1],[0,1],[-1,1],[0,1],[1,0]],[[558,667],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[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,-1],[0,-1],[0,-1]],[[564,669],[-1,0],[0,-1],[-1,1],[-1,1],[-1,1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1]],[[557,674],[1,-1],[0,-1],[0,-1],[1,1],[0,-1],[1,0],[0,1],[0,-1],[1,0],[0,1],[1,0],[0,-1],[0,-1],[1,0],[1,0],[0,-1]],[[557,675],[0,-1]],[[557,675],[0,1],[0,1],[0,-1],[1,0],[0,-1],[-1,0]],[[555,679],[1,-1],[0,-1],[1,-1],[0,-1]],[[555,681],[0,-1],[0,-1]],[[556,672],[0,-1],[0,-1],[0,-1],[1,0],[0,2]],[[557,671],[-1,0],[0,1]],[[557,675],[-1,-1],[0,-1],[1,0],[0,1]],[[556,672],[1,-1]],[[557,671],[0,1],[-1,0]],[[558,667],[-1,0],[0,1],[-1,-1],[1,0],[0,-1],[0,1],[1,-1],[0,1]],[[564,676],[-1,0],[0,-1]],[[566,671],[0,2],[-1,0],[0,1],[-1,1],[0,1]],[[566,670],[1,-1],[0,-1],[0,1],[0,1],[0,-1],[0,1],[-1,1]],[[564,673],[1,0],[0,-1]],[[563,675],[1,0],[0,-1],[0,-1]],[[564,649],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,1],[1,0],[1,0],[0,1],[0,1],[0,-1],[-1,0],[0,-1],[0,1],[0,1],[-1,0],[-1,0],[-1,1],[-1,-1],[-1,1],[0,1],[0,-1],[-1,0],[0,1],[0,1],[0,-1],[0,-1],[0,1],[-1,-2]],[[567,675],[0,-1],[1,0],[-1,1],[0,1],[0,-1]],[[568,689],[-1,-1],[1,0],[0,-1],[0,1],[0,1]],[[569,666],[0,1],[0,1],[-1,0],[0,-1],[0,-1],[1,0]],[[569,683],[0,-1],[1,0],[0,-1],[0,1],[0,1],[-1,0]],[[569,659],[1,0],[0,1],[-1,0],[0,-1]],[[570,686],[1,0],[-1,1],[0,-1]],[[572,673],[-1,0],[0,-1],[0,-1],[0,-1],[1,0]],[[572,670],[0,1],[0,1],[0,1]],[[572,679],[0,-1],[-1,0],[0,-1],[0,-1],[1,0],[0,1],[0,-1],[1,-1],[0,1],[0,1]],[[573,678],[-1,0],[0,1]],[[573,678],[-1,0],[1,0]],[[573,677],[0,1]],[[571,665],[1,0],[0,1],[-1,-1]],[[572,658],[1,0],[-1,1],[0,-1]],[[573,666],[1,0],[0,1],[-1,0],[0,-1]],[[574,651],[0,-1],[1,0],[0,1],[0,1],[0,1],[0,-1],[-1,-1]],[[576,653],[1,0],[0,1],[0,1],[0,1],[1,1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-2]],[[422,905],[-1,-1],[0,-1],[1,0]],[[423,906],[0,-1],[-1,0]],[[424,907],[0,-1],[-1,0]],[[426,907],[-1,0],[-1,0]],[[427,908],[0,-1],[-1,0]],[[428,908],[-1,0]],[[426,904],[1,0],[1,1],[1,0],[0,1],[0,1],[-1,0],[0,1]],[[426,904],[1,1],[0,-1],[-1,0]],[[424,904],[1,0],[1,0]],[[422,903],[1,1],[1,0]],[[431,925],[-1,0],[-1,0],[0,-1],[-1,-1],[1,0]],[[435,924],[-1,0],[-1,0],[-1,1],[-1,0]],[[435,922],[0,1],[1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,1]],[[435,922],[0,1],[0,-1]],[[431,922],[1,0],[1,0],[1,0],[1,0]],[[429,923],[1,0],[1,-1]],[[431,921],[-1,0]],[[430,921],[-1,0],[1,-1],[0,1]],[[431,922],[0,-1]],[[436,920],[1,0],[1,0],[1,0],[-1,0],[0,1],[1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0]],[[435,921],[1,0],[0,-1]],[[431,921],[1,0],[1,0],[1,0],[1,0]],[[436,920],[-1,0],[0,1]],[[431,921],[1,-2],[1,0],[0,-1],[1,-1],[1,0],[1,-1],[1,0],[0,-1],[1,0],[0,1],[0,1],[-1,0],[-1,0],[0,1],[1,0],[1,0],[0,-1],[0,1],[0,1],[-1,0],[-1,0],[0,1]],[[439,932],[0,-1],[-1,0]],[[443,931],[0,1],[-1,0],[-1,0],[-1,0],[-1,0]],[[438,931],[1,-1],[1,0],[1,0],[1,0],[1,0],[0,1]],[[442,936],[0,-1],[1,-1],[1,0]],[[444,934],[0,1],[1,0],[-1,0],[0,1],[-1,0],[0,-1],[0,1],[1,0],[-1,0],[0,1],[0,-1],[-1,0]],[[444,941],[0,-1]],[[445,940],[0,1],[0,1],[-1,-1]],[[444,940],[1,0],[1,0],[-1,0]],[[446,934],[0,-1],[1,0]],[[447,933],[0,1],[-1,0]],[[447,937],[0,-1],[1,0],[1,0],[1,0],[1,0],[0,1],[-1,0],[1,0],[-1,0],[-1,0],[0,1],[1,0],[0,1],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[0,-1],[0,-1]],[[437,930],[-3,2],[-5,-1],[-2,-1],[-3,-2],[-2,-2],[-1,-4],[-1,-3],[-1,-3],[0,-3],[-1,-4],[0,-6],[0,-2],[2,0],[1,0],[1,0]],[[439,928],[-1,1],[-1,0],[0,1]],[[435,924],[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],[0,1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[1,-1]],[[431,925],[0,1],[-1,0],[0,1],[-1,0],[-1,1],[0,1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[-1,0],[0,1],[1,0],[0,1],[1,0],[0,-1],[1,0],[1,0],[1,-1],[1,0],[1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[0,-1],[1,-1],[1,0],[0,-1]],[[429,924],[0,1],[1,0],[1,0]],[[428,923],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[0,1],[0,1],[-1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[-1,0],[-1,0],[-1,1],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0]],[[429,923],[-1,0]],[[430,921],[0,1],[-1,0],[0,1]],[[429,921],[1,0]],[[429,921],[-1,0],[0,-1],[-1,0],[-1,-1],[0,1],[-1,0],[1,0],[-1,1],[-1,0],[0,-1],[-1,1],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,1],[1,0],[1,0]],[[430,920],[-1,0],[0,1]],[[427,908],[1,1],[1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[1,0],[1,0],[1,0],[1,1],[-1,0],[-1,1],[-1,0],[-1,0],[0,1],[1,0],[-1,0],[0,1],[1,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,1],[2,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,1],[0,1],[0,1],[0,-1],[0,-1],[0,-1],[0,1],[1,0],[0,-1],[1,0],[1,1],[-1,1],[0,-1],[0,1],[1,0],[-1,1],[0,1],[0,1],[-1,0],[-1,0],[1,0],[1,0],[0,1],[-1,0],[1,0],[0,1],[0,1],[-1,0],[-1,0],[0,-1],[0,-1],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0],[-1,0],[-1,0],[0,-1],[-1,0],[1,0],[0,1],[-1,0],[0,-1],[-1,0],[0,1],[1,0],[1,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[-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,1],[1,0],[1,0],[1,0],[1,0],[0,1],[0,1],[-1,0]],[[426,907],[0,1],[1,0]],[[423,907],[1,0]],[[422,907],[0,1],[0,1],[0,-1],[1,0],[0,-1]],[[422,907],[1,0],[-1,0]],[[422,907],[-1,0],[1,0]],[[422,906],[0,1]],[[422,905],[0,1]],[[421,904],[1,1]],[[418,903],[0,1],[1,0],[1,0],[1,0]],[[421,904],[-1,0],[-1,0],[0,-1],[-1,0]],[[422,903],[-1,0],[0,1]],[[424,904],[-1,-1],[-1,0]],[[425,904],[-1,-1],[0,1]],[[426,904],[-1,0]],[[425,902],[1,1],[0,1]],[[424,902],[0,1],[1,0],[0,-1]],[[422,901],[1,1],[1,0]],[[439,928],[0,-1],[0,-1],[0,1],[0,1]],[[343,927],[-1,0],[-1,0],[0,-1],[1,0]],[[342,926],[0,1],[1,0]],[[344,928],[-1,0],[-1,1],[0,-1],[1,0],[1,0]],[[342,926],[1,0]],[[343,927],[-1,-1]],[[343,926],[0,1]],[[344,925],[-1,-1],[1,0]],[[344,924],[0,1]],[[344,926],[-1,0]],[[345,925],[0,1],[-1,0]],[[344,926],[1,-1]],[[344,924],[1,0]],[[345,925],[-1,0]],[[345,924],[0,1]],[[344,920],[0,-1],[1,0]],[[345,920],[-1,0]],[[345,921],[0,-1]],[[346,921],[-1,0]],[[347,921],[-1,0]],[[346,920],[1,1]],[[346,919],[0,1]],[[345,919],[1,0]],[[346,917],[-1,0],[0,-1],[1,0]],[[346,916],[0,1],[1,0],[0,1],[-1,0],[0,-1]],[[345,924],[1,1],[-1,0]],[[346,919],[1,1]],[[347,920],[-1,0]],[[348,903],[-1,1],[0,-1],[1,0]],[[348,903],[0,-1],[-1,0],[0,-1],[1,-1],[1,0],[-1,0],[-1,0],[0,-1],[1,0],[0,-1],[0,1],[-1,0],[0,-1],[0,-1],[1,0],[1,0],[1,0],[0,1],[0,-1],[-1,0],[1,0],[0,-1],[0,1],[1,0],[0,-1],[-1,0],[-1,0],[1,0],[0,-1],[1,0],[1,1],[1,0],[1,0],[1,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,1]],[[349,903],[-1,0]],[[352,990],[-1,0],[-1,0],[-1,0],[0,-1],[1,0],[0,-1],[1,0]],[[354,989],[-1,0],[-1,0],[0,1]],[[356,987],[0,1],[-1,0],[-1,1]],[[354,987],[1,0],[1,0]],[[352,988],[1,0],[1,-1]],[[351,988],[1,0]],[[349,909],[0,-1],[1,0],[1,0],[0,1],[0,1],[-1,0],[0,-1],[-1,0]],[[353,912],[-1,0],[-1,0],[1,-1]],[[352,911],[0,1],[1,0]],[[352,886],[0,1],[-1,0]],[[351,887],[0,-1],[1,0]],[[352,869],[0,-1]],[[353,869],[-1,0]],[[352,868],[1,1]],[[353,889],[-1,1]],[[352,889],[1,0]],[[352,890],[0,-1]],[[353,909],[1,0],[0,1],[-1,0],[-1,0]],[[352,910],[0,-1],[1,0]],[[354,891],[-1,0],[-1,0],[0,-1]],[[354,891],[1,0],[-1,0]],[[352,890],[1,1],[1,0]],[[352,990],[0,-1],[1,0],[1,0],[-1,0]],[[353,989],[0,1],[-1,0]],[[354,890],[1,0]],[[354,891],[0,-1]],[[355,891],[-1,0]],[[355,891],[0,-1]],[[355,890],[1,1],[-1,0]],[[355,887],[-1,0],[1,0]],[[356,888],[1,0],[-1,0],[-1,-1]],[[356,887],[0,1]],[[355,887],[1,0]],[[356,907],[-1,0],[1,-1]],[[356,906],[0,1]],[[355,887],[0,-1],[0,1]],[[356,887],[1,0]],[[356,906],[-1,0],[1,-1]],[[356,905],[0,1]],[[356,859],[1,0]],[[357,860],[-1,-1]],[[357,859],[0,1]],[[358,900],[0,-1],[-1,0],[0,-1],[0,-1],[1,0]],[[357,900],[0,-1],[1,1]],[[359,899],[-1,1],[-1,0]],[[358,898],[0,1],[1,0]],[[358,897],[0,1]],[[358,861],[-1,-1]],[[358,860],[0,1]],[[357,859],[1,0],[0,1]],[[362,991],[-1,0],[1,0]],[[364,990],[0,1],[-1,0],[-1,0]],[[363,990],[1,0]],[[362,991],[1,0],[0,-1]],[[362,994],[0,-1],[1,0],[1,0],[1,0],[-1,0],[0,1],[-1,0],[-1,0]],[[373,991],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[1,0],[1,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0]],[[374,990],[-1,1]],[[374,989],[-1,0],[0,1],[1,0]],[[374,988],[0,1]],[[366,994],[-1,0],[1,0]],[[367,994],[-1,0]],[[366,994],[0,-1],[1,0],[0,1]],[[367,834],[-1,1],[0,-1]],[[366,834],[0,-1],[1,0],[0,1]],[[371,834],[-1,0]],[[371,833],[0,1]],[[370,834],[0,-1],[1,0]],[[371,833],[1,0]],[[372,834],[-1,-1]],[[372,833],[0,1]],[[374,831],[-1,-1],[1,0]],[[374,830],[0,1]],[[376,828],[1,0]],[[376,830],[0,-1],[0,-1]],[[377,829],[-1,1]],[[377,828],[0,1]],[[377,829],[-1,-1]],[[377,830],[0,-1]],[[378,830],[-1,0]],[[379,829],[-1,0],[0,1]],[[380,829],[-1,0]],[[379,828],[1,0],[0,1]],[[379,828],[0,1]],[[378,828],[1,0]],[[377,829],[1,0],[0,-1]],[[377,828],[0,-1],[1,0],[0,1]],[[378,828],[-1,0]],[[381,996],[0,-1]],[[381,996],[-1,0],[1,0]],[[382,996],[-1,0]],[[382,995],[0,1]],[[383,995],[-1,0]],[[383,995],[1,0]],[[385,995],[-1,0]],[[385,994],[0,1]],[[384,994],[1,0]],[[384,995],[0,-1]],[[381,995],[1,0],[1,0]],[[385,997],[-1,0],[-1,0],[-1,0],[0,-1]],[[385,996],[0,1]],[[385,996],[1,0],[1,0]],[[388,996],[-1,0]],[[388,995],[0,1]],[[387,995],[1,0]],[[387,996],[0,-1]],[[383,996],[1,0],[1,0]],[[382,996],[1,0]],[[382,847],[0,-1]],[[382,846],[1,1],[-1,0]],[[382,842],[0,-1]],[[382,841],[1,0],[0,1],[-1,0]],[[383,996],[1,-1]],[[385,995],[0,1]],[[385,995],[1,0],[1,0]],[[385,852],[0,1],[-1,0],[0,1],[-1,0],[0,-1],[1,0],[0,-1]],[[384,852],[1,0]],[[384,851],[0,-1]],[[385,851],[-1,0]],[[384,850],[1,0],[0,1]],[[384,852],[0,-1]],[[385,851],[0,1]],[[385,997],[1,0],[1,0]],[[386,860],[0,-1],[1,0],[-1,1]],[[386,864],[0,-1]],[[387,861],[0,2],[0,1],[-1,0]],[[387,861],[1,0],[0,-1],[0,1],[-1,0]],[[387,862],[0,-1]],[[386,863],[1,0],[0,-1]],[[388,996],[1,0],[1,0],[-1,0],[-1,0]],[[389,867],[1,-1],[0,1],[-1,0]],[[396,870],[-1,1],[-1,0],[0,-1],[0,-1]],[[396,870],[-1,0],[1,0]],[[396,869],[0,1]],[[394,869],[1,0],[1,0]],[[397,870],[-1,-1]],[[396,869],[1,0],[0,1]],[[398,871],[-1,0]],[[397,871],[1,-1],[0,1]],[[417,888],[-1,0],[0,-1]],[[416,887],[1,0],[0,1]],[[422,906],[1,0]],[[424,907],[-1,0],[-1,0],[0,-1]],[[435,899],[-1,-1]],[[434,898],[1,0],[0,1]],[[444,985],[-1,0],[-1,0],[-1,0],[1,0],[0,-1]],[[442,984],[1,1],[1,0]],[[441,988],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,1],[0,-1],[-1,0]],[[444,973],[1,0],[1,0],[1,1],[-1,0],[-1,0],[-1,-1]],[[445,989],[1,-1],[1,0],[0,-1],[0,1],[-1,0],[0,1],[-1,0]],[[446,986],[0,-1],[1,0],[1,0],[1,0],[-1,0],[0,1],[-1,0],[-1,0]],[[310,967],[11,-21]],[[351,988],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,1],[0,1],[1,1],[-1,1],[-1,1],[-1,1],[-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,-1],[-1,0],[-1,0],[-1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,-1],[1,0],[1,-1],[1,0],[1,-1],[1,0],[-1,0],[-1,0],[0,1],[-1,0],[1,0],[-1,0],[-1,1],[-2,0],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[1,-1],[1,0],[0,-1],[1,0],[-1,0],[0,-1],[-1,0],[1,-1],[1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[-1,0],[-1,1],[0,1],[-1,0],[0,1],[-1,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[1,0],[0,-1],[0,1],[0,-1],[1,0],[1,0],[1,0],[1,-1],[1,1],[1,0],[1,0],[1,0],[0,1],[1,0],[0,-1],[1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[1,0],[-1,0],[0,-1],[1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,1]],[[354,987],[-1,0],[-1,0],[0,1]],[[356,987],[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,1]],[[361,991],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[1,0],[0,-1],[1,0],[0,-1],[1,-1],[1,0],[1,0],[0,-1],[1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0]],[[362,991],[-1,0]],[[363,990],[-1,0],[0,1]],[[374,988],[0,-1],[1,0],[-1,0],[1,0],[1,-1],[-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]],[[374,988],[1,0],[-1,0]],[[374,990],[0,-1],[0,-1]],[[373,991],[1,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],[-1,0],[-1,0]],[[367,994],[1,0],[0,-1],[1,0],[1,1],[1,0],[1,0],[-1,0],[1,0],[1,-1],[0,1],[1,-1],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[-1,0],[1,-1],[0,-1],[1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[0,-1],[1,0],[0,-1],[-1,0],[0,1],[-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,-1],[1,0],[1,0],[0,-1]],[[367,994],[-1,0],[1,0]],[[367,994],[1,0],[-1,0]],[[377,996],[-1,0],[-1,0],[1,0],[-1,0],[-1,0],[-1,0],[1,0],[1,0],[1,-1],[1,0],[-1,0],[-1,0],[0,1],[-1,-1],[-1,0],[0,1],[-1,0],[-1,0],[0,-1],[-1,0],[0,1],[0,-1],[-1,0],[0,1],[0,-1],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[1,0],[-1,0],[-1,0],[0,-1]],[[378,996],[-1,0]],[[379,996],[-1,0]],[[381,995],[-1,0],[-1,0],[0,1]],[[384,994],[-1,0],[0,1]],[[388,995],[-1,-1],[1,0],[1,0],[0,-1],[1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0]],[[388,995],[1,0],[1,0],[1,0],[2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0]],[[390,996],[1,0],[1,0],[1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0]],[[388,996],[1,0],[1,0]],[[387,997],[0,-1]],[[442,984],[-1,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,-1],[-1,0],[-1,0],[1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[1,0],[0,1],[-1,0],[1,0],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[1,1],[-1,0],[1,0],[0,1],[1,0],[0,1],[1,1],[0,1],[-1,1],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-2,0],[-1,0],[-1,-1],[-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],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-2,0],[0,-1],[-1,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],[0,1],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[-1,0],[0,1],[-1,0],[-1,0],[-2,0],[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],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[0,1],[0,-1],[2,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,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],[0,1],[-1,0],[0,1],[-1,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],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[0,-1],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,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,1],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,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],[0,1],[-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],[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,0],[-1,0],[0,-1],[1,0],[-1,0],[-1,0],[0,1],[0,-1],[-1,0],[0,1],[-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],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[1,-1],[1,0],[-1,0],[-1,0],[-1,1],[-1,0],[1,-1]],[[444,985],[-1,-1],[-1,0]],[[447,974],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[-1,0],[1,0],[0,1],[1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[1,0],[1,0],[1,0],[0,1],[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,0],[0,1],[1,0],[1,0],[1,0],[0,1],[-1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[1,1],[-1,1],[-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],[0,-1],[-1,0],[-1,0],[0,-1],[1,0],[-1,0],[-1,0],[0,-1],[1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[0,-1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[1,1],[0,1]],[[446,974],[1,0]],[[445,974],[0,1],[1,0],[0,-1]],[[444,973],[0,1],[1,0]],[[445,973],[-1,-1],[0,-1],[1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,-1],[0,1],[1,0],[0,1],[1,0]],[[446,973],[-1,0]],[[446,966],[1,1],[-1,1],[-1,0],[0,-1],[0,-1],[0,1],[0,1],[0,1],[1,0],[0,1],[-1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,1],[-1,0],[-1,1],[-1,-1],[-1,0],[-1,0],[-1,0]],[[446,966],[0,1],[0,-1]],[[440,958],[0,1],[-1,0],[1,0],[1,0],[0,1],[-1,0],[1,1],[0,1],[1,0],[0,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],[0,1],[1,0],[1,0]],[[440,958],[-1,0],[0,-1],[0,1],[1,0]],[[439,956],[0,1],[1,1]],[[444,941],[-1,0],[-1,0],[-1,1],[-2,0],[-1,1],[-1,0],[0,1],[-1,2],[0,1],[0,2],[0,2],[1,1],[0,1],[0,2],[1,1],[1,0]],[[446,940],[-1,0],[-1,0]],[[442,936],[0,1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[1,0],[1,0],[0,-1],[1,0],[0,1],[1,0],[1,0],[0,1],[-1,0],[-1,1],[-1,0],[-1,1],[0,-1],[0,1],[-1,0],[1,0],[1,0],[0,-1],[1,0],[0,1],[-1,0],[-1,0],[0,1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,-1],[1,0],[0,1],[1,0],[0,-1],[0,-1],[1,0],[0,1],[1,0],[0,1],[0,1]],[[442,935],[0,1]],[[443,934],[-1,0],[-1,0],[1,0],[0,1]],[[444,934],[-1,0]],[[446,934],[-1,0],[0,-1],[-1,0],[0,1]],[[443,931],[1,0],[1,0],[1,0],[0,1],[1,0],[0,1]],[[439,932],[-1,1],[1,0],[0,-1]],[[438,931],[1,1]],[[438,931],[-1,0],[1,0]],[[437,930],[1,0],[0,1]],[[422,901],[-1,0],[-1,0],[-2,0],[0,2],[0,3],[0,3],[1,4],[0,3],[1,3],[1,3],[1,4],[2,2],[3,2],[2,1],[5,1],[3,-2]],[[422,901],[0,-1],[0,1]],[[424,902],[0,-1],[0,-1],[-1,0],[0,1],[-1,0]],[[425,902],[-1,0]],[[435,899],[0,1],[1,0],[1,0],[1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,1],[0,1],[-1,0],[-1,0],[0,-1],[0,1],[-1,0],[-1,-1],[-1,0],[-1,0]],[[435,899],[0,1],[0,-1]],[[435,899],[1,0],[-1,0]],[[435,899],[-1,0],[1,0]],[[434,898],[0,1],[1,0]],[[434,898],[-1,0],[0,1],[1,-1]],[[417,888],[1,0],[0,-1],[0,1],[1,0],[-1,1],[1,0],[0,-1],[0,1],[1,0],[1,0],[1,0],[0,1],[0,-1],[1,0],[0,1],[1,0],[1,1],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[-1,1],[1,0],[0,-1],[1,1],[0,1],[-1,0],[1,0],[1,0],[0,1],[1,0],[1,1],[-1,0],[0,1],[0,-1],[1,0],[1,0],[0,1]],[[416,888],[0,1],[1,0],[0,-1]],[[416,887],[0,1]],[[411,887],[1,0],[1,-1],[1,1],[0,-1],[1,0],[0,1],[-1,1],[1,0],[0,-1],[1,0]],[[411,887],[1,0],[-1,0]],[[411,888],[0,-1]],[[411,888],[1,0],[-1,0]],[[411,887],[-1,0],[0,1],[0,-1],[0,1],[0,-1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,-1],[1,0],[0,-1],[0,-1],[1,0]],[[399,871],[1,1],[0,1],[1,0],[0,-1],[0,1],[-1,1],[0,1],[0,-1],[1,0],[1,-1],[0,1],[0,1],[0,-1],[1,0],[0,1],[1,1],[0,1],[0,-1],[1,1],[0,1],[0,1],[1,0],[0,1],[1,1],[-1,0],[0,1],[1,-1],[0,1],[0,1],[1,0],[0,1],[-1,0],[1,0],[1,1],[1,0],[0,1],[1,0],[0,1]],[[398,871],[1,0]],[[398,871],[0,1],[1,0],[-1,0],[0,-1]],[[397,871],[-1,0],[0,1],[1,0],[0,-1]],[[396,870],[1,1]],[[395,871],[1,-1]],[[394,871],[0,1],[0,1],[0,1],[0,-1],[1,0],[0,1],[-1,0],[1,0],[1,0],[-1,-1],[0,-1],[0,-1]],[[394,871],[-1,0],[1,0]],[[394,870],[-1,0],[0,1],[0,1],[0,-1],[1,0]],[[394,869],[0,1]],[[389,867],[0,1],[-1,0],[0,1],[0,-1],[1,0],[0,1],[1,0],[0,-1],[1,1],[-1,0],[0,1],[1,0],[0,-1],[1,0],[1,1],[0,-1],[1,0]],[[386,864],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1]],[[386,864],[-1,0],[1,0]],[[387,861],[0,1],[-1,1],[0,1]],[[386,860],[1,0],[0,1]],[[385,860],[1,0]],[[385,859],[-1,0],[0,1],[1,0]],[[385,853],[1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[1,0],[1,-1],[1,0],[0,2],[-1,0],[1,0],[0,1],[-1,0],[-1,0],[0,1]],[[385,853],[0,1],[0,-1]],[[385,853],[1,0],[-1,0]],[[385,852],[0,1],[-1,0],[0,1],[1,-1]],[[384,851],[-1,1],[1,0]],[[384,850],[-1,0],[0,1],[-1,1],[1,0],[0,-1],[0,-1],[1,0]],[[384,849],[0,1]],[[382,847],[-1,0],[0,1],[-1,0],[1,0],[1,1],[0,1],[0,-1],[1,0],[-1,0],[0,-1],[1,0],[-1,0],[1,0],[0,1],[1,0]],[[382,846],[-1,0],[1,0]],[[382,842],[-1,0],[0,1],[1,0],[0,1],[0,1],[-1,1],[-1,0],[0,1],[1,0],[0,-1],[1,0]],[[382,842],[1,1],[-1,0],[0,-1]],[[382,841],[-1,0],[0,1],[0,-1],[1,0]],[[381,835],[0,1],[-1,0],[-1,0],[-1,1],[1,0],[1,0],[0,-1],[1,0],[0,1],[-1,0],[1,0],[0,1],[-1,-1],[0,1],[1,0],[-1,0],[-1,0],[1,0],[1,0],[1,0],[0,1],[-1,0],[0,1],[0,-1],[0,1],[-1,0],[1,0],[1,0],[0,1]],[[380,835],[1,0]],[[380,835],[-1,0],[1,0]],[[380,829],[0,1],[-1,0],[1,0],[0,1],[-1,0],[-1,0],[1,0],[0,1],[-1,0],[-1,1],[1,0],[0,-1],[0,1],[0,1],[0,-1],[1,-1],[1,0],[-1,0],[1,0],[1,1],[-1,0],[1,0],[-1,0],[1,0],[0,1],[-1,0],[-1,0],[0,1],[1,-1],[1,0],[-1,1]],[[377,830],[1,0],[1,-1]],[[377,830],[0,1],[0,-1]],[[376,830],[1,0]],[[374,830],[0,-1],[1,0],[1,-1]],[[374,830],[1,0],[1,2],[0,1],[0,-1],[-1,-1],[0,-1],[-1,0]],[[374,830],[0,-1],[0,1]],[[372,833],[1,0],[0,-1],[0,1],[1,0],[0,1],[0,-1],[-1,-1],[1,0],[0,1],[0,-1],[1,0],[0,1],[0,1],[1,0],[-1,0],[0,-1],[0,-2],[-1,0]],[[372,833],[0,-1],[0,1]],[[372,833],[1,0],[-1,0]],[[372,834],[1,0],[0,1],[0,1],[1,0],[0,-1],[-1,0],[0,-1],[-1,0]],[[372,834],[0,1],[0,-1]],[[372,834],[-1,0]],[[371,834],[1,1],[0,-1]],[[369,834],[1,1],[-1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[0,1],[1,0],[-1,0],[0,-1],[1,0],[-1,-1],[0,-1],[1,1],[0,1],[0,-1],[1,0],[0,1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,-1]],[[367,834],[1,0],[0,1],[-1,0],[1,0],[1,0],[0,1],[0,-1],[0,-1]],[[366,835],[1,0],[0,-1]],[[366,835],[0,-1],[0,1]],[[366,836],[1,0],[-1,-1]],[[366,836],[0,-1]],[[366,836],[-1,0],[1,0]],[[366,836],[1,1],[0,-1],[-1,0]],[[365,838],[-1,-1],[1,0],[1,0],[-1,0],[1,0],[0,1],[0,-1],[0,-1]],[[364,838],[0,1],[1,-1]],[[362,842],[1,0],[-1,-1],[1,0],[0,1],[0,1],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[1,0],[1,0],[-1,0],[-1,0],[0,-1],[1,0],[1,1],[1,0],[-1,-1],[-1,0],[-1,0],[1,-1]],[[359,851],[0,-1],[1,0],[0,-1],[0,1],[1,0],[0,1],[0,-1],[-1,0],[0,-1],[0,-1],[0,1],[1,0],[-1,-1],[0,-2],[1,-1],[1,0],[0,-1],[1,0],[-1,0],[0,-1],[1,0],[0,1],[0,-1],[1,1],[0,-1],[-1,0],[-1,0],[0,-1]],[[359,851],[1,1],[0,-1],[-1,0]],[[359,852],[0,-1]],[[358,851],[0,1],[1,0]],[[358,851],[0,1],[0,-1]],[[358,859],[1,0],[1,0],[1,0],[-1,0],[0,-1],[-1,0],[0,1],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[1,0],[0,-1],[0,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],[-1,0],[-1,-1],[1,0],[1,0],[-1,0],[-1,0],[0,-1],[1,0],[1,0],[1,0],[-1,0],[-1,0],[0,-1],[0,-1]],[[356,859],[0,-1],[1,0],[1,0],[0,1]],[[357,859],[0,-1],[0,1]],[[356,859],[0,-1],[0,1]],[[357,861],[0,1],[0,1],[1,0],[-1,-1],[1,0],[1,1],[0,1],[0,1],[-1,0],[0,-1],[0,1],[0,1],[0,-1],[1,-1],[0,-1],[1,0],[1,1],[0,-1],[-1,0],[0,-1],[1,0],[-1,0],[0,-1],[1,0],[0,-1],[1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[1,-1],[0,-1],[1,0],[0,1],[0,-1],[-1,0],[-1,0]],[[356,859],[0,1],[1,1]],[[353,868],[1,-1],[0,1],[1,0],[0,1],[1,1],[1,0],[1,0],[1,0],[0,-1],[-1,1],[-1,0],[-1,0],[0,-1],[-1,0],[1,0],[-1,-1],[-1,-1],[0,-1],[0,1],[1,0],[-1,-1],[1,0],[-1,-1],[1,0],[0,-1],[-1,0],[0,-1],[1,0],[0,1],[0,-1],[0,1],[1,0],[0,1],[0,-1],[1,0],[0,1],[0,-1],[-1,0],[0,-1],[0,1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0]],[[353,869],[1,0],[-1,-1]],[[353,869],[0,-1]],[[353,869],[0,1],[0,-1]],[[351,872],[0,-1],[1,0],[0,1],[1,0],[-1,0],[0,-1],[1,0],[0,1],[0,-1],[1,0],[0,1],[1,0],[1,0],[0,-1],[-1,1],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[1,0],[-1,0],[0,-1]],[[351,872],[1,0],[-1,0]],[[351,872],[0,1],[1,0],[1,0],[0,1],[1,1],[1,0],[0,1],[0,1],[1,0],[1,1],[1,0],[0,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],[-1,0],[-1,-1],[-1,-1],[0,-1],[-1,0],[-1,-1],[0,-1],[-1,0],[-1,-1]],[[352,878],[0,-1],[1,0],[-1,0],[1,0],[-1,0],[-1,-1],[1,0],[1,0],[1,0],[0,-1],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[1,0],[-1,1],[0,-1],[-1,-1],[1,-1],[0,1],[1,0],[-1,-1],[0,-1]],[[353,878],[-1,0]],[[353,878],[1,0],[-1,0]],[[351,878],[1,0],[1,0]],[[351,884],[0,-1],[-1,0],[0,-1],[1,1],[1,0],[0,1],[1,1],[1,0],[1,0],[1,1],[-1,-1],[-1,0],[0,-1],[1,0],[1,0],[0,1],[0,-1],[-1,0],[1,0],[1,0],[-1,0],[1,0],[0,1],[-1,1],[1,0],[0,-1],[0,1],[1,0],[0,-1],[-1,0],[0,-1],[1,0],[0,1],[1,0],[-1,0],[1,0],[-1,-1],[-1,0],[1,-1],[1,1],[1,0],[1,0],[-1,0],[-1,0],[0,-1],[-1,0],[1,0],[1,0],[0,-1],[0,1],[0,-1],[-1,0],[-1,1],[-1,0],[0,1],[-1,-1],[-1,0],[0,1],[-1,0],[-1,0],[1,0],[-1,0],[-1,0],[1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,1],[1,0],[1,0],[1,0],[1,1],[1,0],[0,-1],[1,0],[1,1],[1,0],[-1,0],[-1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[1,1],[0,-1],[-1,0],[1,0],[1,0],[-1,0],[-1,0],[0,-1],[1,0]],[[350,885],[1,-1]],[[352,886],[-1,-1],[1,0],[-1,0],[-1,0]],[[352,886],[0,1],[0,-1]],[[355,886],[-1,0],[-1,0],[-1,0]],[[352,887],[1,-1],[1,0],[1,0]],[[352,887],[-1,0],[1,0]],[[354,887],[-1,0],[-1,0]],[[354,887],[-1,0],[1,0]],[[355,887],[-1,0]],[[355,886],[0,1]],[[357,887],[0,-1],[-1,0],[-1,0]],[[357,887],[1,0],[0,-1],[1,0],[1,0],[0,-1],[0,1],[-1,0],[0,-1],[0,1],[-1,0],[-1,0],[0,1]],[[357,887],[0,1]],[[357,888],[1,0],[0,-1],[-1,0]],[[357,888],[0,1],[-1,0],[1,0],[1,1],[0,-1],[-1,0],[0,-1]],[[356,888],[1,0]],[[354,887],[0,1],[1,0],[1,0]],[[352,889],[-1,-1],[1,0],[1,0],[-1,0],[1,0],[1,0],[0,-1]],[[353,889],[-1,-1],[0,1]],[[354,890],[-1,0],[0,-1]],[[355,890],[1,0],[-1,0]],[[358,897],[0,-1],[0,-1],[-1,0],[1,0],[0,-1],[1,1],[0,1],[1,0],[-1,0],[0,-1],[1,0],[0,-1],[-1,0],[1,0],[0,-1],[0,1],[-1,-1],[1,0],[-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],[-1,0],[0,-1],[0,-1],[0,1],[0,-1],[-1,0],[-1,0],[-1,0]],[[358,897],[1,0]],[[358,898],[1,0],[0,-1]],[[359,899],[0,-1],[-1,0]],[[358,900],[1,0],[0,1],[1,0],[0,-1],[-1,0],[1,0],[0,-1],[-1,0]],[[357,900],[1,0]],[[358,900],[0,1],[-1,-1]],[[357,900],[0,1],[1,0],[0,-1]],[[349,903],[1,0],[1,0],[1,0],[1,-1],[1,-1],[1,0],[0,-1],[0,1],[1,0],[0,-1],[1,0]],[[356,904],[-1,0],[-1,1],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[1,-1],[0,-1]],[[357,904],[1,0],[0,-1],[1,0],[0,1],[0,-1],[-1,0],[-1,0],[-1,0],[0,1]],[[356,907],[1,0],[0,-1],[1,0],[0,1],[0,-1],[1,0],[0,-1],[-1,1],[-1,0],[0,-1],[1,0],[1,0],[-1,0],[0,-1],[-1,1],[0,-1]],[[354,909],[0,-1],[1,0],[0,1],[1,0],[0,-1],[1,1],[0,-1],[-1,0],[1,0],[1,0],[0,-1],[-1,0],[0,1],[-1,0],[-1,0],[1,-1]],[[354,909],[1,0],[0,1],[1,0],[0,-1],[-1,0],[-1,0]],[[354,910],[0,-1],[-1,0],[1,0]],[[354,910],[1,1],[1,0],[1,0],[-1,0],[-1,0],[0,-1],[-1,0]],[[352,910],[1,0],[1,0]],[[352,911],[0,-1]],[[353,912],[1,0],[1,0],[0,1],[1,0],[0,-1],[-1,0],[-1,0],[-1,-1],[-1,0]],[[345,913],[-1,0],[0,-1],[1,0],[0,-1],[1,-1],[0,1],[1,-1],[1,0],[1,0],[1,1],[0,1],[-1,0],[0,1],[0,-1],[1,0],[0,1],[1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[1,0],[-1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,-1],[0,1],[1,1],[-1,-1],[1,0],[-1,-1],[-1,0],[1,0],[1,0],[0,-1]],[[346,916],[-1,-1],[1,-1],[1,0],[1,1],[0,1],[0,-1],[-1,-1],[-1,0],[-1,-1]],[[346,918],[0,-1],[0,1],[1,0],[0,-1],[-1,-1]],[[345,919],[0,-1],[1,0]],[[346,918],[-1,1]],[[347,918],[-1,0]],[[347,918],[1,0],[1,0],[-1,0],[-1,0]],[[347,919],[0,-1]],[[347,919],[1,0],[-1,0]],[[347,920],[0,-1]],[[347,920],[1,0],[-1,0]],[[347,921],[0,-1]],[[347,921],[1,0],[-1,0]],[[346,922],[1,0],[0,-1]],[[345,922],[1,0]],[[345,922],[0,1],[0,-1]],[[345,924],[1,0],[0,-1],[-1,0],[0,-1]],[[344,928],[0,-1],[0,-1]],[[344,928],[1,-1],[-1,0],[0,1]],[[342,933],[0,-1],[1,0],[-1,0],[0,-1],[1,0],[-1,0],[-1,0],[0,-1],[-1,0],[1,0],[1,0],[1,1],[0,-1],[1,0],[0,-1],[-1,0],[1,0],[1,-1],[-1,0]],[[342,933],[0,-1],[0,1]],[[342,933],[1,0],[-1,0]],[[341,934],[1,0],[0,-1]],[[321,946],[0,-1],[1,0],[1,1],[0,1],[1,-1],[1,0],[0,-1],[0,1],[1,0],[1,0],[0,-1],[0,1],[1,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,-1],[0,1],[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],[-1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,-1],[1,0],[0,-1],[0,-1]],[[359,897],[1,0],[-1,0]],[[310,967],[-1,0],[0,-1],[-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],[-1,-1],[1,0],[-1,-1],[1,0],[-1,0],[0,-1],[-1,0],[1,0],[0,-1],[1,0],[1,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,1],[1,0],[1,0],[0,-1],[-1,0],[-1,0],[0,-1],[1,0],[1,0],[1,0],[0,1],[0,-1],[-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,1],[1,0],[1,0],[0,-1]],[[321,946],[-1,0],[1,0]],[[319,945],[1,0],[0,1],[1,0]],[[318,944],[0,1],[1,0]],[[315,955],[1,0],[0,-1],[-1,0],[-1,0],[1,0],[0,-1],[-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,0],[0,-1],[1,0],[1,1],[0,-1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,-1],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[1,-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],[0,-1],[1,0],[1,0],[1,0],[1,0],[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],[1,0],[1,0],[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],[0,-1],[1,0],[1,0]],[[298,954],[1,0],[1,0],[1,0],[-1,0],[-1,1],[-1,0],[0,-1]],[[301,955],[1,-1],[1,0],[1,0],[1,0],[-1,0],[-1,1],[-1,0],[-1,0]],[[439,956],[-1,0],[-1,-1],[0,-2],[0,-1],[-1,-1],[0,-4],[0,-1],[1,-2],[0,-1],[1,0],[1,-1],[2,0],[1,-1],[1,0],[1,0]],[[440,957],[0,-1],[0,-1],[-1,-1],[0,1],[1,0],[0,1],[-1,0]],[[441,958],[0,-1],[-1,0]],[[443,957],[-1,0],[0,1],[-1,0]],[[444,957],[-1,0]],[[446,956],[-1,0],[-1,1]],[[444,956],[1,-1],[1,0],[1,0],[0,1],[-1,0]],[[443,956],[1,0]],[[443,955],[-1,0],[0,1],[1,0]],[[443,955],[-1,0],[1,0]],[[444,954],[-1,0],[-1,0],[-1,0],[0,1],[1,0],[0,-1],[1,0],[0,1]],[[447,949],[1,0],[1,0],[0,1],[0,1],[0,2],[-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]],[[445,950],[1,0],[1,0],[0,-1]],[[440,948],[0,1],[1,0],[0,1],[-1,0],[-1,0],[1,0],[1,0],[1,0],[-1,0],[1,1],[1,-1],[1,0],[1,0]],[[436,949],[1,0],[0,1],[1,0],[0,-1],[1,0],[0,-1],[1,0]],[[440,947],[-1,0],[0,-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],[0,-1],[1,0],[-1,0],[0,1],[-1,0],[0,1]],[[442,945],[-1,0],[-1,0],[-1,0],[0,1],[1,0],[0,1]],[[442,945],[1,-1],[-1,0],[0,1]],[[441,946],[0,-1],[1,0]],[[442,946],[-1,0]],[[443,945],[-1,0],[0,1]],[[443,943],[1,1],[1,0],[0,1],[-1,0],[-1,0]],[[438,943],[0,1],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0]],[[443,943],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0]],[[444,943],[-1,0]],[[445,943],[-1,0]],[[444,941],[1,2]],[[444,941],[0,-1],[0,1]],[[440,947],[1,0]],[[440,948],[0,-1]],[[441,947],[0,1],[-1,0]],[[441,958],[-1,0]],[[440,958],[0,-1]],[[441,947],[0,-1]],[[442,946],[0,1],[-1,0]],[[442,959],[1,0],[0,1],[-1,-1]],[[444,957],[0,1],[-1,0],[0,-1]],[[446,956],[0,1],[-1,0],[-1,0]],[[444,957],[1,0],[1,-1]],[[443,955],[1,0]],[[444,956],[-1,0],[0,-1]],[[444,955],[0,1]],[[444,955],[0,-1]],[[444,954],[1,0],[-1,1]],[[445,949],[-1,0]],[[444,949],[1,-1],[0,1]],[[445,964],[0,-1],[1,0],[1,0],[0,1],[-1,0],[1,0],[-1,0],[1,1],[-1,0],[-1,-1]],[[447,960],[-1,1],[0,-1]],[[446,960],[1,0]],[[447,949],[-1,0],[1,-1],[-1,0],[0,-1],[1,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,1],[0,1],[0,1],[-1,1],[1,0],[0,1],[-1,0],[0,1]],[[449,963],[-1,0],[0,-1],[1,1]],[[449,956],[0,-1],[1,0],[0,1],[1,0],[0,1],[-1,0],[0,-1],[-1,0]],[[450,965],[0,1],[1,0],[0,1],[-1,0],[0,-1],[0,-1]],[[252,523],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-2],[0,-2],[-1,0],[0,-1],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-2,0],[0,-1],[-1,0],[0,-4],[-1,-1],[1,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1]],[[253,509],[0,-1],[0,1]],[[253,509],[1,0],[0,-1],[-1,-1],[0,1],[0,1]],[[254,507],[0,1],[0,1],[-1,0]],[[251,498],[1,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[1,1],[0,1]],[[249,494],[0,-1],[0,1],[0,1],[1,0],[0,1],[0,-1],[0,1],[1,1],[0,1]],[[243,499],[1,-1],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[1,0],[0,1],[1,0],[0,-1],[1,0]],[[461,485],[0,-1],[1,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-2],[0,-1],[-1,0],[-1,0],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1]],[[468,483],[-1,0],[0,-1],[-1,1],[0,-1],[-1,0],[0,1],[0,-1],[-1,1],[0,1],[0,-1],[-1,0],[0,1],[-1,0],[0,1],[-1,0]],[[477,467],[0,1],[-1,1],[0,2],[0,2],[0,-1],[-1,0],[0,1],[1,0],[0,2],[0,1],[-1,0],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[-1,0],[-1,0],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[-1,1],[-1,0],[0,-1],[0,-1],[-1,2],[0,-1],[-1,0],[0,1],[0,1],[0,1]],[[477,466],[0,1]],[[476,448],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,-1],[0,1],[0,1],[0,1],[-1,-1],[0,1],[0,1],[1,1],[-1,0],[0,1],[1,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1]],[[471,455],[1,-1],[0,1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[1,0],[0,-1],[0,-1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,-1]],[[471,454],[0,1],[0,-1],[0,1]],[[463,458],[0,1],[0,-1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,-1],[0,1],[1,0],[1,0],[1,-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],[1,0]],[[463,459],[-1,0],[0,-1],[1,0]],[[463,460],[0,-1]],[[458,472],[0,-1],[1,0],[0,-1],[0,1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[1,-1],[0,-1],[0,1],[0,-1],[0,-1],[0,1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0]],[[458,472],[1,0],[0,1],[0,-1],[-1,0]],[[458,472],[0,-1],[0,1]],[[461,485],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,-1],[-1,0],[-1,-1],[-1,0],[1,0]],[[458,473],[0,1],[0,-1],[0,-1],[0,1],[0,1],[0,1],[1,1],[0,1],[1,0],[1,0],[0,1],[0,2],[0,1],[0,1],[1,0],[0,1],[-1,1],[0,1]],[[456,475],[1,0],[0,1],[0,-1],[0,-1],[0,-1],[0,1],[0,-1],[0,-1],[0,1],[1,0]],[[455,478],[1,0],[0,1],[1,0],[1,1],[0,-1],[0,-1],[0,1],[-1,0],[-1,-1],[0,-1],[1,0],[0,-1],[0,1],[1,0],[-1,0],[0,-1],[-1,-1]],[[455,479],[0,-1]],[[455,479],[0,1],[1,0],[0,-1],[0,1],[-1,-1]],[[454,482],[1,0],[-1,-1],[0,-1],[0,-1],[1,0]],[[454,482],[0,-1],[0,1]],[[454,473],[1,0],[0,1],[-1,-1]],[[333,455],[0,-1],[0,1],[0,1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,-1],[1,-1],[0,-1],[-1,-1],[0,-1],[1,-2],[0,-2],[1,-1]],[[341,437],[0,1],[0,1],[-1,0],[0,1],[0,-1],[-1,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,2],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,1],[-1,1]],[[342,408],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,2],[-1,1],[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,2],[0,1],[0,1],[-1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[-1,0],[0,1],[0,1],[1,0],[0,1],[0,2]],[[297,538],[-1,0],[0,-1],[0,-1],[0,-1],[1,0],[1,-1],[0,-1],[-1,0],[1,-1],[-1,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[0,-1],[0,1],[-1,0],[0,1],[-1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,1],[1,1],[0,-1],[1,0],[1,0],[1,0],[1,0]],[[298,538],[-1,0]],[[300,536],[-1,0],[-1,1],[0,1]],[[300,525],[0,-1],[0,1],[0,1],[1,0],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[-1,0],[0,1],[1,0],[0,1],[-1,0],[0,1]],[[296,530],[1,-1],[0,1],[-1,1],[0,-1]],[[298,538],[-1,1],[0,-1]],[[268,502],[0,1],[0,1],[-1,1],[0,-1],[1,0],[-1,-1],[0,1],[1,0],[-1,0],[0,1],[-1,0],[1,0],[0,-1],[-1,0],[0,1],[0,1],[1,0],[-1,1],[-1,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,-1],[0,-1],[-1,0]],[[257,488],[1,0],[0,1],[0,1],[1,0],[0,1],[-1,1],[0,1],[1,0],[1,0],[0,2],[1,0],[0,-1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,1],[0,-1],[1,0],[1,0],[1,1],[0,1],[1,0],[1,0],[-1,0]],[[256,490],[1,-1],[0,-1]],[[256,491],[1,0],[0,-1],[-1,0]],[[251,498],[1,0],[0,-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],[0,-1],[0,-1],[0,1],[0,-1],[0,1]],[[259,512],[0,-1],[0,1],[1,0],[0,1],[-1,-1]],[[547,741],[0,1],[0,-1]],[[561,744],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,1],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[0,1],[-1,0],[-1,0],[0,1],[-1,0]],[[563,741],[0,1],[-1,0],[0,1],[-1,1]],[[556,728],[1,0],[0,1],[1,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],[1,0],[0,1]],[[552,726],[0,1],[1,0],[1,1],[1,0],[1,0]],[[545,731],[1,-1]],[[544,733],[1,0],[0,-1],[0,-1]],[[431,868],[1,0],[1,0],[0,-1],[1,1],[1,0],[1,0],[0,1],[0,-1],[1,0],[1,0],[0,1],[0,-1],[1,0],[0,-1],[-1,0],[-1,0],[0,-1],[1,-1],[1,1],[0,-1],[-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],[0,-1],[-1,0],[1,-1],[1,0],[0,1],[1,0],[-1,0],[1,0],[0,-1],[0,1],[-1,0],[0,-1],[-1,0],[0,-1],[1,0],[1,0],[-1,0],[0,-1],[0,-1],[0,1],[0,-1],[-1,0],[-1,-1],[0,1],[-1,0],[0,-1],[1,-1],[1,0],[1,0],[1,0],[0,1],[1,0],[0,-1],[1,0],[0,-1],[0,1],[1,0],[0,-1],[0,1],[0,-1],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,1],[1,0],[0,1],[2,1],[0,1],[1,0],[0,-1],[1,1],[0,1],[1,0],[1,1],[1,0],[0,1],[1,0],[0,-1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[-1,0],[1,0],[0,-1],[1,1],[0,1],[1,0],[-1,0],[0,1],[1,-1],[0,1],[0,1],[-1,0],[1,0],[0,1],[-1,0],[1,0],[0,1],[-1,1],[-1,0],[-1,-1],[0,1],[1,0],[0,1],[-1,0],[-1,0],[0,1],[1,0],[0,1],[-1,0],[-1,0],[0,1],[1,0],[0,1],[1,0],[-1,1],[0,-1],[-1,0],[0,-1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,1],[-1,0],[-1,-1],[-1,0],[0,1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[1,0],[0,-1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[0,1],[0,-1],[-1,0],[0,-1],[0,-2],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[1,0],[0,-1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[-1,1],[-1,0],[-1,0],[1,0],[-1,-1],[1,0],[1,0],[0,-1],[-1,1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,1],[0,1],[-1,0],[-1,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],[0,-1],[1,0],[-1,0],[0,1],[-1,0],[0,-1],[0,-1],[0,1],[-1,0],[-1,-1]],[[715,648],[0,-1],[-1,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[-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,-1],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[1,0],[0,-1],[0,1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,1],[0,-1],[0,-1],[1,-1],[1,0],[0,-1],[0,-1],[0,-1],[-1,0],[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,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,-2],[0,-2],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,1],[0,1],[0,1],[-1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[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],[0,-1],[1,0],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[0,1],[-1,-1],[-1,-1],[-1,0],[-1,0],[0,1],[0,-1],[-1,0],[0,1],[0,-2],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1]],[[744,582],[-1,0],[0,1],[-1,-1],[-1,0],[0,1],[-1,0],[0,-1],[0,1],[-1,0],[0,1],[-1,0],[-1,-1],[0,1],[0,1],[0,1],[0,-1],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,-1],[-1,1],[-1,-1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,-1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,1],[0,1],[0,-1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[1,1]],[[744,584],[0,-1],[0,-1]],[[744,593],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1]],[[769,595],[0,1]],[[756,551],[1,0],[0,1],[1,0],[0,1],[0,1],[-1,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],[0,1],[0,-1],[1,0],[0,-1],[1,1],[0,-1],[0,1],[1,0],[0,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,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[1,1],[0,1],[0,1],[1,0],[1,1],[1,0],[0,-1],[0,-1],[1,0],[-1,2],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1]],[[756,552],[0,-1],[0,-1],[0,1],[0,1],[0,-1]],[[744,550],[1,0],[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],[1,1],[0,2]],[[744,548],[0,1],[0,-1],[0,1],[0,1]],[[744,548],[0,-1],[0,1]],[[744,550],[0,-1],[0,-1]],[[743,549],[0,1],[0,1],[1,0],[0,1],[-1,0],[0,1],[0,1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1]],[[743,548],[0,1]],[[688,563],[0,-1],[1,0],[0,1],[0,1],[1,0],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,1],[1,1],[0,1],[1,0],[0,-1],[-1,0],[0,-1],[0,-2],[-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,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,-1],[0,-1],[1,-1],[1,0],[1,0],[0,1],[1,1],[1,1],[0,1],[0,1],[1,1],[-1,1],[0,1],[0,1],[1,0],[0,1],[0,1],[-1,0],[1,0],[1,0],[0,-1],[0,1],[0,-1],[-1,0],[0,-1],[0,-1],[0,1],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,1],[1,0],[1,0],[-1,-1],[0,-1],[-1,0],[1,0],[-1,0],[0,-1],[1,0],[0,-1],[-1,-1],[1,0],[0,1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[1,-1],[-1,1],[0,-1],[0,-1],[0,-1],[0,1],[1,-1],[-1,0],[0,-1],[1,0],[0,-1],[-1,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,-2],[1,-1],[-1,0],[1,-2],[0,-1],[0,-1],[0,-1],[1,-2],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-2],[0,-2],[1,-1],[0,-1],[0,-1],[0,-1],[0,-2],[1,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[1,-3],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[1,-1],[0,1],[-1,0],[1,0],[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],[1,0],[-1,0],[0,-1],[1,0],[0,-2],[1,-1],[0,-1],[0,-1],[1,0],[1,0],[0,1],[1,1],[0,1],[0,2],[0,1],[1,1],[1,1],[1,0],[0,-1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[1,0],[0,-1],[0,1],[0,-1],[1,0],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[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],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,2],[1,1],[0,1],[0,1],[0,1],[1,0],[0,-1],[0,1],[0,1],[0,-1],[1,-1],[0,1],[0,1],[0,2],[1,0],[1,0],[1,1],[0,1],[0,1],[1,0],[-1,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[1,1],[0,1],[1,1],[0,1],[0,1],[1,0],[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],[1,1],[0,1],[0,-1],[0,-1],[1,0],[0,1],[1,0],[0,1],[1,0],[-1,0],[0,1],[0,-1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[1,1],[1,0]],[[743,548],[1,0],[0,1],[0,1],[-1,-1],[0,-1]],[[755,469],[0,-1],[1,0],[0,1],[0,1],[0,1],[-1,0],[0,-1],[0,-1]],[[756,475],[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],[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],[0,-1],[0,-1]],[[759,445],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[1,1],[-1,1],[0,1]],[[763,435],[0,-1],[1,0],[0,1],[-1,0]],[[780,408],[-1,1],[0,-1],[0,-1],[0,-1],[0,1],[0,1],[-1,0],[0,1],[-1,1],[0,1],[0,1],[0,-1],[0,1],[0,1],[-1,0],[0,-1],[0,1],[0,1],[0,1],[-1,1],[-1,2],[0,1],[-1,0],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,-1],[0,1],[0,1],[0,1],[-1,1],[0,1],[-1,1],[0,-1],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-2],[1,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,-1],[0,-1]],[[781,405],[-1,0],[0,1],[0,1],[0,1]],[[782,404],[-1,1]],[[782,403],[0,1]],[[782,402],[0,1]],[[783,400],[-1,1],[0,1]],[[783,399],[0,1]],[[785,398],[-1,0],[-1,0],[0,1]],[[785,397],[0,1]],[[785,397],[0,-1],[-1,-1],[0,-1],[-1,0],[0,1],[0,-1],[1,0],[0,1],[1,1],[0,1]],[[786,397],[-1,0]],[[786,391],[0,1],[0,1],[1,0],[0,1],[0,1],[-1,2]],[[786,391],[-1,0],[1,0]],[[786,391],[0,1],[0,-1]],[[786,390],[0,1]],[[792,376],[-1,0],[-1,0],[0,1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,1],[0,1],[0,1],[1,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],[-1,0],[-1,0],[0,1],[0,1],[0,1],[0,1]],[[773,405],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-2],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[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],[0,-1],[0,-1],[0,-1],[1,0],[0,-2],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[0,-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],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[0,1],[0,1],[0,1],[1,-1],[0,-1],[1,0],[0,1],[0,1],[1,-2],[0,-1],[0,1],[1,1],[-1,1],[1,2],[0,2],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[1,1],[0,1],[0,1],[-1,1],[1,1],[0,1],[0,1],[0,2],[-1,0],[0,1],[0,1],[0,1],[0,1]],[[764,413],[1,0],[0,-1],[0,-1],[1,-1],[1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,-1],[-1,0]],[[768,403],[1,0],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,0],[0,1],[0,1],[0,1],[-1,1],[0,2],[-1,0],[0,1],[0,-1],[-1,0]],[[773,384],[0,-1],[0,-1],[0,-1],[1,-1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,-1],[0,-1]],[[775,378],[0,-1],[1,-1],[0,1],[0,1],[-1,1],[0,-1]],[[777,373],[0,1],[-1,1],[0,-1],[0,-1],[1,0]],[[777,373],[0,-1],[0,-1],[0,-1],[1,-1],[0,1],[-1,0],[1,1],[-1,1],[0,1]],[[781,405],[0,1],[0,1],[0,1],[-1,0]],[[782,404],[0,1],[0,-1]],[[783,403],[0,1],[-1,0]],[[782,403],[1,0],[0,-1],[0,1]],[[782,355],[1,-1],[0,1],[-1,0]],[[782,402],[1,-1]],[[783,403],[-1,-1]],[[783,402],[0,1]],[[783,401],[0,1]],[[783,401],[0,-1]],[[784,401],[-1,0]],[[785,399],[-1,1],[0,1]],[[785,399],[0,-1]],[[783,399],[1,0],[1,0]],[[784,401],[0,-1]],[[785,399],[0,1],[0,1],[-1,0]],[[784,400],[1,0],[0,-1]],[[786,397],[0,1]],[[785,398],[0,-1],[1,0]],[[786,398],[-1,0]],[[786,390],[1,1],[-1,0]],[[788,402],[-1,0],[0,-1],[0,-1],[1,0]],[[788,400],[0,1],[0,1]],[[788,400],[1,0],[0,-1],[0,1],[0,1],[0,1],[-1,0]],[[789,391],[-1,-1],[0,-1],[1,0],[0,1],[0,1]],[[789,393],[0,-1],[0,-1]],[[789,391],[0,1],[1,-1],[0,1],[-1,0],[0,1]],[[795,373],[0,1],[0,1],[-1,0],[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,1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1]],[[795,372],[0,1]],[[792,376],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,1]],[[811,343],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,-1],[-1,0],[-1,0],[0,1],[0,-1],[-1,0],[-1,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,-1],[-1,1],[-1,0],[0,1],[0,1],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[0,-1],[-1,0],[0,1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,0]],[[812,342],[-1,0],[0,1]],[[816,335],[0,2],[0,1],[-1,1],[-1,-1],[0,1],[-1,-1],[0,1],[-1,0],[0,1],[0,1],[0,1]],[[791,345],[0,-1],[1,0],[1,1],[0,-1],[1,-1],[0,1],[0,-1],[0,-1],[0,-1],[1,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,1],[1,0],[0,-1],[1,0],[0,1],[0,-1],[1,0],[1,-1],[1,-1],[1,-1],[1,0],[1,-1],[1,0],[0,1],[0,-1],[1,0],[1,0],[0,-1],[1,1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,1],[-1,0],[0,1],[0,1],[0,1]],[[792,415],[0,-1],[0,-1],[0,1],[1,0],[0,1],[-1,0]],[[797,372],[0,-2],[1,0],[0,1],[0,1],[0,-1],[0,-1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[-1,-1],[0,-1],[0,-1]],[[798,422],[1,0],[0,-1],[0,-1],[0,-1],[0,1],[1,0],[0,1],[0,1],[-1,1],[0,-1],[-1,0]],[[803,407],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[1,0],[0,1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[1,0],[0,-1],[0,-2],[-1,0],[0,-1],[1,-1],[0,-1],[1,-1],[-1,1],[0,-1],[0,-1],[1,0],[0,-1]],[[815,403],[-1,-1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,1],[-1,-1],[0,1],[-1,0],[-1,0],[0,-1],[0,-1],[-1,1],[0,2],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,-1]],[[815,403],[0,1],[0,-1]],[[816,369],[0,2],[1,1],[0,1],[0,1],[1,1],[0,1],[0,1],[1,3],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,-1],[0,1],[-1,1],[1,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,-1],[-1,-1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1]],[[803,386],[0,1],[1,-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,0],[0,-1],[0,-1],[0,1],[1,1],[-1,-1],[1,-1],[0,1],[1,0],[0,1],[0,-1],[1,0],[0,1],[0,1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,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],[0,-1],[1,0],[0,1],[1,-1]],[[803,386],[0,-1],[-1,0],[0,-1],[1,0],[0,1],[0,1]],[[811,352],[1,0],[0,1],[-1,0],[0,-1]],[[812,342],[1,0],[1,0],[0,1],[1,0],[0,1],[0,1],[-1,-1],[-1,0],[-1,0],[0,-1],[-1,0]],[[811,343],[1,0],[0,-1]],[[818,344],[1,0],[0,1],[-1,-1]],[[815,404],[0,-1]],[[825,424],[-1,1],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[0,-1],[-1,1],[0,-1],[0,-1],[0,-2],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-2],[1,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0]],[[825,423],[0,1]],[[825,422],[0,1]],[[825,419],[1,0],[0,1],[-1,1],[0,1]],[[825,418],[-1,0],[0,1],[1,0]],[[825,417],[0,1]],[[821,370],[0,1],[0,1],[0,1],[0,-1],[1,1],[0,1],[-1,1],[0,1],[1,0],[0,-1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[1,0],[0,1],[0,1],[1,1],[0,1],[0,1],[0,-2],[0,1],[1,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],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,-1],[1,0],[0,-1],[1,0],[1,1],[0,1],[-1,1],[0,1],[-1,0],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[1,0]],[[821,368],[0,1],[0,1]],[[816,369],[0,-1],[1,0],[0,-1],[0,-1],[0,-2],[1,1],[1,1],[1,1],[0,1],[1,0]],[[816,369],[0,-1],[0,1]],[[819,332],[0,1],[1,0],[0,1],[-1,1],[0,1],[-1,0],[0,-1],[-1,0],[-1,1],[0,-1]],[[816,335],[1,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,1],[1,1]],[[819,332],[0,-1],[1,0]],[[820,331],[-1,1]],[[820,331],[1,-1],[1,0],[0,1],[0,-1],[0,1],[0,1],[0,1],[1,1],[-1,1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0]],[[821,368],[0,-1],[0,-1],[0,-1],[0,1],[1,1]],[[821,368],[0,1],[0,1],[0,-1],[0,-1]],[[822,367],[-1,0],[0,1]],[[825,334],[0,-1],[-1,1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[0,1],[1,0],[0,1],[0,-1],[1,0],[0,1],[0,1],[0,-1],[0,-1],[1,1],[1,0],[-1,0],[0,1],[1,0],[0,-1],[0,1],[0,1],[0,1],[0,1]],[[825,335],[1,-1],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[0,1],[-1,0],[0,1],[0,1]],[[829,335],[-1,-1],[0,-1],[0,1],[0,1],[-1,0],[0,-1],[0,1],[0,1],[-1,0],[-1,-1]],[[825,418],[0,1],[-1,0],[0,-1],[1,0]],[[826,423],[-1,0]],[[826,422],[0,1]],[[825,422],[1,0]],[[825,423],[1,-1],[0,1]],[[840,364],[-1,0],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,2],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[1,-1],[1,0],[0,1],[0,1],[0,-1],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0],[0,-1],[0,1],[0,1],[0,1],[-1,0],[-1,0],[0,-1],[1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[0,-1],[-1,-2],[0,-1],[0,-1],[-1,0],[0,1],[0,-1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0],[1,-1],[0,1],[1,0],[1,0],[0,-1],[0,1],[1,0],[1,0],[1,0],[1,-1],[0,-1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[1,0],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,0],[0,1],[0,-1],[0,1],[-1,0],[-1,0],[0,-1],[-1,1],[-1,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,1],[-1,0],[0,-1],[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,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],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[-1,0],[0,-1],[0,-1],[1,0],[0,-1],[-1,0],[0,-2],[1,-1],[0,-1],[0,1],[1,0],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-2],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[1,0],[0,-1],[0,1],[1,0],[1,0],[0,-1],[0,1],[0,1],[0,1],[-1,1],[1,0],[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],[-1,0],[0,1],[1,1],[0,1],[1,1],[0,-1],[1,0],[0,-1],[0,-2],[0,-1],[-1,0],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[1,0],[1,0]],[[840,365],[-1,0],[0,-1],[1,0]],[[840,363],[0,1],[0,1]],[[840,362],[0,1]],[[839,361],[1,1]],[[838,359],[-1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[0,-1]],[[829,326],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[1,-1],[0,-1],[1,0],[1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[0,-1]],[[831,332],[0,-1]],[[840,335],[-1,-1],[0,-1],[-1,-1],[-1,1],[-1,0],[0,-1],[-1,0],[0,1],[0,1],[-1,0],[-1,1],[-1,0],[0,-1],[-1,-1],[0,-1]],[[840,335],[0,1],[-1,0],[0,-1],[1,0]],[[840,334],[0,1]],[[840,333],[-1,0],[1,1]],[[840,332],[0,1]],[[831,331],[1,0],[1,0],[1,-1],[1,0],[0,1],[1,0],[1,-1],[0,1],[1,0],[1,0],[0,1],[1,0]],[[833,343],[1,0],[-1,1],[0,-1]],[[834,342],[0,-1],[1,0],[0,1],[-1,0]],[[836,318],[1,0],[0,1],[-1,-1]],[[838,359],[0,-1],[0,-1],[0,-2],[1,0]],[[839,361],[0,-1],[-1,0],[0,-1]],[[839,357],[0,1],[0,1],[0,1],[0,1]],[[839,355],[0,1],[0,1]],[[839,356],[0,-2],[0,-1],[1,0],[0,1],[0,1],[1,1]],[[839,357],[0,-1]],[[840,362],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1]],[[841,356],[-1,1],[0,1],[0,1],[0,1],[1,-1],[0,1],[0,1],[-1,0],[0,1]],[[839,317],[0,-1],[1,0],[0,1],[1,0],[0,1],[0,1],[-1,-1],[0,-1],[-1,0]],[[840,383],[0,-1],[0,1],[0,1],[1,0],[0,-1],[0,-1],[-1,0],[1,0],[0,1],[0,-1],[0,1],[1,0],[0,1],[-1,1],[0,-1],[0,-1],[0,1],[0,1],[-1,0],[0,-1],[0,-1]],[[840,363],[1,0],[0,1],[0,1],[-1,0]],[[840,334],[1,0]],[[841,335],[-1,0]],[[841,334],[0,1]],[[841,334],[0,-1],[0,-1],[0,1],[1,0]],[[841,334],[1,0],[0,1],[-1,0]],[[843,335],[-1,0],[0,-1],[-1,0]],[[842,333],[0,1],[1,1]],[[841,321],[0,-1]],[[841,320],[1,0],[1,0],[0,1],[1,0],[0,1],[1,1],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,1],[1,1],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0]],[[843,335],[0,-1],[-1,-1]],[[844,335],[-1,0]],[[844,334],[0,1]],[[842,333],[1,0],[1,1]],[[844,335],[0,-2],[1,1],[1,0],[0,1],[-1,0],[-1,1],[0,-1]],[[850,422],[0,-2],[1,0],[0,1],[-1,1]],[[850,422],[1,0],[0,1],[0,1],[0,1],[0,1],[0,-1],[-1,-1],[1,0],[0,-1],[0,-1],[-1,0]],[[847,381],[-1,0],[-1,1],[-1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,1],[1,-1],[0,1],[1,0]],[[847,380],[0,1]],[[847,380],[0,1],[0,-1]],[[847,380],[0,-1],[1,1],[1,0],[-1,0],[-1,0]],[[848,336],[0,1],[1,0],[1,0],[0,1],[1,0],[-1,1],[-1,0],[0,-1],[-1,1],[0,-1],[0,-2]],[[848,378],[0,-1],[0,-1],[1,0],[0,1],[-1,0],[0,1],[0,1],[0,-1]],[[848,371],[1,-2],[0,-2],[1,0],[0,-1],[1,0],[0,1],[1,0],[0,1],[0,1],[-1,0],[0,1],[1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0]],[[852,339],[1,0],[0,1],[-1,0],[0,-1]],[[852,390],[0,1],[0,-1],[0,-1]],[[853,391],[-1,-1]],[[854,388],[-1,0],[0,1],[0,1],[0,1]],[[852,389],[1,-1],[0,-1],[0,1],[0,-1],[1,0],[0,1]],[[853,384],[0,-1],[-1,0],[0,-1],[0,-1],[1,0],[1,0],[1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1]],[[854,388],[1,0],[0,-1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[0,1],[-1,0],[0,1],[0,1],[-1,1],[0,1],[0,1],[1,1],[0,3],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[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,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1]],[[853,391],[1,0],[0,-1],[0,-1],[0,-1]],[[853,335],[1,-1],[0,1],[0,1],[-1,0],[0,-1]],[[855,368],[1,1],[0,1],[1,0],[0,-1],[1,0],[0,-1],[0,1],[1,0],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,-1],[0,2],[0,1],[0,1],[0,-1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,-1],[0,1],[-1,0],[0,1],[-1,0],[-1,-1],[0,1],[-1,0],[-1,0],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[854,368],[0,1],[0,1],[0,1],[1,0],[0,-1],[0,-1],[0,-1]],[[854,368],[0,-1],[0,-1],[0,1],[1,0]],[[855,368],[-1,0]],[[855,367],[0,1]],[[855,367],[-1,-1],[1,0],[0,1]],[[855,409],[0,-1],[0,-1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[-1,-1],[0,-1],[0,-1]],[[855,367],[1,0]],[[856,368],[-1,0]],[[856,367],[0,1]],[[855,342],[1,0],[0,1],[-1,-1]],[[856,335],[0,-1],[1,0],[0,1],[-1,0]],[[858,393],[0,-1],[0,-1],[1,0],[0,1],[-1,0],[0,1]],[[858,337],[0,-1],[1,0],[0,1],[0,1],[0,-1],[-1,0]],[[859,379],[1,-1],[1,0],[0,1],[0,1],[0,1],[-1,-1],[-1,0],[0,-1]],[[859,384],[1,0],[-1,1],[0,-1]],[[862,390],[1,0],[0,1],[0,1],[-1,1],[0,-1],[-1,0],[0,-1],[0,1],[0,-1],[-1,0],[1,0],[0,-1]],[[862,390],[0,1],[0,1],[-1,0],[1,0],[0,-1],[0,-1]],[[861,390],[1,1],[0,-1]],[[862,386],[0,1],[-1,0],[0,-1],[1,0]],[[861,390],[0,-1],[1,0],[0,1]],[[862,390],[-1,0]],[[863,386],[-1,0]],[[862,383],[1,0],[0,1],[0,1],[0,1]],[[862,386],[0,-1],[0,-1],[0,-1]],[[862,334],[0,-1],[0,1],[1,0],[0,1],[-1,0],[0,-1]],[[863,340],[-1,0],[1,-1]],[[863,339],[0,1]],[[863,386],[0,-1],[0,-1],[-1,-1]],[[891,372],[-1,0],[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,0],[0,1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,1],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,-1],[-1,0],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,-1],[0,-1],[1,-1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,2],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,0],[-1,0],[0,-1]],[[891,326],[0,15],[0,1],[0,1],[0,1],[0,1],[0,3],[0,7],[0,17]],[[885,333],[1,0],[1,0],[1,0],[0,1],[1,1],[-1,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0]],[[885,333],[0,-1],[0,1]],[[885,333],[0,1],[0,1],[0,-1],[0,-1]],[[884,332],[0,1],[1,0]],[[884,342],[0,-1],[1,-1],[1,0],[0,-1],[-1,1],[0,-1],[0,1],[-1,0],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[0,1],[0,1],[0,1],[-1,0],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[1,0],[1,0],[0,-1],[0,1],[1,0]],[[885,342],[-1,0]],[[885,342],[1,0],[0,-1],[-1,0],[0,1]],[[884,343],[1,0],[0,-1]],[[869,363],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[1,0],[0,-1],[0,-1],[1,0],[-1,0],[0,-1],[1,0],[0,-1],[1,1],[1,0],[-1,0],[0,-1],[0,-1],[1,-1],[0,-1],[1,0],[1,0],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[1,-1],[1,-1],[0,-1],[1,0],[0,-1],[1,-1],[0,1],[0,-1],[0,-1],[0,-1],[0,1],[0,-1],[0,-1],[0,-1],[1,-1],[-1,0],[1,0],[0,-1],[0,-1],[0,-1],[0,-1]],[[863,383],[1,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[1,0],[0,1],[0,-1],[1,0],[1,1],[0,-1],[1,0],[0,1],[1,0],[0,-1],[-1,0],[1,0],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[-1,0],[0,1],[0,-1],[0,1],[-1,0],[0,1],[-1,0],[0,-1],[0,-1],[-1,-1],[0,1],[-1,0],[-1,0],[1,-2],[0,1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[-1,-1],[1,-1],[0,-1],[0,-1],[1,0]],[[862,383],[1,-1],[1,0],[-1,0],[0,1]],[[863,339],[0,-1],[0,-1],[0,-1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1]],[[864,342],[0,-1],[-1,-1]],[[868,351],[-1,1],[0,1],[0,-1],[0,-1],[0,-1],[1,1]],[[868,351],[0,-1],[0,1]],[[868,351],[0,1],[0,1],[1,1],[0,1],[-1,0],[0,-2],[0,-1],[0,-1]],[[869,363],[0,-1],[1,0],[-1,1]],[[871,348],[0,-1],[0,-1],[0,-2],[0,-1],[1,0],[0,1],[0,1],[0,1]],[[872,348],[-1,0]],[[872,347],[0,1]],[[872,346],[0,1]],[[872,349],[-1,0],[0,-1]],[[872,348],[0,1]],[[873,350],[0,1],[0,1],[0,1],[-1,0],[0,-1],[0,-1],[0,-1]],[[872,349],[0,1],[1,0]],[[872,350],[0,-1]],[[873,347],[0,1],[0,1],[0,1]],[[872,347],[1,0]],[[873,346],[0,1]],[[872,346],[1,0]],[[873,385],[1,-1],[0,1],[-1,0]],[[875,387],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[0,1],[-1,0],[0,1],[0,1],[-1,1],[-1,0]],[[875,380],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[0,-1]],[[885,332],[0,1],[-1,0],[0,-1]],[[884,332],[0,-1],[1,0],[0,1]],[[884,342],[1,0],[0,1],[-1,0],[0,-1]],[[623,680],[0,-2],[-1,0],[-1,0],[1,0],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[-1,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,-1],[0,-1]],[[624,680],[-1,0],[0,1],[0,-1]],[[649,663],[0,-1],[0,-2],[0,-1],[-1,0],[1,0],[0,1],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,2],[0,1]],[[669,650],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[-1,0],[-1,0],[-1,2],[0,1],[-1,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[0,1],[0,1],[-2,1],[-1,0],[1,1],[-1,1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,1]],[[670,574],[0,1],[0,1],[0,1],[0,2],[0,1],[1,1],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,1],[0,1],[0,1],[-1,0],[-1,0],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[-1,2],[0,1]],[[653,587],[0,1],[1,0],[1,1],[1,0],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-2],[0,-1],[0,-1],[1,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,1]],[[653,586],[0,1]],[[634,610],[1,0],[0,1],[0,1],[0,1],[1,0],[0,-1],[-1,0],[0,1],[0,-1],[1,-1],[0,-1],[1,0],[0,1],[1,0],[0,-1],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[1,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,-1],[1,0],[0,-1],[1,1],[0,-1],[1,-1],[1,2],[1,0]],[[633,610],[1,0],[0,-1],[0,1]],[[623,661],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[-1,-1],[1,0],[-1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[1,0],[0,-1],[-1,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[-1,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[1,0],[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,-3],[0,-1],[1,0],[0,-1],[0,-1],[0,-1]],[[624,662],[-1,-1]],[[653,586],[0,-1],[-1,0],[0,-1],[1,0],[0,1],[1,0],[0,1]],[[654,587],[0,-1],[-1,0]],[[654,586],[1,0],[0,1],[0,1],[-1,-1]],[[653,586],[1,0],[0,1],[-1,-1]],[[617,661],[-2,-3],[-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,-2],[0,-1],[-1,-1],[-1,-2],[-1,0],[0,-1],[-1,-1],[-1,0],[-1,-2]],[[617,662],[0,-1]],[[623,661],[-1,0],[0,-1],[0,1],[0,1],[0,1],[-1,0],[0,-1],[-1,0],[-1,1],[-1,0],[-1,-1]],[[624,662],[-1,0],[0,-1]],[[634,609],[0,1],[-1,0]],[[633,609],[1,0]],[[633,610],[0,-1]],[[632,610],[1,0]],[[628,603],[0,1],[1,0],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[1,0],[1,0]],[[608,626],[1,-1],[1,0],[1,-1],[3,-4],[2,-2],[2,-4],[1,-1],[2,-4],[2,-5],[4,-1],[1,0]],[[607,635],[1,-7],[-1,0],[0,-1],[1,0],[0,-1]],[[472,784],[1,0],[-1,-1],[0,-1],[1,0],[-1,0],[-1,0],[0,-1],[1,0],[0,-1],[1,0],[0,1],[0,-1],[1,0],[1,0],[0,-1],[-1,0],[1,0],[-1,0],[-1,-2],[0,-1],[0,-1],[-1,0],[1,0],[1,0],[0,1],[1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[1,-1],[-1,0],[-1,1],[0,-1],[-1,0],[1,-1],[1,1],[0,-1],[-1,0],[0,-1],[0,-1],[0,1],[0,-1],[1,0],[1,1],[-1,-1],[0,-1],[-1,0],[1,0],[1,0],[0,1],[0,-1],[-1,0],[0,-1],[1,1],[0,-1],[-1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[-1,1],[1,0],[0,-1],[1,1],[1,1],[-1,0],[1,0],[0,1],[1,0],[0,1],[0,-1],[1,0],[1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[-1,0],[1,0],[0,1],[0,2],[0,1],[-1,0],[0,1],[1,0],[0,1],[-1,1],[0,1],[0,1],[1,0]],[[472,785],[0,-1]],[[477,789],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[0,1],[-1,0],[0,1],[-1,0],[0,-1],[-1,-1],[1,0],[0,1],[0,-1],[0,-1]],[[479,793],[-1,1],[0,-1],[0,1],[-1,0],[0,-1],[-1,-1],[1,0],[-1,-1],[-1,-1],[1,0],[1,0],[0,-1]],[[479,792],[-1,0],[0,1],[1,0]],[[479,793],[0,-1]],[[480,794],[0,1],[-1,0],[0,-1],[0,-1]],[[482,786],[-1,0],[0,-1],[0,1],[0,1],[0,1],[-1,0],[0,-1],[-1,-1],[-1,0],[0,1],[-1,1],[0,1],[1,0],[0,1],[1,1],[0,1],[0,1],[1,0],[0,1]],[[483,785],[-1,0],[0,1]],[[594,620],[0,-1]],[[595,622],[0,-1],[0,-1],[-1,0]],[[596,626],[-1,-1],[0,-1],[0,-1],[0,-1]],[[596,628],[0,-1],[0,-1]],[[597,632],[-1,0],[0,-1],[0,-1],[0,-2]],[[598,633],[-1,-1],[0,1],[0,-1]],[[598,633],[0,1],[0,-1]],[[598,630],[0,1],[0,1],[0,1]],[[598,628],[0,1],[0,1]],[[598,628],[0,-1],[0,1]],[[597,623],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,-1],[1,0]],[[597,620],[-1,0],[0,1],[0,1],[1,1]],[[598,621],[-1,0],[0,-1]],[[597,620],[1,0],[0,1]],[[596,610],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[-1,0],[0,1],[0,1]],[[596,608],[0,1],[0,1]],[[596,610],[0,-2],[0,-1],[0,-1],[0,1],[0,1]],[[522,688],[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],[1,0],[0,1],[0,1],[0,1],[1,-1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,1],[0,-1],[0,-1]],[[527,704],[0,-1],[1,0],[0,1],[-1,0]],[[543,671],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,1],[0,1],[0,-1],[-1,0],[0,1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[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],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[1,0]],[[543,670],[0,1]],[[529,733],[-1,-1],[1,0],[0,-1],[-1,0],[0,1],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[-1,0],[0,1],[0,-1],[-1,0],[0,1],[-1,1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[1,0],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,1],[-1,0],[0,-1],[-1,0]],[[537,725],[1,0],[0,-1],[-1,0],[1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,-1],[0,1],[0,1],[1,1]],[[543,670],[0,-1],[0,-1],[1,0],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[1,0],[1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[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,0],[0,-1],[1,0],[0,-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],[-1,1],[-1,1],[0,1],[-1,1],[-1,0],[-1,1],[0,1],[-1,0],[0,1],[1,0],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,2],[0,1],[0,1],[-1,0],[0,1],[-1,1],[-1,1],[0,1],[0,2],[-1,0],[0,1],[0,1],[1,0],[0,1],[0,-1],[0,1],[0,1],[-1,1],[0,1],[1,1],[0,1],[0,-1],[1,0],[0,1],[1,0],[0,1],[1,0]],[[520,711],[1,0],[1,1],[0,1],[1,1],[0,1],[1,0],[1,0],[0,-1],[1,-1],[1,0],[0,-1],[1,0],[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,1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,-1],[1,-1],[0,1],[1,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[1,-1],[-1,0],[1,0],[1,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1]],[[534,712]],[[476,448],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[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]],[[477,466],[0,1],[0,-1]],[[484,468],[-1,0],[0,-1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,-1],[0,-1],[-1,0],[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,-1]],[[484,468],[0,1],[0,-1]],[[492,461],[0,1],[0,-1]],[[491,430],[0,1],[0,-1]],[[490,430],[0,1],[0,1],[1,0],[-1,-1],[1,-1]],[[478,425],[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],[0,-1],[1,1],[-1,0],[1,0],[0,-1],[1,0],[0,1],[1,0],[1,0],[-1,0],[-1,0],[1,0],[0,1],[1,0],[1,0],[0,-1],[0,1],[0,-1],[-1,0],[1,0],[0,-1],[1,0]],[[282,526],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[0,1],[1,0],[0,1],[1,-1],[1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,1],[0,-1],[-1,0],[0,-1]],[[843,569],[-1,0],[0,-1],[1,0]],[[843,568],[0,1]],[[843,568],[1,0],[0,1],[0,1],[0,-1],[-1,0]],[[846,571],[1,0],[0,1],[-1,0],[0,-1]],[[853,582],[0,-1],[1,1],[-1,0],[1,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1]],[[856,628],[1,1],[-1,0],[0,1],[0,-1],[0,-1]],[[857,597],[1,-1],[0,1],[0,1],[1,0],[0,1],[0,-1],[-1,0],[0,-1],[-1,0]],[[858,641],[-1,-1],[0,-1],[1,0],[0,1],[0,1]],[[859,634],[-1,0],[0,-2],[0,1],[1,1]],[[859,634],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[-1,0],[0,1],[0,1],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[1,0],[0,1],[0,-1],[0,-1]],[[862,638],[-1,0],[0,-1],[0,-1],[0,-1],[-1,1],[0,-1],[0,-1],[0,1],[-1,0],[0,-1]],[[860,625],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[-1,0],[0,-1],[0,-1],[1,0],[1,1],[-1,0],[0,1],[0,1],[0,1],[1,0],[0,-1],[-1,0],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[1,1],[-1,0],[1,1],[0,-1],[0,1],[1,0],[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],[-1,0],[0,1],[1,1],[-1,1],[0,-1],[-1,0],[0,1],[-1,1],[0,1]],[[861,627],[0,-1],[0,-1],[-1,0]],[[861,628],[0,-1]],[[861,628],[0,1],[0,-1]],[[860,628],[1,1],[0,1],[-1,0],[0,1],[0,1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1]],[[860,627],[1,0]],[[860,627],[0,1]],[[861,627],[0,1],[-1,0]],[[862,612],[1,2],[0,1],[0,1],[-1,-1],[0,-1],[0,-1],[0,-1]],[[874,641],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[-1,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,-1],[0,-1],[0,-1],[0,1],[0,-1],[1,0],[0,1],[0,-1],[-1,-1],[1,0],[0,1],[1,0],[0,-1],[1,0],[0,1],[0,-1],[1,0],[0,1],[0,1],[1,2],[1,-1],[-1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[1,0],[0,-1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[-1,2],[0,1],[0,2],[1,2],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[1,1],[0,1],[1,0],[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],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[-1,-1],[0,1],[-1,1],[0,-1],[0,-2],[1,0],[0,1],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[0,-1],[-1,1],[0,1],[0,1],[0,-1],[0,1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[1,0],[-1,0],[1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,1],[0,-1],[1,0],[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],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,-2],[-1,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,1],[0,1],[0,1],[1,1],[0,1],[-1,0],[0,-1],[-1,-1],[1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,1],[0,-1],[-1,1],[0,1],[1,0],[-1,0],[0,1],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,-1],[0,1],[-1,-1],[0,1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[0,1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1]],[[874,642],[0,-1]],[[874,643],[0,1],[1,0],[0,-1],[0,-1],[-1,0]],[[871,642],[0,1],[1,1],[1,0],[1,-1]],[[867,641],[1,0],[0,-1],[1,1],[0,1],[0,-1],[0,1],[1,0],[1,0]],[[867,641],[0,-1],[0,1]],[[866,640],[0,1],[1,0]],[[866,638],[0,2]],[[866,637],[0,1]],[[862,638],[1,1],[0,-1],[1,0],[0,1],[1,0],[0,-1],[0,-1],[1,0]],[[867,638],[0,-1],[0,-1],[-1,-1],[-1,-1],[1,0],[0,1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,-1],[0,1],[0,-1],[0,1],[0,1],[0,1],[1,1],[0,1],[1,1],[1,0],[0,-1],[0,-1],[0,1],[1,1],[0,1],[0,1],[1,0],[0,1],[0,1],[-1,0],[1,0],[0,1]],[[867,639],[0,-1]],[[873,640],[-1,0],[0,1],[-1,0],[-1,-1],[0,-1],[0,-1],[-1,0],[0,1],[0,-1],[-1,0],[0,1],[-1,0]],[[866,640],[1,-1]],[[867,640],[0,1],[-1,-1]],[[867,639],[0,1]],[[871,642],[1,0],[0,1],[-1,-1]],[[874,643],[-1,-1],[0,-1],[0,-1]],[[874,642],[0,1]],[[874,641],[-1,0],[0,1],[1,0]],[[873,640],[0,1],[1,0]],[[883,667],[0,-1],[0,1],[1,1],[0,1],[0,-1],[-1,0],[0,1],[0,1],[1,0],[-1,0],[0,-1],[0,-1],[0,-1]],[[902,709],[0,1],[0,1],[0,1],[1,1],[0,1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,1],[-1,1],[-1,0],[-1,1],[-1,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,-1],[-1,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[1,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,1],[-1,0],[-1,1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,1],[0,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],[1,0],[0,1],[1,0],[0,-1],[0,-1],[1,1],[1,1],[0,1],[1,0],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,1],[1,1],[0,-1],[1,0],[0,1],[0,-1],[1,1],[0,1],[1,0],[0,1],[1,0],[0,1],[-1,-1],[-1,0],[1,0],[-1,1],[0,1]],[[596,608],[0,-1],[0,-1]],[[598,627],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[598,628],[0,-1]],[[607,635],[0,-1],[-1,0],[-1,-1],[-1,-2],[0,-1],[-1,0],[-1,-2],[-1,-1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0]],[[596,605],[1,0],[1,0],[1,-1],[1,1],[0,1],[1,3],[1,0],[1,1],[1,2],[1,2],[-2,3],[0,2],[-1,2],[1,1],[1,0],[0,1],[1,0],[1,1],[1,1],[1,0],[0,1]],[[641,766],[-1,1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[1,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,1],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-2],[0,-2],[0,-1],[0,-1],[0,-1],[-1,-2],[0,-1],[0,-1],[1,0],[1,-1],[-1,-1],[0,-1],[1,-1],[0,-1],[0,1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,-2],[0,-1],[-1,0],[-1,0],[0,-1],[1,0],[0,-1],[1,-1]],[[641,767],[0,-1]],[[641,767],[0,1],[0,-1]],[[651,761],[-1,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,1],[0,1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,1],[1,0],[0,1],[-1,0],[-1,0]],[[651,758],[0,1],[0,1],[0,1]],[[657,719],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[-1,1],[0,1],[-1,0],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[1,0],[0,1],[0,1],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,-1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,-1],[0,1],[1,0],[1,0],[0,1],[0,1],[1,0],[0,1],[-1,0],[0,1],[0,1],[0,1]],[[655,691],[0,1],[0,1],[0,2],[0,2],[0,1],[0,2],[0,2],[0,2],[0,2],[0,2],[0,2],[0,4],[0,2],[0,2],[1,0],[0,1],[1,0]],[[645,695],[1,2],[1,0],[0,1],[1,0],[1,1],[1,0],[0,-1],[1,-1],[1,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[1,0]],[[647,727],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[1,-1],[0,-1],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[-1,0],[0,-1],[-1,0],[0,1],[0,1],[-1,-1],[0,1],[-1,0],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[1,-1],[1,0],[0,-1],[0,-2],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1]],[[647,728],[0,-1]],[[636,728],[0,1],[1,0],[0,-1],[0,1],[0,1],[0,-1],[0,1],[1,0],[0,-1],[0,1],[1,0],[0,1],[0,1],[1,0],[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],[0,-1],[0,-1]],[[651,761],[1,0],[0,-1],[0,-1],[0,-1],[-1,0]],[[684,788],[-1,0],[-1,0],[0,-1],[0,-1],[-1,-1],[0,1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[0,1],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[0,1],[-1,1],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[1,0],[0,-1],[1,0],[0,-1],[0,1],[-1,0],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[1,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[1,0],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,-1],[0,-1],[-1,0],[0,1],[-1,0],[-1,1],[0,1],[0,1],[-1,0],[0,1],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[-1,0],[1,0],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,1],[-1,1],[0,1],[-1,1],[-1,0],[0,-1]],[[673,760],[1,0],[1,0],[1,1],[0,-1],[0,1],[1,0],[1,0],[0,1],[1,-2],[-1,-1],[0,-1],[1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0],[-1,0],[0,1],[-1,1],[1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[2,1],[0,2],[0,1],[1,0],[0,1],[-1,0],[0,1],[1,0],[-1,0],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[-1,0],[0,1],[0,1],[0,1],[0,1]],[[673,760],[0,1],[0,-1]],[[683,699],[5,6],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[-1,1],[0,1],[-1,1],[0,6],[-1,0],[0,1],[0,1],[1,2],[-1,1],[0,1],[0,1],[-2,0],[-2,0],[-1,1],[0,1],[-1,0],[-1,2],[-2,1],[-1,1],[-1,1],[-1,0],[1,2],[2,2],[1,2],[0,2],[-1,1],[0,1],[-1,0],[0,1],[-1,0],[0,2],[-1,1],[-1,1],[0,1],[1,0],[-1,1],[0,1],[1,0],[-1,1],[1,0],[0,1],[0,1],[1,-1],[0,1],[-1,2],[0,1],[-1,1],[0,1],[0,1]],[[657,719],[1,1],[1,0],[1,1],[1,0],[0,1],[1,0],[3,-4],[4,-6],[1,-1],[1,-2],[0,-1],[1,-1],[1,0],[1,0],[1,1],[1,0],[0,-1],[1,0],[2,0],[1,1],[1,-2],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,1],[0,-2],[0,-1],[0,-1]],[[684,788],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[1,0],[-1,0],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[0,-2],[-2,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[-1,0],[1,-1],[0,-1],[1,0],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,1],[1,1],[-1,2],[0,-1],[-1,0],[-1,0],[0,-1],[0,1],[-1,-1],[-1,0],[-1,0],[0,-1],[0,-1],[1,-1],[0,-1],[1,-2],[0,-1],[-1,1],[0,-1],[0,-1],[-1,0],[1,-1],[-1,0],[0,-1],[1,-1],[-1,0],[0,-1],[1,-1],[1,-1],[0,-2],[1,0],[0,-1],[1,0],[0,-1],[1,-1],[0,-2],[-1,-2],[-2,-2],[-1,-2],[1,0],[1,-1],[1,-1],[2,-1],[1,-2],[1,0],[0,-1],[1,-1],[2,0],[2,0],[0,-1],[0,-1],[1,-1],[-1,-2],[0,-1],[0,-1],[1,0],[0,-6],[1,-1],[0,-1],[1,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-5,-6]],[[696,792],[0,-1],[-1,1],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[0,-1],[0,-1],[0,1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0]],[[696,792],[0,1],[0,-1]],[[711,784],[-1,0],[0,-1],[-1,-1],[0,-1],[0,1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,1],[-1,0],[-1,0],[0,-1],[-1,0],[0,1],[0,1],[1,1],[0,1],[-1,-1],[0,1],[-1,0],[0,1],[-1,0],[0,-1],[1,0],[-1,0],[0,-1],[0,1],[0,1],[-1,0],[1,1],[-1,1],[0,-1],[0,-1],[0,1],[-1,0],[0,-1],[-1,0],[0,1],[0,-1],[-1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[-1,0],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,-1],[-1,0]],[[743,747],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[1,0],[0,1],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,1],[-1,0],[-1,0],[0,1],[0,1],[-1,1],[1,0],[0,1],[-1,0],[-1,1],[-1,1],[0,1],[0,1],[0,1],[-1,1],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,1],[-1,2],[-1,2],[0,1],[0,1],[-1,3],[-1,2],[0,1],[0,1],[-1,0],[0,1],[-1,2],[0,1],[0,1],[-1,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,1],[0,1],[1,0],[0,1],[0,1],[0,-1],[-1,0],[-1,0],[-1,-1]],[[743,747],[0,-1],[0,1]],[[697,698],[0,1],[0,1],[1,1],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0],[1,-1],[0,-1],[1,0],[1,-1],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,1],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[1,0]],[[697,697],[-1,1],[1,0]],[[696,696],[0,1],[1,0]],[[683,699],[0,-1],[0,-2],[1,0],[0,-1],[0,-1],[1,-2],[0,-2],[0,-1],[1,0],[1,0],[0,1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[1,-1],[1,-1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,1],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0]],[[593,423],[1,0],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[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,-2],[0,-1],[0,-1],[0,-1],[-1,0],[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,-4]],[[599,426],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-2],[-1,-1]],[[615,421],[0,1],[0,-1],[0,1]],[[614,381],[0,2],[-1,2],[0,2],[0,6],[0,9],[0,8],[0,2],[0,1],[1,2],[0,1],[1,4],[0,1]],[[613,378],[0,1],[1,0],[0,1],[0,1]],[[613,377],[0,1]],[[613,377],[0,-1],[0,1]],[[608,359],[1,2],[0,2],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[-1,1],[1,1],[0,1],[0,1],[1,0],[0,-1],[0,2],[0,1],[1,0]],[[608,359],[0,1],[0,-1]],[[593,386],[1,-1],[1,-1],[0,-1],[2,-2],[1,-2],[1,-1],[0,-1],[1,-1],[1,-1],[1,-2],[1,-1],[0,-1],[1,0],[0,-1],[0,-1],[-1,-1],[1,0],[0,-1],[0,-1],[2,-3],[0,-1],[1,-2],[1,-1]],[[632,608],[0,1],[0,1]],[[633,607],[-1,1]],[[633,599],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[1,2],[1,-1],[0,1]],[[628,603],[1,0],[2,-1],[0,-1],[0,-1],[0,-1],[2,0]],[[633,609],[-1,-1]],[[633,607],[0,1],[0,1]],[[692,682],[0,-1],[1,0],[-1,-1],[0,1],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0]],[[696,682],[0,-1],[-1,-1],[0,1],[0,1],[-1,0],[0,1],[-1,-1],[-1,0]],[[697,683],[0,-1],[-1,0]],[[696,696],[0,-1],[-1,-1],[0,-1],[-1,-1],[1,0],[0,-1],[1,0],[0,1],[0,-1],[0,-1],[1,0],[0,-1],[0,1],[1,-1],[0,1],[0,1],[0,-1],[0,1],[1,0],[-1,1],[1,0],[0,-1],[0,-1],[0,-1],[1,1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[1,0],[0,-1],[-1,0],[-1,-1],[1,0],[-1,0],[0,-1],[-1,0],[0,1],[-1,0]],[[697,697],[1,0],[-1,-1],[-1,0]],[[697,697],[0,1],[0,-1]],[[780,547],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1]],[[780,547],[0,1],[0,-1]],[[782,553],[0,1]],[[797,498],[0,1],[0,1],[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],[0,-1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[1,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,1],[0,1],[-1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,-1],[0,-1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[-1,0],[0,-1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,1]],[[791,496],[0,-1]],[[777,539],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,1],[0,-1],[1,0],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,1],[1,1],[0,1],[0,1],[1,0],[0,1],[1,0],[0,-1],[1,0],[0,-1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[1,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[1,-1],[0,-1],[-1,0],[1,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1]],[[777,539],[0,-1],[0,1]],[[567,813],[0,-1],[0,-1],[1,-2],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,1],[0,1],[-1,0],[0,1],[1,0],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[578,800],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1]],[[558,800],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[0,1],[0,-1],[1,0],[0,1],[1,1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[1,-1],[0,-1],[1,0],[0,-1],[1,0]],[[597,633],[0,-1],[1,1]],[[599,644],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[598,634],[1,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,1],[0,1],[-1,1],[0,1],[-1,0]],[[598,633],[0,1]],[[574,175],[1,0],[0,-2],[0,-1],[1,-1],[0,-1],[1,0],[0,1],[0,1],[1,1],[0,1],[1,0],[1,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[-1,1],[0,1],[-1,1],[0,1],[-1,1],[-1,-1],[0,1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1]],[[471,454],[0,-2],[-1,0],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,0],[1,0]],[[471,455],[0,-1]],[[478,426],[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,0],[0,1],[-1,0],[0,1],[-1,0],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[468,443],[0,-1],[1,-1],[0,-1],[0,-1],[1,-1],[1,0],[0,-1],[0,-1],[1,-2],[1,-1],[0,-1],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[1,0]],[[526,612],[-1,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[1,-1],[0,-1],[0,-1],[0,-2],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[1,0],[0,-3],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,1],[0,-1],[1,0],[1,0],[0,-1],[1,-2],[0,-1],[0,-2],[1,-1]],[[531,633],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[-1,-2],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,0]],[[569,622],[0,1],[0,1],[-1,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,2],[0,1],[-1,0],[0,1],[-1,0],[-1,1],[0,-1],[0,1],[-1,0],[0,-1],[-1,0],[0,-1],[0,1],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,-2],[0,-1],[-1,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,-1],[-1,0],[0,1],[-1,0],[0,1],[-1,1],[0,1],[-1,0],[0,1],[-1,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,1],[0,2],[0,1],[0,1],[0,1],[-1,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[-1,1],[-1,0]],[[569,552],[0,1],[0,1],[0,10],[0,3],[0,2],[0,3],[0,2],[0,3],[0,4],[0,4],[0,1],[0,2],[0,1],[0,3],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,5],[0,2],[-1,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1]],[[566,534],[0,3],[0,1],[1,0],[1,0],[1,0],[0,7],[0,7]],[[533,563],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,-1],[1,-2],[0,1],[1,1],[1,0]],[[558,800],[0,-1],[0,-1],[0,-1]],[[563,788],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1]],[[563,788],[0,-1],[0,1]],[[559,794],[1,0],[0,-1],[1,-1],[0,1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1]],[[558,797],[1,-1],[0,-1],[0,-1]],[[561,700],[-1,0],[0,-1],[-1,0],[0,1],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1]],[[562,700],[-1,0]],[[637,270],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[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,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,-1],[0,1],[0,1],[-1,-1],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,1],[-1,0],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,1],[0,-1],[-1,0],[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],[0,-1],[-1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,1],[0,1],[0,1],[0,1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[1,1],[0,1],[-1,1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[0,1],[0,-1],[-1,1],[0,-1],[0,-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],[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],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[-1,0],[0,-2],[1,-1],[-1,-1],[0,-1],[0,-2],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-2],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[1,0],[-1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,1],[1,1],[0,1],[1,0],[1,0],[0,1],[1,1],[0,1],[1,2],[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],[1,1],[0,1],[0,2],[0,2],[0,1],[1,2],[0,1],[0,1],[0,1],[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],[1,0],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[1,0],[-1,1],[0,1],[0,1],[1,2]],[[637,269],[0,1]],[[591,324],[0,-1],[0,-1],[1,-1],[-1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[1,0],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[1,0]],[[590,325],[1,-1]],[[591,324],[0,1],[-1,0]],[[596,309],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,3],[-1,1],[0,1],[0,1],[-1,1],[0,-1],[0,-1],[0,1],[-1,0],[-1,1],[0,-1]],[[591,292],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[1,1],[0,-1],[1,0],[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],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[1,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,3],[0,1],[0,1],[0,1],[1,1],[-1,0],[0,1],[0,1],[0,3],[-1,0],[0,1],[0,2],[-1,1],[0,1],[0,1],[-1,0],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[1,0]],[[591,292],[0,1],[0,-1]],[[775,439],[0,-1],[1,0],[0,1],[-1,0]],[[782,437],[0,1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,1],[-1,0],[0,-1],[0,-1],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,-1],[0,1],[-1,0],[0,1],[0,-1],[0,-1]],[[777,432],[1,-1],[0,-1],[-1,0],[0,-1],[1,-1],[0,-1],[0,-1],[0,-2],[0,-1],[1,-1],[-1,0],[0,-1],[0,-1],[1,0],[0,1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[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],[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],[-1,0],[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],[-1,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,-1]],[[777,439],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[803,406],[0,1],[0,1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-2],[1,-1],[0,1],[0,1],[1,0],[1,0],[0,-1],[1,1],[0,-1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,1]],[[808,410],[-1,1],[0,-1],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[0,-2],[0,-1],[0,-1],[1,0],[-1,0],[0,1],[-1,0],[0,1],[0,-1],[0,1],[-1,0],[0,1],[0,-1],[-1,0],[0,1],[-1,0]],[[808,413],[0,-1],[0,-1],[0,-1]],[[824,441],[0,1],[0,1],[0,-1],[-1,0],[0,-1],[0,-1],[0,1],[0,1],[0,1],[0,1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,-2],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[-1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,1],[0,2],[0,1],[-1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[-1,-1],[0,-1],[-1,1],[0,1],[0,1],[0,1],[-1,0],[0,-1],[0,-1],[-1,-2],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,-1],[-1,-1],[-1,0],[-1,-1]],[[827,427],[0,1],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[0,1],[-1,0],[-1,1],[0,1],[0,1],[-1,0],[0,-1],[-1,0],[0,1],[1,0],[-1,1],[0,1],[0,-1],[-1,0],[0,1],[0,1],[0,1],[1,0],[-1,0],[0,1],[-1,1]],[[828,426],[-1,0],[0,1]],[[826,424],[1,0],[1,1],[0,-1],[0,1],[0,1]],[[825,424],[0,1],[1,-1]],[[826,424],[-1,0]],[[826,423],[0,1]],[[827,427],[1,-1]],[[828,426],[0,1],[-1,0]],[[466,500],[0,-1],[0,1]],[[486,574],[-3,0],[-1,0],[-1,0],[0,-3],[0,-1],[0,-2],[1,-2],[0,-5],[0,-2],[0,-1],[0,-1],[0,-5],[0,-1],[0,-2],[0,-1],[0,-2],[1,-1],[0,-2],[0,-1],[0,-3],[0,-2],[0,-2],[0,-2],[0,-1],[0,-1],[0,-2],[0,-1],[0,-3],[0,-1],[1,-2],[0,-4],[0,-4],[0,-2],[1,-1],[0,-1],[0,-1],[-1,-1],[0,-3],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,1],[-1,-1],[-1,-1],[0,-1],[0,1],[-1,1],[0,1],[0,1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0]],[[500,501],[1,0],[1,0],[0,1],[1,1],[2,1],[1,0],[1,0],[1,0],[0,1],[1,-1],[0,1],[1,1],[0,1],[0,1],[0,1],[1,2],[0,3],[0,1],[0,1],[0,2],[0,1],[0,2],[0,2],[0,5],[0,1],[0,2]],[[484,468],[0,1],[0,-1],[0,1]],[[466,500],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[-1,0],[1,-1],[0,1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-2],[0,-1]],[[330,501],[0,-1],[0,-1],[0,-1],[1,0],[0,1],[-1,0],[1,0],[0,1],[-1,0],[0,-1],[0,1],[1,0],[-1,0],[1,0],[-1,0],[0,1]],[[475,590],[0,-2],[0,-1],[0,-3],[0,-2],[0,-1],[-2,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[0,-2],[0,-1],[0,-2],[0,-1],[0,-2],[0,-1],[0,-3],[0,-3],[0,-1],[0,-3],[-1,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-2],[0,-2],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[0,1]],[[454,512],[0,-1],[0,-2],[0,1],[0,1],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,-1],[0,-1],[0,-1],[0,1],[1,0],[-1,0],[1,-1],[1,-1],[0,-2],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[1,0]],[[454,535],[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,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[452,545],[1,1],[0,-1],[0,-3],[1,0],[0,1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-2],[-1,0],[1,-1],[-1,-1]],[[179,597],[1,-1],[0,1],[0,1],[0,1],[-1,0],[0,-1],[0,-1]],[[180,630],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[181,630],[-1,0]],[[197,620],[-2,0],[-1,0],[-1,0],[-2,0],[-1,1],[-1,1],[-1,1],[-1,1],[-1,0],[0,1],[-1,1],[-1,0],[-1,1],[-1,1],[-1,0],[0,1],[0,1]],[[207,544],[0,-1],[0,1],[0,1],[1,0],[0,1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[-1,1],[0,1],[0,2],[0,1],[0,2],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,2],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,1],[0,2],[1,1],[-1,0],[0,1],[0,1],[-1,0],[0,-1],[0,1],[0,1],[-1,0],[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,1],[-1,0],[0,1],[0,3],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,1],[1,0],[-1,1],[0,1],[-1,2],[1,0],[1,0],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,-1],[0,2],[0,2],[0,1],[0,2],[0,1],[0,1],[-1,0],[0,1],[-1,1],[1,1],[0,1],[0,1]],[[188,603],[1,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,1],[0,-1],[1,0],[-1,0],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,-1],[1,0],[0,-2],[0,-1],[1,0],[0,-1],[-1,0],[0,1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,1],[0,-1],[0,-1],[-1,0],[1,0],[0,1],[0,-1],[1,-1],[0,-1],[0,-1],[1,1],[0,-1],[1,0],[-1,0],[0,-1],[0,1],[0,-1],[0,-1],[0,1],[1,0],[0,-1],[0,-1],[0,-1],[0,1],[0,-1],[1,0],[0,-1],[-1,0],[0,1],[0,-1],[1,0],[0,-1],[1,-2],[1,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-2],[1,0]],[[188,605],[0,-1],[0,-1]],[[181,623],[1,0],[0,-1],[0,-1],[1,0],[0,1],[0,1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[1,-1],[0,-1],[-1,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1]],[[180,624],[1,0],[0,-1]],[[182,596],[0,-1],[0,-1],[1,0],[-1,0],[0,1],[0,-1],[-1,0],[0,1],[-1,0],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[0,1],[1,0],[0,-1],[0,1],[0,1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[0,-2],[0,-1]],[[183,596],[-1,0]],[[186,596],[-3,0]],[[192,575],[-1,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,-1],[0,-1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,2],[-1,0],[0,1],[-1,1],[0,1]],[[192,574],[0,1]],[[193,570],[0,-1],[0,-1],[0,1],[0,-1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1]],[[194,569],[-1,1]],[[194,568],[0,1]],[[189,571],[1,0],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-2],[1,0],[0,-1],[0,-1],[0,-1],[1,1],[0,1],[1,1],[0,1],[-1,1],[0,1],[0,1],[-1,1],[1,0],[-1,0],[0,1]],[[188,573],[1,0],[0,-1],[0,-1]],[[188,576],[0,-2],[0,1],[0,-1],[0,-1]],[[188,605],[-1,0],[0,-2],[0,-1],[1,0],[0,1]],[[189,571],[0,-1],[-1,1]],[[188,571],[1,0]],[[192,574],[1,0],[-1,1]],[[194,569],[0,1],[0,-1]],[[194,568],[1,0],[0,1],[-1,0]],[[180,630],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0]],[[181,623],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[185,603],[-1,0],[0,1],[0,1],[-1,1],[0,1],[0,1],[-1,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[1,2],[0,1],[0,1]],[[186,596],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1]],[[174,629],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-2],[1,0],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[1,-2],[0,-1],[1,0],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[185,603],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,-1],[1,-1],[0,-1],[0,-1]],[[197,620],[0,-1],[0,-1],[-1,-1],[1,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-2],[0,-1],[0,-2],[0,-2],[0,1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[-1,0],[-1,0],[1,-2],[0,-1],[1,-1],[-1,0],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-3],[0,-1],[1,0],[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,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,1],[1,0],[0,-1],[0,-1],[1,0],[-1,-1],[0,-2],[1,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-2],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-2],[0,-1],[0,-2],[0,-1],[1,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1]],[[208,616],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,1],[-1,1],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-2,0]],[[208,615],[0,1]],[[209,608],[0,2],[0,1],[0,1],[0,1],[-1,1],[0,1]],[[210,607],[0,1],[-1,0]],[[218,608],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[0,-2],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,1],[-1,1],[0,1],[-1,1]],[[219,607],[-1,0],[0,1]],[[220,602],[0,1],[0,1],[0,1],[-1,1],[0,1]],[[221,601],[-1,0],[0,1]],[[224,587],[0,1],[-1,1],[0,2],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1]],[[224,585],[0,1],[0,1]],[[225,584],[0,1],[-1,0]],[[226,583],[0,1],[-1,0]],[[227,582],[0,1],[-1,0]],[[230,582],[-1,-1],[-1,1],[-1,0]],[[230,581],[0,1]],[[244,529],[-1,0],[-1,-1],[0,-1],[-1,0],[0,-1],[0,1],[-1,0],[-1,-1],[1,1],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,2],[0,1],[-1,1],[-1,0],[-1,0],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,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,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,2],[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],[1,1],[0,2],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1]],[[258,542],[0,1],[0,1],[0,1],[0,1],[1,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,-1],[0,1],[1,0],[0,-1],[-1,0],[-1,0],[0,1],[0,-1],[-1,1],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[1,0],[0,1],[0,-1],[-1,0],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,1],[0,-1],[0,-1],[-1,-1],[-1,0],[0,1],[0,1]],[[257,538],[0,1],[0,1],[0,1],[0,1],[1,0]],[[257,537],[0,1]],[[256,525],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[-1,0],[0,1],[1,0],[0,1],[0,1],[-1,-1],[0,1],[0,1],[1,0]],[[255,526],[1,-1]],[[255,527],[0,-1]],[[254,527],[0,1],[1,1],[0,1],[0,-1],[0,-1],[0,-1]],[[252,523],[0,1],[1,-1],[0,1],[0,1],[0,1],[1,1]],[[243,500],[0,-1],[0,1],[0,1],[0,1],[1,0],[0,1],[-1,1],[1,1],[0,4],[1,0],[0,1],[2,0],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,1],[0,1],[0,1],[1,0],[0,2],[0,2],[1,0],[1,0],[1,0],[1,0],[1,0]],[[207,543],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,-1],[1,0],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,-1],[1,0],[0,-1],[1,0],[1,-1],[0,1],[1,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[1,0],[1,-1],[0,-1],[1,0],[0,-1],[1,0],[1,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,-1],[1,0],[1,1],[1,1],[1,1],[0,1],[1,0],[-1,0],[1,1],[0,1],[0,-1],[0,-1],[0,1],[1,0],[0,-1],[-1,0],[1,0],[1,-1],[0,1],[-1,0],[1,0],[-1,0],[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],[0,-1],[0,-1],[1,-1]],[[204,549],[0,1],[0,1],[-1,0],[0,-1],[0,-1],[1,0]],[[258,542],[0,-1],[0,-1],[0,1],[1,1],[0,1],[0,-1],[-1,0]],[[578,723],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,-1],[0,1],[1,-1],[0,1],[0,-1],[1,0],[0,1],[-1,0],[0,1],[1,0],[0,1],[-1,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,1],[1,0],[0,1],[-1,2],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,1],[0,-1],[-1,0],[-1,0],[-1,-1]],[[573,743],[1,0],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[1,-1],[0,-1],[-1,0],[1,-1]],[[775,769],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[-1,0],[0,1],[-1,0],[0,1],[0,-1],[-1,0],[0,1],[-1,0],[-1,-1],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[-1,0],[-1,1],[0,-1],[-1,0],[0,1],[0,1],[-1,0],[0,-1],[-1,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],[1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[-1,0]],[[776,769],[-1,0]],[[800,753],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,-1],[-1,1],[-1,0],[-1,1],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,1],[0,-1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[1,0],[0,1],[-1,0],[-1,1],[-1,0],[-1,1],[-1,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,1],[0,1]],[[824,752],[0,1],[-1,0],[0,1],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[0,1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[0,-1],[-1,0],[-1,0],[0,1],[0,-1],[-1,0],[-1,1],[-1,0],[0,1],[0,-1],[-1,0],[0,1],[-1,-1],[-1,1],[0,1],[-1,1],[0,1],[0,1]],[[555,702],[0,1],[1,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,1],[0,1]],[[555,701],[0,1]],[[551,701],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0]],[[463,593],[1,0],[7,0],[1,0],[1,0],[1,0],[1,0]],[[484,653],[-1,0],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-2],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[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,-2],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[0,-1]],[[485,653],[-1,0]],[[491,649],[0,-1],[-1,0],[-1,0],[0,1],[0,-1],[0,1],[-1,-1],[-1,0],[-1,0],[0,1],[-1,2],[0,1],[0,1]],[[491,649],[0,1],[0,-1]],[[493,647],[-1,0],[0,1],[-1,0],[1,0],[-1,0],[0,1]],[[493,647],[0,1],[0,-1]],[[610,275],[-1,0],[0,-1]],[[609,274],[1,0],[0,1]],[[591,292],[-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],[0,-1],[0,-1],[0,-1],[0,-1]],[[611,317],[-1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[0,-1],[0,1],[-1,0],[0,1],[-1,-1],[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,1],[0,-1],[0,-1],[-1,0],[-1,0]],[[610,275],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,1],[0,1],[0,1],[-1,0],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,-1],[0,1],[0,1],[-1,0],[1,1],[0,1],[-1,2],[1,1],[-1,0],[1,1],[0,1],[-1,0],[1,0],[0,2],[-1,0],[0,1],[1,1],[0,1],[-1,0],[0,1],[0,1],[0,2],[0,2],[0,1],[0,1],[0,1],[0,1],[1,1],[-1,0],[0,1],[1,0],[0,1],[-1,0],[1,1],[-1,1]],[[597,237],[-1,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],[1,0],[0,-1],[0,1],[1,1],[0,1],[1,2],[0,1],[0,1],[1,0],[0,1],[0,-1],[1,1],[0,1],[0,1],[1,2],[0,1],[0,1],[0,1],[0,-1],[1,0],[0,1],[0,1],[1,0],[0,1],[1,1],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1]],[[597,235],[0,1],[0,1]],[[590,198],[0,1],[0,3],[0,1],[0,1],[0,-1],[0,-1],[0,1],[-1,1],[1,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,1],[1,0],[1,1],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[1,1],[-1,0],[0,-1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[-1,0],[0,2],[0,1],[1,0],[0,1],[0,1],[-1,1],[0,-1],[0,-1],[0,-1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[588,198],[1,0],[1,0]],[[588,205],[0,-1],[0,-1],[0,-1],[0,-1],[0,-3]],[[587,206],[1,-1]],[[586,231],[0,-5],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[-1,-1]],[[583,280],[0,-2],[1,0],[1,-1],[0,1],[1,-1],[0,-1],[1,0],[0,-1],[1,-1],[1,0],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[-1,-1],[0,-1],[1,0],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,-2],[0,-2],[0,-1],[0,-1],[0,-1],[-2,-4],[0,-2],[-1,-2]],[[595,306]],[[757,539],[-1,0],[0,-1],[1,0],[0,1]],[[759,528],[-1,0],[0,-1],[1,0],[0,1]],[[759,531],[1,0],[0,1],[-1,0],[0,1],[0,-1],[0,-1]],[[761,507],[0,1],[1,0],[0,1],[-1,0],[0,-1],[0,-1]],[[770,509],[0,2],[-1,0]],[[769,511],[0,-1],[0,-1],[1,0]],[[772,470],[0,1],[-1,0],[0,1],[0,-1],[1,-1]],[[772,469],[0,1]],[[772,470],[-1,0],[0,-1],[1,0]],[[772,465],[-1,0],[0,-1],[0,-1],[0,1],[1,1]],[[772,477],[-1,0],[0,-2],[1,0],[0,1]],[[772,476],[0,1]],[[773,478],[-1,1],[0,1]],[[772,480],[0,-1],[0,-1],[1,0]],[[756,550],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[-1,1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[756,551],[0,1],[0,-1],[0,-1]],[[773,466],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[1,1],[0,2],[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],[-1,0],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[1,0],[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,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,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],[1,0],[0,1],[0,1],[0,-1],[1,0],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[0,-1],[1,1],[0,1],[0,-1],[1,0]],[[772,464],[1,1],[0,1]],[[772,465],[0,-1]],[[772,469],[0,-1],[0,-1],[0,-1],[0,-1]],[[772,477],[1,0],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[-1,-1]],[[773,478],[0,-1],[-1,0]],[[772,480],[1,0],[0,1],[0,-1],[0,-1],[0,-1]],[[772,481],[0,-1]],[[770,509],[0,-1],[0,-1],[0,-1],[0,-2],[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,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0]],[[770,511],[0,-1],[0,-1]],[[770,511],[0,1],[0,-1]],[[769,511],[1,0]],[[762,508],[0,-1],[0,-1],[1,0],[0,1],[0,1],[0,-1],[0,-1],[0,1],[0,1],[1,0],[0,-1],[-1,0],[0,-1],[1,-1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,-1],[0,-1],[1,0],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-3]],[[762,508],[0,1],[0,-1]],[[761,507],[1,-1],[0,1],[0,1]],[[762,508],[0,-1],[-1,0]],[[762,509],[0,-1],[-1,0],[0,-1],[1,1],[0,1],[0,-1]],[[761,509],[0,1],[1,0],[0,-1]],[[761,509],[0,1],[0,-1]],[[761,507],[0,1],[0,1]],[[760,531],[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,-2],[0,-1],[0,-2],[-1,-1],[0,-2],[0,-1],[1,0]],[[759,528],[1,0],[0,1],[0,1],[-1,0],[1,0],[0,1]],[[759,531],[0,-1],[0,-1],[0,-1]],[[759,532],[-1,0],[0,-1],[1,0]],[[759,533],[1,-1],[0,-1],[-1,0],[0,1]],[[758,536],[1,-1],[0,1],[0,-1],[0,-1],[0,-1]],[[758,535],[-1,1],[0,1],[1,-1]],[[757,538],[0,-1],[0,-2],[0,1],[1,-1]],[[757,538],[0,-1],[0,1]],[[756,538],[1,-1],[0,1]],[[757,539],[0,-1],[-1,0]],[[756,539],[0,1],[0,1],[0,-1],[1,-1]],[[756,539],[0,-1],[0,1]],[[755,542],[0,-1],[1,0],[0,-2]],[[757,539],[0,1],[0,-1]],[[531,270],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,-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],[1,0],[0,-1],[0,-2],[0,-2],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-2],[0,-1],[1,-2]],[[569,265],[-1,1],[0,1],[-1,0],[-1,0],[-1,0],[-1,-1]],[[544,187],[1,1],[0,-1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,1],[0,-1],[1,0],[0,-1],[1,1],[1,-1],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[0,2],[0,2],[0,2],[0,1],[0,1],[0,2],[0,5],[0,4],[0,1],[0,2],[0,1],[0,1],[0,2]],[[538,227],[1,-1],[0,-1],[0,1],[-1,-1],[1,-1],[0,-2],[-1,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[-1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,-1]],[[539,231],[0,-1],[0,1],[0,-2],[0,-1],[0,-1],[-1,0]],[[724,609],[0,1],[0,-1]],[[510,766],[-1,0],[0,-1],[1,1]],[[511,766],[-1,0]],[[515,774],[0,1],[-1,1],[0,-1],[0,1],[0,1],[0,1],[1,0],[0,-1],[-1,0],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[-1,-1],[0,-1],[-1,1],[-1,0],[0,1],[-1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[0,1],[0,-1],[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,-1]],[[515,774],[1,0],[0,1],[-1,0],[0,-1]],[[514,774],[0,-1],[1,0],[0,1]],[[513,778],[-1,-2],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,1]],[[519,781],[-1,0],[-1,0],[-1,0],[-1,-1],[0,-1],[-1,-1],[-1,-1],[0,1]],[[514,774],[1,0],[-1,0]],[[962,61],[-1,-2],[1,1],[0,-1],[0,1],[1,0],[0,-1],[0,-1],[1,0]],[[962,61],[0,1],[0,-1]],[[963,65],[0,-1],[-1,0],[0,-1],[1,0],[-1,0],[0,-1],[0,-1]],[[963,65],[0,-1],[0,-1],[0,1],[0,1]],[[963,65],[0,-1],[0,1]],[[963,66],[0,-1]],[[982,97],[0,-1],[-1,-1],[0,-1],[-1,0],[0,2],[0,1],[-1,0],[0,1],[0,1],[0,1],[1,-1],[-1,1],[0,-1],[-1,0],[0,-1],[-1,-3],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-2],[-1,0],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[0,1],[0,-1],[-1,0],[0,-1]],[[982,97],[1,0],[-1,0]],[[984,94],[0,1],[-1,-1],[0,1],[1,1],[-1,0],[0,1],[0,-1],[0,-1],[-1,-1],[0,1],[1,0],[0,1],[-1,0],[0,1]],[[966,55],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[0,1],[1,1],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[-1,-1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,-1],[1,0],[-1,0],[0,1],[1,-1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0]],[[964,58],[1,-1],[0,-1],[1,1],[0,-1],[1,0],[0,-1],[0,1],[-1,-1]],[[964,58],[0,1],[0,-1]],[[966,55],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[1,0],[0,1],[0,-1],[0,1],[1,0],[0,1],[1,0],[-1,1],[0,1],[0,1]],[[985,126],[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],[-1,0],[0,1],[-1,1],[-1,1],[0,-1],[0,1],[0,1],[0,-1],[0,-1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,2],[0,-1],[1,0],[-1,2],[0,-1],[0,-2],[0,-1],[1,-1],[0,-2],[0,-1],[0,-1],[1,-1],[0,1],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[1,-1],[0,-1],[1,-2],[0,-1],[0,1],[-1,1],[0,1],[0,1],[0,-1],[0,-1],[1,0],[0,-1],[0,1],[1,-1],[0,1],[0,-1],[-1,0],[1,0],[0,-1],[-1,0],[0,1],[0,-1],[1,0],[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,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],[0,-2],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[1,-1],[1,0],[1,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,0]],[[984,94],[0,-1],[1,0],[0,1],[0,-1],[0,-1],[0,1],[1,0],[0,-1],[1,0],[0,1],[1,1],[0,1],[1,1],[0,1],[1,1],[-1,0],[1,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[1,0],[0,1],[1,0],[0,-1],[1,0],[-1,1],[0,1],[0,1],[1,0],[0,1],[0,2],[1,1],[0,1],[0,1],[0,1],[0,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,-1],[-1,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,-1],[0,1],[0,1],[0,1],[-1,0],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[0,1],[-1,0],[0,1]],[[982,97],[1,1],[0,1],[-1,-1],[0,-1]],[[985,126],[1,0],[0,1],[-1,-1]],[[986,131],[0,-1],[0,-1],[1,0],[-1,1],[0,1]],[[257,488],[0,-1],[-1,0],[0,1],[0,-1],[1,-1],[0,-1],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1]],[[267,473],[0,1],[0,1],[-1,0],[0,1],[1,0],[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],[1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[1,0],[-1,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],[0,1]],[[261,474],[1,1],[0,-1],[1,0],[0,-1],[1,0],[0,1],[1,-1],[0,-1],[1,0],[0,-1],[1,1],[0,1]],[[500,501],[0,-1],[0,-2],[0,-1],[0,-1],[1,0],[-1,-1],[1,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[-1,0],[0,1],[0,-1],[0,-1],[0,-1],[1,-1],[1,-2],[1,0],[0,1],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[1,-2]],[[509,479],[1,1],[-1,1],[1,1],[0,1],[-1,1],[1,1],[1,2],[0,1],[0,1],[0,1],[1,2],[1,1],[0,-1],[1,0],[0,1],[1,0],[1,-1],[1,0],[0,-1],[1,-1],[0,-1],[0,-1],[1,-1],[0,1],[1,0],[1,2],[1,-1],[0,-1],[1,0],[0,-1],[1,-1],[1,0],[1,0],[1,2],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,-1],[1,-1],[1,0],[0,-1],[0,1],[0,1],[1,1],[0,1],[1,0],[0,1],[1,0]],[[509,478],[1,0],[-1,0]],[[506,480],[0,-1],[0,1]],[[520,426],[-1,0],[0,-1],[1,1]],[[509,478],[0,-1],[0,-1],[0,-2],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[-1,-1],[0,-1],[1,0],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[523,428],[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],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,-1],[1,1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,2],[0,1],[1,0],[0,2],[0,1],[0,1],[1,0],[0,1],[0,2],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,-1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,3],[0,1]],[[520,426],[1,0],[1,0],[0,1],[0,1],[1,0]],[[519,426],[1,0]],[[519,426],[0,1],[0,1],[0,-1],[0,-1]],[[519,426],[0,-1],[0,1]],[[519,426],[-1,1],[1,0],[0,-1]],[[519,425],[0,1]],[[507,439],[1,0],[1,1],[0,1],[0,-1],[0,1],[1,0],[0,-1],[-1,0],[0,-1],[0,1],[1,0],[1,-1],[1,0],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,1],[1,0],[-1,-1],[0,1],[0,-1],[0,-1],[1,0],[0,1],[0,-1],[-1,0],[0,-1],[0,-1],[0,1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,-1],[0,-1],[1,1],[0,-1],[0,1],[1,-1],[0,1],[0,1],[0,-1],[0,1],[0,2],[0,-2],[0,-1],[1,0]],[[520,426],[0,1],[0,-1]],[[862,699],[0,1],[0,1],[-1,0],[0,1]],[[862,699],[0,-1],[0,1]],[[855,672],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,-1],[0,1],[0,1],[0,1],[1,1],[0,1],[1,0],[1,1],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[1,1],[-1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,1],[0,1],[1,0]],[[850,665],[1,1],[0,1],[0,1],[1,1],[1,1],[0,-1],[0,1],[1,0],[0,-1],[1,0],[0,1],[0,1],[0,1]],[[850,666],[0,-1]],[[844,680],[1,0],[0,-1],[1,0],[-1,0],[0,1],[1,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[-1,0],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,0],[1,0],[0,-1],[0,1],[1,0],[0,-1],[-1,0],[0,-1],[1,0],[0,1],[0,-1],[0,-1],[1,0],[0,1],[0,1],[1,-1],[0,-1],[0,1],[1,0]],[[529,965],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[-1,1],[1,0],[-1,0],[0,1],[-1,0]],[[550,975],[0,-1],[-1,0],[1,0],[1,0],[0,-1],[0,1],[1,0],[0,-1],[0,1],[0,-1],[0,1],[1,0],[0,-1],[-1,0],[-1,0],[1,0],[-1,0],[-1,0],[0,-1]],[[550,975],[0,-1],[0,1]],[[552,975],[-1,0],[-1,0]],[[552,975],[0,-1],[0,1]],[[555,977],[-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]],[[556,977],[-1,0]],[[556,969],[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,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[0,-1],[1,0],[1,1],[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],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[0,-1],[-1,0],[0,1],[-1,0],[1,0],[-1,0],[1,0],[-1,0],[1,0],[0,-1],[-1,0],[0,1],[0,-1],[-1,0],[0,-1],[-1,0],[0,1],[0,-1],[0,1],[0,-1],[-1,0],[0,1],[1,0],[0,1],[-1,0],[1,0],[-1,0],[1,0],[0,1],[-1,0],[0,-1],[0,1],[-1,0],[1,0],[0,-1],[-1,0],[1,0],[-1,0],[-1,0],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,1],[-1,0],[1,0],[-1,0],[-1,0],[1,1],[-1,0],[-1,0],[-1,0],[0,1],[0,-1],[-1,0],[0,1],[-1,0],[0,1]],[[555,969],[1,0]],[[550,972],[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,0],[1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[1,0],[1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[1,0],[0,-1]],[[551,975],[0,1],[1,0],[-1,0],[-1,0],[0,-1]],[[552,975],[-1,0]],[[552,975],[0,1],[0,-1]],[[551,933],[1,0],[0,-1],[1,0],[0,1],[0,1],[-1,0],[0,-1],[0,1],[0,-1],[-1,0]],[[555,969],[-1,0],[0,-1],[1,0]],[[555,969],[-1,0],[1,0]],[[556,968],[0,1]],[[555,968],[1,0]],[[556,966],[1,0]],[[557,966],[1,0],[-1,1],[-1,0],[1,0],[-1,0],[0,-1]],[[558,963],[-1,0],[0,-1],[-1,0],[1,0],[0,-1],[0,-1]],[[560,960],[0,1],[1,0],[0,1],[0,1],[-1,0],[-1,0],[-1,0]],[[559,960],[1,1],[0,-1]],[[557,960],[1,0],[1,0]],[[557,960],[0,1],[0,-1]],[[559,978],[0,1],[-1,0],[-1,0],[1,0],[0,-1]],[[558,978],[1,0]],[[558,978],[0,1],[0,-1]],[[557,960],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[-1,0],[1,-1],[-1,0],[1,0],[-1,0],[1,0],[1,0],[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,1],[1,0],[0,1],[0,-1],[0,1],[1,0],[-1,0],[1,0],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,-1],[-1,0],[-1,0],[-1,0]],[[560,960],[-1,0],[-1,0],[-1,0]],[[569,947],[0,1],[1,1],[-1,0],[0,-1],[0,-1]],[[573,964],[1,0],[0,-1],[0,1],[1,0],[-1,0],[0,1],[-1,0],[0,-1]],[[577,965],[1,0],[0,-1],[0,1],[1,0],[1,0],[1,0],[1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[-1,0]],[[530,971],[0,-1],[1,0],[-1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,1],[1,0],[0,-1],[0,1],[1,0],[-1,0],[1,0],[-1,0],[0,-1],[-1,-1],[1,0],[1,0],[0,-1],[1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,-1],[1,0],[1,0],[-1,0],[0,-1],[1,0],[0,-1],[1,0],[1,-1],[0,1],[0,-1],[1,0],[0,1],[0,-1],[-1,0],[-1,0],[1,-1],[1,0],[-1,0],[1,0],[0,-1],[1,0],[1,0],[0,1],[0,-1],[0,1],[1,0],[0,-1],[0,1],[1,0],[1,0],[-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],[1,0],[1,0],[1,1],[0,1],[1,0],[0,-1],[0,1],[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,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[0,1],[-1,0],[-1,0],[1,0],[-1,-1],[1,0],[0,-1],[0,1],[0,-1],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0]],[[531,971],[-1,0]],[[531,971],[0,-1],[0,1]],[[531,971],[1,0],[0,-1],[-1,0],[0,1]],[[550,972],[-1,0],[-1,0],[0,1],[-1,0],[0,-1],[-1,1],[1,0],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[1,0],[-1,0],[0,-1],[1,0],[-1,0],[-1,0],[1,0],[-1,0],[1,-1],[-1,0],[1,0],[-1,0],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[1,0],[-1,0],[1,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[1,0],[-1,0],[0,-1],[1,0],[-1,0],[-1,0],[1,0],[0,-1],[0,-1],[-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],[0,1],[1,0],[1,0],[1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[0,1],[-1,0],[0,-1],[-1,0],[1,0],[-1,0],[0,1],[-1,0],[0,-1],[0,1],[-1,0],[0,-1]],[[556,966],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[0,1],[-1,0],[-1,0],[0,-1],[-1,0],[0,1],[1,1],[0,1]],[[557,966],[0,-1],[0,1]],[[558,963],[0,1],[1,0],[0,1],[1,0],[-1,0],[-1,0],[-1,0],[0,1]],[[543,958],[0,-1],[1,0],[1,1],[0,-1],[0,1],[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],[0,-1],[1,0],[1,0],[-1,0],[1,0],[0,-1],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,-1],[1,0],[-1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[-1,0],[1,0],[-1,0],[1,0],[0,-1],[1,0],[0,1],[1,-1],[0,1],[-1,0],[1,0],[0,-1],[1,0],[0,1],[0,-1],[-1,0],[1,0],[-1,0],[-1,0],[-1,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[0,1],[0,-1],[1,0],[0,1],[1,0],[0,1],[-1,0],[1,0],[0,1],[0,1],[1,0],[-1,0],[1,0],[0,1],[0,1],[1,0],[-1,0],[0,1],[1,0],[1,0],[0,1],[1,1],[0,1],[-1,0],[1,0],[0,1],[1,0],[0,1],[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]],[[543,958]],[[514,837],[-1,0],[0,-1],[1,1]],[[514,842],[-1,0],[0,-1]],[[513,841],[1,0],[0,1]],[[514,832],[0,1],[-1,1]],[[514,833],[0,-1]],[[514,833],[-1,0],[1,0]],[[513,834],[0,-1],[1,0]],[[514,831],[-1,1],[0,-1],[0,-1],[1,0]],[[514,830],[0,1]],[[514,827],[1,0]],[[514,828],[0,-1]],[[515,828],[-1,0]],[[515,827],[0,1]],[[516,845],[-1,0],[0,-1]],[[515,844],[1,0],[0,1]],[[520,850],[1,0]],[[521,851],[-1,-1]],[[521,850],[0,1]],[[522,851],[-1,0]],[[521,850],[1,1]],[[522,852],[0,1],[0,1],[-1,-1],[1,0],[0,-1]],[[524,855],[0,1],[-1,-1],[1,0]],[[523,853],[1,0]],[[524,855],[0,-1],[-1,0],[0,-1]],[[525,854],[0,1],[-1,0]],[[524,853],[0,1],[1,0]],[[523,853],[0,-1]],[[523,852],[1,0],[0,1]],[[530,864],[-1,0],[0,-1],[1,0]],[[530,863],[0,1]],[[530,863],[1,0]],[[530,864],[0,-1],[0,1],[0,-1]],[[531,864],[-1,0]],[[531,863],[0,1]],[[530,862],[1,-1],[0,1],[-1,0]],[[532,869],[1,0],[0,1],[-1,-1]],[[534,866],[-1,0]],[[533,865],[1,0],[0,1]],[[533,866],[0,-1]],[[533,866],[1,1]],[[534,868],[-1,0],[0,-1],[0,-1]],[[534,867],[0,1],[0,1],[0,-1]],[[534,872],[1,0]],[[535,873],[-1,0],[0,-1]],[[535,872],[0,1]],[[534,872],[0,-1],[1,0]],[[535,871],[0,1]],[[536,887],[-1,-1],[0,-1],[1,0],[0,1]],[[536,886],[0,1]],[[536,886],[1,0]],[[537,887],[-1,0]],[[537,886],[0,1]],[[537,887],[0,-1],[0,1]],[[539,888],[-1,0],[-1,0],[0,-1]],[[537,887],[1,0],[1,1]],[[539,880],[-1,-1],[1,0]],[[539,879],[0,1]],[[539,888],[0,-1],[1,0],[0,1],[1,0]],[[541,889],[-1,0],[0,-1],[-1,0]],[[541,889],[-1,0],[1,0]],[[541,888],[0,1],[1,0],[-1,0]],[[542,892],[-1,0],[0,-1],[-1,1],[-1,-1],[1,0],[0,-1],[0,1],[1,0],[0,1],[1,-1]],[[542,893],[-1,0],[0,-1],[1,0]],[[542,892],[0,1]],[[542,891],[0,1]],[[542,891],[-1,0],[0,-1],[1,1]],[[542,885],[-1,1],[0,-1]],[[541,885],[1,0]],[[542,889],[-1,0],[0,-1]],[[542,891],[0,-1],[0,-1]],[[542,891],[1,0],[-1,0]],[[544,893],[-1,0],[-1,-1]],[[545,892],[-1,0],[0,-1],[-1,0],[0,-1],[0,1],[1,0],[0,1],[0,1]],[[545,890],[0,1],[0,1]],[[544,889],[0,1],[1,0]],[[542,889],[0,-1],[1,0],[0,1],[1,0]],[[542,889],[1,0],[0,1],[0,-1],[-1,0]],[[541,888],[1,0],[0,1]],[[544,893],[0,1],[0,1],[-1,0],[0,-1],[-1,-1]],[[544,889],[1,0]],[[545,889],[0,1]],[[546,892],[0,1],[-1,0],[0,-1]],[[545,892],[1,0]],[[549,897],[-1,0],[0,1],[0,-1],[-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],[0,-1],[-1,0],[1,0],[0,-1]],[[549,897],[-1,1],[1,-1]],[[550,896],[-1,1]],[[549,895],[0,1],[1,0]],[[548,894],[1,0],[0,1]],[[548,894],[0,1],[0,-1]],[[547,893],[0,1],[1,0]],[[547,891],[0,1]],[[546,891],[1,0]],[[547,892],[-1,-1]],[[547,893],[0,-1]],[[548,893],[-1,0]],[[548,892],[0,1]],[[547,892],[1,0]],[[552,898],[-1,0],[0,1],[-1,0],[0,-1],[1,0],[-1,0],[-1,0],[0,-1]],[[552,898],[0,1]],[[551,900],[0,-1],[1,0]],[[552,899],[0,1],[-1,0]],[[550,897],[1,0],[1,0],[0,1]],[[549,897],[1,0]],[[552,901],[-1,0],[0,-1]],[[551,900],[1,1]],[[553,901],[-1,0]],[[553,901],[0,-1],[0,1]],[[554,901],[-1,0]],[[554,900],[0,1]],[[553,899],[1,1]],[[552,899],[1,0]],[[553,902],[-1,0],[1,-1]],[[553,901],[0,1]],[[554,901],[-1,1]],[[554,900],[1,0]],[[554,899],[0,1]],[[553,899],[1,0]],[[554,901],[1,0],[0,1],[-1,0],[0,1],[0,-1],[0,-1]],[[557,901],[0,1],[-1,0],[0,-1],[1,0]],[[557,901],[0,-1]],[[558,900],[-1,1]],[[558,900],[0,1],[0,-1]],[[557,900],[1,0]],[[565,906],[-1,0],[0,1],[0,-1],[-1,-1],[0,1],[-1,0],[1,0],[0,-1],[-1,0],[0,1],[0,-1],[-1,0],[-1,0],[1,0],[0,-1],[1,0],[0,1],[1,-1]],[[564,905],[0,1],[1,0]],[[563,904],[1,1]],[[563,903],[-1,0],[0,-1]],[[563,902],[0,1]],[[562,902],[1,0]],[[563,904],[0,-1]],[[564,905],[0,-1],[-1,0]],[[565,905],[-1,0]],[[565,904],[0,1]],[[565,903],[0,1]],[[564,902],[0,1],[1,0]],[[563,903],[1,0],[0,-1]],[[565,904],[1,0]],[[565,906],[0,-1]],[[566,905],[0,1],[-1,0]],[[566,904],[0,1]],[[567,907],[0,1],[-1,0],[0,-1],[1,0]],[[571,907],[1,0],[0,1],[-1,0],[1,0],[0,1],[-1,-1],[0,1],[0,-1],[-1,0],[0,-1]],[[570,907],[1,0]],[[582,899],[1,0],[0,1],[-1,0],[0,-1]],[[513,834],[1,0],[0,-1]],[[514,833],[1,0]],[[515,833],[0,1]],[[514,837],[0,-1],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[0,1],[0,-1],[0,-1],[1,0],[1,0],[0,1],[0,1],[1,0],[-1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[1,0],[-1,0],[0,1],[0,1],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,-1],[1,0],[0,-1],[0,1],[1,0],[-1,-1],[1,0]],[[513,841],[0,-1],[1,0],[0,-1],[1,0],[1,0],[-1,0],[-1,0],[-1,0],[1,-1],[1,0],[-1,0],[-1,0],[1,-1]],[[514,842],[1,0],[1,0],[1,0],[1,0],[-1,0],[-1,0],[-1,0],[-1,0]],[[515,844],[0,-1],[-1,1],[1,-1],[-1,0],[0,-1]],[[516,844],[-1,0]],[[516,844],[1,0],[0,-1],[-1,1]],[[516,845],[0,-1]],[[517,846],[-1,-1]],[[517,846],[0,-1],[1,0],[0,-1],[0,1],[-1,1]],[[520,845],[-1,0],[0,-1],[0,1],[0,1],[-1,0],[-1,0]],[[517,846],[1,0],[1,0],[0,-1],[1,0]],[[518,848],[0,-1],[-1,0],[1,0],[-1,-1]],[[519,848],[-1,0]],[[519,848],[1,0],[0,1],[1,0],[-1,-1],[1,0],[1,0],[-1,0],[-1,-1],[1,0],[-1,0],[-1,1]],[[520,850],[-1,0],[0,-1],[0,-1]],[[522,851],[0,-1],[0,-1],[1,0],[0,-1],[0,1],[-1,0],[0,1],[-1,0]],[[522,851],[0,-1],[1,0],[1,0],[-1,0],[0,-1],[0,1],[-1,0],[0,1]],[[523,851],[-1,0]],[[524,852],[0,-1],[-1,0]],[[523,852],[1,0]],[[525,854],[0,-1],[1,0],[-1,0],[-1,0]],[[530,862],[0,-1],[-1,0],[0,-1],[1,0],[-1,0],[-1,-1],[-1,-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],[1,0],[0,1],[1,0],[0,1],[0,1],[0,-1],[-1,0],[1,0],[0,1],[1,0],[0,1],[1,-1],[-1,0],[-1,0],[0,-1],[1,0],[0,-1],[-1,0],[-1,0],[0,-1],[1,0],[0,-1],[-1,0],[-1,0],[0,-1],[0,1],[-1,0],[0,2],[-1,0],[0,-1],[-1,0]],[[531,861],[-1,0],[0,1]],[[531,861],[0,-1],[0,1]],[[531,862],[1,0],[0,-1],[0,1],[0,-1],[-1,0]],[[531,863],[1,1],[1,0],[1,0],[-1,0],[-1,0],[0,-1],[1,0],[-1,0],[-1,-1]],[[531,863],[1,1],[-1,-1]],[[533,865],[-1,0],[0,-1],[-1,0]],[[534,865],[-1,0]],[[534,865],[1,1],[1,1],[-1,-2],[-1,0]],[[534,866],[0,-1]],[[534,866],[1,0],[-1,0]],[[534,867],[0,-1]],[[534,868],[0,-1]],[[534,868],[1,0],[-1,0]],[[534,869],[0,-1]],[[535,871],[-1,-1],[1,0],[0,-1],[0,1],[-1,0],[0,-1]],[[535,872],[1,0],[0,-1],[-1,0]],[[535,872],[1,0],[-1,0]],[[539,879],[-1,-1],[-1,0],[1,0],[0,-1],[-1,1],[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,-1],[0,1],[0,-1],[0,-1],[1,0],[-1,0],[0,-1],[1,0],[0,1],[0,-1],[1,1],[1,0],[-1,-1],[-1,0],[0,-1],[0,1],[-1,0],[-1,0]],[[539,879],[1,0],[-1,0]],[[542,885],[1,-1],[-1,0],[1,0],[-1,0],[0,-1],[1,0],[1,0],[-1,0],[0,-1],[0,-1],[0,1],[-1,0],[-1,0],[1,1],[-1,0],[-1,-1],[1,0],[-1,0],[0,-1],[-1,0],[1,0],[0,-1],[1,1],[1,0],[-1,0],[1,0],[1,-1],[-1,0],[1,0],[0,-1],[-1,0],[0,1],[-1,0],[-1,0],[1,0],[-1,0],[-1,0]],[[541,885],[0,-1],[-1,0],[1,0],[0,-1],[0,1],[1,0],[0,1]],[[543,886],[-1,-1]],[[543,886],[1,0],[-1,0]],[[543,886],[0,1],[-1,0],[0,-1],[1,0]],[[544,886],[0,1],[0,1],[0,-1],[-1,-1]],[[545,889],[0,-1],[1,0],[0,-1],[0,1],[-1,0],[-1,0],[1,0],[-1,0],[0,-1],[1,0],[0,1],[0,-1],[1,0],[0,-1],[-1,1],[0,-1],[0,-1],[0,1],[-1,0]],[[545,889],[1,0],[1,1],[0,-1],[1,0],[0,1],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[0,1],[-1,1],[-1,-1],[0,1],[-1,0]],[[545,890],[1,0],[-1,0]],[[546,891],[-1,-1]],[[547,891],[1,0],[1,0],[-1,0],[-1,0]],[[548,892],[-1,-1]],[[548,892],[1,0],[0,-1],[-1,1]],[[548,893],[1,0],[0,-1],[-1,0]],[[548,894],[0,-1]],[[549,894],[-1,0]],[[549,895],[1,0],[0,-1],[-1,0]],[[550,896],[0,-1],[-1,0]],[[550,897],[0,-1]],[[551,897],[0,-1],[1,0],[0,-1],[0,1],[-1,-1],[0,1],[-1,1]],[[552,897],[-1,0]],[[552,897],[1,-1],[0,-1],[0,1],[-1,0],[0,1]],[[552,897],[1,0],[-1,0]],[[552,898],[0,-1]],[[553,899],[0,-1],[-1,0]],[[555,900],[0,-1],[0,-1],[-1,-1],[0,-1],[0,1],[0,1],[0,1]],[[557,899],[-1,-1],[1,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[-1,0]],[[557,900],[0,-1]],[[557,899],[1,1]],[[558,900],[0,-1],[-1,0]],[[560,902],[-1,0],[0,1],[0,-1],[-1,0],[1,0],[0,-1],[1,0],[1,0],[-1,0],[0,-1],[1,-1],[-1,0],[0,1],[-1,0],[0,1],[-1,-1]],[[560,903],[0,-1]],[[562,902],[0,-1],[-1,1],[0,1],[0,-1],[-1,1]],[[562,902],[-1,0],[1,0]],[[564,902],[0,-1],[1,0],[0,-1],[-1,0],[-1,1],[-1,0],[-1,0],[1,0],[1,0],[0,1]],[[564,902],[1,0],[-1,0]],[[565,903],[-1,-1]],[[566,904],[-1,-1]],[[566,905],[1,-1],[-1,0]],[[567,907],[0,-1],[1,0],[0,-1],[-1,0],[-1,0]],[[570,907],[-1,0],[-1,0],[0,-1],[-1,0],[0,1]],[[570,907],[0,-1],[0,1]],[[577,901],[1,0],[0,1],[0,1],[0,1],[-1,0],[1,0],[-1,0],[1,1],[0,1],[0,-1],[-1,0],[-1,0],[1,0],[0,1],[1,0],[-1,0],[1,0],[0,1],[1,0],[0,1],[-1,0],[-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],[-1,0],[-1,-1],[0,1],[0,1],[0,1],[1,0],[0,1],[-1,0],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[0,1],[0,-1],[0,1],[0,1],[1,0],[0,1],[-1,0],[1,1],[1,1],[0,1]],[[582,900],[-1,1],[-1,0],[-1,0],[0,1],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,1],[-1,1],[-1,0],[0,1],[0,-1],[-1,0],[0,1],[1,0],[-1,0],[0,1],[-1,-1],[0,1],[-1,-1],[0,1],[0,1],[-1,0],[-1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,0]],[[582,900],[-1,0],[0,-1],[0,1],[1,0]],[[582,899],[0,1]],[[581,898],[1,1]],[[582,899],[0,-1],[-1,0]],[[583,899],[-1,0]],[[583,899],[0,-1]],[[583,900],[0,-1]],[[584,898],[0,1],[0,1],[-1,0]],[[585,899],[-1,0],[0,-1]],[[580,894],[1,0],[0,1],[0,1],[1,0],[1,0],[0,1],[0,1],[1,0],[0,-1],[1,0],[1,1],[-1,0],[0,1]],[[548,846],[1,0],[1,1],[-1,1],[1,0],[-1,1],[0,1],[0,-1],[1,0],[0,-1],[1,1],[0,1],[-1,0],[1,0],[0,1],[1,0],[0,1],[0,-1],[0,1],[1,-1],[0,1],[0,1],[1,0],[0,1],[0,-1],[1,0],[0,1],[0,1],[1,0],[1,1],[1,1],[0,1],[1,1],[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],[0,1],[-1,0],[0,1],[1,-1],[0,1],[-1,0],[1,0],[1,0],[0,1],[-1,0],[1,0],[0,1],[-1,0],[0,1],[0,-1],[1,0],[1,-1],[0,1],[-1,0],[1,1],[0,1],[0,-1],[1,0],[0,1],[0,-1],[1,0],[1,0],[1,0],[1,0]],[[548,846],[0,1],[0,-1]],[[548,845],[0,1]],[[548,845],[0,-1],[1,0],[0,1],[-1,0]],[[551,831],[-1,0],[0,1],[0,1],[-1,0],[0,-1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[1,0],[-1,0],[0,1],[1,0],[-1,0],[0,1],[1,1],[-1,0],[1,0],[0,-1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[551,831],[0,-1],[0,1]],[[549,824],[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],[0,1],[-1,0],[0,1],[0,1]],[[549,824],[0,1],[0,1],[-1,0],[1,0],[-1,0],[0,-1],[0,1],[0,1],[1,0],[0,-1],[0,-1],[0,-1]],[[547,825],[1,0],[0,1],[0,-1],[1,-1]],[[547,824],[-1,0],[0,1],[-1,-1],[-1,0],[0,1],[1,0],[1,0],[0,1],[0,-1],[1,0]],[[547,825],[-1,0],[0,-1],[1,0]],[[548,824],[-1,0],[0,1]],[[549,823],[-1,0],[0,1]],[[546,807],[0,1],[-1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[-1,1],[1,0],[0,-1],[0,1],[0,1],[0,-1],[0,1],[0,1],[0,1],[0,1],[-1,0],[1,0],[1,0],[-1,1],[-1,1],[0,-1],[0,1],[1,0],[0,-1],[1,0],[0,1],[1,0],[1,1],[0,1],[0,1],[0,-1],[0,-1],[1,1],[0,1],[1,0],[0,1],[-1,0],[1,0],[0,1],[-1,0],[0,-1],[0,1],[0,-1],[-1,0]],[[545,804],[0,1],[0,1],[0,1],[1,0]],[[535,798],[1,0],[0,-1],[0,-1],[-1,0],[1,-1],[1,0],[1,0],[1,0],[0,1],[1,0],[-1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[1,-1],[0,1],[-1,0],[0,1],[1,0],[1,0],[0,-1],[1,1],[0,-1],[1,0],[0,1],[0,1],[0,1],[1,1]],[[535,800],[0,-2]],[[532,814],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,1],[0,-1],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,1],[1,-1],[0,-1]],[[532,815],[0,-1]],[[532,816],[1,-1],[-1,0]],[[514,824],[1,-1],[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,-1],[-1,0],[0,-1],[0,-1],[1,0],[0,1],[1,0],[-1,-1],[-1,0],[1,-1],[-1,0],[0,1],[-1,0],[1,0],[-1,1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,-1],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,1],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[-1,0],[1,0],[0,-1],[1,0],[0,1],[0,-1],[0,1],[0,1],[1,0],[0,1],[-1,1],[1,1],[-1,0],[0,1],[0,-1],[1,0],[0,-1],[0,1],[0,1],[0,1],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[0,1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0]],[[514,826],[0,-1],[0,-1]],[[515,827],[0,-1],[-1,0]],[[515,827],[1,0],[1,0],[-1,0],[0,-1],[-1,0],[0,-1],[0,1],[0,1]],[[515,829],[1,0],[0,-1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[1,0],[0,1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,1],[0,1],[0,1],[-1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,-1]],[[515,829],[0,1],[0,1],[1,0],[-1,0],[0,-1],[0,-1]],[[514,830],[1,0],[0,-1]],[[514,831],[0,1]],[[515,832],[-1,0]],[[515,834],[1,-1],[0,-1],[-1,0]],[[520,845]],[[652,557],[1,-6],[0,-5],[-10,-16]],[[655,573],[0,-1],[0,-1],[-1,1],[1,0],[-1,1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1]],[[662,542],[0,1],[0,1],[0,1],[1,1],[0,1],[1,0],[0,2],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[-1,1]],[[662,541],[0,1]],[[646,513],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[0,-1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[1,0],[1,0],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,-1],[-1,0],[1,0],[0,1],[1,0]],[[643,530],[2,-12],[1,0],[0,-5]],[[655,581],[0,-1],[0,-1],[0,-1],[0,1]],[[655,581],[0,1],[1,-1],[0,1],[0,1],[-1,0],[0,-1],[1,0],[-1,0],[0,-1]],[[655,579],[1,1],[0,1],[-1,0]],[[662,541],[0,-1],[0,-1],[0,-1],[0,1],[0,1],[1,1],[-1,1]],[[688,564],[0,1],[0,-1],[0,-1],[0,1],[0,1],[0,-1],[0,1],[1,0],[1,0],[0,1],[0,2],[0,-1],[1,0],[0,1],[0,-1],[1,0],[1,0],[1,1],[1,1],[0,-1],[0,-1],[1,0],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[-1,0],[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,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,1],[0,-1],[0,-1],[0,-1],[1,0],[0,1],[1,0],[1,0],[1,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[1,0],[0,1],[1,1],[0,1],[0,2],[1,2],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,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,1],[1,0],[0,1],[0,1],[0,1],[-1,0],[-1,1],[0,1],[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],[0,1],[-1,0],[1,0],[0,1],[0,1],[-1,0],[0,1],[1,1],[0,1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[0,-1],[1,0],[0,1],[0,1],[0,1],[1,1],[1,1],[0,1]],[[670,574],[0,-1],[1,0],[0,1],[1,0],[0,1],[0,-1],[0,1],[1,0],[1,0],[0,-1],[0,1],[1,0],[0,-1],[0,1],[1,1],[0,-1],[1,0],[0,1],[0,-1],[1,0],[0,-1],[1,0],[-1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[0,-1],[1,1],[1,0],[1,0],[-1,1],[0,-1],[0,1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[1,0],[0,-1],[1,0],[-1,0],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,1],[0,-1],[1,0]],[[284,457],[0,1],[-1,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,-1],[-1,-1],[0,1],[0,1],[0,1],[0,1],[-1,1]],[[269,454],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,1],[0,1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[1,0],[0,1],[1,1],[0,1],[0,1],[0,1],[1,0],[1,0],[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],[-1,1],[0,-1],[0,-1],[0,-1],[-1,0],[1,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1]],[[905,355],[-1,1],[0,1],[-1,0],[0,1],[0,1],[-1,1],[0,1],[0,1],[-1,0],[-1,0],[0,1],[-1,1],[0,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,1],[-1,0],[0,1],[-1,1],[-1,1],[0,1],[-1,0]],[[920,313],[0,-1],[-1,0],[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,1],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,2],[-1,0],[0,1],[0,1],[-1,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,-1],[1,0],[1,0],[0,1],[0,1],[0,1],[0,2],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,1],[-1,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[920,310],[0,1],[-1,0],[0,1],[1,0],[0,1]],[[897,330],[0,1],[1,0],[1,0],[-1,1],[0,1],[0,-1],[1,0],[0,1],[0,-1],[1,0],[-1,1],[0,1],[0,1],[0,1],[0,-1],[1,-1],[1,0],[-1,1],[1,0],[0,-1],[0,1],[0,1],[0,-1],[1,-1],[0,1],[0,-1],[0,-1],[1,0],[1,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[-1,0],[0,-1],[1,-1],[0,-1],[0,1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,1],[1,0],[0,-1],[1,0],[0,-1],[-1,0],[1,0],[0,-1],[1,0],[1,0]],[[897,330],[-1,0],[0,1],[-1,-1],[0,1],[0,1],[-1,0],[0,-1],[1,1],[0,-1],[1,0],[1,0],[0,-1]],[[898,329],[-1,0],[0,1]],[[898,328],[0,1]],[[891,326],[0,-1],[1,0],[1,0],[1,0],[1,-1],[1,0],[0,-1],[0,1],[1,1],[1,0],[0,1],[0,1],[0,1]],[[898,329],[-1,1],[0,-1],[1,0]],[[898,328],[1,0],[0,-1],[0,1],[-1,1]],[[898,329],[1,0],[-1,1],[0,-1]],[[905,355],[1,0],[0,-1],[0,1],[0,1],[-1,-1]],[[907,373],[1,-1],[0,1],[0,-1],[1,0],[1,0],[0,1],[0,1],[0,-1],[-1,1],[-1,0],[-1,-1]],[[911,348],[0,-1],[0,-1],[1,0],[0,-1],[0,1],[0,1],[-1,1]],[[913,347],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,-1],[1,0],[1,0],[1,1],[0,-1],[0,1],[0,-1],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,2],[0,1],[0,1],[0,-1],[-1,0],[-1,1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,1],[-1,0],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[-1,1],[0,-1],[-1,0],[0,2],[0,1],[1,1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[0,1],[0,1],[0,-1],[-1,0],[-1,1],[0,-1]],[[918,368],[0,-1],[1,0],[0,1],[0,1],[-1,0],[0,-1]],[[919,319],[0,1],[-1,0],[0,-1],[0,-1],[1,0]],[[919,318],[0,1]],[[920,316],[0,1],[0,1],[-1,1]],[[919,318],[0,-1],[1,0],[0,-1]],[[920,313],[1,0],[0,-1],[0,1],[1,1],[-1,0],[0,1],[-1,0],[0,1]],[[920,316],[0,-1],[0,-1],[0,-1]],[[921,365],[1,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,-1],[1,-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],[1,0],[0,1],[-1,1],[0,1],[-1,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,1],[0,1],[-1,0],[0,1],[-1,1],[0,1],[-1,1],[0,1],[-1,0],[1,0],[0,-1],[-1,0],[1,0],[0,-1]],[[921,365],[-1,-1],[1,0],[0,1]],[[925,320],[1,0],[0,-1],[0,-1],[1,0],[0,1],[-1,1],[-1,0]],[[927,303],[1,-1],[0,-1],[0,-1],[1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0]],[[930,302],[0,-1],[0,1],[0,-1],[1,0],[0,1],[-1,0]],[[932,346],[0,-1],[0,-1],[0,-1],[1,2],[-1,1]],[[932,341],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[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,0],[0,1],[-1,-2]],[[346,209],[0,1]],[[276,369],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[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],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,-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],[0,-2],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[-1,0],[1,0],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-2],[0,-1],[0,-1],[1,0],[0,-1],[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],[1,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[1,-1],[1,0],[0,-1],[1,-1],[0,-1],[1,0],[1,-1],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1]],[[823,451],[0,-1],[0,-1],[1,0],[0,1],[0,1],[-1,0]],[[831,469],[0,1],[0,1],[-1,0],[0,1],[1,2],[-1,0],[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],[-1,0],[1,0],[-1,-1],[0,1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-2],[-1,0],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-2]],[[831,468],[0,1]],[[824,453],[0,1],[1,0],[0,1],[1,1],[0,1],[1,1],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[1,1],[1,0],[0,1],[0,1],[0,1],[1,0]],[[837,495],[0,1],[-1,0],[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,1],[1,1],[0,-1],[-1,0],[0,-1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,2],[0,2],[-1,0],[1,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,-1],[-1,0],[0,-1],[0,1],[-1,0],[0,1],[-1,1],[-1,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],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,-1],[0,-2],[0,-1],[0,1],[1,-1],[-1,0],[1,-1],[0,-1],[0,-1],[-1,0],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[1,-1],[-1,0],[1,-1],[0,-1],[0,1],[0,1],[0,1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[-1,-1],[1,-2],[-1,0],[1,0],[0,-1],[0,1],[0,-1],[1,0],[0,-1],[1,0],[0,1],[1,1],[1,-1],[0,-1],[0,-1]],[[837,494],[0,1]],[[838,494],[0,-1],[-1,0],[0,1]],[[838,494],[0,1],[0,-1]],[[843,492],[-1,1],[-1,0],[0,1],[0,-1],[0,-1],[-1,-1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[-1,0],[0,-1],[0,-1]],[[838,490],[1,-1],[0,-1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,1],[1,0],[0,-1],[0,1],[-1,-1],[1,0],[0,-1],[0,-1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[1,0],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,-1],[1,1]],[[831,468],[1,0],[0,1],[-1,0]],[[831,430],[0,-1],[1,1],[0,1],[0,1],[0,-1],[-1,-1]],[[832,479],[1,0],[0,1],[-1,1],[0,-1],[0,1],[0,1],[-1,0],[0,-1],[1,-1],[0,-1]],[[832,479],[-1,0],[1,-1],[0,-1],[0,1],[0,1]],[[832,493],[0,-1],[1,-1],[0,1],[-1,0],[0,1]],[[833,490],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[1,1],[0,1],[0,1],[0,1],[0,2],[0,1],[-1,1],[0,1],[-1,0],[-1,0]],[[834,436],[0,-1],[1,0],[0,1],[0,-1],[1,1],[-1,0],[0,1],[-1,-1]],[[837,441],[0,-1],[0,-1],[1,0],[0,1],[0,1],[0,1],[-1,0],[0,-1]],[[838,490],[-1,0],[0,-1],[0,-1],[1,0],[0,1],[0,1]],[[840,472],[1,1],[-1,1],[1,1],[0,1],[-1,0],[0,-1],[0,1],[-1,0],[-1,1],[0,1],[-1,0],[0,1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[-1,-1],[1,0],[-1,-1],[1,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,1],[0,1],[1,0]],[[840,471],[-1,1],[1,0]],[[839,470],[0,1],[1,0]],[[845,458],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,1],[1,1],[-1,2],[0,1],[-1,1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[1,0],[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],[-1,0],[1,0],[0,-1],[0,1],[0,1],[1,0],[0,1],[-1,0],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[1,0],[0,2],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[-1,2],[0,1],[0,1],[0,1],[0,1],[1,0]],[[848,462],[-1,0],[0,1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[-1,-1],[0,-1],[0,1],[-1,1]],[[848,443],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[0,2],[0,1],[0,1],[0,-1],[1,0],[-1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[1,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,-1],[0,1],[-1,1],[0,1]],[[848,443],[1,0],[-1,0]],[[848,445],[0,-1],[0,-1]],[[848,445],[0,1],[0,-1]],[[848,444],[0,1]],[[837,494],[1,0],[-1,1],[0,-1]],[[837,481],[0,-1],[0,1],[1,1],[0,1],[0,1],[-1,0],[0,-1],[0,-1],[0,-1]],[[840,471],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,-2],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,1]],[[840,472],[0,-1]],[[841,466],[0,1],[0,1],[0,1],[1,2],[0,1],[-1,0],[-1,0]],[[841,462],[0,1],[0,1],[0,1],[0,1]],[[841,462],[-1,0],[1,0]],[[841,461],[0,1]],[[841,459],[0,1],[0,1]],[[841,484],[0,1],[0,1],[-1,1],[0,1],[0,-1],[0,-1],[1,-1],[0,-1]],[[841,484],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[0,1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,1],[0,1],[0,2],[-1,0],[0,1]],[[842,483],[-1,0],[0,1]],[[842,482],[0,1]],[[841,462],[1,1]],[[841,466],[0,-1],[0,-1],[0,-1],[0,-2],[0,1]],[[842,464],[0,1],[0,1],[0,1],[1,0],[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],[-1,0]],[[842,463],[0,1]],[[841,459],[1,-1],[0,1],[0,1],[0,-1],[-1,0]],[[842,463],[1,-1],[1,0],[0,1],[1,0],[0,1],[-1,0],[1,0],[0,1],[-1,0],[0,1],[-1,0],[0,-1],[0,-1],[-1,-1]],[[843,492],[0,-1],[0,-1],[1,0],[0,1],[0,-1],[0,2],[0,1],[0,1],[-1,0],[0,-1],[0,-1]],[[846,473],[1,0],[1,0],[0,-1],[0,1],[-1,1],[0,-1],[0,1],[1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[0,-2],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[-1,0]],[[845,475],[1,0],[0,-1],[0,-1]],[[845,476],[0,-1]],[[844,475],[0,1],[0,-1]],[[845,475],[0,-1],[-1,1]],[[847,467],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[846,466],[0,1],[1,0]],[[846,466],[0,1],[0,1],[0,-1],[0,-1]],[[846,465],[0,1]],[[844,475],[0,-1],[0,-1],[0,-1],[0,-1],[1,1],[-1,0],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1]],[[845,476],[-1,1],[0,-1]],[[844,476],[0,-1],[1,0]],[[847,465],[-1,1]],[[847,464],[0,1]],[[846,465],[0,-1],[1,0]],[[848,464],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,-2],[0,-1]],[[847,464],[1,0]],[[848,462],[1,0],[-1,1],[0,-1]],[[848,464],[1,-1],[0,1],[0,1],[-1,-1]],[[539,784],[1,0],[0,-1],[-1,0]],[[554,788],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[1,0],[0,-1],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0]],[[554,788],[0,-1],[-1,0],[1,1]],[[555,788],[-1,0]],[[563,787],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0]],[[563,788],[0,-1]],[[565,768],[0,2],[0,1],[-1,1],[0,1],[1,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1]],[[565,767],[0,1]],[[562,749],[1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[1,0],[1,2],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[-1,0],[0,1],[0,1],[-1,1],[0,1],[0,1]],[[552,752],[0,-1],[1,1],[1,1],[0,-1],[0,-1],[0,1],[0,-1],[1,0],[-1,-1],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1]],[[541,763],[0,-1],[0,1]],[[420,672],[0,1],[-1,0],[0,-1],[1,0]],[[422,672],[0,-1],[-1,1],[-1,0]],[[420,672],[0,-1],[1,0],[1,0],[0,1]],[[422,672],[0,1],[-1,1],[0,-1],[1,-1]],[[424,674],[0,-1],[1,0],[-1,1]],[[428,667],[0,-1],[1,0],[1,0],[0,1],[-1,0],[-1,0],[0,1],[0,-1]],[[452,631],[0,-1],[0,-1],[1,0],[0,1],[0,1],[-1,0],[0,-1],[0,1]],[[475,697],[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],[-1,-1],[0,-1],[0,-1],[-1,-1],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[1,-1],[0,1],[0,1],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[1,0],[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,0],[1,0],[0,-1],[1,0],[0,1],[1,1]],[[479,663],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[-1,0],[0,1],[0,2],[1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,2],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[-1,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],[0,1],[0,-1],[-1,0],[0,-1],[-1,1],[-1,0],[0,-1],[0,1],[0,1],[0,1],[-1,-1],[-1,0],[0,-1]],[[313,526],[0,-1],[0,-1],[0,-1],[1,0],[0,1],[0,-1],[1,0],[0,1],[0,-1],[1,0],[1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1]],[[642,571],[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,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[640,573],[0,-1],[0,-1],[0,-1],[1,0],[0,1],[0,-1],[1,0],[0,1]],[[573,743],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[0,-1],[-1,0]],[[582,721],[0,1],[-1,0],[-1,0],[-1,-1],[-1,0],[0,1],[0,1]],[[579,710],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[-1,0],[0,1],[0,-1],[1,1],[-1,0],[1,0],[0,1],[0,1],[0,-1],[1,0],[1,0],[0,1],[0,1],[0,1]],[[556,728],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[0,1],[1,0],[1,-1],[-1,0],[0,-1],[0,-1]],[[901,918],[-1,0],[-1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,-2],[-1,-1],[0,-1],[-2,-2],[0,-1],[0,-1],[0,-1],[2,0],[1,-1],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[-2,0],[-1,0],[0,-2],[0,-2],[0,-1],[-2,0],[0,-1],[1,-1],[0,-1],[-1,0],[0,-2],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[1,-1],[-1,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,-1],[1,-1],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[1,-1],[0,-1],[1,-1],[-1,-1],[1,0],[-1,-1],[-1,-1],[-1,-1],[0,-1],[0,-1],[1,-1],[2,-2],[-2,-1],[1,-1],[1,-1],[1,0],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[1,1],[0,-1],[1,-1],[0,-1],[0,1],[1,0],[0,-1],[1,0],[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],[1,-1],[0,1],[0,-1],[0,-1],[1,0],[0,1],[0,-1],[0,-1],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[0,-1],[1,0],[1,0],[0,1],[0,-1],[0,1],[1,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[1,0],[-1,0],[0,-1],[0,-1],[-1,0],[-1,-1],[-1,-1],[1,0],[0,-1],[-1,0],[1,-1],[1,0],[0,1],[1,0],[0,-1],[0,-1],[1,-1],[1,0],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1]],[[906,918],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[1,0],[0,1]],[[907,918],[-1,0]],[[947,896],[-1,0],[0,1],[0,1],[-2,1],[-1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[-1,1],[0,1],[-1,0],[0,1],[-1,0],[-1,1],[-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],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[1,0],[1,0],[-1,1],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,-1],[0,1],[-1,0],[0,-1],[-1,0],[1,0],[0,1],[1,0],[0,1],[-1,0],[-1,0],[0,-1],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[1,0],[0,1],[1,-1],[1,0],[0,1],[-1,1],[-1,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,0],[-1,0],[0,1],[1,0],[-1,0],[0,1],[1,0],[0,-1],[1,1],[0,1],[0,1],[1,0],[0,-1],[0,1],[1,0],[0,-1],[-1,0],[0,-2],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1]],[[947,895],[0,1]],[[947,894],[-1,0],[0,1],[1,0]],[[948,893],[0,1],[-1,0]],[[948,893],[-1,-1],[0,-1],[0,-1],[-1,0],[1,1],[0,1],[0,1],[1,0]],[[948,894],[0,-1]],[[948,897],[0,-1],[0,-1],[0,-1]],[[949,898],[0,-1],[-1,0]],[[949,898],[0,-1],[0,1]],[[951,898],[0,1],[-1,-1],[-1,0]],[[952,841],[-1,1],[0,1],[1,0],[0,1],[-1,0],[0,1],[1,0],[0,1],[0,-1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[1,0],[1,1],[-1,0],[0,1],[1,0],[0,1],[0,1],[-1,0],[0,1],[1,0],[0,1],[-1,1],[1,1],[0,-1],[1,1],[0,1],[0,1],[-1,0],[0,1],[1,0],[-1,0],[-1,0],[-1,1],[0,-1],[0,1],[-1,0],[-1,0],[1,0],[-1,1],[0,1],[-1,0],[-1,1],[0,-1],[-1,0],[-1,1],[0,1],[0,1],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[0,1],[1,0],[0,1],[0,1],[-1,1],[-1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[-1,1],[1,1],[-1,0],[0,1],[0,1],[1,0],[1,0],[0,1],[-1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[1,1],[1,0],[0,-1],[0,1],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,-1],[1,1],[0,1],[0,1],[0,1],[1,0],[-1,1],[0,1],[1,1],[-1,0],[0,1],[-1,0],[0,1]],[[908,823],[1,0],[1,0],[0,1],[1,0],[0,-1],[1,0],[1,0],[0,1],[-1,0],[0,1],[1,0],[0,-1],[0,1],[1,-1],[0,1],[-1,0],[0,1],[1,0],[0,1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[-1,0],[1,0],[0,-1],[0,1],[1,0],[1,0],[0,-1],[1,-1],[1,0],[-1,-1],[-1,0],[-1,0],[0,-1],[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],[0,-1],[1,0],[0,1],[1,0],[0,1],[0,1],[-1,0],[-1,0],[0,-1],[0,1],[0,-1],[-1,0],[0,1],[0,1],[1,0],[-1,0],[0,1],[0,1],[1,0],[0,1],[1,1],[0,1],[1,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,0],[0,1],[1,0],[0,-1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,1],[1,0],[0,1],[1,-2],[-1,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,1],[1,0],[1,0],[-1,-1],[0,-1],[0,-1],[1,1],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,1],[0,1],[1,0],[0,-1],[0,1],[1,0]],[[902,919],[0,-1]],[[906,918],[0,1],[-1,0],[-1,0],[-1,0],[-1,0]],[[906,918],[1,0],[-1,0]],[[902,918],[1,0],[1,0],[1,0],[1,0]],[[903,709],[0,1],[0,1],[1,0],[0,1],[0,1],[1,1],[1,1],[-1,0],[0,1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1]],[[906,710],[1,0],[0,1],[-1,0],[0,-1]],[[907,715],[0,1],[1,0],[0,1],[1,1],[0,1],[1,0],[0,1],[1,1],[1,0],[0,1],[0,1],[-1,-1],[0,-1],[-1,0],[0,1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,-1],[0,-1]],[[912,949],[1,0],[1,0],[1,0],[0,1],[-1,0],[-1,0],[0,-1],[-1,0]],[[914,724],[1,0],[0,1],[1,1],[0,-1],[0,1],[0,1],[1,0],[0,1],[-1,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1]],[[917,821],[1,1],[-1,0],[0,-1]],[[924,945],[1,0],[0,1],[-1,0],[0,-1]],[[927,747],[1,0],[0,1],[-1,0],[0,-1]],[[928,750],[0,-1],[1,0],[0,1],[-1,0]],[[933,761],[-1,0],[0,-1],[0,-1],[-1,0],[-1,-1],[0,-1],[0,-1],[1,0],[0,1],[1,0],[0,1],[1,2],[0,1]],[[933,761],[0,1],[0,-1]],[[931,762],[1,0],[0,1],[-1,0],[0,-1]],[[933,762],[0,-1]],[[934,762],[-1,0]],[[933,761],[1,0],[0,1]],[[936,953],[0,-1],[1,0],[0,1],[-1,0]],[[948,898],[-1,0],[0,-1],[0,-1]],[[948,897],[0,1]],[[947,896],[0,1],[1,0]],[[947,896],[0,-1],[0,-1],[1,0],[0,-1],[0,1],[-1,1],[0,1]],[[898,751],[0,-1],[1,0],[1,-1],[0,-1],[1,-1],[0,-1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,2],[0,2],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[1,0],[0,1],[-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,2],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,-1],[-1,0],[0,-1],[0,-1],[1,-1],[0,-1],[-1,-1],[1,0],[0,1],[0,-1],[-1,0],[0,-1],[1,0],[-1,0],[0,-1],[-1,0],[0,1],[0,-1],[-1,0],[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,-1],[0,-2],[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,-2],[-1,0],[0,-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],[1,0],[0,-1],[-1,0],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,1],[0,1],[0,1],[1,2],[0,1],[0,-1],[1,0],[1,0],[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],[-1,0],[0,1],[0,2],[0,1],[0,1],[-1,0],[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],[1,0]],[[897,750],[1,0],[0,1]],[[898,751],[-1,0],[0,-1]],[[866,910],[1,-1],[1,0],[0,-2],[0,-1],[0,-1],[1,-1],[2,0],[1,-1],[0,-1],[-2,-1],[1,-1],[1,0],[0,-1],[-1,0],[-1,-1],[0,-1],[-1,-1],[-1,-1],[-1,0],[-2,-1],[-1,0],[-2,0],[-1,-1],[-2,1],[-1,-1],[-1,0],[-1,0],[-3,-1],[1,0],[1,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,-2],[1,-1],[1,-1],[0,-1],[0,-1],[0,-2],[0,-2],[2,-1],[1,-1],[1,0],[1,0],[1,1],[1,-1],[0,1],[1,-1],[-1,-1],[1,-2],[1,0],[1,-1],[1,-1],[1,0],[0,-2],[0,-2],[1,-1],[1,-3],[-1,0],[1,-1],[1,1],[0,-1],[0,-1],[0,-1],[0,-2],[-2,-2],[1,-1],[1,-2],[0,-2],[-1,-2],[0,-2],[1,0],[-1,-1],[2,-2],[0,-2],[1,0],[1,0],[1,-2],[1,-1],[-1,-1],[-2,0],[-1,0],[-1,-1],[0,-1],[1,-2],[0,-1],[-1,0],[-1,0],[0,-1],[-1,-1],[-1,-1],[0,-1],[0,-1],[0,-3],[0,-3],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,1],[0,-1],[0,-1],[-1,0],[0,1],[-1,0],[0,-1],[1,0],[-1,0],[1,-1],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[0,1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,1],[0,-1],[0,-1],[0,1],[1,-1],[0,-1],[1,-1],[0,-1],[0,-1],[-1,0],[1,-1],[-1,0],[0,1],[0,-1],[0,1],[-1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[1,0],[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],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,1],[1,0],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[1,0],[0,-1],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[0,-1],[0,1],[0,-1],[1,0],[0,1],[0,-1],[0,1],[1,0],[0,1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[1,0],[-1,-1],[0,-1],[-1,0],[-1,1],[-1,0],[0,1],[-1,-1],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[1,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,1],[1,0],[0,-1],[0,-1],[1,-1],[0,1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-2],[-1,0],[0,-1],[0,-1],[-1,1],[0,-1],[-1,-1]],[[880,912],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[-1,-2],[0,-1],[0,-2],[-1,0]],[[882,911],[-1,0],[-1,1]],[[883,911],[0,-1],[1,0],[-1,0],[-1,0],[1,0],[0,-1],[-1,0],[0,1],[-1,0],[1,0],[0,1]],[[883,911],[1,0],[-1,0]],[[883,912],[0,-1]],[[884,913],[0,-1],[-1,0]],[[885,913],[0,-1],[-1,0],[0,1]],[[902,919],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,1],[-1,0],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[1,0],[0,1],[1,0],[1,0],[0,-1],[-1,1],[0,-1],[0,-1],[-1,0],[1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,1],[-1,1]],[[901,918],[1,0]],[[908,824],[0,-1],[0,1],[1,1],[0,1],[0,1],[0,1],[-1,0],[-1,1],[0,1],[0,1],[-1,0],[0,-1],[-1,0],[-1,1],[1,0],[0,1],[-1,0],[1,1],[1,1],[1,0],[0,1],[0,1],[1,0],[-1,0],[0,1],[1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,1],[0,-1],[0,1],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,1],[0,1],[0,-1],[-1,0],[0,1],[0,1],[0,-1],[-1,1],[0,-1],[-1,-1],[0,1],[-1,0],[0,-1],[0,1],[-1,1],[0,-1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,-1],[0,1],[-1,1],[0,1],[-1,-1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[1,1],[1,0],[0,1],[0,1],[0,1],[1,1],[-1,0],[-1,1],[-1,1],[2,1],[-2,2],[-1,1],[0,1],[0,1],[1,1],[1,1],[1,1],[-1,0],[1,1],[-1,1],[0,1],[-1,1],[0,1],[1,0],[1,0],[0,1],[0,1],[-1,1],[-1,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[1,0],[0,1],[-1,1],[1,0],[1,1],[1,0],[1,1],[1,0],[1,0],[0,2],[1,0],[0,1],[-1,1],[0,1],[2,0],[0,1],[0,2],[0,2],[1,0],[2,0],[0,1],[-1,1],[0,1],[-1,0],[0,1],[-1,1],[-2,0],[0,1],[0,1],[0,1],[2,2],[0,1],[1,1],[1,2],[0,1],[0,1],[0,1],[1,0],[1,1],[0,1],[1,1],[0,1],[0,1],[1,0],[1,0]],[[865,704],[1,0],[0,1],[0,1],[1,0],[0,-1],[-1,-1],[0,-1],[1,0],[1,0],[0,-1],[0,1],[0,-1],[1,0],[1,0],[0,1],[1,0],[1,1],[0,1],[1,1],[0,1],[1,0],[0,1],[1,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,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],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,2],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,2],[0,1],[1,1],[-1,1],[0,1],[0,1],[1,0],[0,1],[-1,0],[0,1],[1,0],[-1,1],[0,1],[0,1],[1,2],[0,1],[0,1],[0,1],[1,1],[-1,0],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[1,0],[0,1],[0,1],[-1,1],[0,1],[-1,1],[1,0],[0,-1],[1,0],[-1,0],[1,1],[0,1],[-1,1],[0,1],[-1,0],[0,1],[-1,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[1,1],[0,1],[0,1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[1,0],[0,1],[0,1],[-1,0],[0,1],[1,1],[-1,0],[-1,-1],[1,-1],[0,-1],[-1,0],[-1,-1],[0,1],[0,1],[0,1],[1,0],[-1,1],[0,1],[1,1],[0,1],[-1,0],[0,-1],[-1,0],[0,1],[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],[0,1],[1,0],[0,1],[1,1],[1,1],[0,1],[1,0],[0,1],[1,1],[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,1],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[1,1],[0,1],[1,0],[1,1],[0,1],[1,0],[0,1],[0,1],[1,1],[1,1],[1,0],[0,1],[1,0],[0,-1],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[-1,0],[1,-1],[1,0],[0,1],[0,1],[1,0],[1,0]],[[865,704],[0,1],[0,1],[1,0],[0,-1],[-1,0],[0,-1]],[[862,701],[1,0],[0,-1],[0,1],[1,0],[-1,0],[1,1],[0,1],[0,1],[1,0]],[[862,700],[0,1]],[[862,699],[1,1],[-1,0]],[[876,932],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1]],[[876,940],[1,0],[0,1],[1,0],[0,1],[-1,0],[0,1],[-1,0],[0,-1],[0,-1],[0,-1]],[[881,792],[-1,0],[0,-1],[-1,0],[0,-1],[0,1],[1,0],[1,1]],[[880,941],[0,1],[1,0],[0,-1],[0,-1],[-1,0],[1,0],[0,-1],[-1,0],[0,1],[0,-1],[0,-1],[1,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,-1],[1,1],[0,1],[0,1],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[0,-1],[-1,1],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,1],[-1,1],[0,1],[1,1],[1,0],[1,0],[0,-1],[-1,0],[-1,-1],[0,-1],[1,0],[0,-1],[1,0],[1,-1],[0,1],[1,-1],[1,0],[1,0],[0,1],[1,0],[0,1],[-1,0],[1,1],[1,0],[0,1],[1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,1],[-1,0]],[[890,942],[0,1],[-1,0],[-1,0],[0,1],[0,-1],[0,1],[-1,0],[-1,1],[-1,1],[0,-1],[-1,0],[0,-1],[0,1],[-1,0],[0,-1],[0,1],[0,-1],[-1,0],[-1,0],[0,-1],[1,0],[0,-1],[-1,1],[0,-1],[-1,0],[1,0],[-1,-1]],[[891,942],[0,-1],[-1,0],[0,1]],[[891,944],[0,-1],[0,-1]],[[892,945],[1,0],[0,-1],[-1,0],[-1,0]],[[883,912],[-1,0],[-1,0],[-1,0]],[[882,911],[1,0],[0,1]],[[881,911],[0,1],[1,0],[0,-1]],[[880,912],[1,0],[0,-1]],[[881,792],[0,-1],[0,-1],[1,0],[0,-1],[1,1],[0,1],[0,1],[-1,0],[0,1],[0,-1],[-1,0]],[[882,788],[0,-1]],[[882,787],[1,0],[0,1],[-1,0]],[[887,925],[1,0],[1,0],[0,1],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,1],[0,1],[-1,1],[-1,1],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,0],[-1,0],[-1,-1]],[[889,930],[0,-1],[1,0],[1,1],[0,1],[0,1],[-1,0],[-1,0],[0,-1],[0,-1]],[[905,938],[1,0],[1,0],[1,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[0,-1],[0,1],[0,-1],[-1,0],[-1,1],[0,1],[-1,0],[0,-1],[0,-1],[-1,-1]],[[20,863],[0,1],[1,0],[0,1],[1,0],[-1,1],[-1,0],[1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,-1],[1,0],[0,-1],[1,1],[0,-1],[1,0],[1,0],[1,0],[0,1],[-1,0],[-1,2],[0,-1],[1,0],[1,-1],[1,0],[0,1],[0,1],[1,1],[1,0],[0,1],[-1,0],[1,0],[-1,0],[0,1],[-1,0],[0,-1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[1,0],[-1,0],[-1,1],[0,-1],[1,0],[1,0],[-1,-1],[-1,1],[-1,0],[1,-1],[-1,0],[0,1],[1,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[0,1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[1,0],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,1],[0,1],[-1,0],[0,-1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[-1,0],[1,0],[0,1],[-1,1],[0,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,1],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[-1,1],[1,-1],[1,0],[0,-1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,-1],[1,0],[-1,1],[-1,1],[-1,0],[0,1],[0,-1],[-1,1],[0,-28],[1,0],[0,1],[0,1],[1,1],[-1,0],[0,1],[-1,1],[0,1],[0,1],[1,0],[1,0],[0,1],[-1,0],[0,1],[1,-1],[0,1],[0,-1],[0,-1],[1,0],[0,1],[1,1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,-1],[0,-1],[1,0],[1,0],[0,1],[0,1],[0,-1],[0,-1],[0,-1],[1,0],[0,1],[0,1],[1,0],[0,-1],[1,0],[0,1],[-1,0],[0,1]],[[20,863],[-1,0],[0,1],[0,-1],[1,0]],[[20,862],[-1,0],[1,1]],[[0,909],[1,0],[0,-1],[1,0],[0,1],[1,0],[1,0],[1,0],[1,1],[1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-4]],[[20,863],[0,-1]],[[21,862],[0,1],[-1,0]],[[20,862],[1,0]],[[952,846],[1,1],[1,0],[0,1],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[-1,0],[-1,0],[1,0],[0,-1],[-1,1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-2],[-1,-1],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,1],[-1,-1],[-1,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,-1],[-1,-1],[0,-1],[-1,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,-1],[-1,-1],[0,-1],[-1,-1],[-1,-1],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,1],[0,-1],[-1,0],[1,0],[0,-1],[0,-1],[0,-2],[-1,0],[0,-1],[0,1],[0,-1],[0,-1],[-1,0],[0,-1],[0,1],[0,-1],[-1,0],[0,-1],[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,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-3],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[1,0],[-1,0],[1,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[-1,-1]],[[952,845],[1,0],[0,1],[-1,0]],[[952,843],[0,1],[0,1]],[[952,841],[0,1],[0,1]],[[952,841],[0,-1],[1,0],[0,1],[-1,0]],[[966,899],[-1,0],[0,-1],[-1,0],[0,-1],[-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],[0,-1],[-1,0]],[[967,899],[-1,0]],[[934,762],[1,0],[0,1],[1,1],[0,1],[0,1],[1,1],[1,0],[0,1],[1,2],[0,1],[0,1],[1,0],[0,1],[0,2],[-1,0],[1,0],[0,1],[0,1],[-1,0],[0,1],[1,0],[0,-1],[1,1],[0,1],[1,0],[1,1],[0,-1],[1,0],[0,-1],[0,1],[0,1],[0,1],[-1,1],[1,-1],[0,1],[0,1],[0,-1],[-1,0],[0,1],[0,1],[1,1],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[1,-1],[-1,-1],[-1,-1],[1,-1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[-1,0],[-1,1],[0,-1],[0,-1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[1,1],[0,2],[1,0],[0,1],[1,0],[-1,0],[1,1],[0,1],[1,0],[0,1],[-1,0],[1,0],[0,1],[0,1],[0,1],[0,1],[1,1],[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],[1,0],[0,1],[1,0],[0,1],[1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[1,0],[0,1],[1,1],[0,1],[1,1],[1,0],[0,1],[1,0],[1,1],[1,0],[1,0],[0,-1],[1,0],[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],[0,1],[1,0],[1,1],[1,1],[1,0],[0,1],[0,-1],[0,1],[1,0],[-1,1],[1,0],[0,-1],[0,1],[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],[0,1],[0,-1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,1],[1,1],[1,0],[1,0],[0,1],[1,1],[1,0],[1,0],[1,0],[-1,1],[0,-1],[0,1],[-1,0],[1,2],[0,-1],[0,-1],[1,0],[0,1],[0,-1],[0,-1],[1,0],[1,0],[1,0],[0,7],[0,1],[0,5],[-1,0],[0,-1],[-1,1],[-1,1],[0,1],[0,1],[0,1],[-1,0],[-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],[-1,0],[0,-1],[-1,1],[0,-1],[-1,0],[-1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,-1],[1,0],[1,0],[0,1],[-1,0],[0,1],[0,-1],[-1,0],[-1,1],[1,0],[0,-1],[0,1],[1,0],[1,-1],[1,0],[0,-1],[0,-1],[1,0],[1,0],[1,0],[0,35],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[0,-1],[-1,0],[1,0],[0,-1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,1],[0,1],[0,1],[0,1]],[[945,908],[0,-1],[1,0],[-1,1]],[[948,907],[0,-1],[1,0],[-1,1]],[[953,818],[1,0],[0,-1],[0,1],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[0,1],[0,1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[1,0],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0]],[[961,794],[1,-1],[0,-1],[1,-1],[0,-1],[1,0],[-1,1],[0,1],[-1,1],[0,1],[0,1],[-1,0],[0,-1]],[[966,791],[0,-1],[1,-1],[1,0],[0,-1],[-1,1],[0,1],[-1,0],[0,1]],[[967,899],[1,-1],[1,0],[1,0],[1,0],[0,1],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1]],[[555,789],[0,-1]],[[555,789],[0,1],[1,0],[0,-1],[-1,0]],[[558,794],[-1,-1],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1]],[[559,794],[0,-1],[0,-1],[-1,-1],[-1,1],[0,1],[1,0],[0,1]],[[579,834],[1,-1],[-1,0],[0,-1],[1,0],[-1,-1],[0,1],[0,-1],[1,0],[0,-1],[1,-1],[1,0],[0,1],[1,-1],[0,-1],[1,0],[0,-1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,1],[0,-1],[0,-1],[0,-1]],[[577,832],[1,0],[1,1],[0,1]],[[594,896],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[0,1],[1,0],[1,1],[-1,0],[1,1],[0,1],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[-1,0],[0,-1],[1,1],[0,1],[-1,0],[1,0],[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,1],[-1,0]],[[595,896],[-1,0]],[[611,862],[-1,-1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,-1],[0,1],[1,0],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[-1,1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[0,1],[-1,-1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,1],[-1,1],[-1,-1],[-1,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[1,0],[-1,1],[0,1],[-1,1],[1,1],[0,1],[0,1],[1,0],[0,-1],[0,1],[0,1],[-1,1],[-1,1],[-1,1],[-1,0],[-1,0],[1,0],[0,1],[-1,0],[-1,0],[1,1],[1,0],[0,-1],[0,1],[-1,0],[-1,0],[1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,1],[-1,0],[1,0],[1,0],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,1],[1,-1],[1,-1],[1,-1],[0,1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,1],[0,1],[1,0],[0,2],[0,1],[0,-1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[1,-1],[-1,0],[0,1],[-1,0],[-1,1],[-1,1],[0,-1],[0,1],[-1,0],[-1,1],[0,1],[-1,0],[-1,1],[-1,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[1,0],[-1,0],[-1,0],[-1,0],[0,1]],[[611,862],[0,-1],[0,1]],[[612,861],[-1,0],[0,1]],[[612,862],[1,-1],[-1,0]],[[612,863],[0,-1]],[[641,889],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,1],[-1,-1],[-1,-1],[-1,0],[-1,0],[0,1],[0,-1],[1,0],[0,-1],[0,-1],[0,1],[-1,0],[-1,0],[0,-1],[0,1],[-1,0],[0,-1],[0,-1],[0,-2],[0,-1],[-1,-1],[-1,0],[-1,0],[-1,0],[0,-1],[0,1],[-1,0],[-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],[1,0],[1,0],[0,1],[-1,0],[0,1],[0,1],[-1,1],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[0,-1],[1,0],[0,-1],[1,0],[1,-1],[0,-1],[0,-1],[0,-1],[-1,0],[1,0],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,0],[1,-1],[1,0],[0,-1],[1,0],[0,-1],[-1,-1],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,-1],[1,-1],[0,-1],[-1,1],[0,1],[-1,0],[0,-1],[0,-1],[-1,1],[1,1],[0,1],[-1,0],[0,1],[-1,0],[0,-1],[-1,1],[-1,0],[-1,-1],[0,-1],[-1,-1],[-1,0],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,0],[-1,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1]],[[642,889],[-1,0]],[[643,890],[0,-1],[-1,0]],[[660,892],[0,-1],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,-1],[0,-1],[0,-1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[1,0],[1,0],[0,1],[-1,1],[1,0],[0,1],[0,1],[-1,0],[0,-1],[0,1],[1,0],[1,0],[1,0],[0,1],[-1,0],[-1,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[1,0],[0,1],[0,-1],[1,0],[-1,-1],[-1,-1],[0,1],[1,1],[-1,0],[-1,0],[-1,0]],[[661,892],[-1,0]],[[667,898],[1,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,1],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,1],[0,-1],[-1,0],[1,0],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[1,0],[0,1],[-1,1],[1,0],[0,1],[-1,0],[-1,-1],[-1,0],[0,-1],[1,0],[-1,0],[0,1],[-1,-1]],[[668,899],[0,-1],[-1,0]],[[681,896],[-1,0],[0,1],[-1,0],[0,1],[-2,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,-1],[0,-1],[-1,0],[0,1]],[[680,895],[0,1],[1,0]],[[646,830],[0,1],[-1,0],[0,1],[-1,0],[0,2],[2,0],[0,1],[1,0],[0,1],[2,-1],[0,-1],[1,0],[0,1],[3,-1],[0,1],[1,0],[0,1],[1,0],[1,1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[0,1],[1,1],[-1,0],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[1,0],[-1,1],[1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[1,1],[1,1],[1,0],[-1,0],[1,-1],[1,1],[0,1],[1,0],[0,1],[1,1],[0,1],[1,1],[1,0],[1,1],[0,1],[1,1],[0,1],[1,0],[-1,0],[1,1],[1,1],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[0,2],[0,1],[1,0],[0,1],[1,0],[0,1],[-1,0],[0,1],[1,0],[1,0],[-1,1],[0,1],[-1,0],[-1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1]],[[649,798],[-1,-1],[0,1],[1,1],[0,1],[-1,0],[0,-1],[0,1],[0,-1],[-1,1],[1,0],[-1,0],[0,1],[0,1],[1,0],[-1,0],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[0,1],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[1,0],[0,1],[-1,0],[0,-1],[0,1],[0,-1],[-1,0],[0,1],[0,-1],[0,1],[-1,0],[0,1],[0,1],[0,-1],[0,1],[0,-1],[-1,1],[0,1],[0,1],[0,-1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,-1],[0,-1],[0,1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,1],[0,-1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[1,0],[0,1],[0,1],[1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,1],[0,-1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,-1],[0,1],[1,0],[0,1],[1,0],[-1,0],[0,1],[1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[1,2],[-1,0],[0,-1],[0,1],[0,-1],[0,1],[0,-1],[-1,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[1,-1],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[1,0],[-1,-1],[1,0],[1,-1],[0,-1],[1,0],[0,1],[0,1],[-1,0],[1,1],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[0,-1],[1,1],[0,1],[1,1],[1,0]],[[650,798],[-1,0]],[[650,798],[0,-1],[0,1]],[[646,786],[1,0],[1,0],[-1,0],[0,-1],[1,0],[-1,-1],[1,0],[1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,1],[-1,1],[0,-1],[0,1],[0,1]],[[646,787],[0,-1]],[[645,786],[0,1],[1,0]],[[631,789],[0,-1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,-1],[1,0],[1,0],[0,1],[1,0],[0,-1],[1,0],[-1,0],[1,0],[-1,-1],[1,0],[1,0],[1,-1],[0,-1],[1,1],[0,-1],[1,0],[-1,1],[1,0],[0,1],[0,1],[0,-1],[1,1],[0,-1],[0,1],[0,-1],[1,0],[0,-1],[1,0],[0,-1]],[[631,722],[0,1],[-1,0],[0,3],[0,1],[-1,-1],[1,2],[-1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[-1,1],[0,1],[-1,0],[0,3],[1,1],[-1,1],[-1,-2],[-1,1],[0,1],[0,1],[-1,0],[0,1],[1,0],[-1,1],[0,-1],[0,1],[-1,0],[-1,1],[0,-1],[-1,0],[0,1],[-1,0],[1,-1],[0,-1],[0,-1],[-1,1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,1],[-1,0],[-1,1],[0,1],[-1,2],[-1,0],[0,1],[1,1],[-1,0],[1,1],[1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[-1,1],[-1,1],[0,1],[-1,1],[1,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[1,0],[1,1],[0,1],[1,-1],[0,1],[1,0],[1,0],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[1,0],[-1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,1],[0,1],[1,-1],[0,-1],[1,0],[0,1],[0,-1],[1,1],[0,-1],[0,1],[1,0],[0,-1],[0,1],[1,0],[-1,0],[1,0],[0,1],[1,0],[0,1],[0,-1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[1,0],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,-1],[1,0],[1,0]],[[634,695],[0,1],[0,1],[-1,0],[0,2],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[1,0],[-1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[-1,0],[0,-1],[0,-1],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[-1,0],[0,1],[0,1],[1,1],[0,1],[1,1],[0,1],[0,1],[0,1]],[[610,708],[0,-1],[0,1],[1,0],[0,1],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,1],[0,-1],[1,0],[0,-1],[1,-1],[1,0],[0,-1],[0,-1],[1,0],[0,1],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,-1],[1,0],[0,-1]],[[601,720],[1,0],[1,-1],[0,-1],[0,-1],[1,-1],[0,1],[1,0],[0,-2],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1]],[[601,722],[1,0],[0,-1],[-1,-1]],[[601,722],[0,-1],[0,1]],[[606,734],[1,0],[0,1],[1,0],[1,0],[0,-1],[0,-1],[-1,1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,1],[1,-1],[-1,0],[-1,0],[-1,0],[0,-1],[1,-1],[1,-1],[0,-1],[1,0],[0,-1],[-1,0],[0,1],[-1,0],[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],[-1,0],[-1,0],[0,1],[-1,0]],[[606,735],[0,-1]],[[606,735],[1,0],[-1,0]],[[588,771],[0,-1],[1,0],[0,1],[1,1],[1,0],[1,1],[1,-1],[0,1],[1,0],[0,-2],[0,-1],[1,-1],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[1,1],[0,-1],[0,-1],[1,0],[0,1],[0,-1],[1,0],[0,1],[1,0],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,1],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[-1,1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[-1,-1],[0,-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],[0,-1],[0,-1],[0,1]],[[599,865],[0,-1],[1,0],[0,1],[-1,0],[0,1],[0,-1]],[[634,977],[1,0],[-1,1],[0,1],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[1,0],[1,0],[0,-1],[0,1],[1,0],[0,-1],[1,0],[1,0],[-1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,-1]],[[633,977],[1,0]],[[633,977],[-1,-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],[1,0],[0,1],[0,-1],[1,0],[0,1],[1,0],[1,0],[-1,0],[0,1],[-1,0],[1,0],[1,0],[1,0],[1,1],[-1,0],[1,0],[1,0],[1,0],[0,1],[1,-1],[0,1],[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],[-1,0],[0,-1],[-1,0],[1,0],[1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,1]],[[633,977],[0,-1],[0,1]],[[634,894],[0,-1],[1,-2],[1,0],[0,1],[1,0],[1,1],[0,1],[1,0],[0,1],[0,-1],[0,-1],[0,1],[1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,-1],[0,-1],[0,-1]],[[638,973],[0,1],[1,0],[-1,0],[-1,0],[0,-1]],[[637,973],[1,0]],[[638,973],[0,-1],[1,0],[1,0],[1,0],[1,0],[-1,1],[-1,0],[-1,0],[-1,0]],[[639,981],[0,-1],[1,0],[0,1],[1,0],[-1,0],[-1,0]],[[642,889],[-1,0],[1,0],[1,1]],[[643,890],[-1,0],[0,-1]],[[650,925],[-1,0],[-1,-1],[-1,0],[0,-1],[1,0],[-1,0],[0,-1],[1,0],[-1,0],[-1,0],[0,-1],[-1,0],[1,-1],[1,0],[-1,0],[0,-1],[0,1],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[1,-1],[1,-1],[1,1],[1,0],[0,-1]],[[650,925],[0,-1],[0,1]],[[655,925],[-1,0],[-1,0],[-1,1],[-1,-1],[-1,0]],[[657,924],[-1,0],[-1,0],[0,1]],[[659,905],[1,0],[0,1],[0,1],[-1,0],[-1,0],[-1,1],[0,1],[-1,0],[0,1],[-1,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[1,1],[-1,0],[1,0],[0,1],[0,1],[0,1],[-1,-1],[0,1],[1,0],[-1,0],[0,1],[1,0],[0,-1],[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,0],[0,1]],[[658,905],[0,1],[1,0],[0,-1]],[[658,905],[1,0],[-1,0]],[[648,909],[1,-1],[0,-1],[-1,0],[1,0],[1,-1],[1,0],[1,0],[-1,0],[0,1],[0,-1],[1,0],[1,-1],[1,0],[-1,0],[0,1],[1,0],[1,0],[-1,0],[1,0],[0,-1],[1,0],[-1,0],[0,1],[1,-1],[0,1],[0,-1],[1,0],[0,1],[-1,0],[1,0],[-1,0],[1,0],[0,-1],[1,0]],[[648,910],[1,0],[0,-1],[1,0],[-1,0],[-1,0]],[[648,910],[1,0],[-1,1],[1,0],[1,0],[-1,0],[0,-1],[-1,0]],[[647,911],[0,1],[1,0],[0,-1],[0,-1]],[[646,911],[1,0]],[[647,976],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1]],[[649,975],[-1,0],[-1,0],[0,1]],[[646,911],[-1,0],[0,-1],[1,0],[0,-1],[1,-1],[0,1],[1,0]],[[646,911],[1,-1],[0,1]],[[648,910],[-1,0],[-1,0],[0,1]],[[648,909],[0,1]],[[647,976],[1,0],[0,1],[-1,0],[0,-1]],[[662,943],[0,-1],[-1,0],[-1,0],[0,-1],[1,1],[0,-1],[-1,0],[-1,0],[0,-1],[1,0],[0,-1],[-1,0],[0,1],[-1,0],[-1,0],[0,-1],[0,-1],[-1,-1],[0,1],[-1,0],[0,1],[0,-1],[-1,0],[1,0],[0,-1],[-1,0],[1,0],[1,0],[1,0],[-1,-1],[-1,0],[-1,0],[1,-1],[0,1],[1,0],[0,-1],[1,0],[1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[1,0],[1,0],[0,-1],[1,0],[-1,0],[-2,0],[0,-1],[1,0],[-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,-1],[-1,0],[1,0],[0,-1],[1,0],[1,0],[0,1],[1,0],[1,0],[-1,-1],[-1,0],[-1,0],[0,-1],[0,-1]],[[664,944],[0,-1],[-1,0],[-1,0]],[[666,945],[0,-1],[1,0],[-1,0],[-1,0],[-1,0]],[[667,945],[-1,0]],[[657,924],[0,1],[1,0],[0,1],[1,0],[-1,0],[0,1],[-1,0],[0,1],[0,-1],[1,0],[1,0],[1,0],[-1,1],[0,1],[-1,0],[-1,0],[1,0],[1,0],[0,-1],[1,0],[0,1],[0,1],[-1,0],[-1,0],[1,0],[0,1],[1,-1],[1,0],[0,1],[1,0],[-1,0],[1,0],[1,1],[-1,0],[0,1],[-1,1],[1,0],[0,-1],[1,0],[1,0],[0,1],[0,1],[1,-1],[1,0],[0,1],[-1,0],[0,1],[0,-1],[1,0],[1,0],[0,1],[1,0],[0,1],[-1,0],[-1,0],[1,0],[0,1],[1,0],[0,-1],[0,1],[1,0],[0,1],[1,0],[-1,0],[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,0],[1,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,1],[0,1],[1,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[-1,0],[0,1],[0,-1],[-1,0],[-1,0],[0,-1],[-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],[0,-1],[-1,0],[1,1],[-1,0]],[[655,925],[1,0],[1,-1]],[[655,925],[0,1],[0,-1]],[[653,925],[1,0],[1,0]],[[652,926],[1,0],[0,-1]],[[650,925],[1,0],[1,1]],[[650,976],[0,1],[-1,0],[1,0],[-1,0],[0,-1],[1,0]],[[653,979],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[1,0],[1,0],[1,0],[1,0]],[[654,979],[-1,0]],[[654,978],[0,1]],[[653,978],[1,0]],[[649,983],[0,-1],[1,0],[0,1],[-1,0]],[[656,980],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,-1],[1,0],[1,0],[1,0],[0,-1]],[[658,979],[-1,0],[-1,1]],[[659,979],[-1,0]],[[657,978],[1,0],[1,0],[0,1]],[[654,979],[1,0],[1,0],[1,-1]],[[652,976],[0,1],[-1,0],[0,-1]],[[651,976],[1,0]],[[652,975],[-1,0],[0,-1],[1,0],[1,0],[0,1],[-1,0]],[[652,976],[0,-1]],[[652,975],[1,1],[-1,0]],[[656,983],[-1,0],[0,-1],[1,0],[-1,0],[-1,0],[-1,0],[0,-1],[1,0],[1,1],[1,0],[0,-1]],[[658,983],[-1,0],[-1,0]],[[658,982],[0,1]],[[658,982],[1,0],[1,0],[-1,0],[-1,0]],[[656,981],[1,1],[1,0]],[[654,978],[-1,0],[1,0],[-1,0]],[[657,978],[-1,0],[-1,0],[-1,0]],[[653,978],[1,-1],[1,0],[1,0],[1,0],[0,1]],[[655,975],[-1,0],[1,-1],[-1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[0,1]],[[658,975],[-1,0],[-1,0],[-1,0]],[[658,974],[0,1]],[[656,981],[-1,0],[1,0]],[[657,981],[-1,0]],[[660,980],[-1,0],[-1,0],[-1,1]],[[661,980],[-1,0]],[[661,979],[0,1]],[[660,979],[1,0]],[[659,979],[1,0]],[[656,980],[1,0],[1,0],[0,-1]],[[656,981],[0,-1]],[[660,984],[-1,0],[-1,0],[-1,0],[-1,-1]],[[661,984],[-1,0]],[[661,983],[0,1]],[[658,983],[1,0],[1,0],[1,0]],[[658,974],[1,0],[0,-1],[1,0],[0,1],[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],[-1,0],[1,0],[0,-1]],[[658,982],[0,-1],[-1,0]],[[660,982],[-1,0],[-1,0]],[[657,981],[1,0],[1,0],[1,1]],[[659,905],[-1,0]],[[658,905],[0,-1],[1,0],[0,1]],[[661,985],[0,1],[1,0],[1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[1,0],[1,0]],[[660,981],[0,-1]],[[661,981],[-1,0]],[[661,980],[1,0],[-1,1]],[[660,979],[0,-1],[1,0],[1,0],[1,0],[0,1],[-1,0],[-1,0]],[[661,985],[-1,-1]],[[661,984],[1,0],[0,1],[-1,0]],[[662,973],[-1,-1],[1,0],[1,0]],[[663,972],[-1,0],[0,1]],[[664,982],[0,1],[-1,0],[-1,0],[-1,0]],[[663,982],[1,0]],[[661,983],[0,-1],[1,0],[1,0]],[[664,944],[-1,0],[-1,0],[0,-1]],[[662,943],[1,1],[1,0]],[[663,972],[1,0],[1,0],[0,1],[-1,1],[-1,-1],[-1,0]],[[662,973],[1,0],[0,-1]],[[668,899],[0,1],[0,1],[-1,0],[0,1],[-1,0],[-1,1],[0,1],[-1,0],[-1,0],[0,-1],[0,-1],[0,1],[-1,0],[1,-1],[0,-1],[1,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1]],[[667,898],[0,1],[1,0]],[[665,982],[-1,0]],[[663,982],[0,-1],[1,0],[1,0],[0,1]],[[663,896],[1,0],[0,-1],[1,0],[-1,1],[-1,0]],[[668,979],[-1,0],[-1,0],[-1,0],[1,0],[-1,0],[-1,0],[0,-1],[-1,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[0,1],[1,0],[0,1]],[[672,979],[-1,0],[-1,0],[-1,0],[-1,0]],[[666,945],[-1,0],[1,0]],[[667,945],[0,1],[-1,-1]],[[668,979],[1,1],[1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[1,0],[1,-1]],[[671,985],[-1,0],[0,-1],[1,0],[0,1]],[[671,985],[1,0],[1,0],[1,0],[1,0],[0,-1],[0,1],[1,0],[-1,0],[-1,1],[0,-1],[-1,0],[0,1],[-1,0],[0,-1],[-1,0]],[[672,979],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0]],[[650,798],[0,1],[1,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[0,-1],[-1,1],[1,0],[-1,0],[0,1],[1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[-1,0],[1,0],[-1,0],[0,1],[-1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,1],[-1,1],[-1,0],[-1,0],[-1,0],[0,1]],[[635,724],[-1,1],[0,-1]],[[634,724],[1,-1],[0,1]],[[631,789],[-1,0],[-1,0],[0,1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[-1,0],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[0,-1],[-1,0],[0,-1],[-1,0],[1,0],[-1,0],[0,-1],[0,1],[-1,0],[0,-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],[-1,0],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[1,0],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[-1,0],[-1,0],[0,-1],[-1,1],[0,-1],[-1,-1],[-1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[-1,-1],[1,-1],[0,-1],[1,-1],[1,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,-1],[1,0],[-1,-1],[0,-1],[1,0],[1,-2],[0,-1],[1,-1],[1,0],[1,-1],[0,1],[0,1],[0,1],[1,0],[0,1],[1,-1],[0,1],[0,1],[-1,1],[1,0],[0,-1],[1,0],[0,1],[1,-1],[1,0],[0,-1],[0,1],[1,-1],[-1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,-1],[1,2],[1,-1],[-1,-1],[0,-3],[1,0],[0,-1],[1,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[1,0],[-1,-2],[1,1],[0,-1],[0,-3],[1,0],[0,-1],[0,1]],[[645,786],[1,0],[0,1]],[[641,768],[1,1],[1,1],[0,1],[0,1],[0,1],[0,1],[0,-1],[0,1],[1,0],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[-1,1],[1,0],[0,1],[-1,0],[0,1]],[[641,767],[0,1]],[[636,728],[0,-1],[0,1]],[[635,724],[0,1],[0,1],[0,1],[0,-1],[0,1],[1,0],[0,1]],[[634,725],[1,0],[0,-1]],[[634,724],[0,1]],[[631,723],[0,1],[1,-1],[0,1],[0,-1],[0,1],[1,0],[1,0]],[[631,723],[1,-1],[0,1],[-1,0]],[[631,789]],[[646,786],[0,1],[0,-1],[-1,0]],[[650,798],[-1,0],[1,0]],[[681,896],[0,-1],[-1,0]],[[684,894],[-1,0],[0,1],[0,-1],[0,1],[-1,0],[-1,0],[0,1]],[[685,893],[0,1],[-1,0]],[[688,898],[1,-1],[0,1],[1,0],[0,-1],[0,-1],[-1,0],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[1,0],[-1,0],[1,0],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,1],[0,1],[-1,0],[-1,1],[-1,0],[0,1],[0,1],[-1,0],[-1,0]],[[687,898],[1,0]],[[694,923],[-1,0],[-1,-1],[0,-1],[-1,-1],[0,-2],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,0],[-1,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[1,0],[0,1],[0,-1],[-1,0],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-2],[0,-1],[0,1],[1,0],[0,-1]],[[696,877],[1,0],[-1,-1],[1,0],[0,-1],[1,1],[1,0],[1,0],[0,1],[-1,1],[0,1],[1,-1],[0,1],[1,0],[0,1],[1,0],[-1,1],[1,0],[0,1],[0,1],[0,1],[1,0],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[-1,0],[0,1],[1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[-1,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[-1,0],[0,1],[0,1],[0,1],[-1,0],[-1,1],[0,-1],[-1,1],[1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[1,0],[0,1]],[[695,877],[1,0]],[[694,877],[1,1],[0,-1]],[[693,878],[1,0],[0,-1]],[[693,877],[-1,0],[0,1],[1,0]],[[695,875],[-1,0],[-1,1],[0,1]],[[708,922],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[1,0],[1,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-2],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,1],[1,0],[0,-1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,-1],[1,0],[0,1],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,1],[1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,1],[1,0],[0,1],[-1,0],[1,1],[0,1],[-1,0],[0,1],[1,0],[0,1],[-1,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-2],[-1,-1],[-1,-1],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[-1,-1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1]],[[716,918],[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],[-1,1],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[1,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[-1,0],[1,0],[0,-1],[1,0],[0,1],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[0,-1],[0,1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[0,1],[1,0],[0,1],[0,1],[-1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[-1,0],[0,1],[0,1],[-1,1],[1,0],[-1,1],[-1,0]],[[717,918],[-1,0]],[[718,918],[-1,0]],[[718,919],[0,-1]],[[710,817],[0,1],[1,2],[0,1],[0,1],[1,0],[0,1],[1,1],[1,0],[0,1],[0,2],[0,1],[1,1],[0,1],[-1,0],[0,1],[1,0],[0,1],[0,1],[0,-1],[0,1],[0,1],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,1],[1,0],[1,-1],[1,0],[1,0],[1,-1],[0,1],[1,2],[1,0],[0,1],[1,0],[1,-1],[1,-1],[1,0],[1,1],[0,1],[3,2],[-1,0],[1,1],[0,1],[-1,0],[0,1],[-1,0],[-1,1],[0,-1],[0,1],[-1,0],[0,1],[0,1],[1,2],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[1,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,-1],[-1,0],[0,1],[-1,0],[0,1],[0,-1],[-1,0],[-1,1],[1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[1,0],[0,1],[-1,0],[0,1],[-3,3],[1,0],[-1,0],[1,0],[0,1],[0,1],[0,-1],[0,1],[-1,0],[0,1],[0,1],[0,-1],[0,1],[-1,0],[0,1],[1,0],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[-1,0],[0,1],[1,0],[1,0],[-1,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[-1,0],[0,1],[1,0],[-1,0],[0,1],[0,-1],[-1,0],[-1,-1],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,-1],[0,1],[-1,0],[1,0],[-1,0],[0,1],[0,1],[1,0],[0,1],[0,-1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,-1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[-1,1],[-1,1],[-1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[0,1],[1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1]],[[696,793],[0,1],[1,0],[0,1],[0,1],[0,1],[-1,0],[1,0],[1,1],[0,1],[-1,0],[0,1],[1,0],[0,1],[-1,0],[1,0],[0,1],[0,1],[1,0],[1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,-1],[-1,1],[0,-1],[-1,1],[1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[1,0],[1,4],[0,1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[2,0],[1,0],[1,-1],[1,1],[0,1],[2,-1],[1,0],[1,1],[0,1],[1,1],[1,1]],[[696,792],[0,1],[0,-1],[0,1]],[[687,898],[0,-1]],[[687,897],[1,0],[0,1]],[[696,877],[-1,0],[-1,0],[0,1],[-1,-1],[0,1],[0,-1],[1,0]],[[695,875],[1,0],[0,2]],[[694,877],[0,-1],[1,-1]],[[698,926],[-1,1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1]],[[697,925],[0,1],[1,0]],[[698,925],[-1,0]],[[694,923],[1,1],[0,-1],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[-1,0]],[[694,923],[1,0],[-1,0]],[[697,925],[1,0],[0,1],[-1,-1]],[[708,922],[-1,0],[0,1],[0,1],[1,0],[0,-1],[0,1],[-1,0],[-1,0],[0,-1],[1,-1],[1,0]],[[711,927],[-1,0],[-1,0],[0,-1],[1,1],[0,-1],[1,0],[0,1]],[[711,927],[1,0],[1,-1],[0,1],[-1,0],[-1,0]],[[711,924],[1,0],[1,0],[-1,0],[0,1],[-1,-1]],[[718,919],[0,1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[1,0],[1,0]],[[717,918],[0,1],[1,0]],[[711,784],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[1,0],[-1,1],[0,-1],[0,1],[0,1],[0,1],[0,1],[-1,0],[1,0],[0,1],[-1,1],[1,0],[-1,0],[1,1],[-1,0],[1,0],[0,1],[1,1],[0,1],[1,0],[0,-1],[0,1],[1,0],[0,1],[-1,0],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[-1,2],[0,2],[-1,1],[0,1],[0,1],[0,1],[0,1]],[[696,793],[0,-1]],[[710,970],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[1,0],[-1,0]],[[718,979],[1,0],[1,0],[1,0],[1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1]],[[720,935],[0,-1],[1,0],[0,1],[-1,0],[0,-1],[0,1]],[[726,940],[0,-1],[1,0],[0,1],[0,-1],[0,1],[1,0],[-1,1],[1,0],[-1,0],[0,-1],[0,1],[-1,0],[0,-1]],[[728,944],[1,0],[1,0],[1,0],[-1,0],[-1,0],[0,1],[0,-1],[-1,0]],[[718,922],[1,-1],[1,0],[1,0],[0,1],[0,1],[-1,1],[0,-1],[-1,0],[0,-1],[-1,0]],[[731,902],[1,0],[0,1],[-1,0],[0,-1]],[[732,905],[0,-1]],[[732,907],[0,-1],[0,-1]],[[733,906],[0,1],[-1,0]],[[732,905],[0,1],[1,0]],[[733,905],[-1,-1]],[[733,905],[0,-1],[0,1]],[[732,904],[1,0],[0,1]],[[733,930],[1,0],[0,1],[0,-1],[-1,1],[0,-1]],[[736,934],[-1,0],[-1,0],[0,-1],[1,0],[0,1],[1,0]],[[738,936],[-1,0],[-1,0],[1,0],[1,0]],[[736,934],[1,0]],[[737,934],[0,1],[-1,-1]],[[737,934],[1,0]],[[742,937],[-1,0],[-1,0],[-1,0],[1,-1]],[[741,936],[0,1],[1,0]],[[740,936],[1,0]],[[741,928],[-1,0],[0,-1],[1,0],[0,1]],[[747,953],[1,0],[0,1],[-1,0],[0,-1]],[[748,981],[2,0],[1,0],[1,0],[1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,-1]],[[757,973],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[1,0],[0,-1],[1,0],[1,0],[1,-1],[-1,0]],[[758,973],[-1,0]],[[754,971],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[-1,1]],[[754,971],[-1,0],[-1,0],[1,0],[0,-1],[1,0],[0,1]],[[767,974],[0,1],[1,0],[1,0],[0,1],[-1,0],[0,1],[0,1],[1,0],[1,0],[1,0],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[-1,1],[-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,-1],[-1,0],[0,-1],[-1,0],[0,-1],[1,0],[1,1],[1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[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],[0,-1],[1,0],[1,0],[-1,0],[-1,0],[-1,0],[1,0],[1,0],[1,0],[0,-1]],[[766,974],[1,1],[0,-1]],[[764,974],[1,0],[1,0]],[[762,974],[1,0],[1,0]],[[761,973],[0,1],[1,0]],[[759,973],[1,0],[1,0]],[[758,973],[1,0]],[[761,973],[-1,-1],[1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[1,0],[0,-1],[-1,0]],[[762,974],[0,-1],[-1,0]],[[764,974],[-1,-1],[-1,1]],[[767,974],[-1,0],[-1,0],[-1,0]],[[777,971],[-1,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[1,0],[0,1],[1,1],[-1,1],[-1,0],[-1,0],[-1,0]],[[776,970],[0,1],[1,0]],[[757,969],[1,0],[0,1],[1,0],[0,-1],[1,0],[-1,0],[1,0],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,1],[0,-1],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[0,1],[-1,0],[-1,1],[1,0],[1,0],[0,1],[0,1]],[[764,950],[-1,0],[0,-1],[0,1],[0,-1],[1,0]],[[764,949],[0,1]],[[764,952],[1,0],[1,0],[-1,0],[0,-1],[1,1],[1,0],[0,1],[-1,0],[-1,-1],[-1,0]],[[764,946],[1,0]],[[765,946],[0,1],[-1,0],[0,-1]],[[768,947],[-1,0],[-1,0],[-1,0],[0,-1]],[[768,946],[0,1]],[[767,945],[0,1],[0,1],[1,-1]],[[765,946],[1,0],[1,0],[0,-1]],[[764,949],[1,0],[0,1],[0,-1],[0,1],[-1,0]],[[766,949],[1,0],[0,1],[-1,0],[0,-1]],[[768,944],[1,1],[1,0],[-1,0],[-1,0],[0,-1]],[[776,970],[1,0],[0,1]],[[795,960],[0,1],[1,0],[-1,0],[-1,0],[0,-1],[0,1],[-1,-1],[1,0],[1,0]],[[795,960],[0,1],[0,-1]],[[795,960],[1,-1],[1,0],[1,0],[0,1],[-1,0],[-1,0],[-1,0]],[[795,954],[1,1],[-1,0],[0,-1]],[[797,953],[1,0],[0,1],[-1,0],[0,-1]],[[809,929],[0,1],[1,0],[0,1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[1,-1],[1,0],[1,0]],[[808,929],[1,0]],[[807,928],[0,1],[1,0]],[[810,949],[1,-1]],[[811,948],[1,0],[0,1],[-1,0],[-1,0]],[[729,908],[0,1],[0,1],[0,1],[1,0],[1,0],[0,1],[0,1],[1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,1],[1,0],[-1,1],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[0,-1],[-1,1],[-1,0]],[[730,908],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[1,-1],[-1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[-1,1]],[[731,908],[-1,0]],[[732,908],[-1,0]],[[732,907],[0,1]],[[731,902],[-1,0],[0,1],[1,1],[0,1],[0,1],[1,1]],[[731,903],[1,0],[0,-1],[-1,0]],[[732,904],[-1,0],[0,-1]],[[732,904],[0,-1]],[[733,906],[0,-1]],[[733,907],[0,-1]],[[742,929],[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,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[0,-1],[1,0],[-1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[-1,-1],[0,-1],[1,0],[-1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1]],[[741,928],[0,1],[1,0]],[[740,927],[0,1],[1,0]],[[740,927],[-1,0],[0,-1],[0,-1],[1,0],[1,-1],[0,-1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[1,0],[1,0]],[[741,928],[0,-1],[-1,0]],[[742,928],[-1,0]],[[742,928],[1,0],[-1,0]],[[742,929],[1,0],[0,1],[1,0],[0,-1],[-1,0],[-1,-1]],[[738,936],[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,-1],[1,0],[-1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[0,1],[-1,0],[0,-1],[0,-1]],[[740,936],[0,-1],[-1,1],[0,-1],[0,1],[-1,0]],[[741,936],[0,-1],[-1,0],[0,1]],[[742,937],[0,-1],[-1,0]],[[762,946],[-1,0],[0,-1],[-1,1],[0,-1],[1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[1,0],[1,1],[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],[-1,-1],[-1,-1],[-1,-1],[-1,1],[-1,0],[-1,0],[0,-1],[1,0],[1,0],[1,0],[-1,-1],[0,1],[-1,0],[0,-1]],[[763,946],[-1,-1],[0,1]],[[763,946],[-1,0],[1,0]],[[764,946],[-1,-1],[0,1]],[[767,945],[-2,1],[-1,0]],[[767,945],[0,-1],[-1,0],[-1,0],[1,0],[0,1],[1,0]],[[768,945],[-1,0]],[[768,944],[0,1]],[[768,944],[-1,0],[1,0]],[[769,945],[0,-1],[-1,0]],[[769,945],[1,0],[-1,0]],[[770,945],[0,-1],[-1,0],[0,1]],[[770,945],[1,0],[-1,0]],[[810,949],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[-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,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,1],[1,0],[0,1],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,1],[1,0],[0,1],[-1,0],[0,1],[-1,0],[0,-1],[-1,1],[-1,0],[0,1],[-1,-1],[0,1],[-1,0],[-1,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,-1],[0,-1],[-1,0],[1,-1],[0,-1],[0,-1],[1,0],[1,0],[1,0],[0,-1],[-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],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[0,1],[1,0],[0,1],[1,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[0,-1],[-1,0],[-1,0],[-1,0],[1,-1],[-1,0],[-1,0]],[[811,948],[-1,0],[0,1]],[[811,948],[0,-1],[-1,0],[1,0],[0,1]],[[807,928],[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],[-1,0],[-1,0],[-1,0],[0,1],[-1,-1],[0,-1],[1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,1],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[0,1],[1,1],[1,0],[1,0],[0,1],[0,1],[0,-1],[-1,0],[0,1],[1,0],[1,0],[1,0],[-1,1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[0,1],[1,0],[1,0],[1,1],[1,1],[0,1],[1,0],[-1,1],[-1,0],[0,1],[-1,0],[1,-1],[-1,0],[0,1],[0,1],[-1,0],[1,0],[1,0],[0,-1],[1,0],[0,-1],[0,1],[1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[1,0],[0,-1],[0,1],[-1,0],[0,-1],[0,1],[-1,0],[1,0],[0,1],[-1,0],[-1,1]],[[808,928],[-1,0]],[[802,858],[-1,0],[0,1],[-1,0],[-1,0],[1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,-1],[1,0],[-1,0],[-1,0],[0,1],[0,-1],[-1,0],[0,1],[0,1],[1,-1],[0,1],[-1,0],[1,1],[1,0],[-1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[1,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[1,0],[0,1],[-1,1],[1,0],[-1,0],[0,1],[0,-1],[0,1],[-1,0],[0,1],[1,0],[0,1],[1,1],[1,0],[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],[-2,2],[0,1],[0,1],[1,0],[1,0],[1,0],[1,1],[1,0],[0,1],[1,0],[1,0],[1,0],[0,-1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[-1,1],[1,0],[0,1],[-1,0],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,2],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[1,0],[0,1],[-1,0],[-1,0],[1,0],[-1,0],[1,0],[-1,0],[0,1],[0,1],[0,1],[1,0],[-1,0],[0,1],[-1,0],[0,1],[1,0],[-1,0],[0,1],[-1,0],[1,0],[1,0],[0,1],[1,0],[0,1],[-1,0]],[[803,857],[0,1],[-1,0],[0,1],[0,-1]],[[775,769],[0,1],[0,1],[0,1],[1,1],[0,-1],[0,1],[0,1],[-1,0],[1,0],[0,1],[0,-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],[0,-1],[0,1],[-1,0],[-1,0],[0,1],[-1,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],[0,1],[1,0],[0,1],[0,1],[-1,0],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[1,0],[-1,0],[0,1],[1,3],[0,3],[1,0],[1,0],[0,-1],[1,1],[0,-1],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,1],[-1,0],[1,1],[-1,0],[1,0],[0,1],[-1,0],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[1,1],[0,1],[0,1],[0,1],[0,1],[1,0],[1,1],[1,-1],[-1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,1],[0,-1],[1,0],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[1,0],[1,0],[0,1],[0,1],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[1,1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[-1,0],[1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,-1],[1,1],[0,-1],[1,0],[0,1],[1,0],[1,0]],[[775,769],[1,0],[-1,0]],[[812,945]],[[775,959],[0,-1],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,1],[1,0],[0,1],[-1,1],[0,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,0],[1,0],[0,1],[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],[0,-1],[1,0],[-1,0],[0,-1],[0,-1],[1,0],[-1,0],[-1,0],[-1,-1],[0,-1],[0,-1],[-1,0],[-1,-1],[0,-1]],[[781,966]],[[802,859],[0,-1],[1,0],[0,-1]],[[803,858],[0,1],[-1,0]],[[803,857],[0,1]],[[800,753],[0,1],[0,1],[0,1],[1,0],[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],[0,1],[0,1],[1,0],[1,0],[0,-1],[1,1],[1,0],[0,1],[1,0],[0,-1],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,-1],[0,1],[1,0],[0,1],[1,0],[0,-1],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[1,1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,-1],[1,1],[0,1],[1,0],[-1,0],[0,1],[1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[1,0],[-1,0],[0,1],[0,1],[0,1],[1,1],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,1],[1,0],[0,1],[0,-1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,-1],[-1,0],[0,1],[0,-1],[0,1],[0,1],[0,1],[0,1],[-1,0],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,-1],[0,1],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[-1,0],[0,-1],[0,1],[-1,0],[0,-1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,1],[-1,0],[0,1],[-1,0],[-1,0],[0,-1],[-1,0],[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,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,1],[0,1],[0,1],[-1,0],[0,1],[1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,1],[0,-1],[-1,0],[0,1],[0,-1],[-1,1],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[-1,1],[0,1],[1,0],[0,1],[0,1],[1,1],[-1,0],[1,0],[0,1],[0,1],[1,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[1,1],[0,1],[0,-1],[0,1],[1,-1],[0,1],[0,1],[-1,0]],[[808,929],[0,-1]],[[833,923],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[0,1],[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],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[1,-1],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[1,0],[0,-1],[1,0],[-1,0],[0,1],[-1,0],[0,1],[1,1],[-1,0],[1,0],[0,1],[0,2],[-1,0],[-1,0],[1,1],[0,1],[0,1],[-1,0],[0,1],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0]],[[834,923],[0,-1],[1,0],[-1,0],[-1,0],[0,1]],[[834,923],[-1,0],[1,0]],[[839,923],[-1,0],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[-1,0]],[[840,922],[-1,0],[0,1]],[[841,922],[-1,0]],[[842,921],[-1,0],[0,1]],[[843,921],[-1,0]],[[844,921],[-1,0]],[[845,921],[-1,0]],[[846,920],[-1,0],[0,1]],[[851,918],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0]],[[852,917],[-1,1]],[[853,915],[-1,1],[0,1]],[[853,915],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[0,1],[-1,1],[0,1]],[[853,916],[0,-1]],[[852,918],[1,0],[0,-1],[0,-1]],[[853,919],[-1,-1]],[[855,918],[-1,0],[-1,0],[0,1]],[[856,917],[-1,0],[0,1]],[[859,916],[0,-1],[0,-1],[-1,0],[-1,0],[1,0],[-1,1],[0,1],[-1,0],[0,1]],[[866,910],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,1],[-1,1],[0,-1],[0,1],[-1,0],[0,1],[-1,0],[-1,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[1,0],[0,1],[1,0],[-1,0],[0,1],[0,1]],[[862,746],[1,1],[0,1],[1,-1],[0,1],[0,1],[1,0],[0,2],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,-1],[-1,1],[0,1],[0,1],[-1,0],[0,-1],[0,1],[0,1],[1,0],[0,1],[-1,0],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[-1,1],[0,1],[1,0],[1,1],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[0,1],[-1,0],[0,1],[1,1],[0,-1],[1,0],[1,-1],[1,0],[0,1],[1,1],[-1,0],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,-1],[-1,0],[0,-1],[0,1],[0,-1],[-1,0],[0,1],[0,-1],[0,1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[0,1],[-1,0],[0,-1],[0,1],[0,1],[0,1],[0,1],[-1,1],[-1,0],[0,-1],[0,1],[-1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,-1],[1,0],[0,1],[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],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[1,1],[0,-1],[0,1],[0,-1],[1,0],[-1,1],[1,0],[0,1],[0,1],[-1,1],[0,1],[-1,1],[0,-1],[0,1],[0,1],[1,-1],[0,1],[0,1],[1,0],[0,1],[0,-1],[0,1],[1,0],[0,1],[-1,0],[0,1],[-1,1],[1,0],[-1,0],[0,1],[1,0],[0,-1],[1,0],[0,1],[0,1],[0,-1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,3],[0,3],[0,1],[0,1],[1,1],[1,1],[0,1],[1,0],[1,0],[0,1],[-1,2],[0,1],[1,1],[1,0],[2,0],[1,1],[-1,1],[-1,2],[-1,0],[-1,0],[0,2],[-2,2],[1,1],[-1,0],[0,2],[1,2],[0,2],[-1,2],[-1,1],[2,2],[0,2],[0,1],[0,1],[0,1],[-1,-1],[-1,1],[1,0],[-1,3],[-1,1],[0,2],[0,2],[-1,0],[-1,1],[-1,1],[-1,0],[-1,2],[1,1],[-1,1],[0,-1],[-1,1],[-1,-1],[-1,0],[-1,0],[-1,1],[-2,1],[0,2],[0,2],[0,1],[0,1],[-1,1],[-1,1],[1,2],[0,1],[0,1],[1,0],[0,1],[-1,1],[-1,0],[2,1],[1,0],[1,0],[1,0],[1,1],[2,-1],[1,1],[2,0],[1,0],[2,1],[1,0],[1,1],[1,1],[0,1],[1,1],[1,0],[0,1],[-1,0],[-1,1],[2,1],[0,1],[-1,1],[-2,0],[-1,1],[0,1],[0,1],[0,2],[-1,0],[-1,1]],[[802,858],[0,1]],[[810,933],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,1],[1,1],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0]],[[822,932],[1,0],[0,1],[-1,0],[0,-1]],[[834,923],[0,1],[-1,0],[0,-1]],[[833,923],[1,0]],[[840,923],[-1,0]],[[840,922],[0,1]],[[843,922],[-1,0],[-1,0]],[[843,921],[0,1]],[[842,922],[0,-1]],[[841,922],[1,0]],[[842,922],[0,1],[-1,0],[-1,0]],[[843,922],[-1,0]],[[845,929],[0,-1],[-1,0],[1,0],[-1,0],[0,-1],[-1,0],[0,1],[0,-1],[-1,0],[0,-1],[1,-1],[0,-1],[1,0],[-1,0],[0,-1],[0,-1]],[[849,927],[-1,0],[0,1],[-1,0],[0,-1],[0,1],[-1,0],[-1,1]],[[849,926],[0,1]],[[851,926],[0,1],[-1,-1],[-1,0]],[[851,926],[-1,0],[1,0]],[[852,925],[-1,0],[0,1]],[[852,923],[0,1],[0,1]],[[851,922],[0,1],[1,0]],[[851,921],[0,1]],[[851,919],[0,1],[0,1]],[[851,918],[0,1]],[[847,920],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0]],[[846,920],[0,1],[1,0],[0,-1]],[[845,921],[1,0],[0,-1]],[[843,922],[1,-1]],[[840,923],[1,0],[0,-1]],[[845,929],[1,0],[0,1],[-1,0],[0,-1]],[[852,919],[-1,0]],[[852,925],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-2]],[[852,926],[0,-1]],[[854,926],[-1,1],[-1,0],[0,-1]],[[856,926],[-1,0],[-1,0]],[[857,922],[1,1],[1,0],[0,1],[-1,0],[0,-1],[0,1],[-1,1],[-1,0],[0,1]],[[856,921],[0,1],[1,0]],[[854,921],[1,0],[1,0]],[[853,920],[1,1]],[[852,919],[0,1],[1,0]],[[853,919],[-1,0]],[[853,920],[0,-1]],[[854,920],[-1,0]],[[856,920],[-1,0],[-1,0]],[[858,919],[-1,0],[-1,1]],[[859,916],[0,1],[1,0],[-1,0],[0,1],[1,0],[-1,0],[0,1],[-1,0]],[[859,916],[1,0],[0,1],[-1,0],[0,-1]],[[856,917],[1,0],[1,-1],[1,0]],[[855,918],[1,0],[0,-1]],[[853,919],[1,0],[1,0],[0,-1]],[[854,921],[0,-1]],[[859,921],[-1,0],[-1,0],[-1,0]],[[858,920],[1,0],[0,1]],[[858,921],[0,-1]],[[857,921],[1,0]],[[857,920],[0,1]],[[856,920],[1,0]],[[856,926],[-1,1],[-1,0],[0,-1]],[[858,920],[-1,0],[-1,0]],[[858,919],[0,1]],[[857,919],[1,0]],[[857,920],[0,-1]],[[858,922],[-1,0]],[[859,922],[-1,0]],[[859,921],[0,1]],[[581,383],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[1,-1]],[[584,385],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,1],[0,1],[-1,-1]],[[584,376],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,2]],[[330,494],[0,-1],[1,0],[0,1],[-1,0],[1,0],[0,1],[-1,0],[1,0],[-1,0],[0,1],[0,-1],[0,-1]],[[329,489],[1,0],[0,1],[-1,0],[0,-1]],[[595,599],[0,-1],[0,-1],[0,-1],[0,1]],[[596,605],[0,-1],[0,-2],[0,-2],[0,-1],[-1,0]],[[640,573],[-1,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],[0,1],[0,1],[0,1],[0,-1],[0,1],[0,1],[-1,0],[0,1],[-1,1],[0,1],[-1,1],[1,0],[0,1],[-1,0],[-1,1],[0,1],[1,0],[0,-1],[0,1],[-1,1],[0,1],[0,2],[0,1],[-1,0]],[[642,570],[0,1],[0,-1],[-1,0],[0,1],[0,-1],[-1,0],[0,1],[0,1],[0,-1],[0,1],[0,1]],[[642,568],[-1,0],[0,1],[1,1]],[[652,557],[0,-1],[-7,2],[-3,9],[0,1]],[[643,530],[9,7],[1,9],[0,5],[-1,6]],[[618,512],[0,-1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[1,0],[0,-1],[1,0],[1,1],[2,-2],[1,-1],[3,-3],[0,-6],[0,-1],[2,8],[2,5],[2,6],[4,2],[3,2],[2,1]],[[595,597],[1,-1],[1,0],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-3],[1,-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],[1,1],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-2],[0,-1],[0,1],[0,-1],[0,-1],[0,-1],[1,-1],[-1,-1],[0,-1],[0,-2],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[1,0],[-1,0],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[1,-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,-1],[1,-2],[0,-1],[0,-1],[0,-1],[1,-1],[0,1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1]],[[616,514],[-1,0],[0,1],[0,-1]],[[615,514],[0,-1],[1,0],[0,1]],[[615,515],[0,-1],[1,0]],[[616,514],[-1,2],[0,-1]],[[454,509],[0,-2],[-1,-2],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,1],[0,-1],[-1,0],[0,-1],[0,-1],[1,1],[0,1],[0,-1],[-1,0],[0,-1],[1,-1]],[[466,500],[-1,0],[0,1],[-1,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,2],[-1,1],[-1,1],[1,0],[-1,0],[0,-1],[0,1],[0,1],[-1,1],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1]],[[453,482],[1,0],[1,1],[1,0],[1,1],[0,1],[1,0],[1,0],[1,0],[1,0]],[[457,485],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1]],[[453,487],[0,-1],[0,-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]],[[454,491],[1,0],[1,0],[1,0],[0,1],[0,1],[0,-1],[0,1],[1,0],[0,-1],[1,-1],[0,1],[0,-1],[1,-1],[0,1],[1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,0],[-2,0],[0,-1]],[[557,697],[-1,0],[1,0]],[[471,454],[0,1],[0,-1]],[[467,443],[1,0],[0,1],[0,1],[0,1],[1,1],[0,1],[1,1],[0,1],[0,1],[0,1],[1,0],[0,2]],[[465,447],[0,-1],[1,-1],[1,0],[0,-1],[0,-1]],[[465,448],[0,-1]],[[465,448],[1,0],[-1,0]],[[463,458],[0,-1],[0,-1],[0,-1],[1,0],[-1,0],[0,-1],[0,1],[0,-1],[0,-1],[0,-1],[0,1],[0,-1],[1,0],[0,-1],[-1,-1],[1,0],[0,-1],[1,-1]],[[465,448],[-1,0],[-1,0],[1,0],[0,-1],[1,0]],[[561,744],[0,1],[0,1],[1,1],[0,1],[0,1]],[[547,742],[0,-1],[0,1],[0,-1]],[[537,724],[0,-1]],[[538,731],[-1,-1],[0,-1],[0,-1],[0,1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[-1,0],[1,0],[-1,0]],[[615,421],[0,-1],[-1,-4],[0,-1],[-1,-2],[0,-1],[0,-2],[0,-17],[0,-6],[0,-2],[1,-2],[0,-2]],[[615,422],[0,-1]],[[619,475],[0,1],[0,-1],[0,-1],[-1,-1]],[[614,381],[1,1],[0,1],[0,2],[1,0],[0,1],[0,1],[0,1],[1,1],[0,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],[0,1],[1,1],[0,1],[1,1],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[1,1],[0,1],[1,2],[1,2],[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],[1,1],[0,1],[0,2],[0,1],[0,1],[1,3],[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,0],[0,1],[0,2],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,3],[0,1],[0,1],[0,1],[1,0],[1,0],[-1,1],[0,-1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,2],[0,1],[0,1],[-1,1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[-1,-1],[0,1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,-1],[-1,0],[0,1],[-1,0],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[-1,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[-1,0]],[[539,229],[-1,-1],[0,1],[0,-1],[0,-1]],[[538,227],[1,0],[0,1],[0,1],[0,2],[0,-1],[0,-1]],[[612,30],[0,-1],[1,0],[0,1],[-1,0],[0,1],[0,-1]],[[554,214],[0,1],[0,-1]],[[586,231],[-1,0],[0,1],[-1,0],[0,-1],[0,1],[-1,0],[0,-1],[-1,1],[0,1],[-1,0],[-1,0]],[[587,206],[0,-1],[0,-1],[1,1]],[[588,198],[0,-2],[0,-1],[0,-1],[-1,0],[-1,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,-1],[-1,0],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[1,1],[1,0]],[[544,187],[0,-1],[1,-1],[0,-2],[0,-2],[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],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-2],[-1,-1],[0,-1],[0,1],[-1,-1],[0,-1],[0,-1],[1,0],[0,1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-2],[0,-1],[0,-1],[0,-2],[0,-1],[0,1],[0,1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,1],[1,-1],[0,-1],[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],[0,1],[1,0],[0,1],[1,0],[1,-1],[1,0],[0,1],[1,0],[1,-1],[1,0],[0,-1],[1,0],[0,1],[0,1],[1,0],[1,-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],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[1,1],[0,1],[1,0],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[1,0],[0,1],[1,1],[0,1],[0,1],[1,1],[0,2],[1,0],[0,1],[0,2],[0,1],[1,1],[0,1],[0,1],[0,2],[1,1],[0,1],[0,1],[1,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,2],[1,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1]],[[849,642],[0,-1],[1,0]],[[850,641],[0,1],[-1,0]],[[849,633],[0,-1],[0,1],[1,0],[1,0],[0,1],[0,1],[-1,0],[0,-1],[-1,0],[0,-1]],[[850,664],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[-1,0],[0,-1],[0,1],[0,1],[-1,0],[0,-1],[0,1],[0,-1],[0,-1],[0,1],[0,1],[-1,-1],[0,-1],[0,-1],[0,1],[1,0],[0,-1]],[[850,665],[0,-1]],[[851,666],[0,-1],[-1,0]],[[855,671],[0,1],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[-1,0],[0,-1],[0,1],[-1,-1],[-1,-1],[0,-1],[0,-1]],[[856,645],[0,1],[-1,0],[1,1],[0,-1],[1,0],[0,1],[0,-1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[1,2],[-1,0],[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,2],[0,2],[-1,1]],[[854,645],[1,0],[0,-1],[1,1]],[[854,644],[-1,0],[0,1],[1,0]],[[850,641],[0,-1],[1,1],[0,1],[0,-1],[0,1],[0,1],[1,0],[0,1],[0,-1],[0,-1],[0,1],[0,-1],[0,-1],[1,1],[0,1],[-1,1],[1,0],[0,-1],[1,1]],[[850,642],[0,1],[0,1],[-1,0],[0,-1],[0,-1]],[[850,656],[0,-2],[1,-1],[-1,-1],[1,0],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,1],[-1,-1],[1,-1],[0,-1],[0,1],[1,-1],[-1,0],[0,-1],[0,-1]],[[850,657],[0,-1]],[[850,657],[0,1],[0,-1]],[[495,708],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,-1],[0,1],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,-1],[0,-1],[-1,-1],[-1,-1],[-1,0],[0,-1],[0,-2],[0,1],[0,-1],[0,-1],[1,0],[-1,0],[0,-1],[1,0],[0,1],[0,-1],[0,-1],[0,-1],[1,0],[-1,0],[0,-1],[0,-2]],[[504,701],[0,1],[0,-1]],[[479,663],[1,0],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[1,-1],[0,1],[1,0],[0,1],[0,1],[1,1],[0,-1],[0,1],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[0,-1],[1,0],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[1,0],[0,1],[1,-1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,2],[1,1],[0,1],[0,1],[1,1],[0,2],[1,1],[0,1],[0,1],[0,-1],[1,1],[0,1],[-1,0],[1,1],[0,1],[1,0],[1,1],[1,0],[0,1],[1,1],[0,1],[1,0],[1,1],[0,1],[0,1],[0,1],[0,1],[1,0],[-1,0],[0,1]],[[479,663],[0,-1],[0,1]],[[503,675],[1,1],[0,1],[-1,0],[0,-1],[0,-1]],[[506,680],[1,0],[0,-1],[0,-1],[1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[0,-1],[-1,0],[0,1],[0,1],[-1,-1],[-1,-1],[0,-1]],[[510,683],[1,0],[0,-1],[0,1],[0,1],[-1,0],[0,-1]],[[449,594],[0,-1],[1,0],[0,1],[-1,0]],[[451,596],[1,0],[0,1],[-1,0],[0,-1]],[[453,598],[0,-1],[0,-1],[0,-1],[1,1],[0,1],[0,1],[0,1],[1,0],[0,1],[-1,0],[0,-1],[0,-1],[-1,0]],[[456,595],[0,-1],[1,0],[0,2],[-1,1],[0,-1],[0,-1]],[[459,596],[1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,0]],[[461,602],[1,0],[0,1],[0,1],[0,1],[0,-1],[-1,-1],[0,-1]],[[721,458],[-1,0],[1,-1]],[[721,457],[0,1]],[[721,457],[0,-1],[0,-1],[0,-1],[-1,-2],[0,-2],[1,0],[-1,0],[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],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,1],[1,0],[1,1],[0,2],[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,2],[0,1],[0,-1],[-1,0],[0,1],[0,1],[0,2],[-1,2],[0,1],[0,1],[-1,1],[0,1],[-1,0],[1,0],[0,-1],[0,-1],[0,1],[0,1],[-1,0],[0,-1],[0,-1],[1,0],[0,1],[-1,0],[1,0],[0,-1],[1,0],[0,-1],[-1,1],[-1,0],[1,0],[-1,-1],[0,-1],[0,-1]],[[606,523],[0,1],[-1,1],[0,1],[-1,1],[0,1],[-1,0],[0,1],[0,2],[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],[0,2],[0,1],[0,-1],[1,0],[-1,1],[0,1],[0,1],[-1,1],[0,1],[0,2]],[[600,496],[0,1],[0,5],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[0,2],[1,0],[0,1],[0,1],[-1,0],[0,1],[1,0],[0,1],[0,2],[1,0],[0,1],[0,1],[1,1],[1,1],[0,-1],[0,1],[1,1],[0,1],[0,1]],[[585,419],[0,1],[1,0],[1,-1],[0,1],[0,1],[0,-1],[1,0],[0,-1],[0,-1],[0,1],[1,1],[1,0],[0,1],[1,0],[0,-1],[1,0],[1,3]],[[585,419],[0,-1],[0,1]],[[575,429],[1,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,1],[1,0],[0,1],[0,-1],[1,1],[0,-1],[0,-1],[0,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,0]],[[575,430],[0,-1]],[[341,435],[0,-1],[-1,0],[0,-1],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[1,0],[0,-1],[0,-1],[-1,-2],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-2],[0,-1],[0,-1],[1,0],[0,-1],[0,-1]],[[341,437],[0,-1],[0,-1]],[[349,435],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[1,-1],[-1,0],[0,1],[-1,0],[-1,0],[0,-1],[0,-1],[0,1],[-1,1],[-1,0],[-1,0]],[[532,816],[-1,-1],[1,0]],[[532,815],[0,1]],[[545,804],[0,-1],[0,-1],[0,-1],[1,1],[0,1],[0,2],[0,1],[1,0],[0,1],[0,1],[0,1],[0,-1],[-1,-1]],[[546,807],[0,-1],[0,-1],[-1,-1]],[[553,813],[-1,0],[-1,0],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,1],[0,1],[1,0],[0,2],[0,1],[0,1],[1,1]],[[521,738],[0,1],[0,-1]],[[524,739]],[[599,652],[-1,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[617,662],[0,1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,-1],[-1,0],[-1,-1],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,1],[-1,1],[0,-2],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[0,-1]],[[832,559],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[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,1],[0,2],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[692,682],[-1,1],[-1,0],[0,-1],[1,0],[-1,0],[1,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[-1,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0]],[[696,682],[0,1],[-1,0],[0,1],[0,1],[1,1],[0,1],[-1,1],[0,1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[0,-2],[0,-1],[0,-1],[0,-1]],[[697,683],[-1,0],[0,-1]],[[581,361],[0,-1],[-1,-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],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1]],[[593,386],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[0,-1]],[[611,317],[0,1],[0,1],[0,-1],[-1,1],[0,1],[0,-1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[1,0],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[-1,0],[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]],[[584,334],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[1,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1]],[[608,350],[0,-1],[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],[0,1],[0,-1],[0,-1]],[[609,335],[0,1],[1,0],[0,1],[0,1],[0,-1],[-1,0],[0,-1],[0,-1]],[[609,354],[0,-1],[0,1],[1,1],[0,1],[0,1],[-1,1],[0,-1],[0,-1],[0,-1],[0,-1]],[[777,539],[-1,0],[0,1],[0,-1],[-1,-1],[0,1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,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],[-1,0],[0,1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[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,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[1,0],[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],[-1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-2]],[[784,477],[0,-1],[0,1]],[[784,478],[0,-1]],[[784,480],[0,-1],[0,-1]],[[783,480],[1,0]],[[775,474],[0,1],[1,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[1,0],[0,1],[-1,0],[0,1],[1,1],[0,1],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,1],[1,0],[0,-1],[1,0],[0,1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,1],[0,-1],[0,-1]],[[776,460],[-1,-1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1]],[[782,438],[-1,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,-1],[-1,0],[0,1],[-1,0],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,-2],[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,-1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[777,440],[0,-1],[0,1],[0,1],[0,-1],[1,0],[0,-1],[0,1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,1],[0,1],[1,0],[0,-1],[1,1],[0,1],[0,1],[0,1]],[[776,440],[1,0]],[[773,450],[1,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,0],[-1,-1],[0,-1],[1,0],[0,-1],[0,-1]],[[773,451],[0,-1]],[[772,452],[0,1],[1,0],[0,-1],[0,-1]],[[772,452],[0,-1]],[[772,464],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[1,-1]],[[773,450],[0,1],[-1,0]],[[772,449],[1,1]],[[772,449],[0,1],[0,1]],[[776,440],[-1,1],[0,-1],[0,-1]],[[775,439],[1,1]],[[776,460],[1,1],[0,1],[-1,-1],[0,-1]],[[784,477],[-1,0],[0,-1],[1,0]],[[499,473],[0,1],[0,-1]],[[503,438],[1,0]],[[499,473],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[1,-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,-1],[0,-1],[1,0],[0,-1],[0,1]],[[307,483],[0,-1],[1,0],[0,-1],[1,0],[-1,0],[0,1],[0,1],[-1,0]],[[529,637],[-1,0],[0,1],[-1,1],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[1,1],[0,1],[0,1],[0,1],[-1,-1],[0,-1],[-1,0],[0,-1],[0,1],[0,1],[0,1],[-1,0],[0,1],[1,0],[-1,0],[0,-1],[-1,1],[1,0],[0,1],[-1,0],[-1,-1],[-1,0],[0,-1],[0,-1],[-1,0]],[[530,637],[0,-1],[-1,0],[0,1]],[[531,633],[0,1],[-1,0],[0,1],[0,1],[0,1]],[[526,613],[0,-1],[0,1]],[[530,637],[0,1],[0,1],[-1,0],[0,-1],[0,-1]],[[529,637],[1,0]],[[529,637],[0,1],[0,-1]],[[572,695],[1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1]],[[572,696],[0,-1]],[[577,697],[0,1],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[-1,-1],[0,-1],[-1,0]],[[580,692],[-1,0],[-1,1],[0,1],[-1,1],[0,1],[0,1]],[[580,690],[0,1],[0,1]],[[573,686],[1,1],[1,0],[0,1],[0,1],[1,1],[1,0],[0,1],[1,0],[0,-1],[1,0],[0,1],[-1,0],[1,0],[0,-1],[1,0]],[[573,685],[0,1]],[[572,683],[0,1],[1,1]],[[573,686],[-1,-1],[0,-1],[0,-1]],[[572,688],[0,-1],[1,0],[0,1],[1,0],[0,-1],[-1,0],[0,-1]],[[572,683],[0,-1],[0,-1],[0,-1],[0,-1]],[[573,685],[0,-1],[-1,-1]],[[576,687],[0,-1],[1,0],[-1,-1],[-1,0],[0,1],[-1,0],[-1,0]],[[580,690],[0,-1],[1,0],[0,-1],[0,1],[1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0]],[[615,693],[-1,0],[0,-1],[-1,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,1],[0,1],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[0,-1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,-1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,1],[0,-1],[-1,0],[-1,0],[0,1],[-1,0]],[[620,691],[-1,0],[0,1],[-1,1],[0,1],[-1,-1],[-1,0],[-1,0],[0,1],[0,-1]],[[617,662],[0,-1],[0,1]],[[599,653],[0,-1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,2],[1,-1],[0,-1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,1],[1,0],[1,1],[0,1],[1,0],[0,1],[1,0],[0,-1],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[0,-1]],[[572,670],[1,0],[0,-1],[0,1],[1,0],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[1,0],[1,0],[1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[1,0],[1,0],[0,1],[0,-1],[0,-1],[1,1],[0,1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[1,1],[1,0],[0,-1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[0,-1],[1,0],[1,0],[1,1],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,-1],[1,-1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[1,-1],[0,-1],[0,-1]],[[572,671],[0,-1]],[[572,672],[1,0],[0,-1],[-1,0]],[[572,673],[0,-1]],[[573,677],[1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[1,-1],[1,0],[0,-1],[-1,0],[-1,0],[0,1],[0,1],[-1,0]],[[572,679],[1,1],[1,0],[0,-1],[-1,-1]],[[684,662],[0,1],[0,2],[0,1],[0,1],[-1,0],[0,1],[-1,1],[0,-1],[-1,1],[0,1],[-1,0],[0,1],[-1,1],[-1,1],[0,1],[-1,0],[0,1],[-1,1],[0,1],[-1,1],[0,1],[-1,0],[0,1],[-1,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[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],[0,1],[1,0],[-1,0],[0,1],[0,1],[1,-1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,1],[0,-1],[-1,0],[0,-1],[1,-2],[0,1],[-1,0],[0,1],[-1,-1],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[-1,0],[-1,0],[-1,0]],[[647,697],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-2],[1,0],[0,-1],[0,-1],[0,-1],[-1,1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,2],[0,-1],[-1,0],[0,1],[0,1],[-1,1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[-1,1],[0,1],[1,0],[0,-1],[0,1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[0,-1],[0,-1],[0,-1],[0,1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[645,695],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1]],[[585,418],[0,-1],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[1,-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],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1]],[[585,419],[0,-1]],[[562,749],[0,-1],[0,-1],[-1,-1],[0,-2]],[[606,734],[0,1],[0,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],[0,1],[1,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[1,-1],[0,1],[-1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,-1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[0,-1],[-1,0],[0,1],[0,-1],[-1,0],[0,1],[0,1],[-1,-1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[-1,1],[0,1],[0,1],[-1,0],[0,1],[1,0],[0,1],[-1,1],[0,1],[0,2],[-1,0],[0,-1],[-1,1],[-1,-1],[-1,0],[-1,-1],[0,-1],[-1,0],[0,1]],[[601,722],[-1,0],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[0,2],[0,1],[-1,0],[0,1],[0,1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,-1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[1,0],[0,1],[-1,0],[0,-1],[0,1],[-1,1],[0,-1],[0,1],[0,-1],[0,1],[-1,1],[0,-1],[0,1],[1,0],[0,-1],[0,1],[1,0],[0,-1],[0,1],[0,-1],[0,-1],[1,1],[0,1],[1,0],[0,1],[0,1],[1,-1],[-1,-1],[0,-1],[0,1],[1,1],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[1,1],[1,0],[1,0]],[[601,720],[0,1],[0,1]],[[601,720],[-1,0],[1,0]],[[582,722],[0,1],[0,1],[0,1],[0,-1],[0,1],[1,0],[0,1],[1,1],[1,1],[0,1],[0,1],[0,1],[1,0],[1,0],[0,1],[0,-1],[1,0],[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],[1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,1],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[0,-1],[0,-1],[0,1],[1,0],[0,-1],[1,-1],[1,0],[0,-1],[0,-1],[-1,0],[1,-1],[0,-1],[-1,0],[0,-1],[1,0],[1,0],[1,1],[0,1],[1,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,-1],[1,0],[1,1]],[[578,723],[0,-1],[0,-1],[1,0],[1,1],[1,0],[1,0],[0,-1],[0,1]],[[648,567],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[0,1],[0,1],[-1,0]],[[649,567],[-1,-1],[0,1]],[[655,580],[-1,0],[0,-2],[-1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,-2],[0,-1],[-1,-1]],[[655,578],[0,1],[0,1],[0,1],[0,-1]],[[655,573],[0,1],[0,1],[0,1],[0,1],[0,1]],[[648,567],[1,0]],[[649,567],[-1,1],[0,-1]],[[480,794],[0,-1],[-1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[1,-1],[0,-1],[1,0],[1,1],[0,1],[1,0],[0,-1],[0,-1],[0,-1],[0,1],[1,0],[1,-1]],[[483,785],[0,1],[0,1],[1,0],[0,1],[0,1],[0,-1],[1,0],[0,1],[-1,0],[0,1],[-1,0],[1,0],[0,1],[-1,1],[0,1],[0,1],[-1,0],[-1,0],[-1,0]],[[480,812],[-1,0],[0,-1],[1,0],[0,1]],[[479,810],[0,-2],[1,0],[-1,0],[0,1],[1,0],[-1,1]],[[480,812],[1,1],[0,1],[0,1],[0,-1],[1,0],[0,1],[-1,0],[1,0],[1,1],[-1,0],[0,1],[1,0],[-1,1],[0,-1],[-1,0],[0,-1],[0,-1],[0,1],[0,-1],[-1,1],[0,-1],[0,-1],[1,0],[0,-1],[-1,0],[0,-1]],[[481,804],[-1,-1],[1,0],[0,1]],[[483,811],[-1,0],[0,1],[0,-1],[-1,0],[0,-1],[0,-1],[0,1],[1,-1],[0,-1],[1,0],[0,-1]],[[483,810],[0,1]],[[483,809],[0,1]],[[484,809],[-1,0]],[[484,808],[0,1]],[[483,807],[0,1],[1,0]],[[481,804],[1,0]],[[482,805],[-1,-1]],[[482,804],[0,1]],[[483,799],[-1,0],[0,-1],[0,-1],[0,1],[0,-1],[1,0],[0,1]],[[483,798],[0,1]],[[482,804],[1,-1],[-1,-1],[1,0],[-1,0],[1,0],[1,0]],[[483,804],[-1,0]],[[484,803],[-1,0],[0,1]],[[484,802],[0,1]],[[483,807],[0,-1],[1,0],[-1,0],[0,-1],[1,0],[-1,0],[-1,0]],[[484,808],[0,-1],[-1,0]],[[484,808],[1,0],[-1,0]],[[484,809],[1,0],[0,-1],[-1,1]],[[484,809],[0,1],[0,-1]],[[483,810],[1,-1]],[[491,819],[-1,0],[0,-1],[0,1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,-1],[1,1],[-1,0],[0,1],[-1,-1],[0,-1],[0,-1],[1,0],[-1,0],[0,-1],[-1,0],[1,-1],[0,-1],[0,1],[0,-1],[-1,0],[0,1],[0,-1],[0,-1],[0,1],[-1,0],[0,-1],[1,-1],[-1,0]],[[502,767],[0,1],[0,1],[0,-1],[0,1],[1,0],[0,1],[0,1],[0,-1],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[-1,1],[-1,0],[0,-1],[0,-1],[-1,0],[0,1],[0,1],[1,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[1,0],[0,-1],[1,1],[0,-1],[0,1],[-1,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[-1,-1],[-1,1],[-1,0],[1,0],[1,0],[0,1],[1,0],[0,1],[0,1],[-1,0],[0,-1],[0,1],[1,0],[1,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[0,1],[-1,-1],[-1,0],[0,-1],[0,1],[0,1],[0,-1],[-1,0],[1,1],[1,0],[0,1],[-1,0],[-1,0],[1,0],[1,0],[-1,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[0,2]],[[502,767],[-1,0],[1,0]],[[502,766],[-1,0],[0,1],[1,0]],[[497,761],[0,1],[1,0],[1,0],[1,0],[0,-1],[0,1],[1,0],[1,1],[0,1],[1,0],[0,1],[1,1],[-1,0],[-1,0]],[[496,762],[1,0],[0,-1]],[[495,761],[1,1]],[[486,799],[0,-2],[1,0],[0,-1],[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,0],[-1,1],[0,1],[1,-1],[1,0],[0,1],[1,0],[1,0],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[1,1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[1,0],[-1,0],[0,-1],[0,-1],[1,-1],[-1,0],[0,1],[0,-1],[-1,0],[-1,0],[-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],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,1],[0,-1],[1,0],[0,1],[1,-1],[0,-1],[1,1],[0,-1],[1,-1],[1,0],[0,1],[1,0],[0,1],[1,1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[-1,0],[-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],[0,-1],[0,1],[1,0],[0,-1],[1,1],[-1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[0,-1],[1,0],[1,1],[0,1],[0,1],[1,0],[1,0],[1,-1],[0,1],[1,0],[0,-1],[0,1],[1,0]],[[486,799],[0,1],[1,-1],[-1,0]],[[486,799],[0,1],[0,-1]],[[485,798],[0,1],[1,0]],[[485,798],[0,1]],[[485,799],[0,1],[0,1],[1,0],[0,1],[0,-1],[-1,0],[0,-1],[0,-1]],[[484,800],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,2],[0,1],[1,0]],[[484,800],[0,-1],[0,1]],[[484,801],[0,-1]],[[484,802],[0,-1]],[[484,803],[0,1],[1,0],[0,1],[0,1],[0,-1],[0,-1],[0,-1],[0,1],[1,0],[-1,-1],[-1,-1]],[[483,804],[1,0],[0,-1]],[[482,805],[1,0],[1,0],[-1,-1]],[[483,799],[1,1]],[[483,799],[0,-1],[0,1]],[[484,801],[-1,-1],[0,-1]],[[485,798],[1,0],[0,1]],[[490,821],[0,-1],[1,0]],[[491,821],[-1,0]],[[491,820],[0,1]],[[491,821],[0,1],[-1,0],[0,-1]],[[491,821],[1,0],[0,-1]],[[491,820],[0,-1]],[[492,820],[-1,0]],[[491,819],[1,0],[0,1]],[[492,823],[1,0],[0,1],[-1,-1]],[[496,832],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,1],[0,1],[1,0],[-1,0],[0,1],[0,-1],[1,1],[0,1]],[[496,833],[-1,-1],[1,0]],[[497,832],[-1,0],[0,1]],[[497,761],[-1,0],[0,1]],[[495,761],[1,0],[0,-1],[1,1]],[[497,832],[0,1]],[[497,834],[-1,-1]],[[497,833],[0,1]],[[497,834],[0,-1],[0,1]],[[497,834],[1,0],[0,1],[-1,0],[0,-1]],[[177,748],[0,-1],[0,-1],[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],[1,0],[0,-1],[0,-1],[0,-1],[0,1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[-1,0],[1,0],[0,-1],[0,-1],[0,-1],[-1,0],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,1],[-1,0],[0,1],[0,-1],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[0,-1],[0,1],[0,-1],[0,1],[0,-1],[0,1],[0,1],[0,1],[-1,0],[1,0],[0,1],[-1,0],[0,1],[-1,0],[0,-1],[0,-1],[1,0],[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,0],[0,-1],[-1,0],[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,0],[1,0],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[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,-3],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-4]],[[189,749],[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]],[[201,749],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0]],[[203,749],[-1,0],[-1,0]],[[206,749],[-1,0],[-1,0],[-1,0]],[[211,748],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1]],[[208,616],[0,1],[0,1],[0,2],[0,4],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[0,3],[0,3],[0,2],[0,1],[0,2],[0,1],[0,1],[0,1],[0,2],[0,3],[0,2],[0,1],[0,3],[0,1],[0,3],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[1,0],[0,1],[0,1],[0,1],[0,2],[0,1],[2,0],[0,4],[-1,3],[1,0],[0,3],[0,1],[0,1],[0,1],[-1,0],[-1,0],[0,3],[1,0],[1,0],[0,2],[0,1],[0,2],[0,1],[0,1],[0,1],[0,2],[0,3],[1,0],[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,3],[0,3],[1,0],[0,1],[0,1],[1,0],[1,2],[0,1],[0,-1],[-1,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],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[1,0],[0,1],[-1,0],[0,2],[-1,0],[0,1],[-1,0],[0,2],[1,0],[0,2],[1,0],[0,1],[0,1],[-1,0],[0,-1],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[0,-1],[0,1],[-1,0],[0,-1],[0,1],[0,-1],[-1,0],[-1,0],[0,1],[0,1],[0,1],[0,3],[0,2],[0,2]],[[208,616],[0,-1],[0,1]],[[191,651],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-2],[0,-2],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-3],[0,-1],[0,-1]],[[183,661],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[0,1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0]],[[194,652],[0,-1],[-1,0],[-1,0],[-1,0]],[[194,653],[0,-1]],[[194,653],[0,1],[0,-1]],[[191,655],[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]],[[191,654],[0,1]],[[191,651],[0,1],[0,1],[0,1]],[[181,630],[0,1],[0,-1]],[[183,661],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[-1,0],[0,1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[1,0],[0,-1],[0,-1],[-1,0],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[0,-1]],[[191,655],[-1,0],[0,-1],[1,1]],[[191,655],[-1,0],[1,0]],[[191,655],[0,-1],[0,1]],[[194,652],[0,1],[0,-1]],[[194,652],[-1,0],[1,0]],[[157,746],[1,-1]],[[158,746],[-1,0]],[[158,745],[0,1]],[[158,746],[1,0],[-1,1],[0,-1]],[[159,741],[1,0],[0,1],[-1,0],[0,1],[0,1],[0,-1],[0,1],[0,-1],[0,-1],[0,-1]],[[159,737],[1,0],[0,1],[-1,-1]],[[170,633],[0,-1],[1,-1],[0,1],[-1,0],[0,1]],[[170,636],[1,-1],[0,1],[-1,0]],[[159,742],[-1,0],[0,1],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[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],[0,1],[1,0],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[0,1],[-1,0],[0,-1],[1,-1],[-1,0],[0,-1],[0,1],[0,1],[0,-2],[0,-1],[1,0],[0,1],[1,0],[0,-1],[1,0],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[-1,0],[0,-2],[0,-2],[0,-1],[0,-1],[0,-1],[0,-3],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[1,0],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[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],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,1],[0,-1],[1,0],[0,-1],[0,-1],[1,1],[-1,0],[0,2],[1,0],[0,-1],[1,1],[0,-1],[1,0],[0,1],[0,-1],[0,1],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[-1,1],[0,1],[-1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-2],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[159,741],[0,1]],[[159,741],[0,-2],[-1,0],[0,-1],[0,-1],[0,1],[0,1],[0,1],[1,0],[0,1]],[[159,737],[0,-1],[0,2],[0,1],[0,-1],[0,1],[1,1],[-1,1]],[[159,737],[0,-1],[0,-1],[0,1],[0,1]],[[160,737],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,1],[0,1],[1,1]],[[160,738],[0,-1]],[[160,741],[0,-1],[0,-1],[0,-1]],[[160,742],[0,-1]],[[160,742],[0,1],[0,-1]],[[159,743],[0,-1],[1,0]],[[159,744],[1,0],[0,-1],[-1,0]],[[159,745],[0,-1]],[[177,748],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-3,0],[-1,0],[0,-1],[1,-1],[-1,-1]],[[19,832],[0,-1],[1,0],[0,-1],[1,0],[0,1],[-1,0],[-1,0],[0,1]],[[22,853],[1,0],[0,-1],[1,0],[0,1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,1],[0,1],[1,0],[1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,1],[0,1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[0,1],[0,-1],[0,-1],[-1,0],[0,-1]],[[26,807],[1,0],[0,1],[-1,0],[0,-1]],[[33,780],[0,1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[1,0],[-1,0],[0,-1],[0,-1],[1,1],[1,1],[0,1],[1,1]],[[37,783],[0,1],[-1,0],[-1,0],[0,-1],[0,-1],[1,0],[0,1],[0,-1],[-1,0],[0,-1],[0,1],[0,-1],[0,-1],[-1,0],[-1,-1],[1,0],[1,1],[1,0],[0,1],[1,0],[0,1]],[[38,784],[-1,0],[0,-1]],[[38,783],[0,1]],[[37,782],[1,0],[-1,1],[0,-1],[0,1],[1,0]],[[35,829],[0,-1],[1,0],[1,-1],[1,-1],[0,1],[1,0],[1,0],[0,1],[-1,1],[0,1],[-1,0],[0,1],[0,-1],[-1,1],[0,-1],[-1,0],[0,-1],[-1,0]],[[37,782],[1,0],[0,1],[-1,0],[0,-1]],[[39,786],[-1,0],[0,-1],[0,-1]],[[39,785],[0,1]],[[39,785],[0,-1],[0,1]],[[38,784],[0,1],[1,0]],[[39,785],[1,0],[0,1],[-1,0]],[[40,875],[1,0],[1,0],[0,1],[-1,-1],[-1,0]],[[46,791],[-1,1],[-1,0],[0,-1],[-1,0],[-1,-1],[0,-1],[-1,-1],[1,-1],[1,0],[0,1],[1,1],[1,0],[0,-1],[0,1],[1,0],[1,0],[-1,1]],[[46,790],[0,1]],[[47,787],[1,0],[-1,1],[0,-1]],[[49,791],[-1,0]],[[48,791],[0,-1],[1,0],[0,1]],[[53,819],[-1,-1]],[[52,818],[0,-1],[1,0],[0,2]],[[54,794],[-1,0],[0,-1],[0,-1],[1,0],[0,1]],[[54,793],[0,1]],[[54,795],[0,-1]],[[54,794],[1,0],[0,1],[-1,0]],[[56,793],[-1,0],[0,-1],[0,-1],[-1,0],[1,-1],[0,1],[0,1],[1,0]],[[56,792],[0,1]],[[56,792],[1,0]],[[57,792],[0,1],[-1,0]],[[58,798],[0,-1],[1,0],[0,1]],[[59,798],[-1,0]],[[67,797],[1,0],[0,1],[-1,0],[0,-1]],[[71,803],[-1,0],[0,-1],[1,0]],[[71,802],[0,1]],[[73,813],[-1,-1],[0,-1],[1,0],[0,-1],[0,1],[-1,0],[0,-1],[1,-1],[0,-1],[-1,1],[0,1],[0,1],[-1,0],[0,-1],[-1,0],[0,-2],[1,-1],[0,-1],[0,-1],[1,1],[0,1],[-1,0],[0,-1],[0,1],[1,0],[0,-1],[0,1],[1,0],[-1,-1],[1,0],[-1,0],[0,-1],[0,-1],[1,1],[0,1],[0,1],[0,-1],[1,1]],[[74,812],[0,-1],[-1,0],[0,1],[0,1]],[[74,813],[1,-1],[-1,0]],[[75,813],[-1,0]],[[74,808],[0,1],[1,-1],[1,0],[0,1],[-1,0],[0,1],[0,-1],[0,1],[1,0],[0,-1],[1,0],[0,1],[0,1],[-1,0],[0,-1],[0,1],[0,1],[1,0],[-1,1],[0,-1],[-1,0],[0,-1],[0,1],[0,1]],[[74,808],[1,0],[-1,0]],[[74,807],[0,1]],[[72,803],[-1,0]],[[71,802],[1,1]],[[73,823],[1,0],[0,1],[-1,-1]],[[73,813],[1,-1],[0,1],[-1,0]],[[74,807],[0,1],[0,-1]],[[74,807],[0,-1],[1,1],[-1,0]],[[75,813],[0,1],[-1,0],[1,-1]],[[76,817],[-1,-1],[0,-1],[0,1],[0,-1],[-1,0],[0,-1]],[[75,813],[1,1],[1,0],[0,1],[0,-1],[0,1],[0,-1],[0,1],[1,0],[0,1],[-1,0],[-1,0],[0,1]],[[74,814],[1,0],[0,-1]],[[76,817],[1,0],[0,1],[-1,0],[0,-1]],[[82,824],[-1,0],[0,-1]],[[81,823],[1,0],[0,1]],[[88,834],[0,-1],[1,0],[-1,1]],[[89,831],[-1,-1],[1,0]],[[89,830],[0,1]],[[88,834],[1,0],[0,1],[-1,-1]],[[89,828],[0,-1],[1,0],[0,1],[1,1],[0,1],[1,0]],[[92,830],[-1,1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0]],[[89,830],[0,-1]],[[89,832],[0,-1]],[[89,829],[1,1],[0,1],[0,1],[-1,0]],[[93,832],[-1,-1],[1,0],[0,-1],[-1,0]],[[92,830],[1,0],[0,1],[1,0],[-1,0],[0,1]],[[96,831],[1,-1],[0,1],[-1,0]],[[138,792],[0,1],[0,1],[1,0],[0,1],[-1,1],[0,2],[1,1],[0,1],[-1,0],[-1,1],[0,1],[-1,0],[0,1],[-1,0],[-1,1],[0,1],[-1,1],[0,1],[-1,0],[0,1],[1,0],[-1,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,1],[-1,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,-1],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0]],[[137,791],[1,1]],[[137,791],[0,1],[0,-1]],[[136,794],[0,-1],[1,0],[0,1],[0,1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[1,0]],[[136,795],[1,0],[0,-1],[-1,0]],[[135,799],[1,0],[0,-1],[0,-1],[0,-1],[0,-1]],[[135,799],[0,1],[1,0],[-1,-1]],[[135,799],[0,1],[0,-1]],[[134,799],[1,0]],[[133,799],[1,0]],[[134,798],[-1,0],[0,1]],[[134,797],[0,1]],[[133,796],[1,1]],[[132,798],[1,-1],[0,-1]],[[133,799],[0,-1],[-1,0]],[[133,800],[0,-1]],[[133,801],[0,-1]],[[133,801],[1,0],[-1,0]],[[132,803],[1,0],[0,-1],[0,-1]],[[132,804],[0,-1]],[[131,805],[1,0],[0,1],[0,-1],[0,-1]],[[131,806],[0,-1]],[[131,806],[0,1],[0,-1]],[[130,807],[1,0],[0,-1]],[[128,813],[1,-1],[0,1],[1,0],[-1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,1],[-1,1],[0,-1],[1,0],[-1,0],[0,-1],[0,-1],[1,0],[-1,0],[0,-1],[1,0],[0,-1]],[[128,814],[0,-1]],[[128,814],[0,1],[1,0],[-1,0],[0,-1]],[[127,815],[1,-1]],[[127,816],[1,1],[0,1],[0,-1],[0,-1],[-1,-1]],[[127,816],[0,-1]],[[125,817],[-1,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[1,0],[0,-1],[0,1],[0,1],[0,1],[0,-1],[0,-1],[0,-1],[1,-2],[-1,0],[1,-1],[0,1],[0,-1],[1,-2],[1,-1]],[[125,816],[0,1]],[[122,817],[1,0],[1,0],[0,-1],[1,0]],[[122,818],[1,0],[0,-1],[-1,0]],[[121,819],[1,0],[0,1],[0,1],[0,-1],[0,1],[1,0],[0,-1],[-1,0],[0,-1],[0,-1]],[[121,820],[0,-1]],[[119,822],[1,-1],[1,0],[0,-1]],[[121,815],[0,-1]],[[121,815],[0,1]],[[122,816],[0,-1],[-1,0]],[[122,816],[0,-1],[0,1]],[[125,815],[-1,0],[0,-1],[-1,0],[0,1],[1,0],[-1,0],[0,1],[-1,0]],[[125,810],[0,1],[0,1],[-1,0],[0,1],[-1,0],[-1,1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,1],[-1,0],[0,1],[1,-1],[0,1],[0,1]],[[124,811],[1,-1]],[[123,810],[0,1],[0,1],[1,-1]],[[123,810],[0,-1]],[[123,810],[-1,0],[1,0]],[[121,813],[1,-1],[0,-1],[0,-1],[1,0]],[[121,814],[0,-1]],[[121,814],[1,0],[0,-1],[-1,1]],[[123,810],[1,-1],[-1,0]],[[124,811],[-1,-1]],[[125,810],[-1,0],[0,1]],[[125,809],[0,1]],[[126,807],[-1,1],[0,1]],[[126,806],[0,1]],[[123,808],[1,1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[-1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,-1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[123,809],[0,-1]],[[125,816],[0,-1]],[[125,816],[0,1],[0,-1]],[[126,816],[-1,0]],[[127,815],[-1,0],[0,1]],[[128,814],[-1,0],[0,1]],[[127,815],[0,-1],[0,-1],[1,-1],[0,1]],[[126,807],[1,1],[0,1],[0,1],[0,-1],[1,0],[0,1],[-1,0],[1,0],[0,1],[-1,2],[0,1],[0,1]],[[125,815],[1,-2],[0,-1],[0,-1],[0,-1],[0,1],[1,0],[-1,-1],[1,0],[0,-1],[-1,0],[0,-1],[0,-1]],[[128,806],[-1,0],[-1,0]],[[128,804],[0,1],[0,-1],[0,1],[0,1]],[[128,800],[0,1],[0,1],[0,-1],[0,1],[0,-1],[0,1],[0,1],[0,1]],[[127,799],[0,1],[0,2],[1,0],[0,-1],[0,-1]],[[126,806],[1,-1],[0,-1],[0,-1],[0,1],[0,-1],[1,0],[0,-1],[-1,0],[0,1],[0,-1],[0,-1],[0,-1],[0,-1]],[[130,807],[-1,0],[-1,0],[0,-1]],[[131,806],[-1,0],[0,1]],[[131,804],[0,1]],[[130,803],[0,1],[0,1],[-1,0],[0,1],[1,-1],[0,-1],[1,0]],[[128,804],[1,0],[0,-1],[1,0]],[[128,805],[0,-1]],[[128,806],[1,-1],[-1,0]],[[128,806],[0,-1],[0,1]],[[128,800],[0,-1],[1,0]],[[129,801],[0,-1],[-1,0]],[[130,800],[0,1],[-1,0]],[[129,799],[0,1],[1,0]],[[129,796],[-1,0],[1,-1]],[[129,795],[0,1]],[[129,795],[-1,-1],[1,0]],[[129,794],[0,1]],[[130,801],[0,-2]],[[129,801],[1,0]],[[130,802],[-1,0],[0,-1]],[[130,801],[0,1]],[[130,800],[0,1]],[[131,800],[-1,0]],[[132,798],[-1,1],[0,1]],[[133,796],[-1,0],[0,1],[0,1]],[[133,796],[0,-1],[0,1]],[[131,792],[1,0],[0,-1],[1,0],[-1,0],[0,-1],[1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[1,0],[-1,2],[0,1],[0,-1],[1,0]],[[131,794],[1,-1],[0,-1],[-1,0]],[[131,794],[0,-1],[0,1]],[[130,794],[1,0]],[[130,795],[0,-1]],[[130,795],[1,0],[-1,0]],[[130,796],[0,-1]],[[130,796],[0,1],[1,0],[-1,0],[0,-1]],[[129,797],[1,-1]],[[130,798],[-1,-1]],[[130,798],[0,1],[0,-1]],[[130,799],[0,-1]],[[129,794],[1,0]],[[130,795],[-1,0]],[[130,796],[-1,0]],[[129,795],[1,1]],[[129,799],[0,-1]],[[130,799],[-1,0]],[[129,798],[1,0]],[[130,794],[0,-1],[0,-1],[0,-1],[1,0]],[[131,792],[-1,1],[0,1]],[[131,791],[0,-1],[0,1],[0,1]],[[130,802],[1,-1]],[[131,803],[-1,-1]],[[131,801],[0,1],[0,1]],[[131,804],[0,-1]],[[132,804],[-1,0]],[[131,803],[1,1]],[[131,801],[0,-1]],[[132,802],[-1,-1]],[[133,801],[-1,0],[0,1]],[[131,800],[1,0],[0,-1],[1,0]],[[132,803],[0,-1]],[[133,801],[0,-1],[0,1]],[[134,797],[0,-1],[0,-1]],[[136,794],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[-1,0],[0,-1],[0,-1]],[[135,794],[1,0]],[[135,794],[0,1],[0,-1]],[[134,794],[1,1],[-1,1],[1,0],[0,-1],[0,1],[0,1],[0,-1],[0,-1],[0,-1]],[[134,795],[0,-1]],[[134,794],[0,-2],[1,0]],[[135,794],[-1,0]],[[135,792],[0,1],[0,1]],[[37,872],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,-1],[0,1],[0,-1],[0,-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],[0,1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,1],[-1,0],[0,1],[1,0],[0,-1],[1,-1],[0,-1],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[0,-1],[0,1],[1,0],[1,0],[0,1],[1,0],[-1,0],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[-1,-2],[-1,0],[-1,0],[-1,0],[1,0],[-1,1]],[[38,873],[-1,-1]],[[40,875],[0,-1],[-1,0],[0,-1],[1,0],[-1,-1],[-1,1]],[[42,876],[0,-1],[-1,0],[-1,0]],[[108,898],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,1],[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],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,-1],[-1,0],[0,1],[-1,-1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[1,0],[-1,0],[0,1],[1,0],[0,1],[-1,0],[-1,0],[-1,1],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[0,-1],[0,1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,1],[-1,1],[1,0],[1,1],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,-1],[-1,-1],[-1,-1],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,1],[1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[0,1],[1,0],[0,-1],[1,0],[-1,-1],[0,-1],[-1,1],[1,1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[1,0],[0,1],[-1,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[1,1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,-1],[1,-1],[1,0],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,1],[0,-1],[1,0],[1,0],[-1,-1],[0,-1],[1,-1],[1,0],[1,1],[0,-1],[1,0],[1,0],[0,-1],[-1,-1],[-1,0],[0,1],[-1,0],[0,1],[0,-1],[-1,0],[-1,0],[0,1],[0,1],[-1,2],[-1,-1],[0,-1],[1,0],[1,-1],[0,-1],[0,-1],[1,1],[1,-1],[1,0],[0,-1],[-1,0],[0,-1],[0,1],[0,1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[1,1],[0,1],[0,1],[-1,0],[1,0],[-1,0],[-1,0],[-1,0]],[[108,898],[0,1],[-1,0],[1,-1]],[[119,821],[0,1]],[[121,820],[-1,0],[-1,0],[0,1]],[[121,820],[-1,0],[1,0]],[[121,819],[0,-1],[0,1]],[[122,817],[0,1],[-1,1]],[[122,816],[0,1]],[[121,816],[1,0]],[[121,816],[0,1],[0,-1]],[[121,816],[-1,0],[0,1],[1,-1]],[[97,830],[1,0],[1,0],[1,-1],[0,-1],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,1],[1,-1],[-1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,1],[1,0],[0,1],[0,1],[1,-1],[0,-1],[1,0],[-1,0],[0,-1],[0,-1],[0,1],[0,1],[0,1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[1,-1],[0,1],[0,-1],[1,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,-1],[1,0],[0,-1],[1,0]],[[97,831],[0,-1]],[[97,831],[0,1],[1,1],[0,-1],[-1,-1]],[[96,831],[1,0]],[[95,832],[1,-1]],[[95,833],[0,-1]],[[89,834],[1,0],[0,1],[0,1],[0,1],[0,-1],[0,-1],[1,0],[0,1],[1,-1],[0,1],[1,0],[1,0],[-1,0],[-1,-1],[1,-1],[1,0],[0,1],[0,-1],[-1,0],[-1,0],[1,-1],[1,1],[0,-1],[1,0]],[[89,835],[0,-1]],[[88,834],[0,2],[0,-1],[0,1],[1,0],[0,1],[1,0],[-1,-1],[0,-1]],[[88,834],[-1,0],[1,0]],[[88,834],[-1,0],[0,-1],[0,1],[1,0]],[[88,833],[0,1]],[[89,833],[-1,-1],[-1,0],[0,-1],[0,1],[1,0],[0,1]],[[89,832],[0,1]],[[88,830],[0,1],[1,0]],[[88,830],[0,-1],[0,1]],[[89,830],[-1,0]],[[89,830],[-1,-1],[1,1]],[[88,828],[1,1]],[[88,828],[0,1],[0,-1]],[[82,824],[1,0],[0,1],[0,1],[0,1],[0,-1],[1,0],[0,1],[0,1],[0,-1],[0,-1],[1,0],[-1,0],[0,1],[1,1],[0,1],[0,-1],[0,-1],[0,1],[1,0],[0,1],[0,-1],[1,0],[1,0]],[[82,824],[0,1],[0,1],[1,0],[-1,-1],[0,-1]],[[82,824],[0,1],[-1,0],[1,0],[0,-1]],[[59,798],[0,1],[0,1],[0,-1],[1,1],[0,1],[-1,0],[0,-1],[0,1],[1,1],[1,0],[0,1],[-1,-1],[1,1],[0,1],[1,0],[0,-1],[0,1],[0,1],[1,0],[0,-1],[0,1],[1,0],[0,1],[0,-1],[0,1],[1,0],[0,1],[1,1],[-1,0],[1,1],[0,1],[1,0],[0,1],[1,1],[0,-1],[1,1],[0,1],[0,1],[1,0],[0,-1],[0,1],[0,-1],[1,1],[1,1],[0,1],[-1,-1],[0,1],[1,0],[0,1],[0,1],[1,0],[1,1],[0,1],[0,1],[-1,0],[-1,0],[-1,1],[1,1],[0,1],[1,0],[0,1],[1,0],[0,1],[0,-1],[0,1],[1,0],[0,1],[-1,0],[1,0],[1,0],[0,1],[0,1],[-1,0],[0,1],[1,0],[1,1],[0,1],[1,1],[0,1],[0,1],[1,0],[1,1],[0,1],[1,0],[1,0],[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,0],[0,-1],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,-1],[0,-1],[-1,0],[-1,-1],[1,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[0,-2],[1,0],[0,-1],[0,1],[1,0],[0,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],[1,-1],[0,1]],[[58,798],[0,1],[1,0],[0,-1]],[[54,795],[0,1],[1,0],[0,1],[1,0],[0,-1],[0,-1],[0,1],[1,1],[0,1],[1,0]],[[50,793],[0,1],[0,1],[1,1],[1,-1],[-1,0],[0,-1],[1,0],[0,1],[1,0],[1,0]],[[50,793],[-1,0],[1,0]],[[50,792],[0,1]],[[49,791],[0,1],[1,0]],[[48,791],[0,1],[0,1],[0,-1],[1,-1]],[[46,791],[0,1],[1,0],[0,-1],[1,0]],[[46,790],[1,1],[-1,0]],[[53,819],[0,1],[1,1],[1,0],[0,-1],[-1,0],[1,0],[0,-1],[1,0],[0,1],[1,-1],[0,-1],[1,-1],[0,-1],[1,0],[0,1],[-1,1],[0,1],[1,0],[-1,0],[1,0],[0,1],[1,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],[1,1],[1,0],[0,1],[1,1],[0,1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[-1,-1],[0,1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[1,-1],[-1,0],[0,1],[-1,0],[0,-1],[0,1],[0,-1],[0,-1],[0,1],[-1,1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[0,1],[-1,0],[0,-1],[0,-1]],[[52,818],[0,1],[1,0]],[[52,818],[-1,0],[1,0]],[[42,846],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[-1,0],[-1,0],[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],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[1,-1],[0,1],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[0,1],[1,0],[1,-1],[1,0],[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],[0,-1],[0,-1],[1,0],[1,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,1],[-1,0],[0,1],[1,1],[0,1],[0,1],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,-1],[-1,0],[0,-1],[0,-1],[0,-1],[1,0],[-1,0],[0,-1],[0,-1],[1,0],[-1,-1],[-1,0],[1,0],[1,0],[1,0]],[[49,854],[0,-1],[-1,-1],[-1,-1],[0,-1],[-1,0],[0,1],[-1,0],[-1,1],[-1,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[1,1],[-1,-1],[0,-1]],[[42,846],[0,-1],[0,1]],[[5,770],[0,1],[-1,0],[1,-1]],[[5,769],[0,1]],[[5,770],[-1,0],[1,-1]],[[7,769],[0,1],[0,1],[0,-1],[-1,0],[-1,0]],[[5,769],[1,0],[0,1],[1,0],[0,-1]],[[9,771],[-1,0],[0,-1],[-1,-1]],[[9,770],[-1,0],[0,1],[1,0]],[[7,769],[1,0],[1,1]],[[12,771],[1,0],[1,0],[1,0],[0,1],[1,1],[0,1],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[0,1],[-1,-1]],[[16,772],[0,-1],[1,0],[1,0],[1,0],[-1,0],[-1,0],[0,1],[-1,0]],[[56,553],[0,-1],[1,0],[0,2],[-1,0],[0,-1]],[[60,550],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0]],[[63,546],[1,0],[0,1],[-1,0],[0,-1]],[[64,545],[-1,0],[1,-1],[0,-1],[0,1],[0,1]],[[64,545],[1,-1],[0,-1],[0,-1],[1,1],[0,1],[0,1],[-1,0],[0,1],[0,-1],[-1,0]],[[66,536],[1,-3],[0,-1],[0,-1],[0,-1],[1,1],[0,1],[0,1],[1,0],[1,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1]],[[982,776],[1,-1],[1,-1],[0,1],[1,0],[0,1],[-1,0],[-1,0],[-1,0]],[[250,732],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,1],[1,0],[2,0],[0,-2],[1,0],[0,-1],[1,0],[0,-1],[0,-3]],[[253,735],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1]],[[254,734],[0,1],[-1,0],[0,1],[0,-1]],[[264,732],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[-1,1],[0,1],[-1,0],[-1,0],[1,0],[0,1],[0,-1],[-1,0],[0,-1],[0,1],[0,1]],[[265,730],[-1,0],[-1,0],[0,1],[0,1],[1,0]],[[266,729],[0,1],[-1,0]],[[264,725],[0,1],[0,1],[1,0],[0,-1],[0,1],[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,0],[0,1],[-1,0],[0,1],[0,1]],[[257,723],[0,1],[1,0],[0,1],[0,1],[0,-1],[0,-1],[0,1],[1,0],[-1,0],[1,0],[0,1],[0,-1],[0,1],[0,-1],[0,-1],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,-1],[0,-1]],[[253,736],[0,-1],[1,0],[0,-1],[0,1]],[[256,737],[-1,0],[-1,0],[0,-1],[-1,0]],[[254,735],[1,0],[0,1],[0,1],[1,0]],[[276,600],[-1,0],[0,-1],[1,-1]],[[276,598],[0,1],[0,1]],[[276,575],[0,-1],[1,1]],[[277,576],[0,-1],[-1,0]],[[277,575],[0,2],[0,-1]],[[276,595],[1,-1],[0,-2],[0,-2]],[[277,590],[0,1],[0,1]],[[277,592],[0,1],[0,1],[-1,0],[0,1]],[[290,653],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[1,0],[0,1],[0,2],[0,1],[0,1]],[[293,687],[1,0]],[[294,688],[-1,0],[0,-1]],[[294,687],[0,1]],[[294,688],[0,-1],[0,1]],[[295,690],[0,-1],[-1,0],[0,-1]],[[294,688],[1,0],[0,-1],[0,1],[1,0],[1,0],[0,1],[1,0],[1,1],[1,1],[-1,0],[-1,-1],[0,1],[1,0],[0,1],[-1,-1],[0,-1],[-1,0],[-1,0],[-1,0]],[[301,694],[1,0],[0,1],[-1,-1]],[[303,694],[0,-1],[1,0],[0,1],[-1,0]],[[304,692],[1,0],[0,1],[0,-1],[0,1],[-1,-1]],[[259,696],[-1,0],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[-1,0],[1,0],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[-1,0],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[0,-1],[0,1],[0,-1],[0,1],[0,-1],[1,0],[0,-1],[1,0],[0,1],[0,-1],[0,-1],[1,0],[0,1],[0,-1],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[1,0],[-1,0],[1,0],[0,-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],[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],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[-1,0],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[1,0],[-1,0],[1,0],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[-1,0],[0,1],[0,-1],[1,-1]],[[264,725],[0,-1],[-1,0],[0,-1],[0,-1],[1,0],[-1,0],[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,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[1,0],[-1,0],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[1,0],[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,0],[0,-1],[0,-1],[0,-1]],[[271,706],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,-1],[-1,0],[0,-1],[0,1],[0,-1],[0,-1],[-1,0],[0,-1],[0,1],[0,-1],[0,1],[-1,0],[0,1],[1,0],[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,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0]],[[271,706],[-1,0],[1,0]],[[270,702],[0,1],[0,-1],[0,1],[0,1],[1,1],[0,1]],[[269,700],[0,1],[0,1],[1,0]],[[268,698],[1,0],[-1,0],[1,0],[0,1],[0,1]],[[280,704],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,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],[1,0],[-1,0],[1,0],[0,1],[-1,0],[0,-1],[0,1],[-1,0],[0,1],[0,-1],[0,1],[0,1],[0,1]],[[280,705],[0,-1]],[[280,705],[1,0],[-1,0]],[[280,707],[0,-1],[0,-1]],[[289,716],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,1],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,1],[-1,0],[-1,0],[0,-1],[0,1],[-1,0],[-1,0],[0,1],[0,-1],[0,1],[-1,0],[0,-1],[-1,0]],[[290,718],[0,-1],[0,-1],[-1,0]],[[291,719],[0,-1],[-1,0]],[[301,720],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0]],[[302,722],[0,-1],[0,1],[-1,-1],[0,-1]],[[303,721],[0,1],[-1,0]],[[303,723],[0,-1],[0,-1]],[[303,723],[0,-1],[0,1]],[[303,724],[0,-1]],[[304,725],[0,-1],[-1,0]],[[304,729],[0,-1],[0,-1],[0,-1],[0,-1]],[[305,730],[0,-1],[-1,0]],[[305,733],[0,-1],[0,-1],[0,-1]],[[306,734],[0,-1],[-1,0]],[[308,737],[-1,0],[0,-1],[-1,-1],[0,-1]],[[311,735],[0,1],[-1,0],[-1,0]],[[311,733],[0,1],[0,1]],[[311,729],[0,1],[0,1],[0,1],[0,1]],[[311,726],[0,1],[0,1],[0,1]],[[311,725],[0,1]],[[312,724],[-1,0],[0,1]],[[312,721],[0,1],[0,1],[0,1]],[[313,720],[-1,0],[0,1]],[[313,720],[0,1],[0,-1]],[[313,719],[0,1]],[[313,719],[0,-1],[0,1]],[[314,718],[-1,0],[0,1]],[[313,717],[0,1],[1,0]],[[312,717],[1,0]],[[312,716],[0,1]],[[311,716],[1,0]],[[311,716],[0,1],[0,-1]],[[311,715],[0,1]],[[310,715],[1,0]],[[310,715],[0,1],[0,-1]],[[310,715],[-1,0]],[[309,716],[1,0],[0,-1]],[[309,716],[0,-1]],[[309,714],[0,1]],[[309,714],[0,1],[0,-1]],[[308,714],[1,0]],[[308,714],[0,1]],[[309,715],[-1,0]],[[308,716],[1,0]],[[308,716],[0,1],[0,-1]],[[308,715],[0,1]],[[308,715],[0,1],[0,-1]],[[308,713],[0,1]],[[308,712],[0,1]],[[307,712],[1,0]],[[307,712],[0,1],[0,-1]],[[307,711],[0,1]],[[306,711],[1,0]],[[306,711],[0,1],[0,-1]],[[306,711],[0,1]],[[306,712],[0,1],[0,-1]],[[306,711],[0,-1],[0,1]],[[305,711],[1,0]],[[305,710],[0,1]],[[305,710],[-1,0],[1,0]],[[305,709],[0,1]],[[304,709],[1,0]],[[303,694],[1,1],[1,0],[0,1],[0,1],[0,1],[-1,0],[1,0],[0,-1],[0,-1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,-1],[0,1],[1,1],[0,1],[0,1],[0,-1],[0,1],[0,1],[0,1],[0,1],[0,-1],[0,1],[0,1],[1,0],[0,1],[0,1]],[[302,694],[1,1],[0,1],[0,-1],[0,-1]],[[302,695],[0,-1]],[[302,695],[0,1],[0,-1]],[[301,695],[1,0]],[[301,695],[0,1],[0,-1]],[[301,694],[0,1]],[[295,690],[0,1],[1,0],[0,1],[1,0],[1,0],[1,1],[1,0],[1,0],[0,1]],[[294,689],[1,0],[0,1]],[[294,689],[0,1],[0,1],[0,1],[0,-1],[0,-1],[0,-1]],[[294,688],[0,1]],[[290,653],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,-1],[-1,1],[0,1],[-1,1],[-1,1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,1],[-1,1],[0,1],[0,-1],[0,1],[1,0],[0,1],[-1,1],[0,1],[-1,1],[0,1],[-1,1],[1,0],[0,-1],[0,-1],[1,-1],[0,-1],[1,0],[0,2],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,1],[1,0],[0,-1],[0,-1],[1,0],[1,-1],[0,1],[-1,0],[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],[1,0],[0,-1],[0,1],[0,1],[1,0],[0,-2],[-1,0],[0,-1],[0,-1],[0,1],[0,-1],[0,-1],[-1,0],[1,0],[0,-1],[0,1],[0,-1],[0,-1],[0,1],[0,-1],[1,0],[-1,0],[0,-1],[0,-1],[0,-1],[1,1],[0,-1],[0,-1],[0,-1],[1,0],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[1,0],[0,1],[0,1],[1,0],[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],[0,1],[0,1],[1,0],[0,1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[1,0],[0,-1],[-1,0],[0,-1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,1],[0,2],[0,-1],[0,-1],[0,2],[0,2],[0,1],[-1,0],[0,1]],[[276,600],[0,1],[-1,2],[0,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,1],[0,1],[1,1],[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,0],[0,1],[0,1],[-1,0],[1,0],[1,0],[0,1],[1,0],[0,1],[-1,0],[1,0],[0,1],[0,1],[1,0],[0,-1],[0,1],[0,1],[0,1],[1,1],[-1,-1],[1,-1],[0,1],[0,2],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[0,1],[0,-1],[0,-1],[0,1],[0,1],[1,1],[0,1],[1,0],[0,1],[0,1],[-1,0],[1,0],[0,-1],[0,1],[0,-1],[1,1],[1,0],[0,1],[1,0],[0,1],[-1,0],[1,0],[-1,-1],[0,1],[0,-1],[-1,0],[0,1],[-1,1],[1,-1],[1,0],[0,1],[0,1],[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],[0,1],[0,-1],[-1,0],[1,0],[-1,-1],[0,1],[0,1],[-1,0],[-1,0],[0,1],[0,1],[1,0],[-1,0],[0,-1],[1,0],[0,-1],[0,1],[1,0],[0,1],[0,-1],[1,0],[0,1],[0,-1],[0,1],[0,1],[-1,1],[1,0],[0,1],[0,-1],[0,-2],[0,-1],[0,-1],[1,-1]],[[275,600],[1,0]],[[275,599],[0,2],[0,1],[0,-1],[0,-1]],[[276,598],[-1,1]],[[276,595],[0,1],[0,2]],[[277,590],[0,2],[0,1],[0,1],[-1,0],[0,1]],[[277,576],[0,2],[0,1],[0,1],[1,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1]],[[277,576],[0,-1],[0,1]],[[276,575],[0,1],[1,0]],[[263,609],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[0,-1],[0,-1],[1,-1],[0,-1],[1,-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,-1],[1,-1],[0,1],[0,1],[0,1],[1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[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,-1],[1,-1],[0,-2],[0,-1],[1,0],[0,-1],[-1,0],[0,1],[0,-1],[0,-1],[1,0],[1,0]],[[263,609],[0,-1],[-1,0],[0,1],[0,1]],[[309,713],[1,0]],[[310,714],[-1,-1]],[[310,713],[0,1]],[[229,585],[0,1],[0,1],[0,1],[0,1],[0,1]],[[230,582],[0,1],[0,1],[0,1],[-1,0]],[[229,585],[1,-1],[0,-1],[0,-1]],[[229,593],[0,-1],[0,-1],[0,-1]],[[230,595],[0,-1],[-1,-1]],[[229,592],[1,1],[0,1],[0,1]],[[229,590],[0,1],[0,1]],[[231,597],[-1,0],[0,-2]],[[230,595],[1,1],[0,1]],[[244,607],[1,0],[-1,1],[0,-1]],[[257,613],[1,0],[1,0],[-1,0],[-1,0]],[[211,748],[0,-2],[0,-2],[0,-3],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[0,1],[0,-1],[0,1],[1,0],[0,-1],[0,1],[0,-1],[1,0],[1,0],[1,0],[0,-1],[0,1],[1,0],[0,-1],[0,-1],[-1,0],[0,-2],[-1,0],[0,-2],[1,0],[0,-1],[1,0],[0,-2],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[1,0],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,1],[0,-1],[-1,-2],[-1,0],[0,-1],[0,-1],[-1,0],[0,-3],[0,-3],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-3],[0,-2],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-2],[-1,0],[-1,0],[0,-3],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[0,-3],[-1,0],[1,-3],[0,-4],[-2,0],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-3],[0,-1],[0,-3],[0,-1],[0,-2],[0,-3],[0,-2],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-2],[0,-3],[0,-3],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[0,-4],[0,-2],[0,-1],[0,-2]],[[235,750],[0,-2],[-5,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-2,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0]],[[236,748],[0,1],[0,1],[0,1],[-1,0],[0,-1]],[[237,747],[0,1],[-1,0]],[[238,746],[-1,0],[0,1]],[[239,746],[-1,0]],[[240,746],[0,-1],[-1,0],[0,1]],[[242,745],[-1,1],[-1,0]],[[243,744],[-1,0],[0,1]],[[246,742],[0,-1],[0,1]],[[247,742],[0,1],[-1,-1]],[[249,742],[-2,0]],[[250,732],[-1,0],[0,-1],[-1,0],[0,1],[0,-1],[0,1],[0,-1],[-1,0],[0,1],[0,1],[1,0],[-1,0],[0,1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,1],[0,-1],[0,1],[1,0],[-1,0],[1,0],[0,1],[1,0],[0,1],[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],[-1,0],[-1,1]],[[257,721],[0,1],[0,1]],[[257,718],[-1,0],[0,-1],[0,-1],[-1,0],[0,1],[0,-1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0]],[[257,718],[0,1],[0,-1]],[[258,696],[0,-1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[1,0],[0,1],[-1,0],[1,0],[-1,0],[1,0],[-1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[-1,0],[0,1],[1,0],[0,1],[0,1],[0,1]],[[262,611],[0,-1],[0,1],[0,-1],[1,0],[0,-1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[-1,0],[1,0],[-1,0],[1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[1,0],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[-1,0],[0,1],[1,0],[0,1],[-1,0],[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],[0,1],[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,1],[0,1],[-1,0],[1,0],[-1,0],[0,1],[0,1],[1,0],[0,1],[-1,0],[0,1],[0,1],[0,-1],[-1,0],[0,1],[0,1],[0,-1],[-1,0],[0,1],[-1,0],[0,1],[0,-1],[0,1],[0,-1],[0,1],[0,-1],[0,1],[0,1],[0,1],[0,1],[-1,0],[1,0],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0]],[[259,613],[0,1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,1],[0,1],[1,-1],[-1,0],[1,0],[0,-1]],[[258,613],[-1,0],[1,0],[1,0]],[[257,613],[0,1],[1,0],[0,-1]],[[257,613],[-1,0],[0,-1],[1,1]],[[257,613],[0,1],[0,-1]],[[245,607],[1,0],[0,-1],[1,-1],[-1,0],[0,1],[0,-1],[1,-1],[0,1],[0,-1],[1,0],[0,1],[1,0],[0,-1],[0,1],[0,1],[0,1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[-1,0],[0,-1],[1,1],[0,-1],[0,1],[0,1],[0,1],[0,-1],[-1,1],[-1,1],[0,1],[1,0],[0,1],[0,2],[0,-1],[0,-1],[-1,0],[0,1],[0,1],[1,0],[-1,0],[-1,0],[0,-1],[0,1],[-1,0],[0,1],[1,1],[1,0],[0,-1],[1,-1],[0,1],[0,1],[1,0],[1,0],[1,0],[1,0],[0,1],[0,1],[0,-1],[0,-1],[1,0],[0,-1],[-1,0],[1,0],[1,1]],[[244,608],[0,1],[1,0],[0,-1],[0,-1]],[[244,607],[0,1]],[[236,606],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[0,-1],[0,-1],[0,1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0]],[[236,606],[0,1],[0,1],[0,1],[1,0],[0,-1],[-1,-1],[1,0],[-1,-1]],[[235,604],[1,1],[0,1]],[[232,599],[1,1],[0,1],[1,0],[-1,0],[0,-1],[0,1],[1,0],[1,1],[0,1],[0,1]],[[232,599],[0,1],[-1,0],[0,1],[1,-1],[0,1],[1,0],[0,-1],[-1,0],[1,0],[0,1],[0,-1],[-1,0],[0,-1]],[[231,598],[1,1]],[[231,598],[0,1],[0,-1]],[[231,597],[0,1]],[[230,597],[1,0]],[[230,597],[0,-1],[0,1]],[[230,595],[0,1],[0,1]],[[229,593],[0,1],[0,1],[1,0]],[[229,591],[0,1],[0,1]],[[229,590],[-1,1],[0,1],[0,-1],[1,0]],[[229,590],[0,1],[0,-1]],[[230,582],[-1,0],[0,1],[0,1],[0,1]],[[222,597],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-2],[1,-1],[0,-1],[0,-2],[1,-1],[1,0],[0,-1],[1,-1],[1,0],[1,-1],[1,0],[0,1]],[[221,598],[0,-1],[1,0]],[[212,604],[1,-1],[0,1],[1,1],[0,1],[0,1],[0,2],[1,0],[0,1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1]],[[211,605],[1,0],[0,-1]],[[211,606],[0,-1]],[[210,607],[0,-1],[1,0]],[[209,613],[0,-1],[0,-1],[0,-1],[0,-2],[1,-1]],[[208,614],[0,-1],[1,0]],[[208,615],[0,-1]],[[257,719],[0,-1],[0,1]],[[257,721],[0,-1],[0,-1]],[[258,722],[0,-1],[-1,0]],[[258,722],[0,-1],[0,1]],[[257,719],[1,0],[0,1],[0,1],[0,-1],[0,1],[0,1]],[[335,152],[0,-1],[0,-1],[0,-1],[0,-1]],[[335,156],[1,0],[0,-1],[0,-1],[-1,0]],[[335,146],[1,0],[0,-1],[0,-1],[1,0],[1,0],[1,-1],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,1],[1,0],[0,-1],[1,0],[1,0],[0,1],[1,0],[0,1],[0,1],[0,-1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[1,1]],[[657,719],[-1,0],[0,-1],[-1,0],[0,-2],[0,-2],[0,-4],[0,-2],[0,-2],[0,-2],[0,-2],[0,-2],[0,-2],[0,-1],[0,-2],[0,-3],[0,-1]],[[301,479],[-1,0],[0,-1],[-1,-1],[0,-2],[-1,-1],[0,-1],[0,-1],[-1,-2],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-2],[0,1],[1,0],[0,-1],[0,-2],[1,-2],[0,-1],[0,-1],[0,-1],[1,-1],[-1,0],[0,-1],[0,-2],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,1],[1,0],[0,-1],[1,0],[0,1],[1,0],[1,0],[0,-1],[1,0],[1,-3],[1,-3],[0,1],[1,0],[1,0],[0,-1],[0,1],[1,0],[1,0],[0,1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[1,0],[-1,0],[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,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[1,-1],[0,-1],[1,-1],[-1,0],[1,-1],[0,-1],[0,-3]],[[300,478],[1,0],[0,1]],[[330,460],[0,1],[1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[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],[0,-1],[0,-1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,-1],[-1,-1],[0,1],[-1,0],[1,0],[0,-1],[0,1],[1,0],[-1,1],[0,1],[0,-1],[0,1],[0,1],[0,-1],[0,1],[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],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,-1],[0,1],[-2,0],[0,-1],[-1,0],[-1,0],[0,-1],[0,1],[-1,0],[0,1],[0,1],[0,2],[-1,1],[0,1],[-1,1],[-1,0],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,-1],[-1,-1],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[-1,0],[0,1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[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,0],[0,-1],[-1,0],[0,1],[0,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],[0,1],[0,1],[0,1]],[[330,459],[0,1]],[[330,459],[0,1],[0,-1]],[[330,458],[0,1]],[[330,457],[0,1]],[[330,456],[0,1]],[[329,456],[1,0]],[[329,455],[-1,1],[1,0]],[[330,455],[-1,0]],[[330,456],[0,-1]],[[331,456],[-1,0]],[[333,456],[-1,0],[0,-1],[-1,1]],[[331,432],[-1,1],[0,2],[-1,2],[0,1],[1,1],[0,1],[-1,1],[1,1],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[-1,0],[0,-1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1]],[[321,473],[1,-1],[0,1],[0,1],[0,1],[0,-1],[0,-1],[-1,0],[0,1],[0,-1]],[[329,456],[0,-1],[1,0]],[[331,456],[0,1],[-1,-1]],[[798,547],[1,0],[0,1],[-1,-1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,-1],[0,1],[-1,0],[0,1],[-1,1],[-1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,1],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[0,1],[-1,0],[0,-1],[0,1],[-1,-1],[0,-1],[-1,1],[0,1],[-1,0],[0,-1],[0,-1],[-1,-1]],[[797,546],[1,0],[0,1]],[[797,544],[0,1],[0,1]],[[796,543],[0,1],[1,0]],[[796,543],[0,1],[0,-1]],[[796,543],[-1,0],[1,0]],[[795,469],[1,0],[0,-1],[0,1],[0,-1],[0,-1],[1,1],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[1,1],[1,1],[0,1],[0,1],[1,0],[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,0],[0,1],[-1,0],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,-1],[0,2],[0,1],[0,1],[-1,1],[0,1],[1,0],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,-1],[0,1],[-1,0],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,-1],[0,1],[0,1],[-1,0],[0,1],[-1,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],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,-1],[1,0],[0,1],[0,1],[1,0],[-1,1],[1,-1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,-1],[1,0]],[[795,469],[0,1],[0,-1]],[[795,468],[0,1]],[[789,468],[0,-1],[0,-1],[1,0],[0,-1],[1,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[-1,0],[1,0],[0,-1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[-1,1],[0,1],[0,1],[0,1],[-1,0],[1,0],[0,-1],[0,-1],[1,-1],[0,-1],[0,1],[1,0],[0,1],[-1,0],[0,1],[0,1],[-1,1],[1,0],[0,-1],[0,-1],[1,-1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,-1],[0,-1],[1,0],[0,-1],[0,1],[0,1],[-1,1],[1,0],[0,1]],[[787,468],[0,-1],[0,-1],[1,-1],[0,1],[0,1],[0,1]],[[788,468],[-1,0]],[[319,521],[1,0],[0,1],[-1,0],[0,-1]],[[597,623]],[[452,547],[0,-2],[0,-2],[0,1],[0,1],[0,1],[0,1],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[0,2],[0,2],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[1,1],[0,1],[1,0],[1,1],[0,3],[0,1],[0,3],[0,3],[0,1],[0,2],[0,1],[0,2],[0,1],[0,2],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[2,0],[0,1],[0,2],[0,3],[0,1],[0,2]],[[463,593],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-2],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[-1,0],[0,-1],[0,-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],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-2],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1]],[[618,511],[0,-2],[0,-1],[0,-1],[0,-1],[-1,0],[1,0],[0,-1],[0,-1],[0,-1],[-1,0]],[[643,530],[-2,-1],[-3,-2],[-4,-2],[-2,-6],[-2,-5],[-2,-8],[0,1],[0,6],[-3,3],[-1,1],[-2,2],[-1,-1],[-1,0],[0,1],[-1,0],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1]],[[617,503],[1,0],[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,-2],[0,-1],[0,-1],[1,-2],[0,-1],[0,1],[1,-1],[1,0],[0,1],[1,0],[1,0],[0,1],[0,-1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[1,1],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[1,0],[1,1],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0],[1,1],[1,1],[1,1],[1,0],[1,1],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1]],[[647,483],[1,-1],[1,0],[1,1],[0,1],[-1,0],[-1,0],[-1,0],[0,-1]],[[535,360],[0,1],[0,-1]],[[554,343],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[1,0],[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],[1,0],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[1,3],[0,1],[0,1],[0,1],[1,0],[1,0],[0,1],[0,-1],[1,0],[0,1],[1,1],[0,-1],[0,-1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[1,-1],[1,-1],[1,1],[0,1],[1,0],[0,1],[0,-1],[1,0],[0,1],[0,1],[0,1],[-1,0],[-1,1],[0,1],[-1,1],[0,1],[0,1],[1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[1,0],[0,1],[0,1],[-1,2],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[1,1],[0,1],[0,1],[0,1],[0,-1],[1,0],[0,1],[0,-1],[1,1],[1,0],[0,1],[-1,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,-1],[-1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,-1],[0,1],[0,1],[-1,0],[-1,0],[0,1],[0,1]],[[534,350],[0,1],[1,1],[0,-1]],[[533,352],[0,-1],[0,-1]],[[562,423],[-1,0],[1,0]],[[581,383],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[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,1],[-1,1],[0,1],[1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[1,0],[0,1],[0,1]],[[566,311],[1,0],[0,1],[1,0],[1,0],[0,1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,1],[0,2],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,1],[0,-1],[1,0],[1,-1],[0,-1],[0,-1],[0,-1],[0,1],[1,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,1],[1,0],[0,1],[0,-1],[0,-1],[1,0],[0,2],[0,3],[0,2],[0,2],[-1,0],[0,-1],[0,-1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[-1,1],[0,2],[0,1],[0,1],[0,1],[1,1],[-1,0],[0,2],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[1,1],[1,0],[1,0],[0,1],[1,0]],[[565,315],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[-1,0]],[[566,311],[-1,-2],[0,-1],[0,-3],[1,0],[0,-1],[-1,-1],[0,-2],[0,-1],[-1,0],[-1,0],[-2,0],[-1,0],[0,-3],[0,-1],[0,-1],[0,-2],[0,-1],[0,-3],[0,-2],[0,-1],[0,-4],[0,-1],[0,-4],[0,-1],[0,-1],[0,-1],[1,0],[0,-2],[1,-1],[0,-1],[1,-2],[0,-1],[1,-1]],[[569,264],[1,1],[0,-1],[1,-1],[0,1],[1,0],[0,-1],[1,0],[0,1],[1,0],[0,1],[1,1],[0,1],[0,1],[0,1],[1,1],[0,1],[1,0],[0,1],[0,1],[1,0],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0],[1,0],[1,0]]]} \ No newline at end of file diff --git a/make.js b/make.js index dbae634..70b81f8 100644 --- a/make.js +++ b/make.js @@ -24,7 +24,6 @@ var shell = require('shelljs/make'), './src/kepler.js', './src/moon.js', './src/svg.js', - './src/timezones.js', './src/datetimepicker.js', './lib/d3.geo.zoom.js', './lib/d3-queue.js' diff --git a/package-lock.json b/package-lock.json index ba8cd03..08e63b1 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "d3-celestial", - "version": "0.7.15", + "version": "0.7.16", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index 4b5b943..86b24ad 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "d3-celestial", - "version": "0.7.15", + "version": "0.7.16", "description": "A star map with D3.js", "main": "celestial.js", "directories": { diff --git a/src/celestial.js b/src/celestial.js index 2308213..b97b892 100644 --- a/src/celestial.js +++ b/src/celestial.js @@ -1,6 +1,6 @@ /* global module, require, settings, bvcolor, projections, projectionTween, poles, eulerAngles, euler, getAngles, transformDeg, getData, getPlanets, getPlanet, listConstellations, getConstellationList, getMwbackground, getGridValues, Canvas, halfπ, $, px, Round, has, hasCallback, isArray, isNumber, arrayfy, form, geo, fldEnable, setCenter, interpolateAngle, formats */ var Celestial = { - version: '0.7.15', + version: '0.7.16', container: null, data: [] }; @@ -576,7 +576,7 @@ Celestial.display = function(config) { var dt = Celestial.date(), o = Celestial.origin(dt).spherical(); container.selectAll(".planet").each(function(d) { - var id = d.id(), r = 6, + var id = d.id(), r = 12, p = d(dt).equatorial(o), pos = transformDeg(p.ephemeris.pos, euler[cfg.transform]); //transform; if (clip(pos)) { @@ -585,15 +585,14 @@ Celestial.display = function(config) { if (cfg.planets.symbolType === "letter") { setTextStyle(cfg.planets.symbolStyle); context.fillStyle = sym.fill; - context.fillText(sym.letter, pt[0], pt[1]); + context.fillText(sym.letter, pt[0], pt[1]); } else if (id === "lun") { - Canvas.symbol().type("crescent").size(144).age(p.ephemeris.age).position(pt)(context); + if (has(sym, "size") && isNumber(sym.size)) r = sym.size; + Canvas.symbol().type("crescent").size(r*r).age(p.ephemeris.age).position(pt)(context); } else if (cfg.planets.symbolType === "disk") { - r = planetSize(p.ephemeris); + r = has(sym, "size") && isNumber(sym.size) ? sym.size : planetSize(p.ephemeris); context.fillStyle = sym.fill; - context.beginPath(); - context.arc(pt[0], pt[1], r, 0, 2 * Math.PI); - context.closePath(); + Canvas.symbol().type("circle").size(r*r).position(pt)(context); context.fill(); } else if (cfg.planets.symbolType === "symbol") { setTextStyle(cfg.planets.symbolStyle); @@ -606,7 +605,7 @@ Celestial.display = function(config) { setTextStyle(cfg.planets.nameStyle); //context.direction = "ltr" || "rtl" ar il ir context.fillStyle = sym.fill; - context.fillText(name, pt[0] - r, pt[1] + r); + context.fillText(name, pt[0] - r/2, pt[1] + r/2); } } }); diff --git a/src/config.js b/src/config.js index 60b5c7c..a1c95b6 100644 --- a/src/config.js +++ b/src/config.js @@ -132,11 +132,11 @@ var settings = { which: ["sol", "mer", "ven", "ter", "lun", "mar", "jup", "sat", "ura", "nep", "cer", "plu"], // Symbols as unicode codepoints, letter abbreviations and colors to be displayed symbols: { - "sol": {symbol: "\u2609", letter:"Su", fill: "#ffff00"}, + "sol": {symbol: "\u2609", letter:"Su", fill: "#ffff00", size: 12}, "mer": {symbol: "\u263f", letter:"Me", fill: "#cccccc"}, "ven": {symbol: "\u2640", letter:"V", fill: "#eeeecc"}, "ter": {symbol: "\u2295", letter:"T", fill: "#00ccff"}, - "lun": {symbol: "\u25cf", letter:"L", fill: "#ffffff"}, + "lun": {symbol: "\u25cf", letter:"L", fill: "#ffffff", size: 12}, "mar": {symbol: "\u2642", letter:"Ma", fill: "#ff6600"}, "cer": {symbol: "\u26b3", letter:"C", fill: "#cccccc"}, "ves": {symbol: "\u26b6", letter:"Ma", fill: "#cccccc"}, diff --git a/src/form.js b/src/form.js index 378a3d5..0874aa9 100644 --- a/src/form.js +++ b/src/form.js @@ -145,9 +145,6 @@ function form(cfg) { col.append("br"); -// col.append("label").attr("for", "dsos-names").html("Show names"); -// col.append("input").attr("type", "checkbox").attr("id", "dsos-names").property("checked", config.dsos.names).on("change", apply); - names = formats.dsonames[config.culture] || formats.dsonames.iau; for (fld in names) { @@ -170,10 +167,7 @@ function form(cfg) { col.append("label").attr("for", "dsos-" + fld).html("names"); col.append("input").attr("type", "checkbox").attr("id", "dsos-" + fld).property("checked", config.dsos[fld]).on("change", apply); } - -// col.append("label").attr("for", "dsos-desig").html("or designations"); -// col.append("input").attr("type", "checkbox").attr("id", "dsos-desig").property("checked", config.dsos.desig).on("change", apply); - + col.append("label").attr("for", "dsos-nameLimit").html("down to mag"); col.append("input").attr("type", "number").attr("id", "dsos-nameLimit").attr("title", "DSO name display limit (magnitude)").attr("value", config.dsos.nameLimit).attr("max", "6").attr("min", "0").attr("step", "0.1").on("change", apply); col.append("br"); @@ -221,14 +215,6 @@ function form(cfg) { col.append("input").attr("type", "checkbox").attr("id", "constellations-" + fld).attr("class", "advanced").property("checked", config.constellations[fld]).on("change", apply); } } - - /* - col.append("label").attr("for", "constellations-names").html("Show names"); - col.append("input").attr("type", "checkbox").attr("id", "constellations-names").property("checked", config.constellations.names).on("change", apply); - - col.append("label").attr("for", "constellations-desig").html("abbreviated"); - col.append("input").attr("type", "checkbox").attr("id", "constellations-desig").property("checked", config.constellations.desig).on("change", apply); - */ col.append("label").attr("for", "constellations-lines").html(" lines"); col.append("input").attr("type", "checkbox").attr("id", "constellations-lines").property("checked", config.constellations.lines).on("change", apply); @@ -699,7 +685,7 @@ function setLimits() { res.d = parseFloat(t[t.length-1]); } - if (res.d != 6) { + if (res.d !== 6) { $("dsos-limit").max = res.d; $("dsos-nameLimit").max = res.d; } diff --git a/src/location.js b/src/location.js index 6154eb8..683b69a 100644 --- a/src/location.js +++ b/src/location.js @@ -1,22 +1,21 @@ -/* global Celestial, settings, horizontal, datetimepicker, timezones, config, formats, $, pad, testNumber, isArray, isNumber, isValidDate, showAdvanced, enable, Round, has, hasParent */ +/* global Celestial, settings, horizontal, datetimepicker, config, formats, $, pad, testNumber, isArray, isNumber, isValidDate, showAdvanced, enable, Round, has, hasParent */ function geo(cfg) { var dtFormat = d3.time.format("%Y-%m-%d %H:%M:%S"), zenith = [0,0], geopos = [0,0], date = new Date(), - zone = date.getTimezoneOffset(), + localZone = date.getTimezoneOffset(), + timeZone = localZone, config = settings.set(cfg), frm = d3.select("#celestial-form form").insert("div", "div#general").attr("id", "loc"); var dtpick = new datetimepicker(config, function(date, tz) { $("datetime").value = dateFormat(date, tz); - zone = tz; + timeZone = tz; go(); }); - //var tzone = timezones(); - if (has(config, "geopos") && config.geopos !== null && config.geopos.length === 2) geopos = config.geopos; var col = frm.append("div").attr("class", "col").attr("id", "location").style("display", "none"); //Latitude & longitude fields @@ -37,18 +36,18 @@ function geo(cfg) { col.append("label").attr("title", "Local date/time").attr("for", "datetime").html(" Date/time"); col.append("input").attr("type", "button").attr("id", "day-left").attr("title", "One day back").on("click", function () { date.setDate(date.getDate() - 1); - $("datetime").value = dateFormat(date, zone); + $("datetime").value = dateFormat(date, timeZone); go(); }); - col.append("input").attr("type", "text").attr("id", "datetime").attr("title", "Date and time").attr("value", dateFormat(date, zone)) + col.append("input").attr("type", "text").attr("id", "datetime").attr("title", "Date and time").attr("value", dateFormat(date, timeZone)) .on("click", showpick, true).on("input", function () { - this.value = dateFormat(date, zone); + this.value = dateFormat(date, timeZone); if (!dtpick.isVisible()) showpick(); }); col.append("div").attr("id", "datepick").on("click", showpick); col.append("input").attr("type", "button").attr("id", "day-right").attr("title", "One day forward").on("click", function () { date.setDate(date.getDate() + 1); - $("datetime").value = dateFormat(date, zone); + $("datetime").value = dateFormat(date, timeZone); go(); }); //Now -button sets current time & date of device @@ -105,7 +104,7 @@ function geo(cfg) { function now() { date.setTime(Date.now()); - $("datetime").value = dateFormat(date, zone); + $("datetime").value = dateFormat(date, timeZone); go(); } @@ -168,13 +167,16 @@ function geo(cfg) { //Celestial.apply(config); if (!isNaN(lon) && !isNaN(lat)) { - //if (lat !== geopos[0] || lon !== geopos[1]) tz = Celestial.getTimezone([lat, lon]); - if (!tz) tz = date.getTimezoneOffset(); - else $("datetime").value = dateFormat(date, tz); + if (lat !== geopos[0] || lon !== geopos[1]) { + geopos = [lat, lon]; + setPosition([lat, lon]); + return; + } + //if (!tz) tz = date.getTimezoneOffset(); + $("datetime").value = dateFormat(date, timeZone); - var dtc = new Date(date.valueOf() + (zone - tz) * 60000); + var dtc = new Date(date.valueOf() + (localZone - timeZone) * 60000); - geopos = [lat, lon]; zenith = Celestial.getPoint(horizontal.inverse(dtc, [90, 0], geopos), config.transform); zenith[2] = 0; if (config.follow === "zenith") { @@ -185,61 +187,72 @@ function geo(cfg) { } } - Celestial.getPosition = function (p) { - - }; + + function setPosition(p) { + if (!p) return; + var url = "http://api.timezonedb.com/v2.1/get-time-zone?key=AEFXZPQ3FDPF&format=json&by=position"; + url += "&lat=" + p[0] + "&lng=" + p[1]; + url += "&time=" + Math.floor(date.getTime() / 1000); + + d3.json(url, function(error, json) { + if (error) return console.warn(error); + timeZone = json.gmtOffset / 60; + go(); + }); + } Celestial.dateFormat = dateFormat; Celestial.date = function (dt, tz) { if (!dt) return date; - zone = tz || zone; + timeZone = tz || timeZone; Object.assign(config, settings.set()); if (dtpick.isVisible()) dtpick.hide(); date.setTime(dt.valueOf()); - $("datetime").value = dateFormat(dt, zone); + $("datetime").value = dateFormat(dt, timeZone); go(); }; Celestial.timezone = function (tz) { - if (!tz) return zone; - zone = tz || zone; + if (!tz) return timeZone; + timeZone = tz || timeZone; Object.assign(config, settings.set()); if (dtpick.isVisible()) dtpick.hide(); - $("datetime").value = dateFormat(date, zone); + $("datetime").value = dateFormat(date, timeZone); go(); }; Celestial.position = function () { return geopos; }; Celestial.location = function (loc) { if (!loc || loc.length < 2) return geopos; - if (isValidLocation(config.location)) { - geopos = config.location.slice(); + if (isValidLocation(loc)) { + geopos = loc.slice(); $("lat").value = geopos[0]; $("lon").value = geopos[1]; - go(); + setPosition(geopos); } }; //{"date":dt, "location":loc, "timezone":tz} Celestial.skyview = function (cfg) { - if (!cfg) return {"date": date, "location": geopos, "timezone": zone}; + if (!cfg) return {"date": date, "location": geopos, "timezone": timeZone}; var valid = false; if (dtpick.isVisible()) dtpick.hide(); - if (has(cfg, "date") && isValidDate(cfg.date)) { - date.setTime(cfg.date.valueOf()); - $("datetime").value = dateFormat(cfg.date, zone); + if (has(cfg, "timezone") && isNumber(cfg.timezone) && Math.abs(cfg.timezone) <= 14) { + timeZone = cfg.timezone; valid = true; } - if (has(cfg, "timezone") && isNumber(cfg.timezone) && Math.abs(cfg.timezone) <= 14) { - zone = cfg.timezone; + if (has(cfg, "date") && isValidDate(cfg.date)) { + date.setTime(cfg.date.valueOf()); + $("datetime").value = dateFormat(cfg.date, timeZone); valid = true; } if (has(cfg, "date") && isValidLocation(cfg.location)) { geopos = cfg.location.slice(); $("lat").value = geopos[0]; $("lon").value = geopos[1]; - valid = true; + setPosition(geopos); + return; } //Celestial.updateForm(); - if (valid === false) return {"date": date, "location": geopos, "timezone": zone}; + if (valid === false) return {"date": date, "location": geopos, "timezone": timeZone}; if (config.follow === "zenith") go(); else Celestial.redraw(); };