Skip to content

Instantly share code, notes, and snippets.

@gabrielflorit
Last active July 10, 2017 17:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gabrielflorit/cacdbf409710d7df2457d3a4d007d0db to your computer and use it in GitHub Desktop.
Save gabrielflorit/cacdbf409710d7df2457d3a4d007d0db to your computer and use it in GitHub Desktop.
Line interpolation with Canvas
license: mit
height: 500
border: no
{
"env": {
"browser": true,
"es6": true
},
"extends": "eslint:recommended",
"parserOptions": {
"sourceType": "module",
"ecmaFeatures": {
"experimentalObjectRestSpread": true
}
},
"rules": {
"no-console": 0,
"indent": [
"error",
2
],
"linebreak-style": [
"error",
"unix"
],
"quotes": [
"error",
"single"
],
"semi": [
"error",
"never"
]
},
"globals": {
"d3": true,
"topojson": true,
"_": true,
"turf": true,
"_points": true,
"_addresses": true,
"_world": true
}
}
node_modules
output

This is an experiment to see what's the most performant way of animating hundreds of lines over time.

This one uses canvas to draw the lines. Every tick, the pre-projected lines are sliced by a given pct, and then drawn. This approach is quite slow, and the bottleneck is the thousands of context.lineTo / context.moveTo canvas calls, not the line interpolation.

Use the slider to manually adjust the line lengths.

Also see Line interpolation with SVG

Made with blockup

Display the source blob
Display the rendered blob
Raw
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
// https://d3js.org Version 4.9.1. Copyright 2017 Mike Bostock.
(function(t,n){"object"==typeof exports&&"undefined"!=typeof module?n(exports):"function"==typeof define&&define.amd?define(["exports"],n):n(t.d3=t.d3||{})})(this,function(t){"use strict";function n(t){return function(n,e){return js(t(n),e)}}function e(t,n){return[t,n]}function r(t,n,e){var r=(n-t)/Math.max(0,e),i=Math.floor(Math.log(r)/Math.LN10),o=r/Math.pow(10,i);return i>=0?(o>=sf?10:o>=ff?5:o>=lf?2:1)*Math.pow(10,i):-Math.pow(10,-i)/(o>=sf?10:o>=ff?5:o>=lf?2:1)}function i(t,n,e){var r=Math.abs(n-t)/Math.max(0,e),i=Math.pow(10,Math.floor(Math.log(r)/Math.LN10)),o=r/i;return o>=sf?i*=10:o>=ff?i*=5:o>=lf&&(i*=2),n<t?-i:i}function o(t){return t.length}function u(t){return"translate("+(t+.5)+",0)"}function a(t){return"translate(0,"+(t+.5)+")"}function c(t){var n=Math.max(0,t.bandwidth()-1)/2;return t.round()&&(n=Math.round(n)),function(e){return t(e)+n}}function s(){return!this.__axis}function f(t,n){function e(e){var u=null==i?n.ticks?n.ticks.apply(n,r):n.domain():i,a=null==o?n.tickFormat?n.tickFormat.apply(n,r):Cf:o,_=Math.max(f,0)+h,y=n.range(),g=y[0]+.5,m=y[y.length-1]+.5,x=(n.bandwidth?c:Cf)(n.copy()),b=e.selection?e.selection():e,w=b.selectAll(".domain").data([null]),M=b.selectAll(".tick").data(u,n).order(),T=M.exit(),k=M.enter().append("g").attr("class","tick"),N=M.select("line"),S=M.select("text");w=w.merge(w.enter().insert("path",".tick").attr("class","domain").attr("stroke","#000")),M=M.merge(k),N=N.merge(k.append("line").attr("stroke","#000").attr(d+"2",p*f)),S=S.merge(k.append("text").attr("fill","#000").attr(d,p*_).attr("dy",t===zf?"0em":t===Lf?"0.71em":"0.32em")),e!==b&&(w=w.transition(e),M=M.transition(e),N=N.transition(e),S=S.transition(e),T=T.transition(e).attr("opacity",qf).attr("transform",function(t){return isFinite(t=x(t))?v(t):this.getAttribute("transform")}),k.attr("opacity",qf).attr("transform",function(t){var n=this.parentNode.__axis;return v(n&&isFinite(n=n(t))?n:x(t))})),T.remove(),w.attr("d",t===Rf||t==Pf?"M"+p*l+","+g+"H0.5V"+m+"H"+p*l:"M"+g+","+p*l+"V0.5H"+m+"V"+p*l),M.attr("opacity",1).attr("transform",function(t){return v(x(t))}),N.attr(d+"2",p*f),S.attr(d,p*_).text(a),b.filter(s).attr("fill","none").attr("font-size",10).attr("font-family","sans-serif").attr("text-anchor",t===Pf?"start":t===Rf?"end":"middle"),b.each(function(){this.__axis=x})}var r=[],i=null,o=null,f=6,l=6,h=3,p=t===zf||t===Rf?-1:1,d=t===Rf||t===Pf?"x":"y",v=t===zf||t===Lf?u:a;return e.scale=function(t){return arguments.length?(n=t,e):n},e.ticks=function(){return r=Af.call(arguments),e},e.tickArguments=function(t){return arguments.length?(r=null==t?[]:Af.call(t),e):r.slice()},e.tickValues=function(t){return arguments.length?(i=null==t?null:Af.call(t),e):i&&i.slice()},e.tickFormat=function(t){return arguments.length?(o=t,e):o},e.tickSize=function(t){return arguments.length?(f=l=+t,e):f},e.tickSizeInner=function(t){return arguments.length?(f=+t,e):f},e.tickSizeOuter=function(t){return arguments.length?(l=+t,e):l},e.tickPadding=function(t){return arguments.length?(h=+t,e):h},e}function l(t){return f(zf,t)}function h(t){return f(Pf,t)}function p(t){return f(Lf,t)}function d(t){return f(Rf,t)}function v(){for(var t,n=0,e=arguments.length,r={};n<e;++n){if(!(t=arguments[n]+"")||t in r)throw new Error("illegal type: "+t);r[t]=[]}return new _(r)}function _(t){this._=t}function y(t,n){return t.trim().split(/^|\s+/).map(function(t){var e="",r=t.indexOf(".");if(r>=0&&(e=t.slice(r+1),t=t.slice(0,r)),t&&!n.hasOwnProperty(t))throw new Error("unknown type: "+t);return{type:t,name:e}})}function g(t,n){for(var e,r=0,i=t.length;r<i;++r)if((e=t[r]).name===n)return e.value}function m(t,n,e){for(var r=0,i=t.length;r<i;++r)if(t[r].name===n){t[r]=Uf,t=t.slice(0,r).concat(t.slice(r+1));break}return null!=e&&t.push({name:n,value:e}),t}function x(t){return function(){var n=this.ownerDocument,e=this.namespaceURI;return e===Df&&n.documentElement.namespaceURI===Df?n.createElement(t):n.createElementNS(e,t)}}function b(t){return function(){return this.ownerDocument.createElementNS(t.space,t.local)}}function w(){return new M}function M(){this._="@"+(++Yf).toString(36)}function T(t,n,e){return t=k(t,n,e),function(n){var e=n.relatedTarget;e&&(e===this||8&e.compareDocumentPosition(this))||t.call(this,n)}}function k(n,e,r){return function(i){var o=t.event;t.event=i;try{n.call(this,this.__data__,e,r)}finally{t.event=o}}}function N(t){return t.trim().split(/^|\s+/).map(function(t){var n="",e=t.indexOf(".");return e>=0&&(n=t.slice(e+1),t=t.slice(0,e)),{type:t,name:n}})}function S(t){return function(){var n=this.__on;if(n){for(var e,r=0,i=-1,o=n.length;r<o;++r)e=n[r],t.type&&e.type!==t.type||e.name!==t.name?n[++i]=e:this.removeEventListener(e.type,e.listener,e.capture);++i?n.length=i:delete this.__on}}}function E(t,n,e){var r=$f.hasOwnProperty(t.type)?T:k;return function(i,o,u){var a,c=this.__on,s=r(n,o,u);if(c)for(var f=0,l=c.length;f<l;++f)if((a=c[f]).type===t.type&&a.name===t.name)return this.removeEventListener(a.type,a.listener,a.capture),this.addEventListener(a.type,a.listener=s,a.capture=e),void(a.value=n);this.addEventListener(t.type,s,e),a={type:t.type,name:t.name,value:n,listener:s,capture:e},c?c.push(a):this.__on=[a]}}function A(n,e,r,i){var o=t.event;n.sourceEvent=t.event,t.event=n;try{return e.apply(r,i)}finally{t.event=o}}function C(){}function z(){return[]}function P(t,n){this.ownerDocument=t.ownerDocument,this.namespaceURI=t.namespaceURI,this._next=null,this._parent=t,this.__data__=n}function L(t,n,e,r,i,o){for(var u,a=0,c=n.length,s=o.length;a<s;++a)(u=n[a])?(u.__data__=o[a],r[a]=u):e[a]=new P(t,o[a]);for(;a<c;++a)(u=n[a])&&(i[a]=u)}function R(t,n,e,r,i,o,u){var a,c,s,f={},l=n.length,h=o.length,p=new Array(l);for(a=0;a<l;++a)(c=n[a])&&(p[a]=s=ol+u.call(c,c.__data__,a,n),s in f?i[a]=c:f[s]=c);for(a=0;a<h;++a)s=ol+u.call(t,o[a],a,o),(c=f[s])?(r[a]=c,c.__data__=o[a],f[s]=null):e[a]=new P(t,o[a]);for(a=0;a<l;++a)(c=n[a])&&f[p[a]]===c&&(i[a]=c)}function q(t,n){return t<n?-1:t>n?1:t>=n?0:NaN}function U(t){return function(){this.removeAttribute(t)}}function D(t){return function(){this.removeAttributeNS(t.space,t.local)}}function O(t,n){return function(){this.setAttribute(t,n)}}function F(t,n){return function(){this.setAttributeNS(t.space,t.local,n)}}function I(t,n){return function(){var e=n.apply(this,arguments);null==e?this.removeAttribute(t):this.setAttribute(t,e)}}function Y(t,n){return function(){var e=n.apply(this,arguments);null==e?this.removeAttributeNS(t.space,t.local):this.setAttributeNS(t.space,t.local,e)}}function B(t){return function(){this.style.removeProperty(t)}}function H(t,n,e){return function(){this.style.setProperty(t,n,e)}}function j(t,n,e){return function(){var r=n.apply(this,arguments);null==r?this.style.removeProperty(t):this.style.setProperty(t,r,e)}}function X(t,n){return t.style.getPropertyValue(n)||gl(t).getComputedStyle(t,null).getPropertyValue(n)}function $(t){return function(){delete this[t]}}function V(t,n){return function(){this[t]=n}}function W(t,n){return function(){var e=n.apply(this,arguments);null==e?delete this[t]:this[t]=e}}function Z(t){return t.trim().split(/^|\s+/)}function G(t){return t.classList||new J(t)}function J(t){this._node=t,this._names=Z(t.getAttribute("class")||"")}function Q(t,n){for(var e=G(t),r=-1,i=n.length;++r<i;)e.add(n[r])}function K(t,n){for(var e=G(t),r=-1,i=n.length;++r<i;)e.remove(n[r])}function tt(t){return function(){Q(this,t)}}function nt(t){return function(){K(this,t)}}function et(t,n){return function(){(n.apply(this,arguments)?Q:K)(this,t)}}function rt(){this.textContent=""}function it(t){return function(){this.textContent=t}}function ot(t){return function(){var n=t.apply(this,arguments);this.textContent=null==n?"":n}}function ut(){this.innerHTML=""}function at(t){return function(){this.innerHTML=t}}function ct(t){return function(){var n=t.apply(this,arguments);this.innerHTML=null==n?"":n}}function st(){this.nextSibling&&this.parentNode.appendChild(this)}function ft(){this.previousSibling&&this.parentNode.insertBefore(this,this.parentNode.firstChild)}function lt(){return null}function ht(){var t=this.parentNode;t&&t.removeChild(this)}function pt(t,n,e){var r=gl(t),i=r.CustomEvent;"function"==typeof i?i=new i(n,e):(i=r.document.createEvent("Event"),e?(i.initEvent(n,e.bubbles,e.cancelable),i.detail=e.detail):i.initEvent(n,!1,!1)),t.dispatchEvent(i)}function dt(t,n){return function(){return pt(this,t,n)}}function vt(t,n){return function(){return pt(this,t,n.apply(this,arguments))}}function _t(t,n){this._groups=t,this._parents=n}function yt(){return new _t([[document.documentElement]],zl)}function gt(){t.event.stopImmediatePropagation()}function mt(t,n){var e=t.document.documentElement,r=Pl(t).on("dragstart.drag",null);n&&(r.on("click.drag",Ul,!0),setTimeout(function(){r.on("click.drag",null)},0)),"onselectstart"in e?r.on("selectstart.drag",null):(e.style.MozUserSelect=e.__noselect,delete e.__noselect)}function xt(t,n,e,r,i,o,u,a,c,s){this.target=t,this.type=n,this.subject=e,this.identifier=r,this.active=i,this.x=o,this.y=u,this.dx=a,this.dy=c,this._=s}function bt(){return!t.event.button}function wt(){return this.parentNode}function Mt(n){return null==n?{x:t.event.x,y:t.event.y}:n}function Tt(t,n){var e=Object.create(t.prototype);for(var r in n)e[r]=n[r];return e}function kt(){}function Nt(t){var n;return t=(t+"").trim().toLowerCase(),(n=jl.exec(t))?(n=parseInt(n[1],16),new zt(n>>8&15|n>>4&240,n>>4&15|240&n,(15&n)<<4|15&n,1)):(n=Xl.exec(t))?St(parseInt(n[1],16)):(n=$l.exec(t))?new zt(n[1],n[2],n[3],1):(n=Vl.exec(t))?new zt(255*n[1]/100,255*n[2]/100,255*n[3]/100,1):(n=Wl.exec(t))?Et(n[1],n[2],n[3],n[4]):(n=Zl.exec(t))?Et(255*n[1]/100,255*n[2]/100,255*n[3]/100,n[4]):(n=Gl.exec(t))?Pt(n[1],n[2]/100,n[3]/100,1):(n=Jl.exec(t))?Pt(n[1],n[2]/100,n[3]/100,n[4]):Ql.hasOwnProperty(t)?St(Ql[t]):"transparent"===t?new zt(NaN,NaN,NaN,0):null}function St(t){return new zt(t>>16&255,t>>8&255,255&t,1)}function Et(t,n,e,r){return r<=0&&(t=n=e=NaN),new zt(t,n,e,r)}function At(t){return t instanceof kt||(t=Nt(t)),t?(t=t.rgb(),new zt(t.r,t.g,t.b,t.opacity)):new zt}function Ct(t,n,e,r){return 1===arguments.length?At(t):new zt(t,n,e,null==r?1:r)}function zt(t,n,e,r){this.r=+t,this.g=+n,this.b=+e,this.opacity=+r}function Pt(t,n,e,r){return r<=0?t=n=e=NaN:e<=0||e>=1?t=n=NaN:n<=0&&(t=NaN),new qt(t,n,e,r)}function Lt(t){if(t instanceof qt)return new qt(t.h,t.s,t.l,t.opacity);if(t instanceof kt||(t=Nt(t)),!t)return new qt;if(t instanceof qt)return t;t=t.rgb();var n=t.r/255,e=t.g/255,r=t.b/255,i=Math.min(n,e,r),o=Math.max(n,e,r),u=NaN,a=o-i,c=(o+i)/2;return a?(u=n===o?(e-r)/a+6*(e<r):e===o?(r-n)/a+2:(n-e)/a+4,a/=c<.5?o+i:2-o-i,u*=60):a=c>0&&c<1?0:u,new qt(u,a,c,t.opacity)}function Rt(t,n,e,r){return 1===arguments.length?Lt(t):new qt(t,n,e,null==r?1:r)}function qt(t,n,e,r){this.h=+t,this.s=+n,this.l=+e,this.opacity=+r}function Ut(t,n,e){return 255*(t<60?n+(e-n)*t/60:t<180?e:t<240?n+(e-n)*(240-t)/60:n)}function Dt(t){if(t instanceof Ft)return new Ft(t.l,t.a,t.b,t.opacity);if(t instanceof $t){var n=t.h*Kl;return new Ft(t.l,Math.cos(n)*t.c,Math.sin(n)*t.c,t.opacity)}t instanceof zt||(t=At(t));var e=Ht(t.r),r=Ht(t.g),i=Ht(t.b),o=It((.4124564*e+.3575761*r+.1804375*i)/nh),u=It((.2126729*e+.7151522*r+.072175*i)/eh);return new Ft(116*u-16,500*(o-u),200*(u-It((.0193339*e+.119192*r+.9503041*i)/rh)),t.opacity)}function Ot(t,n,e,r){return 1===arguments.length?Dt(t):new Ft(t,n,e,null==r?1:r)}function Ft(t,n,e,r){this.l=+t,this.a=+n,this.b=+e,this.opacity=+r}function It(t){return t>ah?Math.pow(t,1/3):t/uh+ih}function Yt(t){return t>oh?t*t*t:uh*(t-ih)}function Bt(t){return 255*(t<=.0031308?12.92*t:1.055*Math.pow(t,1/2.4)-.055)}function Ht(t){return(t/=255)<=.04045?t/12.92:Math.pow((t+.055)/1.055,2.4)}function jt(t){if(t instanceof $t)return new $t(t.h,t.c,t.l,t.opacity);t instanceof Ft||(t=Dt(t));var n=Math.atan2(t.b,t.a)*th;return new $t(n<0?n+360:n,Math.sqrt(t.a*t.a+t.b*t.b),t.l,t.opacity)}function Xt(t,n,e,r){return 1===arguments.length?jt(t):new $t(t,n,e,null==r?1:r)}function $t(t,n,e,r){this.h=+t,this.c=+n,this.l=+e,this.opacity=+r}function Vt(t){if(t instanceof Zt)return new Zt(t.h,t.s,t.l,t.opacity);t instanceof zt||(t=At(t));var n=t.r/255,e=t.g/255,r=t.b/255,i=(vh*r+ph*n-dh*e)/(vh+ph-dh),o=r-i,u=(hh*(e-i)-fh*o)/lh,a=Math.sqrt(u*u+o*o)/(hh*i*(1-i)),c=a?Math.atan2(u,o)*th-120:NaN;return new Zt(c<0?c+360:c,a,i,t.opacity)}function Wt(t,n,e,r){return 1===arguments.length?Vt(t):new Zt(t,n,e,null==r?1:r)}function Zt(t,n,e,r){this.h=+t,this.s=+n,this.l=+e,this.opacity=+r}function Gt(t,n,e,r,i){var o=t*t,u=o*t;return((1-3*t+3*o-u)*n+(4-6*o+3*u)*e+(1+3*t+3*o-3*u)*r+u*i)/6}function Jt(t,n){return function(e){return t+e*n}}function Qt(t,n,e){return t=Math.pow(t,e),n=Math.pow(n,e)-t,e=1/e,function(r){return Math.pow(t+r*n,e)}}function Kt(t,n){var e=n-t;return e?Jt(t,e>180||e<-180?e-360*Math.round(e/360):e):Th(isNaN(t)?n:t)}function tn(t){return 1==(t=+t)?nn:function(n,e){return e-n?Qt(n,e,t):Th(isNaN(n)?e:n)}}function nn(t,n){var e=n-t;return e?Jt(t,e):Th(isNaN(t)?n:t)}function en(t){return function(n){var e,r,i=n.length,o=new Array(i),u=new Array(i),a=new Array(i);for(e=0;e<i;++e)r=Ct(n[e]),o[e]=r.r||0,u[e]=r.g||0,a[e]=r.b||0;return o=t(o),u=t(u),a=t(a),r.opacity=1,function(t){return r.r=o(t),r.g=u(t),r.b=a(t),r+""}}}function rn(t){return function(){return t}}function on(t){return function(n){return t(n)+""}}function un(t){return"none"===t?Oh:(_h||(_h=document.createElement("DIV"),yh=document.documentElement,gh=document.defaultView),_h.style.transform=t,t=gh.getComputedStyle(yh.appendChild(_h),null).getPropertyValue("transform"),yh.removeChild(_h),t=t.slice(7,-1).split(","),Fh(+t[0],+t[1],+t[2],+t[3],+t[4],+t[5]))}function an(t){return null==t?Oh:(mh||(mh=document.createElementNS("http://www.w3.org/2000/svg","g")),mh.setAttribute("transform",t),(t=mh.transform.baseVal.consolidate())?(t=t.matrix,Fh(t.a,t.b,t.c,t.d,t.e,t.f)):Oh)}function cn(t,n,e,r){function i(t){return t.length?t.pop()+" ":""}function o(t,r,i,o,u,a){if(t!==i||r!==o){var c=u.push("translate(",null,n,null,e);a.push({i:c-4,x:Ch(t,i)},{i:c-2,x:Ch(r,o)})}else(i||o)&&u.push("translate("+i+n+o+e)}function u(t,n,e,o){t!==n?(t-n>180?n+=360:n-t>180&&(t+=360),o.push({i:e.push(i(e)+"rotate(",null,r)-2,x:Ch(t,n)})):n&&e.push(i(e)+"rotate("+n+r)}function a(t,n,e,o){t!==n?o.push({i:e.push(i(e)+"skewX(",null,r)-2,x:Ch(t,n)}):n&&e.push(i(e)+"skewX("+n+r)}function c(t,n,e,r,o,u){if(t!==e||n!==r){var a=o.push(i(o)+"scale(",null,",",null,")");u.push({i:a-4,x:Ch(t,e)},{i:a-2,x:Ch(n,r)})}else 1===e&&1===r||o.push(i(o)+"scale("+e+","+r+")")}return function(n,e){var r=[],i=[];return n=t(n),e=t(e),o(n.translateX,n.translateY,e.translateX,e.translateY,r,i),u(n.rotate,e.rotate,r,i),a(n.skewX,e.skewX,r,i),c(n.scaleX,n.scaleY,e.scaleX,e.scaleY,r,i),n=e=null,function(t){for(var n,e=-1,o=i.length;++e<o;)r[(n=i[e]).i]=n.x(t);return r.join("")}}}function sn(t){return((t=Math.exp(t))+1/t)/2}function fn(t){return((t=Math.exp(t))-1/t)/2}function ln(t){return((t=Math.exp(2*t))-1)/(t+1)}function hn(t){return function(n,e){var r=t((n=Rt(n)).h,(e=Rt(e)).h),i=nn(n.s,e.s),o=nn(n.l,e.l),u=nn(n.opacity,e.opacity);return function(t){return n.h=r(t),n.s=i(t),n.l=o(t),n.opacity=u(t),n+""}}}function pn(t,n){var e=nn((t=Ot(t)).l,(n=Ot(n)).l),r=nn(t.a,n.a),i=nn(t.b,n.b),o=nn(t.opacity,n.opacity);return function(n){return t.l=e(n),t.a=r(n),t.b=i(n),t.opacity=o(n),t+""}}function dn(t){return function(n,e){var r=t((n=Xt(n)).h,(e=Xt(e)).h),i=nn(n.c,e.c),o=nn(n.l,e.l),u=nn(n.opacity,e.opacity);return function(t){return n.h=r(t),n.c=i(t),n.l=o(t),n.opacity=u(t),n+""}}}function vn(t){return function n(e){function r(n,r){var i=t((n=Wt(n)).h,(r=Wt(r)).h),o=nn(n.s,r.s),u=nn(n.l,r.l),a=nn(n.opacity,r.opacity);return function(t){return n.h=i(t),n.s=o(t),n.l=u(Math.pow(t,e)),n.opacity=a(t),n+""}}return e=+e,r.gamma=n,r}(1)}function _n(){return ep||(op(yn),ep=ip.now()+rp)}function yn(){ep=0}function gn(){this._call=this._time=this._next=null}function mn(t,n,e){var r=new gn;return r.restart(t,n,e),r}function xn(){_n(),++Jh;for(var t,n=xh;n;)(t=ep-n._time)>=0&&n._call.call(null,t),n=n._next;--Jh}function bn(){ep=(np=ip.now())+rp,Jh=Qh=0;try{xn()}finally{Jh=0,Mn(),ep=0}}function wn(){var t=ip.now(),n=t-np;n>tp&&(rp-=n,np=t)}function Mn(){for(var t,n,e=xh,r=1/0;e;)e._call?(r>e._time&&(r=e._time),t=e,e=e._next):(n=e._next,e._next=null,e=t?t._next=n:xh=n);bh=t,Tn(r)}function Tn(t){if(!Jh){Qh&&(Qh=clearTimeout(Qh));var n=t-ep;n>24?(t<1/0&&(Qh=setTimeout(bn,n)),Kh&&(Kh=clearInterval(Kh))):(Kh||(np=ep,Kh=setInterval(wn,tp)),Jh=1,op(bn))}}function kn(t,n){var e=t.__transition;if(!e||!(e=e[n])||e.state>fp)throw new Error("too late");return e}function Nn(t,n){var e=t.__transition;if(!e||!(e=e[n])||e.state>hp)throw new Error("too late");return e}function Sn(t,n){var e=t.__transition;if(!e||!(e=e[n]))throw new Error("too late");return e}function En(t,n,e){function r(t){e.state=lp,e.timer.restart(i,e.delay,e.time),e.delay<=t&&i(t-e.delay)}function i(r){var s,f,l,h;if(e.state!==lp)return u();for(s in c)if(h=c[s],h.name===e.name){if(h.state===pp)return up(i);h.state===dp?(h.state=_p,h.timer.stop(),h.on.call("interrupt",t,t.__data__,h.index,h.group),delete c[s]):+s<n&&(h.state=_p,h.timer.stop(),delete c[s])}if(up(function(){e.state===pp&&(e.state=dp,e.timer.restart(o,e.delay,e.time),o(r))}),e.state=hp,e.on.call("start",t,t.__data__,e.index,e.group),e.state===hp){for(e.state=pp,a=new Array(l=e.tween.length),s=0,f=-1;s<l;++s)(h=e.tween[s].value.call(t,t.__data__,e.index,e.group))&&(a[++f]=h);a.length=f+1}}function o(n){for(var r=n<e.duration?e.ease.call(null,n/e.duration):(e.timer.restart(u),e.state=vp,1),i=-1,o=a.length;++i<o;)a[i].call(null,r);e.state===vp&&(e.on.call("end",t,t.__data__,e.index,e.group),u())}function u(){e.state=_p,e.timer.stop(),delete c[n];for(var r in c)return;delete t.__transition}var a,c=t.__transition;c[n]=e,e.timer=mn(r,0,e.time)}function An(t,n){var e,r;return function(){var i=Nn(this,t),o=i.tween;if(o!==e){r=e=o;for(var u=0,a=r.length;u<a;++u)if(r[u].name===n){r=r.slice(),r.splice(u,1);break}}i.tween=r}}function Cn(t,n,e){var r,i;if("function"!=typeof e)throw new Error;return function(){var o=Nn(this,t),u=o.tween;if(u!==r){i=(r=u).slice();for(var a={name:n,value:e},c=0,s=i.length;c<s;++c)if(i[c].name===n){i[c]=a;break}c===s&&i.push(a)}o.tween=i}}function zn(t,n,e){var r=t._id;return t.each(function(){var t=Nn(this,r);(t.value||(t.value={}))[n]=e.apply(this,arguments)}),function(t){return Sn(t,r).value[n]}}function Pn(t){return function(){this.removeAttribute(t)}}function Ln(t){return function(){this.removeAttributeNS(t.space,t.local)}}function Rn(t,n,e){var r,i;return function(){var o=this.getAttribute(t);return o===e?null:o===r?i:i=n(r=o,e)}}function qn(t,n,e){var r,i;return function(){var o=this.getAttributeNS(t.space,t.local);return o===e?null:o===r?i:i=n(r=o,e)}}function Un(t,n,e){var r,i,o;return function(){var u,a=e(this);return null==a?void this.removeAttribute(t):(u=this.getAttribute(t),u===a?null:u===r&&a===i?o:o=n(r=u,i=a))}}function Dn(t,n,e){var r,i,o;return function(){var u,a=e(this);return null==a?void this.removeAttributeNS(t.space,t.local):(u=this.getAttributeNS(t.space,t.local),u===a?null:u===r&&a===i?o:o=n(r=u,i=a))}}function On(t,n){function e(){var e=this,r=n.apply(e,arguments);return r&&function(n){e.setAttributeNS(t.space,t.local,r(n))}}return e._value=n,e}function Fn(t,n){function e(){var e=this,r=n.apply(e,arguments);return r&&function(n){e.setAttribute(t,r(n))}}return e._value=n,e}function In(t,n){return function(){kn(this,t).delay=+n.apply(this,arguments)}}function Yn(t,n){return n=+n,function(){kn(this,t).delay=n}}function Bn(t,n){return function(){Nn(this,t).duration=+n.apply(this,arguments)}}function Hn(t,n){return n=+n,function(){Nn(this,t).duration=n}}function jn(t,n){if("function"!=typeof n)throw new Error;return function(){Nn(this,t).ease=n}}function Xn(t){return(t+"").trim().split(/^|\s+/).every(function(t){var n=t.indexOf(".");return n>=0&&(t=t.slice(0,n)),!t||"start"===t})}function $n(t,n,e){var r,i,o=Xn(n)?kn:Nn;return function(){var u=o(this,t),a=u.on;a!==r&&(i=(r=a).copy()).on(n,e),u.on=i}}function Vn(t){return function(){var n=this.parentNode;for(var e in this.__transition)if(+e!==t)return;n&&n.removeChild(this)}}function Wn(t,n){var e,r,i;return function(){var o=X(this,t),u=(this.style.removeProperty(t),X(this,t));return o===u?null:o===e&&u===r?i:i=n(e=o,r=u)}}function Zn(t){return function(){this.style.removeProperty(t)}}function Gn(t,n,e){var r,i;return function(){var o=X(this,t);return o===e?null:o===r?i:i=n(r=o,e)}}function Jn(t,n,e){var r,i,o;return function(){var u=X(this,t),a=e(this);return null==a&&(this.style.removeProperty(t),a=X(this,t)),u===a?null:u===r&&a===i?o:o=n(r=u,i=a)}}function Qn(t,n,e){function r(){var r=this,i=n.apply(r,arguments);return i&&function(n){r.style.setProperty(t,i(n),e)}}return r._value=n,r}function Kn(t){return function(){this.textContent=t}}function te(t){return function(){var n=t(this);this.textContent=null==n?"":n}}function ne(t,n,e,r){this._groups=t,this._parents=n,this._name=e,this._id=r}function ee(t){return yt().transition(t)}function re(){return++Fp}function ie(t){return+t}function oe(t){return t*t}function ue(t){return t*(2-t)}function ae(t){return((t*=2)<=1?t*t:--t*(2-t)+1)/2}function ce(t){return t*t*t}function se(t){return--t*t*t+1}function fe(t){return((t*=2)<=1?t*t*t:(t-=2)*t*t+2)/2}function le(t){return 1-Math.cos(t*Xp)}function he(t){return Math.sin(t*Xp)}function pe(t){return(1-Math.cos(jp*t))/2}function de(t){return Math.pow(2,10*t-10)}function ve(t){return 1-Math.pow(2,-10*t)}function _e(t){return((t*=2)<=1?Math.pow(2,10*t-10):2-Math.pow(2,10-10*t))/2}function ye(t){return 1-Math.sqrt(1-t*t)}function ge(t){return Math.sqrt(1- --t*t)}function me(t){return((t*=2)<=1?1-Math.sqrt(1-t*t):Math.sqrt(1-(t-=2)*t)+1)/2}function xe(t){return 1-be(1-t)}function be(t){return(t=+t)<$p?nd*t*t:t<Wp?nd*(t-=Vp)*t+Zp:t<Jp?nd*(t-=Gp)*t+Qp:nd*(t-=Kp)*t+td}function we(t){return((t*=2)<=1?1-be(1-t):be(t-1)+1)/2}function Me(t,n){for(var e;!(e=t.__transition)||!(e=e[n]);)if(!(t=t.parentNode))return sd.time=_n(),sd;return e}function Te(){t.event.stopImmediatePropagation()}function ke(t){return{type:t}}function Ne(){return!t.event.button}function Se(){var t=this.ownerSVGElement||this;return[[0,0],[t.width.baseVal.value,t.height.baseVal.value]]}function Ee(t){for(;!t.__brush;)if(!(t=t.parentNode))return;return t.__brush}function Ae(t){return t[0][0]===t[1][0]||t[0][1]===t[1][1]}function Ce(t){var n=t.__brush;return n?n.dim.output(n.selection):null}function ze(){return Le(xd)}function Pe(){return Le(bd)}function Le(n){function e(t){var e=t.property("__brush",a).selectAll(".overlay").data([ke("overlay")]);e.enter().append("rect").attr("class","overlay").attr("pointer-events","all").attr("cursor",Md.overlay).merge(e).each(function(){var t=Ee(this).extent;Pl(this).attr("x",t[0][0]).attr("y",t[0][1]).attr("width",t[1][0]-t[0][0]).attr("height",t[1][1]-t[0][1])}),t.selectAll(".selection").data([ke("selection")]).enter().append("rect").attr("class","selection").attr("cursor",Md.selection).attr("fill","#777").attr("fill-opacity",.3).attr("stroke","#fff").attr("shape-rendering","crispEdges");var i=t.selectAll(".handle").data(n.handles,function(t){return t.type});i.exit().remove(),i.enter().append("rect").attr("class",function(t){return"handle handle--"+t.type}).attr("cursor",function(t){return Md[t.type]}),t.each(r).attr("fill","none").attr("pointer-events","all").style("-webkit-tap-highlight-color","rgba(0,0,0,0)").on("mousedown.brush touchstart.brush",u)}function r(){var t=Pl(this),n=Ee(this).selection;n?(t.selectAll(".selection").style("display",null).attr("x",n[0][0]).attr("y",n[0][1]).attr("width",n[1][0]-n[0][0]).attr("height",n[1][1]-n[0][1]),t.selectAll(".handle").style("display",null).attr("x",function(t){return"e"===t.type[t.type.length-1]?n[1][0]-h/2:n[0][0]-h/2}).attr("y",function(t){return"s"===t.type[0]?n[1][1]-h/2:n[0][1]-h/2}).attr("width",function(t){return"n"===t.type||"s"===t.type?n[1][0]-n[0][0]+h:h}).attr("height",function(t){return"e"===t.type||"w"===t.type?n[1][1]-n[0][1]+h:h})):t.selectAll(".selection,.handle").style("display","none").attr("x",null).attr("y",null).attr("width",null).attr("height",null)}function i(t,n){return t.__brush.emitter||new o(t,n)}function o(t,n){this.that=t,this.args=n,this.state=t.__brush,this.active=0}function u(){function e(){var t=Gf(T);!U||w||M||(Math.abs(t[0]-O[0])>Math.abs(t[1]-O[1])?M=!0:w=!0),O=t,b=!0,vd(),o()}function o(){var t;switch(m=O[0]-D[0],x=O[1]-D[1],N){case yd:case _d:S&&(m=Math.max(P-l,Math.min(R-v,m)),h=l+m,_=v+m),E&&(x=Math.max(L-p,Math.min(q-y,x)),d=p+x,g=y+x);break;case gd:S<0?(m=Math.max(P-l,Math.min(R-l,m)),h=l+m,_=v):S>0&&(m=Math.max(P-v,Math.min(R-v,m)),h=l,_=v+m),E<0?(x=Math.max(L-p,Math.min(q-p,x)),d=p+x,g=y):E>0&&(x=Math.max(L-y,Math.min(q-y,x)),d=p,g=y+x);break;case md:S&&(h=Math.max(P,Math.min(R,l-m*S)),_=Math.max(P,Math.min(R,v+m*S))),E&&(d=Math.max(L,Math.min(q,p-x*E)),g=Math.max(L,Math.min(q,y+x*E)))}_<h&&(S*=-1,t=l,l=v,v=t,t=h,h=_,_=t,k in Td&&Y.attr("cursor",Md[k=Td[k]])),g<d&&(E*=-1,t=p,p=y,y=t,t=d,d=g,g=t,k in kd&&Y.attr("cursor",Md[k=kd[k]])),A.selection&&(z=A.selection),w&&(h=z[0][0],_=z[1][0]),M&&(d=z[0][1],g=z[1][1]),z[0][0]===h&&z[0][1]===d&&z[1][0]===_&&z[1][1]===g||(A.selection=[[h,d],[_,g]],r.call(T),F.brush())}function u(){if(Te(),t.event.touches){if(t.event.touches.length)return;c&&clearTimeout(c),c=setTimeout(function(){c=null},500),I.on("touchmove.brush touchend.brush touchcancel.brush",null)}else mt(t.event.view,b),B.on("keydown.brush keyup.brush mousemove.brush mouseup.brush",null);I.attr("pointer-events","all"),Y.attr("cursor",Md.overlay),A.selection&&(z=A.selection),Ae(z)&&(A.selection=null,r.call(T)),F.end()}function a(){switch(t.event.keyCode){case 16:U=S&&E;break;case 18:N===gd&&(S&&(v=_-m*S,l=h+m*S),E&&(y=g-x*E,p=d+x*E),N=md,o());break;case 32:N!==gd&&N!==md||(S<0?v=_-m:S>0&&(l=h-m),E<0?y=g-x:E>0&&(p=d-x),N=yd,Y.attr("cursor",Md.selection),o());break;default:return}vd()}function s(){switch(t.event.keyCode){case 16:U&&(w=M=U=!1,o());break;case 18:N===md&&(S<0?v=_:S>0&&(l=h),E<0?y=g:E>0&&(p=d),N=gd,o());break;case 32:N===yd&&(t.event.altKey?(S&&(v=_-m*S,l=h+m*S),E&&(y=g-x*E,p=d+x*E),N=md):(S<0?v=_:S>0&&(l=h),E<0?y=g:E>0&&(p=d),N=gd),Y.attr("cursor",Md[k]),o());break;default:return}vd()}if(t.event.touches){if(t.event.changedTouches.length<t.event.touches.length)return vd()}else if(c)return;if(f.apply(this,arguments)){var l,h,p,d,v,_,y,g,m,x,b,w,M,T=this,k=t.event.target.__data__.type,N="selection"===(t.event.metaKey?k="overlay":k)?_d:t.event.altKey?md:gd,S=n===bd?null:Nd[k],E=n===xd?null:Sd[k],A=Ee(T),C=A.extent,z=A.selection,P=C[0][0],L=C[0][1],R=C[1][0],q=C[1][1],U=S&&E&&t.event.shiftKey,D=Gf(T),O=D,F=i(T,arguments).beforestart();"overlay"===k?A.selection=z=[[l=n===bd?P:D[0],p=n===xd?L:D[1]],[v=n===bd?R:l,y=n===xd?q:p]]:(l=z[0][0],p=z[0][1],v=z[1][0],y=z[1][1]),h=l,d=p,_=v,g=y;var I=Pl(T).attr("pointer-events","none"),Y=I.selectAll(".overlay").attr("cursor",Md[k]);if(t.event.touches)I.on("touchmove.brush",e,!0).on("touchend.brush touchcancel.brush",u,!0);else{var B=Pl(t.event.view).on("keydown.brush",a,!0).on("keyup.brush",s,!0).on("mousemove.brush",e,!0).on("mouseup.brush",u,!0);Dl(t.event.view)}Te(),gp(T),r.call(T),F.start()}}function a(){var t=this.__brush||{selection:null};return t.extent=s.apply(this,arguments),t.dim=n,t}var c,s=Se,f=Ne,l=v(e,"start","brush","end"),h=6;return e.move=function(t,e){t.selection?t.on("start.brush",function(){i(this,arguments).beforestart().start()}).on("interrupt.brush end.brush",function(){i(this,arguments).end()}).tween("brush",function(){function t(t){u.selection=1===t&&Ae(s)?null:f(t),r.call(o),a.brush()}var o=this,u=o.__brush,a=i(o,arguments),c=u.selection,s=n.input("function"==typeof e?e.apply(this,arguments):e,u.extent),f=qh(c,s);return c&&s?t:t(1)}):t.each(function(){var t=this,o=arguments,u=t.__brush,a=n.input("function"==typeof e?e.apply(t,o):e,u.extent),c=i(t,o).beforestart();gp(t),u.selection=null==a||Ae(a)?null:a,r.call(t),c.start().brush().end()})},o.prototype={beforestart:function(){return 1==++this.active&&(this.state.emitter=this,this.starting=!0),this},start:function(){return this.starting&&(this.starting=!1,this.emit("start")),this},brush:function(){return this.emit("brush"),this},end:function(){return 0==--this.active&&(delete this.state.emitter,this.emit("end")),this},emit:function(t){A(new dd(e,t,n.output(this.state.selection)),l.apply,l,[t,this.that,this.args])}},e.extent=function(t){return arguments.length?(s="function"==typeof t?t:pd([[+t[0][0],+t[0][1]],[+t[1][0],+t[1][1]]]),e):s},e.filter=function(t){return arguments.length?(f="function"==typeof t?t:pd(!!t),e):f},e.handleSize=function(t){return arguments.length?(h=+t,e):h},e.on=function(){var t=l.on.apply(l,arguments);return t===l?e:t},e}function Re(t){return function(n,e){return t(n.source.value+n.target.value,e.source.value+e.target.value)}}function qe(){this._x0=this._y0=this._x1=this._y1=null,this._=""}function Ue(){return new qe}function De(t){return t.source}function Oe(t){return t.target}function Fe(t){return t.radius}function Ie(t){return t.startAngle}function Ye(t){return t.endAngle}function Be(){}function He(t,n){var e=new Be;if(t instanceof Be)t.each(function(t,n){e.set(n,t)});else if(Array.isArray(t)){var r,i=-1,o=t.length;if(null==n)for(;++i<o;)e.set(i,t[i]);else for(;++i<o;)e.set(n(r=t[i],i,t),r)}else if(t)for(var u in t)e.set(u,t[u]);return e}function je(){return{}}function Xe(t,n,e){t[n]=e}function $e(){return He()}function Ve(t,n,e){t.set(n,e)}function We(){}function Ze(t,n){var e=new We;if(t instanceof We)t.each(function(t){e.add(t)});else if(t){var r=-1,i=t.length;if(null==n)for(;++r<i;)e.add(t[r]);else for(;++r<i;)e.add(n(t[r],r,t))}return e}function Ge(t){return new Function("d","return {"+t.map(function(t,n){return JSON.stringify(t)+": d["+n+"]"}).join(",")+"}")}function Je(t,n){var e=Ge(t);return function(r,i){return n(e(r),i,t)}}function Qe(t){var n=Object.create(null),e=[];return t.forEach(function(t){for(var r in t)r in n||e.push(n[r]=r)}),e}function Ke(t,n,e,r){if(isNaN(n)||isNaN(e))return t;var i,o,u,a,c,s,f,l,h,p=t._root,d={data:r},v=t._x0,_=t._y0,y=t._x1,g=t._y1;if(!p)return t._root=d,t;for(;p.length;)if((s=n>=(o=(v+y)/2))?v=o:y=o,(f=e>=(u=(_+g)/2))?_=u:g=u,i=p,!(p=p[l=f<<1|s]))return i[l]=d,t;if(a=+t._x.call(null,p.data),c=+t._y.call(null,p.data),n===a&&e===c)return d.next=p,i?i[l]=d:t._root=d,t;do{i=i?i[l]=new Array(4):t._root=new Array(4),(s=n>=(o=(v+y)/2))?v=o:y=o,(f=e>=(u=(_+g)/2))?_=u:g=u}while((l=f<<1|s)==(h=(c>=u)<<1|a>=o));return i[h]=p,i[l]=d,t}function tr(t){var n,e,r,i,o=t.length,u=new Array(o),a=new Array(o),c=1/0,s=1/0,f=-1/0,l=-1/0;for(e=0;e<o;++e)isNaN(r=+this._x.call(null,n=t[e]))||isNaN(i=+this._y.call(null,n))||(u[e]=r,a[e]=i,r<c&&(c=r),r>f&&(f=r),i<s&&(s=i),i>l&&(l=i));for(f<c&&(c=this._x0,f=this._x1),l<s&&(s=this._y0,l=this._y1),this.cover(c,s).cover(f,l),e=0;e<o;++e)Ke(this,u[e],a[e],t[e]);return this}function nr(t){for(var n=0,e=t.length;n<e;++n)this.remove(t[n]);return this}function er(t){return t[0]}function rr(t){return t[1]}function ir(t,n,e){var r=new or(null==n?er:n,null==e?rr:e,NaN,NaN,NaN,NaN);return null==t?r:r.addAll(t)}function or(t,n,e,r,i,o){this._x=t,this._y=n,this._x0=e,this._y0=r,this._x1=i,this._y1=o,this._root=void 0}function ur(t){for(var n={data:t.data},e=n;t=t.next;)e=e.next={data:t.data};return n}function ar(t){return t.x+t.vx}function cr(t){return t.y+t.vy}function sr(t){return t.index}function fr(t,n){var e=t.get(n);if(!e)throw new Error("missing: "+n);return e}function lr(t){return t.x}function hr(t){return t.y}function pr(t){return new dr(t)}function dr(t){if(!(n=Ov.exec(t)))throw new Error("invalid format: "+t);var n,e=n[1]||" ",r=n[2]||">",i=n[3]||"-",o=n[4]||"",u=!!n[5],a=n[6]&&+n[6],c=!!n[7],s=n[8]&&+n[8].slice(1),f=n[9]||"";"n"===f?(c=!0,f="g"):Dv[f]||(f=""),(u||"0"===e&&"="===r)&&(u=!0,e="0",r="="),this.fill=e,this.align=r,
this.sign=i,this.symbol=o,this.zero=u,this.width=a,this.comma=c,this.precision=s,this.type=f}function vr(n){return Fv=Bv(n),t.format=Fv.format,t.formatPrefix=Fv.formatPrefix,Fv}function _r(){this.reset()}function yr(t,n,e){var r=t.s=n+e,i=r-n,o=r-i;t.t=n-o+(e-i)}function gr(t){return t>1?0:t<-1?N_:Math.acos(t)}function mr(t){return t>1?S_:t<-1?-S_:Math.asin(t)}function xr(t){return(t=I_(t/2))*t}function br(){}function wr(t,n){t&&X_.hasOwnProperty(t.type)&&X_[t.type](t,n)}function Mr(t,n,e){var r,i=-1,o=t.length-e;for(n.lineStart();++i<o;)r=t[i],n.point(r[0],r[1],r[2]);n.lineEnd()}function Tr(t,n){var e=-1,r=t.length;for(n.polygonStart();++e<r;)Mr(t[e],n,1);n.polygonEnd()}function kr(){Z_.point=Sr}function Nr(){Er(Vv,Wv)}function Sr(t,n){Z_.point=Er,Vv=t,Wv=n,t*=z_,n*=z_,Zv=t,Gv=q_(n=n/2+E_),Jv=I_(n)}function Er(t,n){t*=z_,n*=z_,n=n/2+E_;var e=t-Zv,r=e>=0?1:-1,i=r*e,o=q_(n),u=I_(n),a=Jv*u,c=Gv*o+a*q_(i),s=a*r*I_(i);V_.add(R_(s,c)),Zv=t,Gv=o,Jv=u}function Ar(t){return[R_(t[1],t[0]),mr(t[2])]}function Cr(t){var n=t[0],e=t[1],r=q_(e);return[r*q_(n),r*I_(n),I_(e)]}function zr(t,n){return t[0]*n[0]+t[1]*n[1]+t[2]*n[2]}function Pr(t,n){return[t[1]*n[2]-t[2]*n[1],t[2]*n[0]-t[0]*n[2],t[0]*n[1]-t[1]*n[0]]}function Lr(t,n){t[0]+=n[0],t[1]+=n[1],t[2]+=n[2]}function Rr(t,n){return[t[0]*n,t[1]*n,t[2]*n]}function qr(t){var n=B_(t[0]*t[0]+t[1]*t[1]+t[2]*t[2]);t[0]/=n,t[1]/=n,t[2]/=n}function Ur(t,n){u_.push(a_=[Qv=t,t_=t]),n<Kv&&(Kv=n),n>n_&&(n_=n)}function Dr(t,n){var e=Cr([t*z_,n*z_]);if(o_){var r=Pr(o_,e),i=[r[1],-r[0],0],o=Pr(i,r);qr(o),o=Ar(o);var u,a=t-e_,c=a>0?1:-1,s=o[0]*C_*c,f=P_(a)>180;f^(c*e_<s&&s<c*t)?(u=o[1]*C_)>n_&&(n_=u):(s=(s+360)%360-180,f^(c*e_<s&&s<c*t)?(u=-o[1]*C_)<Kv&&(Kv=u):(n<Kv&&(Kv=n),n>n_&&(n_=n))),f?t<e_?Hr(Qv,t)>Hr(Qv,t_)&&(t_=t):Hr(t,t_)>Hr(Qv,t_)&&(Qv=t):t_>=Qv?(t<Qv&&(Qv=t),t>t_&&(t_=t)):t>e_?Hr(Qv,t)>Hr(Qv,t_)&&(t_=t):Hr(t,t_)>Hr(Qv,t_)&&(Qv=t)}else u_.push(a_=[Qv=t,t_=t]);n<Kv&&(Kv=n),n>n_&&(n_=n),o_=e,e_=t}function Or(){Q_.point=Dr}function Fr(){a_[0]=Qv,a_[1]=t_,Q_.point=Ur,o_=null}function Ir(t,n){if(o_){var e=t-e_;J_.add(P_(e)>180?e+(e>0?360:-360):e)}else r_=t,i_=n;Z_.point(t,n),Dr(t,n)}function Yr(){Z_.lineStart()}function Br(){Ir(r_,i_),Z_.lineEnd(),P_(J_)>k_&&(Qv=-(t_=180)),a_[0]=Qv,a_[1]=t_,o_=null}function Hr(t,n){return(n-=t)<0?n+360:n}function jr(t,n){return t[0]-n[0]}function Xr(t,n){return t[0]<=t[1]?t[0]<=n&&n<=t[1]:n<t[0]||t[1]<n}function $r(t,n){t*=z_,n*=z_;var e=q_(n);Vr(e*q_(t),e*I_(t),I_(n))}function Vr(t,n,e){++c_,f_+=(t-f_)/c_,l_+=(n-l_)/c_,h_+=(e-h_)/c_}function Wr(){ty.point=Zr}function Zr(t,n){t*=z_,n*=z_;var e=q_(n);b_=e*q_(t),w_=e*I_(t),M_=I_(n),ty.point=Gr,Vr(b_,w_,M_)}function Gr(t,n){t*=z_,n*=z_;var e=q_(n),r=e*q_(t),i=e*I_(t),o=I_(n),u=R_(B_((u=w_*o-M_*i)*u+(u=M_*r-b_*o)*u+(u=b_*i-w_*r)*u),b_*r+w_*i+M_*o);s_+=u,p_+=u*(b_+(b_=r)),d_+=u*(w_+(w_=i)),v_+=u*(M_+(M_=o)),Vr(b_,w_,M_)}function Jr(){ty.point=$r}function Qr(){ty.point=ti}function Kr(){ni(m_,x_),ty.point=$r}function ti(t,n){m_=t,x_=n,t*=z_,n*=z_,ty.point=ni;var e=q_(n);b_=e*q_(t),w_=e*I_(t),M_=I_(n),Vr(b_,w_,M_)}function ni(t,n){t*=z_,n*=z_;var e=q_(n),r=e*q_(t),i=e*I_(t),o=I_(n),u=w_*o-M_*i,a=M_*r-b_*o,c=b_*i-w_*r,s=B_(u*u+a*a+c*c),f=mr(s),l=s&&-f/s;__+=l*u,y_+=l*a,g_+=l*c,s_+=f,p_+=f*(b_+(b_=r)),d_+=f*(w_+(w_=i)),v_+=f*(M_+(M_=o)),Vr(b_,w_,M_)}function ei(t,n){return[t>N_?t-A_:t<-N_?t+A_:t,n]}function ri(t,n,e){return(t%=A_)?n||e?ry(oi(t),ui(n,e)):oi(t):n||e?ui(n,e):ei}function ii(t){return function(n,e){return n+=t,[n>N_?n-A_:n<-N_?n+A_:n,e]}}function oi(t){var n=ii(t);return n.invert=ii(-t),n}function ui(t,n){function e(t,n){var e=q_(n),a=q_(t)*e,c=I_(t)*e,s=I_(n),f=s*r+a*i;return[R_(c*o-f*u,a*r-s*i),mr(f*o+c*u)]}var r=q_(t),i=I_(t),o=q_(n),u=I_(n);return e.invert=function(t,n){var e=q_(n),a=q_(t)*e,c=I_(t)*e,s=I_(n),f=s*o-c*u;return[R_(c*o+s*u,a*r+f*i),mr(f*r-a*i)]},e}function ai(t,n,e,r,i,o){if(e){var u=q_(n),a=I_(n),c=r*e;null==i?(i=n+r*A_,o=n-c/2):(i=ci(u,i),o=ci(u,o),(r>0?i<o:i>o)&&(i+=r*A_));for(var s,f=i;r>0?f>o:f<o;f-=c)s=Ar([u,-a*q_(f),-a*I_(f)]),t.point(s[0],s[1])}}function ci(t,n){n=Cr(n),n[0]-=t,qr(n);var e=gr(-n[1]);return((-n[2]<0?-e:e)+A_-k_)%A_}function si(t,n,e,r){this.x=t,this.z=n,this.o=e,this.e=r,this.v=!1,this.n=this.p=null}function fi(t){if(n=t.length){for(var n,e,r=0,i=t[0];++r<n;)i.n=e=t[r],e.p=i,i=e;i.n=e=t[0],e.p=i}}function li(t,n,e,r){function i(i,o){return t<=i&&i<=e&&n<=o&&o<=r}function o(i,o,a,s){var f=0,l=0;if(null==i||(f=u(i,a))!==(l=u(o,a))||c(i,o)<0^a>0)do{s.point(0===f||3===f?t:e,f>1?r:n)}while((f=(f+a+4)%4)!==l);else s.point(o[0],o[1])}function u(r,i){return P_(r[0]-t)<k_?i>0?0:3:P_(r[0]-e)<k_?i>0?2:1:P_(r[1]-n)<k_?i>0?1:0:i>0?3:2}function a(t,n){return c(t.x,n.x)}function c(t,n){var e=u(t,1),r=u(n,1);return e!==r?e-r:0===e?n[1]-t[1]:1===e?t[0]-n[0]:2===e?t[1]-n[1]:n[0]-t[0]}return function(u){function c(t,n){i(t,n)&&N.point(t,n)}function s(){for(var n=0,e=0,i=_.length;e<i;++e)for(var o,u,a=_[e],c=1,s=a.length,f=a[0],l=f[0],h=f[1];c<s;++c)o=l,u=h,f=a[c],l=f[0],h=f[1],u<=r?h>r&&(l-o)*(r-u)>(h-u)*(t-o)&&++n:h<=r&&(l-o)*(r-u)<(h-u)*(t-o)&&--n;return n}function f(){N=S,v=[],_=[],k=!0}function l(){var t=s(),n=k&&t,e=(v=bf(v)).length;(n||e)&&(u.polygonStart(),n&&(u.lineStart(),o(null,null,1,u),u.lineEnd()),e&&xy(v,a,t,o,u),u.polygonEnd()),N=u,v=_=y=null}function h(){E.point=d,_&&_.push(y=[]),T=!0,M=!1,b=w=NaN}function p(){v&&(d(g,m),x&&M&&S.rejoin(),v.push(S.result())),E.point=c,M&&N.lineEnd()}function d(o,u){var a=i(o,u);if(_&&y.push([o,u]),T)g=o,m=u,x=a,T=!1,a&&(N.lineStart(),N.point(o,u));else if(a&&M)N.point(o,u);else{var c=[b=Math.max(wy,Math.min(by,b)),w=Math.max(wy,Math.min(by,w))],s=[o=Math.max(wy,Math.min(by,o)),u=Math.max(wy,Math.min(by,u))];gy(c,s,t,n,e,r)?(M||(N.lineStart(),N.point(c[0],c[1])),N.point(s[0],s[1]),a||N.lineEnd(),k=!1):a&&(N.lineStart(),N.point(o,u),k=!1)}b=o,w=u,M=a}var v,_,y,g,m,x,b,w,M,T,k,N=u,S=yy(),E={point:c,lineStart:h,lineEnd:p,polygonStart:f,polygonEnd:l};return E}}function hi(){Sy.point=di,Sy.lineEnd=pi}function pi(){Sy.point=Sy.lineEnd=br}function di(t,n){t*=z_,n*=z_,iy=t,oy=I_(n),uy=q_(n),Sy.point=vi}function vi(t,n){t*=z_,n*=z_;var e=I_(n),r=q_(n),i=P_(t-iy),o=q_(i),u=I_(i),a=r*u,c=uy*e-oy*r*o,s=oy*e+uy*r*o;Ny.add(R_(B_(a*a+c*c),s)),iy=t,oy=e,uy=r}function _i(t,n){return!(!t||!Ly.hasOwnProperty(t.type))&&Ly[t.type](t,n)}function yi(t,n){return 0===zy(t,n)}function gi(t,n){var e=zy(t[0],t[1]);return zy(t[0],n)+zy(n,t[1])<=e+k_}function mi(t,n){return!!ky(t.map(xi),bi(n))}function xi(t){return t=t.map(bi),t.pop(),t}function bi(t){return[t[0]*z_,t[1]*z_]}function wi(t,n,e){var r=cf(t,n-k_,e).concat(n);return function(t){return r.map(function(n){return[t,n]})}}function Mi(t,n,e){var r=cf(t,n-k_,e).concat(n);return function(t){return r.map(function(n){return[n,t]})}}function Ti(){function t(){return{type:"MultiLineString",coordinates:n()}}function n(){return cf(U_(o/_)*_,i,_).map(h).concat(cf(U_(s/y)*y,c,y).map(p)).concat(cf(U_(r/d)*d,e,d).filter(function(t){return P_(t%_)>k_}).map(f)).concat(cf(U_(a/v)*v,u,v).filter(function(t){return P_(t%y)>k_}).map(l))}var e,r,i,o,u,a,c,s,f,l,h,p,d=10,v=d,_=90,y=360,g=2.5;return t.lines=function(){return n().map(function(t){return{type:"LineString",coordinates:t}})},t.outline=function(){return{type:"Polygon",coordinates:[h(o).concat(p(c).slice(1),h(i).reverse().slice(1),p(s).reverse().slice(1))]}},t.extent=function(n){return arguments.length?t.extentMajor(n).extentMinor(n):t.extentMinor()},t.extentMajor=function(n){return arguments.length?(o=+n[0][0],i=+n[1][0],s=+n[0][1],c=+n[1][1],o>i&&(n=o,o=i,i=n),s>c&&(n=s,s=c,c=n),t.precision(g)):[[o,s],[i,c]]},t.extentMinor=function(n){return arguments.length?(r=+n[0][0],e=+n[1][0],a=+n[0][1],u=+n[1][1],r>e&&(n=r,r=e,e=n),a>u&&(n=a,a=u,u=n),t.precision(g)):[[r,a],[e,u]]},t.step=function(n){return arguments.length?t.stepMajor(n).stepMinor(n):t.stepMinor()},t.stepMajor=function(n){return arguments.length?(_=+n[0],y=+n[1],t):[_,y]},t.stepMinor=function(n){return arguments.length?(d=+n[0],v=+n[1],t):[d,v]},t.precision=function(n){return arguments.length?(g=+n,f=wi(a,u,90),l=Mi(r,e,g),h=wi(s,c,90),p=Mi(o,i,g),t):g},t.extentMajor([[-180,-90+k_],[180,90-k_]]).extentMinor([[-180,-80-k_],[180,80+k_]])}function ki(){return Ti()()}function Ni(){Fy.point=Si}function Si(t,n){Fy.point=Ei,ay=sy=t,cy=fy=n}function Ei(t,n){Oy.add(fy*t-sy*n),sy=t,fy=n}function Ai(){Ei(ay,cy)}function Ci(t,n){t<Iy&&(Iy=t),t>By&&(By=t),n<Yy&&(Yy=n),n>Hy&&(Hy=n)}function zi(t,n){Xy+=t,$y+=n,++Vy}function Pi(){tg.point=Li}function Li(t,n){tg.point=Ri,zi(py=t,dy=n)}function Ri(t,n){var e=t-py,r=n-dy,i=B_(e*e+r*r);Wy+=i*(py+t)/2,Zy+=i*(dy+n)/2,Gy+=i,zi(py=t,dy=n)}function qi(){tg.point=zi}function Ui(){tg.point=Oi}function Di(){Fi(ly,hy)}function Oi(t,n){tg.point=Fi,zi(ly=py=t,hy=dy=n)}function Fi(t,n){var e=t-py,r=n-dy,i=B_(e*e+r*r);Wy+=i*(py+t)/2,Zy+=i*(dy+n)/2,Gy+=i,i=dy*t-py*n,Jy+=i*(py+t),Qy+=i*(dy+n),Ky+=3*i,zi(py=t,dy=n)}function Ii(t){this._context=t}function Yi(t,n){ag.point=Bi,eg=ig=t,rg=og=n}function Bi(t,n){ig-=t,og-=n,ug.add(B_(ig*ig+og*og)),ig=t,og=n}function Hi(){this._string=[]}function ji(t){return"m0,"+t+"a"+t+","+t+" 0 1,1 0,"+-2*t+"a"+t+","+t+" 0 1,1 0,"+2*t+"z"}function Xi(t){return t.length>1}function $i(t,n){return((t=t.x)[0]<0?t[1]-S_-k_:S_-t[1])-((n=n.x)[0]<0?n[1]-S_-k_:S_-n[1])}function Vi(t){var n,e=NaN,r=NaN,i=NaN;return{lineStart:function(){t.lineStart(),n=1},point:function(o,u){var a=o>0?N_:-N_,c=P_(o-e);P_(c-N_)<k_?(t.point(e,r=(r+u)/2>0?S_:-S_),t.point(i,r),t.lineEnd(),t.lineStart(),t.point(a,r),t.point(o,r),n=0):i!==a&&c>=N_&&(P_(e-i)<k_&&(e-=i*k_),P_(o-a)<k_&&(o-=a*k_),r=Wi(e,r,o,u),t.point(i,r),t.lineEnd(),t.lineStart(),t.point(a,r),n=0),t.point(e=o,r=u),i=a},lineEnd:function(){t.lineEnd(),e=r=NaN},clean:function(){return 2-n}}}function Wi(t,n,e,r){var i,o,u=I_(t-e);return P_(u)>k_?L_((I_(n)*(o=q_(r))*I_(e)-I_(r)*(i=q_(n))*I_(t))/(i*o*u)):(n+r)/2}function Zi(t,n,e,r){var i;if(null==t)i=e*S_,r.point(-N_,i),r.point(0,i),r.point(N_,i),r.point(N_,0),r.point(N_,-i),r.point(0,-i),r.point(-N_,-i),r.point(-N_,0),r.point(-N_,i);else if(P_(t[0]-n[0])>k_){var o=t[0]<n[0]?N_:-N_;i=e*o/2,r.point(-o,i),r.point(0,i),r.point(o,i)}else r.point(n[0],n[1])}function Gi(t){return function(n){var e=new Ji;for(var r in t)e[r]=t[r];return e.stream=n,e}}function Ji(){}function Qi(t,n,e){var r=n[1][0]-n[0][0],i=n[1][1]-n[0][1],o=t.clipExtent&&t.clipExtent();t.scale(150).translate([0,0]),null!=o&&t.clipExtent(null),$_(e,t.stream(jy));var u=jy.result(),a=Math.min(r/(u[1][0]-u[0][0]),i/(u[1][1]-u[0][1])),c=+n[0][0]+(r-a*(u[1][0]+u[0][0]))/2,s=+n[0][1]+(i-a*(u[1][1]+u[0][1]))/2;return null!=o&&t.clipExtent(o),t.scale(150*a).translate([c,s])}function Ki(t,n,e){return Qi(t,[[0,0],n],e)}function to(t){return Gi({point:function(n,e){n=t(n,e),this.stream.point(n[0],n[1])}})}function no(t,n){function e(r,i,o,u,a,c,s,f,l,h,p,d,v,_){var y=s-r,g=f-i,m=y*y+g*g;if(m>4*n&&v--){var x=u+h,b=a+p,w=c+d,M=B_(x*x+b*b+w*w),T=mr(w/=M),k=P_(P_(w)-1)<k_||P_(o-l)<k_?(o+l)/2:R_(b,x),N=t(k,T),S=N[0],E=N[1],A=S-r,C=E-i,z=g*A-y*C;(z*z/m>n||P_((y*A+g*C)/m-.5)>.3||u*h+a*p+c*d<dg)&&(e(r,i,o,u,a,c,S,E,k,x/=M,b/=M,w,v,_),_.point(S,E),e(S,E,k,x,b,w,s,f,l,h,p,d,v,_))}}return function(n){function r(e,r){e=t(e,r),n.point(e[0],e[1])}function i(){y=NaN,w.point=o,n.lineStart()}function o(r,i){var o=Cr([r,i]),u=t(r,i);e(y,g,_,m,x,b,y=u[0],g=u[1],_=r,m=o[0],x=o[1],b=o[2],pg,n),n.point(y,g)}function u(){w.point=r,n.lineEnd()}function a(){i(),w.point=c,w.lineEnd=s}function c(t,n){o(f=t,n),l=y,h=g,p=m,d=x,v=b,w.point=o}function s(){e(y,g,_,m,x,b,l,h,f,p,d,v,pg,n),w.lineEnd=u,u()}var f,l,h,p,d,v,_,y,g,m,x,b,w={point:r,lineStart:i,lineEnd:u,polygonStart:function(){n.polygonStart(),w.lineStart=a},polygonEnd:function(){n.polygonEnd(),w.lineStart=i}};return w}}function eo(t){return ro(function(){return t})()}function ro(t){function n(t){return t=f(t[0]*z_,t[1]*z_),[t[0]*_+a,c-t[1]*_]}function e(t){return(t=f.invert((t[0]-a)/_,(c-t[1])/_))&&[t[0]*C_,t[1]*C_]}function r(t,n){return t=u(t,n),[t[0]*_+a,c-t[1]*_]}function i(){f=ry(s=ri(b,w,M),u);var t=u(m,x);return a=y-t[0]*_,c=g+t[1]*_,o()}function o(){return d=v=null,n}var u,a,c,s,f,l,h,p,d,v,_=150,y=480,g=250,m=0,x=0,b=0,w=0,M=0,T=null,k=fg,N=null,S=Uy,E=.5,A=vg(r,E);return n.stream=function(t){return d&&v===t?d:d=_g(k(s,A(S(v=t))))},n.clipAngle=function(t){return arguments.length?(k=+t?lg(T=t*z_,6*z_):(T=null,fg),o()):T*C_},n.clipExtent=function(t){return arguments.length?(S=null==t?(N=l=h=p=null,Uy):li(N=+t[0][0],l=+t[0][1],h=+t[1][0],p=+t[1][1]),o()):null==N?null:[[N,l],[h,p]]},n.scale=function(t){return arguments.length?(_=+t,i()):_},n.translate=function(t){return arguments.length?(y=+t[0],g=+t[1],i()):[y,g]},n.center=function(t){return arguments.length?(m=t[0]%360*z_,x=t[1]%360*z_,i()):[m*C_,x*C_]},n.rotate=function(t){return arguments.length?(b=t[0]%360*z_,w=t[1]%360*z_,M=t.length>2?t[2]%360*z_:0,i()):[b*C_,w*C_,M*C_]},n.precision=function(t){return arguments.length?(A=vg(r,E=t*t),o()):B_(E)},n.fitExtent=function(t,e){return Qi(n,t,e)},n.fitSize=function(t,e){return Ki(n,t,e)},function(){return u=t.apply(this,arguments),n.invert=u.invert&&e,i()}}function io(t){var n=0,e=N_/3,r=ro(t),i=r(n,e);return i.parallels=function(t){return arguments.length?r(n=t[0]*z_,e=t[1]*z_):[n*C_,e*C_]},i}function oo(t){function n(t,n){return[t*e,I_(n)/e]}var e=q_(t);return n.invert=function(t,n){return[t/e,mr(n*e)]},n}function uo(t,n){function e(t,n){var e=B_(o-2*i*I_(n))/i;return[e*I_(t*=i),u-e*q_(t)]}var r=I_(t),i=(r+I_(n))/2;if(P_(i)<k_)return oo(t);var o=1+r*(2*i-r),u=B_(o)/i;return e.invert=function(t,n){var e=u-n;return[R_(t,P_(e))/i*Y_(e),mr((o-(t*t+e*e)*i*i)/(2*i))]},e}function ao(t){var n=t.length;return{point:function(e,r){for(var i=-1;++i<n;)t[i].point(e,r)},sphere:function(){for(var e=-1;++e<n;)t[e].sphere()},lineStart:function(){for(var e=-1;++e<n;)t[e].lineStart()},lineEnd:function(){for(var e=-1;++e<n;)t[e].lineEnd()},polygonStart:function(){for(var e=-1;++e<n;)t[e].polygonStart()},polygonEnd:function(){for(var e=-1;++e<n;)t[e].polygonEnd()}}}function co(t){return function(n,e){var r=q_(n),i=q_(e),o=t(r*i);return[o*i*I_(n),o*I_(e)]}}function so(t){return function(n,e){var r=B_(n*n+e*e),i=t(r),o=I_(i),u=q_(i);return[R_(n*o,r*u),mr(r&&e*o/r)]}}function fo(t,n){return[t,O_(H_((S_+n)/2))]}function lo(t){function n(){var n=N_*a(),u=o(vy(o.rotate()).invert([0,0]));return s(null==f?[[u[0]-n,u[1]-n],[u[0]+n,u[1]+n]]:t===fo?[[Math.max(u[0]-n,f),e],[Math.min(u[0]+n,r),i]]:[[f,Math.max(u[1]-n,e)],[r,Math.min(u[1]+n,i)]])}var e,r,i,o=eo(t),u=o.center,a=o.scale,c=o.translate,s=o.clipExtent,f=null;return o.scale=function(t){return arguments.length?(a(t),n()):a()},o.translate=function(t){return arguments.length?(c(t),n()):c()},o.center=function(t){return arguments.length?(u(t),n()):u()},o.clipExtent=function(t){return arguments.length?(null==t?f=e=r=i=null:(f=+t[0][0],e=+t[0][1],r=+t[1][0],i=+t[1][1]),n()):null==f?null:[[f,e],[r,i]]},n()}function ho(t){return H_((S_+t)/2)}function po(t,n){function e(t,n){o>0?n<-S_+k_&&(n=-S_+k_):n>S_-k_&&(n=S_-k_);var e=o/F_(ho(n),i);return[e*I_(i*t),o-e*q_(i*t)]}var r=q_(t),i=t===n?I_(t):O_(r/q_(n))/O_(ho(n)/ho(t)),o=r*F_(ho(t),i)/i;return i?(e.invert=function(t,n){var e=o-n,r=Y_(i)*B_(t*t+e*e);return[R_(t,P_(e))/i*Y_(e),2*L_(F_(o/r,1/i))-S_]},e):fo}function vo(t,n){return[t,n]}function _o(t,n){function e(t,n){var e=o-n,r=i*t;return[e*I_(r),o-e*q_(r)]}var r=q_(t),i=t===n?I_(t):(r-q_(n))/(n-t),o=r/i+t;return P_(i)<k_?vo:(e.invert=function(t,n){var e=o-n;return[R_(t,P_(e))/i*Y_(e),o-Y_(i)*B_(t*t+e*e)]},e)}function yo(t,n){var e=q_(n),r=q_(t)*e;return[e*I_(t)/r,I_(n)/r]}function go(t,n,e,r){return 1===t&&1===n&&0===e&&0===r?Uy:Gi({point:function(i,o){this.stream.point(i*t+e,o*n+r)}})}function mo(t,n){return[q_(n)*I_(t),I_(n)]}function xo(t,n){var e=q_(n),r=1+q_(t)*e;return[e*I_(t)/r,I_(n)/r]}function bo(t,n){return[O_(H_((S_+n)/2)),-t]}function wo(t,n){return t.parent===n.parent?1:2}function Mo(t){return t.reduce(To,0)/t.length}function To(t,n){return t+n.x}function ko(t){return 1+t.reduce(No,0)}function No(t,n){return Math.max(t,n.y)}function So(t){for(var n;n=t.children;)t=n[0];return t}function Eo(t){for(var n;n=t.children;)t=n[n.length-1];return t}function Ao(t){var n=0,e=t.children,r=e&&e.length;if(r)for(;--r>=0;)n+=e[r].value;else n=1;t.value=n}function Co(t,n){if(t===n)return t;var e=t.ancestors(),r=n.ancestors(),i=null;for(t=e.pop(),n=r.pop();t===n;)i=t,t=e.pop(),n=r.pop();return i}function zo(t,n){var e,r,i,o,u,a=new Uo(t),c=+t.value&&(a.value=t.value),s=[a];for(null==n&&(n=Lo);e=s.pop();)if(c&&(e.value=+e.data.value),(i=n(e.data))&&(u=i.length))for(e.children=new Array(u),o=u-1;o>=0;--o)s.push(r=e.children[o]=new Uo(i[o])),r.parent=e,r.depth=e.depth+1;return a.eachBefore(qo)}function Po(){return zo(this).eachBefore(Ro)}function Lo(t){return t.children}function Ro(t){t.data=t.data.data}function qo(t){var n=0;do{t.height=n}while((t=t.parent)&&t.height<++n)}function Uo(t){this.data=t,this.depth=this.height=0,this.parent=null}function Do(t){this._=t,this.next=null}function Oo(t,n){var e=n.x-t.x,r=n.y-t.y,i=t.r-n.r;return i*i+1e-6>e*e+r*r}function Fo(t,n){var e,r,i,o=null,u=t.head;switch(n.length){case 1:e=Io(n[0]);break;case 2:e=Yo(n[0],n[1]);break;case 3:e=Bo(n[0],n[1],n[2])}for(;u;)i=u._,r=u.next,e&&Oo(e,i)?o=u:(o?(t.tail=o,o.next=null):t.head=t.tail=null,n.push(i),e=Fo(t,n),n.pop(),t.head?(u.next=t.head,t.head=u):(u.next=null,t.head=t.tail=u),o=t.tail,o.next=r),u=r;return t.tail=o,e}function Io(t){return{x:t.x,y:t.y,r:t.r}}function Yo(t,n){var e=t.x,r=t.y,i=t.r,o=n.x,u=n.y,a=n.r,c=o-e,s=u-r,f=a-i,l=Math.sqrt(c*c+s*s);return{x:(e+o+c/l*f)/2,y:(r+u+s/l*f)/2,r:(l+i+a)/2}}function Bo(t,n,e){var r=t.x,i=t.y,o=t.r,u=n.x,a=n.y,c=n.r,s=e.x,f=e.y,l=e.r,h=2*(r-u),p=2*(i-a),d=2*(c-o),v=r*r+i*i-o*o-u*u-a*a+c*c,_=2*(r-s),y=2*(i-f),g=2*(l-o),m=r*r+i*i-o*o-s*s-f*f+l*l,x=_*p-h*y,b=(p*m-y*v)/x-r,w=(y*d-p*g)/x,M=(_*v-h*m)/x-i,T=(h*g-_*d)/x,k=w*w+T*T-1,N=2*(b*w+M*T+o),S=b*b+M*M-o*o,E=(-N-Math.sqrt(N*N-4*k*S))/(2*k);return{x:b+w*E+r,y:M+T*E+i,r:E}}function Ho(t,n,e){var r=t.x,i=t.y,o=n.r+e.r,u=t.r+e.r,a=n.x-r,c=n.y-i,s=a*a+c*c;if(s){var f=.5+((u*=u)-(o*=o))/(2*s),l=Math.sqrt(Math.max(0,2*o*(u+s)-(u-=s)*u-o*o))/(2*s);e.x=r+f*a+l*c,e.y=i+f*c-l*a}else e.x=r+u,e.y=i}function jo(t,n){var e=n.x-t.x,r=n.y-t.y,i=t.r+n.r;return i*i-1e-6>e*e+r*r}function Xo(t,n,e){var r=t._,i=t.next._,o=r.r+i.r,u=(r.x*i.r+i.x*r.r)/o-n,a=(r.y*i.r+i.y*r.r)/o-e;return u*u+a*a}function $o(t){this._=t,this.next=null,this.previous=null}function Vo(t){if(!(i=t.length))return 0;var n,e,r,i;if(n=t[0],n.x=0,n.y=0,!(i>1))return n.r;if(e=t[1],n.x=-e.r,e.x=n.r,e.y=0,!(i>2))return n.r+e.r;Ho(e,n,r=t[2]);var o,u,a,c,s,f,l,h=n.r*n.r,p=e.r*e.r,d=r.r*r.r,v=h+p+d,_=h*n.x+p*e.x+d*r.x,y=h*n.y+p*e.y+d*r.y;n=new $o(n),e=new $o(e),r=new $o(r),n.next=r.previous=e,e.next=n.previous=r,r.next=e.previous=n;t:for(a=3;a<i;++a){Ho(n._,e._,r=t[a]),r=new $o(r),c=e.next,s=n.previous,f=e._.r,l=n._.r;do{if(f<=l){if(jo(c._,r._)){e=c,n.next=e,e.previous=n,--a;continue t}f+=c._.r,c=c.next}else{if(jo(s._,r._)){n=s,n.next=e,e.previous=n,--a;continue t}l+=s._.r,s=s.previous}}while(c!==s.next);for(r.previous=n,r.next=e,n.next=e.previous=e=r,v+=d=r._.r*r._.r,_+=d*r._.x,y+=d*r._.y,h=Xo(n,o=_/v,u=y/v);(r=r.next)!==e;)(d=Xo(r,o,u))<h&&(n=r,h=d);e=n.next}for(n=[e._],r=e;(r=r.next)!==e;)n.push(r._);for(r=$g(n),a=0;a<i;++a)n=t[a],n.x-=r.x,n.y-=r.y;return r.r}function Wo(t){return null==t?null:Zo(t)}function Zo(t){if("function"!=typeof t)throw new Error;return t}function Go(){return 0}function Jo(t){return Math.sqrt(t.value)}function Qo(t){return function(n){n.children||(n.r=Math.max(0,+t(n)||0))}}function Ko(t,n){return function(e){if(r=e.children){var r,i,o,u=r.length,a=t(e)*n||0;if(a)for(i=0;i<u;++i)r[i].r+=a;if(o=Vo(r),a)for(i=0;i<u;++i)r[i].r-=a;e.r=o+a}}}function tu(t){return function(n){var e=n.parent;n.r*=t,e&&(n.x=e.x+t*n.x,n.y=e.y+t*n.y)}}function nu(t){return t.id}function eu(t){return t.parentId}function ru(t,n){return t.parent===n.parent?1:2}function iu(t){var n=t.children;return n?n[0]:t.t}function ou(t){var n=t.children;return n?n[n.length-1]:t.t}function uu(t,n,e){var r=e/(n.i-t.i);n.c-=r,n.s+=e,t.c+=r,n.z+=e,n.m+=e}function au(t){for(var n,e=0,r=0,i=t.children,o=i.length;--o>=0;)n=i[o],n.z+=e,n.m+=e,e+=n.s+(r+=n.c)}function cu(t,n,e){return t.a.parent===n.parent?t.a:e}function su(t,n){this._=t,this.parent=null,this.children=null,this.A=null,this.a=this,this.z=0,this.m=0,this.c=0,this.s=0,this.t=null,this.i=n}function fu(t){for(var n,e,r,i,o,u=new su(t,0),a=[u];n=a.pop();)if(r=n._.children)for(n.children=new Array(o=r.length),i=o-1;i>=0;--i)a.push(e=n.children[i]=new su(r[i],i)),e.parent=n;return(u.parent=new su(null,0)).children=[u],u}function lu(t,n,e,r,i,o){for(var u,a,c,s,f,l,h,p,d,v,_,y=[],g=n.children,m=0,x=0,b=g.length,w=n.value;m<b;){c=i-e,s=o-r;do{f=g[x++].value}while(!f&&x<b);for(l=h=f,v=Math.max(s/c,c/s)/(w*t),_=f*f*v,d=Math.max(h/_,_/l);x<b;++x){if(f+=a=g[x].value,a<l&&(l=a),a>h&&(h=a),_=f*f*v,(p=Math.max(h/_,_/l))>d){f-=a;break}d=p}y.push(u={value:f,dice:c<s,children:g.slice(m,x)}),u.dice?Jg(u,e,r,i,w?r+=s*f/w:o):im(u,e,r,w?e+=c*f/w:i,o),w-=f,m=x}return y}function hu(t,n){return t[0]-n[0]||t[1]-n[1]}function pu(t){for(var n=t.length,e=[0,1],r=2,i=2;i<n;++i){for(;r>1&&pm(t[e[r-2]],t[e[r-1]],t[i])<=0;)--r;e[r++]=i}return e.slice(0,r)}function du(t){this._size=t,this._call=this._error=null,this._tasks=[],this._data=[],this._waiting=this._active=this._ended=this._start=0}function vu(t){if(!t._start)try{_u(t)}catch(n){if(t._tasks[t._ended+t._active-1])gu(t,n);else if(!t._data)throw n}}function _u(t){for(;t._start=t._waiting&&t._active<t._size;){var n=t._ended+t._active,e=t._tasks[n],r=e.length-1,i=e[r];e[r]=yu(t,n),--t._waiting,++t._active,e=i.apply(null,e),t._tasks[n]&&(t._tasks[n]=e||gm)}}function yu(t,n){return function(e,r){t._tasks[n]&&(--t._active,++t._ended,t._tasks[n]=null,null==t._error&&(null!=e?gu(t,e):(t._data[n]=r,t._waiting?vu(t):mu(t))))}}function gu(t,n){var e,r=t._tasks.length;for(t._error=n,t._data=void 0,t._waiting=NaN;--r>=0;)if((e=t._tasks[r])&&(t._tasks[r]=null,e.abort))try{e.abort()}catch(n){}t._active=NaN,mu(t)}function mu(t){if(!t._active&&t._call){var n=t._data;t._data=void 0,t._call(t._error,n)}}function xu(t){if(null==t)t=1/0;else if(!((t=+t)>=1))throw new Error("invalid concurrency");return new du(t)}function bu(t){return function(n,e){t(null==n?e:null)}}function wu(t){var n=t.responseType;return n&&"text"!==n?t.response:t.responseText}function Mu(t,n){return function(e){return t(e.responseText,n)}}function Tu(t){function n(n){var o=n+"",u=e.get(o);if(!u){if(i!==Om)return i;e.set(o,u=r.push(n))}return t[(u-1)%t.length]}var e=He(),r=[],i=Om;return t=null==t?[]:Dm.call(t),n.domain=function(t){if(!arguments.length)return r.slice();r=[],e=He();for(var i,o,u=-1,a=t.length;++u<a;)e.has(o=(i=t[u])+"")||e.set(o,r.push(i));return n},n.range=function(e){return arguments.length?(t=Dm.call(e),n):t.slice()},n.unknown=function(t){return arguments.length?(i=t,n):i},n.copy=function(){return Tu().domain(r).range(t).unknown(i)},n}function ku(){function t(){var t=i().length,r=u[1]<u[0],l=u[r-0],h=u[1-r];n=(h-l)/Math.max(1,t-c+2*s),a&&(n=Math.floor(n)),l+=(h-l-n*(t-c))*f,e=n*(1-c),a&&(l=Math.round(l),e=Math.round(e));var p=cf(t).map(function(t){return l+n*t});return o(r?p.reverse():p)}var n,e,r=Tu().unknown(void 0),i=r.domain,o=r.range,u=[0,1],a=!1,c=0,s=0,f=.5;return delete r.unknown,r.domain=function(n){return arguments.length?(i(n),t()):i()},r.range=function(n){return arguments.length?(u=[+n[0],+n[1]],t()):u.slice()},r.rangeRound=function(n){return u=[+n[0],+n[1]],a=!0,t()},r.bandwidth=function(){return e},r.step=function(){return n},r.round=function(n){return arguments.length?(a=!!n,t()):a},r.padding=function(n){return arguments.length?(c=s=Math.max(0,Math.min(1,n)),t()):c},r.paddingInner=function(n){return arguments.length?(c=Math.max(0,Math.min(1,n)),t()):c},r.paddingOuter=function(n){return arguments.length?(s=Math.max(0,Math.min(1,n)),t()):s},r.align=function(n){return arguments.length?(f=Math.max(0,Math.min(1,n)),t()):f},r.copy=function(){return ku().domain(i()).range(u).round(a).paddingInner(c).paddingOuter(s).align(f)},t()}function Nu(t){var n=t.copy;return t.padding=t.paddingOuter,delete t.paddingInner,delete t.paddingOuter,t.copy=function(){return Nu(n())},t}function Su(){return Nu(ku().paddingInner(1))}function Eu(t,n){return(n-=t=+t)?function(e){return(e-t)/n}:Fm(n)}function Au(t){return function(n,e){var r=t(n=+n,e=+e);return function(t){return t<=n?0:t>=e?1:r(t)}}}function Cu(t){return function(n,e){var r=t(n=+n,e=+e);return function(t){return t<=0?n:t>=1?e:r(t)}}}function zu(t,n,e,r){var i=t[0],o=t[1],u=n[0],a=n[1];return o<i?(i=e(o,i),u=r(a,u)):(i=e(i,o),u=r(u,a)),function(t){return u(i(t))}}function Pu(t,n,e,r){var i=Math.min(t.length,n.length)-1,o=new Array(i),u=new Array(i),a=-1;for(t[i]<t[0]&&(t=t.slice().reverse(),n=n.slice().reverse());++a<i;)o[a]=e(t[a],t[a+1]),u[a]=r(n[a],n[a+1]);return function(n){var e=Vs(t,n,1,i)-1;return u[e](o[e](n))}}function Lu(t,n){return n.domain(t.domain()).range(t.range()).interpolate(t.interpolate()).clamp(t.clamp())}function Ru(t,n){function e(){return i=Math.min(a.length,c.length)>2?Pu:zu,o=u=null,r}function r(n){return(o||(o=i(a,c,f?Au(t):t,s)))(+n)}var i,o,u,a=Ym,c=Ym,s=qh,f=!1;return r.invert=function(t){return(u||(u=i(c,a,Eu,f?Cu(n):n)))(+t)},r.domain=function(t){return arguments.length?(a=Um.call(t,Im),e()):a.slice()},r.range=function(t){return arguments.length?(c=Dm.call(t),e()):c.slice()},r.rangeRound=function(t){return c=Dm.call(t),s=Uh,e()},r.clamp=function(t){return arguments.length?(f=!!t,e()):f},r.interpolate=function(t){return arguments.length?(s=t,e()):s},e()}function qu(t){var n=t.domain;return t.ticks=function(t){var e=n();return hf(e[0],e[e.length-1],null==t?10:t)},t.tickFormat=function(t,e){return Bm(n(),t,e)},t.nice=function(e){null==e&&(e=10);var i,o=n(),u=0,a=o.length-1,c=o[u],s=o[a];return s<c&&(i=c,c=s,s=i,i=u,u=a,a=i),i=r(c,s,e),i>0?(c=Math.floor(c/i)*i,s=Math.ceil(s/i)*i,i=r(c,s,e)):i<0&&(c=Math.ceil(c*i)/i,s=Math.floor(s*i)/i,i=r(c,s,e)),i>0?(o[u]=Math.floor(c/i)*i,o[a]=Math.ceil(s/i)*i,n(o)):i<0&&(o[u]=Math.ceil(c*i)/i,o[a]=Math.floor(s*i)/i,n(o)),t},t}function Uu(){var t=Ru(Eu,Ch);return t.copy=function(){return Lu(t,Uu())},qu(t)}function Du(){function t(t){return+t}var n=[0,1];return t.invert=t,t.domain=t.range=function(e){return arguments.length?(n=Um.call(e,Im),t):n.slice()},t.copy=function(){return Du().domain(n)},qu(t)}function Ou(t,n){return(n=Math.log(n/t))?function(e){return Math.log(e/t)/n}:Fm(n)}function Fu(t,n){return t<0?function(e){return-Math.pow(-n,e)*Math.pow(-t,1-e)}:function(e){return Math.pow(n,e)*Math.pow(t,1-e)}}function Iu(t){return isFinite(t)?+("1e"+t):t<0?0:t}function Yu(t){return 10===t?Iu:t===Math.E?Math.exp:function(n){return Math.pow(t,n)}}function Bu(t){return t===Math.E?Math.log:10===t&&Math.log10||2===t&&Math.log2||(t=Math.log(t),function(n){return Math.log(n)/t})}function Hu(t){return function(n){return-t(-n)}}function ju(){function n(){return o=Bu(i),u=Yu(i),r()[0]<0&&(o=Hu(o),u=Hu(u)),e}var e=Ru(Ou,Fu).domain([1,10]),r=e.domain,i=10,o=Bu(10),u=Yu(10);return e.base=function(t){return arguments.length?(i=+t,n()):i},e.domain=function(t){return arguments.length?(r(t),n()):r()},e.ticks=function(t){var n,e=r(),a=e[0],c=e[e.length-1];(n=c<a)&&(h=a,a=c,c=h);var s,f,l,h=o(a),p=o(c),d=null==t?10:+t,v=[];if(!(i%1)&&p-h<d){if(h=Math.round(h)-1,p=Math.round(p)+1,a>0){for(;h<p;++h)for(f=1,s=u(h);f<i;++f)if(!((l=s*f)<a)){if(l>c)break;v.push(l)}}else for(;h<p;++h)for(f=i-1,s=u(h);f>=1;--f)if(!((l=s*f)<a)){if(l>c)break;v.push(l)}}else v=hf(h,p,Math.min(p-h,d)).map(u);return n?v.reverse():v},e.tickFormat=function(n,r){if(null==r&&(r=10===i?".0e":","),"function"!=typeof r&&(r=t.format(r)),n===1/0)return r;null==n&&(n=10);var a=Math.max(1,i*n/e.ticks().length);return function(t){var n=t/u(Math.round(o(t)));return n*i<i-.5&&(n*=i),n<=a?r(t):""}},e.nice=function(){return r(Hm(r(),{floor:function(t){return u(Math.floor(o(t)))},ceil:function(t){return u(Math.ceil(o(t)))}}))},e.copy=function(){return Lu(e,ju().base(i))},e}function Xu(t,n){return t<0?-Math.pow(-t,n):Math.pow(t,n)}function $u(){function t(t,n){return(n=Xu(n,e)-(t=Xu(t,e)))?function(r){return(Xu(r,e)-t)/n}:Fm(n)}function n(t,n){return n=Xu(n,e)-(t=Xu(t,e)),function(r){return Xu(t+n*r,1/e)}}var e=1,r=Ru(t,n),i=r.domain;return r.exponent=function(t){return arguments.length?(e=+t,i(i())):e},r.copy=function(){return Lu(r,$u().exponent(e))},qu(r)}function Vu(){return $u().exponent(.5)}function Wu(){function t(){var t=0,o=Math.max(1,r.length);for(i=new Array(o-1);++t<o;)i[t-1]=vf(e,t/o);return n}function n(t){if(!isNaN(t=+t))return r[Vs(i,t)]}var e=[],r=[],i=[];return n.invertExtent=function(t){var n=r.indexOf(t);return n<0?[NaN,NaN]:[n>0?i[n-1]:e[0],n<i.length?i[n]:e[e.length-1]]},n.domain=function(n){if(!arguments.length)return e.slice();e=[];for(var r,i=0,o=n.length;i<o;++i)null==(r=n[i])||isNaN(r=+r)||e.push(r);return e.sort(js),t()},n.range=function(n){return arguments.length?(r=Dm.call(n),t()):r.slice()},n.quantiles=function(){return i.slice()},n.copy=function(){return Wu().domain(e).range(r)},n}function Zu(){function t(t){if(t<=t)return u[Vs(o,t,0,i)]}function n(){var n=-1;for(o=new Array(i);++n<i;)o[n]=((n+1)*r-(n-i)*e)/(i+1);return t}var e=0,r=1,i=1,o=[.5],u=[0,1];return t.domain=function(t){return arguments.length?(e=+t[0],r=+t[1],n()):[e,r]},t.range=function(t){return arguments.length?(i=(u=Dm.call(t)).length-1,n()):u.slice()},t.invertExtent=function(t){var n=u.indexOf(t);return n<0?[NaN,NaN]:n<1?[e,o[0]]:n>=i?[o[i-1],r]:[o[n-1],o[n]]},t.copy=function(){return Zu().domain([e,r]).range(u)},qu(t)}function Gu(){function t(t){if(t<=t)return e[Vs(n,t,0,r)]}var n=[.5],e=[0,1],r=1;return t.domain=function(i){return arguments.length?(n=Dm.call(i),r=Math.min(n.length,e.length-1),t):n.slice()},t.range=function(i){return arguments.length?(e=Dm.call(i),r=Math.min(n.length,e.length-1),t):e.slice()},t.invertExtent=function(t){var r=e.indexOf(t);return[n[r-1],n[r]]},t.copy=function(){return Gu().domain(n).range(e)},t}function Ju(t,n,e,r){function i(n){return t(n=new Date(+n)),n}return i.floor=i,i.ceil=function(e){return t(e=new Date(e-1)),n(e,1),t(e),e},i.round=function(t){var n=i(t),e=i.ceil(t);return t-n<e-t?n:e},i.offset=function(t,e){return n(t=new Date(+t),null==e?1:Math.floor(e)),t},i.range=function(e,r,o){var u=[];if(e=i.ceil(e),o=null==o?1:Math.floor(o),!(e<r&&o>0))return u;do{u.push(new Date(+e))}while(n(e,o),t(e),e<r);return u},i.filter=function(e){return Ju(function(n){if(n>=n)for(;t(n),!e(n);)n.setTime(n-1)},function(t,r){if(t>=t)for(;--r>=0;)for(;n(t,1),!e(t););})},e&&(i.count=function(n,r){return jm.setTime(+n),Xm.setTime(+r),t(jm),t(Xm),Math.floor(e(jm,Xm))},i.every=function(t){return t=Math.floor(t),isFinite(t)&&t>0?t>1?i.filter(r?function(n){return r(n)%t==0}:function(n){return i.count(0,n)%t==0}):i:null}),i}function Qu(t){return Ju(function(n){n.setDate(n.getDate()-(n.getDay()+7-t)%7),n.setHours(0,0,0,0)},function(t,n){t.setDate(t.getDate()+7*n)},function(t,n){return(n-t-(n.getTimezoneOffset()-t.getTimezoneOffset())*Wm)/Zm})}function Ku(t){return Ju(function(n){n.setUTCDate(n.getUTCDate()-(n.getUTCDay()+7-t)%7),n.setUTCHours(0,0,0,0)},function(t,n){t.setUTCDate(t.getUTCDate()+7*n)},function(t,n){return(n-t)/Zm})}function ta(t){if(0<=t.y&&t.y<100){var n=new Date(-1,t.m,t.d,t.H,t.M,t.S,t.L);return n.setFullYear(t.y),n}return new Date(t.y,t.m,t.d,t.H,t.M,t.S,t.L)}function na(t){if(0<=t.y&&t.y<100){var n=new Date(Date.UTC(-1,t.m,t.d,t.H,t.M,t.S,t.L));return n.setUTCFullYear(t.y),n}return new Date(Date.UTC(t.y,t.m,t.d,t.H,t.M,t.S,t.L))}function ea(t){return{y:t,m:0,d:1,H:0,M:0,S:0,L:0}}function ra(t){function n(t,n){return function(e){var r,i,o,u=[],a=-1,c=0,s=t.length;for(e instanceof Date||(e=new Date(+e));++a<s;)37===t.charCodeAt(a)&&(u.push(t.slice(c,a)),null!=(i=Vx[r=t.charAt(++a)])?r=t.charAt(++a):i="e"===r?" ":"0",(o=n[r])&&(r=o(e,i)),
u.push(r),c=a+1);return u.push(t.slice(c,a)),u.join("")}}function e(t,n){return function(e){var i=ea(1900);if(r(i,t,e+="",0)!=e.length)return null;if("p"in i&&(i.H=i.H%12+12*i.p),"W"in i||"U"in i){"w"in i||(i.w="W"in i?1:0);var o="Z"in i?na(ea(i.y)).getUTCDay():n(ea(i.y)).getDay();i.m=0,i.d="W"in i?(i.w+6)%7+7*i.W-(o+5)%7:i.w+7*i.U-(o+6)%7}return"Z"in i?(i.H+=i.Z/100|0,i.M+=i.Z%100,na(i)):n(i)}}function r(t,n,e,r){for(var i,o,u=0,a=n.length,c=e.length;u<a;){if(r>=c)return-1;if(37===(i=n.charCodeAt(u++))){if(i=n.charAt(u++),!(o=B[i in Vx?n.charAt(u++):i])||(r=o(t,e,r))<0)return-1}else if(i!=e.charCodeAt(r++))return-1}return r}function i(t,n,e){var r=C.exec(n.slice(e));return r?(t.p=z[r[0].toLowerCase()],e+r[0].length):-1}function o(t,n,e){var r=R.exec(n.slice(e));return r?(t.w=q[r[0].toLowerCase()],e+r[0].length):-1}function u(t,n,e){var r=P.exec(n.slice(e));return r?(t.w=L[r[0].toLowerCase()],e+r[0].length):-1}function a(t,n,e){var r=O.exec(n.slice(e));return r?(t.m=F[r[0].toLowerCase()],e+r[0].length):-1}function c(t,n,e){var r=U.exec(n.slice(e));return r?(t.m=D[r[0].toLowerCase()],e+r[0].length):-1}function s(t,n,e){return r(t,w,n,e)}function f(t,n,e){return r(t,M,n,e)}function l(t,n,e){return r(t,T,n,e)}function h(t){return S[t.getDay()]}function p(t){return N[t.getDay()]}function d(t){return A[t.getMonth()]}function v(t){return E[t.getMonth()]}function _(t){return k[+(t.getHours()>=12)]}function y(t){return S[t.getUTCDay()]}function g(t){return N[t.getUTCDay()]}function m(t){return A[t.getUTCMonth()]}function x(t){return E[t.getUTCMonth()]}function b(t){return k[+(t.getUTCHours()>=12)]}var w=t.dateTime,M=t.date,T=t.time,k=t.periods,N=t.days,S=t.shortDays,E=t.months,A=t.shortMonths,C=ua(k),z=aa(k),P=ua(N),L=aa(N),R=ua(S),q=aa(S),U=ua(E),D=aa(E),O=ua(A),F=aa(A),I={a:h,A:p,b:d,B:v,c:null,d:wa,e:wa,H:Ma,I:Ta,j:ka,L:Na,m:Sa,M:Ea,p:_,S:Aa,U:Ca,w:za,W:Pa,x:null,X:null,y:La,Y:Ra,Z:qa,"%":Ga},Y={a:y,A:g,b:m,B:x,c:null,d:Ua,e:Ua,H:Da,I:Oa,j:Fa,L:Ia,m:Ya,M:Ba,p:b,S:Ha,U:ja,w:Xa,W:$a,x:null,X:null,y:Va,Y:Wa,Z:Za,"%":Ga},B={a:o,A:u,b:a,B:c,c:s,d:va,e:va,H:ya,I:ya,j:_a,L:xa,m:da,M:ga,p:i,S:ma,U:sa,w:ca,W:fa,x:f,X:l,y:ha,Y:la,Z:pa,"%":ba};return I.x=n(M,I),I.X=n(T,I),I.c=n(w,I),Y.x=n(M,Y),Y.X=n(T,Y),Y.c=n(w,Y),{format:function(t){var e=n(t+="",I);return e.toString=function(){return t},e},parse:function(t){var n=e(t+="",ta);return n.toString=function(){return t},n},utcFormat:function(t){var e=n(t+="",Y);return e.toString=function(){return t},e},utcParse:function(t){var n=e(t,na);return n.toString=function(){return t},n}}}function ia(t,n,e){var r=t<0?"-":"",i=(r?-t:t)+"",o=i.length;return r+(o<e?new Array(e-o+1).join(n)+i:i)}function oa(t){return t.replace(Gx,"\\$&")}function ua(t){return new RegExp("^(?:"+t.map(oa).join("|")+")","i")}function aa(t){for(var n={},e=-1,r=t.length;++e<r;)n[t[e].toLowerCase()]=e;return n}function ca(t,n,e){var r=Wx.exec(n.slice(e,e+1));return r?(t.w=+r[0],e+r[0].length):-1}function sa(t,n,e){var r=Wx.exec(n.slice(e));return r?(t.U=+r[0],e+r[0].length):-1}function fa(t,n,e){var r=Wx.exec(n.slice(e));return r?(t.W=+r[0],e+r[0].length):-1}function la(t,n,e){var r=Wx.exec(n.slice(e,e+4));return r?(t.y=+r[0],e+r[0].length):-1}function ha(t,n,e){var r=Wx.exec(n.slice(e,e+2));return r?(t.y=+r[0]+(+r[0]>68?1900:2e3),e+r[0].length):-1}function pa(t,n,e){var r=/^(Z)|([+-]\d\d)(?:\:?(\d\d))?/.exec(n.slice(e,e+6));return r?(t.Z=r[1]?0:-(r[2]+(r[3]||"00")),e+r[0].length):-1}function da(t,n,e){var r=Wx.exec(n.slice(e,e+2));return r?(t.m=r[0]-1,e+r[0].length):-1}function va(t,n,e){var r=Wx.exec(n.slice(e,e+2));return r?(t.d=+r[0],e+r[0].length):-1}function _a(t,n,e){var r=Wx.exec(n.slice(e,e+3));return r?(t.m=0,t.d=+r[0],e+r[0].length):-1}function ya(t,n,e){var r=Wx.exec(n.slice(e,e+2));return r?(t.H=+r[0],e+r[0].length):-1}function ga(t,n,e){var r=Wx.exec(n.slice(e,e+2));return r?(t.M=+r[0],e+r[0].length):-1}function ma(t,n,e){var r=Wx.exec(n.slice(e,e+2));return r?(t.S=+r[0],e+r[0].length):-1}function xa(t,n,e){var r=Wx.exec(n.slice(e,e+3));return r?(t.L=+r[0],e+r[0].length):-1}function ba(t,n,e){var r=Zx.exec(n.slice(e,e+1));return r?e+r[0].length:-1}function wa(t,n){return ia(t.getDate(),n,2)}function Ma(t,n){return ia(t.getHours(),n,2)}function Ta(t,n){return ia(t.getHours()%12||12,n,2)}function ka(t,n){return ia(1+ex.count(xx(t),t),n,3)}function Na(t,n){return ia(t.getMilliseconds(),n,3)}function Sa(t,n){return ia(t.getMonth()+1,n,2)}function Ea(t,n){return ia(t.getMinutes(),n,2)}function Aa(t,n){return ia(t.getSeconds(),n,2)}function Ca(t,n){return ia(ix.count(xx(t),t),n,2)}function za(t){return t.getDay()}function Pa(t,n){return ia(ox.count(xx(t),t),n,2)}function La(t,n){return ia(t.getFullYear()%100,n,2)}function Ra(t,n){return ia(t.getFullYear()%1e4,n,4)}function qa(t){var n=t.getTimezoneOffset();return(n>0?"-":(n*=-1,"+"))+ia(n/60|0,"0",2)+ia(n%60,"0",2)}function Ua(t,n){return ia(t.getUTCDate(),n,2)}function Da(t,n){return ia(t.getUTCHours(),n,2)}function Oa(t,n){return ia(t.getUTCHours()%12||12,n,2)}function Fa(t,n){return ia(1+Nx.count(jx(t),t),n,3)}function Ia(t,n){return ia(t.getUTCMilliseconds(),n,3)}function Ya(t,n){return ia(t.getUTCMonth()+1,n,2)}function Ba(t,n){return ia(t.getUTCMinutes(),n,2)}function Ha(t,n){return ia(t.getUTCSeconds(),n,2)}function ja(t,n){return ia(Ex.count(jx(t),t),n,2)}function Xa(t){return t.getUTCDay()}function $a(t,n){return ia(Ax.count(jx(t),t),n,2)}function Va(t,n){return ia(t.getUTCFullYear()%100,n,2)}function Wa(t,n){return ia(t.getUTCFullYear()%1e4,n,4)}function Za(){return"+0000"}function Ga(){return"%"}function Ja(n){return Xx=ra(n),t.timeFormat=Xx.format,t.timeParse=Xx.parse,t.utcFormat=Xx.utcFormat,t.utcParse=Xx.utcParse,Xx}function Qa(t){return t.toISOString()}function Ka(t){var n=new Date(t);return isNaN(n)?null:n}function tc(t){return new Date(t)}function nc(t){return t instanceof Date?+t:+new Date(+t)}function ec(t,n,e,r,o,u,a,c,s){function f(i){return(a(i)<i?v:u(i)<i?_:o(i)<i?y:r(i)<i?g:n(i)<i?e(i)<i?m:x:t(i)<i?b:w)(i)}function l(n,e,r,o){if(null==n&&(n=10),"number"==typeof n){var u=Math.abs(r-e)/n,a=Xs(function(t){return t[2]}).right(M,u);a===M.length?(o=i(e/ob,r/ob,n),n=t):a?(a=M[u/M[a-1][2]<M[a][2]/u?a-1:a],o=a[1],n=a[0]):(o=i(e,r,n),n=c)}return null==o?n:n.every(o)}var h=Ru(Eu,Ch),p=h.invert,d=h.domain,v=s(".%L"),_=s(":%S"),y=s("%I:%M"),g=s("%I %p"),m=s("%a %d"),x=s("%b %d"),b=s("%B"),w=s("%Y"),M=[[a,1,Kx],[a,5,5*Kx],[a,15,15*Kx],[a,30,30*Kx],[u,1,tb],[u,5,5*tb],[u,15,15*tb],[u,30,30*tb],[o,1,nb],[o,3,3*nb],[o,6,6*nb],[o,12,12*nb],[r,1,eb],[r,2,2*eb],[e,1,rb],[n,1,ib],[n,3,3*ib],[t,1,ob]];return h.invert=function(t){return new Date(p(t))},h.domain=function(t){return arguments.length?d(Um.call(t,nc)):d().map(tc)},h.ticks=function(t,n){var e,r=d(),i=r[0],o=r[r.length-1],u=o<i;return u&&(e=i,i=o,o=e),e=l(t,i,o,n),e=e?e.range(i,o+1):[],u?e.reverse():e},h.tickFormat=function(t,n){return null==n?f:s(n)},h.nice=function(t,n){var e=d();return(t=l(t,e[0],e[e.length-1],n))?d(Hm(e,t)):h},h.copy=function(){return Lu(h,ec(t,n,e,r,o,u,a,c,s))},h}function rc(t){var n=t.length;return function(e){return t[Math.max(0,Math.min(n-1,Math.floor(e*n)))]}}function ic(t){function n(n){var o=(n-e)/(r-e);return t(i?Math.max(0,Math.min(1,o)):o)}var e=0,r=1,i=!1;return n.domain=function(t){return arguments.length?(e=+t[0],r=+t[1],n):[e,r]},n.clamp=function(t){return arguments.length?(i=!!t,n):i},n.interpolator=function(e){return arguments.length?(t=e,n):t},n.copy=function(){return ic(t).domain([e,r]).clamp(i)},qu(n)}function oc(t){return t>1?0:t<-1?zb:Math.acos(t)}function uc(t){return t>=1?Pb:t<=-1?-Pb:Math.asin(t)}function ac(t){return t.innerRadius}function cc(t){return t.outerRadius}function sc(t){return t.startAngle}function fc(t){return t.endAngle}function lc(t){return t&&t.padAngle}function hc(t,n,e,r,i,o,u,a){var c=e-t,s=r-n,f=u-i,l=a-o,h=(f*(n-o)-l*(t-i))/(l*c-f*s);return[t+h*c,n+h*s]}function pc(t,n,e,r,i,o,u){var a=t-e,c=n-r,s=(u?o:-o)/Ab(a*a+c*c),f=s*c,l=-s*a,h=t+f,p=n+l,d=e+f,v=r+l,_=(h+d)/2,y=(p+v)/2,g=d-h,m=v-p,x=g*g+m*m,b=i-o,w=h*v-d*p,M=(m<0?-1:1)*Ab(Nb(0,b*b*x-w*w)),T=(w*m-g*M)/x,k=(-w*g-m*M)/x,N=(w*m+g*M)/x,S=(-w*g+m*M)/x,E=T-_,A=k-y,C=N-_,z=S-y;return E*E+A*A>C*C+z*z&&(T=N,k=S),{cx:T,cy:k,x01:-f,y01:-l,x11:T*(i/b-1),y11:k*(i/b-1)}}function dc(t){this._context=t}function vc(t){return t[0]}function _c(t){return t[1]}function yc(t){this._curve=t}function gc(t){function n(n){return new yc(t(n))}return n._curve=t,n}function mc(t){var n=t.curve;return t.angle=t.x,delete t.x,t.radius=t.y,delete t.y,t.curve=function(t){return arguments.length?n(gc(t)):n()._curve},t}function xc(t){return t.source}function bc(t){return t.target}function wc(t){function n(){var n,a=jb.call(arguments),c=e.apply(this,a),s=r.apply(this,a);if(u||(u=n=Ue()),t(u,+i.apply(this,(a[0]=c,a)),+o.apply(this,a),+i.apply(this,(a[0]=s,a)),+o.apply(this,a)),n)return u=null,n+""||null}var e=xc,r=bc,i=vc,o=_c,u=null;return n.source=function(t){return arguments.length?(e=t,n):e},n.target=function(t){return arguments.length?(r=t,n):r},n.x=function(t){return arguments.length?(i="function"==typeof t?t:wb(+t),n):i},n.y=function(t){return arguments.length?(o="function"==typeof t?t:wb(+t),n):o},n.context=function(t){return arguments.length?(u=null==t?null:t,n):u},n}function Mc(t,n,e,r,i){t.moveTo(n,e),t.bezierCurveTo(n=(n+r)/2,e,n,i,r,i)}function Tc(t,n,e,r,i){t.moveTo(n,e),t.bezierCurveTo(n,e=(e+i)/2,r,e,r,i)}function kc(t,n,e,r,i){var o=Xb(n,e),u=Xb(n,e=(e+i)/2),a=Xb(r,e),c=Xb(r,i);t.moveTo(o[0],o[1]),t.bezierCurveTo(u[0],u[1],a[0],a[1],c[0],c[1])}function Nc(){return wc(Mc)}function Sc(){return wc(Tc)}function Ec(){var t=wc(kc);return t.angle=t.x,delete t.x,t.radius=t.y,delete t.y,t}function Ac(t,n,e){t._context.bezierCurveTo((2*t._x0+t._x1)/3,(2*t._y0+t._y1)/3,(t._x0+2*t._x1)/3,(t._y0+2*t._y1)/3,(t._x0+4*t._x1+n)/6,(t._y0+4*t._y1+e)/6)}function Cc(t){this._context=t}function zc(t){this._context=t}function Pc(t){this._context=t}function Lc(t,n){this._basis=new Cc(t),this._beta=n}function Rc(t,n,e){t._context.bezierCurveTo(t._x1+t._k*(t._x2-t._x0),t._y1+t._k*(t._y2-t._y0),t._x2+t._k*(t._x1-n),t._y2+t._k*(t._y1-e),t._x2,t._y2)}function qc(t,n){this._context=t,this._k=(1-n)/6}function Uc(t,n){this._context=t,this._k=(1-n)/6}function Dc(t,n){this._context=t,this._k=(1-n)/6}function Oc(t,n,e){var r=t._x1,i=t._y1,o=t._x2,u=t._y2;if(t._l01_a>Cb){var a=2*t._l01_2a+3*t._l01_a*t._l12_a+t._l12_2a,c=3*t._l01_a*(t._l01_a+t._l12_a);r=(r*a-t._x0*t._l12_2a+t._x2*t._l01_2a)/c,i=(i*a-t._y0*t._l12_2a+t._y2*t._l01_2a)/c}if(t._l23_a>Cb){var s=2*t._l23_2a+3*t._l23_a*t._l12_a+t._l12_2a,f=3*t._l23_a*(t._l23_a+t._l12_a);o=(o*s+t._x1*t._l23_2a-n*t._l12_2a)/f,u=(u*s+t._y1*t._l23_2a-e*t._l12_2a)/f}t._context.bezierCurveTo(r,i,o,u,t._x2,t._y2)}function Fc(t,n){this._context=t,this._alpha=n}function Ic(t,n){this._context=t,this._alpha=n}function Yc(t,n){this._context=t,this._alpha=n}function Bc(t){this._context=t}function Hc(t){return t<0?-1:1}function jc(t,n,e){var r=t._x1-t._x0,i=n-t._x1,o=(t._y1-t._y0)/(r||i<0&&-0),u=(e-t._y1)/(i||r<0&&-0),a=(o*i+u*r)/(r+i);return(Hc(o)+Hc(u))*Math.min(Math.abs(o),Math.abs(u),.5*Math.abs(a))||0}function Xc(t,n){var e=t._x1-t._x0;return e?(3*(t._y1-t._y0)/e-n)/2:n}function $c(t,n,e){var r=t._x0,i=t._y0,o=t._x1,u=t._y1,a=(o-r)/3;t._context.bezierCurveTo(r+a,i+a*n,o-a,u-a*e,o,u)}function Vc(t){this._context=t}function Wc(t){this._context=new Zc(t)}function Zc(t){this._context=t}function Gc(t){return new Vc(t)}function Jc(t){return new Wc(t)}function Qc(t){this._context=t}function Kc(t){var n,e,r=t.length-1,i=new Array(r),o=new Array(r),u=new Array(r);for(i[0]=0,o[0]=2,u[0]=t[0]+2*t[1],n=1;n<r-1;++n)i[n]=1,o[n]=4,u[n]=4*t[n]+2*t[n+1];for(i[r-1]=2,o[r-1]=7,u[r-1]=8*t[r-1]+t[r],n=1;n<r;++n)e=i[n]/o[n-1],o[n]-=e,u[n]-=e*u[n-1];for(i[r-1]=u[r-1]/o[r-1],n=r-2;n>=0;--n)i[n]=(u[n]-i[n+1])/o[n];for(o[r-1]=(t[r]+i[r-1])/2,n=0;n<r-1;++n)o[n]=2*t[n+1]-i[n+1];return[i,o]}function ts(t,n){this._context=t,this._t=n}function ns(t){return new ts(t,0)}function es(t){return new ts(t,1)}function rs(t,n){return t[n]}function is(t){for(var n,e=0,r=-1,i=t.length;++r<i;)(n=+t[r][1])&&(e+=n);return e}function os(t){return t[0]}function us(t){return t[1]}function as(){this._=null}function cs(t){t.U=t.C=t.L=t.R=t.P=t.N=null}function ss(t,n){var e=n,r=n.R,i=e.U;i?i.L===e?i.L=r:i.R=r:t._=r,r.U=i,e.U=r,e.R=r.L,e.R&&(e.R.U=e),r.L=e}function fs(t,n){var e=n,r=n.L,i=e.U;i?i.L===e?i.L=r:i.R=r:t._=r,r.U=i,e.U=r,e.L=r.R,e.L&&(e.L.U=e),r.R=e}function ls(t){for(;t.L;)t=t.L;return t}function hs(t,n,e,r){var i=[null,null],o=Yw.push(i)-1;return i.left=t,i.right=n,e&&ds(i,t,n,e),r&&ds(i,n,t,r),Fw[t.index].halfedges.push(o),Fw[n.index].halfedges.push(o),i}function ps(t,n,e){var r=[n,e];return r.left=t,r}function ds(t,n,e,r){t[0]||t[1]?t.left===e?t[1]=r:t[0]=r:(t[0]=r,t.left=n,t.right=e)}function vs(t,n,e,r,i){var o,u=t[0],a=t[1],c=u[0],s=u[1],f=a[0],l=a[1],h=0,p=1,d=f-c,v=l-s;if(o=n-c,d||!(o>0)){if(o/=d,d<0){if(o<h)return;o<p&&(p=o)}else if(d>0){if(o>p)return;o>h&&(h=o)}if(o=r-c,d||!(o<0)){if(o/=d,d<0){if(o>p)return;o>h&&(h=o)}else if(d>0){if(o<h)return;o<p&&(p=o)}if(o=e-s,v||!(o>0)){if(o/=v,v<0){if(o<h)return;o<p&&(p=o)}else if(v>0){if(o>p)return;o>h&&(h=o)}if(o=i-s,v||!(o<0)){if(o/=v,v<0){if(o>p)return;o>h&&(h=o)}else if(v>0){if(o<h)return;o<p&&(p=o)}return!(h>0||p<1)||(h>0&&(t[0]=[c+h*d,s+h*v]),p<1&&(t[1]=[c+p*d,s+p*v]),!0)}}}}}function _s(t,n,e,r,i){var o=t[1];if(o)return!0;var u,a,c=t[0],s=t.left,f=t.right,l=s[0],h=s[1],p=f[0],d=f[1],v=(l+p)/2,_=(h+d)/2;if(d===h){if(v<n||v>=r)return;if(l>p){if(c){if(c[1]>=i)return}else c=[v,e];o=[v,i]}else{if(c){if(c[1]<e)return}else c=[v,i];o=[v,e]}}else if(u=(l-p)/(d-h),a=_-u*v,u<-1||u>1)if(l>p){if(c){if(c[1]>=i)return}else c=[(e-a)/u,e];o=[(i-a)/u,i]}else{if(c){if(c[1]<e)return}else c=[(i-a)/u,i];o=[(e-a)/u,e]}else if(h<d){if(c){if(c[0]>=r)return}else c=[n,u*n+a];o=[r,u*r+a]}else{if(c){if(c[0]<n)return}else c=[r,u*r+a];o=[n,u*n+a]}return t[0]=c,t[1]=o,!0}function ys(t,n,e,r){for(var i,o=Yw.length;o--;)_s(i=Yw[o],t,n,e,r)&&vs(i,t,n,e,r)&&(Math.abs(i[0][0]-i[1][0])>jw||Math.abs(i[0][1]-i[1][1])>jw)||delete Yw[o]}function gs(t){return Fw[t.index]={site:t,halfedges:[]}}function ms(t,n){var e=t.site,r=n.left,i=n.right;return e===i&&(i=r,r=e),i?Math.atan2(i[1]-r[1],i[0]-r[0]):(e===r?(r=n[1],i=n[0]):(r=n[0],i=n[1]),Math.atan2(r[0]-i[0],i[1]-r[1]))}function xs(t,n){return n[+(n.left!==t.site)]}function bs(t,n){return n[+(n.left===t.site)]}function ws(){for(var t,n,e,r,i=0,o=Fw.length;i<o;++i)if((t=Fw[i])&&(r=(n=t.halfedges).length)){var u=new Array(r),a=new Array(r);for(e=0;e<r;++e)u[e]=e,a[e]=ms(t,Yw[n[e]]);for(u.sort(function(t,n){return a[n]-a[t]}),e=0;e<r;++e)a[e]=n[u[e]];for(e=0;e<r;++e)n[e]=a[e]}}function Ms(t,n,e,r){var i,o,u,a,c,s,f,l,h,p,d,v,_=Fw.length,y=!0;for(i=0;i<_;++i)if(o=Fw[i]){for(u=o.site,c=o.halfedges,a=c.length;a--;)Yw[c[a]]||c.splice(a,1);for(a=0,s=c.length;a<s;)p=bs(o,Yw[c[a]]),d=p[0],v=p[1],f=xs(o,Yw[c[++a%s]]),l=f[0],h=f[1],(Math.abs(d-l)>jw||Math.abs(v-h)>jw)&&(c.splice(a,0,Yw.push(ps(u,p,Math.abs(d-t)<jw&&r-v>jw?[t,Math.abs(l-t)<jw?h:r]:Math.abs(v-r)<jw&&e-d>jw?[Math.abs(h-r)<jw?l:e,r]:Math.abs(d-e)<jw&&v-n>jw?[e,Math.abs(l-e)<jw?h:n]:Math.abs(v-n)<jw&&d-t>jw?[Math.abs(h-n)<jw?l:t,n]:null))-1),++s);s&&(y=!1)}if(y){var g,m,x,b=1/0;for(i=0,y=null;i<_;++i)(o=Fw[i])&&(u=o.site,g=u[0]-t,m=u[1]-n,(x=g*g+m*m)<b&&(b=x,y=o));if(y){var w=[t,n],M=[t,r],T=[e,r],k=[e,n];y.halfedges.push(Yw.push(ps(u=y.site,w,M))-1,Yw.push(ps(u,M,T))-1,Yw.push(ps(u,T,k))-1,Yw.push(ps(u,k,w))-1)}}for(i=0;i<_;++i)(o=Fw[i])&&(o.halfedges.length||delete Fw[i])}function Ts(){cs(this),this.x=this.y=this.arc=this.site=this.cy=null}function ks(t){var n=t.P,e=t.N;if(n&&e){var r=n.site,i=t.site,o=e.site;if(r!==o){var u=i[0],a=i[1],c=r[0]-u,s=r[1]-a,f=o[0]-u,l=o[1]-a,h=2*(c*l-s*f);if(!(h>=-Xw)){var p=c*c+s*s,d=f*f+l*l,v=(l*p-s*d)/h,_=(c*d-f*p)/h,y=Bw.pop()||new Ts;y.arc=t,y.site=i,y.x=v+u,y.y=(y.cy=_+a)+Math.sqrt(v*v+_*_),t.circle=y;for(var g=null,m=Iw._;m;)if(y.y<m.y||y.y===m.y&&y.x<=m.x){if(!m.L){g=m.P;break}m=m.L}else{if(!m.R){g=m;break}m=m.R}Iw.insert(g,y),g||(Dw=y)}}}}function Ns(t){var n=t.circle;n&&(n.P||(Dw=n.N),Iw.remove(n),Bw.push(n),cs(n),t.circle=null)}function Ss(){cs(this),this.edge=this.site=this.circle=null}function Es(t){var n=Hw.pop()||new Ss;return n.site=t,n}function As(t){Ns(t),Ow.remove(t),Hw.push(t),cs(t)}function Cs(t){var n=t.circle,e=n.x,r=n.cy,i=[e,r],o=t.P,u=t.N,a=[t];As(t);for(var c=o;c.circle&&Math.abs(e-c.circle.x)<jw&&Math.abs(r-c.circle.cy)<jw;)o=c.P,a.unshift(c),As(c),c=o;a.unshift(c),Ns(c);for(var s=u;s.circle&&Math.abs(e-s.circle.x)<jw&&Math.abs(r-s.circle.cy)<jw;)u=s.N,a.push(s),As(s),s=u;a.push(s),Ns(s);var f,l=a.length;for(f=1;f<l;++f)s=a[f],c=a[f-1],ds(s.edge,c.site,s.site,i);c=a[0],s=a[l-1],s.edge=hs(c.site,s.site,null,i),ks(c),ks(s)}function zs(t){for(var n,e,r,i,o=t[0],u=t[1],a=Ow._;a;)if((r=Ps(a,u)-o)>jw)a=a.L;else{if(!((i=o-Ls(a,u))>jw)){r>-jw?(n=a.P,e=a):i>-jw?(n=a,e=a.N):n=e=a;break}if(!a.R){n=a;break}a=a.R}gs(t);var c=Es(t);if(Ow.insert(n,c),n||e){if(n===e)return Ns(n),e=Es(n.site),Ow.insert(c,e),c.edge=e.edge=hs(n.site,c.site),ks(n),void ks(e);if(!e)return void(c.edge=hs(n.site,c.site));Ns(n),Ns(e);var s=n.site,f=s[0],l=s[1],h=t[0]-f,p=t[1]-l,d=e.site,v=d[0]-f,_=d[1]-l,y=2*(h*_-p*v),g=h*h+p*p,m=v*v+_*_,x=[(_*g-p*m)/y+f,(h*m-v*g)/y+l];ds(e.edge,s,d,x),c.edge=hs(s,t,null,x),e.edge=hs(t,d,null,x),ks(n),ks(e)}}function Ps(t,n){var e=t.site,r=e[0],i=e[1],o=i-n;if(!o)return r;var u=t.P;if(!u)return-1/0;e=u.site;var a=e[0],c=e[1],s=c-n;if(!s)return a;var f=a-r,l=1/o-1/s,h=f/s;return l?(-h+Math.sqrt(h*h-2*l*(f*f/(-2*s)-c+s/2+i-o/2)))/l+r:(r+a)/2}function Ls(t,n){var e=t.N;if(e)return Ps(e,n);var r=t.site;return r[1]===n?r[0]:1/0}function Rs(t,n,e){return(t[0]-e[0])*(n[1]-t[1])-(t[0]-n[0])*(e[1]-t[1])}function qs(t,n){return n[1]-t[1]||n[0]-t[0]}function Us(t,n){var e,r,i,o=t.sort(qs).pop();for(Yw=[],Fw=new Array(t.length),Ow=new as,Iw=new as;;)if(i=Dw,o&&(!i||o[1]<i.y||o[1]===i.y&&o[0]<i.x))o[0]===e&&o[1]===r||(zs(o),e=o[0],r=o[1]),o=t.pop();else{if(!i)break;Cs(i.arc)}if(ws(),n){var u=+n[0][0],a=+n[0][1],c=+n[1][0],s=+n[1][1];ys(u,a,c,s),Ms(u,a,c,s)}this.edges=Yw,this.cells=Fw,Ow=Iw=Yw=Fw=null}function Ds(t,n,e){this.target=t,this.type=n,this.transform=e}function Os(t,n,e){this.k=t,this.x=n,this.y=e}function Fs(t){return t.__zoom||Ww}function Is(){t.event.stopImmediatePropagation()}function Ys(){return!t.event.button}function Bs(){var t,n,e=this;return e instanceof SVGElement?(e=e.ownerSVGElement||e,t=e.width.baseVal.value,n=e.height.baseVal.value):(t=e.clientWidth,n=e.clientHeight),[[0,0],[t,n]]}function Hs(){return this.__zoom||Ww}var js=function(t,n){return t<n?-1:t>n?1:t>=n?0:NaN},Xs=function(t){return 1===t.length&&(t=n(t)),{left:function(n,e,r,i){for(null==r&&(r=0),null==i&&(i=n.length);r<i;){var o=r+i>>>1;t(n[o],e)<0?r=o+1:i=o}return r},right:function(n,e,r,i){for(null==r&&(r=0),null==i&&(i=n.length);r<i;){var o=r+i>>>1;t(n[o],e)>0?i=o:r=o+1}return r}}},$s=Xs(js),Vs=$s.right,Ws=$s.left,Zs=function(t,n){null==n&&(n=e);for(var r=0,i=t.length-1,o=t[0],u=new Array(i<0?0:i);r<i;)u[r]=n(o,o=t[++r]);return u},Gs=function(t,n,r){var i,o,u,a,c=t.length,s=n.length,f=new Array(c*s);for(null==r&&(r=e),i=u=0;i<c;++i)for(a=t[i],o=0;o<s;++o,++u)f[u]=r(a,n[o]);return f},Js=function(t,n){return n<t?-1:n>t?1:n>=t?0:NaN},Qs=function(t){return null===t?NaN:+t},Ks=function(t,n){var e,r,i=t.length,o=0,u=-1,a=0,c=0;if(null==n)for(;++u<i;)isNaN(e=Qs(t[u]))||(r=e-a,a+=r/++o,c+=r*(e-a));else for(;++u<i;)isNaN(e=Qs(n(t[u],u,t)))||(r=e-a,a+=r/++o,c+=r*(e-a));if(o>1)return c/(o-1)},tf=function(t,n){var e=Ks(t,n);return e?Math.sqrt(e):e},nf=function(t,n){var e,r,i,o=t.length,u=-1;if(null==n){for(;++u<o;)if(null!=(e=t[u])&&e>=e)for(r=i=e;++u<o;)null!=(e=t[u])&&(r>e&&(r=e),i<e&&(i=e))}else for(;++u<o;)if(null!=(e=n(t[u],u,t))&&e>=e)for(r=i=e;++u<o;)null!=(e=n(t[u],u,t))&&(r>e&&(r=e),i<e&&(i=e));return[r,i]},ef=Array.prototype,rf=ef.slice,of=ef.map,uf=function(t){return function(){return t}},af=function(t){return t},cf=function(t,n,e){t=+t,n=+n,e=(i=arguments.length)<2?(n=t,t=0,1):i<3?1:+e;for(var r=-1,i=0|Math.max(0,Math.ceil((n-t)/e)),o=new Array(i);++r<i;)o[r]=t+r*e;return o},sf=Math.sqrt(50),ff=Math.sqrt(10),lf=Math.sqrt(2),hf=function(t,n,e){var i,o,u,a=n<t,c=-1;if(a&&(i=t,t=n,n=i),0===(u=r(t,n,e))||!isFinite(u))return[];if(u>0)for(t=Math.ceil(t/u),n=Math.floor(n/u),o=new Array(i=Math.ceil(n-t+1));++c<i;)o[c]=(t+c)*u;else for(t=Math.floor(t*u),n=Math.ceil(n*u),o=new Array(i=Math.ceil(t-n+1));++c<i;)o[c]=(t-c)/u;return a&&o.reverse(),o},pf=function(t){return Math.ceil(Math.log(t.length)/Math.LN2)+1},df=function(){function t(t){var o,u,a=t.length,c=new Array(a);for(o=0;o<a;++o)c[o]=n(t[o],o,t);var s=e(c),f=s[0],l=s[1],h=r(c,f,l);Array.isArray(h)||(h=i(f,l,h),h=cf(Math.ceil(f/h)*h,Math.floor(l/h)*h,h));for(var p=h.length;h[0]<=f;)h.shift(),--p;for(;h[p-1]>l;)h.pop(),--p;var d,v=new Array(p+1);for(o=0;o<=p;++o)d=v[o]=[],d.x0=o>0?h[o-1]:f,d.x1=o<p?h[o]:l;for(o=0;o<a;++o)u=c[o],f<=u&&u<=l&&v[Vs(h,u,0,p)].push(t[o]);return v}var n=af,e=nf,r=pf;return t.value=function(e){return arguments.length?(n="function"==typeof e?e:uf(e),t):n},t.domain=function(n){return arguments.length?(e="function"==typeof n?n:uf([n[0],n[1]]),t):e},t.thresholds=function(n){return arguments.length?(r="function"==typeof n?n:uf(Array.isArray(n)?rf.call(n):n),t):r},t},vf=function(t,n,e){if(null==e&&(e=Qs),r=t.length){if((n=+n)<=0||r<2)return+e(t[0],0,t);if(n>=1)return+e(t[r-1],r-1,t);var r,i=(r-1)*n,o=Math.floor(i),u=+e(t[o],o,t);return u+(+e(t[o+1],o+1,t)-u)*(i-o)}},_f=function(t,n,e){return t=of.call(t,Qs).sort(js),Math.ceil((e-n)/(2*(vf(t,.75)-vf(t,.25))*Math.pow(t.length,-1/3)))},yf=function(t,n,e){return Math.ceil((e-n)/(3.5*tf(t)*Math.pow(t.length,-1/3)))},gf=function(t,n){var e,r,i=t.length,o=-1;if(null==n){for(;++o<i;)if(null!=(e=t[o])&&e>=e)for(r=e;++o<i;)null!=(e=t[o])&&e>r&&(r=e)}else for(;++o<i;)if(null!=(e=n(t[o],o,t))&&e>=e)for(r=e;++o<i;)null!=(e=n(t[o],o,t))&&e>r&&(r=e);return r},mf=function(t,n){var e,r=t.length,i=r,o=-1,u=0;if(null==n)for(;++o<r;)isNaN(e=Qs(t[o]))?--i:u+=e;else for(;++o<r;)isNaN(e=Qs(n(t[o],o,t)))?--i:u+=e;if(i)return u/i},xf=function(t,n){var e,r=t.length,i=-1,o=[];if(null==n)for(;++i<r;)isNaN(e=Qs(t[i]))||o.push(e);else for(;++i<r;)isNaN(e=Qs(n(t[i],i,t)))||o.push(e);return vf(o.sort(js),.5)},bf=function(t){for(var n,e,r,i=t.length,o=-1,u=0;++o<i;)u+=t[o].length;for(e=new Array(u);--i>=0;)for(r=t[i],n=r.length;--n>=0;)e[--u]=r[n];return e},wf=function(t,n){var e,r,i=t.length,o=-1;if(null==n){for(;++o<i;)if(null!=(e=t[o])&&e>=e)for(r=e;++o<i;)null!=(e=t[o])&&r>e&&(r=e)}else for(;++o<i;)if(null!=(e=n(t[o],o,t))&&e>=e)for(r=e;++o<i;)null!=(e=n(t[o],o,t))&&r>e&&(r=e);return r},Mf=function(t,n){for(var e=n.length,r=new Array(e);e--;)r[e]=t[n[e]];return r},Tf=function(t,n){if(e=t.length){var e,r,i=0,o=0,u=t[o];for(null==n&&(n=js);++i<e;)(n(r=t[i],u)<0||0!==n(u,u))&&(u=r,o=i);return 0===n(u,u)?o:void 0}},kf=function(t,n,e){for(var r,i,o=(null==e?t.length:e)-(n=null==n?0:+n);o;)i=Math.random()*o--|0,r=t[o+n],t[o+n]=t[i+n],t[i+n]=r;return t},Nf=function(t,n){var e,r=t.length,i=-1,o=0;if(null==n)for(;++i<r;)(e=+t[i])&&(o+=e);else for(;++i<r;)(e=+n(t[i],i,t))&&(o+=e);return o},Sf=function(t){if(!(i=t.length))return[];for(var n=-1,e=wf(t,o),r=new Array(e);++n<e;)for(var i,u=-1,a=r[n]=new Array(i);++u<i;)a[u]=t[u][n];return r},Ef=function(){return Sf(arguments)},Af=Array.prototype.slice,Cf=function(t){return t},zf=1,Pf=2,Lf=3,Rf=4,qf=1e-6,Uf={value:function(){}};_.prototype=v.prototype={constructor:_,on:function(t,n){var e,r=this._,i=y(t+"",r),o=-1,u=i.length;{if(!(arguments.length<2)){if(null!=n&&"function"!=typeof n)throw new Error("invalid callback: "+n);for(;++o<u;)if(e=(t=i[o]).type)r[e]=m(r[e],t.name,n);else if(null==n)for(e in r)r[e]=m(r[e],t.name,null);return this}for(;++o<u;)if((e=(t=i[o]).type)&&(e=g(r[e],t.name)))return e}},copy:function(){var t={},n=this._;for(var e in n)t[e]=n[e].slice();return new _(t)},call:function(t,n){if((e=arguments.length-2)>0)for(var e,r,i=new Array(e),o=0;o<e;++o)i[o]=arguments[o+2];if(!this._.hasOwnProperty(t))throw new Error("unknown type: "+t);for(r=this._[t],o=0,e=r.length;o<e;++o)r[o].value.apply(n,i)},apply:function(t,n,e){if(!this._.hasOwnProperty(t))throw new Error("unknown type: "+t);for(var r=this._[t],i=0,o=r.length;i<o;++i)r[i].value.apply(n,e)}};var Df="http://www.w3.org/1999/xhtml",Of={svg:"http://www.w3.org/2000/svg",xhtml:Df,xlink:"http://www.w3.org/1999/xlink",xml:"http://www.w3.org/XML/1998/namespace",xmlns:"http://www.w3.org/2000/xmlns/"},Ff=function(t){var n=t+="",e=n.indexOf(":");return e>=0&&"xmlns"!==(n=t.slice(0,e))&&(t=t.slice(e+1)),Of.hasOwnProperty(n)?{space:Of[n],local:t}:t},If=function(t){var n=Ff(t);return(n.local?b:x)(n)},Yf=0;M.prototype=w.prototype={constructor:M,get:function(t){for(var n=this._;!(n in t);)if(!(t=t.parentNode))return;return t[n]},set:function(t,n){return t[this._]=n},remove:function(t){return this._ in t&&delete t[this._]},toString:function(){return this._}};var Bf=function(t){return function(){return this.matches(t)}};if("undefined"!=typeof document){var Hf=document.documentElement;if(!Hf.matches){var jf=Hf.webkitMatchesSelector||Hf.msMatchesSelector||Hf.mozMatchesSelector||Hf.oMatchesSelector;Bf=function(t){return function(){return jf.call(this,t)}}}}var Xf=Bf,$f={};if(t.event=null,"undefined"!=typeof document){"onmouseenter"in document.documentElement||($f={mouseenter:"mouseover",mouseleave:"mouseout"})}var Vf=function(t,n,e){var r,i,o=N(t+""),u=o.length;{if(!(arguments.length<2)){for(a=n?E:S,null==e&&(e=!1),r=0;r<u;++r)this.each(a(o[r],n,e));return this}var a=this.node().__on;if(a)for(var c,s=0,f=a.length;s<f;++s)for(r=0,c=a[s];r<u;++r)if((i=o[r]).type===c.type&&i.name===c.name)return c.value}},Wf=function(){for(var n,e=t.event;n=e.sourceEvent;)e=n;return e},Zf=function(t,n){var e=t.ownerSVGElement||t;if(e.createSVGPoint){var r=e.createSVGPoint();return r.x=n.clientX,r.y=n.clientY,r=r.matrixTransform(t.getScreenCTM().inverse()),[r.x,r.y]}var i=t.getBoundingClientRect();return[n.clientX-i.left-t.clientLeft,n.clientY-i.top-t.clientTop]},Gf=function(t){var n=Wf();return n.changedTouches&&(n=n.changedTouches[0]),Zf(t,n)},Jf=function(t){return null==t?C:function(){return this.querySelector(t)}},Qf=function(t){"function"!=typeof t&&(t=Jf(t));for(var n=this._groups,e=n.length,r=new Array(e),i=0;i<e;++i)for(var o,u,a=n[i],c=a.length,s=r[i]=new Array(c),f=0;f<c;++f)(o=a[f])&&(u=t.call(o,o.__data__,f,a))&&("__data__"in o&&(u.__data__=o.__data__),s[f]=u);return new _t(r,this._parents)},Kf=function(t){return null==t?z:function(){return this.querySelectorAll(t)}},tl=function(t){"function"!=typeof t&&(t=Kf(t));for(var n=this._groups,e=n.length,r=[],i=[],o=0;o<e;++o)for(var u,a=n[o],c=a.length,s=0;s<c;++s)(u=a[s])&&(r.push(t.call(u,u.__data__,s,a)),i.push(u));return new _t(r,i)},nl=function(t){"function"!=typeof t&&(t=Xf(t));for(var n=this._groups,e=n.length,r=new Array(e),i=0;i<e;++i)for(var o,u=n[i],a=u.length,c=r[i]=[],s=0;s<a;++s)(o=u[s])&&t.call(o,o.__data__,s,u)&&c.push(o);return new _t(r,this._parents)},el=function(t){return new Array(t.length)},rl=function(){return new _t(this._enter||this._groups.map(el),this._parents)};P.prototype={constructor:P,appendChild:function(t){return this._parent.insertBefore(t,this._next)},insertBefore:function(t,n){return this._parent.insertBefore(t,n)},querySelector:function(t){return this._parent.querySelector(t)},querySelectorAll:function(t){return this._parent.querySelectorAll(t)}};var il=function(t){return function(){return t}},ol="$",ul=function(t,n){if(!t)return p=new Array(this.size()),s=-1,this.each(function(t){p[++s]=t}),p;var e=n?R:L,r=this._parents,i=this._groups;"function"!=typeof t&&(t=il(t));for(var o=i.length,u=new Array(o),a=new Array(o),c=new Array(o),s=0;s<o;++s){var f=r[s],l=i[s],h=l.length,p=t.call(f,f&&f.__data__,s,r),d=p.length,v=a[s]=new Array(d),_=u[s]=new Array(d);e(f,l,v,_,c[s]=new Array(h),p,n);for(var y,g,m=0,x=0;m<d;++m)if(y=v[m]){for(m>=x&&(x=m+1);!(g=_[x])&&++x<d;);y._next=g||null}}return u=new _t(u,r),u._enter=a,u._exit=c,u},al=function(){return new _t(this._exit||this._groups.map(el),this._parents)},cl=function(t){for(var n=this._groups,e=t._groups,r=n.length,i=e.length,o=Math.min(r,i),u=new Array(r),a=0;a<o;++a)for(var c,s=n[a],f=e[a],l=s.length,h=u[a]=new Array(l),p=0;p<l;++p)(c=s[p]||f[p])&&(h[p]=c);for(;a<r;++a)u[a]=n[a];return new _t(u,this._parents)},sl=function(){for(var t=this._groups,n=-1,e=t.length;++n<e;)for(var r,i=t[n],o=i.length-1,u=i[o];--o>=0;)(r=i[o])&&(u&&u!==r.nextSibling&&u.parentNode.insertBefore(r,u),u=r);return this},fl=function(t){function n(n,e){return n&&e?t(n.__data__,e.__data__):!n-!e}t||(t=q);for(var e=this._groups,r=e.length,i=new Array(r),o=0;o<r;++o){for(var u,a=e[o],c=a.length,s=i[o]=new Array(c),f=0;f<c;++f)(u=a[f])&&(s[f]=u);s.sort(n)}return new _t(i,this._parents).order()},ll=function(){var t=arguments[0];return arguments[0]=this,t.apply(null,arguments),this},hl=function(){var t=new Array(this.size()),n=-1;return this.each(function(){t[++n]=this}),t},pl=function(){for(var t=this._groups,n=0,e=t.length;n<e;++n)for(var r=t[n],i=0,o=r.length;i<o;++i){var u=r[i];if(u)return u}return null},dl=function(){var t=0;return this.each(function(){++t}),t},vl=function(){return!this.node()},_l=function(t){for(var n=this._groups,e=0,r=n.length;e<r;++e)for(var i,o=n[e],u=0,a=o.length;u<a;++u)(i=o[u])&&t.call(i,i.__data__,u,o);return this},yl=function(t,n){var e=Ff(t);if(arguments.length<2){var r=this.node();return e.local?r.getAttributeNS(e.space,e.local):r.getAttribute(e)}return this.each((null==n?e.local?D:U:"function"==typeof n?e.local?Y:I:e.local?F:O)(e,n))},gl=function(t){return t.ownerDocument&&t.ownerDocument.defaultView||t.document&&t||t.defaultView},ml=function(t,n,e){return arguments.length>1?this.each((null==n?B:"function"==typeof n?j:H)(t,n,null==e?"":e)):X(this.node(),t)},xl=function(t,n){return arguments.length>1?this.each((null==n?$:"function"==typeof n?W:V)(t,n)):this.node()[t]};J.prototype={add:function(t){this._names.indexOf(t)<0&&(this._names.push(t),this._node.setAttribute("class",this._names.join(" ")))},remove:function(t){var n=this._names.indexOf(t);n>=0&&(this._names.splice(n,1),this._node.setAttribute("class",this._names.join(" ")))},contains:function(t){return this._names.indexOf(t)>=0}};var bl=function(t,n){var e=Z(t+"");if(arguments.length<2){for(var r=G(this.node()),i=-1,o=e.length;++i<o;)if(!r.contains(e[i]))return!1;return!0}return this.each(("function"==typeof n?et:n?tt:nt)(e,n))},wl=function(t){return arguments.length?this.each(null==t?rt:("function"==typeof t?ot:it)(t)):this.node().textContent},Ml=function(t){return arguments.length?this.each(null==t?ut:("function"==typeof t?ct:at)(t)):this.node().innerHTML},Tl=function(){return this.each(st)},kl=function(){return this.each(ft)},Nl=function(t){var n="function"==typeof t?t:If(t);return this.select(function(){return this.appendChild(n.apply(this,arguments))})},Sl=function(t,n){var e="function"==typeof t?t:If(t),r=null==n?lt:"function"==typeof n?n:Jf(n);return this.select(function(){return this.insertBefore(e.apply(this,arguments),r.apply(this,arguments)||null)})},El=function(){return this.each(ht)},Al=function(t){return arguments.length?this.property("__data__",t):this.node().__data__},Cl=function(t,n){return this.each(("function"==typeof n?vt:dt)(t,n))},zl=[null];_t.prototype=yt.prototype={constructor:_t,select:Qf,selectAll:tl,filter:nl,data:ul,enter:rl,exit:al,merge:cl,order:sl,sort:fl,call:ll,nodes:hl,node:pl,size:dl,empty:vl,each:_l,attr:yl,style:ml,property:xl,classed:bl,text:wl,html:Ml,raise:Tl,lower:kl,append:Nl,insert:Sl,remove:El,datum:Al,on:Vf,dispatch:Cl};var Pl=function(t){return"string"==typeof t?new _t([[document.querySelector(t)]],[document.documentElement]):new _t([[t]],zl)},Ll=function(t){return"string"==typeof t?new _t([document.querySelectorAll(t)],[document.documentElement]):new _t([null==t?[]:t],zl)
},Rl=function(t,n,e){arguments.length<3&&(e=n,n=Wf().changedTouches);for(var r,i=0,o=n?n.length:0;i<o;++i)if((r=n[i]).identifier===e)return Zf(t,r);return null},ql=function(t,n){null==n&&(n=Wf().touches);for(var e=0,r=n?n.length:0,i=new Array(r);e<r;++e)i[e]=Zf(t,n[e]);return i},Ul=function(){t.event.preventDefault(),t.event.stopImmediatePropagation()},Dl=function(t){var n=t.document.documentElement,e=Pl(t).on("dragstart.drag",Ul,!0);"onselectstart"in n?e.on("selectstart.drag",Ul,!0):(n.__noselect=n.style.MozUserSelect,n.style.MozUserSelect="none")},Ol=function(t){return function(){return t}};xt.prototype.on=function(){var t=this._.on.apply(this._,arguments);return t===this._?this:t};var Fl=function(){function n(t){t.on("mousedown.drag",e).on("touchstart.drag",o).on("touchmove.drag",u).on("touchend.drag touchcancel.drag",a).style("-webkit-tap-highlight-color","rgba(0,0,0,0)")}function e(){if(!h&&p.apply(this,arguments)){var n=c("mouse",d.apply(this,arguments),Gf,this,arguments);n&&(Pl(t.event.view).on("mousemove.drag",r,!0).on("mouseup.drag",i,!0),Dl(t.event.view),gt(),l=!1,s=t.event.clientX,f=t.event.clientY,n("start"))}}function r(){if(Ul(),!l){var n=t.event.clientX-s,e=t.event.clientY-f;l=n*n+e*e>x}y.mouse("drag")}function i(){Pl(t.event.view).on("mousemove.drag mouseup.drag",null),mt(t.event.view,l),Ul(),y.mouse("end")}function o(){if(p.apply(this,arguments)){var n,e,r=t.event.changedTouches,i=d.apply(this,arguments),o=r.length;for(n=0;n<o;++n)(e=c(r[n].identifier,i,Rl,this,arguments))&&(gt(),e("start"))}}function u(){var n,e,r=t.event.changedTouches,i=r.length;for(n=0;n<i;++n)(e=y[r[n].identifier])&&(Ul(),e("drag"))}function a(){var n,e,r=t.event.changedTouches,i=r.length;for(h&&clearTimeout(h),h=setTimeout(function(){h=null},500),n=0;n<i;++n)(e=y[r[n].identifier])&&(gt(),e("end"))}function c(e,r,i,o,u){var a,c,s,f=i(r,e),l=g.copy();if(A(new xt(n,"beforestart",a,e,m,f[0],f[1],0,0,l),function(){return null!=(t.event.subject=a=_.apply(o,u))&&(c=a.x-f[0]||0,s=a.y-f[1]||0,!0)}))return function t(h){var p,d=f;switch(h){case"start":y[e]=t,p=m++;break;case"end":delete y[e],--m;case"drag":f=i(r,e),p=m}A(new xt(n,h,a,e,p,f[0]+c,f[1]+s,f[0]-d[0],f[1]-d[1],l),l.apply,l,[h,o,u])}}var s,f,l,h,p=bt,d=wt,_=Mt,y={},g=v("start","drag","end"),m=0,x=0;return n.filter=function(t){return arguments.length?(p="function"==typeof t?t:Ol(!!t),n):p},n.container=function(t){return arguments.length?(d="function"==typeof t?t:Ol(t),n):d},n.subject=function(t){return arguments.length?(_="function"==typeof t?t:Ol(t),n):_},n.on=function(){var t=g.on.apply(g,arguments);return t===g?n:t},n.clickDistance=function(t){return arguments.length?(x=(t=+t)*t,n):Math.sqrt(x)},n},Il=function(t,n,e){t.prototype=n.prototype=e,e.constructor=t},Yl="\\s*([+-]?\\d+)\\s*",Bl="\\s*([+-]?\\d*\\.?\\d+(?:[eE][+-]?\\d+)?)\\s*",Hl="\\s*([+-]?\\d*\\.?\\d+(?:[eE][+-]?\\d+)?)%\\s*",jl=/^#([0-9a-f]{3})$/,Xl=/^#([0-9a-f]{6})$/,$l=new RegExp("^rgb\\("+[Yl,Yl,Yl]+"\\)$"),Vl=new RegExp("^rgb\\("+[Hl,Hl,Hl]+"\\)$"),Wl=new RegExp("^rgba\\("+[Yl,Yl,Yl,Bl]+"\\)$"),Zl=new RegExp("^rgba\\("+[Hl,Hl,Hl,Bl]+"\\)$"),Gl=new RegExp("^hsl\\("+[Bl,Hl,Hl]+"\\)$"),Jl=new RegExp("^hsla\\("+[Bl,Hl,Hl,Bl]+"\\)$"),Ql={aliceblue:15792383,antiquewhite:16444375,aqua:65535,aquamarine:8388564,azure:15794175,beige:16119260,bisque:16770244,black:0,blanchedalmond:16772045,blue:255,blueviolet:9055202,brown:10824234,burlywood:14596231,cadetblue:6266528,chartreuse:8388352,chocolate:13789470,coral:16744272,cornflowerblue:6591981,cornsilk:16775388,crimson:14423100,cyan:65535,darkblue:139,darkcyan:35723,darkgoldenrod:12092939,darkgray:11119017,darkgreen:25600,darkgrey:11119017,darkkhaki:12433259,darkmagenta:9109643,darkolivegreen:5597999,darkorange:16747520,darkorchid:10040012,darkred:9109504,darksalmon:15308410,darkseagreen:9419919,darkslateblue:4734347,darkslategray:3100495,darkslategrey:3100495,darkturquoise:52945,darkviolet:9699539,deeppink:16716947,deepskyblue:49151,dimgray:6908265,dimgrey:6908265,dodgerblue:2003199,firebrick:11674146,floralwhite:16775920,forestgreen:2263842,fuchsia:16711935,gainsboro:14474460,ghostwhite:16316671,gold:16766720,goldenrod:14329120,gray:8421504,green:32768,greenyellow:11403055,grey:8421504,honeydew:15794160,hotpink:16738740,indianred:13458524,indigo:4915330,ivory:16777200,khaki:15787660,lavender:15132410,lavenderblush:16773365,lawngreen:8190976,lemonchiffon:16775885,lightblue:11393254,lightcoral:15761536,lightcyan:14745599,lightgoldenrodyellow:16448210,lightgray:13882323,lightgreen:9498256,lightgrey:13882323,lightpink:16758465,lightsalmon:16752762,lightseagreen:2142890,lightskyblue:8900346,lightslategray:7833753,lightslategrey:7833753,lightsteelblue:11584734,lightyellow:16777184,lime:65280,limegreen:3329330,linen:16445670,magenta:16711935,maroon:8388608,mediumaquamarine:6737322,mediumblue:205,mediumorchid:12211667,mediumpurple:9662683,mediumseagreen:3978097,mediumslateblue:8087790,mediumspringgreen:64154,mediumturquoise:4772300,mediumvioletred:13047173,midnightblue:1644912,mintcream:16121850,mistyrose:16770273,moccasin:16770229,navajowhite:16768685,navy:128,oldlace:16643558,olive:8421376,olivedrab:7048739,orange:16753920,orangered:16729344,orchid:14315734,palegoldenrod:15657130,palegreen:10025880,paleturquoise:11529966,palevioletred:14381203,papayawhip:16773077,peachpuff:16767673,peru:13468991,pink:16761035,plum:14524637,powderblue:11591910,purple:8388736,rebeccapurple:6697881,red:16711680,rosybrown:12357519,royalblue:4286945,saddlebrown:9127187,salmon:16416882,sandybrown:16032864,seagreen:3050327,seashell:16774638,sienna:10506797,silver:12632256,skyblue:8900331,slateblue:6970061,slategray:7372944,slategrey:7372944,snow:16775930,springgreen:65407,steelblue:4620980,tan:13808780,teal:32896,thistle:14204888,tomato:16737095,turquoise:4251856,violet:15631086,wheat:16113331,white:16777215,whitesmoke:16119285,yellow:16776960,yellowgreen:10145074};Il(kt,Nt,{displayable:function(){return this.rgb().displayable()},toString:function(){return this.rgb()+""}}),Il(zt,Ct,Tt(kt,{brighter:function(t){return t=null==t?1/.7:Math.pow(1/.7,t),new zt(this.r*t,this.g*t,this.b*t,this.opacity)},darker:function(t){return t=null==t?.7:Math.pow(.7,t),new zt(this.r*t,this.g*t,this.b*t,this.opacity)},rgb:function(){return this},displayable:function(){return 0<=this.r&&this.r<=255&&0<=this.g&&this.g<=255&&0<=this.b&&this.b<=255&&0<=this.opacity&&this.opacity<=1},toString:function(){var t=this.opacity;return t=isNaN(t)?1:Math.max(0,Math.min(1,t)),(1===t?"rgb(":"rgba(")+Math.max(0,Math.min(255,Math.round(this.r)||0))+", "+Math.max(0,Math.min(255,Math.round(this.g)||0))+", "+Math.max(0,Math.min(255,Math.round(this.b)||0))+(1===t?")":", "+t+")")}})),Il(qt,Rt,Tt(kt,{brighter:function(t){return t=null==t?1/.7:Math.pow(1/.7,t),new qt(this.h,this.s,this.l*t,this.opacity)},darker:function(t){return t=null==t?.7:Math.pow(.7,t),new qt(this.h,this.s,this.l*t,this.opacity)},rgb:function(){var t=this.h%360+360*(this.h<0),n=isNaN(t)||isNaN(this.s)?0:this.s,e=this.l,r=e+(e<.5?e:1-e)*n,i=2*e-r;return new zt(Ut(t>=240?t-240:t+120,i,r),Ut(t,i,r),Ut(t<120?t+240:t-120,i,r),this.opacity)},displayable:function(){return(0<=this.s&&this.s<=1||isNaN(this.s))&&0<=this.l&&this.l<=1&&0<=this.opacity&&this.opacity<=1}}));var Kl=Math.PI/180,th=180/Math.PI,nh=.95047,eh=1,rh=1.08883,ih=4/29,oh=6/29,uh=3*oh*oh,ah=oh*oh*oh;Il(Ft,Ot,Tt(kt,{brighter:function(t){return new Ft(this.l+18*(null==t?1:t),this.a,this.b,this.opacity)},darker:function(t){return new Ft(this.l-18*(null==t?1:t),this.a,this.b,this.opacity)},rgb:function(){var t=(this.l+16)/116,n=isNaN(this.a)?t:t+this.a/500,e=isNaN(this.b)?t:t-this.b/200;return t=eh*Yt(t),n=nh*Yt(n),e=rh*Yt(e),new zt(Bt(3.2404542*n-1.5371385*t-.4985314*e),Bt(-.969266*n+1.8760108*t+.041556*e),Bt(.0556434*n-.2040259*t+1.0572252*e),this.opacity)}})),Il($t,Xt,Tt(kt,{brighter:function(t){return new $t(this.h,this.c,this.l+18*(null==t?1:t),this.opacity)},darker:function(t){return new $t(this.h,this.c,this.l-18*(null==t?1:t),this.opacity)},rgb:function(){return Dt(this).rgb()}}));var ch=-.14861,sh=1.78277,fh=-.29227,lh=-.90649,hh=1.97294,ph=hh*lh,dh=hh*sh,vh=sh*fh-lh*ch;Il(Zt,Wt,Tt(kt,{brighter:function(t){return t=null==t?1/.7:Math.pow(1/.7,t),new Zt(this.h,this.s,this.l*t,this.opacity)},darker:function(t){return t=null==t?.7:Math.pow(.7,t),new Zt(this.h,this.s,this.l*t,this.opacity)},rgb:function(){var t=isNaN(this.h)?0:(this.h+120)*Kl,n=+this.l,e=isNaN(this.s)?0:this.s*n*(1-n),r=Math.cos(t),i=Math.sin(t);return new zt(255*(n+e*(ch*r+sh*i)),255*(n+e*(fh*r+lh*i)),255*(n+e*(hh*r)),this.opacity)}}));var _h,yh,gh,mh,xh,bh,wh=function(t){var n=t.length-1;return function(e){var r=e<=0?e=0:e>=1?(e=1,n-1):Math.floor(e*n),i=t[r],o=t[r+1],u=r>0?t[r-1]:2*i-o,a=r<n-1?t[r+2]:2*o-i;return Gt((e-r/n)*n,u,i,o,a)}},Mh=function(t){var n=t.length;return function(e){var r=Math.floor(((e%=1)<0?++e:e)*n),i=t[(r+n-1)%n],o=t[r%n],u=t[(r+1)%n],a=t[(r+2)%n];return Gt((e-r/n)*n,i,o,u,a)}},Th=function(t){return function(){return t}},kh=function t(n){function e(t,n){var e=r((t=Ct(t)).r,(n=Ct(n)).r),i=r(t.g,n.g),o=r(t.b,n.b),u=nn(t.opacity,n.opacity);return function(n){return t.r=e(n),t.g=i(n),t.b=o(n),t.opacity=u(n),t+""}}var r=tn(n);return e.gamma=t,e}(1),Nh=en(wh),Sh=en(Mh),Eh=function(t,n){var e,r=n?n.length:0,i=t?Math.min(r,t.length):0,o=new Array(r),u=new Array(r);for(e=0;e<i;++e)o[e]=qh(t[e],n[e]);for(;e<r;++e)u[e]=n[e];return function(t){for(e=0;e<i;++e)u[e]=o[e](t);return u}},Ah=function(t,n){var e=new Date;return t=+t,n-=t,function(r){return e.setTime(t+n*r),e}},Ch=function(t,n){return t=+t,n-=t,function(e){return t+n*e}},zh=function(t,n){var e,r={},i={};null!==t&&"object"==typeof t||(t={}),null!==n&&"object"==typeof n||(n={});for(e in n)e in t?r[e]=qh(t[e],n[e]):i[e]=n[e];return function(t){for(e in r)i[e]=r[e](t);return i}},Ph=/[-+]?(?:\d+\.?\d*|\.?\d+)(?:[eE][-+]?\d+)?/g,Lh=new RegExp(Ph.source,"g"),Rh=function(t,n){var e,r,i,o=Ph.lastIndex=Lh.lastIndex=0,u=-1,a=[],c=[];for(t+="",n+="";(e=Ph.exec(t))&&(r=Lh.exec(n));)(i=r.index)>o&&(i=n.slice(o,i),a[u]?a[u]+=i:a[++u]=i),(e=e[0])===(r=r[0])?a[u]?a[u]+=r:a[++u]=r:(a[++u]=null,c.push({i:u,x:Ch(e,r)})),o=Lh.lastIndex;return o<n.length&&(i=n.slice(o),a[u]?a[u]+=i:a[++u]=i),a.length<2?c[0]?on(c[0].x):rn(n):(n=c.length,function(t){for(var e,r=0;r<n;++r)a[(e=c[r]).i]=e.x(t);return a.join("")})},qh=function(t,n){var e,r=typeof n;return null==n||"boolean"===r?Th(n):("number"===r?Ch:"string"===r?(e=Nt(n))?(n=e,kh):Rh:n instanceof Nt?kh:n instanceof Date?Ah:Array.isArray(n)?Eh:"function"!=typeof n.valueOf&&"function"!=typeof n.toString||isNaN(n)?zh:Ch)(t,n)},Uh=function(t,n){return t=+t,n-=t,function(e){return Math.round(t+n*e)}},Dh=180/Math.PI,Oh={translateX:0,translateY:0,rotate:0,skewX:0,scaleX:1,scaleY:1},Fh=function(t,n,e,r,i,o){var u,a,c;return(u=Math.sqrt(t*t+n*n))&&(t/=u,n/=u),(c=t*e+n*r)&&(e-=t*c,r-=n*c),(a=Math.sqrt(e*e+r*r))&&(e/=a,r/=a,c/=a),t*r<n*e&&(t=-t,n=-n,c=-c,u=-u),{translateX:i,translateY:o,rotate:Math.atan2(n,t)*Dh,skewX:Math.atan(c)*Dh,scaleX:u,scaleY:a}},Ih=cn(un,"px, ","px)","deg)"),Yh=cn(an,", ",")",")"),Bh=Math.SQRT2,Hh=function(t,n){var e,r,i=t[0],o=t[1],u=t[2],a=n[0],c=n[1],s=n[2],f=a-i,l=c-o,h=f*f+l*l;if(h<1e-12)r=Math.log(s/u)/Bh,e=function(t){return[i+t*f,o+t*l,u*Math.exp(Bh*t*r)]};else{var p=Math.sqrt(h),d=(s*s-u*u+4*h)/(2*u*2*p),v=(s*s-u*u-4*h)/(2*s*2*p),_=Math.log(Math.sqrt(d*d+1)-d),y=Math.log(Math.sqrt(v*v+1)-v);r=(y-_)/Bh,e=function(t){var n=t*r,e=sn(_),a=u/(2*p)*(e*ln(Bh*n+_)-fn(_));return[i+a*f,o+a*l,u*e/sn(Bh*n+_)]}}return e.duration=1e3*r,e},jh=hn(Kt),Xh=hn(nn),$h=dn(Kt),Vh=dn(nn),Wh=vn(Kt),Zh=vn(nn),Gh=function(t,n){for(var e=new Array(n),r=0;r<n;++r)e[r]=t(r/(n-1));return e},Jh=0,Qh=0,Kh=0,tp=1e3,np=0,ep=0,rp=0,ip="object"==typeof performance&&performance.now?performance:Date,op="function"==typeof requestAnimationFrame?requestAnimationFrame:function(t){setTimeout(t,17)};gn.prototype=mn.prototype={constructor:gn,restart:function(t,n,e){if("function"!=typeof t)throw new TypeError("callback is not a function");e=(null==e?_n():+e)+(null==n?0:+n),this._next||bh===this||(bh?bh._next=this:xh=this,bh=this),this._call=t,this._time=e,Tn()},stop:function(){this._call&&(this._call=null,this._time=1/0,Tn())}};var up=function(t,n,e){var r=new gn;return n=null==n?0:+n,r.restart(function(e){r.stop(),t(e+n)},n,e),r},ap=function(t,n,e){var r=new gn,i=n;return null==n?(r.restart(t,n,e),r):(n=+n,e=null==e?_n():+e,r.restart(function o(u){u+=i,r.restart(o,i+=n,e),t(u)},n,e),r)},cp=v("start","end","interrupt"),sp=[],fp=0,lp=1,hp=2,pp=3,dp=4,vp=5,_p=6,yp=function(t,n,e,r,i,o){var u=t.__transition;if(u){if(e in u)return}else t.__transition={};En(t,e,{name:n,index:r,group:i,on:cp,tween:sp,time:o.time,delay:o.delay,duration:o.duration,ease:o.ease,timer:null,state:fp})},gp=function(t,n){var e,r,i,o=t.__transition,u=!0;if(o){n=null==n?null:n+"";for(i in o)(e=o[i]).name===n?(r=e.state>hp&&e.state<vp,e.state=_p,e.timer.stop(),r&&e.on.call("interrupt",t,t.__data__,e.index,e.group),delete o[i]):u=!1;u&&delete t.__transition}},mp=function(t){return this.each(function(){gp(this,t)})},xp=function(t,n){var e=this._id;if(t+="",arguments.length<2){for(var r,i=Sn(this.node(),e).tween,o=0,u=i.length;o<u;++o)if((r=i[o]).name===t)return r.value;return null}return this.each((null==n?An:Cn)(e,t,n))},bp=function(t,n){var e;return("number"==typeof n?Ch:n instanceof Nt?kh:(e=Nt(n))?(n=e,kh):Rh)(t,n)},wp=function(t,n){var e=Ff(t),r="transform"===e?Yh:bp;return this.attrTween(t,"function"==typeof n?(e.local?Dn:Un)(e,r,zn(this,"attr."+t,n)):null==n?(e.local?Ln:Pn)(e):(e.local?qn:Rn)(e,r,n+""))},Mp=function(t,n){var e="attr."+t;if(arguments.length<2)return(e=this.tween(e))&&e._value;if(null==n)return this.tween(e,null);if("function"!=typeof n)throw new Error;var r=Ff(t);return this.tween(e,(r.local?On:Fn)(r,n))},Tp=function(t){var n=this._id;return arguments.length?this.each(("function"==typeof t?In:Yn)(n,t)):Sn(this.node(),n).delay},kp=function(t){var n=this._id;return arguments.length?this.each(("function"==typeof t?Bn:Hn)(n,t)):Sn(this.node(),n).duration},Np=function(t){var n=this._id;return arguments.length?this.each(jn(n,t)):Sn(this.node(),n).ease},Sp=function(t){"function"!=typeof t&&(t=Xf(t));for(var n=this._groups,e=n.length,r=new Array(e),i=0;i<e;++i)for(var o,u=n[i],a=u.length,c=r[i]=[],s=0;s<a;++s)(o=u[s])&&t.call(o,o.__data__,s,u)&&c.push(o);return new ne(r,this._parents,this._name,this._id)},Ep=function(t){if(t._id!==this._id)throw new Error;for(var n=this._groups,e=t._groups,r=n.length,i=e.length,o=Math.min(r,i),u=new Array(r),a=0;a<o;++a)for(var c,s=n[a],f=e[a],l=s.length,h=u[a]=new Array(l),p=0;p<l;++p)(c=s[p]||f[p])&&(h[p]=c);for(;a<r;++a)u[a]=n[a];return new ne(u,this._parents,this._name,this._id)},Ap=function(t,n){var e=this._id;return arguments.length<2?Sn(this.node(),e).on.on(t):this.each($n(e,t,n))},Cp=function(){return this.on("end.remove",Vn(this._id))},zp=function(t){var n=this._name,e=this._id;"function"!=typeof t&&(t=Jf(t));for(var r=this._groups,i=r.length,o=new Array(i),u=0;u<i;++u)for(var a,c,s=r[u],f=s.length,l=o[u]=new Array(f),h=0;h<f;++h)(a=s[h])&&(c=t.call(a,a.__data__,h,s))&&("__data__"in a&&(c.__data__=a.__data__),l[h]=c,yp(l[h],n,e,h,l,Sn(a,e)));return new ne(o,this._parents,n,e)},Pp=function(t){var n=this._name,e=this._id;"function"!=typeof t&&(t=Kf(t));for(var r=this._groups,i=r.length,o=[],u=[],a=0;a<i;++a)for(var c,s=r[a],f=s.length,l=0;l<f;++l)if(c=s[l]){for(var h,p=t.call(c,c.__data__,l,s),d=Sn(c,e),v=0,_=p.length;v<_;++v)(h=p[v])&&yp(h,n,e,v,p,d);o.push(p),u.push(c)}return new ne(o,u,n,e)},Lp=yt.prototype.constructor,Rp=function(){return new Lp(this._groups,this._parents)},qp=function(t,n,e){var r="transform"==(t+="")?Ih:bp;return null==n?this.styleTween(t,Wn(t,r)).on("end.style."+t,Zn(t)):this.styleTween(t,"function"==typeof n?Jn(t,r,zn(this,"style."+t,n)):Gn(t,r,n+""),e)},Up=function(t,n,e){var r="style."+(t+="");if(arguments.length<2)return(r=this.tween(r))&&r._value;if(null==n)return this.tween(r,null);if("function"!=typeof n)throw new Error;return this.tween(r,Qn(t,n,null==e?"":e))},Dp=function(t){return this.tween("text","function"==typeof t?te(zn(this,"text",t)):Kn(null==t?"":t+""))},Op=function(){for(var t=this._name,n=this._id,e=re(),r=this._groups,i=r.length,o=0;o<i;++o)for(var u,a=r[o],c=a.length,s=0;s<c;++s)if(u=a[s]){var f=Sn(u,n);yp(u,t,e,s,a,{time:f.time+f.delay+f.duration,delay:0,duration:f.duration,ease:f.ease})}return new ne(r,this._parents,t,e)},Fp=0,Ip=yt.prototype;ne.prototype=ee.prototype={constructor:ne,select:zp,selectAll:Pp,filter:Sp,merge:Ep,selection:Rp,transition:Op,call:Ip.call,nodes:Ip.nodes,node:Ip.node,size:Ip.size,empty:Ip.empty,each:Ip.each,on:Ap,attr:wp,attrTween:Mp,style:qp,styleTween:Up,text:Dp,remove:Cp,tween:xp,delay:Tp,duration:kp,ease:Np};var Yp=function t(n){function e(t){return Math.pow(t,n)}return n=+n,e.exponent=t,e}(3),Bp=function t(n){function e(t){return 1-Math.pow(1-t,n)}return n=+n,e.exponent=t,e}(3),Hp=function t(n){function e(t){return((t*=2)<=1?Math.pow(t,n):2-Math.pow(2-t,n))/2}return n=+n,e.exponent=t,e}(3),jp=Math.PI,Xp=jp/2,$p=4/11,Vp=6/11,Wp=8/11,Zp=.75,Gp=9/11,Jp=10/11,Qp=.9375,Kp=21/22,td=63/64,nd=1/$p/$p,ed=function t(n){function e(t){return t*t*((n+1)*t-n)}return n=+n,e.overshoot=t,e}(1.70158),rd=function t(n){function e(t){return--t*t*((n+1)*t+n)+1}return n=+n,e.overshoot=t,e}(1.70158),id=function t(n){function e(t){return((t*=2)<1?t*t*((n+1)*t-n):(t-=2)*t*((n+1)*t+n)+2)/2}return n=+n,e.overshoot=t,e}(1.70158),od=2*Math.PI,ud=function t(n,e){function r(t){return n*Math.pow(2,10*--t)*Math.sin((i-t)/e)}var i=Math.asin(1/(n=Math.max(1,n)))*(e/=od);return r.amplitude=function(n){return t(n,e*od)},r.period=function(e){return t(n,e)},r}(1,.3),ad=function t(n,e){function r(t){return 1-n*Math.pow(2,-10*(t=+t))*Math.sin((t+i)/e)}var i=Math.asin(1/(n=Math.max(1,n)))*(e/=od);return r.amplitude=function(n){return t(n,e*od)},r.period=function(e){return t(n,e)},r}(1,.3),cd=function t(n,e){function r(t){return((t=2*t-1)<0?n*Math.pow(2,10*t)*Math.sin((i-t)/e):2-n*Math.pow(2,-10*t)*Math.sin((i+t)/e))/2}var i=Math.asin(1/(n=Math.max(1,n)))*(e/=od);return r.amplitude=function(n){return t(n,e*od)},r.period=function(e){return t(n,e)},r}(1,.3),sd={time:null,delay:0,duration:250,ease:fe},fd=function(t){var n,e;t instanceof ne?(n=t._id,t=t._name):(n=re(),(e=sd).time=_n(),t=null==t?null:t+"");for(var r=this._groups,i=r.length,o=0;o<i;++o)for(var u,a=r[o],c=a.length,s=0;s<c;++s)(u=a[s])&&yp(u,t,n,s,a,e||Me(u,n));return new ne(r,this._parents,t,n)};yt.prototype.interrupt=mp,yt.prototype.transition=fd;var ld=[null],hd=function(t,n){var e,r,i=t.__transition;if(i){n=null==n?null:n+"";for(r in i)if((e=i[r]).state>lp&&e.name===n)return new ne([[t]],ld,n,+r)}return null},pd=function(t){return function(){return t}},dd=function(t,n,e){this.target=t,this.type=n,this.selection=e},vd=function(){t.event.preventDefault(),t.event.stopImmediatePropagation()},_d={name:"drag"},yd={name:"space"},gd={name:"handle"},md={name:"center"},xd={name:"x",handles:["e","w"].map(ke),input:function(t,n){return t&&[[t[0],n[0][1]],[t[1],n[1][1]]]},output:function(t){return t&&[t[0][0],t[1][0]]}},bd={name:"y",handles:["n","s"].map(ke),input:function(t,n){return t&&[[n[0][0],t[0]],[n[1][0],t[1]]]},output:function(t){return t&&[t[0][1],t[1][1]]}},wd={name:"xy",handles:["n","e","s","w","nw","ne","se","sw"].map(ke),input:function(t){return t},output:function(t){return t}},Md={overlay:"crosshair",selection:"move",n:"ns-resize",e:"ew-resize",s:"ns-resize",w:"ew-resize",nw:"nwse-resize",ne:"nesw-resize",se:"nwse-resize",sw:"nesw-resize"},Td={e:"w",w:"e",nw:"ne",ne:"nw",se:"sw",sw:"se"},kd={n:"s",s:"n",nw:"sw",ne:"se",se:"ne",sw:"nw"},Nd={overlay:1,selection:1,n:null,e:1,s:null,w:-1,nw:-1,ne:1,se:1,sw:-1},Sd={overlay:1,selection:1,n:-1,e:null,s:1,w:null,nw:-1,ne:-1,se:1,sw:1},Ed=function(){return Le(wd)},Ad=Math.cos,Cd=Math.sin,zd=Math.PI,Pd=zd/2,Ld=2*zd,Rd=Math.max,qd=function(){function t(t){var o,u,a,c,s,f,l=t.length,h=[],p=cf(l),d=[],v=[],_=v.groups=new Array(l),y=new Array(l*l);for(o=0,s=-1;++s<l;){for(u=0,f=-1;++f<l;)u+=t[s][f];h.push(u),d.push(cf(l)),o+=u}for(e&&p.sort(function(t,n){return e(h[t],h[n])}),r&&d.forEach(function(n,e){n.sort(function(n,i){return r(t[e][n],t[e][i])})}),o=Rd(0,Ld-n*l)/o,c=o?n:Ld/l,u=0,s=-1;++s<l;){for(a=u,f=-1;++f<l;){var g=p[s],m=d[g][f],x=t[g][m],b=u,w=u+=x*o;y[m*l+g]={index:g,subindex:m,startAngle:b,endAngle:w,value:x}}_[g]={index:g,startAngle:a,endAngle:u,value:h[g]},u+=c}for(s=-1;++s<l;)for(f=s-1;++f<l;){var M=y[f*l+s],T=y[s*l+f];(M.value||T.value)&&v.push(M.value<T.value?{source:T,target:M}:{source:M,target:T})}return i?v.sort(i):v}var n=0,e=null,r=null,i=null;return t.padAngle=function(e){return arguments.length?(n=Rd(0,e),t):n},t.sortGroups=function(n){return arguments.length?(e=n,t):e},t.sortSubgroups=function(n){return arguments.length?(r=n,t):r},t.sortChords=function(n){return arguments.length?(null==n?i=null:(i=Re(n))._=n,t):i&&i._},t},Ud=Array.prototype.slice,Dd=function(t){return function(){return t}},Od=Math.PI,Fd=2*Od,Id=Fd-1e-6;qe.prototype=Ue.prototype={constructor:qe,moveTo:function(t,n){this._+="M"+(this._x0=this._x1=+t)+","+(this._y0=this._y1=+n)},closePath:function(){null!==this._x1&&(this._x1=this._x0,this._y1=this._y0,this._+="Z")},lineTo:function(t,n){this._+="L"+(this._x1=+t)+","+(this._y1=+n)},quadraticCurveTo:function(t,n,e,r){this._+="Q"+ +t+","+ +n+","+(this._x1=+e)+","+(this._y1=+r)},bezierCurveTo:function(t,n,e,r,i,o){this._+="C"+ +t+","+ +n+","+ +e+","+ +r+","+(this._x1=+i)+","+(this._y1=+o)},arcTo:function(t,n,e,r,i){t=+t,n=+n,e=+e,r=+r,i=+i;var o=this._x1,u=this._y1,a=e-t,c=r-n,s=o-t,f=u-n,l=s*s+f*f;if(i<0)throw new Error("negative radius: "+i);if(null===this._x1)this._+="M"+(this._x1=t)+","+(this._y1=n);else if(l>1e-6)if(Math.abs(f*a-c*s)>1e-6&&i){var h=e-o,p=r-u,d=a*a+c*c,v=h*h+p*p,_=Math.sqrt(d),y=Math.sqrt(l),g=i*Math.tan((Od-Math.acos((d+l-v)/(2*_*y)))/2),m=g/y,x=g/_;Math.abs(m-1)>1e-6&&(this._+="L"+(t+m*s)+","+(n+m*f)),this._+="A"+i+","+i+",0,0,"+ +(f*h>s*p)+","+(this._x1=t+x*a)+","+(this._y1=n+x*c)}else this._+="L"+(this._x1=t)+","+(this._y1=n);else;},arc:function(t,n,e,r,i,o){t=+t,n=+n,e=+e;var u=e*Math.cos(r),a=e*Math.sin(r),c=t+u,s=n+a,f=1^o,l=o?r-i:i-r;if(e<0)throw new Error("negative radius: "+e);null===this._x1?this._+="M"+c+","+s:(Math.abs(this._x1-c)>1e-6||Math.abs(this._y1-s)>1e-6)&&(this._+="L"+c+","+s),e&&(l<0&&(l=l%Fd+Fd),l>Id?this._+="A"+e+","+e+",0,1,"+f+","+(t-u)+","+(n-a)+"A"+e+","+e+",0,1,"+f+","+(this._x1=c)+","+(this._y1=s):l>1e-6&&(this._+="A"+e+","+e+",0,"+ +(l>=Od)+","+f+","+(this._x1=t+e*Math.cos(i))+","+(this._y1=n+e*Math.sin(i))))},rect:function(t,n,e,r){this._+="M"+(this._x0=this._x1=+t)+","+(this._y0=this._y1=+n)+"h"+ +e+"v"+ +r+"h"+-e+"Z"},toString:function(){return this._}};var Yd=function(){function t(){var t,a=Ud.call(arguments),c=n.apply(this,a),s=e.apply(this,a),f=+r.apply(this,(a[0]=c,a)),l=i.apply(this,a)-Pd,h=o.apply(this,a)-Pd,p=f*Ad(l),d=f*Cd(l),v=+r.apply(this,(a[0]=s,a)),_=i.apply(this,a)-Pd,y=o.apply(this,a)-Pd;if(u||(u=t=Ue()),u.moveTo(p,d),u.arc(0,0,f,l,h),l===_&&h===y||(u.quadraticCurveTo(0,0,v*Ad(_),v*Cd(_)),u.arc(0,0,v,_,y)),u.quadraticCurveTo(0,0,p,d),u.closePath(),t)return u=null,t+""||null}var n=De,e=Oe,r=Fe,i=Ie,o=Ye,u=null;return t.radius=function(n){return arguments.length?(r="function"==typeof n?n:Dd(+n),t):r},t.startAngle=function(n){return arguments.length?(i="function"==typeof n?n:Dd(+n),t):i},t.endAngle=function(n){return arguments.length?(o="function"==typeof n?n:Dd(+n),t):o},t.source=function(e){return arguments.length?(n=e,t):n},t.target=function(n){return arguments.length?(e=n,t):e},t.context=function(n){return arguments.length?(u=null==n?null:n,t):u},t};Be.prototype=He.prototype={constructor:Be,has:function(t){return"$"+t in this},get:function(t){return this["$"+t]},set:function(t,n){return this["$"+t]=n,this},remove:function(t){var n="$"+t;return n in this&&delete this[n]},clear:function(){for(var t in this)"$"===t[0]&&delete this[t]},keys:function(){var t=[];for(var n in this)"$"===n[0]&&t.push(n.slice(1));return t},values:function(){var t=[];for(var n in this)"$"===n[0]&&t.push(this[n]);return t},entries:function(){var t=[];for(var n in this)"$"===n[0]&&t.push({key:n.slice(1),value:this[n]});return t},size:function(){var t=0;for(var n in this)"$"===n[0]&&++t;return t},empty:function(){for(var t in this)if("$"===t[0])return!1;return!0},each:function(t){for(var n in this)"$"===n[0]&&t(this[n],n.slice(1),this)}};var Bd=function(){function t(n,i,u,a){if(i>=o.length)return null!=r?r(n):null!=e?n.sort(e):n;for(var c,s,f,l=-1,h=n.length,p=o[i++],d=He(),v=u();++l<h;)(f=d.get(c=p(s=n[l])+""))?f.push(s):d.set(c,[s]);return d.each(function(n,e){a(v,e,t(n,i,u,a))}),v}function n(t,e){if(++e>o.length)return t;var i,a=u[e-1];return null!=r&&e>=o.length?i=t.entries():(i=[],t.each(function(t,r){i.push({key:r,values:n(t,e)})})),null!=a?i.sort(function(t,n){return a(t.key,n.key)}):i}var e,r,i,o=[],u=[];return i={object:function(n){return t(n,0,je,Xe)},map:function(n){return t(n,0,$e,Ve)},entries:function(e){return n(t(e,0,$e,Ve),0)},key:function(t){return o.push(t),i},sortKeys:function(t){return u[o.length-1]=t,i},sortValues:function(t){return e=t,i},rollup:function(t){return r=t,i}}},Hd=He.prototype;We.prototype=Ze.prototype={constructor:We,has:Hd.has,add:function(t){return t+="",this["$"+t]=t,this},remove:Hd.remove,clear:Hd.clear,values:Hd.keys,size:Hd.size,empty:Hd.empty,each:Hd.each};var jd=function(t){var n=[];for(var e in t)n.push(e);return n},Xd=function(t){var n=[];for(var e in t)n.push(t[e]);return n},$d=function(t){var n=[];for(var e in t)n.push({key:e,value:t[e]});return n},Vd=function(t){function n(t,n){var r,i,o=e(t,function(t,e){if(r)return r(t,e-1);i=t,r=n?Je(t,n):Ge(t)});return o.columns=i,o}function e(t,n){function e(){if(f>=s)return u;if(i)return i=!1,o;var n,e=f;if(34===t.charCodeAt(e)){for(var r=e;r++<s;)if(34===t.charCodeAt(r)){if(34!==t.charCodeAt(r+1))break;++r}return f=r+2,n=t.charCodeAt(r+1),13===n?(i=!0,10===t.charCodeAt(r+2)&&++f):10===n&&(i=!0),t.slice(e+1,r).replace(/""/g,'"')}for(;f<s;){var a=1;if(10===(n=t.charCodeAt(f++)))i=!0;else if(13===n)i=!0,10===t.charCodeAt(f)&&(++f,++a);else if(n!==c)continue;return t.slice(e,f-a)}return t.slice(e)}for(var r,i,o={},u={},a=[],s=t.length,f=0,l=0;(r=e())!==u;){for(var h=[];r!==o&&r!==u;)h.push(r),r=e();n&&null==(h=n(h,l++))||a.push(h)}return a}function r(n,e){return null==e&&(e=Qe(n)),[e.map(u).join(t)].concat(n.map(function(n){return e.map(function(t){return u(n[t])}).join(t)})).join("\n")}function i(t){return t.map(o).join("\n")}function o(n){return n.map(u).join(t)}function u(t){return null==t?"":a.test(t+="")?'"'+t.replace(/\"/g,'""')+'"':t}var a=new RegExp('["'+t+"\n\r]"),c=t.charCodeAt(0);return{parse:n,parseRows:e,format:r,formatRows:i}},Wd=Vd(","),Zd=Wd.parse,Gd=Wd.parseRows,Jd=Wd.format,Qd=Wd.formatRows,Kd=Vd("\t"),tv=Kd.parse,nv=Kd.parseRows,ev=Kd.format,rv=Kd.formatRows,iv=function(t,n){function e(){var e,i,o=r.length,u=0,a=0;for(e=0;e<o;++e)i=r[e],u+=i.x,a+=i.y;for(u=u/o-t,a=a/o-n,e=0;e<o;++e)i=r[e],i.x-=u,i.y-=a}var r;return null==t&&(t=0),null==n&&(n=0),e.initialize=function(t){r=t},e.x=function(n){return arguments.length?(t=+n,e):t},e.y=function(t){return arguments.length?(n=+t,e):n},e},ov=function(t){return function(){return t}},uv=function(){return 1e-6*(Math.random()-.5)},av=function(t){var n=+this._x.call(null,t),e=+this._y.call(null,t);return Ke(this.cover(n,e),n,e,t)},cv=function(t,n){if(isNaN(t=+t)||isNaN(n=+n))return this;var e=this._x0,r=this._y0,i=this._x1,o=this._y1;if(isNaN(e))i=(e=Math.floor(t))+1,o=(r=Math.floor(n))+1;else{if(!(e>t||t>i||r>n||n>o))return this;var u,a,c=i-e,s=this._root;switch(a=(n<(r+o)/2)<<1|t<(e+i)/2){case 0:do{u=new Array(4),u[a]=s,s=u}while(c*=2,i=e+c,o=r+c,t>i||n>o);break;case 1:do{u=new Array(4),u[a]=s,s=u}while(c*=2,e=i-c,o=r+c,e>t||n>o);break;case 2:do{u=new Array(4),u[a]=s,s=u}while(c*=2,i=e+c,r=o-c,t>i||r>n);break;case 3:do{u=new Array(4),u[a]=s,s=u}while(c*=2,e=i-c,r=o-c,e>t||r>n)}this._root&&this._root.length&&(this._root=s)}return this._x0=e,this._y0=r,this._x1=i,this._y1=o,this},sv=function(){var t=[];return this.visit(function(n){if(!n.length)do{t.push(n.data)}while(n=n.next)}),t},fv=function(t){return arguments.length?this.cover(+t[0][0],+t[0][1]).cover(+t[1][0],+t[1][1]):isNaN(this._x0)?void 0:[[this._x0,this._y0],[this._x1,this._y1]]},lv=function(t,n,e,r,i){this.node=t,this.x0=n,this.y0=e,this.x1=r,this.y1=i},hv=function(t,n,e){var r,i,o,u,a,c,s,f=this._x0,l=this._y0,h=this._x1,p=this._y1,d=[],v=this._root;for(v&&d.push(new lv(v,f,l,h,p)),null==e?e=1/0:(f=t-e,l=n-e,h=t+e,p=n+e,e*=e);c=d.pop();)if(!(!(v=c.node)||(i=c.x0)>h||(o=c.y0)>p||(u=c.x1)<f||(a=c.y1)<l))if(v.length){var _=(i+u)/2,y=(o+a)/2;d.push(new lv(v[3],_,y,u,a),new lv(v[2],i,y,_,a),new lv(v[1],_,o,u,y),new lv(v[0],i,o,_,y)),(s=(n>=y)<<1|t>=_)&&(c=d[d.length-1],d[d.length-1]=d[d.length-1-s],d[d.length-1-s]=c)}else{var g=t-+this._x.call(null,v.data),m=n-+this._y.call(null,v.data),x=g*g+m*m;if(x<e){var b=Math.sqrt(e=x);f=t-b,l=n-b,h=t+b,p=n+b,r=v.data}}return r},pv=function(t){if(isNaN(o=+this._x.call(null,t))||isNaN(u=+this._y.call(null,t)))return this;var n,e,r,i,o,u,a,c,s,f,l,h,p=this._root,d=this._x0,v=this._y0,_=this._x1,y=this._y1;if(!p)return this;if(p.length)for(;;){if((s=o>=(a=(d+_)/2))?d=a:_=a,(f=u>=(c=(v+y)/2))?v=c:y=c,n=p,!(p=p[l=f<<1|s]))return this;if(!p.length)break;(n[l+1&3]||n[l+2&3]||n[l+3&3])&&(e=n,h=l)}for(;p.data!==t;)if(r=p,!(p=p.next))return this;return(i=p.next)&&delete p.next,r?(i?r.next=i:delete r.next,this):n?(i?n[l]=i:delete n[l],(p=n[0]||n[1]||n[2]||n[3])&&p===(n[3]||n[2]||n[1]||n[0])&&!p.length&&(e?e[h]=p:this._root=p),this):(this._root=i,this)},dv=function(){return this._root},vv=function(){var t=0;return this.visit(function(n){if(!n.length)do{++t}while(n=n.next)}),t},_v=function(t){var n,e,r,i,o,u,a=[],c=this._root;for(c&&a.push(new lv(c,this._x0,this._y0,this._x1,this._y1));n=a.pop();)if(!t(c=n.node,r=n.x0,i=n.y0,o=n.x1,u=n.y1)&&c.length){var s=(r+o)/2,f=(i+u)/2;(e=c[3])&&a.push(new lv(e,s,f,o,u)),(e=c[2])&&a.push(new lv(e,r,f,s,u)),(e=c[1])&&a.push(new lv(e,s,i,o,f)),(e=c[0])&&a.push(new lv(e,r,i,s,f))}return this},yv=function(t){var n,e=[],r=[];for(this._root&&e.push(new lv(this._root,this._x0,this._y0,this._x1,this._y1));n=e.pop();){var i=n.node;if(i.length){var o,u=n.x0,a=n.y0,c=n.x1,s=n.y1,f=(u+c)/2,l=(a+s)/2;(o=i[0])&&e.push(new lv(o,u,a,f,l)),(o=i[1])&&e.push(new lv(o,f,a,c,l)),(o=i[2])&&e.push(new lv(o,u,l,f,s)),(o=i[3])&&e.push(new lv(o,f,l,c,s))}r.push(n)}for(;n=r.pop();)t(n.node,n.x0,n.y0,n.x1,n.y1);return this},gv=function(t){return arguments.length?(this._x=t,this):this._x},mv=function(t){return arguments.length?(this._y=t,this):this._y},xv=ir.prototype=or.prototype;xv.copy=function(){var t,n,e=new or(this._x,this._y,this._x0,this._y0,this._x1,this._y1),r=this._root;if(!r)return e;if(!r.length)return e._root=ur(r),e;for(t=[{source:r,target:e._root=new Array(4)}];r=t.pop();)for(var i=0;i<4;++i)(n=r.source[i])&&(n.length?t.push({source:n,target:r.target[i]=new Array(4)}):r.target[i]=ur(n));return e},xv.add=av,xv.addAll=tr,xv.cover=cv,xv.data=sv,xv.extent=fv,xv.find=hv,xv.remove=pv,xv.removeAll=nr,xv.root=dv,xv.size=vv,xv.visit=_v,xv.visitAfter=yv,xv.x=gv,xv.y=mv;var bv,wv=function(t){function n(){function t(t,n,e,r,i){var o=t.data,a=t.r,p=l+a;{if(!o)return n>s+p||r<s-p||e>f+p||i<f-p;if(o.index>c.index){var d=s-o.x-o.vx,v=f-o.y-o.vy,_=d*d+v*v;_<p*p&&(0===d&&(d=uv(),_+=d*d),0===v&&(v=uv(),_+=v*v),_=(p-(_=Math.sqrt(_)))/_*u,c.vx+=(d*=_)*(p=(a*=a)/(h+a)),c.vy+=(v*=_)*p,o.vx-=d*(p=1-p),o.vy-=v*p)}}}for(var n,r,c,s,f,l,h,p=i.length,d=0;d<a;++d)for(r=ir(i,ar,cr).visitAfter(e),n=0;n<p;++n)c=i[n],l=o[c.index],h=l*l,s=c.x+c.vx,f=c.y+c.vy,r.visit(t)}function e(t){if(t.data)return t.r=o[t.data.index];for(var n=t.r=0;n<4;++n)t[n]&&t[n].r>t.r&&(t.r=t[n].r)}function r(){if(i){var n,e,r=i.length;for(o=new Array(r),n=0;n<r;++n)e=i[n],o[e.index]=+t(e,n,i)}}var i,o,u=1,a=1
;return"function"!=typeof t&&(t=ov(null==t?1:+t)),n.initialize=function(t){i=t,r()},n.iterations=function(t){return arguments.length?(a=+t,n):a},n.strength=function(t){return arguments.length?(u=+t,n):u},n.radius=function(e){return arguments.length?(t="function"==typeof e?e:ov(+e),r(),n):t},n},Mv=function(t){function n(t){return 1/Math.min(s[t.source.index],s[t.target.index])}function e(n){for(var e=0,r=t.length;e<d;++e)for(var i,o,c,s,l,h,p,v=0;v<r;++v)i=t[v],o=i.source,c=i.target,s=c.x+c.vx-o.x-o.vx||uv(),l=c.y+c.vy-o.y-o.vy||uv(),h=Math.sqrt(s*s+l*l),h=(h-a[v])/h*n*u[v],s*=h,l*=h,c.vx-=s*(p=f[v]),c.vy-=l*p,o.vx+=s*(p=1-p),o.vy+=l*p}function r(){if(c){var n,e,r=c.length,h=t.length,p=He(c,l);for(n=0,s=new Array(r);n<h;++n)e=t[n],e.index=n,"object"!=typeof e.source&&(e.source=fr(p,e.source)),"object"!=typeof e.target&&(e.target=fr(p,e.target)),s[e.source.index]=(s[e.source.index]||0)+1,s[e.target.index]=(s[e.target.index]||0)+1;for(n=0,f=new Array(h);n<h;++n)e=t[n],f[n]=s[e.source.index]/(s[e.source.index]+s[e.target.index]);u=new Array(h),i(),a=new Array(h),o()}}function i(){if(c)for(var n=0,e=t.length;n<e;++n)u[n]=+h(t[n],n,t)}function o(){if(c)for(var n=0,e=t.length;n<e;++n)a[n]=+p(t[n],n,t)}var u,a,c,s,f,l=sr,h=n,p=ov(30),d=1;return null==t&&(t=[]),e.initialize=function(t){c=t,r()},e.links=function(n){return arguments.length?(t=n,r(),e):t},e.id=function(t){return arguments.length?(l=t,e):l},e.iterations=function(t){return arguments.length?(d=+t,e):d},e.strength=function(t){return arguments.length?(h="function"==typeof t?t:ov(+t),i(),e):h},e.distance=function(t){return arguments.length?(p="function"==typeof t?t:ov(+t),o(),e):p},e},Tv=10,kv=Math.PI*(3-Math.sqrt(5)),Nv=function(t){function n(){e(),p.call("tick",o),u<a&&(h.stop(),p.call("end",o))}function e(){var n,e,r=t.length;for(u+=(s-u)*c,l.each(function(t){t(u)}),n=0;n<r;++n)e=t[n],null==e.fx?e.x+=e.vx*=f:(e.x=e.fx,e.vx=0),null==e.fy?e.y+=e.vy*=f:(e.y=e.fy,e.vy=0)}function r(){for(var n,e=0,r=t.length;e<r;++e){if(n=t[e],n.index=e,isNaN(n.x)||isNaN(n.y)){var i=Tv*Math.sqrt(e),o=e*kv;n.x=i*Math.cos(o),n.y=i*Math.sin(o)}(isNaN(n.vx)||isNaN(n.vy))&&(n.vx=n.vy=0)}}function i(n){return n.initialize&&n.initialize(t),n}var o,u=1,a=.001,c=1-Math.pow(a,1/300),s=0,f=.6,l=He(),h=mn(n),p=v("tick","end");return null==t&&(t=[]),r(),o={tick:e,restart:function(){return h.restart(n),o},stop:function(){return h.stop(),o},nodes:function(n){return arguments.length?(t=n,r(),l.each(i),o):t},alpha:function(t){return arguments.length?(u=+t,o):u},alphaMin:function(t){return arguments.length?(a=+t,o):a},alphaDecay:function(t){return arguments.length?(c=+t,o):+c},alphaTarget:function(t){return arguments.length?(s=+t,o):s},velocityDecay:function(t){return arguments.length?(f=1-t,o):1-f},force:function(t,n){return arguments.length>1?(null==n?l.remove(t):l.set(t,i(n)),o):l.get(t)},find:function(n,e,r){var i,o,u,a,c,s=0,f=t.length;for(null==r?r=1/0:r*=r,s=0;s<f;++s)a=t[s],i=n-a.x,o=e-a.y,(u=i*i+o*o)<r&&(c=a,r=u);return c},on:function(t,n){return arguments.length>1?(p.on(t,n),o):p.on(t)}}},Sv=function(){function t(t){var n,a=i.length,c=ir(i,lr,hr).visitAfter(e);for(u=t,n=0;n<a;++n)o=i[n],c.visit(r)}function n(){if(i){var t,n,e=i.length;for(a=new Array(e),t=0;t<e;++t)n=i[t],a[n.index]=+c(n,t,i)}}function e(t){var n,e,r,i,o,u=0;if(t.length){for(r=i=o=0;o<4;++o)(n=t[o])&&(e=n.value)&&(u+=e,r+=e*n.x,i+=e*n.y);t.x=r/u,t.y=i/u}else{n=t,n.x=n.data.x,n.y=n.data.y;do{u+=a[n.data.index]}while(n=n.next)}t.value=u}function r(t,n,e,r){if(!t.value)return!0;var i=t.x-o.x,c=t.y-o.y,h=r-n,p=i*i+c*c;if(h*h/l<p)return p<f&&(0===i&&(i=uv(),p+=i*i),0===c&&(c=uv(),p+=c*c),p<s&&(p=Math.sqrt(s*p)),o.vx+=i*t.value*u/p,o.vy+=c*t.value*u/p),!0;if(!(t.length||p>=f)){(t.data!==o||t.next)&&(0===i&&(i=uv(),p+=i*i),0===c&&(c=uv(),p+=c*c),p<s&&(p=Math.sqrt(s*p)));do{t.data!==o&&(h=a[t.data.index]*u/p,o.vx+=i*h,o.vy+=c*h)}while(t=t.next)}}var i,o,u,a,c=ov(-30),s=1,f=1/0,l=.81;return t.initialize=function(t){i=t,n()},t.strength=function(e){return arguments.length?(c="function"==typeof e?e:ov(+e),n(),t):c},t.distanceMin=function(n){return arguments.length?(s=n*n,t):Math.sqrt(s)},t.distanceMax=function(n){return arguments.length?(f=n*n,t):Math.sqrt(f)},t.theta=function(n){return arguments.length?(l=n*n,t):Math.sqrt(l)},t},Ev=function(t){function n(t){for(var n,e=0,u=r.length;e<u;++e)n=r[e],n.vx+=(o[e]-n.x)*i[e]*t}function e(){if(r){var n,e=r.length;for(i=new Array(e),o=new Array(e),n=0;n<e;++n)i[n]=isNaN(o[n]=+t(r[n],n,r))?0:+u(r[n],n,r)}}var r,i,o,u=ov(.1);return"function"!=typeof t&&(t=ov(null==t?0:+t)),n.initialize=function(t){r=t,e()},n.strength=function(t){return arguments.length?(u="function"==typeof t?t:ov(+t),e(),n):u},n.x=function(r){return arguments.length?(t="function"==typeof r?r:ov(+r),e(),n):t},n},Av=function(t){function n(t){for(var n,e=0,u=r.length;e<u;++e)n=r[e],n.vy+=(o[e]-n.y)*i[e]*t}function e(){if(r){var n,e=r.length;for(i=new Array(e),o=new Array(e),n=0;n<e;++n)i[n]=isNaN(o[n]=+t(r[n],n,r))?0:+u(r[n],n,r)}}var r,i,o,u=ov(.1);return"function"!=typeof t&&(t=ov(null==t?0:+t)),n.initialize=function(t){r=t,e()},n.strength=function(t){return arguments.length?(u="function"==typeof t?t:ov(+t),e(),n):u},n.y=function(r){return arguments.length?(t="function"==typeof r?r:ov(+r),e(),n):t},n},Cv=function(t,n){if((e=(t=n?t.toExponential(n-1):t.toExponential()).indexOf("e"))<0)return null;var e,r=t.slice(0,e);return[r.length>1?r[0]+r.slice(2):r,+t.slice(e+1)]},zv=function(t){return t=Cv(Math.abs(t)),t?t[1]:NaN},Pv=function(t,n){return function(e,r){for(var i=e.length,o=[],u=0,a=t[0],c=0;i>0&&a>0&&(c+a+1>r&&(a=Math.max(1,r-c)),o.push(e.substring(i-=a,i+a)),!((c+=a+1)>r));)a=t[u=(u+1)%t.length];return o.reverse().join(n)}},Lv=function(t){return function(n){return n.replace(/[0-9]/g,function(n){return t[+n]})}},Rv=function(t,n){t=t.toPrecision(n);t:for(var e,r=t.length,i=1,o=-1;i<r;++i)switch(t[i]){case".":o=e=i;break;case"0":0===o&&(o=i),e=i;break;case"e":break t;default:o>0&&(o=0)}return o>0?t.slice(0,o)+t.slice(e+1):t},qv=function(t,n){var e=Cv(t,n);if(!e)return t+"";var r=e[0],i=e[1],o=i-(bv=3*Math.max(-8,Math.min(8,Math.floor(i/3))))+1,u=r.length;return o===u?r:o>u?r+new Array(o-u+1).join("0"):o>0?r.slice(0,o)+"."+r.slice(o):"0."+new Array(1-o).join("0")+Cv(t,Math.max(0,n+o-1))[0]},Uv=function(t,n){var e=Cv(t,n);if(!e)return t+"";var r=e[0],i=e[1];return i<0?"0."+new Array(-i).join("0")+r:r.length>i+1?r.slice(0,i+1)+"."+r.slice(i+1):r+new Array(i-r.length+2).join("0")},Dv={"":Rv,"%":function(t,n){return(100*t).toFixed(n)},b:function(t){return Math.round(t).toString(2)},c:function(t){return t+""},d:function(t){return Math.round(t).toString(10)},e:function(t,n){return t.toExponential(n)},f:function(t,n){return t.toFixed(n)},g:function(t,n){return t.toPrecision(n)},o:function(t){return Math.round(t).toString(8)},p:function(t,n){return Uv(100*t,n)},r:Uv,s:qv,X:function(t){return Math.round(t).toString(16).toUpperCase()},x:function(t){return Math.round(t).toString(16)}},Ov=/^(?:(.)?([<>=^]))?([+\-\( ])?([$#])?(0)?(\d+)?(,)?(\.\d+)?([a-z%])?$/i;pr.prototype=dr.prototype,dr.prototype.toString=function(){return this.fill+this.align+this.sign+this.symbol+(this.zero?"0":"")+(null==this.width?"":Math.max(1,0|this.width))+(this.comma?",":"")+(null==this.precision?"":"."+Math.max(0,0|this.precision))+this.type};var Fv,Iv=function(t){return t},Yv=["y","z","a","f","p","n","µ","m","","k","M","G","T","P","E","Z","Y"],Bv=function(t){function n(t){function n(t){var n,i,a,f=_,x=y;if("c"===v)x=g(t)+x,t="";else{t=+t;var b=t<0;if(t=g(Math.abs(t),d),b&&0==+t&&(b=!1),f=(b?"("===s?s:"-":"-"===s||"("===s?"":s)+f,x=x+("s"===v?Yv[8+bv/3]:"")+(b&&"("===s?")":""),m)for(n=-1,i=t.length;++n<i;)if(48>(a=t.charCodeAt(n))||a>57){x=(46===a?o+t.slice(n+1):t.slice(n))+x,t=t.slice(0,n);break}}p&&!l&&(t=r(t,1/0));var w=f.length+t.length+x.length,M=w<h?new Array(h-w+1).join(e):"";switch(p&&l&&(t=r(M+t,M.length?h-x.length:1/0),M=""),c){case"<":t=f+t+x+M;break;case"=":t=f+M+t+x;break;case"^":t=M.slice(0,w=M.length>>1)+f+t+x+M.slice(w);break;default:t=M+f+t+x}return u(t)}t=pr(t);var e=t.fill,c=t.align,s=t.sign,f=t.symbol,l=t.zero,h=t.width,p=t.comma,d=t.precision,v=t.type,_="$"===f?i[0]:"#"===f&&/[boxX]/.test(v)?"0"+v.toLowerCase():"",y="$"===f?i[1]:/[%p]/.test(v)?a:"",g=Dv[v],m=!v||/[defgprs%]/.test(v);return d=null==d?v?6:12:/[gprs]/.test(v)?Math.max(1,Math.min(21,d)):Math.max(0,Math.min(20,d)),n.toString=function(){return t+""},n}function e(t,e){var r=n((t=pr(t),t.type="f",t)),i=3*Math.max(-8,Math.min(8,Math.floor(zv(e)/3))),o=Math.pow(10,-i),u=Yv[8+i/3];return function(t){return r(o*t)+u}}var r=t.grouping&&t.thousands?Pv(t.grouping,t.thousands):Iv,i=t.currency,o=t.decimal,u=t.numerals?Lv(t.numerals):Iv,a=t.percent||"%";return{format:n,formatPrefix:e}};vr({decimal:".",thousands:",",grouping:[3],currency:["$",""]});var Hv=function(t){return Math.max(0,-zv(Math.abs(t)))},jv=function(t,n){return Math.max(0,3*Math.max(-8,Math.min(8,Math.floor(zv(n)/3)))-zv(Math.abs(t)))},Xv=function(t,n){return t=Math.abs(t),n=Math.abs(n)-t,Math.max(0,zv(n)-zv(t))+1},$v=function(){return new _r};_r.prototype={constructor:_r,reset:function(){this.s=this.t=0},add:function(t){yr(T_,t,this.t),yr(this,T_.s,this.s),this.s?this.t+=T_.t:this.s=T_.t},valueOf:function(){return this.s}};var Vv,Wv,Zv,Gv,Jv,Qv,Kv,t_,n_,e_,r_,i_,o_,u_,a_,c_,s_,f_,l_,h_,p_,d_,v_,__,y_,g_,m_,x_,b_,w_,M_,T_=new _r,k_=1e-6,N_=Math.PI,S_=N_/2,E_=N_/4,A_=2*N_,C_=180/N_,z_=N_/180,P_=Math.abs,L_=Math.atan,R_=Math.atan2,q_=Math.cos,U_=Math.ceil,D_=Math.exp,O_=Math.log,F_=Math.pow,I_=Math.sin,Y_=Math.sign||function(t){return t>0?1:t<0?-1:0},B_=Math.sqrt,H_=Math.tan,j_={Feature:function(t,n){wr(t.geometry,n)},FeatureCollection:function(t,n){for(var e=t.features,r=-1,i=e.length;++r<i;)wr(e[r].geometry,n)}},X_={Sphere:function(t,n){n.sphere()},Point:function(t,n){t=t.coordinates,n.point(t[0],t[1],t[2])},MultiPoint:function(t,n){for(var e=t.coordinates,r=-1,i=e.length;++r<i;)t=e[r],n.point(t[0],t[1],t[2])},LineString:function(t,n){Mr(t.coordinates,n,0)},MultiLineString:function(t,n){for(var e=t.coordinates,r=-1,i=e.length;++r<i;)Mr(e[r],n,0)},Polygon:function(t,n){Tr(t.coordinates,n)},MultiPolygon:function(t,n){for(var e=t.coordinates,r=-1,i=e.length;++r<i;)Tr(e[r],n)},GeometryCollection:function(t,n){for(var e=t.geometries,r=-1,i=e.length;++r<i;)wr(e[r],n)}},$_=function(t,n){t&&j_.hasOwnProperty(t.type)?j_[t.type](t,n):wr(t,n)},V_=$v(),W_=$v(),Z_={point:br,lineStart:br,lineEnd:br,polygonStart:function(){V_.reset(),Z_.lineStart=kr,Z_.lineEnd=Nr},polygonEnd:function(){var t=+V_;W_.add(t<0?A_+t:t),this.lineStart=this.lineEnd=this.point=br},sphere:function(){W_.add(A_)}},G_=function(t){return W_.reset(),$_(t,Z_),2*W_},J_=$v(),Q_={point:Ur,lineStart:Or,lineEnd:Fr,polygonStart:function(){Q_.point=Ir,Q_.lineStart=Yr,Q_.lineEnd=Br,J_.reset(),Z_.polygonStart()},polygonEnd:function(){Z_.polygonEnd(),Q_.point=Ur,Q_.lineStart=Or,Q_.lineEnd=Fr,V_<0?(Qv=-(t_=180),Kv=-(n_=90)):J_>k_?n_=90:J_<-k_&&(Kv=-90),a_[0]=Qv,a_[1]=t_}},K_=function(t){var n,e,r,i,o,u,a;if(n_=t_=-(Qv=Kv=1/0),u_=[],$_(t,Q_),e=u_.length){for(u_.sort(jr),n=1,r=u_[0],o=[r];n<e;++n)i=u_[n],Xr(r,i[0])||Xr(r,i[1])?(Hr(r[0],i[1])>Hr(r[0],r[1])&&(r[1]=i[1]),Hr(i[0],r[1])>Hr(r[0],r[1])&&(r[0]=i[0])):o.push(r=i);for(u=-1/0,e=o.length-1,n=0,r=o[e];n<=e;r=i,++n)i=o[n],(a=Hr(r[1],i[0]))>u&&(u=a,Qv=i[0],t_=r[1])}return u_=a_=null,Qv===1/0||Kv===1/0?[[NaN,NaN],[NaN,NaN]]:[[Qv,Kv],[t_,n_]]},ty={sphere:br,point:$r,lineStart:Wr,lineEnd:Jr,polygonStart:function(){ty.lineStart=Qr,ty.lineEnd=Kr},polygonEnd:function(){ty.lineStart=Wr,ty.lineEnd=Jr}},ny=function(t){c_=s_=f_=l_=h_=p_=d_=v_=__=y_=g_=0,$_(t,ty);var n=__,e=y_,r=g_,i=n*n+e*e+r*r;return i<1e-12&&(n=p_,e=d_,r=v_,s_<k_&&(n=f_,e=l_,r=h_),(i=n*n+e*e+r*r)<1e-12)?[NaN,NaN]:[R_(e,n)*C_,mr(r/B_(i))*C_]},ey=function(t){return function(){return t}},ry=function(t,n){function e(e,r){return e=t(e,r),n(e[0],e[1])}return t.invert&&n.invert&&(e.invert=function(e,r){return(e=n.invert(e,r))&&t.invert(e[0],e[1])}),e};ei.invert=ei;var iy,oy,uy,ay,cy,sy,fy,ly,hy,py,dy,vy=function(t){function n(n){return n=t(n[0]*z_,n[1]*z_),n[0]*=C_,n[1]*=C_,n}return t=ri(t[0]*z_,t[1]*z_,t.length>2?t[2]*z_:0),n.invert=function(n){return n=t.invert(n[0]*z_,n[1]*z_),n[0]*=C_,n[1]*=C_,n},n},_y=function(){function t(t,n){e.push(t=r(t,n)),t[0]*=C_,t[1]*=C_}function n(){var t=i.apply(this,arguments),n=o.apply(this,arguments)*z_,c=u.apply(this,arguments)*z_;return e=[],r=ri(-t[0]*z_,-t[1]*z_,0).invert,ai(a,n,c,1),t={type:"Polygon",coordinates:[e]},e=r=null,t}var e,r,i=ey([0,0]),o=ey(90),u=ey(6),a={point:t};return n.center=function(t){return arguments.length?(i="function"==typeof t?t:ey([+t[0],+t[1]]),n):i},n.radius=function(t){return arguments.length?(o="function"==typeof t?t:ey(+t),n):o},n.precision=function(t){return arguments.length?(u="function"==typeof t?t:ey(+t),n):u},n},yy=function(){var t,n=[];return{point:function(n,e){t.push([n,e])},lineStart:function(){n.push(t=[])},lineEnd:br,rejoin:function(){n.length>1&&n.push(n.pop().concat(n.shift()))},result:function(){var e=n;return n=[],t=null,e}}},gy=function(t,n,e,r,i,o){var u,a=t[0],c=t[1],s=n[0],f=n[1],l=0,h=1,p=s-a,d=f-c;if(u=e-a,p||!(u>0)){if(u/=p,p<0){if(u<l)return;u<h&&(h=u)}else if(p>0){if(u>h)return;u>l&&(l=u)}if(u=i-a,p||!(u<0)){if(u/=p,p<0){if(u>h)return;u>l&&(l=u)}else if(p>0){if(u<l)return;u<h&&(h=u)}if(u=r-c,d||!(u>0)){if(u/=d,d<0){if(u<l)return;u<h&&(h=u)}else if(d>0){if(u>h)return;u>l&&(l=u)}if(u=o-c,d||!(u<0)){if(u/=d,d<0){if(u>h)return;u>l&&(l=u)}else if(d>0){if(u<l)return;u<h&&(h=u)}return l>0&&(t[0]=a+l*p,t[1]=c+l*d),h<1&&(n[0]=a+h*p,n[1]=c+h*d),!0}}}}},my=function(t,n){return P_(t[0]-n[0])<k_&&P_(t[1]-n[1])<k_},xy=function(t,n,e,r,i){var o,u,a=[],c=[];if(t.forEach(function(t){if(!((n=t.length-1)<=0)){var n,e,r=t[0],u=t[n];if(my(r,u)){for(i.lineStart(),o=0;o<n;++o)i.point((r=t[o])[0],r[1]);return void i.lineEnd()}a.push(e=new si(r,t,null,!0)),c.push(e.o=new si(r,null,e,!1)),a.push(e=new si(u,t,null,!1)),c.push(e.o=new si(u,null,e,!0))}}),a.length){for(c.sort(n),fi(a),fi(c),o=0,u=c.length;o<u;++o)c[o].e=e=!e;for(var s,f,l=a[0];;){for(var h=l,p=!0;h.v;)if((h=h.n)===l)return;s=h.z,i.lineStart();do{if(h.v=h.o.v=!0,h.e){if(p)for(o=0,u=s.length;o<u;++o)i.point((f=s[o])[0],f[1]);else r(h.x,h.n.x,1,i);h=h.n}else{if(p)for(s=h.p.z,o=s.length-1;o>=0;--o)i.point((f=s[o])[0],f[1]);else r(h.x,h.p.x,-1,i);h=h.p}h=h.o,s=h.z,p=!p}while(!h.v);i.lineEnd()}}},by=1e9,wy=-by,My=function(){var t,n,e,r=0,i=0,o=960,u=500;return e={stream:function(e){return t&&n===e?t:t=li(r,i,o,u)(n=e)},extent:function(a){return arguments.length?(r=+a[0][0],i=+a[0][1],o=+a[1][0],u=+a[1][1],t=n=null,e):[[r,i],[o,u]]}}},Ty=$v(),ky=function(t,n){var e=n[0],r=n[1],i=[I_(e),-q_(e),0],o=0,u=0;Ty.reset();for(var a=0,c=t.length;a<c;++a)if(f=(s=t[a]).length)for(var s,f,l=s[f-1],h=l[0],p=l[1]/2+E_,d=I_(p),v=q_(p),_=0;_<f;++_,h=g,d=x,v=b,l=y){var y=s[_],g=y[0],m=y[1]/2+E_,x=I_(m),b=q_(m),w=g-h,M=w>=0?1:-1,T=M*w,k=T>N_,N=d*x;if(Ty.add(R_(N*M*I_(T),v*b+N*q_(T))),o+=k?w+M*A_:w,k^h>=e^g>=e){var S=Pr(Cr(l),Cr(y));qr(S);var E=Pr(i,S);qr(E);var A=(k^w>=0?-1:1)*mr(E[2]);(r>A||r===A&&(S[0]||S[1]))&&(u+=k^w>=0?1:-1)}}return(o<-k_||o<k_&&Ty<-k_)^1&u},Ny=$v(),Sy={sphere:br,point:br,lineStart:hi,lineEnd:br,polygonStart:br,polygonEnd:br},Ey=function(t){return Ny.reset(),$_(t,Sy),+Ny},Ay=[null,null],Cy={type:"LineString",coordinates:Ay},zy=function(t,n){return Ay[0]=t,Ay[1]=n,Ey(Cy)},Py={Feature:function(t,n){return _i(t.geometry,n)},FeatureCollection:function(t,n){for(var e=t.features,r=-1,i=e.length;++r<i;)if(_i(e[r].geometry,n))return!0;return!1}},Ly={Sphere:function(){return!0},Point:function(t,n){return yi(t.coordinates,n)},MultiPoint:function(t,n){for(var e=t.coordinates,r=-1,i=e.length;++r<i;)if(yi(e[r],n))return!0;return!1},LineString:function(t,n){return gi(t.coordinates,n)},MultiLineString:function(t,n){for(var e=t.coordinates,r=-1,i=e.length;++r<i;)if(gi(e[r],n))return!0;return!1},Polygon:function(t,n){return mi(t.coordinates,n)},MultiPolygon:function(t,n){for(var e=t.coordinates,r=-1,i=e.length;++r<i;)if(mi(e[r],n))return!0;return!1},GeometryCollection:function(t,n){for(var e=t.geometries,r=-1,i=e.length;++r<i;)if(_i(e[r],n))return!0;return!1}},Ry=function(t,n){return(t&&Py.hasOwnProperty(t.type)?Py[t.type]:_i)(t,n)},qy=function(t,n){var e=t[0]*z_,r=t[1]*z_,i=n[0]*z_,o=n[1]*z_,u=q_(r),a=I_(r),c=q_(o),s=I_(o),f=u*q_(e),l=u*I_(e),h=c*q_(i),p=c*I_(i),d=2*mr(B_(xr(o-r)+u*c*xr(i-e))),v=I_(d),_=d?function(t){var n=I_(t*=d)/v,e=I_(d-t)/v,r=e*f+n*h,i=e*l+n*p,o=e*a+n*s;return[R_(i,r)*C_,R_(o,B_(r*r+i*i))*C_]}:function(){return[e*C_,r*C_]};return _.distance=d,_},Uy=function(t){return t},Dy=$v(),Oy=$v(),Fy={point:br,lineStart:br,lineEnd:br,polygonStart:function(){Fy.lineStart=Ni,Fy.lineEnd=Ai},polygonEnd:function(){Fy.lineStart=Fy.lineEnd=Fy.point=br,Dy.add(P_(Oy)),Oy.reset()},result:function(){var t=Dy/2;return Dy.reset(),t}},Iy=1/0,Yy=Iy,By=-Iy,Hy=By,jy={point:Ci,lineStart:br,lineEnd:br,polygonStart:br,polygonEnd:br,result:function(){var t=[[Iy,Yy],[By,Hy]];return By=Hy=-(Yy=Iy=1/0),t}},Xy=0,$y=0,Vy=0,Wy=0,Zy=0,Gy=0,Jy=0,Qy=0,Ky=0,tg={point:zi,lineStart:Pi,lineEnd:qi,polygonStart:function(){tg.lineStart=Ui,tg.lineEnd=Di},polygonEnd:function(){tg.point=zi,tg.lineStart=Pi,tg.lineEnd=qi},result:function(){var t=Ky?[Jy/Ky,Qy/Ky]:Gy?[Wy/Gy,Zy/Gy]:Vy?[Xy/Vy,$y/Vy]:[NaN,NaN];return Xy=$y=Vy=Wy=Zy=Gy=Jy=Qy=Ky=0,t}};Ii.prototype={_radius:4.5,pointRadius:function(t){return this._radius=t,this},polygonStart:function(){this._line=0},polygonEnd:function(){this._line=NaN},lineStart:function(){this._point=0},lineEnd:function(){0===this._line&&this._context.closePath(),this._point=NaN},point:function(t,n){switch(this._point){case 0:this._context.moveTo(t,n),this._point=1;break;case 1:this._context.lineTo(t,n);break;default:this._context.moveTo(t+this._radius,n),this._context.arc(t,n,this._radius,0,A_)}},result:br};var ng,eg,rg,ig,og,ug=$v(),ag={point:br,lineStart:function(){ag.point=Yi},lineEnd:function(){ng&&Bi(eg,rg),ag.point=br},polygonStart:function(){ng=!0},polygonEnd:function(){ng=null},result:function(){var t=+ug;return ug.reset(),t}};Hi.prototype={_radius:4.5,_circle:ji(4.5),pointRadius:function(t){return(t=+t)!==this._radius&&(this._radius=t,this._circle=null),this},polygonStart:function(){this._line=0},polygonEnd:function(){this._line=NaN},lineStart:function(){this._point=0},lineEnd:function(){0===this._line&&this._string.push("Z"),this._point=NaN},point:function(t,n){switch(this._point){case 0:this._string.push("M",t,",",n),this._point=1;break;case 1:this._string.push("L",t,",",n);break;default:null==this._circle&&(this._circle=ji(this._radius)),this._string.push("M",t,",",n,this._circle)}},result:function(){if(this._string.length){var t=this._string.join("");return this._string=[],t}return null}};var cg=function(t,n){function e(t){return t&&("function"==typeof o&&i.pointRadius(+o.apply(this,arguments)),$_(t,r(i))),i.result()}var r,i,o=4.5;return e.area=function(t){return $_(t,r(Fy)),Fy.result()},e.measure=function(t){return $_(t,r(ag)),ag.result()},e.bounds=function(t){return $_(t,r(jy)),jy.result()},e.centroid=function(t){return $_(t,r(tg)),tg.result()},e.projection=function(n){return arguments.length?(r=null==n?(t=null,Uy):(t=n).stream,e):t},e.context=function(t){return arguments.length?(i=null==t?(n=null,new Hi):new Ii(n=t),"function"!=typeof o&&i.pointRadius(o),e):n},e.pointRadius=function(t){return arguments.length?(o="function"==typeof t?t:(i.pointRadius(+t),+t),e):o},e.projection(t).context(n)},sg=function(t,n,e,r){return function(i,o){function u(n,e){var r=i(n,e);t(n=r[0],e=r[1])&&o.point(n,e)}function a(t,n){var e=i(t,n);_.point(e[0],e[1])}function c(){b.point=a,_.lineStart()}function s(){b.point=u,_.lineEnd()}function f(t,n){v.push([t,n]);var e=i(t,n);m.point(e[0],e[1])}function l(){m.lineStart(),v=[]}function h(){f(v[0][0],v[0][1]),m.lineEnd();var t,n,e,r,i=m.clean(),u=g.result(),a=u.length;if(v.pop(),p.push(v),v=null,a)if(1&i){if(e=u[0],(n=e.length-1)>0){for(x||(o.polygonStart(),x=!0),o.lineStart(),t=0;t<n;++t)o.point((r=e[t])[0],r[1]);o.lineEnd()}}else a>1&&2&i&&u.push(u.pop().concat(u.shift())),d.push(u.filter(Xi))}var p,d,v,_=n(o),y=i.invert(r[0],r[1]),g=yy(),m=n(g),x=!1,b={point:u,lineStart:c,lineEnd:s,polygonStart:function(){b.point=f,b.lineStart=l,b.lineEnd=h,d=[],p=[]},polygonEnd:function(){b.point=u,b.lineStart=c,b.lineEnd=s,d=bf(d);var t=ky(p,y);d.length?(x||(o.polygonStart(),x=!0),xy(d,$i,t,e,o)):t&&(x||(o.polygonStart(),x=!0),o.lineStart(),e(null,null,1,o),o.lineEnd()),x&&(o.polygonEnd(),x=!1),d=p=null},sphere:function(){o.polygonStart(),o.lineStart(),e(null,null,1,o),o.lineEnd(),o.polygonEnd()}};return b}},fg=sg(function(){return!0},Vi,Zi,[-N_,-S_]),lg=function(t,n){function e(e,r,i,o){ai(o,t,n,i,e,r)}function r(t,n){return q_(t)*q_(n)>a}function i(t){var n,e,i,a,f;return{lineStart:function(){a=i=!1,f=1},point:function(l,h){var p,d=[l,h],v=r(l,h),_=c?v?0:u(l,h):v?u(l+(l<0?N_:-N_),h):0;if(!n&&(a=i=v)&&t.lineStart(),v!==i&&(!(p=o(n,d))||my(n,p)||my(d,p))&&(d[0]+=k_,d[1]+=k_,v=r(d[0],d[1])),v!==i)f=0,v?(t.lineStart(),p=o(d,n),t.point(p[0],p[1])):(p=o(n,d),t.point(p[0],p[1]),t.lineEnd()),n=p;else if(s&&n&&c^v){var y;_&e||!(y=o(d,n,!0))||(f=0,c?(t.lineStart(),t.point(y[0][0],y[0][1]),t.point(y[1][0],y[1][1]),t.lineEnd()):(t.point(y[1][0],y[1][1]),t.lineEnd(),t.lineStart(),t.point(y[0][0],y[0][1])))}!v||n&&my(n,d)||t.point(d[0],d[1]),n=d,i=v,e=_},lineEnd:function(){i&&t.lineEnd(),n=null},clean:function(){return f|(a&&i)<<1}}}function o(t,n,e){var r=Cr(t),i=Cr(n),o=[1,0,0],u=Pr(r,i),c=zr(u,u),s=u[0],f=c-s*s;if(!f)return!e&&t;var l=a*c/f,h=-a*s/f,p=Pr(o,u),d=Rr(o,l);Lr(d,Rr(u,h));var v=p,_=zr(d,v),y=zr(v,v),g=_*_-y*(zr(d,d)-1);if(!(g<0)){var m=B_(g),x=Rr(v,(-_-m)/y);if(Lr(x,d),x=Ar(x),!e)return x;var b,w=t[0],M=n[0],T=t[1],k=n[1];M<w&&(b=w,w=M,M=b);var N=M-w,S=P_(N-N_)<k_,E=S||N<k_;if(!S&&k<T&&(b=T,T=k,k=b),E?S?T+k>0^x[1]<(P_(x[0]-w)<k_?T:k):T<=x[1]&&x[1]<=k:N>N_^(w<=x[0]&&x[0]<=M)){var A=Rr(v,(-_+m)/y);return Lr(A,d),[x,Ar(A)]}}}function u(n,e){var r=c?t:N_-t,i=0;return n<-r?i|=1:n>r&&(i|=2),e<-r?i|=4:e>r&&(i|=8),i}var a=q_(t),c=a>0,s=P_(a)>k_;return sg(r,i,e,c?[0,-t]:[-N_,t-N_])},hg=function(t){return{stream:Gi(t)}};Ji.prototype={constructor:Ji,point:function(t,n){this.stream.point(t,n)},sphere:function(){this.stream.sphere()},lineStart:function(){this.stream.lineStart()},lineEnd:function(){this.stream.lineEnd()},polygonStart:function(){this.stream.polygonStart()},polygonEnd:function(){this.stream.polygonEnd()}};var pg=16,dg=q_(30*z_),vg=function(t,n){return+n?no(t,n):to(t)},_g=Gi({point:function(t,n){this.stream.point(t*z_,n*z_)}}),yg=function(){return io(uo).scale(155.424).center([0,33.6442])},gg=function(){return yg().parallels([29.5,45.5]).scale(1070).translate([480,250]).rotate([96,0]).center([-.6,38.7])},mg=function(){function t(t){var n=t[0],e=t[1];return a=null,i.point(n,e),a||(o.point(n,e),a)||(u.point(n,e),a)}function n(){return e=r=null,t}var e,r,i,o,u,a,c=gg(),s=yg().rotate([154,0]).center([-2,58.5]).parallels([55,65]),f=yg().rotate([157,0]).center([-3,19.9]).parallels([8,18]),l={point:function(t,n){a=[t,n]}};return t.invert=function(t){var n=c.scale(),e=c.translate(),r=(t[0]-e[0])/n,i=(t[1]-e[1])/n;return(i>=.12&&i<.234&&r>=-.425&&r<-.214?s:i>=.166&&i<.234&&r>=-.214&&r<-.115?f:c).invert(t)},t.stream=function(t){return e&&r===t?e:e=ao([c.stream(r=t),s.stream(t),f.stream(t)])},t.precision=function(t){return arguments.length?(c.precision(t),s.precision(t),f.precision(t),n()):c.precision()},t.scale=function(n){return arguments.length?(c.scale(n),s.scale(.35*n),f.scale(n),t.translate(c.translate())):c.scale()},t.translate=function(t){if(!arguments.length)return c.translate();var e=c.scale(),r=+t[0],a=+t[1];return i=c.translate(t).clipExtent([[r-.455*e,a-.238*e],[r+.455*e,a+.238*e]]).stream(l),o=s.translate([r-.307*e,a+.201*e]).clipExtent([[r-.425*e+k_,a+.12*e+k_],[r-.214*e-k_,a+.234*e-k_]]).stream(l),u=f.translate([r-.205*e,a+.212*e]).clipExtent([[r-.214*e+k_,a+.166*e+k_],[r-.115*e-k_,a+.234*e-k_]]).stream(l),n()},t.fitExtent=function(n,e){return Qi(t,n,e)},t.fitSize=function(n,e){return Ki(t,n,e)},t.scale(1070)},xg=co(function(t){return B_(2/(1+t))});xg.invert=so(function(t){return 2*mr(t/2)});var bg=function(){return eo(xg).scale(124.75).clipAngle(179.999)},wg=co(function(t){return(t=gr(t))&&t/I_(t)});wg.invert=so(function(t){return t});var Mg=function(){return eo(wg).scale(79.4188).clipAngle(179.999)};fo.invert=function(t,n){return[t,2*L_(D_(n))-S_]};var Tg=function(){return lo(fo).scale(961/A_)},kg=function(){return io(po).scale(109.5).parallels([30,30])};vo.invert=vo;var Ng=function(){return eo(vo).scale(152.63)},Sg=function(){return io(_o).scale(131.154).center([0,13.9389])};yo.invert=so(L_);var Eg=function(){return eo(yo).scale(144.049).clipAngle(60)},Ag=function(){function t(){return i=o=null,u}var n,e,r,i,o,u,a=1,c=0,s=0,f=1,l=1,h=Uy,p=null,d=Uy;return u={stream:function(t){return i&&o===t?i:i=h(d(o=t))},clipExtent:function(i){return arguments.length?(d=null==i?(p=n=e=r=null,Uy):li(p=+i[0][0],n=+i[0][1],e=+i[1][0],r=+i[1][1]),t()):null==p?null:[[p,n],[e,r]]},scale:function(n){return arguments.length?(h=go((a=+n)*f,a*l,c,s),t()):a},translate:function(n){return arguments.length?(h=go(a*f,a*l,c=+n[0],s=+n[1]),t()):[c,s]},reflectX:function(n){return arguments.length?(h=go(a*(f=n?-1:1),a*l,c,s),t()):f<0},reflectY:function(n){return arguments.length?(h=go(a*f,a*(l=n?-1:1),c,s),t()):l<0},fitExtent:function(t,n){return Qi(u,t,n)},fitSize:function(t,n){return Ki(u,t,n)}}};mo.invert=so(mr);var Cg=function(){return eo(mo).scale(249.5).clipAngle(90+k_)};xo.invert=so(function(t){return 2*L_(t)});var zg=function(){return eo(xo).scale(250).clipAngle(142)};bo.invert=function(t,n){return[-n,2*L_(D_(t))-S_]};var Pg=function(){var t=lo(bo),n=t.center,e=t.rotate;return t.center=function(t){return arguments.length?n([-t[1],t[0]]):(t=n(),[t[1],-t[0]])},t.rotate=function(t){return arguments.length?e([t[0],t[1],t.length>2?t[2]+90:90]):(t=e(),[t[0],t[1],t[2]-90])},e([0,0,90]).scale(159.155)},Lg=function(){function t(t){var o,u=0;t.eachAfter(function(t){var e=t.children;e?(t.x=Mo(e),t.y=ko(e)):(t.x=o?u+=n(t,o):0,t.y=0,o=t)});var a=So(t),c=Eo(t),s=a.x-n(a,c)/2,f=c.x+n(c,a)/2;return t.eachAfter(i?function(n){n.x=(n.x-t.x)*e,n.y=(t.y-n.y)*r}:function(n){n.x=(n.x-s)/(f-s)*e,n.y=(1-(t.y?n.y/t.y:1))*r})}var n=wo,e=1,r=1,i=!1;return t.separation=function(e){return arguments.length?(n=e,t):n},t.size=function(n){return arguments.length?(i=!1,e=+n[0],r=+n[1],t):i?null:[e,r]},t.nodeSize=function(n){return arguments.length?(i=!0,e=+n[0],r=+n[1],t):i?[e,r]:null},t},Rg=function(){return this.eachAfter(Ao)},qg=function(t){var n,e,r,i,o=this,u=[o];do{for(n=u.reverse(),u=[];o=n.pop();)if(t(o),e=o.children)for(r=0,i=e.length;r<i;++r)u.push(e[r])}while(u.length);return this},Ug=function(t){for(var n,e,r=this,i=[r];r=i.pop();)if(t(r),n=r.children)for(e=n.length-1;e>=0;--e)i.push(n[e]);return this},Dg=function(t){for(var n,e,r,i=this,o=[i],u=[];i=o.pop();)if(u.push(i),n=i.children)for(e=0,r=n.length;e<r;++e)o.push(n[e]);for(;i=u.pop();)t(i);return this},Og=function(t){return this.eachAfter(function(n){for(var e=+t(n.data)||0,r=n.children,i=r&&r.length;--i>=0;)e+=r[i].value;n.value=e})},Fg=function(t){return this.eachBefore(function(n){n.children&&n.children.sort(t)})},Ig=function(t){for(var n=this,e=Co(n,t),r=[n];n!==e;)n=n.parent,r.push(n);for(var i=r.length;t!==e;)r.splice(i,0,t),t=t.parent;return r},Yg=function(){for(var t=this,n=[t];t=t.parent;)n.push(t);return n},Bg=function(){var t=[];return this.each(function(n){t.push(n)}),t},Hg=function(){var t=[];return this.eachBefore(function(n){n.children||t.push(n)}),t},jg=function(){var t=this,n=[];return t.each(function(e){e!==t&&n.push({source:e.parent,target:e})}),n};Uo.prototype=zo.prototype={constructor:Uo,count:Rg,each:qg,eachAfter:Dg,eachBefore:Ug,sum:Og,sort:Fg,path:Ig,ancestors:Yg,descendants:Bg,leaves:Hg,links:jg,copy:Po};var Xg=function(t){for(var n=(t=t.slice()).length,e=null,r=e;n;){var i=new Do(t[n-1]);r=r?r.next=i:e=i,t[void 0]=t[--n]}return{head:e,tail:r}},$g=function(t){return Fo(Xg(t),[])},Vg=function(t){return Vo(t),t},Wg=function(t){return function(){return t}},Zg=function(){function t(t){return t.x=e/2,t.y=r/2,n?t.eachBefore(Qo(n)).eachAfter(Ko(i,.5)).eachBefore(tu(1)):t.eachBefore(Qo(Jo)).eachAfter(Ko(Go,1)).eachAfter(Ko(i,t.r/Math.min(e,r))).eachBefore(tu(Math.min(e,r)/(2*t.r))),t}var n=null,e=1,r=1,i=Go;return t.radius=function(e){return arguments.length?(n=Wo(e),t):n},t.size=function(n){return arguments.length?(e=+n[0],r=+n[1],t):[e,r]},t.padding=function(n){return arguments.length?(i="function"==typeof n?n:Wg(+n),t):i},t},Gg=function(t){t.x0=Math.round(t.x0),t.y0=Math.round(t.y0),t.x1=Math.round(t.x1),t.y1=Math.round(t.y1)},Jg=function(t,n,e,r,i){for(var o,u=t.children,a=-1,c=u.length,s=t.value&&(r-n)/t.value;++a<c;)o=u[a],o.y0=e,o.y1=i,o.x0=n,o.x1=n+=o.value*s},Qg=function(){function t(t){var u=t.height+1;return t.x0=t.y0=i,t.x1=e,t.y1=r/u,t.eachBefore(n(r,u)),o&&t.eachBefore(Gg),t}function n(t,n){return function(e){e.children&&Jg(e,e.x0,t*(e.depth+1)/n,e.x1,t*(e.depth+2)/n);var r=e.x0,o=e.y0,u=e.x1-i,a=e.y1-i;u<r&&(r=u=(r+u)/2),a<o&&(o=a=(o+a)/2),e.x0=r,e.y0=o,e.x1=u,e.y1=a}}var e=1,r=1,i=0,o=!1;return t.round=function(n){return arguments.length?(o=!!n,t):o},t.size=function(n){return arguments.length?(e=+n[0],r=+n[1],t):[e,r]},t.padding=function(n){return arguments.length?(i=+n,t):i},t},Kg="$",tm={depth:-1},nm={},em=function(){function t(t){var r,i,o,u,a,c,s,f=t.length,l=new Array(f),h={};for(i=0;i<f;++i)r=t[i],a=l[i]=new Uo(r),null!=(c=n(r,i,t))&&(c+="")&&(s=Kg+(a.id=c),h[s]=s in h?nm:a);for(i=0;i<f;++i)if(a=l[i],null!=(c=e(t[i],i,t))&&(c+="")){if(!(u=h[Kg+c]))throw new Error("missing: "+c);if(u===nm)throw new Error("ambiguous: "+c);u.children?u.children.push(a):u.children=[a],a.parent=u}else{if(o)throw new Error("multiple roots");o=a}if(!o)throw new Error("no root");if(o.parent=tm,o.eachBefore(function(t){t.depth=t.parent.depth+1,--f}).eachBefore(qo),o.parent=null,f>0)throw new Error("cycle");return o}var n=nu,e=eu;return t.id=function(e){return arguments.length?(n=Zo(e),t):n},t.parentId=function(n){return arguments.length?(e=Zo(n),t):e},t};su.prototype=Object.create(Uo.prototype);var rm=function(){function t(t){var r=fu(t);if(r.eachAfter(n),r.parent.m=-r.z,r.eachBefore(e),c)t.eachBefore(i);else{var s=t,f=t,l=t;t.eachBefore(function(t){t.x<s.x&&(s=t),t.x>f.x&&(f=t),t.depth>l.depth&&(l=t)});var h=s===f?1:o(s,f)/2,p=h-s.x,d=u/(f.x+h+p),v=a/(l.depth||1);t.eachBefore(function(t){t.x=(t.x+p)*d,t.y=t.depth*v})}return t}function n(t){var n=t.children,e=t.parent.children,i=t.i?e[t.i-1]:null;if(n){au(t);var u=(n[0].z+n[n.length-1].z)/2;i?(t.z=i.z+o(t._,i._),t.m=t.z-u):t.z=u}else i&&(t.z=i.z+o(t._,i._));t.parent.A=r(t,i,t.parent.A||e[0])}function e(t){t._.x=t.z+t.parent.m,t.m+=t.parent.m}function r(t,n,e){if(n){for(var r,i=t,u=t,a=n,c=i.parent.children[0],s=i.m,f=u.m,l=a.m,h=c.m;a=ou(a),i=iu(i),a&&i;)c=iu(c),u=ou(u),u.a=t,r=a.z+l-i.z-s+o(a._,i._),r>0&&(uu(cu(a,t,e),t,r),s+=r,f+=r),l+=a.m,s+=i.m,h+=c.m,f+=u.m;a&&!ou(u)&&(u.t=a,u.m+=l-f),i&&!iu(c)&&(c.t=i,c.m+=s-h,e=t)}return e}function i(t){t.x*=u,t.y=t.depth*a}var o=ru,u=1,a=1,c=null;return t.separation=function(n){return arguments.length?(o=n,t):o},t.size=function(n){return arguments.length?(c=!1,u=+n[0],a=+n[1],t):c?null:[u,a]},t.nodeSize=function(n){return arguments.length?(c=!0,u=+n[0],a=+n[1],t):c?[u,a]:null},t},im=function(t,n,e,r,i){for(var o,u=t.children,a=-1,c=u.length,s=t.value&&(i-e)/t.value;++a<c;)o=u[a],o.x0=n,o.x1=r,o.y0=e,o.y1=e+=o.value*s},om=(1+Math.sqrt(5))/2,um=function t(n){function e(t,e,r,i,o){lu(n,t,e,r,i,o)}return e.ratio=function(n){return t((n=+n)>1?n:1)},e}(om),am=function(){function t(t){return t.x0=t.y0=0,t.x1=i,t.y1=o,t.eachBefore(n),u=[0],r&&t.eachBefore(Gg),t}function n(t){var n=u[t.depth],r=t.x0+n,i=t.y0+n,o=t.x1-n,h=t.y1-n;o<r&&(r=o=(r+o)/2),h<i&&(i=h=(i+h)/2),t.x0=r,t.y0=i,t.x1=o,t.y1=h,
t.children&&(n=u[t.depth+1]=a(t)/2,r+=l(t)-n,i+=c(t)-n,o-=s(t)-n,h-=f(t)-n,o<r&&(r=o=(r+o)/2),h<i&&(i=h=(i+h)/2),e(t,r,i,o,h))}var e=um,r=!1,i=1,o=1,u=[0],a=Go,c=Go,s=Go,f=Go,l=Go;return t.round=function(n){return arguments.length?(r=!!n,t):r},t.size=function(n){return arguments.length?(i=+n[0],o=+n[1],t):[i,o]},t.tile=function(n){return arguments.length?(e=Zo(n),t):e},t.padding=function(n){return arguments.length?t.paddingInner(n).paddingOuter(n):t.paddingInner()},t.paddingInner=function(n){return arguments.length?(a="function"==typeof n?n:Wg(+n),t):a},t.paddingOuter=function(n){return arguments.length?t.paddingTop(n).paddingRight(n).paddingBottom(n).paddingLeft(n):t.paddingTop()},t.paddingTop=function(n){return arguments.length?(c="function"==typeof n?n:Wg(+n),t):c},t.paddingRight=function(n){return arguments.length?(s="function"==typeof n?n:Wg(+n),t):s},t.paddingBottom=function(n){return arguments.length?(f="function"==typeof n?n:Wg(+n),t):f},t.paddingLeft=function(n){return arguments.length?(l="function"==typeof n?n:Wg(+n),t):l},t},cm=function(t,n,e,r,i){function o(t,n,e,r,i,u,a){if(t>=n-1){var s=c[t];return s.x0=r,s.y0=i,s.x1=u,s.y1=a,void 0}for(var l=f[t],h=e/2+l,p=t+1,d=n-1;p<d;){var v=p+d>>>1;f[v]<h?p=v+1:d=v}h-f[p-1]<f[p]-h&&t+1<p&&--p;var _=f[p]-l,y=e-_;if(u-r>a-i){var g=(r*y+u*_)/e;o(t,p,_,r,i,g,a),o(p,n,y,g,i,u,a)}else{var m=(i*y+a*_)/e;o(t,p,_,r,i,u,m),o(p,n,y,r,m,u,a)}}var u,a,c=t.children,s=c.length,f=new Array(s+1);for(f[0]=a=u=0;u<s;++u)f[u+1]=a+=c[u].value;o(0,s,t.value,n,e,r,i)},sm=function(t,n,e,r,i){(1&t.depth?im:Jg)(t,n,e,r,i)},fm=function t(n){function e(t,e,r,i,o){if((u=t._squarify)&&u.ratio===n)for(var u,a,c,s,f,l=-1,h=u.length,p=t.value;++l<h;){for(a=u[l],c=a.children,s=a.value=0,f=c.length;s<f;++s)a.value+=c[s].value;a.dice?Jg(a,e,r,i,r+=(o-r)*a.value/p):im(a,e,r,e+=(i-e)*a.value/p,o),p-=a.value}else t._squarify=u=lu(n,t,e,r,i,o),u.ratio=n}return e.ratio=function(n){return t((n=+n)>1?n:1)},e}(om),lm=function(t){for(var n,e=-1,r=t.length,i=t[r-1],o=0;++e<r;)n=i,i=t[e],o+=n[1]*i[0]-n[0]*i[1];return o/2},hm=function(t){for(var n,e,r=-1,i=t.length,o=0,u=0,a=t[i-1],c=0;++r<i;)n=a,a=t[r],c+=e=n[0]*a[1]-a[0]*n[1],o+=(n[0]+a[0])*e,u+=(n[1]+a[1])*e;return c*=3,[o/c,u/c]},pm=function(t,n,e){return(n[0]-t[0])*(e[1]-t[1])-(n[1]-t[1])*(e[0]-t[0])},dm=function(t){if((e=t.length)<3)return null;var n,e,r=new Array(e),i=new Array(e);for(n=0;n<e;++n)r[n]=[+t[n][0],+t[n][1],n];for(r.sort(hu),n=0;n<e;++n)i[n]=[r[n][0],-r[n][1]];var o=pu(r),u=pu(i),a=u[0]===o[0],c=u[u.length-1]===o[o.length-1],s=[];for(n=o.length-1;n>=0;--n)s.push(t[r[o[n]][2]]);for(n=+a;n<u.length-c;++n)s.push(t[r[u[n]][2]]);return s},vm=function(t,n){for(var e,r,i=t.length,o=t[i-1],u=n[0],a=n[1],c=o[0],s=o[1],f=!1,l=0;l<i;++l)o=t[l],e=o[0],r=o[1],r>a!=s>a&&u<(c-e)*(a-r)/(s-r)+e&&(f=!f),c=e,s=r;return f},_m=function(t){for(var n,e,r=-1,i=t.length,o=t[i-1],u=o[0],a=o[1],c=0;++r<i;)n=u,e=a,o=t[r],u=o[0],a=o[1],n-=u,e-=a,c+=Math.sqrt(n*n+e*e);return c},ym=[].slice,gm={};du.prototype=xu.prototype={constructor:du,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 n=ym.call(arguments,1);return n.push(t),++this._waiting,this._tasks.push(n),vu(this),this},abort:function(){return null==this._error&&gu(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(n,e){t.apply(null,[n].concat(e))},mu(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,mu(this),this}};var mm=function(){return Math.random()},xm=function t(n){function e(t,e){return t=null==t?0:+t,e=null==e?1:+e,1===arguments.length?(e=t,t=0):e-=t,function(){return n()*e+t}}return e.source=t,e}(mm),bm=function t(n){function e(t,e){var r,i;return t=null==t?0:+t,e=null==e?1:+e,function(){var o;if(null!=r)o=r,r=null;else do{r=2*n()-1,o=2*n()-1,i=r*r+o*o}while(!i||i>1);return t+e*o*Math.sqrt(-2*Math.log(i)/i)}}return e.source=t,e}(mm),wm=function t(n){function e(){var t=bm.source(n).apply(this,arguments);return function(){return Math.exp(t())}}return e.source=t,e}(mm),Mm=function t(n){function e(t){return function(){for(var e=0,r=0;r<t;++r)e+=n();return e}}return e.source=t,e}(mm),Tm=function t(n){function e(t){var e=Mm.source(n)(t);return function(){return e()/t}}return e.source=t,e}(mm),km=function t(n){function e(t){return function(){return-Math.log(1-n())/t}}return e.source=t,e}(mm),Nm=function(t,n){function e(t){var n,e=s.status;if(!e&&wu(s)||e>=200&&e<300||304===e){if(o)try{n=o.call(r,s)}catch(t){return void a.call("error",r,t)}else n=s;a.call("load",r,n)}else a.call("error",r,t)}var r,i,o,u,a=v("beforesend","progress","load","error"),c=He(),s=new XMLHttpRequest,f=null,l=null,h=0;if("undefined"==typeof XDomainRequest||"withCredentials"in s||!/^(http(s)?:)?\/\//.test(t)||(s=new XDomainRequest),"onload"in s?s.onload=s.onerror=s.ontimeout=e:s.onreadystatechange=function(t){s.readyState>3&&e(t)},s.onprogress=function(t){a.call("progress",r,t)},r={header:function(t,n){return t=(t+"").toLowerCase(),arguments.length<2?c.get(t):(null==n?c.remove(t):c.set(t,n+""),r)},mimeType:function(t){return arguments.length?(i=null==t?null:t+"",r):i},responseType:function(t){return arguments.length?(u=t,r):u},timeout:function(t){return arguments.length?(h=+t,r):h},user:function(t){return arguments.length<1?f:(f=null==t?null:t+"",r)},password:function(t){return arguments.length<1?l:(l=null==t?null:t+"",r)},response:function(t){return o=t,r},get:function(t,n){return r.send("GET",t,n)},post:function(t,n){return r.send("POST",t,n)},send:function(n,e,o){return s.open(n,t,!0,f,l),null==i||c.has("accept")||c.set("accept",i+",*/*"),s.setRequestHeader&&c.each(function(t,n){s.setRequestHeader(n,t)}),null!=i&&s.overrideMimeType&&s.overrideMimeType(i),null!=u&&(s.responseType=u),h>0&&(s.timeout=h),null==o&&"function"==typeof e&&(o=e,e=null),null!=o&&1===o.length&&(o=bu(o)),null!=o&&r.on("error",o).on("load",function(t){o(null,t)}),a.call("beforesend",r,s),s.send(null==e?null:e),r},abort:function(){return s.abort(),r},on:function(){var t=a.on.apply(a,arguments);return t===a?r:t}},null!=n){if("function"!=typeof n)throw new Error("invalid callback: "+n);return r.get(n)}return r},Sm=function(t,n){return function(e,r){var i=Nm(e).mimeType(t).response(n);if(null!=r){if("function"!=typeof r)throw new Error("invalid callback: "+r);return i.get(r)}return i}},Em=Sm("text/html",function(t){return document.createRange().createContextualFragment(t.responseText)}),Am=Sm("application/json",function(t){return JSON.parse(t.responseText)}),Cm=Sm("text/plain",function(t){return t.responseText}),zm=Sm("application/xml",function(t){var n=t.responseXML;if(!n)throw new Error("parse error");return n}),Pm=function(t,n){return function(e,r,i){arguments.length<3&&(i=r,r=null);var o=Nm(e).mimeType(t);return o.row=function(t){return arguments.length?o.response(Mu(n,r=t)):r},o.row(r),i?o.get(i):o}},Lm=Pm("text/csv",Zd),Rm=Pm("text/tab-separated-values",tv),qm=Array.prototype,Um=qm.map,Dm=qm.slice,Om={name:"implicit"},Fm=function(t){return function(){return t}},Im=function(t){return+t},Ym=[0,1],Bm=function(n,e,r){var o,u=n[0],a=n[n.length-1],c=i(u,a,null==e?10:e);switch(r=pr(null==r?",f":r),r.type){case"s":var s=Math.max(Math.abs(u),Math.abs(a));return null!=r.precision||isNaN(o=jv(c,s))||(r.precision=o),t.formatPrefix(r,s);case"":case"e":case"g":case"p":case"r":null!=r.precision||isNaN(o=Xv(c,Math.max(Math.abs(u),Math.abs(a))))||(r.precision=o-("e"===r.type));break;case"f":case"%":null!=r.precision||isNaN(o=Hv(c))||(r.precision=o-2*("%"===r.type))}return t.format(r)},Hm=function(t,n){t=t.slice();var e,r=0,i=t.length-1,o=t[r],u=t[i];return u<o&&(e=r,r=i,i=e,e=o,o=u,u=e),t[r]=n.floor(o),t[i]=n.ceil(u),t},jm=new Date,Xm=new Date,$m=Ju(function(){},function(t,n){t.setTime(+t+n)},function(t,n){return n-t});$m.every=function(t){return t=Math.floor(t),isFinite(t)&&t>0?t>1?Ju(function(n){n.setTime(Math.floor(n/t)*t)},function(n,e){n.setTime(+n+e*t)},function(n,e){return(e-n)/t}):$m:null};var Vm=$m.range,Wm=6e4,Zm=6048e5,Gm=Ju(function(t){t.setTime(1e3*Math.floor(t/1e3))},function(t,n){t.setTime(+t+1e3*n)},function(t,n){return(n-t)/1e3},function(t){return t.getUTCSeconds()}),Jm=Gm.range,Qm=Ju(function(t){t.setTime(Math.floor(t/Wm)*Wm)},function(t,n){t.setTime(+t+n*Wm)},function(t,n){return(n-t)/Wm},function(t){return t.getMinutes()}),Km=Qm.range,tx=Ju(function(t){var n=t.getTimezoneOffset()*Wm%36e5;n<0&&(n+=36e5),t.setTime(36e5*Math.floor((+t-n)/36e5)+n)},function(t,n){t.setTime(+t+36e5*n)},function(t,n){return(n-t)/36e5},function(t){return t.getHours()}),nx=tx.range,ex=Ju(function(t){t.setHours(0,0,0,0)},function(t,n){t.setDate(t.getDate()+n)},function(t,n){return(n-t-(n.getTimezoneOffset()-t.getTimezoneOffset())*Wm)/864e5},function(t){return t.getDate()-1}),rx=ex.range,ix=Qu(0),ox=Qu(1),ux=Qu(2),ax=Qu(3),cx=Qu(4),sx=Qu(5),fx=Qu(6),lx=ix.range,hx=ox.range,px=ux.range,dx=ax.range,vx=cx.range,_x=sx.range,yx=fx.range,gx=Ju(function(t){t.setDate(1),t.setHours(0,0,0,0)},function(t,n){t.setMonth(t.getMonth()+n)},function(t,n){return n.getMonth()-t.getMonth()+12*(n.getFullYear()-t.getFullYear())},function(t){return t.getMonth()}),mx=gx.range,xx=Ju(function(t){t.setMonth(0,1),t.setHours(0,0,0,0)},function(t,n){t.setFullYear(t.getFullYear()+n)},function(t,n){return n.getFullYear()-t.getFullYear()},function(t){return t.getFullYear()});xx.every=function(t){return isFinite(t=Math.floor(t))&&t>0?Ju(function(n){n.setFullYear(Math.floor(n.getFullYear()/t)*t),n.setMonth(0,1),n.setHours(0,0,0,0)},function(n,e){n.setFullYear(n.getFullYear()+e*t)}):null};var bx=xx.range,wx=Ju(function(t){t.setUTCSeconds(0,0)},function(t,n){t.setTime(+t+n*Wm)},function(t,n){return(n-t)/Wm},function(t){return t.getUTCMinutes()}),Mx=wx.range,Tx=Ju(function(t){t.setUTCMinutes(0,0,0)},function(t,n){t.setTime(+t+36e5*n)},function(t,n){return(n-t)/36e5},function(t){return t.getUTCHours()}),kx=Tx.range,Nx=Ju(function(t){t.setUTCHours(0,0,0,0)},function(t,n){t.setUTCDate(t.getUTCDate()+n)},function(t,n){return(n-t)/864e5},function(t){return t.getUTCDate()-1}),Sx=Nx.range,Ex=Ku(0),Ax=Ku(1),Cx=Ku(2),zx=Ku(3),Px=Ku(4),Lx=Ku(5),Rx=Ku(6),qx=Ex.range,Ux=Ax.range,Dx=Cx.range,Ox=zx.range,Fx=Px.range,Ix=Lx.range,Yx=Rx.range,Bx=Ju(function(t){t.setUTCDate(1),t.setUTCHours(0,0,0,0)},function(t,n){t.setUTCMonth(t.getUTCMonth()+n)},function(t,n){return n.getUTCMonth()-t.getUTCMonth()+12*(n.getUTCFullYear()-t.getUTCFullYear())},function(t){return t.getUTCMonth()}),Hx=Bx.range,jx=Ju(function(t){t.setUTCMonth(0,1),t.setUTCHours(0,0,0,0)},function(t,n){t.setUTCFullYear(t.getUTCFullYear()+n)},function(t,n){return n.getUTCFullYear()-t.getUTCFullYear()},function(t){return t.getUTCFullYear()});jx.every=function(t){return isFinite(t=Math.floor(t))&&t>0?Ju(function(n){n.setUTCFullYear(Math.floor(n.getUTCFullYear()/t)*t),n.setUTCMonth(0,1),n.setUTCHours(0,0,0,0)},function(n,e){n.setUTCFullYear(n.getUTCFullYear()+e*t)}):null};var Xx,$x=jx.range,Vx={"-":"",_:" ",0:"0"},Wx=/^\s*\d+/,Zx=/^%/,Gx=/[\\\^\$\*\+\?\|\[\]\(\)\.\{\}]/g;Ja({dateTime:"%x, %X",date:"%-m/%-d/%Y",time:"%-I:%M:%S %p",periods:["AM","PM"],days:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],shortDays:["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],months:["January","February","March","April","May","June","July","August","September","October","November","December"],shortMonths:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"]});var Jx=Date.prototype.toISOString?Qa:t.utcFormat("%Y-%m-%dT%H:%M:%S.%LZ"),Qx=+new Date("2000-01-01T00:00:00.000Z")?Ka:t.utcParse("%Y-%m-%dT%H:%M:%S.%LZ"),Kx=1e3,tb=60*Kx,nb=60*tb,eb=24*nb,rb=7*eb,ib=30*eb,ob=365*eb,ub=function(){return ec(xx,gx,ix,ex,tx,Qm,Gm,$m,t.timeFormat).domain([new Date(2e3,0,1),new Date(2e3,0,2)])},ab=function(){return ec(jx,Bx,Ex,Nx,Tx,wx,Gm,$m,t.utcFormat).domain([Date.UTC(2e3,0,1),Date.UTC(2e3,0,2)])},cb=function(t){return t.match(/.{6}/g).map(function(t){return"#"+t})},sb=cb("1f77b4ff7f0e2ca02cd627289467bd8c564be377c27f7f7fbcbd2217becf"),fb=cb("393b795254a36b6ecf9c9ede6379398ca252b5cf6bcedb9c8c6d31bd9e39e7ba52e7cb94843c39ad494ad6616be7969c7b4173a55194ce6dbdde9ed6"),lb=cb("3182bd6baed69ecae1c6dbefe6550dfd8d3cfdae6bfdd0a231a35474c476a1d99bc7e9c0756bb19e9ac8bcbddcdadaeb636363969696bdbdbdd9d9d9"),hb=cb("1f77b4aec7e8ff7f0effbb782ca02c98df8ad62728ff98969467bdc5b0d58c564bc49c94e377c2f7b6d27f7f7fc7c7c7bcbd22dbdb8d17becf9edae5"),pb=Zh(Wt(300,.5,0),Wt(-240,.5,1)),db=Zh(Wt(-100,.75,.35),Wt(80,1.5,.8)),vb=Zh(Wt(260,.75,.35),Wt(80,1.5,.8)),_b=Wt(),yb=function(t){(t<0||t>1)&&(t-=Math.floor(t));var n=Math.abs(t-.5);return _b.h=360*t-100,_b.s=1.5-1.5*n,_b.l=.8-.9*n,_b+""},gb=rc(cb("44015444025645045745055946075a46085c460a5d460b5e470d60470e6147106347116447136548146748166848176948186a481a6c481b6d481c6e481d6f481f70482071482173482374482475482576482677482878482979472a7a472c7a472d7b472e7c472f7d46307e46327e46337f463480453581453781453882443983443a83443b84433d84433e85423f854240864241864142874144874045884046883f47883f48893e49893e4a893e4c8a3d4d8a3d4e8a3c4f8a3c508b3b518b3b528b3a538b3a548c39558c39568c38588c38598c375a8c375b8d365c8d365d8d355e8d355f8d34608d34618d33628d33638d32648e32658e31668e31678e31688e30698e306a8e2f6b8e2f6c8e2e6d8e2e6e8e2e6f8e2d708e2d718e2c718e2c728e2c738e2b748e2b758e2a768e2a778e2a788e29798e297a8e297b8e287c8e287d8e277e8e277f8e27808e26818e26828e26828e25838e25848e25858e24868e24878e23888e23898e238a8d228b8d228c8d228d8d218e8d218f8d21908d21918c20928c20928c20938c1f948c1f958b1f968b1f978b1f988b1f998a1f9a8a1e9b8a1e9c891e9d891f9e891f9f881fa0881fa1881fa1871fa28720a38620a48621a58521a68522a78522a88423a98324aa8325ab8225ac8226ad8127ad8128ae8029af7f2ab07f2cb17e2db27d2eb37c2fb47c31b57b32b67a34b67935b77937b87838b9773aba763bbb753dbc743fbc7340bd7242be7144bf7046c06f48c16e4ac16d4cc26c4ec36b50c46a52c56954c56856c66758c7655ac8645cc8635ec96260ca6063cb5f65cb5e67cc5c69cd5b6ccd5a6ece5870cf5773d05675d05477d1537ad1517cd2507fd34e81d34d84d44b86d54989d5488bd6468ed64590d74393d74195d84098d83e9bd93c9dd93ba0da39a2da37a5db36a8db34aadc32addc30b0dd2fb2dd2db5de2bb8de29bade28bddf26c0df25c2df23c5e021c8e020cae11fcde11dd0e11cd2e21bd5e21ad8e219dae319dde318dfe318e2e418e5e419e7e419eae51aece51befe51cf1e51df4e61ef6e620f8e621fbe723fde725")),mb=rc(cb("00000401000501010601010802010902020b02020d03030f03031204041405041606051806051a07061c08071e0907200a08220b09240c09260d0a290e0b2b100b2d110c2f120d31130d34140e36150e38160f3b180f3d19103f1a10421c10441d11471e114920114b21114e22115024125325125527125829115a2a115c2c115f2d11612f116331116533106734106936106b38106c390f6e3b0f703d0f713f0f72400f74420f75440f764510774710784910784a10794c117a4e117b4f127b51127c52137c54137d56147d57157e59157e5a167e5c167f5d177f5f187f601880621980641a80651a80671b80681c816a1c816b1d816d1d816e1e81701f81721f817320817521817621817822817922827b23827c23827e24828025828125818326818426818627818827818928818b29818c29818e2a81902a81912b81932b80942c80962c80982d80992d809b2e7f9c2e7f9e2f7fa02f7fa1307ea3307ea5317ea6317da8327daa337dab337cad347cae347bb0357bb2357bb3367ab5367ab73779b83779ba3878bc3978bd3977bf3a77c03a76c23b75c43c75c53c74c73d73c83e73ca3e72cc3f71cd4071cf4070d0416fd2426fd3436ed5446dd6456cd8456cd9466bdb476adc4869de4968df4a68e04c67e24d66e34e65e44f64e55064e75263e85362e95462ea5661eb5760ec5860ed5a5fee5b5eef5d5ef05f5ef1605df2625df2645cf3655cf4675cf4695cf56b5cf66c5cf66e5cf7705cf7725cf8745cf8765cf9785df9795df97b5dfa7d5efa7f5efa815ffb835ffb8560fb8761fc8961fc8a62fc8c63fc8e64fc9065fd9266fd9467fd9668fd9869fd9a6afd9b6bfe9d6cfe9f6dfea16efea36ffea571fea772fea973feaa74feac76feae77feb078feb27afeb47bfeb67cfeb77efeb97ffebb81febd82febf84fec185fec287fec488fec68afec88cfeca8dfecc8ffecd90fecf92fed194fed395fed597fed799fed89afdda9cfddc9efddea0fde0a1fde2a3fde3a5fde5a7fde7a9fde9aafdebacfcecaefceeb0fcf0b2fcf2b4fcf4b6fcf6b8fcf7b9fcf9bbfcfbbdfcfdbf")),xb=rc(cb("00000401000501010601010802010a02020c02020e03021004031204031405041706041907051b08051d09061f0a07220b07240c08260d08290e092b10092d110a30120a32140b34150b37160b39180c3c190c3e1b0c411c0c431e0c451f0c48210c4a230c4c240c4f260c51280b53290b552b0b572d0b592f0a5b310a5c320a5e340a5f3609613809623909633b09643d09653e0966400a67420a68440a68450a69470b6a490b6a4a0c6b4c0c6b4d0d6c4f0d6c510e6c520e6d540f6d550f6d57106e59106e5a116e5c126e5d126e5f136e61136e62146e64156e65156e67166e69166e6a176e6c186e6d186e6f196e71196e721a6e741a6e751b6e771c6d781c6d7a1d6d7c1d6d7d1e6d7f1e6c801f6c82206c84206b85216b87216b88226a8a226a8c23698d23698f24699025689225689326679526679727669827669a28659b29649d29649f2a63a02a63a22b62a32c61a52c60a62d60a82e5fa92e5eab2f5ead305dae305cb0315bb1325ab3325ab43359b63458b73557b93556ba3655bc3754bd3853bf3952c03a51c13a50c33b4fc43c4ec63d4dc73e4cc83f4bca404acb4149cc4248ce4347cf4446d04545d24644d34743d44842d54a41d74b3fd84c3ed94d3dda4e3cdb503bdd513ade5238df5337e05536e15635e25734e35933e45a31e55c30e65d2fe75e2ee8602de9612bea632aeb6429eb6628ec6726ed6925ee6a24ef6c23ef6e21f06f20f1711ff1731df2741cf3761bf37819f47918f57b17f57d15f67e14f68013f78212f78410f8850ff8870ef8890cf98b0bf98c0af98e09fa9008fa9207fa9407fb9606fb9706fb9906fb9b06fb9d07fc9f07fca108fca309fca50afca60cfca80dfcaa0ffcac11fcae12fcb014fcb216fcb418fbb61afbb81dfbba1ffbbc21fbbe23fac026fac228fac42afac62df9c72ff9c932f9cb35f8cd37f8cf3af7d13df7d340f6d543f6d746f5d949f5db4cf4dd4ff4df53f4e156f3e35af3e55df2e661f2e865f2ea69f1ec6df1ed71f1ef75f1f179f2f27df2f482f3f586f3f68af4f88ef5f992f6fa96f8fb9af9fc9dfafda1fcffa4")),bb=rc(cb("0d088710078813078916078a19068c1b068d1d068e20068f2206902406912605912805922a05932c05942e05952f059631059733059735049837049938049a3a049a3c049b3e049c3f049c41049d43039e44039e46039f48039f4903a04b03a14c02a14e02a25002a25102a35302a35502a45601a45801a45901a55b01a55c01a65e01a66001a66100a76300a76400a76600a76700a86900a86a00a86c00a86e00a86f00a87100a87201a87401a87501a87701a87801a87a02a87b02a87d03a87e03a88004a88104a78305a78405a78606a68707a68808a68a09a58b0aa58d0ba58e0ca48f0da4910ea3920fa39410a29511a19613a19814a099159f9a169f9c179e9d189d9e199da01a9ca11b9ba21d9aa31e9aa51f99a62098a72197a82296aa2395ab2494ac2694ad2793ae2892b02991b12a90b22b8fb32c8eb42e8db52f8cb6308bb7318ab83289ba3388bb3488bc3587bd3786be3885bf3984c03a83c13b82c23c81c33d80c43e7fc5407ec6417dc7427cc8437bc9447aca457acb4679cc4778cc4977cd4a76ce4b75cf4c74d04d73d14e72d24f71d35171d45270d5536fd5546ed6556dd7566cd8576bd9586ada5a6ada5b69db5c68dc5d67dd5e66de5f65de6164df6263e06363e16462e26561e26660e3685fe4695ee56a5de56b5de66c5ce76e5be76f5ae87059e97158e97257ea7457eb7556eb7655ec7754ed7953ed7a52ee7b51ef7c51ef7e50f07f4ff0804ef1814df1834cf2844bf3854bf3874af48849f48948f58b47f58c46f68d45f68f44f79044f79143f79342f89441f89540f9973ff9983ef99a3efa9b3dfa9c3cfa9e3bfb9f3afba139fba238fca338fca537fca636fca835fca934fdab33fdac33fdae32fdaf31fdb130fdb22ffdb42ffdb52efeb72dfeb82cfeba2cfebb2bfebd2afebe2afec029fdc229fdc328fdc527fdc627fdc827fdca26fdcb26fccd25fcce25fcd025fcd225fbd324fbd524fbd724fad824fada24f9dc24f9dd25f8df25f8e125f7e225f7e425f6e626f6e826f5e926f5eb27f4ed27f3ee27f3f027f2f227f1f426f1f525f0f724f0f921")),wb=function(t){return function(){return t}},Mb=Math.abs,Tb=Math.atan2,kb=Math.cos,Nb=Math.max,Sb=Math.min,Eb=Math.sin,Ab=Math.sqrt,Cb=1e-12,zb=Math.PI,Pb=zb/2,Lb=2*zb,Rb=function(){function t(){var t,s,f=+n.apply(this,arguments),l=+e.apply(this,arguments),h=o.apply(this,arguments)-Pb,p=u.apply(this,arguments)-Pb,d=Mb(p-h),v=p>h;if(c||(c=t=Ue()),l<f&&(s=l,l=f,f=s),l>Cb)if(d>Lb-Cb)c.moveTo(l*kb(h),l*Eb(h)),c.arc(0,0,l,h,p,!v),f>Cb&&(c.moveTo(f*kb(p),f*Eb(p)),c.arc(0,0,f,p,h,v));else{var _,y,g=h,m=p,x=h,b=p,w=d,M=d,T=a.apply(this,arguments)/2,k=T>Cb&&(i?+i.apply(this,arguments):Ab(f*f+l*l)),N=Sb(Mb(l-f)/2,+r.apply(this,arguments)),S=N,E=N;if(k>Cb){var A=uc(k/f*Eb(T)),C=uc(k/l*Eb(T));(w-=2*A)>Cb?(A*=v?1:-1,x+=A,b-=A):(w=0,x=b=(h+p)/2),(M-=2*C)>Cb?(C*=v?1:-1,g+=C,m-=C):(M=0,g=m=(h+p)/2)}var z=l*kb(g),P=l*Eb(g),L=f*kb(b),R=f*Eb(b);if(N>Cb){var q=l*kb(m),U=l*Eb(m),D=f*kb(x),O=f*Eb(x);if(d<zb){var F=w>Cb?hc(z,P,D,O,q,U,L,R):[L,R],I=z-F[0],Y=P-F[1],B=q-F[0],H=U-F[1],j=1/Eb(oc((I*B+Y*H)/(Ab(I*I+Y*Y)*Ab(B*B+H*H)))/2),X=Ab(F[0]*F[0]+F[1]*F[1]);S=Sb(N,(f-X)/(j-1)),E=Sb(N,(l-X)/(j+1))}}M>Cb?E>Cb?(_=pc(D,O,z,P,l,E,v),y=pc(q,U,L,R,l,E,v),c.moveTo(_.cx+_.x01,_.cy+_.y01),E<N?c.arc(_.cx,_.cy,E,Tb(_.y01,_.x01),Tb(y.y01,y.x01),!v):(c.arc(_.cx,_.cy,E,Tb(_.y01,_.x01),Tb(_.y11,_.x11),!v),c.arc(0,0,l,Tb(_.cy+_.y11,_.cx+_.x11),Tb(y.cy+y.y11,y.cx+y.x11),!v),c.arc(y.cx,y.cy,E,Tb(y.y11,y.x11),Tb(y.y01,y.x01),!v))):(c.moveTo(z,P),c.arc(0,0,l,g,m,!v)):c.moveTo(z,P),f>Cb&&w>Cb?S>Cb?(_=pc(L,R,q,U,f,-S,v),y=pc(z,P,D,O,f,-S,v),c.lineTo(_.cx+_.x01,_.cy+_.y01),S<N?c.arc(_.cx,_.cy,S,Tb(_.y01,_.x01),Tb(y.y01,y.x01),!v):(c.arc(_.cx,_.cy,S,Tb(_.y01,_.x01),Tb(_.y11,_.x11),!v),c.arc(0,0,f,Tb(_.cy+_.y11,_.cx+_.x11),Tb(y.cy+y.y11,y.cx+y.x11),v),c.arc(y.cx,y.cy,S,Tb(y.y11,y.x11),Tb(y.y01,y.x01),!v))):c.arc(0,0,f,b,x,v):c.lineTo(L,R)}else c.moveTo(0,0);if(c.closePath(),t)return c=null,t+""||null}var n=ac,e=cc,r=wb(0),i=null,o=sc,u=fc,a=lc,c=null;return t.centroid=function(){var t=(+n.apply(this,arguments)+ +e.apply(this,arguments))/2,r=(+o.apply(this,arguments)+ +u.apply(this,arguments))/2-zb/2;return[kb(r)*t,Eb(r)*t]},t.innerRadius=function(e){return arguments.length?(n="function"==typeof e?e:wb(+e),t):n},t.outerRadius=function(n){return arguments.length?(e="function"==typeof n?n:wb(+n),t):e},t.cornerRadius=function(n){return arguments.length?(r="function"==typeof n?n:wb(+n),t):r},t.padRadius=function(n){return arguments.length?(i=null==n?null:"function"==typeof n?n:wb(+n),t):i},t.startAngle=function(n){return arguments.length?(o="function"==typeof n?n:wb(+n),t):o},t.endAngle=function(n){return arguments.length?(u="function"==typeof n?n:wb(+n),t):u},t.padAngle=function(n){return arguments.length?(a="function"==typeof n?n:wb(+n),t):a},t.context=function(n){return arguments.length?(c=null==n?null:n,t):c},t};dc.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._point=0},lineEnd:function(){(this._line||0!==this._line&&1===this._point)&&this._context.closePath(),this._line=1-this._line},point:function(t,n){switch(t=+t,n=+n,this._point){case 0:this._point=1,this._line?this._context.lineTo(t,n):this._context.moveTo(t,n);break;case 1:this._point=2;default:this._context.lineTo(t,n)}}};var qb=function(t){return new dc(t)},Ub=function(){function t(t){var a,c,s,f=t.length,l=!1;for(null==i&&(u=o(s=Ue())),a=0;a<=f;++a)!(a<f&&r(c=t[a],a,t))===l&&((l=!l)?u.lineStart():u.lineEnd()),l&&u.point(+n(c,a,t),+e(c,a,t));if(s)return u=null,s+""||null}var n=vc,e=_c,r=wb(!0),i=null,o=qb,u=null;return t.x=function(e){return arguments.length?(n="function"==typeof e?e:wb(+e),t):n},t.y=function(n){return arguments.length?(e="function"==typeof n?n:wb(+n),t):e},t.defined=function(n){return arguments.length?(r="function"==typeof n?n:wb(!!n),t):r},t.curve=function(n){return arguments.length?(o=n,null!=i&&(u=o(i)),t):o},t.context=function(n){return arguments.length?(null==n?i=u=null:u=o(i=n),t):i},t},Db=function(){function t(t){var n,f,l,h,p,d=t.length,v=!1,_=new Array(d),y=new Array(d);for(null==a&&(s=c(p=Ue())),n=0;n<=d;++n){if(!(n<d&&u(h=t[n],n,t))===v)if(v=!v)f=n,s.areaStart(),s.lineStart();else{for(s.lineEnd(),s.lineStart(),l=n-1;l>=f;--l)s.point(_[l],y[l]);s.lineEnd(),s.areaEnd()}v&&(_[n]=+e(h,n,t),y[n]=+i(h,n,t),s.point(r?+r(h,n,t):_[n],o?+o(h,n,t):y[n]))}if(p)return s=null,p+""||null}function n(){return Ub().defined(u).curve(c).context(a)}var e=vc,r=null,i=wb(0),o=_c,u=wb(!0),a=null,c=qb,s=null;return t.x=function(n){return arguments.length?(e="function"==typeof n?n:wb(+n),r=null,t):e},t.x0=function(n){return arguments.length?(e="function"==typeof n?n:wb(+n),t):e},t.x1=function(n){return arguments.length?(r=null==n?null:"function"==typeof n?n:wb(+n),t):r},t.y=function(n){return arguments.length?(i="function"==typeof n?n:wb(+n),o=null,t):i},t.y0=function(n){return arguments.length?(i="function"==typeof n?n:wb(+n),t):i},t.y1=function(n){return arguments.length?(o=null==n?null:"function"==typeof n?n:wb(+n),t):o},t.lineX0=t.lineY0=function(){return n().x(e).y(i)},t.lineY1=function(){return n().x(e).y(o)},t.lineX1=function(){return n().x(r).y(i)},t.defined=function(n){return arguments.length?(u="function"==typeof n?n:wb(!!n),t):u},t.curve=function(n){return arguments.length?(c=n,null!=a&&(s=c(a)),t):c},t.context=function(n){return arguments.length?(null==n?a=s=null:s=c(a=n),t):a},t},Ob=function(t,n){return n<t?-1:n>t?1:n>=t?0:NaN},Fb=function(t){return t},Ib=function(){function t(t){var a,c,s,f,l,h=t.length,p=0,d=new Array(h),v=new Array(h),_=+i.apply(this,arguments),y=Math.min(Lb,Math.max(-Lb,o.apply(this,arguments)-_)),g=Math.min(Math.abs(y)/h,u.apply(this,arguments)),m=g*(y<0?-1:1);for(a=0;a<h;++a)(l=v[d[a]=a]=+n(t[a],a,t))>0&&(p+=l);for(null!=e?d.sort(function(t,n){return e(v[t],v[n])}):null!=r&&d.sort(function(n,e){return r(t[n],t[e])}),a=0,s=p?(y-h*m)/p:0;a<h;++a,_=f)c=d[a],l=v[c],f=_+(l>0?l*s:0)+m,v[c]={data:t[c],index:a,value:l,startAngle:_,endAngle:f,padAngle:g};return v}var n=Fb,e=Ob,r=null,i=wb(0),o=wb(Lb),u=wb(0);return t.value=function(e){return arguments.length?(n="function"==typeof e?e:wb(+e),t):n},t.sortValues=function(n){return arguments.length?(e=n,r=null,t):e},t.sort=function(n){return arguments.length?(r=n,e=null,t):r},t.startAngle=function(n){return arguments.length?(i="function"==typeof n?n:wb(+n),t):i},t.endAngle=function(n){return arguments.length?(o="function"==typeof n?n:wb(+n),t):o},t.padAngle=function(n){return arguments.length?(u="function"==typeof n?n:wb(+n),t):u},t},Yb=gc(qb);yc.prototype={areaStart:function(){this._curve.areaStart()},areaEnd:function(){this._curve.areaEnd()},lineStart:function(){this._curve.lineStart()},lineEnd:function(){this._curve.lineEnd()},point:function(t,n){this._curve.point(n*Math.sin(t),n*-Math.cos(t))}};var Bb=function(){return mc(Ub().curve(Yb))},Hb=function(){var t=Db().curve(Yb),n=t.curve,e=t.lineX0,r=t.lineX1,i=t.lineY0,o=t.lineY1;return t.angle=t.x,delete t.x,t.startAngle=t.x0,delete t.x0,t.endAngle=t.x1,delete t.x1,t.radius=t.y,delete t.y,t.innerRadius=t.y0,delete t.y0,t.outerRadius=t.y1,delete t.y1,t.lineStartAngle=function(){return mc(e())},delete t.lineX0,t.lineEndAngle=function(){return mc(r())},delete t.lineX1,t.lineInnerRadius=function(){return mc(i())},delete t.lineY0,t.lineOuterRadius=function(){return mc(o())},delete t.lineY1,t.curve=function(t){return arguments.length?n(gc(t)):n()._curve},t},jb=Array.prototype.slice,Xb=function(t,n){return[(n=+n)*Math.cos(t-=Math.PI/2),n*Math.sin(t)]},$b={draw:function(t,n){var e=Math.sqrt(n/zb);t.moveTo(e,0),t.arc(0,0,e,0,Lb)}},Vb={draw:function(t,n){var e=Math.sqrt(n/5)/2;t.moveTo(-3*e,-e),t.lineTo(-e,-e),t.lineTo(-e,-3*e),t.lineTo(e,-3*e),t.lineTo(e,-e),t.lineTo(3*e,-e),t.lineTo(3*e,e),t.lineTo(e,e),t.lineTo(e,3*e),t.lineTo(-e,3*e),t.lineTo(-e,e),t.lineTo(-3*e,e),t.closePath()}},Wb=Math.sqrt(1/3),Zb=2*Wb,Gb={draw:function(t,n){var e=Math.sqrt(n/Zb),r=e*Wb;t.moveTo(0,-e),t.lineTo(r,0),t.lineTo(0,e),t.lineTo(-r,0),t.closePath()}},Jb=Math.sin(zb/10)/Math.sin(7*zb/10),Qb=Math.sin(Lb/10)*Jb,Kb=-Math.cos(Lb/10)*Jb,tw={draw:function(t,n){var e=Math.sqrt(.8908130915292852*n),r=Qb*e,i=Kb*e;t.moveTo(0,-e),t.lineTo(r,i);for(var o=1;o<5;++o){var u=Lb*o/5,a=Math.cos(u),c=Math.sin(u);t.lineTo(c*e,-a*e),t.lineTo(a*r-c*i,c*r+a*i)}t.closePath()}},nw={draw:function(t,n){var e=Math.sqrt(n),r=-e/2;t.rect(r,r,e,e)}},ew=Math.sqrt(3),rw={draw:function(t,n){var e=-Math.sqrt(n/(3*ew));t.moveTo(0,2*e),t.lineTo(-ew*e,-e),t.lineTo(ew*e,-e),t.closePath()}},iw=-.5,ow=Math.sqrt(3)/2,uw=1/Math.sqrt(12),aw=3*(uw/2+1),cw={draw:function(t,n){var e=Math.sqrt(n/aw),r=e/2,i=e*uw,o=r,u=e*uw+e,a=-o,c=u;t.moveTo(r,i),t.lineTo(o,u),t.lineTo(a,c),t.lineTo(iw*r-ow*i,ow*r+iw*i),t.lineTo(iw*o-ow*u,ow*o+iw*u),t.lineTo(iw*a-ow*c,ow*a+iw*c),t.lineTo(iw*r+ow*i,iw*i-ow*r),t.lineTo(iw*o+ow*u,iw*u-ow*o),t.lineTo(iw*a+ow*c,iw*c-ow*a),t.closePath()}},sw=[$b,Vb,Gb,nw,tw,rw,cw],fw=function(){function t(){var t;if(r||(r=t=Ue()),n.apply(this,arguments).draw(r,+e.apply(this,arguments)),t)return r=null,t+""||null}var n=wb($b),e=wb(64),r=null;return t.type=function(e){return arguments.length?(n="function"==typeof e?e:wb(e),t):n},t.size=function(n){return arguments.length?(e="function"==typeof n?n:wb(+n),t):e},t.context=function(n){return arguments.length?(r=null==n?null:n,t):r},t},lw=function(){};Cc.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._x0=this._x1=this._y0=this._y1=NaN,this._point=0},lineEnd:function(){switch(this._point){case 3:Ac(this,this._x1,this._y1);case 2:this._context.lineTo(this._x1,this._y1)}(this._line||0!==this._line&&1===this._point)&&this._context.closePath(),this._line=1-this._line},point:function(t,n){switch(t=+t,n=+n,this._point){case 0:this._point=1,this._line?this._context.lineTo(t,n):this._context.moveTo(t,n);break;case 1:this._point=2;break;case 2:this._point=3,this._context.lineTo((5*this._x0+this._x1)/6,(5*this._y0+this._y1)/6);default:Ac(this,t,n)}this._x0=this._x1,this._x1=t,this._y0=this._y1,this._y1=n}};var hw=function(t){return new Cc(t)};zc.prototype={areaStart:lw,areaEnd:lw,lineStart:function(){this._x0=this._x1=this._x2=this._x3=this._x4=this._y0=this._y1=this._y2=this._y3=this._y4=NaN,this._point=0},lineEnd:function(){switch(this._point){case 1:this._context.moveTo(this._x2,this._y2),this._context.closePath();break;case 2:this._context.moveTo((this._x2+2*this._x3)/3,(this._y2+2*this._y3)/3),this._context.lineTo((this._x3+2*this._x2)/3,(this._y3+2*this._y2)/3),this._context.closePath();break;case 3:this.point(this._x2,this._y2),this.point(this._x3,this._y3),this.point(this._x4,this._y4)}},point:function(t,n){switch(t=+t,n=+n,this._point){case 0:this._point=1,this._x2=t,this._y2=n;break;case 1:this._point=2,this._x3=t,this._y3=n;break;case 2:this._point=3,this._x4=t,this._y4=n,this._context.moveTo((this._x0+4*this._x1+t)/6,(this._y0+4*this._y1+n)/6);break;default:Ac(this,t,n)}this._x0=this._x1,this._x1=t,this._y0=this._y1,this._y1=n}};var pw=function(t){return new zc(t)};Pc.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._x0=this._x1=this._y0=this._y1=NaN,this._point=0},lineEnd:function(){(this._line||0!==this._line&&3===this._point)&&this._context.closePath(),this._line=1-this._line},point:function(t,n){switch(t=+t,n=+n,this._point){case 0:this._point=1;break;case 1:this._point=2;break;case 2:this._point=3;var e=(this._x0+4*this._x1+t)/6,r=(this._y0+4*this._y1+n)/6;this._line?this._context.lineTo(e,r):this._context.moveTo(e,r);break;case 3:this._point=4;default:Ac(this,t,n)}this._x0=this._x1,this._x1=t,this._y0=this._y1,this._y1=n}};var dw=function(t){return new Pc(t)};Lc.prototype={lineStart:function(){this._x=[],this._y=[],this._basis.lineStart()},lineEnd:function(){var t=this._x,n=this._y,e=t.length-1;if(e>0)for(var r,i=t[0],o=n[0],u=t[e]-i,a=n[e]-o,c=-1;++c<=e;)r=c/e,this._basis.point(this._beta*t[c]+(1-this._beta)*(i+r*u),this._beta*n[c]+(1-this._beta)*(o+r*a));this._x=this._y=null,this._basis.lineEnd()},point:function(t,n){this._x.push(+t),this._y.push(+n)}};var vw=function t(n){function e(t){return 1===n?new Cc(t):new Lc(t,n)}return e.beta=function(n){return t(+n)},e}(.85);qc.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._x0=this._x1=this._x2=this._y0=this._y1=this._y2=NaN,this._point=0},lineEnd:function(){switch(this._point){case 2:this._context.lineTo(this._x2,this._y2);break;case 3:Rc(this,this._x1,this._y1)}(this._line||0!==this._line&&1===this._point)&&this._context.closePath(),this._line=1-this._line},point:function(t,n){switch(t=+t,n=+n,this._point){case 0:this._point=1,this._line?this._context.lineTo(t,n):this._context.moveTo(t,n);break;case 1:this._point=2,this._x1=t,this._y1=n;break;case 2:this._point=3;default:Rc(this,t,n)}this._x0=this._x1,this._x1=this._x2,this._x2=t,this._y0=this._y1,
this._y1=this._y2,this._y2=n}};var _w=function t(n){function e(t){return new qc(t,n)}return e.tension=function(n){return t(+n)},e}(0);Uc.prototype={areaStart:lw,areaEnd:lw,lineStart:function(){this._x0=this._x1=this._x2=this._x3=this._x4=this._x5=this._y0=this._y1=this._y2=this._y3=this._y4=this._y5=NaN,this._point=0},lineEnd:function(){switch(this._point){case 1:this._context.moveTo(this._x3,this._y3),this._context.closePath();break;case 2:this._context.lineTo(this._x3,this._y3),this._context.closePath();break;case 3:this.point(this._x3,this._y3),this.point(this._x4,this._y4),this.point(this._x5,this._y5)}},point:function(t,n){switch(t=+t,n=+n,this._point){case 0:this._point=1,this._x3=t,this._y3=n;break;case 1:this._point=2,this._context.moveTo(this._x4=t,this._y4=n);break;case 2:this._point=3,this._x5=t,this._y5=n;break;default:Rc(this,t,n)}this._x0=this._x1,this._x1=this._x2,this._x2=t,this._y0=this._y1,this._y1=this._y2,this._y2=n}};var yw=function t(n){function e(t){return new Uc(t,n)}return e.tension=function(n){return t(+n)},e}(0);Dc.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._x0=this._x1=this._x2=this._y0=this._y1=this._y2=NaN,this._point=0},lineEnd:function(){(this._line||0!==this._line&&3===this._point)&&this._context.closePath(),this._line=1-this._line},point:function(t,n){switch(t=+t,n=+n,this._point){case 0:this._point=1;break;case 1:this._point=2;break;case 2:this._point=3,this._line?this._context.lineTo(this._x2,this._y2):this._context.moveTo(this._x2,this._y2);break;case 3:this._point=4;default:Rc(this,t,n)}this._x0=this._x1,this._x1=this._x2,this._x2=t,this._y0=this._y1,this._y1=this._y2,this._y2=n}};var gw=function t(n){function e(t){return new Dc(t,n)}return e.tension=function(n){return t(+n)},e}(0);Fc.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._x0=this._x1=this._x2=this._y0=this._y1=this._y2=NaN,this._l01_a=this._l12_a=this._l23_a=this._l01_2a=this._l12_2a=this._l23_2a=this._point=0},lineEnd:function(){switch(this._point){case 2:this._context.lineTo(this._x2,this._y2);break;case 3:this.point(this._x2,this._y2)}(this._line||0!==this._line&&1===this._point)&&this._context.closePath(),this._line=1-this._line},point:function(t,n){if(t=+t,n=+n,this._point){var e=this._x2-t,r=this._y2-n;this._l23_a=Math.sqrt(this._l23_2a=Math.pow(e*e+r*r,this._alpha))}switch(this._point){case 0:this._point=1,this._line?this._context.lineTo(t,n):this._context.moveTo(t,n);break;case 1:this._point=2;break;case 2:this._point=3;default:Oc(this,t,n)}this._l01_a=this._l12_a,this._l12_a=this._l23_a,this._l01_2a=this._l12_2a,this._l12_2a=this._l23_2a,this._x0=this._x1,this._x1=this._x2,this._x2=t,this._y0=this._y1,this._y1=this._y2,this._y2=n}};var mw=function t(n){function e(t){return n?new Fc(t,n):new qc(t,0)}return e.alpha=function(n){return t(+n)},e}(.5);Ic.prototype={areaStart:lw,areaEnd:lw,lineStart:function(){this._x0=this._x1=this._x2=this._x3=this._x4=this._x5=this._y0=this._y1=this._y2=this._y3=this._y4=this._y5=NaN,this._l01_a=this._l12_a=this._l23_a=this._l01_2a=this._l12_2a=this._l23_2a=this._point=0},lineEnd:function(){switch(this._point){case 1:this._context.moveTo(this._x3,this._y3),this._context.closePath();break;case 2:this._context.lineTo(this._x3,this._y3),this._context.closePath();break;case 3:this.point(this._x3,this._y3),this.point(this._x4,this._y4),this.point(this._x5,this._y5)}},point:function(t,n){if(t=+t,n=+n,this._point){var e=this._x2-t,r=this._y2-n;this._l23_a=Math.sqrt(this._l23_2a=Math.pow(e*e+r*r,this._alpha))}switch(this._point){case 0:this._point=1,this._x3=t,this._y3=n;break;case 1:this._point=2,this._context.moveTo(this._x4=t,this._y4=n);break;case 2:this._point=3,this._x5=t,this._y5=n;break;default:Oc(this,t,n)}this._l01_a=this._l12_a,this._l12_a=this._l23_a,this._l01_2a=this._l12_2a,this._l12_2a=this._l23_2a,this._x0=this._x1,this._x1=this._x2,this._x2=t,this._y0=this._y1,this._y1=this._y2,this._y2=n}};var xw=function t(n){function e(t){return n?new Ic(t,n):new Uc(t,0)}return e.alpha=function(n){return t(+n)},e}(.5);Yc.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._x0=this._x1=this._x2=this._y0=this._y1=this._y2=NaN,this._l01_a=this._l12_a=this._l23_a=this._l01_2a=this._l12_2a=this._l23_2a=this._point=0},lineEnd:function(){(this._line||0!==this._line&&3===this._point)&&this._context.closePath(),this._line=1-this._line},point:function(t,n){if(t=+t,n=+n,this._point){var e=this._x2-t,r=this._y2-n;this._l23_a=Math.sqrt(this._l23_2a=Math.pow(e*e+r*r,this._alpha))}switch(this._point){case 0:this._point=1;break;case 1:this._point=2;break;case 2:this._point=3,this._line?this._context.lineTo(this._x2,this._y2):this._context.moveTo(this._x2,this._y2);break;case 3:this._point=4;default:Oc(this,t,n)}this._l01_a=this._l12_a,this._l12_a=this._l23_a,this._l01_2a=this._l12_2a,this._l12_2a=this._l23_2a,this._x0=this._x1,this._x1=this._x2,this._x2=t,this._y0=this._y1,this._y1=this._y2,this._y2=n}};var bw=function t(n){function e(t){return n?new Yc(t,n):new Dc(t,0)}return e.alpha=function(n){return t(+n)},e}(.5);Bc.prototype={areaStart:lw,areaEnd:lw,lineStart:function(){this._point=0},lineEnd:function(){this._point&&this._context.closePath()},point:function(t,n){t=+t,n=+n,this._point?this._context.lineTo(t,n):(this._point=1,this._context.moveTo(t,n))}};var ww=function(t){return new Bc(t)};Vc.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._x0=this._x1=this._y0=this._y1=this._t0=NaN,this._point=0},lineEnd:function(){switch(this._point){case 2:this._context.lineTo(this._x1,this._y1);break;case 3:$c(this,this._t0,Xc(this,this._t0))}(this._line||0!==this._line&&1===this._point)&&this._context.closePath(),this._line=1-this._line},point:function(t,n){var e=NaN;if(t=+t,n=+n,t!==this._x1||n!==this._y1){switch(this._point){case 0:this._point=1,this._line?this._context.lineTo(t,n):this._context.moveTo(t,n);break;case 1:this._point=2;break;case 2:this._point=3,$c(this,Xc(this,e=jc(this,t,n)),e);break;default:$c(this,this._t0,e=jc(this,t,n))}this._x0=this._x1,this._x1=t,this._y0=this._y1,this._y1=n,this._t0=e}}},(Wc.prototype=Object.create(Vc.prototype)).point=function(t,n){Vc.prototype.point.call(this,n,t)},Zc.prototype={moveTo:function(t,n){this._context.moveTo(n,t)},closePath:function(){this._context.closePath()},lineTo:function(t,n){this._context.lineTo(n,t)},bezierCurveTo:function(t,n,e,r,i,o){this._context.bezierCurveTo(n,t,r,e,o,i)}},Qc.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._x=[],this._y=[]},lineEnd:function(){var t=this._x,n=this._y,e=t.length;if(e)if(this._line?this._context.lineTo(t[0],n[0]):this._context.moveTo(t[0],n[0]),2===e)this._context.lineTo(t[1],n[1]);else for(var r=Kc(t),i=Kc(n),o=0,u=1;u<e;++o,++u)this._context.bezierCurveTo(r[0][o],i[0][o],r[1][o],i[1][o],t[u],n[u]);(this._line||0!==this._line&&1===e)&&this._context.closePath(),this._line=1-this._line,this._x=this._y=null},point:function(t,n){this._x.push(+t),this._y.push(+n)}};var Mw=function(t){return new Qc(t)};ts.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._x=this._y=NaN,this._point=0},lineEnd:function(){0<this._t&&this._t<1&&2===this._point&&this._context.lineTo(this._x,this._y),(this._line||0!==this._line&&1===this._point)&&this._context.closePath(),this._line>=0&&(this._t=1-this._t,this._line=1-this._line)},point:function(t,n){switch(t=+t,n=+n,this._point){case 0:this._point=1,this._line?this._context.lineTo(t,n):this._context.moveTo(t,n);break;case 1:this._point=2;default:if(this._t<=0)this._context.lineTo(this._x,n),this._context.lineTo(t,n);else{var e=this._x*(1-this._t)+t*this._t;this._context.lineTo(e,this._y),this._context.lineTo(e,n)}}this._x=t,this._y=n}};var Tw=function(t){return new ts(t,.5)},kw=function(t,n){if((i=t.length)>1)for(var e,r,i,o=1,u=t[n[0]],a=u.length;o<i;++o)for(r=u,u=t[n[o]],e=0;e<a;++e)u[e][1]+=u[e][0]=isNaN(r[e][1])?r[e][0]:r[e][1]},Nw=function(t){for(var n=t.length,e=new Array(n);--n>=0;)e[n]=n;return e},Sw=function(){function t(t){var o,u,a=n.apply(this,arguments),c=t.length,s=a.length,f=new Array(s);for(o=0;o<s;++o){for(var l,h=a[o],p=f[o]=new Array(c),d=0;d<c;++d)p[d]=l=[0,+i(t[d],h,d,t)],l.data=t[d];p.key=h}for(o=0,u=e(f);o<s;++o)f[u[o]].index=o;return r(f,u),f}var n=wb([]),e=Nw,r=kw,i=rs;return t.keys=function(e){return arguments.length?(n="function"==typeof e?e:wb(jb.call(e)),t):n},t.value=function(n){return arguments.length?(i="function"==typeof n?n:wb(+n),t):i},t.order=function(n){return arguments.length?(e=null==n?Nw:"function"==typeof n?n:wb(jb.call(n)),t):e},t.offset=function(n){return arguments.length?(r=null==n?kw:n,t):r},t},Ew=function(t,n){if((r=t.length)>0){for(var e,r,i,o=0,u=t[0].length;o<u;++o){for(i=e=0;e<r;++e)i+=t[e][o][1]||0;if(i)for(e=0;e<r;++e)t[e][o][1]/=i}kw(t,n)}},Aw=function(t,n){if((a=t.length)>1)for(var e,r,i,o,u,a,c=0,s=t[n[0]].length;c<s;++c)for(o=u=0,e=0;e<a;++e)(i=(r=t[n[e]][c])[1]-r[0])>=0?(r[0]=o,r[1]=o+=i):i<0?(r[1]=u,r[0]=u+=i):r[0]=o},Cw=function(t,n){if((e=t.length)>0){for(var e,r=0,i=t[n[0]],o=i.length;r<o;++r){for(var u=0,a=0;u<e;++u)a+=t[u][r][1]||0;i[r][1]+=i[r][0]=-a/2}kw(t,n)}},zw=function(t,n){if((i=t.length)>0&&(r=(e=t[n[0]]).length)>0){for(var e,r,i,o=0,u=1;u<r;++u){for(var a=0,c=0,s=0;a<i;++a){for(var f=t[n[a]],l=f[u][1]||0,h=f[u-1][1]||0,p=(l-h)/2,d=0;d<a;++d){var v=t[n[d]];p+=(v[u][1]||0)-(v[u-1][1]||0)}c+=l,s+=p*l}e[u-1][1]+=e[u-1][0]=o,c&&(o-=s/c)}e[u-1][1]+=e[u-1][0]=o,kw(t,n)}},Pw=function(t){var n=t.map(is);return Nw(t).sort(function(t,e){return n[t]-n[e]})},Lw=function(t){return Pw(t).reverse()},Rw=function(t){var n,e,r=t.length,i=t.map(is),o=Nw(t).sort(function(t,n){return i[n]-i[t]}),u=0,a=0,c=[],s=[];for(n=0;n<r;++n)e=o[n],u<a?(u+=i[e],c.push(e)):(a+=i[e],s.push(e));return s.reverse().concat(c)},qw=function(t){return Nw(t).reverse()},Uw=function(t){return function(){return t}};as.prototype={constructor:as,insert:function(t,n){var e,r,i;if(t){if(n.P=t,n.N=t.N,t.N&&(t.N.P=n),t.N=n,t.R){for(t=t.R;t.L;)t=t.L;t.L=n}else t.R=n;e=t}else this._?(t=ls(this._),n.P=null,n.N=t,t.P=t.L=n,e=t):(n.P=n.N=null,this._=n,e=null);for(n.L=n.R=null,n.U=e,n.C=!0,t=n;e&&e.C;)r=e.U,e===r.L?(i=r.R,i&&i.C?(e.C=i.C=!1,r.C=!0,t=r):(t===e.R&&(ss(this,e),t=e,e=t.U),e.C=!1,r.C=!0,fs(this,r))):(i=r.L,i&&i.C?(e.C=i.C=!1,r.C=!0,t=r):(t===e.L&&(fs(this,e),t=e,e=t.U),e.C=!1,r.C=!0,ss(this,r))),e=t.U;this._.C=!1},remove:function(t){t.N&&(t.N.P=t.P),t.P&&(t.P.N=t.N),t.N=t.P=null;var n,e,r,i=t.U,o=t.L,u=t.R;if(e=o?u?ls(u):o:u,i?i.L===t?i.L=e:i.R=e:this._=e,o&&u?(r=e.C,e.C=t.C,e.L=o,o.U=e,e!==u?(i=e.U,e.U=t.U,t=e.R,i.L=t,e.R=u,u.U=e):(e.U=i,i=e,t=e.R)):(r=t.C,t=e),t&&(t.U=i),!r){if(t&&t.C)return void(t.C=!1);do{if(t===this._)break;if(t===i.L){if(n=i.R,n.C&&(n.C=!1,i.C=!0,ss(this,i),n=i.R),n.L&&n.L.C||n.R&&n.R.C){n.R&&n.R.C||(n.L.C=!1,n.C=!0,fs(this,n),n=i.R),n.C=i.C,i.C=n.R.C=!1,ss(this,i),t=this._;break}}else if(n=i.L,n.C&&(n.C=!1,i.C=!0,fs(this,i),n=i.L),n.L&&n.L.C||n.R&&n.R.C){n.L&&n.L.C||(n.R.C=!1,n.C=!0,ss(this,n),n=i.L),n.C=i.C,i.C=n.L.C=!1,fs(this,i),t=this._;break}n.C=!0,t=i,i=i.U}while(!t.C);t&&(t.C=!1)}}};var Dw,Ow,Fw,Iw,Yw,Bw=[],Hw=[],jw=1e-6,Xw=1e-12;Us.prototype={constructor:Us,polygons:function(){var t=this.edges;return this.cells.map(function(n){var e=n.halfedges.map(function(e){return xs(n,t[e])});return e.data=n.site.data,e})},triangles:function(){var t=[],n=this.edges;return this.cells.forEach(function(e,r){if(o=(i=e.halfedges).length)for(var i,o,u,a=e.site,c=-1,s=n[i[o-1]],f=s.left===a?s.right:s.left;++c<o;)u=f,s=n[i[c]],f=s.left===a?s.right:s.left,u&&f&&r<u.index&&r<f.index&&Rs(a,u,f)<0&&t.push([a.data,u.data,f.data])}),t},links:function(){return this.edges.filter(function(t){return t.right}).map(function(t){return{source:t.left.data,target:t.right.data}})},find:function(t,n,e){for(var r,i,o=this,u=o._found||0,a=o.cells.length;!(i=o.cells[u]);)if(++u>=a)return null;var c=t-i.site[0],s=n-i.site[1],f=c*c+s*s;do{i=o.cells[r=u],u=null,i.halfedges.forEach(function(e){var r=o.edges[e],a=r.left;if(a!==i.site&&a||(a=r.right)){var c=t-a[0],s=n-a[1],l=c*c+s*s;l<f&&(f=l,u=a.index)}})}while(null!==u);return o._found=r,null==e||f<=e*e?i.site:null}};var $w=function(){function t(t){return new Us(t.map(function(r,i){var o=[Math.round(n(r,i,t)/jw)*jw,Math.round(e(r,i,t)/jw)*jw];return o.index=i,o.data=r,o}),r)}var n=os,e=us,r=null;return t.polygons=function(n){return t(n).polygons()},t.links=function(n){return t(n).links()},t.triangles=function(n){return t(n).triangles()},t.x=function(e){return arguments.length?(n="function"==typeof e?e:Uw(+e),t):n},t.y=function(n){return arguments.length?(e="function"==typeof n?n:Uw(+n),t):e},t.extent=function(n){return arguments.length?(r=null==n?null:[[+n[0][0],+n[0][1]],[+n[1][0],+n[1][1]]],t):r&&[[r[0][0],r[0][1]],[r[1][0],r[1][1]]]},t.size=function(n){return arguments.length?(r=null==n?null:[[0,0],[+n[0],+n[1]]],t):r&&[r[1][0]-r[0][0],r[1][1]-r[0][1]]},t},Vw=function(t){return function(){return t}};Os.prototype={constructor:Os,scale:function(t){return 1===t?this:new Os(this.k*t,this.x,this.y)},translate:function(t,n){return 0===t&0===n?this:new Os(this.k,this.x+this.k*t,this.y+this.k*n)},apply:function(t){return[t[0]*this.k+this.x,t[1]*this.k+this.y]},applyX:function(t){return t*this.k+this.x},applyY:function(t){return t*this.k+this.y},invert:function(t){return[(t[0]-this.x)/this.k,(t[1]-this.y)/this.k]},invertX:function(t){return(t-this.x)/this.k},invertY:function(t){return(t-this.y)/this.k},rescaleX:function(t){return t.copy().domain(t.range().map(this.invertX,this).map(t.invert,t))},rescaleY:function(t){return t.copy().domain(t.range().map(this.invertY,this).map(t.invert,t))},toString:function(){return"translate("+this.x+","+this.y+") scale("+this.k+")"}};var Ww=new Os(1,0,0);Fs.prototype=Os.prototype;var Zw=function(){t.event.preventDefault(),t.event.stopImmediatePropagation()},Gw=function(){function n(t){t.on("wheel.zoom",s).on("mousedown.zoom",f).on("dblclick.zoom",l).on("touchstart.zoom",h).on("touchmove.zoom",p).on("touchend.zoom touchcancel.zoom",d).style("-webkit-tap-highlight-color","rgba(0,0,0,0)").property("__zoom",Hs)}function e(t,n){return n=Math.max(x,Math.min(b,n)),n===t.k?t:new Os(n,t.x,t.y)}function r(t,n,e){var r=n[0]-e[0]*t.k,i=n[1]-e[1]*t.k;return r===t.x&&i===t.y?t:new Os(t.k,r,i)}function i(t,n){var e=t.invertX(n[0][0])-w,r=t.invertX(n[1][0])-M,i=t.invertY(n[0][1])-T,o=t.invertY(n[1][1])-k;return t.translate(r>e?(e+r)/2:Math.min(0,e)||Math.max(0,r),o>i?(i+o)/2:Math.min(0,i)||Math.max(0,o))}function o(t){return[(+t[0][0]+ +t[1][0])/2,(+t[0][1]+ +t[1][1])/2]}function u(t,n,e){t.on("start.zoom",function(){a(this,arguments).start()}).on("interrupt.zoom end.zoom",function(){a(this,arguments).end()}).tween("zoom",function(){var t=this,r=arguments,i=a(t,r),u=m.apply(t,r),c=e||o(u),s=Math.max(u[1][0]-u[0][0],u[1][1]-u[0][1]),f=t.__zoom,l="function"==typeof n?n.apply(t,r):n,h=S(f.invert(c).concat(s/f.k),l.invert(c).concat(s/l.k));return function(t){if(1===t)t=l;else{var n=h(t),e=s/n[2];t=new Os(e,c[0]-n[0]*e,c[1]-n[1]*e)}i.zoom(null,t)}})}function a(t,n){for(var e,r=0,i=E.length;r<i;++r)if((e=E[r]).that===t)return e;return new c(t,n)}function c(t,n){this.that=t,this.args=n,this.index=-1,this.active=0,this.extent=m.apply(t,n)}function s(){function n(){o.wheel=null,o.end()}if(g.apply(this,arguments)){var o=a(this,arguments),u=this.__zoom,c=Math.max(x,Math.min(b,u.k*Math.pow(2,-t.event.deltaY*(t.event.deltaMode?120:1)/500))),s=Gf(this);if(o.wheel)o.mouse[0][0]===s[0]&&o.mouse[0][1]===s[1]||(o.mouse[1]=u.invert(o.mouse[0]=s)),clearTimeout(o.wheel);else{if(u.k===c)return;o.mouse=[s,u.invert(s)],gp(this),o.start()}Zw(),o.wheel=setTimeout(n,P),o.zoom("mouse",i(r(e(u,c),o.mouse[0],o.mouse[1]),o.extent))}}function f(){function n(){if(Zw(),!o.moved){var n=t.event.clientX-s,e=t.event.clientY-f;o.moved=n*n+e*e>L}o.zoom("mouse",i(r(o.that.__zoom,o.mouse[0]=Gf(o.that),o.mouse[1]),o.extent))}function e(){u.on("mousemove.zoom mouseup.zoom",null),mt(t.event.view,o.moved),Zw(),o.end()}if(!y&&g.apply(this,arguments)){var o=a(this,arguments),u=Pl(t.event.view).on("mousemove.zoom",n,!0).on("mouseup.zoom",e,!0),c=Gf(this),s=t.event.clientX,f=t.event.clientY;Dl(t.event.view),Is(),o.mouse=[c,this.__zoom.invert(c)],gp(this),o.start()}}function l(){if(g.apply(this,arguments)){var o=this.__zoom,a=Gf(this),c=o.invert(a),s=o.k*(t.event.shiftKey?.5:2),f=i(r(e(o,s),a,c),m.apply(this,arguments));Zw(),N>0?Pl(this).transition().duration(N).call(u,f,a):Pl(this).call(n.transform,f)}}function h(){if(g.apply(this,arguments)){var n,e,r,i,o=a(this,arguments),u=t.event.changedTouches,c=u.length;for(Is(),e=0;e<c;++e)r=u[e],i=Rl(this,u,r.identifier),i=[i,this.__zoom.invert(i),r.identifier],o.touch0?o.touch1||(o.touch1=i):(o.touch0=i,n=!0);if(_&&(_=clearTimeout(_),!o.touch1))return o.end(),void((i=Pl(this).on("dblclick.zoom"))&&i.apply(this,arguments));n&&(_=setTimeout(function(){_=null},z),gp(this),o.start())}}function p(){var n,o,u,c,s=a(this,arguments),f=t.event.changedTouches,l=f.length;for(Zw(),_&&(_=clearTimeout(_)),n=0;n<l;++n)o=f[n],u=Rl(this,f,o.identifier),s.touch0&&s.touch0[2]===o.identifier?s.touch0[0]=u:s.touch1&&s.touch1[2]===o.identifier&&(s.touch1[0]=u);if(o=s.that.__zoom,s.touch1){var h=s.touch0[0],p=s.touch0[1],d=s.touch1[0],v=s.touch1[1],y=(y=d[0]-h[0])*y+(y=d[1]-h[1])*y,g=(g=v[0]-p[0])*g+(g=v[1]-p[1])*g;o=e(o,Math.sqrt(y/g)),u=[(h[0]+d[0])/2,(h[1]+d[1])/2],c=[(p[0]+v[0])/2,(p[1]+v[1])/2]}else{if(!s.touch0)return;u=s.touch0[0],c=s.touch0[1]}s.zoom("touch",i(r(o,u,c),s.extent))}function d(){var n,e,r=a(this,arguments),i=t.event.changedTouches,o=i.length;for(Is(),y&&clearTimeout(y),y=setTimeout(function(){y=null},z),n=0;n<o;++n)e=i[n],r.touch0&&r.touch0[2]===e.identifier?delete r.touch0:r.touch1&&r.touch1[2]===e.identifier&&delete r.touch1;r.touch1&&!r.touch0&&(r.touch0=r.touch1,delete r.touch1),r.touch0?r.touch0[1]=this.__zoom.invert(r.touch0[0]):r.end()}var _,y,g=Ys,m=Bs,x=0,b=1/0,w=-b,M=b,T=w,k=M,N=250,S=Hh,E=[],C=v("start","zoom","end"),z=500,P=150,L=0;return n.transform=function(t,n){var e=t.selection?t.selection():t;e.property("__zoom",Hs),t!==e?u(t,n):e.interrupt().each(function(){a(this,arguments).start().zoom(null,"function"==typeof n?n.apply(this,arguments):n).end()})},n.scaleBy=function(t,e){n.scaleTo(t,function(){return this.__zoom.k*("function"==typeof e?e.apply(this,arguments):e)})},n.scaleTo=function(t,u){n.transform(t,function(){var t=m.apply(this,arguments),n=this.__zoom,a=o(t),c=n.invert(a);return i(r(e(n,"function"==typeof u?u.apply(this,arguments):u),a,c),t)})},n.translateBy=function(t,e,r){n.transform(t,function(){return i(this.__zoom.translate("function"==typeof e?e.apply(this,arguments):e,"function"==typeof r?r.apply(this,arguments):r),m.apply(this,arguments))})},c.prototype={start:function(){return 1==++this.active&&(this.index=E.push(this)-1,this.emit("start")),this},zoom:function(t,n){return this.mouse&&"mouse"!==t&&(this.mouse[1]=n.invert(this.mouse[0])),this.touch0&&"touch"!==t&&(this.touch0[1]=n.invert(this.touch0[0])),this.touch1&&"touch"!==t&&(this.touch1[1]=n.invert(this.touch1[0])),this.that.__zoom=n,this.emit("zoom"),this},end:function(){return 0==--this.active&&(E.splice(this.index,1),this.index=-1,this.emit("end")),this},emit:function(t){A(new Ds(n,t,this.that.__zoom),C.apply,C,[t,this.that,this.args])}},n.filter=function(t){return arguments.length?(g="function"==typeof t?t:Vw(!!t),n):g},n.extent=function(t){return arguments.length?(m="function"==typeof t?t:Vw([[+t[0][0],+t[0][1]],[+t[1][0],+t[1][1]]]),n):m},n.scaleExtent=function(t){return arguments.length?(x=+t[0],b=+t[1],n):[x,b]},n.translateExtent=function(t){return arguments.length?(w=+t[0][0],M=+t[1][0],T=+t[0][1],k=+t[1][1],n):[[w,T],[M,k]]},n.duration=function(t){return arguments.length?(N=+t,n):N},n.interpolate=function(t){return arguments.length?(S=t,n):S},n.on=function(){var t=C.on.apply(C,arguments);return t===C?n:t},n.clickDistance=function(t){return arguments.length?(L=(t=+t)*t,n):Math.sqrt(L)},n};t.version="4.9.1",t.bisect=Vs,t.bisectRight=Vs,t.bisectLeft=Ws,t.ascending=js,t.bisector=Xs,t.cross=Gs,t.descending=Js,t.deviation=tf,t.extent=nf,t.histogram=df,t.thresholdFreedmanDiaconis=_f,t.thresholdScott=yf,t.thresholdSturges=pf,t.max=gf,t.mean=mf,t.median=xf,t.merge=bf,t.min=wf,t.pairs=Zs,t.permute=Mf,t.quantile=vf,t.range=cf,t.scan=Tf,t.shuffle=kf,t.sum=Nf,t.ticks=hf,t.tickIncrement=r,t.tickStep=i,t.transpose=Sf,t.variance=Ks,t.zip=Ef,t.axisTop=l,t.axisRight=h,t.axisBottom=p,t.axisLeft=d,t.brush=Ed,t.brushX=ze,t.brushY=Pe,t.brushSelection=Ce,t.chord=qd,t.ribbon=Yd,t.nest=Bd,t.set=Ze,t.map=He,t.keys=jd,t.values=Xd,t.entries=$d,t.color=Nt,t.rgb=Ct,t.hsl=Rt,t.lab=Ot,t.hcl=Xt,t.cubehelix=Wt,t.dispatch=v,t.drag=Fl,t.dragDisable=Dl,t.dragEnable=mt,t.dsvFormat=Vd,t.csvParse=Zd,t.csvParseRows=Gd,t.csvFormat=Jd,t.csvFormatRows=Qd,t.tsvParse=tv,t.tsvParseRows=nv,t.tsvFormat=ev,t.tsvFormatRows=rv,t.easeLinear=ie,t.easeQuad=ae,t.easeQuadIn=oe,t.easeQuadOut=ue,t.easeQuadInOut=ae,t.easeCubic=fe,t.easeCubicIn=ce,t.easeCubicOut=se,t.easeCubicInOut=fe,t.easePoly=Hp,t.easePolyIn=Yp,t.easePolyOut=Bp,t.easePolyInOut=Hp,t.easeSin=pe,t.easeSinIn=le,t.easeSinOut=he,t.easeSinInOut=pe,t.easeExp=_e,t.easeExpIn=de,t.easeExpOut=ve,t.easeExpInOut=_e,t.easeCircle=me,t.easeCircleIn=ye,t.easeCircleOut=ge,t.easeCircleInOut=me,t.easeBounce=be,t.easeBounceIn=xe,t.easeBounceOut=be,t.easeBounceInOut=we,t.easeBack=id,t.easeBackIn=ed,t.easeBackOut=rd,t.easeBackInOut=id,t.easeElastic=ad,t.easeElasticIn=ud,t.easeElasticOut=ad,t.easeElasticInOut=cd,t.forceCenter=iv,t.forceCollide=wv,t.forceLink=Mv,t.forceManyBody=Sv,t.forceSimulation=Nv,t.forceX=Ev,t.forceY=Av,t.formatDefaultLocale=vr,t.formatLocale=Bv,t.formatSpecifier=pr,t.precisionFixed=Hv,t.precisionPrefix=jv,t.precisionRound=Xv,t.geoArea=G_,t.geoBounds=K_,t.geoCentroid=ny,t.geoCircle=_y,t.geoClipExtent=My,t.geoContains=Ry,t.geoDistance=zy,t.geoGraticule=Ti,t.geoGraticule10=ki,t.geoInterpolate=qy,t.geoLength=Ey,t.geoPath=cg,t.geoAlbers=gg,t.geoAlbersUsa=mg,t.geoAzimuthalEqualArea=bg,t.geoAzimuthalEqualAreaRaw=xg,t.geoAzimuthalEquidistant=Mg,t.geoAzimuthalEquidistantRaw=wg,t.geoConicConformal=kg,t.geoConicConformalRaw=po,t.geoConicEqualArea=yg,t.geoConicEqualAreaRaw=uo,t.geoConicEquidistant=Sg,t.geoConicEquidistantRaw=_o,t.geoEquirectangular=Ng,t.geoEquirectangularRaw=vo,t.geoGnomonic=Eg,t.geoGnomonicRaw=yo,t.geoIdentity=Ag,t.geoProjection=eo,t.geoProjectionMutator=ro,t.geoMercator=Tg,t.geoMercatorRaw=fo,t.geoOrthographic=Cg,t.geoOrthographicRaw=mo,t.geoStereographic=zg,t.geoStereographicRaw=xo,t.geoTransverseMercator=Pg,t.geoTransverseMercatorRaw=bo,t.geoRotation=vy,t.geoStream=$_,t.geoTransform=hg,t.cluster=Lg,t.hierarchy=zo,t.pack=Zg,t.packSiblings=Vg,t.packEnclose=$g,t.partition=Qg,t.stratify=em,t.tree=rm,t.treemap=am,t.treemapBinary=cm,t.treemapDice=Jg,t.treemapSlice=im,t.treemapSliceDice=sm,t.treemapSquarify=um,t.treemapResquarify=fm,t.interpolate=qh,t.interpolateArray=Eh,t.interpolateBasis=wh,t.interpolateBasisClosed=Mh,t.interpolateDate=Ah,t.interpolateNumber=Ch,t.interpolateObject=zh,t.interpolateRound=Uh,t.interpolateString=Rh,t.interpolateTransformCss=Ih,t.interpolateTransformSvg=Yh,t.interpolateZoom=Hh,t.interpolateRgb=kh,t.interpolateRgbBasis=Nh,t.interpolateRgbBasisClosed=Sh,t.interpolateHsl=jh,t.interpolateHslLong=Xh,t.interpolateLab=pn,t.interpolateHcl=$h,t.interpolateHclLong=Vh,t.interpolateCubehelix=Wh,t.interpolateCubehelixLong=Zh,t.quantize=Gh,t.path=Ue,t.polygonArea=lm,t.polygonCentroid=hm;t.polygonHull=dm,t.polygonContains=vm,t.polygonLength=_m,t.quadtree=ir,t.queue=xu,t.randomUniform=xm,t.randomNormal=bm,t.randomLogNormal=wm,t.randomBates=Tm,t.randomIrwinHall=Mm,t.randomExponential=km,t.request=Nm,t.html=Em,t.json=Am,t.text=Cm,t.xml=zm,t.csv=Lm,t.tsv=Rm,t.scaleBand=ku,t.scalePoint=Su,t.scaleIdentity=Du,t.scaleLinear=Uu,t.scaleLog=ju,t.scaleOrdinal=Tu,t.scaleImplicit=Om,t.scalePow=$u,t.scaleSqrt=Vu,t.scaleQuantile=Wu,t.scaleQuantize=Zu,t.scaleThreshold=Gu,t.scaleTime=ub,t.scaleUtc=ab,t.schemeCategory10=sb,t.schemeCategory20b=fb,t.schemeCategory20c=lb,t.schemeCategory20=hb,t.interpolateCubehelixDefault=pb,t.interpolateRainbow=yb,t.interpolateWarm=db,t.interpolateCool=vb,t.interpolateViridis=gb,t.interpolateMagma=mb,t.interpolateInferno=xb,t.interpolatePlasma=bb,t.scaleSequential=ic,t.creator=If,t.local=w,t.matcher=Xf,t.mouse=Gf,t.namespace=Ff,t.namespaces=Of,t.select=Pl,t.selectAll=Ll,t.selection=yt,t.selector=Jf,t.selectorAll=Kf,t.style=X,t.touch=Rl,t.touches=ql,t.window=gl,t.customEvent=A,t.arc=Rb,t.area=Db,t.line=Ub,t.pie=Ib,t.radialArea=Hb,t.radialLine=Bb,t.linkHorizontal=Nc,t.linkVertical=Sc,t.linkRadial=Ec,t.symbol=fw,t.symbols=sw,t.symbolCircle=$b,t.symbolCross=Vb,t.symbolDiamond=Gb,t.symbolSquare=nw,t.symbolStar=tw,t.symbolTriangle=rw,t.symbolWye=cw,t.curveBasisClosed=pw,t.curveBasisOpen=dw,t.curveBasis=hw,t.curveBundle=vw,t.curveCardinalClosed=yw,t.curveCardinalOpen=gw,t.curveCardinal=_w,t.curveCatmullRomClosed=xw,t.curveCatmullRomOpen=bw,t.curveCatmullRom=mw,t.curveLinearClosed=ww,t.curveLinear=qb,t.curveMonotoneX=Gc,t.curveMonotoneY=Jc,t.curveNatural=Mw,t.curveStep=Tw,t.curveStepAfter=es,t.curveStepBefore=ns,t.stack=Sw,t.stackOffsetExpand=Ew,t.stackOffsetDiverging=Aw,t.stackOffsetNone=kw,t.stackOffsetSilhouette=Cw,t.stackOffsetWiggle=zw,t.stackOrderAscending=Pw,t.stackOrderDescending=Lw,t.stackOrderInsideOut=Rw,t.stackOrderNone=Nw,t.stackOrderReverse=qw,t.timeInterval=Ju,t.timeMillisecond=$m,t.timeMilliseconds=Vm,t.utcMillisecond=$m,t.utcMilliseconds=Vm,t.timeSecond=Gm,t.timeSeconds=Jm,t.utcSecond=Gm,t.utcSeconds=Jm,t.timeMinute=Qm,t.timeMinutes=Km,t.timeHour=tx,t.timeHours=nx,t.timeDay=ex,t.timeDays=rx,t.timeWeek=ix,t.timeWeeks=lx,t.timeSunday=ix,t.timeSundays=lx,t.timeMonday=ox,t.timeMondays=hx,t.timeTuesday=ux,t.timeTuesdays=px,t.timeWednesday=ax,t.timeWednesdays=dx,t.timeThursday=cx,t.timeThursdays=vx,t.timeFriday=sx,t.timeFridays=_x,t.timeSaturday=fx,t.timeSaturdays=yx,t.timeMonth=gx,t.timeMonths=mx,t.timeYear=xx,t.timeYears=bx,t.utcMinute=wx,t.utcMinutes=Mx,t.utcHour=Tx,t.utcHours=kx,t.utcDay=Nx,t.utcDays=Sx,t.utcWeek=Ex,t.utcWeeks=qx,t.utcSunday=Ex,t.utcSundays=qx,t.utcMonday=Ax,t.utcMondays=Ux,t.utcTuesday=Cx,t.utcTuesdays=Dx,t.utcWednesday=zx,t.utcWednesdays=Ox,t.utcThursday=Px,t.utcThursdays=Fx,t.utcFriday=Lx,t.utcFridays=Ix,t.utcSaturday=Rx,t.utcSaturdays=Yx,t.utcMonth=Bx,t.utcMonths=Hx,t.utcYear=jx,t.utcYears=$x,t.timeFormatDefaultLocale=Ja,t.timeFormatLocale=ra,t.isoFormat=Jx,t.isoParse=Qx,t.now=_n,t.timer=mn,t.timerFlush=xn,t.timeout=up,t.interval=ap,t.transition=ee,t.active=hd,t.interrupt=gp,t.voronoi=$w,t.zoom=Gw,t.zoomTransform=Fs,t.zoomIdentity=Ww,Object.defineProperty(t,"__esModule",{value:!0})});
*{box-sizing:border-box}body{margin:0;padding:0}span{position:absolute;top:0;left:0}input{width:100%}canvas{display:block}
!function(n){function e(c){if(t[c])return t[c].exports;var a=t[c]={i:c,l:!1,exports:{}};return n[c].call(a.exports,a,a.exports,e),a.l=!0,a.exports}var t={};e.m=n,e.c=t,e.i=function(n){return n},e.d=function(n,t,c){e.o(n,t)||Object.defineProperty(n,t,{configurable:!1,enumerable:!0,get:c})},e.n=function(n){var t=n&&n.__esModule?function(){return n.default}:function(){return n};return e.d(t,"a",t),t},e.o=function(n,e){return Object.prototype.hasOwnProperty.call(n,e)},e.p="",e(e.s=5)}([function(module,exports,__webpack_require__){"use strict";eval('\n\nObject.defineProperty(exports, "__esModule", {\n value: true\n});\n// The following is significantly based on\n// https://github.com/mapbox/cheap-ruler/blob/master/index.js.\n\nvar distance = function distance(a, b) {\n var dx = a[0] - b[0];\n var dy = a[1] - b[1];\n return Math.sqrt(dx * dx + dy * dy);\n};\n\nvar lineSliceAlongMultiple = function lineSliceAlongMultiple(stop, lines) {};\n\nvar lineSliceAlong = function lineSliceAlong(_ref) {\n var line = _ref.line,\n stop = _ref.stop;\n\n var sum = 0;\n var slice = [];\n\n for (var i = 0; i < line.length - 1; i++) {\n var p0 = line[i];\n var p1 = line[i + 1];\n var d = distance(p0, p1);\n\n sum += d;\n\n if (sum >= stop) {\n slice.push(interpolate(p0, p1, (stop - (sum - d)) / d));\n return slice;\n } else {\n slice.push(p1);\n }\n }\n\n return slice;\n};\n\nvar interpolate = function interpolate(a, b, t) {\n var dx = b[0] - a[0];\n var dy = b[1] - a[1];\n return [a[0] + dx * t, a[1] + dy * t];\n};\n\nvar lineDistance = function lineDistance(points) {\n var total = 0;\n for (var i = 0; i < points.length - 1; i++) {\n total += distance(points[i], points[i + 1]);\n }\n return total;\n};\n\nexports.lineSliceAlong = lineSliceAlong;\nexports.lineDistance = lineDistance;//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiMC5qcyIsInNvdXJjZXMiOlsid2VicGFjazovLy91dGlsLmpzPzYzZjMiXSwic291cmNlc0NvbnRlbnQiOlsiLy8gVGhlIGZvbGxvd2luZyBpcyBzaWduaWZpY2FudGx5IGJhc2VkIG9uXG4vLyBodHRwczovL2dpdGh1Yi5jb20vbWFwYm94L2NoZWFwLXJ1bGVyL2Jsb2IvbWFzdGVyL2luZGV4LmpzLlxuXG5jb25zdCBkaXN0YW5jZSA9IChhLCBiKSA9PiB7XG4gIGNvbnN0IGR4ID0gKGFbMF0gLSBiWzBdKVxuICBjb25zdCBkeSA9IChhWzFdIC0gYlsxXSlcbiAgcmV0dXJuIE1hdGguc3FydChkeCAqIGR4ICsgZHkgKiBkeSlcbn1cblxuY29uc3QgbGluZVNsaWNlQWxvbmdNdWx0aXBsZSA9IChzdG9wLCBsaW5lcykgPT4ge1xuXG59XG5cbmNvbnN0IGxpbmVTbGljZUFsb25nID0gKHsgbGluZSwgc3RvcCB9KSA9PiB7XG4gIGxldCBzdW0gPSAwXG4gIGNvbnN0IHNsaWNlID0gW11cblxuICBmb3IgKGxldCBpID0gMDsgaSA8IGxpbmUubGVuZ3RoIC0gMTsgaSsrKSB7XG4gICAgbGV0IHAwID0gbGluZVtpXVxuICAgIGxldCBwMSA9IGxpbmVbaSArIDFdXG4gICAgY29uc3QgZCA9IGRpc3RhbmNlKHAwLCBwMSlcblxuICAgIHN1bSArPSBkXG5cbiAgICBpZiAoc3VtID49IHN0b3ApIHtcbiAgICAgIHNsaWNlLnB1c2goaW50ZXJwb2xhdGUocDAsIHAxLCAoc3RvcCAtIChzdW0gLSBkKSkgLyBkKSlcbiAgICAgIHJldHVybiBzbGljZVxuICAgIH0gZWxzZSB7XG4gICAgICBzbGljZS5wdXNoKHAxKVxuICAgIH1cbiAgfVxuXG4gIHJldHVybiBzbGljZVxufVxuXG5jb25zdCBpbnRlcnBvbGF0ZSA9IChhLCBiLCB0KSA9PiB7XG4gIGNvbnN0IGR4ID0gYlswXSAtIGFbMF1cbiAgY29uc3QgZHkgPSBiWzFdIC0gYVsxXVxuICByZXR1cm4gW1xuICAgIGFbMF0gKyBkeCAqIHQsXG4gICAgYVsxXSArIGR5ICogdCxcbiAgXVxufVxuXG5jb25zdCBsaW5lRGlzdGFuY2UgPSBwb2ludHMgPT4ge1xuICBsZXQgdG90YWwgPSAwXG4gIGZvciAobGV0IGkgPSAwOyBpIDwgcG9pbnRzLmxlbmd0aCAtIDE7IGkrKykge1xuICAgIHRvdGFsICs9IGRpc3RhbmNlKHBvaW50c1tpXSwgcG9pbnRzW2kgKyAxXSlcbiAgfVxuICByZXR1cm4gdG90YWxcbn1cblxuZXhwb3J0IHtcbiAgbGluZVNsaWNlQWxvbmcsXG4gIGxpbmVEaXN0YW5jZSxcbn1cblxuXG5cbi8vIFdFQlBBQ0sgRk9PVEVSIC8vXG4vLyB1dGlsLmpzIl0sIm1hcHBpbmdzIjoiOzs7OztBQUFBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFHQTtBQUFBO0FBQUE7QUFDQTtBQUFBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBSUE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFFQTtBQUNBIiwic291cmNlUm9vdCI6IiJ9')},function(module,exports,__webpack_require__){"use strict";eval("\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nvar ocean = function ocean(_ref) {\n var ocean = _ref.ocean,\n ctx = _ref.ctx,\n path = _ref.path;\n\n ctx.fillStyle = 'rgba(0,111,145,0.15)';\n ctx.beginPath();\n path({\n type: 'FeatureCollection',\n features: ocean\n });\n ctx.fill();\n};\n\nvar lines = function lines(_ref2) {\n var lines = _ref2.lines,\n ctx = _ref2.ctx,\n path = _ref2.path;\n\n ctx.strokeStyle = '#00485e';\n ctx.beginPath();\n path({\n type: 'FeatureCollection',\n features: lines\n });\n ctx.stroke();\n};\n\nvar reset = function reset(_ref3) {\n var dpRatio = _ref3.dpRatio,\n canvas = _ref3.canvas,\n ctx = _ref3.ctx;\n\n ctx.setTransform(dpRatio, 0, 0, dpRatio, 0, 0);\n ctx.clearRect(0, 0, canvas.width, canvas.height);\n ctx.lineJoin = 'round';\n ctx.lineCap = 'round';\n};\n\nvar draw = {\n ocean: ocean,\n lines: lines,\n reset: reset\n};\n\nexports.default = draw;//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiMS5qcyIsInNvdXJjZXMiOlsid2VicGFjazovLy9kcmF3LmpzPzJiMWMiXSwic291cmNlc0NvbnRlbnQiOlsiY29uc3Qgb2NlYW4gPSAoeyBvY2VhbiwgY3R4LCBwYXRoIH0pID0+IHtcbiAgY3R4LmZpbGxTdHlsZSA9ICdyZ2JhKDAsMTExLDE0NSwwLjE1KSdcbiAgY3R4LmJlZ2luUGF0aCgpXG4gIHBhdGgoe1xuICAgIHR5cGU6ICdGZWF0dXJlQ29sbGVjdGlvbicsXG4gICAgZmVhdHVyZXM6IG9jZWFuLFxuICB9KVxuICBjdHguZmlsbCgpXG59XG5cbmNvbnN0IGxpbmVzID0gKHsgbGluZXMsIGN0eCwgcGF0aCB9KSA9PiB7XG4gIGN0eC5zdHJva2VTdHlsZSA9ICcjMDA0ODVlJ1xuICBjdHguYmVnaW5QYXRoKClcbiAgcGF0aCh7XG4gICAgdHlwZTogJ0ZlYXR1cmVDb2xsZWN0aW9uJyxcbiAgICBmZWF0dXJlczogbGluZXMsXG4gIH0pXG4gIGN0eC5zdHJva2UoKVxufVxuXG5jb25zdCByZXNldCA9ICh7IGRwUmF0aW8sIGNhbnZhcywgY3R4IH0pID0+IHtcbiAgY3R4LnNldFRyYW5zZm9ybShkcFJhdGlvLCAwLCAwLCBkcFJhdGlvLCAwLCAwKVxuICBjdHguY2xlYXJSZWN0KDAsIDAsIGNhbnZhcy53aWR0aCwgY2FudmFzLmhlaWdodClcbiAgY3R4LmxpbmVKb2luID0gJ3JvdW5kJ1xuICBjdHgubGluZUNhcCA9ICdyb3VuZCdcbn1cblxuY29uc3QgZHJhdyA9IHtcbiAgb2NlYW4sXG4gIGxpbmVzLFxuICByZXNldCxcbn1cblxuZXhwb3J0IGRlZmF1bHQgZHJhd1xuXG5cblxuLy8gV0VCUEFDSyBGT09URVIgLy9cbi8vIGRyYXcuanMiXSwibWFwcGluZ3MiOiI7Ozs7O0FBQUE7QUFBQTtBQUFBO0FBQUE7QUFDQTtBQUFBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFGQTtBQUlBO0FBQ0E7QUFDQTtBQUNBO0FBQUE7QUFBQTtBQUFBO0FBQ0E7QUFBQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBRkE7QUFJQTtBQUNBO0FBQ0E7QUFDQTtBQUFBO0FBQUE7QUFBQTtBQUNBO0FBQUE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFIQTtBQUNBO0FBS0EiLCJzb3VyY2VSb290IjoiIn0=")},function(module,exports,__webpack_require__){"use strict";eval("\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\n\nvar _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; };\n\nvar _util = __webpack_require__(0);\n\nvar getFeatures = function getFeatures(topology) {\n\n var all = topojson.feature(topology, topology.objects.all);\n var ocean = all.features.filter(function (d) {\n return d.properties.featurecla;\n });\n\n var lines = all.features\n // Choose features that are not `featurecla` (ocean),\n .filter(function (d) {\n return !d.properties.featurecla;\n }\n // limit to `LineString` (we don't need to focus on `MultiLineString` for now),\n ).filter(function (d) {\n return d.geometry.type === 'LineString';\n }\n // and calculate overall distance.\n ).map(function (d) {\n return _extends({}, d, {\n properties: _extends({}, d.properties, {\n distance: (0, _util.lineDistance)(d.geometry.coordinates)\n })\n });\n });\n\n return {\n all: all,\n ocean: ocean,\n // Return 10 times the amount of lines (so we can debug performance).\n lines: lines.concat(lines).concat(lines).concat(lines).concat(lines).concat(lines).concat(lines).concat(lines).concat(lines).concat(lines)\n };\n};\n\nexports.default = getFeatures;//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiMi5qcyIsInNvdXJjZXMiOlsid2VicGFjazovLy9nZXRGZWF0dXJlcy5qcz8zNTk5Il0sInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IGxpbmVEaXN0YW5jZSB9IGZyb20gJy4vdXRpbC5qcydcblxuY29uc3QgZ2V0RmVhdHVyZXMgPSB0b3BvbG9neSA9PiB7XG5cbiAgY29uc3QgYWxsID0gdG9wb2pzb24uZmVhdHVyZSh0b3BvbG9neSwgdG9wb2xvZ3kub2JqZWN0cy5hbGwpXG4gIGNvbnN0IG9jZWFuID0gYWxsLmZlYXR1cmVzLmZpbHRlcihkID0+IGQucHJvcGVydGllcy5mZWF0dXJlY2xhKVxuXG4gIGNvbnN0IGxpbmVzID0gYWxsLmZlYXR1cmVzXG4gICAgLy8gQ2hvb3NlIGZlYXR1cmVzIHRoYXQgYXJlIG5vdCBgZmVhdHVyZWNsYWAgKG9jZWFuKSxcbiAgICAuZmlsdGVyKGQgPT4gIWQucHJvcGVydGllcy5mZWF0dXJlY2xhKVxuICAgIC8vIGxpbWl0IHRvIGBMaW5lU3RyaW5nYCAod2UgZG9uJ3QgbmVlZCB0byBmb2N1cyBvbiBgTXVsdGlMaW5lU3RyaW5nYCBmb3Igbm93KSxcbiAgICAuZmlsdGVyKGQgPT4gZC5nZW9tZXRyeS50eXBlID09PSAnTGluZVN0cmluZycpXG4gICAgLy8gYW5kIGNhbGN1bGF0ZSBvdmVyYWxsIGRpc3RhbmNlLlxuICAgIC5tYXAoZCA9PiAoe1xuICAgICAgLi4uZCxcbiAgICAgIHByb3BlcnRpZXM6IHtcbiAgICAgICAgLi4uZC5wcm9wZXJ0aWVzLFxuICAgICAgICBkaXN0YW5jZTogbGluZURpc3RhbmNlKGQuZ2VvbWV0cnkuY29vcmRpbmF0ZXMpLFxuICAgICAgfSxcbiAgICB9KSlcblxuICByZXR1cm4ge1xuICAgIGFsbCxcbiAgICBvY2VhbixcbiAgICAvLyBSZXR1cm4gMTAgdGltZXMgdGhlIGFtb3VudCBvZiBsaW5lcyAoc28gd2UgY2FuIGRlYnVnIHBlcmZvcm1hbmNlKS5cbiAgICBsaW5lczogbGluZXNcbiAgICAgIC5jb25jYXQobGluZXMpXG4gICAgICAuY29uY2F0KGxpbmVzKVxuICAgICAgLmNvbmNhdChsaW5lcylcbiAgICAgIC5jb25jYXQobGluZXMpXG4gICAgICAuY29uY2F0KGxpbmVzKVxuICAgICAgLmNvbmNhdChsaW5lcylcbiAgICAgIC5jb25jYXQobGluZXMpXG4gICAgICAuY29uY2F0KGxpbmVzKVxuICAgICAgLmNvbmNhdChsaW5lcyksXG4gIH1cblxufVxuXG5leHBvcnQgZGVmYXVsdCBnZXRGZWF0dXJlc1xuXG5cblxuLy8gV0VCUEFDSyBGT09URVIgLy9cbi8vIGdldEZlYXR1cmVzLmpzIl0sIm1hcHBpbmdzIjoiOzs7Ozs7OztBQUFBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUFBO0FBQUE7QUFDQTtBQUNBO0FBQ0E7QUFEQTtBQUVBO0FBQUE7QUFDQTtBQUhBO0FBSUE7QUFBQTtBQUNBO0FBTEE7QUFNQTtBQUVBO0FBRUE7QUFGQTtBQUZBO0FBQUE7QUFDQTtBQU9BO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFKQTtBQWdCQTtBQUNBO0FBQ0EiLCJzb3VyY2VSb290IjoiIn0=")},function(module,exports,__webpack_require__){"use strict";eval('\n\nObject.defineProperty(exports, "__esModule", {\n value: true\n});\n\nvar _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; };\n\nvar _util = __webpack_require__(0);\n\nvar interpolateLineStrings = function interpolateLineStrings(_ref) {\n var lines = _ref.lines,\n pct = _ref.pct;\n return lines.map(function (line) {\n return _extends({}, line, {\n geometry: _extends({}, line.geometry, {\n coordinates: (0, _util.lineSliceAlong)({\n stop: pct * line.properties.distance,\n line: line.geometry.coordinates\n })\n })\n });\n });\n};\n\nexports.default = interpolateLineStrings;//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiMy5qcyIsInNvdXJjZXMiOlsid2VicGFjazovLy9pbnRlcnBvbGF0ZUxpbmVTdHJpbmdzLmpzPzg0YzMiXSwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgbGluZVNsaWNlQWxvbmcgfSBmcm9tICcuL3V0aWwuanMnXG5cbmNvbnN0IGludGVycG9sYXRlTGluZVN0cmluZ3MgPSAoeyBsaW5lcywgcGN0IH0pID0+XG4gIGxpbmVzXG4gICAgLm1hcChsaW5lID0+ICh7XG4gICAgICAuLi5saW5lLFxuICAgICAgZ2VvbWV0cnk6IHtcbiAgICAgICAgLi4ubGluZS5nZW9tZXRyeSxcbiAgICAgICAgY29vcmRpbmF0ZXM6IGxpbmVTbGljZUFsb25nKHtcbiAgICAgICAgICBzdG9wOiBwY3QgKiBsaW5lLnByb3BlcnRpZXMuZGlzdGFuY2UsXG4gICAgICAgICAgbGluZTogbGluZS5nZW9tZXRyeS5jb29yZGluYXRlcyxcbiAgICAgICAgfSksXG4gICAgICB9LFxuICAgIH0pKVxuXG5leHBvcnQgZGVmYXVsdCBpbnRlcnBvbGF0ZUxpbmVTdHJpbmdzXG5cblxuXG4vLyBXRUJQQUNLIEZPT1RFUiAvL1xuLy8gaW50ZXJwb2xhdGVMaW5lU3RyaW5ncy5qcyJdLCJtYXBwaW5ncyI6Ijs7Ozs7Ozs7QUFBQTtBQUNBO0FBQ0E7QUFBQTtBQUFBO0FBQUE7QUFFQTtBQUVBO0FBRUE7QUFDQTtBQUNBO0FBRkE7QUFGQTtBQUZBO0FBQUE7QUFGQTtBQUNBO0FBWUEiLCJzb3VyY2VSb290IjoiIn0=')},function(module,exports,__webpack_require__){"use strict";eval("\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nvar setupCanvas = function setupCanvas(_ref) {\n var container = _ref.container,\n width = _ref.width,\n height = _ref.height;\n\n\n var dpRatio = window.devicePixelRatio || 1;\n var canvas = container.querySelector('canvas');\n canvas.width = width * dpRatio;\n canvas.height = height * dpRatio;\n canvas.style.width = width + 'px';\n canvas.style.height = height + 'px';\n\n var ctx = canvas.getContext('2d');\n ctx.scale(dpRatio, dpRatio);\n\n return { canvas: canvas, ctx: ctx, dpRatio: dpRatio };\n};\n\nexports.default = setupCanvas;//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiNC5qcyIsInNvdXJjZXMiOlsid2VicGFjazovLy9zZXR1cENhbnZhcy5qcz8wYjI3Il0sInNvdXJjZXNDb250ZW50IjpbImNvbnN0IHNldHVwQ2FudmFzID0gKHsgY29udGFpbmVyLCB3aWR0aCwgaGVpZ2h0IH0pID0+IHtcblxuICBjb25zdCBkcFJhdGlvID0gd2luZG93LmRldmljZVBpeGVsUmF0aW8gfHwgMVxuICBjb25zdCBjYW52YXMgPSBjb250YWluZXIucXVlcnlTZWxlY3RvcignY2FudmFzJylcbiAgY2FudmFzLndpZHRoID0gd2lkdGggKiBkcFJhdGlvXG4gIGNhbnZhcy5oZWlnaHQgPSBoZWlnaHQgKiBkcFJhdGlvXG4gIGNhbnZhcy5zdHlsZS53aWR0aCA9IGAke3dpZHRofXB4YFxuICBjYW52YXMuc3R5bGUuaGVpZ2h0ID0gYCR7aGVpZ2h0fXB4YFxuXG4gIGNvbnN0IGN0eCA9IGNhbnZhcy5nZXRDb250ZXh0KCcyZCcpXG4gIGN0eC5zY2FsZShkcFJhdGlvLCBkcFJhdGlvKVxuXG4gIHJldHVybiB7IGNhbnZhcywgY3R4LCBkcFJhdGlvIH1cblxufVxuXG5leHBvcnQgZGVmYXVsdCBzZXR1cENhbnZhc1xuXG5cblxuXG4vLyBXRUJQQUNLIEZPT1RFUiAvL1xuLy8gc2V0dXBDYW52YXMuanMiXSwibWFwcGluZ3MiOiI7Ozs7O0FBQUE7QUFBQTtBQUFBO0FBQUE7QUFDQTtBQUNBO0FBQUE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUVBO0FBQ0E7QUFDQSIsInNvdXJjZVJvb3QiOiIifQ==")},function(module,exports,__webpack_require__){"use strict";eval("\n\nvar _setupCanvas2 = __webpack_require__(4);\n\nvar _setupCanvas3 = _interopRequireDefault(_setupCanvas2);\n\nvar _getFeatures2 = __webpack_require__(2);\n\nvar _getFeatures3 = _interopRequireDefault(_getFeatures2);\n\nvar _draw = __webpack_require__(1);\n\nvar _draw2 = _interopRequireDefault(_draw);\n\nvar _interpolateLineStrings = __webpack_require__(3);\n\nvar _interpolateLineStrings2 = _interopRequireDefault(_interpolateLineStrings);\n\nfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\n// Use body's offset width as the canvas overall width.\nvar width = document.body.offsetWidth;\n\nd3.json('./all.json', function (topology) {\n\n // Get geo features.\n var _getFeatures = (0, _getFeatures3.default)(topology\n\n // Create a null path.\n ),\n all = _getFeatures.all,\n ocean = _getFeatures.ocean,\n lines = _getFeatures.lines;\n\n var path = d3.geoPath\n\n // Use the null path to get overall topology aspect.\n ();var b = path.bounds(all);\n var aspect = (b[1][0] - b[0][0]) / (b[1][1] - b[0][1]);\n\n // Set height as a multiple of width.\n var height = width / aspect;\n\n // Use geoIdentity so we can use fitSize.\n var projection = d3.geoIdentity().fitSize([width, height], all\n\n // Set the projection to geoIdentity.\n );path.projection(projection\n\n // Setup canvas.\n );\n var _setupCanvas = (0, _setupCanvas3.default)({\n container: document.body,\n width: width,\n height: height\n }\n\n // Set canvas context on path.\n ),\n ctx = _setupCanvas.ctx,\n canvas = _setupCanvas.canvas,\n dpRatio = _setupCanvas.dpRatio;\n\n path.context(ctx\n\n // Clear the canvas.\n );_draw2.default.reset({ dpRatio: dpRatio, canvas: canvas, ctx: ctx }\n\n // Draw ocean.\n );_draw2.default.ocean({ ctx: ctx, ocean: ocean, path: path });\n\n var drawLines = function drawLines(pct) {\n // Clear the canvas.\n _draw2.default.reset({ dpRatio: dpRatio, canvas: canvas, ctx: ctx }\n\n // Draw the ocean.\n );_draw2.default.ocean({ ctx: ctx, ocean: ocean, path: path }\n\n // Slice all the lines by a given pct.\n );var slices = (0, _interpolateLineStrings2.default)({\n lines: lines,\n pct: pct\n }\n\n // Draw the lines.\n );_draw2.default.lines({\n ctx: ctx,\n path: path,\n lines: slices\n });\n };\n\n // Set the duration of a complete loop.\n var duration = 4000;\n var resetTime = 0;\n\n var timer = d3.timer(function (elapsed) {\n\n var delta = elapsed - resetTime;\n if (delta > duration) {\n resetTime = elapsed;\n delta = elapsed - resetTime;\n }\n\n var pct = delta / duration;\n var adjustedPct = pct < 0.5 ? 2 * pct : 2 * (1 - pct);\n\n drawLines(adjustedPct);\n });\n\n d3.select('input').on('input', function () {\n\n timer.stop();\n var pct = this.value;\n\n drawLines(pct);\n });\n});//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiNS5qcyIsInNvdXJjZXMiOlsid2VicGFjazovLy9zY3JpcHQuanM/OWE5NSJdLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgc2V0dXBDYW52YXMgZnJvbSAnLi9zZXR1cENhbnZhcy5qcydcbmltcG9ydCBnZXRGZWF0dXJlcyBmcm9tICcuL2dldEZlYXR1cmVzLmpzJ1xuaW1wb3J0IGRyYXcgZnJvbSAnLi9kcmF3LmpzJ1xuaW1wb3J0IGludGVycG9sYXRlTGluZVN0cmluZ3MgZnJvbSAnLi9pbnRlcnBvbGF0ZUxpbmVTdHJpbmdzLmpzJ1xuXG4vLyBVc2UgYm9keSdzIG9mZnNldCB3aWR0aCBhcyB0aGUgY2FudmFzIG92ZXJhbGwgd2lkdGguXG5jb25zdCB3aWR0aCA9IGRvY3VtZW50LmJvZHkub2Zmc2V0V2lkdGhcblxuZDMuanNvbignLi9hbGwuanNvbicsIHRvcG9sb2d5ID0+IHtcblxuICAvLyBHZXQgZ2VvIGZlYXR1cmVzLlxuICBjb25zdCB7IGFsbCwgb2NlYW4sIGxpbmVzIH0gPSBnZXRGZWF0dXJlcyh0b3BvbG9neSlcblxuICAvLyBDcmVhdGUgYSBudWxsIHBhdGguXG4gIGNvbnN0IHBhdGggPSBkMy5nZW9QYXRoKClcblxuICAvLyBVc2UgdGhlIG51bGwgcGF0aCB0byBnZXQgb3ZlcmFsbCB0b3BvbG9neSBhc3BlY3QuXG4gIGNvbnN0IGIgPSBwYXRoLmJvdW5kcyhhbGwpXG4gIGNvbnN0IGFzcGVjdCA9IChiWzFdWzBdIC0gYlswXVswXSkvKGJbMV1bMV0gLSBiWzBdWzFdKVxuXG4gIC8vIFNldCBoZWlnaHQgYXMgYSBtdWx0aXBsZSBvZiB3aWR0aC5cbiAgY29uc3QgaGVpZ2h0ID0gd2lkdGggLyBhc3BlY3RcblxuICAvLyBVc2UgZ2VvSWRlbnRpdHkgc28gd2UgY2FuIHVzZSBmaXRTaXplLlxuICBjb25zdCBwcm9qZWN0aW9uID0gZDMuZ2VvSWRlbnRpdHkoKS5maXRTaXplKFt3aWR0aCwgaGVpZ2h0XSwgYWxsKVxuXG4gIC8vIFNldCB0aGUgcHJvamVjdGlvbiB0byBnZW9JZGVudGl0eS5cbiAgcGF0aC5wcm9qZWN0aW9uKHByb2plY3Rpb24pXG5cbiAgLy8gU2V0dXAgY2FudmFzLlxuICBjb25zdCB7IGN0eCwgY2FudmFzLCBkcFJhdGlvIH0gPSBzZXR1cENhbnZhcyh7XG4gICAgY29udGFpbmVyOiBkb2N1bWVudC5ib2R5LFxuICAgIHdpZHRoLFxuICAgIGhlaWdodCxcbiAgfSlcblxuICAvLyBTZXQgY2FudmFzIGNvbnRleHQgb24gcGF0aC5cbiAgcGF0aC5jb250ZXh0KGN0eClcblxuICAvLyBDbGVhciB0aGUgY2FudmFzLlxuICBkcmF3LnJlc2V0KHsgZHBSYXRpbywgY2FudmFzLCBjdHggfSlcblxuICAvLyBEcmF3IG9jZWFuLlxuICBkcmF3Lm9jZWFuKHsgY3R4LCBvY2VhbiwgcGF0aCB9KVxuXG4gIGNvbnN0IGRyYXdMaW5lcyA9IHBjdCA9PiB7XG4gICAgLy8gQ2xlYXIgdGhlIGNhbnZhcy5cbiAgICBkcmF3LnJlc2V0KHsgZHBSYXRpbywgY2FudmFzLCBjdHggfSlcblxuICAgIC8vIERyYXcgdGhlIG9jZWFuLlxuICAgIGRyYXcub2NlYW4oeyBjdHgsIG9jZWFuLCBwYXRoIH0pXG5cbiAgICAvLyBTbGljZSBhbGwgdGhlIGxpbmVzIGJ5IGEgZ2l2ZW4gcGN0LlxuICAgIGNvbnN0IHNsaWNlcyA9IGludGVycG9sYXRlTGluZVN0cmluZ3Moe1xuICAgICAgbGluZXMsXG4gICAgICBwY3QsXG4gICAgfSlcblxuICAgIC8vIERyYXcgdGhlIGxpbmVzLlxuICAgIGRyYXcubGluZXMoe1xuICAgICAgY3R4LFxuICAgICAgcGF0aCxcbiAgICAgIGxpbmVzOiBzbGljZXMsXG4gICAgfSlcbiAgfVxuXG4gIC8vIFNldCB0aGUgZHVyYXRpb24gb2YgYSBjb21wbGV0ZSBsb29wLlxuICBjb25zdCBkdXJhdGlvbiA9IDQwMDBcbiAgbGV0IHJlc2V0VGltZSA9IDBcblxuICBjb25zdCB0aW1lciA9IGQzLnRpbWVyKChlbGFwc2VkKSA9PiB7XG5cbiAgICBsZXQgZGVsdGEgPSBlbGFwc2VkIC0gcmVzZXRUaW1lXG4gICAgaWYgKGRlbHRhID4gZHVyYXRpb24pIHtcbiAgICAgIHJlc2V0VGltZSA9IGVsYXBzZWRcbiAgICAgIGRlbHRhID0gZWxhcHNlZCAtIHJlc2V0VGltZVxuICAgIH1cblxuICAgIGNvbnN0IHBjdCA9IGRlbHRhIC8gZHVyYXRpb25cbiAgICBjb25zdCBhZGp1c3RlZFBjdCA9IHBjdCA8IDAuNSA/IDIgKiBwY3QgOiAyICogKDEgLSBwY3QpXG5cbiAgICBkcmF3TGluZXMoYWRqdXN0ZWRQY3QpXG5cbiAgfSlcblxuICBkMy5zZWxlY3QoJ2lucHV0Jykub24oJ2lucHV0JywgZnVuY3Rpb24oKSB7XG5cbiAgICB0aW1lci5zdG9wKClcbiAgICBjb25zdCBwY3QgPSB0aGlzLnZhbHVlXG5cbiAgICBkcmF3TGluZXMocGN0KVxuXG4gIH0pXG59KVxuXG5cblxuLy8gV0VCUEFDSyBGT09URVIgLy9cbi8vIHNjcmlwdC5qcyJdLCJtYXBwaW5ncyI6Ijs7QUFBQTtBQUNBOzs7QUFBQTtBQUNBOzs7QUFBQTtBQUNBOzs7QUFBQTtBQUNBOzs7OztBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUZBO0FBQ0E7QUFJQTtBQUZBO0FBSEE7QUFBQTtBQUFBO0FBQ0E7QUFLQTtBQUNBO0FBQ0E7QUFGQTtBQUlBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUZBO0FBQ0E7QUFJQTtBQUZBO0FBbkJBO0FBdUJBO0FBQ0E7QUFDQTtBQUhBO0FBQ0E7QUFLQTtBQU5BO0FBdEJBO0FBQUE7QUFBQTtBQUNBO0FBNEJBO0FBQ0E7QUFDQTtBQUZBO0FBQ0E7QUFJQTtBQUZBO0FBQ0E7QUFJQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBRkE7QUFDQTtBQUlBO0FBRkE7QUFJQTtBQUNBO0FBRkE7QUFDQTtBQUlBO0FBTEE7QUFPQTtBQUNBO0FBQ0E7QUFIQTtBQUtBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUVBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFFQTtBQUNBIiwic291cmNlUm9vdCI6IiJ9")}]);
const ocean = ({ ocean, ctx, path }) => {
ctx.fillStyle = 'rgba(0,111,145,0.15)'
ctx.beginPath()
path({
type: 'FeatureCollection',
features: ocean,
})
ctx.fill()
}
const lines = ({ lines, ctx, path }) => {
ctx.strokeStyle = '#00485e'
ctx.beginPath()
path({
type: 'FeatureCollection',
features: lines,
})
ctx.stroke()
}
const reset = ({ dpRatio, canvas, ctx }) => {
ctx.setTransform(dpRatio, 0, 0, dpRatio, 0, 0)
ctx.clearRect(0, 0, canvas.width, canvas.height)
ctx.lineJoin = 'round'
ctx.lineCap = 'round'
}
const draw = {
ocean,
lines,
reset,
}
export default draw
import { lineDistance } from './util.js'
const getFeatures = topology => {
const all = topojson.feature(topology, topology.objects.all)
const ocean = all.features.filter(d => d.properties.featurecla)
const lines = all.features
// Choose features that are not `featurecla` (ocean),
.filter(d => !d.properties.featurecla)
// limit to `LineString` (we don't need to focus on `MultiLineString` for now),
.filter(d => d.geometry.type === 'LineString')
// and calculate overall distance.
.map(d => ({
...d,
properties: {
...d.properties,
distance: lineDistance(d.geometry.coordinates),
},
}))
return {
all,
ocean,
// Return 10 times the amount of lines (so we can debug performance).
lines: lines
.concat(lines)
.concat(lines)
.concat(lines)
.concat(lines)
.concat(lines)
.concat(lines)
.concat(lines)
.concat(lines)
.concat(lines),
}
}
export default getFeatures
<!DOCTYPE html>
<title>blockup</title>
<meta name="viewport" content="width=device-width,initial-scale=1,minimum-scale=1,maximum-scale=1,user-scalable=no">
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<link href='dist.css' rel='stylesheet' />
<body>
<canvas></canvas>
<script src='d3.v4.min.js'></script>
<script src='topojson.min.js'></script>
<script src='dist.js'></script>
<input type='range' min=0 max=1 step=0.01 value=0.5>
</body>
import { lineSliceAlong } from './util.js'
const interpolateLineStrings = ({ lines, pct }) =>
lines
.map(line => ({
...line,
geometry: {
...line.geometry,
coordinates: lineSliceAlong({
stop: pct * line.properties.distance,
line: line.geometry.coordinates,
}),
},
}))
export default interpolateLineStrings
W := 960
H := 500
bin := ./node_modules/.bin
all: clean all.json
clean:
rm -rf output
output/ne_110m_ocean.zip:
mkdir -p $(dir $@)
curl -Lo $@ http://naciscdn.org/naturalearth/110m/physical/$(notdir $@)
output/ne_110m_ocean.shp: output/ne_110m_ocean.zip
unzip -od $(dir $@) $<
touch $@
output/ocean.json: output/ne_110m_ocean.shp
${bin}/shp2json -n $< \
| ${bin}/geostitch -n \
> $@
ls -lh $@
output/lines.json:
cp $(notdir $@) $@
all.json: output/ocean.json output/lines.json
bash -c "${bin}/geo2topo -n \
all=<(cat $^ | ${bin}/geoproject 'd3.geoMollweide()' -n) \
| ${bin}/toposimplify -p 100 -f \
| ${bin}/topoquantize 100 \
> $@"
ls -lh $@
This file has been truncated, but you can view the full file.
{"type":"Feature","geometry":{"type":"LineString","coordinates":[[119.9014,23.20564],[119.9038,23.26096],[119.90415,23.270737],[119.9041,23.27074],[119.9035,23.28297],[119.9031,23.29521],[119.9027,23.30848],[119.9021,23.32168],[119.9015,23.33504],[119.90068,23.348417],[119.9007,23.34842],[119.8999,23.36027],[119.8993,23.3751],[119.8984,23.39023],[119.8975,23.40709],[119.8968,23.41777],[119.8957,23.42995],[119.8945,23.4471],[119.8936,23.45833],[119.8927,23.46959],[119.8918,23.4814],[119.8905,23.49878],[119.89003,23.505407],[119.8895,23.51145],[119.8883,23.52952],[119.8881,23.5414],[119.8882,23.55375],[119.8882,23.56615],[119.8883,23.57848],[119.8884,23.59594],[119.8888,23.60824],[119.8889,23.62053],[119.8889,23.63286],[119.8898,23.68464],[119.88997,23.692478],[119.8901,23.69823],[119.8904,23.71288],[119.8908,23.73592],[119.9079,23.92373],[119.9109,23.9522],[119.9138,23.97493],[119.9171,23.99698],[119.919,24.01016],[119.9208,24.02219],[119.9226,24.03432],[119.9252,24.05079],[119.9288,24.07192],[119.9325,24.08715],[119.9475,24.1468],[119.9673,24.21769],[119.9743,24.24329],[119.9777,24.25536],[119.9869,24.28789],[119.9896,24.29694],[119.9951,24.31601],[120.0015,24.33873],[120.0057,24.35176],[120.011,24.36622],[120.022,24.38679],[120.0306,24.40136],[120.0376,24.41297],[120.0449,24.42497],[120.0559,24.44314],[120.0626,24.45431],[120.0698,24.46634],[120.0741,24.47332],[120.0853,24.49171],[120.1158,24.54133],[120.13,24.56512],[120.1368,24.57744],[120.62147,25.323427],[120.6215,25.32343],[120.65072,25.36881],[120.6507,25.36881],[121.67777,26.937627],[121.71653,27.012555],[121.80104,27.12985],[121.8812,27.243292],[121.9144,27.29914],[121.92477,27.319555],[122.0121,27.45066],[122.08339,27.549208],[122.21116,27.736132],[122.28841,27.850007],[122.36885,27.97176],[122.3912,28.00474],[122.9953,28.90005],[123.0053,28.91618],[123.0342,28.96162],[123.0409,28.97183],[123.0501,28.98571],[123.0602,28.99903],[123.0671,29.00561],[123.0451,29.00673],[123.0383,29.00555],[123.0304,28.99027],[123.0319,28.98862],[123.034,28.98588],[123.0348,28.98472],[123.0382,28.97824],[123.0396,28.97281],[123.0393,28.96667],[123.0392,28.9622],[123.0381,28.94618],[123.0427,28.95058],[123.0505,28.96136],[123.0617,28.97657],[123.0676,28.98491],[123.075,28.99578],[123.14975,29.10724],[123.169,29.14056],[123.20279,29.199973],[123.2636,29.31237],[123.28771,29.357633],[123.2922,29.36589],[123.30936,29.397027],[123.35768,29.477833],[123.40271,29.551107],[123.44973,29.61926],[123.51379,29.699627],[123.55368,29.769787],[123.59091,29.856497],[123.63485,29.947423],[123.65384,30.01748],[123.6604,30.07817],[123.66208,30.09934],[123.6693,30.17303],[123.6703,30.18443],[123.67043,30.186307],[123.671,30.20207],[123.6637,30.24093],[123.65837,30.258907],[123.6567,30.26436],[123.6452,30.30245],[123.637,30.33024],[123.63357,30.341583],[123.6331,30.34323],[123.6108,30.410973],[123.6023,30.43647],[123.5953,30.4558],[123.58424,30.486607],[123.5824,30.4919],[123.5804,30.49771],[123.5692,30.52156],[123.55271,30.557233],[123.5492,30.56732],[123.5456,30.57702],[123.5413,30.58877],[123.5393,30.61189],[123.5401,30.63999],[123.54105,30.66208],[123.5424,30.69041],[123.5519,30.69511],[123.55761,30.69642],[123.5624,30.69756],[123.5727,30.69994],[123.5816,30.70212],[123.593,30.7049],[123.6083,30.70753],[123.6105,30.70687],[123.61271,30.704713],[123.61408,30.70342],[123.61483,30.706167],[123.61241,30.70864],[123.60423,30.725573],[123.60361,30.727213],[123.60044,30.740847],[123.59811,30.751497],[123.5958,30.765807],[123.59511,30.77972],[123.5959,30.79082],[123.596,30.79234],[123.59611,30.793547],[123.5961,30.79355],[123.5963,30.79598],[123.5966,30.79857],[123.5968,30.79988],[123.597,30.80157],[123.5972,30.80289],[123.5973,30.80399],[123.5977,30.80623],[123.5979,30.80738],[123.59819,30.80859],[123.5984,30.80945],[123.5989,30.81189],[123.5995,30.81429],[123.6002,30.8166],[123.6006,30.81775],[123.6009,30.81877],[123.6016,30.82082],[123.6021,30.82204],[123.60244,30.822993],[123.6024,30.82299],[123.6032,30.82489],[123.60903,30.83616],[123.61545,30.846753],[123.6034,30.86433],[123.5997,30.86525],[123.5904,30.86748],[123.5842,30.86886],[123.5734,30.87205],[123.5646,30.87461],[123.56128,30.875553],[123.5567,30.87685],[123.5474,30.87953],[123.5414,30.88123],[123.5353,30.88301],[123.527,30.88549],[123.5165,30.88869],[123.5042,30.89247],[123.497,30.89452],[123.4915,30.89613],[123.4828,30.89899],[123.4737,30.90143],[123.4661,30.90346],[123.46341,30.904127],[123.4597,30.90531],[123.4523,30.90805],[123.442,30.91171],[123.4295,30.91571],[123.4205,30.91827],[123.4138,30.92041],[123.4071,30.92242],[123.3998,30.92458],[123.3931,30.9267],[123.3831,30.92992],[123.3736,30.93294],[123.3655,30.93551],[123.36339,30.936173],[123.3571,30.93817],[123.3515,30.93995],[123.3396,30.94371],[123.3321,30.94597],[123.3251,30.94807],[123.3165,30.95076],[123.309,30.95301],[123.2985,30.95606],[123.2881,30.95933],[123.2782,30.96249],[123.2681,30.96579],[123.26168,30.96779],[123.2593,30.96851],[123.2498,30.97146],[123.2404,30.97448],[123.2302,30.97771],[123.2203,30.98086],[123.2121,30.98344],[123.202,30.98659],[123.1946,30.98889],[123.1852,30.99177],[123.1723,30.99571],[123.16419,30.998127],[123.1627,30.99859],[123.154,31.0013],[123.1454,31.00393],[123.1369,31.00638],[123.1283,31.00891],[123.1212,31.01101],[123.1147,31.01293],[123.1043,31.01599],[123.0973,31.01795],[123.0884,31.02051],[123.0796,31.02297],[123.07367,31.0246],[123.0737,31.0246],[123.0654,31.02683],[123.0567,31.02917],[123.0519,31.03048],[123.0452,31.03229],[123.0375,31.03427],[123.0306,31.03606],[123.0227,31.03805],[123.0179,31.0392],[123.0102,31.04113],[123.0063,31.04205],[123.0002,31.04351],[122.99032,31.04661],[122.9903,31.04661],[122.9823,31.04923],[122.9765,31.05115],[122.9705,31.05308],[122.9622,31.05563],[122.9538,31.05836],[122.9454,31.06096],[122.9366,31.0639],[122.9306,31.06588],[122.9238,31.06808],[122.9109,31.0723],[122.90775,31.073323],[122.9046,31.07433],[122.8964,31.07706],[122.8883,31.07968],[122.8815,31.08185],[122.8722,31.08475],[122.8652,31.08703],[122.8581,31.08924],[122.851,31.09153],[122.8438,31.09363],[122.8386,31.09543],[122.8332,31.09692],[122.82971,31.098027],[122.8257,31.0991],[122.8197,31.10079],[122.8148,31.10103],[122.8057,31.10103],[122.7995,31.10111],[122.7931,31.10167],[122.7857,31.10219],[122.7832,31.10237],[122.7753,31.10282],[122.771,31.10323],[122.7598,31.10417],[122.7559,31.10452],[122.75179,31.105053],[122.7463,31.10547],[122.7379,31.10652],[122.7318,31.10709],[122.7231,31.10759],[122.7143,31.10815],[122.7025,31.10867],[122.6942,31.10876],[122.6875,31.1088],[122.6806,31.1088],[122.6717,31.10932],[122.66919,31.109473],[122.6666,31.10957],[122.6584,31.10984],[122.6506,31.11013],[122.6441,31.11021],[122.6361,31.11047],[122.58925,31.111823],[122.49909,31.109383],[122.4364,31.11912],[122.40955,31.11098],[122.29793,31.109467],[122.23388,31.1455],[122.2177,31.15565],[122.206,31.16272],[122.1858,31.17484],[122.1706,31.18418],[122.15129,31.196507],[122.1443,31.20086],[122.1262,31.21236],[122.1205,31.21612],[122.113,31.22077],[122.106,31.22485],[122.0977,31.22956],[122.09092,31.2314],[122.0909,31.2314],[122.0787,31.23365],[122.0684,31.23577],[122.0615,31.23711],[122.0529,31.23874],[122.0434,31.2403],[122.0298,31.24245],[122.0207,31.24384],[122.0162,31.24456],[122.0054,31.24627],[121.9924,31.24835],[121.98459,31.249573],[121.9824,31.24991],[121.9732,31.25136],[121.9618,31.25313],[121.9506,31.25493],[121.9395,31.25674],[121.9304,31.25821],[121.9211,31.25973],[121.9105,31.26148],[121.8998,31.26327],[121.8907,31.26478],[121.882,31.26625],[121.8708,31.26818],[121.86443,31.26944],[121.8583,31.27159],[121.8483,31.27522],[121.84,31.27819],[121.8301,31.28186],[121.8187,31.286],[121.8107,31.28886],[121.8009,31.29233],[121.789,31.29672],[121.7792,31.30034],[121.76604,31.305303],[121.766,31.3053],[121.7573,31.30839],[121.7457,31.31257],[121.7375,31.31559],[121.7352,31.31651],[121.7339,31.317],[121.7178,31.32297],[121.6994,31.33115],[121.6854,31.33798],[121.6736,31.34383],[121.6672,31.34714],[121.66399,31.348807],[121.6571,31.35233],[121.6455,31.35824],[121.6397,31.36112],[121.6317,31.36498],[121.6255,31.368],[121.6144,31.37335],[121.6081,31.3764],[121.5999,31.38036],[121.5957,31.38238],[121.5843,31.38808],[121.5767,31.38913],[121.57323,31.387587],[121.5709,31.38499],[121.5699,31.38418],[121.5682,31.38442],[121.5696,31.38414],[121.5727,31.38297],[121.5755,31.38067],[121.5775,31.37814],[121.578,31.37743],[121.5773,31.37645],[121.5771,31.37627],[121.57715,31.37625],[121.5771,31.37616],[121.57692,31.376167],[121.577,31.37639],[121.57703,31.376217],[121.57716,31.376213],[121.5772,31.37621],[121.5771,31.37618],[121.57709,31.376163],[121.5771,31.37607],[121.57704,31.376283],[121.577,31.37628],[121.57716,31.376113],[121.5772,31.37611],[121.5771,31.37626],[121.57713,31.37632],[121.577,31.37629],[121.57704,31.376293],[121.5771,31.37624],[121.57715,31.376207],[121.5771,31.3762],[121.5771,31.37623],[121.57716,31.376247],[121.5771,31.37623],[121.57713,31.376243],[121.5771,31.37636],[121.57712,31.37628],[121.5771,31.37624],[121.57695,31.376293],[121.5771,31.37627],[121.57713,31.376153],[121.5771,31.37615],[121.5771,31.37622],[121.57704,31.376187],[121.5769,31.37619],[121.57692,31.376217],[121.577,31.37619],[121.57703,31.37622],[121.5765,31.37619],[121.57701,31.376283],[121.5771,31.37627],[121.57723,31.376047],[121.5771,31.37616],[121.57711,31.376207],[121.5771,31.37621],[121.5772,31.376167],[121.57713,31.376223],[121.57716,31.376213],[121.57715,31.376227],[121.57728,31.376487],[121.62468,31.36468],[121.72065,31.31922],[121.82177,31.282883],[121.93703,31.255887],[122.05481,31.236033],[122.16768,31.184303],[122.27973,31.11707],[122.41588,31.10157],[122.51696,31.09864],[122.6344,31.0918],[122.6461,31.09161],[122.65661,31.09152],[122.6592,31.09149],[122.6778,31.09141],[122.6892,31.09129],[122.7063,31.0911],[122.7216,31.09126],[122.7362,31.09188],[122.7485,31.09302],[122.7661,31.09464],[122.783,31.09624],[122.7974,31.09779],[122.8144,31.09967],[122.82483,31.101067],[122.8304,31.10201],[122.8462,31.10445],[122.8586,31.10789],[122.8739,31.11209],[122.8866,31.11565],[122.9021,31.11994],[122.9162,31.12391],[122.9302,31.12802],[122.9422,31.1325],[122.9628,31.14091],[122.978,31.14766],[122.98111,31.14909],[122.9915,31.15382],[123.0104,31.16235],[123.0236,31.16885],[123.0357,31.17535],[123.0484,31.1829],[123.0601,31.18999],[123.0747,31.19899],[123.0972,31.21155],[123.1169,31.22091],[123.1299,31.22691],[123.13248,31.228127],[123.1428,31.23287],[123.1669,31.24433],[123.34475,31.328033],[123.65639,31.504433],[123.75639,31.553607],[124.06325,31.73493],[124.0633,31.73493],[124.15408,31.78355],[124.1718,31.79186],[124.1951,31.80277],[124.2074,31.80852],[124.2487,31.82804],[124.2574,31.8322],[124.36576,31.878643],[124.4306,31.90604],[124.4587,31.91781],[124.45872,31.91781],[124.511,31.941],[124.582,31.97723],[124.7344,32.057],[125.0173,32.13844],[126.4512,32.82908],[126.5327,32.86757],[126.5501,32.87685],[126.605,32.90773],[126.691,32.95847],[126.7681,32.99391],[126.7938,33.00512],[126.844,33.02721],[127.0517,33.1192],[127.0748,33.12908],[127.1008,33.14051],[127.1192,33.14858],[127.1958,33.18262],[127.2244,33.1955],[127.2751,33.21826],[127.3295,33.25802],[127.7047,33.62312],[127.7159,33.63364],[127.7505,33.66702],[127.7706,33.68645],[127.9404,33.82371],[127.9817,33.85966],[127.9989,33.87525],[128.0217,33.89631],[128.0506,33.92303],[128.0797,33.94965],[128.0985,33.96666],[128.1151,33.98146],[128.1314,33.99597],[128.13933,34.00281],[128.173,34.03229],[128.1915,34.0484],[128.2293,34.08174],[128.2488,34.09874],[128.25181,34.101337],[128.2671,34.11504],[128.2988,34.14602],[128.3136,34.15975],[128.31383,34.159853],[128.3278,34.17171],[128.3367,34.1837],[128.3686,34.22491],[128.3841,34.24201],[128.39641,34.249927],[128.4694,34.27516],[128.4823,34.27925],[128.624,34.32343],[128.6407,34.32874],[128.7715,34.3734],[128.7902,34.38033],[128.8317,34.39816],[128.8445,34.4045],[128.8588,34.41167],[128.9251,34.45244],[128.95,34.47333],[128.9806,34.53834],[128.98577,34.551573],[128.99552,34.570223],[129.00928,34.588827],[129.01956,34.601627],[129.04907,34.630827],[129.054,34.63522],[129.01713,34.583607],[129.0467,34.61],[129.06569,34.629193],[129.08345,34.650687],[129.10039,34.663707],[129.09883,34.714587],[129.046,34.76782],[129.0285,34.78201],[129.0151,34.79225],[129.007,34.79852],[129.0028,34.80173],[128.9986,34.80497],[128.98812,34.812733],[128.9889,34.81222],[128.9349,34.84906],[128.9257,34.85562],[128.918,34.86104],[128.9098,34.86672],[128.90192,34.872087],[128.8987,34.87432],[128.8909,34.88056],[128.8826,34.88844],[128.8751,34.8953],[128.8681,34.90265],[128.8607,34.91171],[128.8543,34.9195],[128.8481,34.92817],[128.8425,34.93615],[128.83837,34.941707],[128.8369,34.94368],[128.8319,34.95135],[128.8275,34.95871],[128.8226,34.96669],[128.8188,34.97285],[128.8157,34.97901],[128.8122,34.98563],[128.8019,35.00603],[128.80192,35.006027],[128.7974,35.01491],[128.7932,35.02362],[128.7884,35.03318],[128.7844,35.04211],[128.7832,35.05249],[128.7831,35.0617],[128.7842,35.06964],[128.7893,35.07409],[128.7965,35.07436],[128.79544,35.07447],[128.8042,35.07372],[128.8204,35.07248],[128.8244,35.0721],[128.8273,35.07187],[128.8281,35.07163],[128.8288,35.07126],[128.82912,35.07091],[128.8291,35.07092],[128.82916,35.070927],[128.8292,35.07096],[128.82907,35.071033],[128.8292,35.07092],[128.82911,35.070947],[128.8291,35.07077],[128.8292,35.07101],[128.82893,35.07096],[128.8291,35.0708],[128.82915,35.070963],[128.8291,35.07077],[128.8289,35.07077],[128.82901,35.070863],[128.8293,35.0709],[128.82907,35.070893],[128.8289,35.07084],[128.82897,35.0709],[128.8292,35.07063],[128.829,35.07084],[128.82907,35.07088],[128.82915,35.07088],[128.8291,35.0709],[128.82889,35.070793],[128.8291,35.07091],[128.82911,35.071023],[128.8291,35.07095],[128.8292,35.07093],[128.82941,35.070947],[128.8291,35.07096],[128.82917,35.07093],[128.8292,35.0709],[128.82919,35.0709],[128.8291,35.07095],[128.82908,35.070927],[128.8292,35.07097],[128.82915,35.070933],[128.8291,35.07092],[128.82916,35.07088],[128.8293,35.07075],[128.8293,35.07083],[128.82919,35.070963],[128.8293,35.071],[128.82923,35.070737],[128.8292,35.07119],[128.8293,35.07085],[128.82915,35.07092],[128.8292,35.07092],[128.82915,35.070937],[128.8293,35.07087],[128.82929,35.07087],[128.8292,35.07093],[128.82915,35.07082],[128.8291,35.07095],[128.8292,35.07085],[128.82913,35.07084],[128.8291,35.07082],[128.8291,35.07074],[128.82919,35.070937],[128.829,35.07126],[128.8291,35.07085],[128.82912,35.070987],[128.8291,35.07102],[128.82929,35.070707],[128.8292,35.07097],[128.8292,35.07087],[128.82907,35.071023],[128.82908,35.07104],[128.8291,35.07098],[128.8288,35.07184],[128.8287,35.07279],[128.8287,35.07333],[128.8285,35.07433],[128.82844,35.074113],[128.8291,35.07461],[128.8291,35.07386],[128.8263,35.0731],[128.8214,35.07369],[128.8148,35.07432],[128.8064,35.07443],[128.7973,35.07434],[128.7877,35.07332],[128.78824,35.073527],[128.7832,35.06734],[128.7825,35.05928],[128.7822,35.04981],[128.782,35.04021],[128.7824,35.03241],[128.7846,35.02505],[128.7866,35.01862],[128.789,35.01129],[128.7918,35.00364],[128.79447,34.995827],[128.7961,34.99041],[128.7986,34.98178],[128.8008,34.97343],[128.8053,34.96335],[128.8109,34.95699],[128.817,34.95002],[128.8252,34.94071],[128.8356,34.92958],[128.84389,34.9209],[128.8442,34.92059],[128.8531,34.91101],[128.8641,34.89935],[128.881,34.88135],[128.8907,34.87144],[128.9104,34.86126],[128.9298,34.85546],[128.9536,34.84943],[128.96673,34.84823],[128.9727,34.84777],[128.9939,34.8462],[129.0014,34.84563],[129.0242,34.84403],[129.046,34.84344],[129.06,34.8435],[129.0814,34.84621],[129.0945,34.84891],[129.1091,34.85192],[129.1295,34.85673],[129.14696,34.865273],[129.1423,34.86276],[129.1544,34.86979],[129.1717,34.88125],[129.1839,34.88926],[129.1967,34.89774],[129.2094,34.90615],[129.2226,34.91582],[129.2423,34.93001],[129.2556,34.93911],[129.2711,34.94683],[129.286,34.95441],[129.301,34.96146],[129.3196,34.96987],[129.3249,34.97221],[129.3395,34.97869],[129.3588,34.98728],[129.3854,34.99934],[129.398,35.00609],[129.4144,35.01723],[129.4264,35.0275],[129.4383,35.03799],[129.4559,35.0535],[129.4674,35.06347],[129.4799,35.07437],[129.49388,35.086573],[129.4919,35.08483],[129.5039,35.09524],[129.5164,35.10617],[129.53,35.118],[129.5436,35.12992],[129.5624,35.14655],[129.9622,35.43999],[129.9809,35.45222],[130.0041,35.46746],[130.0248,35.48103],[130.0439,35.49378],[132,36.6635],[132.2167,36.78833],[133.365,37.44667],[134.5783,38.135],[134.615,38.15667],[135.00084,38.386633],[135.0008,38.38663],[135.509,38.65291],[135.655,38.7335],[135.9792,38.91916],[136.4244,39.17308],[136.6119,39.27485],[136.6435,39.29155],[136.759,39.35569],[136.977,39.4784],[137.0546,39.51995],[137.4651,39.74591],[137.6229,39.83574],[137.6915,39.87415],[137.7681,39.91607],[138.4915,40.31084],[138.6265,40.38163],[138.7377,40.44021],[139.1595,40.67358],[139.4136,40.82265],[139.522,40.88077],[139.9503,41.10133],[139.97145,41.112523],[140.0648,41.16304],[140.29504,41.297427],[140.3383,41.32011],[140.3466,41.32452],[140.3608,41.33256],[140.3726,41.3392],[140.3903,41.34887],[140.4092,41.35951],[140.4257,41.36891],[140.4419,41.37787],[140.4628,41.3895],[140.4721,41.39435],[140.4948,41.40667],[140.5016,41.41025],[140.5172,41.41868],[140.5323,41.42653],[140.5564,41.43856],[140.57235,41.446],[140.5806,41.44987],[140.5956,41.45662],[140.611,41.46333],[140.627,41.47017],[140.6505,41.48013],[140.673,41.49173],[140.6882,41.50029],[140.7026,41.50829],[140.7167,41.51633],[140.7306,41.52431],[140.745,41.53339],[140.7574,41.54156],[140.7762,41.55416],[140.77621,41.554163],[140.7946,41.56554],[140.8069,41.57307],[140.8259,41.58467],[140.8385,41.59223],[140.851,41.59972],[140.8654,41.60591],[140.8923,41.61073],[140.8987,41.61134],[140.9337,41.61155],[140.9426,41.61143],[140.9595,41.61148],[140.97759,41.611443],[140.9847,41.61146],[141.0124,41.61098],[141.0226,41.61087],[141.041,41.61085],[141.0612,41.61091],[141.0875,41.61058],[141.1088,41.61046],[141.1267,41.61025],[141.1443,41.61001],[141.1716,41.60973],[141.202,41.6108],[141.21297,41.611317],[141.3834,41.61898],[141.4495,41.61886],[141.7914,41.62163],[141.80504,41.621727],[141.8018,41.62177],[141.8387,41.62095],[141.8643,41.62031],[141.9033,41.61946],[141.9129,41.61928],[141.9745,41.6176],[141.97449,41.617603],[142.0068,41.61641],[142.0239,41.61672],[142.041,41.61722],[142.0574,41.61745],[142.1144,41.6179],[142.1446,41.6179],[142.1951,41.6176],[142.19277,41.61762],[142.2349,41.61777],[142.2652,41.61789],[142.36,41.6203],[142.42652,41.622193],[142.4831,41.62387],[142.7076,41.63522],[142.69924,41.634133],[142.9859,41.65191],[143.0119,41.65544],[143.67,41.81],[143.6917,41.81667],[143.7383,41.82833],[144.1689,41.99842],[144.4104,42.12934],[144.6335,42.24184],[144.7789,42.30618],[144.8815,42.35025],[145.1375,42.45363],[145.1574,42.46134],[145.3495,42.53957],[145.388,42.55618],[145.5144,42.61972],[145.578,42.65322],[145.7415,42.74378],[145.7924,42.77622],[145.8283,42.79772],[146.0087,42.88069],[146.187,42.96067],[146.3521,43.03129],[146.498,43.09239],[146.584,43.12941],[146.7034,43.1714],[146.8905,43.14887],[147.0768,43.14473],[147.2868,43.15881],[147.3108,43.16045],[147.653,43.18429],[147.7491,43.19145],[148.1205,43.22993],[148.3174,43.25085],[148.487,43.26921],[148.6732,43.29156],[148.8573,43.31489],[148.9902,43.33173],[149.205,43.35884],[149.3612,43.37791],[149.5353,43.39833],[149.7349,43.42068],[149.8479,43.43309],[149.9109,43.44009],[150.2458,43.47519],[150.4251,43.48505],[150.6089,43.50286],[150.7958,43.51907],[150.9649,43.53363],[150.9827,43.5351],[151.1401,43.54854],[151.2933,43.56475],[151.4707,43.58775],[151.6545,43.61143],[151.8451,43.63693],[152.0059,43.65936],[152.2633,43.69333],[152.2992,43.69962],[152.3528,43.70688],[152.7048,43.78813],[153.0608,43.91859],[153.4245,44.05895],[153.4391,44.06474],[153.4546,44.0708],[154.1856,44.36936],[154.6294,44.5407],[154.8546,44.61937],[155.1413,44.71606],[155.3414,44.78421],[155.4125,44.80842],[155.5353,44.85066],[155.6837,44.9024],[155.7199,44.91503],[155.9128,44.98235],[155.9327,44.98941],[156.1164,45.05362],[156.1834,45.07684],[156.2334,45.09428],[156.3208,45.12481],[156.4337,45.16427],[156.457,45.1725],[156.5061,45.18975],[156.6654,45.24618],[156.8455,45.30907],[156.8644,45.31567],[157.0383,45.37309],[157.0884,45.38807],[157.28,45.44894],[157.4683,45.51118],[157.6759,45.57918],[157.8771,45.64366],[157.9007,45.65121],[158.0875,45.71021],[158.2942,45.77369],[158.3366,45.78687],[158.5016,45.83969],[158.5648,45.86002],[158.7209,45.91091],[158.9372,45.98252],[159.2393,46.07402],[159.4045,46.12353],[159.5847,46.17779],[159.7655,46.23329],[159.9189,46.28008],[160.0937,46.33848],[160.1958,46.37317],[160.5864,46.49811],[160.7647,46.54604],[160.9092,46.58761],[161.0767,46.64045],[161.2559,46.69773],[161.4332,46.75003],[161.7628,46.85096],[161.8983,46.89256],[161.94,46.905],[161.9771,46.91599],[162.0005,46.92293],[162.2457,46.99901],[162.4007,47.04605],[162.5788,47.09906],[162.6272,47.11329],[162.7848,47.16099],[163.0056,47.22799],[163.1253,47.26582],[163.297,47.31836],[163.4735,47.37322],[163.5083,47.38334],[163.5272,47.39028],[163.555,47.39833],[163.7945,47.46975],[164.3129,47.60284],[164.343,47.60976],[165.9202,47.97252],[166.0477,47.99905],[166.2371,48.04021],[166.4301,48.0832],[166.4952,48.09834],[166.6608,48.13729],[166.7734,48.16439],[166.8826,48.19061],[167.0823,48.23795],[167.1106,48.24448],[167.3055,48.28771],[167.3405,48.29516],[167.5305,48.33411],[167.6454,48.3616],[167.7524,48.38713],[167.9294,48.42788],[167.9456,48.43151],[168.1469,48.47352],[168.1823,48.48079],[168.2,48.48443],[168.3642,48.52153],[168.4064,48.5308],[168.5847,48.57356],[168.6292,48.58478],[168.8349,48.63172],[168.9063,48.64738],[169.0352,48.67427],[169.0891,48.68336],[169.3061,48.72092],[169.4959,48.75455],[169.7363,48.79896],[169.9654,48.84022],[170.1449,48.8722],[170.3721,48.91665],[170.6077,48.96857],[170.6852,48.97746],[170.7177,48.98135],[170.8369,48.99578],[171.10971,49.03004],[171.1097,49.03004],[171.21139,49.048457],[171.2114,49.04846],[171.4091,49.0834],[171.5925,49.11854],[171.7582,49.15627],[171.9212,49.1859],[172.1077,49.21798],[172.3031,49.25053],[172.3699,49.26231],[172.4765,49.28088],[172.6401,49.30965],[172.7305,49.32504],[172.814,49.3391],[173.002,49.3733],[173.1772,49.40587],[173.3738,49.44071],[173.5468,49.47007],[173.7197,49.50078],[174.098,49.56284],[174.6391,49.63337],[174.6595,49.63604],[174.66293,49.636467],[174.7024,49.64135],[174.88,49.66363],[175.0666,49.68736],[175.2676,49.71471],[175.4665,49.74091],[175.5216,49.74725],[175.5488,49.75021],[176.3961,49.85903],[177.0833,49.95667],[177.9468,50.06259],[178.1008,50.08129],[178.3313,50.10897],[178.6369,50.14661],[178.7595,50.15986],[178.8932,50.17218],[179.0175,50.18564],[179.2715,50.20588],[179.3185,50.20965],[179.5608,50.22591],[179.5837,50.22717],[179.6486,50.23101],[179.8037,50.24025],[179.8811,50.24512],[179.9202,50.24742],[-179.9418,50.25535],[-179.8605,50.25983],[-179.7847,50.26431],[-179.7064,50.26941],[-179.628,50.27459],[-179.536,50.28144],[-179.4627,50.28695],[-179.3706,50.2936],[-179.3081,50.2981],[-179.1317,50.31078],[-179.0404,50.31691],[-178.8872,50.32731],[-178.8203,50.33213],[-178.6982,50.34699],[-178.6409,50.35411],[-178.5907,50.36032],[-178.4623,50.37641],[-178.2238,50.41002],[-177.9696,50.44367],[-177.8971,50.45397],[-177.747,50.47602],[-177.6432,50.49055],[-177.47973,50.513107],[-177.4797,50.51311],[-177.2451,50.54656],[-177.2099,50.55136],[-177.1285,50.56244],[-177.1033,50.56587],[-176.9509,50.58597],[-176.7548,50.61086],[-176.583,50.63237],[-176.3938,50.65557],[-176.185,50.68311],[-176.0046,50.71004],[-175.7542,50.74727],[-175.7022,50.75434],[-175.6005,50.76795],[-175.3795,50.79661],[-175.3272,50.80311],[-175.1984,50.81813],[-175.1159,50.82829],[-175.0085,50.84196],[-174.8082,50.86822],[-174.6313,50.89147],[-174.433,50.9174],[-174.3697,50.92661],[-174.2524,50.94512],[-174.1695,50.95825],[-174.0471,50.97581],[-173.9668,50.9854],[-173.6823,51.0187],[-173.2878,51.07497],[-173.0784,51.10326],[-172.8317,51.13727],[-172.571,51.17123],[-172.4487,51.18186],[-172.4291,51.18348],[-172.2401,51.19807],[-172.014,51.21886],[-171.7281,51.24873],[-171.642,51.25651],[-171.6101,51.25933],[-170.73509,51.342687],[-170.7061,51.34584],[-170.6888,51.34761],[-169.2659,51.45259],[-168.8826,51.48547],[-168.7843,51.49367],[-168.5709,51.51011],[-168.482,51.51608],[-168.2563,51.52833],[-167.9977,51.54019],[-167.9394,51.54276],[-167.7664,51.55088],[-167.6817,51.55522],[-167.6273,51.55817],[-167.4615,51.5671],[-167.2966,51.57567],[-167.29571,51.575713],[-167.0729,51.58719],[-167.007,51.59023],[-166.932,51.59373],[-166.8605,51.59709],[-166.8016,51.59989],[-166.7262,51.60349],[-166.6567,51.60786],[-166.6234,51.60993],[-166.4984,51.61732],[-166.3232,51.62738],[-166.3058,51.62845],[-166.1676,51.6366],[-166.062,51.6427],[-165.9659,51.64727],[-165.915,51.64958],[-165.8138,51.654],[-165.7759,51.65559],[-165.7106,51.65851],[-165.6573,51.66055],[-165.6175,51.66212],[-165.567,51.66419],[-165.478,51.66787],[-165.4144,51.67084],[-165.1552,51.68187],[-165.1157,51.68378],[-164.6504,51.71594],[-164.1244,51.74372],[-163.9358,51.74955],[-163.8811,51.74973],[-163.749,51.74968],[-163.6928,51.74953],[-163.548,51.75052],[-163.2978,51.75328],[-163.1695,51.75571],[-163.0464,51.75782],[-162.7655,51.75999],[-162.4723,51.75885],[-162.2837,51.7594],[-162.1339,51.76123],[-162.0639,51.76207],[-161.8906,51.76377],[-161.73,51.766],[-161.6793,51.76686],[-161.5125,51.76962],[-161.4631,51.7706],[-161.3501,51.77345],[-161.2706,51.77521],[-161.0872,51.7776],[-160.9404,51.77818],[-160.8786,51.77862],[-160.754,51.77958],[-160.6408,51.77988],[-160.5191,51.78264],[-160.4377,51.78452],[-160.3161,51.78657],[-160.1435,51.78939],[-159.9586,51.79209],[-159.7409,51.79464],[-159.3195,51.79399],[-159.1053,51.7937],[-158.9002,51.79393],[-158.6996,51.7889],[-158.4054,51.77704],[-158.3627,51.77518],[-158.3407,51.77423],[-158.3115,51.77303],[-158.2814,51.77182],[-157.5194,51.75227],[-157.4484,51.74949],[-157.43579,51.749003],[-157.4164,51.74833],[-157.3923,51.74741],[-157.3622,51.74639],[-157.3399,51.7456],[-155.8972,51.70551],[-155.6318,51.69815],[-155.5848,51.69648],[-155.4402,51.69128],[-155.3596,51.6882],[-155.3261,51.68592],[-155.242,51.6804],[-155.1483,51.67402],[-154.9393,51.65974],[-154.8757,51.65638],[-154.6595,51.64579],[-154.6247,51.64466],[-154.4988,51.64067],[-154.4094,51.63806],[-154.3515,51.63636],[-154.2409,51.63301],[-154.1631,51.63043],[-153.9663,51.62589],[-153.8913,51.62448],[-153.6429,51.61547],[-153.5374,51.60847],[-153.4456,51.59947],[-153.405,51.59525],[-153.3111,51.58553],[-153.2297,51.57757],[-153.1793,51.57313],[-153.1288,51.5694],[-153.1288,51.5694],[-152.9951,51.55972],[-152.965,51.55759],[-152.9101,51.55361],[-152.7368,51.54103],[-152.6863,51.53759],[-152.4869,51.52262],[-152.4304,51.518],[-152.4058,51.5161],[-152.3738,51.51363],[-152.3155,51.50908],[-152.2489,51.50402],[-152.1917,51.49961],[-152.0669,51.49053],[-152.0262,51.48761],[-151.9628,51.48323],[-151.9318,51.48074],[-151.7415,51.46443],[-151.5239,51.44649],[-151.446,51.44094],[-151.4169,51.43889],[-151.2713,51.42881],[-151.2141,51.42521],[-150.9639,51.40676],[-150.7962,51.39067],[-150.5273,51.34574],[-150.4279,51.33297],[-150.2314,51.31238],[-150.1805,51.30684],[-149.99724,51.286807],[-149.9972,51.28681],[-149.8601,51.27179],[-149.7963,51.26492],[-149.6051,51.24421],[-149.4033,51.22183],[-149.1999,51.19825],[-149.0161,51.1777],[-148.967,51.17225],[-148.8122,51.15536],[-148.6255,51.13525],[-148.4802,51.1187],[-148.4146,51.11106],[-148.2594,51.09325],[-148.0838,51.07235],[-147.8882,51.04893],[-147.8388,51.04351],[-147.6855,51.02665],[-147.5018,51.0057],[-147.2998,50.98389],[-147.2408,50.97755],[-147.1011,50.96199],[-147.0445,50.95534],[-146.9127,50.94004],[-146.7281,50.91995],[-146.6682,50.91362],[-146.24,50.86755],[-146.1432,50.85731],[-145.9258,50.83388],[-145.7207,50.811],[-145.57111,50.794943],[-145.5711,50.79494],[-145.4234,50.77952],[-145.4066,50.7778],[-145.40323,50.777447],[-145.3315,50.77126],[-145.1691,50.75863],[-145.1487,50.75706],[-145.1283,50.75547],[-144.5422,50.70275],[-144.4693,50.69531],[-144.2914,50.67749],[-144.2714,50.67542],[-143.6604,50.59866],[-143.3065,50.53881],[-143.0444,50.49317],[-142.7134,50.43546],[-142.5617,50.41192],[-142.4984,50.4027],[-142.4177,50.39101],[-142.1578,50.34857],[-142.0832,50.3352],[-141.8786,50.29916],[-141.8466,50.2936],[-141.6701,50.2642],[-141.6038,50.25339],[-141.5624,50.24669],[-141.4598,50.22995],[-141.4206,50.22368],[-141.28,50.20034],[-141.213,50.18918],[-141.0244,50.15807],[-140.9812,50.15127],[-140.7773,50.11643],[-140.7608,50.11343],[-140.7136,50.10499],[-140.6698,50.09715],[-140.6355,50.09075],[-140.5802,50.08074],[-140.4837,50.06389],[-140.3905,50.04841],[-140.1406,50.00735],[-139.9591,49.9764],[-139.9107,49.96795],[-139.8597,49.95906],[-139.7589,49.94202],[-139.7103,49.93401],[-139.64577,49.92355],[-139.6458,49.92355],[-139.5763,49.91222],[-139.529,49.90448],[-139.4733,49.89542],[-139.4192,49.88641],[-139.3164,49.86879],[-139.2489,49.85735],[-139.0577,49.82569],[-138.9916,49.81301],[-138.8258,49.77639],[-138.8016,49.77139],[-138.6628,49.74246],[-138.5669,49.72129],[-138.5124,49.70937],[-138.3347,49.66989],[-138.2913,49.66027],[-138.143,49.62817],[-138.1169,49.62325],[-138.01441,49.602973],[-138.0144,49.60297],[-137.9677,49.59249],[-137.9219,49.58177],[-137.8499,49.56493],[-137.7687,49.54552],[-137.704,49.52993],[-137.6573,49.51857],[-137.498,49.48026],[-137.3803,49.45384],[-137.3233,49.44213],[-137.153,49.40815],[-137.0435,49.38566],[-136.989,49.37448],[-136.8354,49.34206],[-136.6967,49.31172],[-136.4973,49.26894],[-136.3438,49.23615],[-136.3031,49.22757],[-136.1619,49.19753],[-136.0149,49.16706],[-135.9615,49.15591],[-135.644,49.08464],[-135.387,49.02837],[-135.3044,49.01025],[-135.1757,48.9811],[-135.1258,48.9695],[-135.0606,48.95462],[-134.9968,48.9403],[-134.8179,48.90076],[-134.7287,48.88161],[-134.7117,48.87793],[-134.61996,48.857767],[-134.62,48.85777],[-134.1871,48.76179],[-133.9406,48.70601],[-133.6743,48.65146],[-133.6572,48.64841],[-133.6355,48.64451],[-133.6154,48.64088],[-133.1869,48.56292],[-133.1379,48.55395],[-132.8475,48.50641],[-132.8295,48.50298],[-132.3915,48.4272],[-132.2106,48.42188],[-131.3692,48.42479],[-131.3525,48.42495],[-131.1389,48.43185],[-131.0905,48.43384],[-130.9422,48.43821],[-130.8567,48.43865],[-130.7932,48.43897],[-130.7303,48.43974],[-130.5274,48.44157],[-130.3629,48.44099],[-130.3028,48.44011],[-130.2563,48.43895],[-130.2289,48.43822],[-130.1095,48.43579],[-130.0101,48.43579],[-129.9686,48.43632],[-129.9285,48.43695],[-129.8857,48.43787],[-129.717,48.44016],[-129.6928,48.44027],[-129.5123,48.44146],[-129.4709,48.44156],[-129.4462,48.44149],[-129.4061,48.44146],[-129.335,48.44122],[-129.1895,48.44043],[-129.1447,48.44076],[-129.0964,48.44096],[-129.0236,48.44116],[-128.9841,48.44145],[-128.9515,48.44153],[-128.9124,48.44177],[-128.8866,48.44189],[-128.7149,48.44249],[-128.6359,48.44294],[-128.61,48.44318],[-128.5692,48.44363],[-128.4879,48.44476],[-128.4361,48.44547],[-128.4043,48.44587],[-128.3846,48.44627],[-128.3629,48.4466],[-128.1881,48.44726],[-128.1632,48.44742],[-128.1154,48.44753],[-127.9775,48.44742],[-127.9361,48.44691],[-127.83,48.44526],[-127.8162,48.44515],[-127.6738,48.44595],[-127.639,48.44646],[-127.5975,48.44712],[-127.5322,48.44814],[-127.4595,48.44923],[-127.362,48.45021],[-127.1929,48.44984],[-127.1719,48.4495],[-127.0183,48.44884],[-126.9126,48.44847],[-126.7672,48.44704],[-126.7104,48.44657],[-126.6528,48.44643],[-126.6152,48.4467],[-126.6033,48.44671],[-126.5845,48.44687],[-126.566,48.44702],[-126.5539,48.44683],[-126.5428,48.44656],[-126.5356,48.44639],[-126.5267,48.44622],[-126.5163,48.44609],[-126.5046,48.44596],[-126.495,48.44592],[-126.4794,48.44592],[-126.4604,48.44592],[-126.4473,48.44594],[-126.4324,48.44585],[-126.4168,48.44613],[-126.3991,48.44661],[-126.3882,48.44689],[-126.3734,48.44717],[-126.3575,48.44751],[-126.3423,48.44783],[-126.3274,48.44827],[-126.306,48.4488],[-126.2909,48.44911],[-126.2765,48.44943],[-126.2613,48.44966],[-126.2474,48.44987],[-126.2341,48.45021],[-126.2191,48.45049],[-126.205,48.45066],[-126.1891,48.45107],[-126.1669,48.45149],[-126.153,48.45162],[-126.1377,48.45154],[-126.1201,48.45167],[-126.1044,48.45171],[-126.0893,48.45179],[-126.0748,48.45199],[-126.0591,48.45207],[-126.0448,48.45219],[-126.0293,48.45225],[-126.0144,48.45243],[-125.9996,48.45281],[-125.9847,48.45296],[-125.9706,48.45321],[-125.9558,48.45358],[-125.9411,48.45376],[-125.9276,48.45414],[-125.9135,48.45403],[-125.8977,48.45412],[-125.8842,48.45411],[-125.8631,48.45432],[-125.8492,48.45441],[-125.8357,48.45465],[-125.8168,48.4549],[-125.7981,48.45505],[-125.7848,48.45516],[-125.7703,48.45544],[-125.7558,48.45555],[-125.7413,48.45576],[-125.7277,48.45599],[-125.7147,48.45606],[-125.701,48.4561],[-125.6807,48.45611],[-125.6669,48.45607],[-125.6536,48.45601],[-125.6328,48.45603],[-125.6192,48.45594],[-125.605,48.45586],[-125.5895,48.4558],[-125.5752,48.45566],[-125.5609,48.45555],[-125.5396,48.45545],[-125.5246,48.45541],[-125.5096,48.45531],[-125.4914,48.45524],[-125.4751,48.45499],[-125.4582,48.45509],[-125.443,48.45504],[-125.4297,48.45506],[-125.4127,48.45501],[-125.3969,48.45507],[-125.3805,48.45535],[-125.3653,48.45559],[-125.3475,48.45583],[-125.3234,48.45637],[-125.3068,48.45665],[-125.289,48.45709],[-125.2769,48.4573],[-125.2461,48.4578],[-125.2305,48.45818],[-125.1985,48.45908],[-125.1985,48.45908],[-125.1797,48.45958],[-125.1663,48.46053],[-125.1539,48.46128],[-125.1341,48.46297],[-125.1171,48.46461],[-125.1047,48.46601],[-125.0945,48.46706],[-125.0867,48.46701],[-125.0867,48.46701],[-125.0765,48.46637],[-125.0627,48.46552],[-125.0469,48.46513],[-125.0354,48.46572],[-125.0177,48.46691],[-125.002,48.46832],[-124.9872,48.46938],[-124.9734,48.47041],[-124.9579,48.47124],[-124.9411,48.47203],[-124.9202,48.47283],[-124.9069,48.47304],[-124.8916,48.47365],[-124.8808,48.47404],[-124.8618,48.4745],[-124.8472,48.47509],[-124.8312,48.47747],[-124.8154,48.47967],[-124.7972,48.47915],[-124.7852,48.47826],[-124.7725,48.47719],[-124.7615,48.47631],[-124.7504,48.47567],[-124.7383,48.47467],[-124.7212,48.4712],[-124.7051,48.46729],[-124.6893,48.46136],[-124.674,48.45613],[-124.6584,48.45084],[-124.643,48.44542],[-124.6273,48.44034],[-124.6116,48.43521],[-124.6009,48.43155],[-124.5904,48.42835],[-124.5796,48.42499],[-124.5686,48.42101],[-124.5583,48.41737],[-124.5474,48.41337],[-124.5372,48.4098],[-124.5269,48.40622],[-124.5164,48.40295],[-124.5058,48.3997],[-124.4949,48.39626],[-124.4816,48.39241],[-124.4652,48.38781],[-124.4652,48.38781],[-124.4537,48.38455],[-124.4422,48.38139],[-124.4298,48.37784],[-124.4175,48.3741],[-124.4055,48.3703],[-124.3934,48.36649],[-124.381,48.36263],[-124.37,48.35905],[-124.3595,48.35561],[-124.3453,48.35124],[-124.3337,48.34777],[-124.3236,48.34453],[-124.3136,48.34142],[-124.3018,48.33794],[-124.2884,48.33395],[-124.2774,48.33061],[-124.2674,48.32733],[-124.2557,48.32361],[-124.2372,48.31784],[-124.2372,48.31784],[-124.2254,48.31405],[-124.2094,48.30894],[-124.1933,48.30378],[-124.1805,48.2998],[-124.1687,48.29588],[-124.1518,48.29035],[-124.1407,48.28665],[-124.1289,48.28281],[-124.1107,48.27681],[-124.0986,48.27265],[-124.0862,48.269],[-124.0687,48.26373],[-124.0564,48.26017],[-124.0432,48.25617],[-124.0309,48.25266],[-124.0184,48.2491],[-123.9991,48.24376],[-123.9865,48.24045],[-123.9686,48.2355],[-123.9565,48.23226],[-123.9431,48.22878],[-123.9308,48.22543],[-123.9177,48.22271],[-123.9042,48.22191],[-123.8906,48.22135],[-123.8714,48.22073],[-123.8579,48.22028],[-123.8431,48.21984],[-123.8288,48.2193],[-123.8153,48.21891],[-123.8018,48.21887],[-123.7876,48.21882],[-123.7731,48.21886],[-123.7532,48.21883],[-123.7373,48.21886],[-123.7149,48.21892],[-123.7008,48.21893],[-123.6854,48.21924],[-123.6641,48.2196],[-123.6494,48.21991],[-123.634,48.22004],[-123.6212,48.22024],[-123.6095,48.22039],[-123.596,48.2205],[-123.5788,48.22055],[-123.5637,48.22058],[-123.546,48.22066],[-123.5349,48.2189],[-123.5246,48.21539],[-123.5143,48.2114],[-123.5008,48.2059],[-123.4916,48.20229],[-123.4836,48.19921],[-123.4753,48.19613],[-123.4677,48.19335],[-123.4609,48.19048],[-123.4539,48.18704],[-123.4465,48.18342],[-123.439,48.17978],[-123.4313,48.17615],[-123.4199,48.17079],[-123.4119,48.16738],[-123.4024,48.16626],[-123.3917,48.1659],[-123.3786,48.16558],[-123.3671,48.16529],[-123.3553,48.16628],[-123.3441,48.16776],[-123.3305,48.16953],[-123.3177,48.17117],[-123.3035,48.17314],[-123.2889,48.17521],[-123.267,48.17842],[-123.2515,48.18062],[-123.2362,48.18278],[-123.2196,48.18519],[-123.2034,48.1875],[-123.1769,48.19145],[-123.1596,48.19464],[-123.1426,48.19772],[-123.1254,48.20063],[-123.107,48.20112],[-123.0823,48.19975],[-123.0581,48.19809],[-123.0398,48.19675],[-123.0215,48.19528],[-123.003,48.19376],[-122.9849,48.19237],[-122.9681,48.19107],[-122.944,48.18917],[-122.9183,48.18738],[-122.8999,48.18616],[-122.8818,48.18494],[-122.8641,48.18368],[-122.8465,48.18064],[-122.8316,48.17768],[-122.8154,48.17459],[-122.7983,48.1713],[-122.7721,48.16478],[-122.7553,48.15866],[-122.7386,48.14957],[-122.7238,48.14123],[-122.709,48.13265],[-122.6954,48.12442],[-122.6815,48.116],[-122.6717,48.09972],[-122.6667,48.08796],[-122.6623,48.07747],[-122.6552,48.05975],[-122.6507,48.04859],[-122.6459,48.03712],[-122.6377,48.02106],[-122.6286,48.01031],[-122.6203,48.00029],[-122.6114,47.9897],[-122.5984,47.9741],[-122.5896,47.96378]]}}
{"type":"Feature","geometry":{"type":"LineString","coordinates":[[114.771,22.00793],[114.7837,21.99719],[114.7988,21.98563],[114.8045,21.98048],[114.8081,21.97735],[114.8187,21.9676],[114.8333,21.9546],[114.845,21.94481],[114.8581,21.93409],[114.865,21.9283],[114.8695,21.92478],[114.8799,21.9161],[114.8831,21.91337],[114.8947,21.9035],[114.9077,21.8896],[114.9203,21.8757],[114.9327,21.8619],[114.9369,21.8574],[114.945,21.8479],[114.9573,21.8327],[114.9686,21.817],[114.979,21.8018],[114.9911,21.787],[115.0038,21.773],[115.014,21.7616],[115.0385,21.7328],[115.0523,21.716],[115.0634,21.7028],[115.1472,21.6012],[115.1589,21.5774],[115.4804,20.88923],[115.4858,20.87161],[115.4901,20.85568],[115.4941,20.84093],[115.498,20.82657],[115.50011,20.818742],[108.91847,8.4737483],[108.57511,7.98437],[108.5751,7.98437],[107.79059,6.8035417],[107.7906,6.803542],[106.83653,5.45607],[105.28939,3.220345],[105.2894,3.220345],[104.36643,1.34553],[104.3664,1.34553],[104.274,1.299345],[104.2571,1.294763],[104.2474,1.292143],[104.2234,1.286338],[104.2121,1.284777],[104.1935,1.282378],[104.1828,1.280963],[104.167,1.278828],[104.158,1.277613],[104.1453,1.275838],[104.1338,1.274287],[104.1219,1.272543],[104.1111,1.270982],[104.1009,1.269458],[104.0901,1.26816],[104.0806,1.266945],[104.0704,1.265847],[104.07232,1.2660233],[104.0717,1.265963],[104.0526,1.264175],[104.0437,1.263742],[104.0343,1.26315],[104.0256,1.262482],[104.0162,1.261643],[104.0033,1.258778],[103.9948,1.25579],[103.9814,1.251688],[103.97844,1.2508117],[103.9717,1.248835],[103.9626,1.246148],[103.9522,1.243087],[103.9429,1.240355],[103.9343,1.237928],[103.9274,1.235958],[103.922,1.234575],[103.9171,1.233355],[103.9121,1.232125],[103.9084,1.231252],[103.9044,1.230833],[103.90227,1.230615],[103.8995,1.230333],[103.8935,1.230378],[103.8873,1.23292],[103.8806,1.236347],[103.8725,1.240767],[103.8678,1.24335],[103.8643,1.246912],[103.8606,1.250252],[103.8574,1.252673],[103.8541,1.255095],[103.8497,1.257023],[103.84837,1.2577217],[103.847,1.25853],[103.8448,1.260022],[103.8433,1.261163],[103.8424,1.261972],[103.8419,1.262575],[103.8416,1.263343],[103.8414,1.264115],[103.8409,1.264998],[103.8408,1.265275],[103.84115,1.2656433],[103.8412,1.265623],[103.84115,1.2656283],[103.8412,1.265628],[103.8412,1.265637],[103.84111,1.2656167],[103.8411,1.265622],[103.84117,1.2656067],[103.8412,1.265607],[103.8412,1.265618],[103.84117,1.26564],[103.8412,1.265633],[103.84117,1.2656233],[103.8412,1.26563],[103.8412,1.265637],[103.84112,1.2656133],[103.8412,1.265632],[103.84117,1.26564],[103.8411,1.265643],[103.84117,1.2656383],[103.8412,1.265638],[103.8412,1.26562],[103.84117,1.2656467],[103.8411,1.265645],[103.84117,1.2656517],[103.8412,1.26565],[103.8412,1.265657],[103.84117,1.2656367],[103.8412,1.265675],[103.84114,1.2656517],[103.8412,1.265663],[103.8412,1.265667],[103.84117,1.2656467],[103.8412,1.265645],[103.84115,1.2656467],[103.8412,1.265637],[103.84115,1.2656283],[103.8411,1.265625],[103.8411,1.26563],[103.84115,1.265635],[103.8412,1.265618],[103.84118,1.265605],[103.8412,1.265608],[103.84117,1.2656117],[103.8412,1.265612],[103.8412,1.265607],[103.84115,1.2656117],[103.8411,1.265588],[103.84112,1.2656167],[103.8411,1.265593],[103.84114,1.265635],[103.8411,1.265635],[103.8411,1.265602],[103.84115,1.2656083],[103.8411,1.265605],[103.84113,1.2656083],[103.8412,1.265615],[103.8412,1.265603],[103.84115,1.2656017],[103.8412,1.265622],[103.84115,1.2656383],[103.8411,1.265638],[103.84111,1.26564],[103.8411,1.265618],[103.8411,1.265628],[103.84112,1.26562],[103.8411,1.26561],[103.84117,1.2656133],[103.8411,1.265632],[103.84114,1.2656217],[103.8411,1.265622],[103.8411,1.265612],[103.84117,1.2656017],[103.8411,1.265613],[103.84114,1.2656233],[103.8411,1.265615],[103.8411,1.26562],[103.84114,1.26562],[103.8411,1.26561],[103.84115,1.2656267],[103.8411,1.265608],[103.84112,1.2656333],[103.8412,1.265638],[103.8412,1.265618],[103.84117,1.2656133],[103.8412,1.265635],[103.84117,1.265615],[103.8412,1.265657],[103.8412,1.265653],[103.84117,1.2656533],[103.8412,1.265633],[103.84117,1.2656267],[103.8412,1.265652],[103.84117,1.2656467],[103.8412,1.265632],[103.84117,1.2656383],[103.8412,1.265638],[103.8411,1.26564],[103.84115,1.26561],[103.8412,1.265642],[103.84117,1.2656483],[103.8412,1.265638],[103.84117,1.26564],[103.8412,1.26566],[103.8412,1.265643],[103.84119,1.2656633],[103.8411,1.265542],[103.84059,1.26468],[103.8406,1.264502],[103.841,1.263548],[103.8415,1.262793],[103.8424,1.261922],[103.8437,1.260832],[103.845,1.26017],[103.8468,1.259572],[103.849,1.259475],[103.8488,1.259598],[103.8485,1.258793],[103.85007,1.2571367],[103.8501,1.257137],[103.852,1.255652],[103.8551,1.25326],[103.8585,1.251533],[103.8614,1.249178],[103.8646,1.246075],[103.8703,1.242225],[103.8751,1.240422],[103.8817,1.237883],[103.8871,1.23661],[103.893,1.236642],[103.9001,1.238357],[103.90148,1.2399683],[103.9022,1.241553],[103.9022,1.244587],[103.9011,1.246563],[103.8997,1.248137],[103.8978,1.249405],[103.8956,1.249602],[103.8935,1.24915],[103.8908,1.247708],[103.8907,1.24747],[103.8929,1.248407],[103.8927,1.248377],[103.8915,1.248522],[103.89107,1.2486833],[103.891,1.24872],[103.8914,1.249085],[103.8919,1.24939],[103.8923,1.249725],[103.89137,1.2505933],[103.8914,1.250673],[103.8916,1.250735],[103.8916,1.2507683],[103.8914,1.250918],[103.89144,1.2509983],[103.8914,1.251013],[103.89133,1.2510933],[103.8913,1.251093],[103.8912,1.251047],[103.89118,1.2510083],[103.8912,1.250928],[103.89115,1.2509167],[103.8911,1.250958],[103.8912,1.250828],[103.8912,1.2507983],[103.8913,1.250727],[103.89116,1.2507183],[103.8912,1.250642],[103.89129,1.250475],[103.8914,1.250312],[103.8918,1.250055],[103.89178,1.2500033],[103.8917,1.249755],[103.89173,1.2496917],[103.8916,1.249232],[103.8915,1.24869],[103.8914,1.248313],[103.89017,1.2467367],[103.8898,1.246552],[103.8883,1.246807],[103.88782,1.2471467],[103.8876,1.24717],[103.88748,1.247285],[103.8874,1.247305],[103.8874,1.247425],[103.88735,1.247425],[103.8873,1.247407],[103.88731,1.2473767],[103.8874,1.247315],[103.88743,1.24737],[103.8874,1.247447],[103.8873,1.247528],[103.88727,1.24753],[103.8873,1.247722],[103.88722,1.2477183],[103.8872,1.247668],[103.88734,1.2473567],[103.8873,1.247357],[103.8876,1.247168],[103.88757,1.2472167],[103.8876,1.247198],[103.88747,1.2473333],[103.8874,1.247368],[103.88739,1.2473467],[103.8874,1.247347],[103.8874,1.247342],[103.88742,1.2473567],[103.8875,1.24736],[103.88745,1.2474017],[103.8874,1.247437],[103.8872,1.247643],[103.88717,1.2476983],[103.8879,1.248292],[103.8883,1.247808],[103.88859,1.24743],[103.8889,1.24709],[103.8904,1.24676],[103.89095,1.2471817],[103.8915,1.247377],[103.89167,1.2478217],[103.8917,1.247933],[103.8919,1.248165],[103.89193,1.2481883],[103.8915,1.247465],[103.89101,1.2470383],[103.8908,1.246873],[103.89062,1.2468667],[103.8906,1.24685],[103.8906,1.246872],[103.89035,1.2468567],[103.8901,1.24673],[103.88963,1.2466633],[103.8895,1.24678],[103.8894,1.246435],[103.8889,1.247202],[103.8888,1.247492],[103.8892,1.248183],[103.8901,1.248788],[103.8917,1.248743],[103.8941,1.247597],[103.8975,1.245122],[103.89725,1.2452883],[103.9004,1.242945],[103.9031,1.240897],[103.9053,1.239102],[103.907,1.237203],[103.908,1.234672],[103.9071,1.228235],[103.9033,1.223417],[103.8969,1.218213],[103.8887,1.213448],[103.8808,1.209718],[103.8735,1.206357],[103.8701,1.204733],[103.86104,1.2004267],[103.8573,1.198627],[103.8473,1.194412],[103.8372,1.190405],[103.8234,1.185097],[103.8141,1.181482],[103.8034,1.177387],[103.7894,1.171007],[103.7801,1.166118],[103.7701,1.160443],[103.7661,1.157957],[103.7509,1.148593],[103.7414,1.142633],[103.73511,1.1406067],[103.727,1.141743],[103.7179,1.146398],[103.7085,1.151998],[103.6985,1.158202],[103.6903,1.163175],[103.6817,1.168577],[103.6683,1.17552],[103.6573,1.17881],[103.6462,1.181887],[103.6276,1.18633],[103.6158,1.188323],[103.5964,1.192782],[103.5858,1.195328],[103.577,1.197522],[103.57186,1.1988033],[103.5658,1.200413],[103.43099,1.23693],[103.431,1.23693],[102.8852,1.642645],[102.8674,1.651322],[102.86736,1.6513217],[102.7752,1.694825],[102.7623,1.700867],[102.76231,1.7008667],[102.748,1.707577],[102.7326,1.71479],[102.7172,1.722058],[102.6973,1.731505],[102.6828,1.7384],[102.6729,1.743183],[102.6618,1.748448],[102.66141,1.7486467],[102.6509,1.753645],[102.6305,1.763433],[102.6095,1.77347],[102.595,1.780348],[102.5915,1.782012],[102.5681,1.793223],[102.557,1.798085],[102.5461,1.802407],[102.5328,1.807708],[102.5178,1.813853],[102.4923,1.825083],[102.4923,1.8250833],[102.4792,1.830978],[102.4615,1.83911],[102.4564,1.84142],[102.4322,1.85261],[102.4164,1.859837],[102.4007,1.867395],[102.3834,1.876343],[102.3659,1.885357],[102.36083,1.88793],[102.3523,1.892292],[102.3408,1.900065],[102.3305,1.908097],[102.319,1.917123],[102.3052,1.927833],[102.2937,1.936888],[102.2839,1.94463],[102.268,1.957148],[102.2529,1.969082],[102.2375,1.981348],[102.2228,1.993067],[102.22463,1.9915867],[102.211,2.002843],[102.2013,2.011327],[102.1827,2.028082],[102.1748,2.035417],[102.1652,2.044262],[102.1581,2.050918],[102.151,2.057525],[102.1384,2.069092],[102.1305,2.076427],[102.1162,2.089617],[102.1023,2.102377],[102.0873,2.116358],[102.0764,2.126322],[102.0175,2.180717],[102.0025,2.193132],[101.9875,2.205338],[101.9813,2.21047],[101.9725,2.217688],[101.9579,2.229678],[101.9493,2.236647],[101.9369,2.246773],[101.927,2.254858],[101.9129,2.26663],[101.9045,2.274572],[101.8981,2.281213],[101.8847,2.296052],[101.8727,2.309197],[101.8585,2.323183],[101.8445,2.336757],[101.8321,2.348788],[101.8143,2.362815],[101.7978,2.372452],[101.7819,2.382422],[101.7664,2.391927],[101.4945,2.556012],[101.4719,2.57455],[101.4606,2.58379],[101.4528,2.590163],[101.4137,2.618205],[101.386,2.632567],[101.3495,2.650432],[101.3316,2.659112],[101.3198,2.664833],[101.3035,2.672768],[101.288,2.680435],[101.2757,2.68636],[101.261,2.693517],[101.2483,2.699785],[101.2352,2.706228],[101.2221,2.71275],[101.2058,2.7203],[101.20687,2.71983],[101.1944,2.725392],[101.1816,2.731088],[101.1696,2.736407],[101.1587,2.741303],[101.1466,2.747242],[101.1321,2.75445],[101.1197,2.760785],[101.1049,2.768262],[101.0924,2.774572],[101.0786,2.781545],[101.0694,2.786148],[101.0551,2.793333],[101.0408,2.800568],[101.0101,2.817825],[100.9977,2.82703],[100.9805,2.840587],[100.9671,2.85136],[100.891,2.9178083],[100.63523,3.1703967],[100.35479,3.3937283],[99.534267,4.0235267],[99.1448,4.3324183],[99.1448,4.332418],[98.936147,4.4968233],[98.93615,4.496823],[98.346987,4.9313233],[97.258787,5.5892183],[97.108673,5.6487767],[96.09315,6.076383],[96.07697,6.082852],[96.06087,6.089363],[96.04487,6.0958],[96.03085,6.101398],[96.01166,6.10918],[95.99555,6.115674],[95.97314,6.124728],[95.95112,6.133785],[95.93781,6.139188],[95.9254,6.14427],[95.9126,6.149438],[95.9003,6.154427],[95.88682,6.159885],[95.87619,6.164213],[95.8468,6.17555],[95.83375,6.180607],[95.821793,6.1852183],[95.82134,6.185397],[95.80652,6.191133],[95.79353,6.196133],[95.7804,6.20119],[95.7667,6.206523],[95.75478,6.211137],[95.74059,6.216619],[95.7275,6.221736],[95.70889,6.22896],[95.69576,6.23364],[95.6828,6.238327],[95.66483,6.244815],[95.65125,6.249723],[95.63219,6.256633],[95.61926,6.261412],[95.60683,6.265918],[95.59449,6.270387],[95.58209,6.274912],[95.57072,6.279139],[95.5578,6.283952],[95.54546,6.288592],[95.53299,6.293223],[95.52126,6.29767],[95.50782,6.302753],[95.496,6.307278],[95.48408,6.311885],[95.45986,6.321245],[95.451267,6.32374],[95.44827,6.324212],[95.43478,6.325095],[95.42075,6.326068],[95.40271,6.327308],[95.38799,6.328262],[95.3717,6.329317],[95.35865,6.330125],[95.34292,6.330387],[95.32052,6.329854],[95.23104,6.327435],[95.22646,6.327305],[95.18214,6.326305],[95.14832,6.325572],[95.074107,6.3238317],[95.0741,6.323832],[95.025893,6.3219933],[95.02589,6.321995],[94.846147,6.304265],[94.84615,6.304265],[94.8027,6.301198],[94.55928,6.282545],[94.55928,6.282545],[94.097213,6.2615333],[93.757153,6.2500483],[93.606107,6.2492183],[93.46286,6.246062],[93.46286,6.2460617],[93.26266,6.2352083],[93.26266,6.235209],[92.921027,6.2157133],[91.589913,6.1445617],[91.58991,6.144562],[91.499933,6.1395233],[91.49993,6.139524],[91.24232,6.1221367],[91.24232,6.122137],[91.18924,6.117878],[91.007587,6.1279233],[91.00758,6.127923],[90.99396,6.128722],[90.757547,6.12557],[90.75755,6.12557],[90.248827,6.0922417],[90.24883,6.092242],[89.816733,6.0604867],[89.81673,6.060487],[89.430547,6.0425967],[89.274813,6.0347733],[89.27481,6.034773],[89.075673,6.024445],[89.07568,6.024445],[88.126947,5.97909],[88.00072,5.9735817],[87.61958,5.9643233],[87.61958,5.964324],[87.43264,5.95268],[87.246113,5.9387783],[87.24612,5.938778],[87.11274,5.9327467],[87.11274,5.932747],[87.003953,5.9258383],[87.00395,5.925838],[86.865933,5.897105],[86.86594,5.897105],[86.83285,5.893631],[86.725887,5.8861367],[86.72588,5.886137],[86.66444,5.88159],[86.43826,5.8783283],[86.43826,5.878328],[86.28528,5.879165],[86.28528,5.879165],[86.136247,5.873765],[86.13625,5.873765],[85.637293,5.850955],[85.63729,5.850956],[85.486413,5.8437783],[85.48641,5.843778],[85.35535,5.838302],[85.350367,5.8380717],[85.184693,5.83197],[85.18469,5.83197],[84.957773,5.8347833],[84.95777,5.834784],[84.88061,5.82729],[84.649473,5.8112383],[83.935807,5.77807],[83.62362,5.76731],[83.62362,5.76731],[83.58788,5.764308],[83.4836,5.7550067],[83.4836,5.755007],[83.267127,5.7546283],[83.26713,5.754628],[83.23684,5.7484167],[83.23684,5.748417],[83.15925,5.738596],[83.0455,5.7300617],[83.0455,5.730062],[82.91454,5.7338667],[82.91454,5.733867],[82.86724,5.734583],[82.720213,5.716025],[82.72021,5.716025],[82.67447,5.712825],[82.5865,5.706565],[82.5865,5.706565],[82.451167,5.6983767],[82.45116,5.698377],[82.28966,5.6913283],[82.28966,5.691329],[82.15093,5.691243],[81.776013,5.6754717],[81.76528,5.674682],[81.60966,5.6701417],[81.60966,5.670142],[81.457333,5.6727067],[81.45734,5.672707],[81.30663,5.673553],[81.2658,5.6713533],[81.25501,5.67085],[80.99879,5.648947],[80.939793,5.6429583],[80.77438,5.626212],[80.73746,5.624205],[80.72431,5.623418],[80.71004,5.622682],[80.69503,5.621848],[80.685447,5.620665],[80.68139,5.619722],[80.66714,5.615952],[80.65363,5.612775],[80.64046,5.610665],[80.62833,5.609082],[80.60847,5.609095],[80.59564,5.609507],[80.58224,5.609915],[80.56882,5.610317],[80.55528,5.610692],[80.5422,5.611125],[80.52834,5.611542],[80.50784,5.61194],[80.49422,5.612287],[80.4804,5.612637],[80.46156,5.61372],[80.4422,5.618478],[80.42949,5.62296],[80.417,5.627738],[80.40453,5.632417],[80.39184,5.637297],[80.38015,5.64184],[80.36213,5.648793],[80.351,5.653077],[80.33862,5.657817],[80.3104,5.668773],[80.29776,5.673707],[80.28515,5.678287],[80.26806,5.684289],[80.24511,5.692234],[80.23291,5.696424],[80.21574,5.702328],[80.20292,5.706757],[80.1912,5.710787],[80.17962,5.714879],[80.16368,5.720489],[80.14252,5.728287],[80.12787,5.733918],[80.11567,5.738603],[80.09676,5.745837],[80.08344,5.750886],[80.06975,5.756163],[80.05283,5.763442],[80.03526,5.76927],[80.02132,5.773658],[80.0042,5.779863],[79.9904,5.784915],[79.9809,5.788447],[79.93868,5.8054717],[79.68756,5.91098],[79.68756,5.91098],[79.567393,5.9648033],[79.50504,5.992575],[79.49616,5.9964833],[79.334287,6.0673967],[79.33429,6.067397],[79.180907,6.1354033],[79.18091,6.135403],[79.17111,6.139713],[79.12209,6.161314],[79.052307,6.1922933],[79.05231,6.192293],[79.02265,6.205505],[78.98424,6.22275],[78.92025,6.251663],[78.770327,6.3089833],[78.77032,6.308983],[78.656933,6.3565333],[78.65694,6.356534],[78.55365,6.398736],[78.54872,6.39707],[78.18886,6.55208],[78.18886,6.55208],[77.91951,6.685862],[77.91744,6.6867883],[77.90399,6.69293],[77.79759,6.740558],[77.74393,6.764188],[77.72552,6.772296],[77.72552,6.772295],[77.66782,6.797868],[77.650287,6.8053217],[77.36458,6.9432417],[77.182133,7.0096383],[76.46342,7.3236917],[76.416733,7.3441567],[76.41673,7.344157],[76.24757,7.418155],[76.13795,7.465567],[76.109893,7.4787883],[76.09196,7.4867383],[76.04722,7.50641],[76.02386,7.516485],[75.90548,7.5673383],[75.90548,7.567338],[75.80972,7.610165],[75.696147,7.66254],[75.69614,7.66254],[75.68399,7.667958],[75.58308,7.712587],[75.55564,7.7245],[75.51084,7.74383],[75.386453,7.79765],[75.38645,7.79765],[75.26692,7.8481717],[75.26692,7.848172],[75.152,7.896343],[75.034747,7.949245],[74.99317,7.968278],[74.844953,8.03357],[74.84496,8.033571],[74.415227,8.2236383],[74.247047,8.2973483],[74.24705,8.297348],[74.05284,8.3822],[74.051373,8.38284],[74.01772,8.3975],[74.00745,8.402081],[73.87354,8.459105],[73.87354,8.4591033],[73.72508,8.522698],[73.695773,8.5357067],[73.5633,8.594122],[73.5192,8.613205],[73.45861,8.639348],[73.35058,8.680715],[72.6139,8.9236333],[72.60216,8.927303],[72.57181,8.936588],[72.44235,8.976565],[72.431393,8.9797583],[72.30094,9.016978],[72.298507,9.0174783],[72.20954,9.04128],[72.20954,9.04128],[72.16385,9.054691],[72.087387,9.0779517],[72.08739,9.077951],[71.97993,9.111085],[71.86934,9.1447717],[71.86934,9.144772],[71.81268,9.160705],[71.78642,9.1678817],[71.76128,9.174896],[71.67659,9.198802],[71.65894,9.2037],[71.54613,9.235023],[71.52982,9.2394733],[71.52982,9.239473],[71.277513,9.3071233],[71.27751,9.307123],[71.13664,9.34671],[71.13664,9.34671],[70.72304,9.4679733],[70.653087,9.489505],[70.6479,9.491029],[70.60109,9.50541],[70.467827,9.5414717],[70.46783,9.541471],[70.363467,9.5716267],[70.203067,9.61652],[70.20306,9.61652],[70.16746,9.626853],[69.922473,9.6977183],[69.92247,9.697719],[69.742013,9.7478267],[69.61662,9.7830867],[69.06814,9.9402267],[68.881187,9.993445],[68.88119,9.993445],[68.711327,10.041748],[68.71133,10.04175],[68.572493,10.081323],[68.50183,10.10136],[68.407567,10.128202],[68.40757,10.1282],[68.34602,10.14575],[68.289,10.16201],[68.289,10.16201],[68.18322,10.19275],[68.097613,10.217342],[68.09761,10.21734],[67.97122,10.253498],[67.97122,10.2535],[67.9547,10.25819],[67.818933,10.296328],[67.81412,10.29764],[67.6623,10.339172],[67.6623,10.33917],[67.53836,10.37291],[67.40686,10.4103],[67.39793,10.41293],[67.04846,10.515913],[67.04846,10.51591],[66.808453,10.58234],[66.78838,10.58828],[66.64164,10.630845],[66.64164,10.63085],[66.508567,10.66844],[66.48931,10.67398],[66.39595,10.70018],[66.35836,10.710757],[66.28459,10.73149],[66.188313,10.75866],[66.18832,10.75866],[66.07763,10.78983],[65.930513,10.831248],[65.93051,10.83125],[65.846507,10.855552],[65.739647,10.886515],[65.163207,11.049838],[64.9196,11.12023],[64.83224,11.14668],[64.767607,11.1662],[64.76761,11.1662],[64.63558,11.20603],[64.610847,11.213343],[64.56211,11.22816],[64.4705,11.25548],[64.463453,11.257447],[64.40007,11.2753],[64.28464,11.307957],[64.28464,11.30796],[64.17241,11.34189],[64.106573,11.362433],[64.10658,11.36243],[64.04421,11.38191],[63.98527,11.40017],[63.950747,11.410937],[63.88442,11.43137],[63.776287,11.46462],[63.77629,11.46462],[63.643913,11.506127],[63.64391,11.50613],[63.50609,11.54962],[63.50308,11.550558],[62.951533,11.714268],[62.90042,11.73019],[62.788713,11.763745],[62.78871,11.76375],[62.650573,11.804277],[62.65057,11.80428],[62.518947,11.844442],[62.51895,11.84444],[62.45564,11.8637],[62.3988,11.88102],[62.389733,11.883713],[62.23475,11.92879],[62.212473,11.934993],[62.09421,11.97105],[61.941207,12.018545],[61.94121,12.01855],[61.829573,12.051533],[61.263527,12.22177],[61.248833,12.226078],[60.9884,12.29782],[60.875347,12.335437],[60.87535,12.33544],[60.7695,12.37086],[60.75648,12.375255],[60.75648,12.37525],[60.66411,12.40367],[60.555607,12.435597],[60.55406,12.43605],[60.44461,12.46712],[60.419333,12.474282],[60.32271,12.50439],[60.250147,12.525875],[60.20863,12.5379],[60.102287,12.569087],[60.10229,12.56909],[59.935893,12.619207],[59.93589,12.61921],[59.82299,12.65372],[59.6916,12.693537],[59.6916,12.69354],[59.563093,12.7343],[59.11468,12.858902],[59.11468,12.8589],[58.9454,12.909825],[58.911527,12.922575],[58.69832,12.990172],[58.69832,12.99017],[58.598693,13.020172],[58.53693,13.03924],[58.446913,13.065898],[58.43853,13.06834],[58.39553,13.08153],[58.149627,13.155928],[58.14963,13.15593],[58.106473,13.168833],[57.905053,13.229033],[57.306513,13.408773],[57.01914,13.494687],[56.829093,13.551515],[56.82909,13.55151],[56.73673,13.57915],[56.65338,13.604042],[56.65338,13.60404],[56.483267,13.654905],[56.48326,13.65491],[56.43343,13.66986],[56.331733,13.700123],[56.29513,13.71113],[56.18492,13.745472],[56.15872,13.75393],[56.14404,13.75858],[56.01964,13.79548],[56.01964,13.79548],[55.87478,13.83282],[55.87478,13.83282],[55.74026,13.87436],[55.608333,13.91627],[55.043353,14.079357],[54.98724,14.09581],[54.73738,14.171723],[54.73738,14.17172],[54.604053,14.213527],[54.60405,14.21353],[54.52529,14.23671],[54.475073,14.252068],[54.47507,14.25207],[54.25106,14.296852],[54.21381,14.30373],[54.067947,14.325212],[54.06795,14.32521],[53.9896,14.33482],[53.445747,14.4032],[53.38254,14.421172],[53.36157,14.42387],[53.17278,14.443517],[53.17278,14.44352],[53.056783,14.452758],[53.05678,14.45276],[52.94779,14.42614],[52.882873,14.410572],[52.83131,14.39925],[52.679453,14.362958],[52.63236,14.3469],[52.487533,14.298625],[52.48753,14.29862],[52.46767,14.29228],[52.39777,14.27131],[52.354173,14.25789],[52.31495,14.2456],[52.1798,14.20334],[52.06175,14.15958],[51.91977,14.10596],[51.22371,13.89421],[51.12527,13.86676],[50.86666,13.7816],[50.69497,13.72124],[50.58346,13.68777],[50.130987,13.558802],[50.035017,13.533205],[49.62708,13.41076],[49.527013,13.379222],[49.518813,13.376643],[49.25528,13.296167],[49.25528,13.29617],[49.15634,13.27538],[49.12577,13.26865],[49.07108,13.25664],[49.00087,13.23722],[48.925173,13.212593],[48.88339,13.19899],[48.717933,13.144045],[48.71793,13.14404],[48.6975,13.13688],[48.58087,13.0956],[48.43625,13.04554],[48.2972,12.99767],[48.14896,12.94742],[48.00705,12.89968],[47.70198,12.80001],[47.47576,12.72958],[47.20553,12.65679],[47.04456,12.60708],[46.89914,12.55345],[46.61141,12.45507],[46.45952,12.40492],[46.313413,12.357045],[46.31341,12.35705],[46.266333,12.34277],[45.94014,12.240207],[45.92694,12.23598],[45.921907,12.23437],[45.361423,12.058998],[45.36142,12.059],[45.2352,12.02066],[45.120833,11.986438],[45.12083,11.98644],[44.946727,11.964638],[44.89585,11.97223],[44.760227,11.993817],[44.76023,11.99382],[44.67686,12.00471],[44.62056,12.01003],[44.59474,12.01245],[44.53893,12.02116],[44.48965,12.03133],[44.48965,12.03133],[44.44373,12.04071],[44.31284,12.067475],[44.31284,12.06748],[44.26985,12.0765],[44.13585,12.10519],[44.12496,12.10754],[44.10572,12.11169],[44.08568,12.11597],[44.06755,12.11909],[44.06805,12.11901],[44.0462,12.12257],[44.02658,12.12573],[44.00717,12.12875],[43.98814,12.13169],[43.97836,12.13326],[43.96929,12.13469],[43.95208,12.13743],[43.92893,12.14116],[43.918,12.142938],[43.91921,12.14274],[43.89859,12.14608],[43.88106,12.15349],[43.86951,12.1628],[43.82263,12.20528],[43.80729,12.21942],[43.80018,12.22602],[43.78963,12.23568],[43.78557,12.23938],[43.77115,12.25271],[43.75758,12.26528],[43.75366,12.26895],[43.73246,12.29076],[43.65521,12.37486],[43.64586,12.38587],[43.588833,12.45316],[43.311697,12.711177],[43.3117,12.71118],[43.02032,13.272073],[43.02032,13.27207],[42.7884,13.458525],[42.7884,13.45852],[42.75816,13.48016],[42.71878,13.509492],[42.71098,13.51525],[42.69689,13.52561],[42.602313,13.660403],[42.519913,13.810535],[42.443817,13.943582],[42.244153,14.298567],[42.149693,14.46174],[42.057417,14.613842],[42.05742,14.61384],[41.96464,14.793258],[41.96464,14.79326],[41.960413,14.801133],[41.878747,14.948342],[41.87875,14.94834],[41.84663,15.00593],[41.83111,15.03391],[41.79248,15.101387],[41.79248,15.10139],[41.7666,15.14786],[41.73252,15.20833],[41.69873,15.26589],[41.69581,15.270692],[41.6894,15.28113],[41.62289,15.3972],[41.59515,15.44837],[41.55927,15.51264],[41.558173,15.514627],[41.339613,15.892002],[41.33961,15.892],[41.207833,16.122725],[41.06001,16.383012],[41.06001,16.38301],[40.943743,16.636572],[40.94374,16.63657],[40.92054,16.67369],[40.856273,16.75934],[40.85627,16.75934],[40.77359,16.89055],[40.75257,16.92624],[40.71438,16.99157],[40.706977,17.004375],[40.703193,17.010947],[40.69984,17.01671],[40.69404,17.0279],[40.65072,17.11134],[40.62057,17.16055],[40.60763,17.18184],[40.59445,17.20356],[40.56227,17.256005],[40.51901,17.32614],[40.50723,17.34561],[40.4907,17.3748],[40.478,17.3971],[40.46284,17.42324],[40.4492,17.44636],[40.43446,17.47137],[40.42199,17.49264],[40.4079,17.51691],[40.380327,17.565042],[40.22732,17.831292],[40.22732,17.83129],[40.10945,18.0355],[40.05069,18.1372],[39.99176,18.23899],[39.99176,18.23899],[39.93382,18.339108],[39.93382,18.33911],[39.84773,18.48766],[39.817647,18.539623],[39.77294,18.616688],[39.77294,18.61669],[39.70816,18.72829],[39.650183,18.828133],[39.65018,18.82813],[39.603077,18.909147],[39.60308,18.90915],[39.52719,19.03975],[39.52249,19.047783],[39.49936,19.08776],[39.278183,19.462173],[39.27327,19.4702],[39.25146,19.50614],[39.24122,19.52281],[39.22377,19.55131],[39.20793,19.57748],[39.19372,19.60146],[39.17973,19.62555],[39.16583,19.64977],[39.1521,19.67419],[39.13834,19.69879],[39.12428,19.72339],[39.1102,19.74763],[39.09666,19.77127],[38.95911,20.01459],[38.94762,20.035198],[38.747883,20.374743],[38.74788,20.37474],[38.71616,20.42702],[38.704127,20.447187],[38.70413,20.44719],[38.69458,20.46313],[38.68359,20.48127],[38.67773,20.49116],[38.6681,20.50715],[38.65914,20.52281],[38.65355,20.53283],[38.63875,20.55947],[38.62896,20.57716],[38.625533,20.583378],[38.621,20.59159],[38.61299,20.60578],[38.60069,20.6272],[38.59613,20.63519],[38.5915,20.64326],[38.58199,20.65929],[38.5739,20.67294],[38.56323,20.69084],[38.55817,20.69932],[38.54691,20.7182],[38.539853,20.730062],[38.53985,20.73006],[38.5302,20.74635],[38.52006,20.76359],[38.51494,20.77223],[38.50527,20.7886],[38.49641,20.80359],[38.48644,20.82063],[38.48358,20.82552],[38.467,20.85389],[38.456853,20.871075],[38.45685,20.87107],[38.45158,20.88002],[38.44665,20.8884],[38.43609,20.90615],[38.42606,20.923],[38.4169,20.93833],[38.40647,20.95581],[38.39552,20.97405],[38.39022,20.98293],[38.37986,21.0001],[38.37037,21.01604],[38.36519,21.02494],[38.36026,21.03344],[38.34999,21.05103],[38.34502,21.05953],[38.33486,21.07696],[38.32902,21.08695],[38.31972,21.1029],[38.30979,21.11987],[38.30031,21.13614],[38.28672,21.15923],[38.281503,21.168113],[38.27576,21.17785],[38.27346,21.18174],[38.26061,21.20345],[38.25345,21.21551],[38.24542,21.22911],[38.23511,21.24646],[38.23053,21.25418],[38.22082,21.27049],[38.21138,21.28639],[38.20169,21.30281],[38.19152,21.320105],[38.19152,21.3201],[38.18249,21.33545],[38.1715,21.35409],[38.16169,21.37072],[38.15333,21.38445],[38.14278,21.40196],[38.13687,21.41192],[38.12441,21.43289],[38.11499,21.45033],[38.110347,21.45911],[38.10583,21.46785],[38.09856,21.48216],[38.09321,21.49408],[38.08535,21.51159],[38.08179,21.5196],[38.074,21.5372],[38.06721,21.55277],[38.05958,21.56972],[38.05002,21.58629],[38.03963,21.6011],[38.033947,21.609205],[38.02861,21.61689],[38.02334,21.62451],[38.01328,21.6391],[38.00581,21.65002],[37.98673,21.67823],[37.939793,21.74955],[37.93979,21.74955],[37.93507,21.75691],[37.93327,21.75975],[37.91949,21.78133],[37.91056,21.79564],[37.9002,21.81278],[37.89049,21.82916],[37.88105,21.84517],[37.87161,21.86107],[37.8622,21.87699],[37.856933,21.88588],[37.85309,21.89242],[37.8476,21.90167],[37.83871,21.91669],[37.82819,21.93446],[37.81849,21.95082],[37.80965,21.96581],[37.79995,21.98268],[37.79122,21.99771],[37.78421,22.01371],[37.779647,22.024222],[37.77965,22.02422],[37.77213,22.04178],[37.76826,22.0509],[37.76445,22.05994],[37.75726,22.07702],[37.74919,22.0935],[37.74077,22.11003],[37.73269,22.12587],[37.7278,22.13357],[37.72278,22.14109],[37.71278,22.15625],[37.70787,22.16383],[37.702627,22.171947],[37.69762,22.1796],[37.68745,22.19561],[37.68258,22.20329],[37.67255,22.21878],[37.66721,22.22699],[37.65697,22.24257],[37.65154,22.25077],[37.64119,22.2662],[37.636,22.27391],[37.63085,22.28152],[37.62034,22.29687],[37.610653,22.310865],[37.56859,22.3635],[37.53718,22.4134],[37.52446,22.434955],[37.46724,22.53241],[37.439237,22.58165],[37.39771,22.65533],[37.359947,22.722263],[36.96736,23.380873],[36.96736,23.38087],[36.68109,23.85693],[36.621093,23.954982],[36.62109,23.95498],[36.493043,24.169762],[36.28727,24.540455],[35.989153,24.974447],[35.862547,25.161663],[35.86255,25.16166],[35.7757,25.28549],[35.746887,25.325682],[35.70628,25.3814],[35.656847,25.44828],[35.65685,25.44828],[35.604433,25.521487],[35.60443,25.52149],[35.579,25.55814],[35.52443,25.63672],[35.48844,25.68598],[35.45691,25.72919],[35.454993,25.731798],[35.228143,26.038025],[35.22814,26.03802],[35.21576,26.05446],[34.991473,26.366537],[34.99147,26.36654],[34.70192,26.753512],[34.4492,27.102798],[34.4215,27.139437],[34.328233,27.263503],[34.236623,27.386298],[34.136857,27.508537],[34.011053,27.612387],[33.614093,27.952078],[33.61409,27.95208],[33.43078,28.11004],[33.43078,28.11004],[33.219613,28.383653],[33.21961,28.38365],[32.5701,29.58536],[32.55992,29.65996],[32.54831,29.7667],[32.549613,29.7828],[32.54971,29.78371],[32.56606,29.82652],[32.570267,29.833343],[32.57033,29.83362],[32.57048,29.83584],[32.57037,29.83627],[32.57039,29.835293],[32.57024,29.83528],[32.57007,29.834913],[32.56901,29.83501],[32.56922,29.835177],[32.569773,29.834993],[32.569623,29.835053],[32.570767,29.835073],[32.570413,29.834953],[32.57066,29.83504],[32.570407,29.835043],[32.570933,29.83516],[32.57055,29.83499],[32.570937,29.835133],[32.57132,29.83508],[32.570863,29.83524],[32.57044,29.83515],[32.571293,29.835293],[32.571497,29.83514],[32.57087,29.83565],[32.570647,29.835787],[32.555383,29.851387],[32.5485,29.88659],[32.54657,29.89649],[32.545853,29.907767],[32.54613,29.9088],[32.56418,29.93278],[32.57636,29.94447],[32.583353,29.955807],[32.58365,29.95657],[32.58637,29.98072],[32.58468,29.99023],[32.58042,30.01283],[32.578387,30.024033],[32.57619,30.03671],[32.57379,30.04986],[32.57201,30.06301],[32.57137,30.07274],[32.571097,30.087067],[32.56979,30.14088],[32.569073,30.168853],[32.533357,30.24898],[32.53336,30.24898],[32.314613,30.91138],[32.313953,30.92644],[32.311867,30.993153],[32.3118,30.99474],[32.3115,31.00259],[32.3107,31.02391],[32.3101,31.04101],[32.30982,31.05046],[32.309437,31.06375],[32.30939,31.06532],[32.30919,31.07322],[32.30898,31.08029],[32.3086,31.08807],[32.30915,31.1029],[32.31321,31.1174],[32.31513,31.12414],[32.31727,31.13166],[32.317673,31.13309],[32.32042,31.14212],[32.32288,31.14964],[32.32567,31.15869],[32.33045,31.17501],[32.33414,31.18776],[32.337153,31.198163],[32.33732,31.19877],[32.33927,31.20592],[32.34,31.20854],[32.34164,31.21452],[32.34332,31.22057],[32.3456,31.22828],[32.34777,31.23521],[32.35024,31.24347],[32.35243,31.25085],[32.35492,31.25918],[32.355673,31.261687],[32.35992,31.27592],[32.36529,31.29387],[32.36833,31.30329],[32.37093,31.31172],[32.37361,31.32123],[32.37593,31.32979],[32.37862,31.3388],[32.38062,31.34509],[32.38113,31.34669],[32.38545,31.36057],[32.38871,31.37262],[32.39199,31.3851],[32.39345,31.39079],[32.39669,31.40375],[32.39518,31.43685],[32.37816,31.463517],[32.29439,31.54218],[32.26126,31.561153],[31.07617,32.27039],[30.73033,32.42021],[29.81076,32.677293],[29.81076,32.67729],[29.59813,32.727203],[29.59813,32.7272],[29.420013,32.77084],[29.42001,32.77084],[28.91084,32.89602],[28.91084,32.89602],[28.82621,32.91693],[28.665257,32.95634],[28.66526,32.95634],[28.047773,33.10226],[28.04777,33.10226],[28.02333,33.10753],[26.55876,33.47127],[26.52236,33.48053],[26.15558,33.57037],[26.08509,33.58747],[26.02883,33.60104],[25.84134,33.63852],[25.80575,33.64786],[25.77181,33.65714],[25.73439,33.66752],[25.71897,33.67183],[25.70228,33.67654],[25.68756,33.68076],[25.67361,33.68478],[25.6583,33.68922],[25.64353,33.69352],[25.62037,33.69953],[25.573735,33.711347],[25.230658,33.796067],[24.23874,34.03623],[24.16137,34.055],[24.142133,34.059683],[24.14213,34.05968],[24.12637,34.06344],[24.11076,34.06731],[24.09709,34.07058],[24.04653,34.08287],[24.02762,34.08743],[24.0004,34.09406],[23.97404,34.10044],[23.94038,34.10862],[23.91621,34.11447],[23.89989,34.11842],[23.86282,34.12742],[23.84601,34.13147],[23.75014,34.15464],[23.720695,34.16185],[23.7207,34.16185],[23.547222,34.203987],[23.53183,34.20774],[23.51926,34.21089],[23.49847,34.216],[23.48113,34.22026],[23.385808,34.243563],[23.38581,34.24356],[23.218528,34.28326],[23.21853,34.28326],[23.00809,34.33071],[22.85288,34.36833],[22.83723,34.37234],[22.79586,34.38288],[22.73872,34.39773],[22.70914,34.40545],[22.68187,34.41253],[21.805058,34.62378],[21.80506,34.62378],[21.463523,34.70548],[21.46352,34.70548],[20.447338,34.953367],[20.44734,34.95337],[19.235403,35.2403],[19.2354,35.2403],[15.55862,36.11288],[15.4532,36.13756],[15.43691,36.14139],[15.42145,36.14505],[15.40373,36.14909],[15.38681,36.15287],[15.36995,36.15683],[15.35379,36.16072],[15.33827,36.16439],[15.32342,36.16796],[15.30379,36.17268],[15.2882,36.1765],[15.27261,36.18039],[15.25059,36.1871],[15.23412,36.19267],[15.21105,36.20041],[15.19588,36.20551],[15.18079,36.21057],[15.15886,36.2179],[15.14362,36.2229],[15.12842,36.22797],[15.1051,36.23485],[15.099765,36.23597],[15.08875,36.23835],[15.0725,36.24189],[15.05682,36.24531],[15.04104,36.24877],[15.02538,36.25216],[15.00982,36.25555],[14.99207,36.25939],[14.96867,36.26442],[14.95291,36.26785],[14.93721,36.27117],[14.933075,36.272033],[14.91431,36.27608],[14.89837,36.27957],[14.8838,36.28277],[14.86854,36.28613],[14.84637,36.29107],[14.82498,36.29592],[14.824975,36.29592],[14.80433,36.30064],[14.78373,36.30538],[14.7632,36.30983],[14.74277,36.314],[14.72271,36.31802],[14.70279,36.3223],[14.68277,36.32664],[14.66815,36.32983],[14.65293,36.33311],[14.63743,36.33639],[14.62939,36.338087],[14.61531,36.34102],[14.59457,36.3453],[14.57856,36.34869],[14.56387,36.35182],[14.5479,36.35523],[14.53376,36.35843],[14.51836,36.3616],[14.50369,36.36498],[14.48104,36.37018],[14.46574,36.37373],[14.45181,36.37697],[14.43661,36.3807],[14.434628,36.381173],[14.41433,36.38612],[14.39979,36.38978],[14.3847,36.39364],[14.36315,36.39917],[14.34866,36.40301],[14.33403,36.40749],[14.31796,36.41193],[14.30402,36.41555],[14.28989,36.41927],[14.27527,36.42315],[14.25302,36.42834],[14.23946,36.43141],[14.24085,36.4311],[14.22599,36.43446],[14.21252,36.43751],[14.19778,36.44089],[14.17603,36.44589],[14.16073,36.44944],[14.14098,36.45403],[14.11938,36.45839],[14.10522,36.46023],[14.09036,36.46233],[14.06581,36.46666],[14.0505,36.47021],[14.048708,36.470643],[14.03411,36.47415],[14.02153,36.47684],[14.00708,36.47935],[13.99174,36.48234],[13.9753,36.48579],[13.95548,36.49002],[13.93379,36.49465],[13.91909,36.49788],[13.90523,36.5013],[13.88429,36.50684],[13.86792,36.51099],[13.84619,36.51649],[13.843005,36.5173],[13.83227,36.51998],[13.81825,36.5235],[13.80421,36.52701],[13.78562,36.53147],[13.77134,36.53487],[13.75383,36.53908],[13.73757,36.54305],[13.72138,36.54679],[13.70697,36.55026],[13.69011,36.55421],[13.67367,36.55809],[13.65796,36.56178],[13.655997,36.562253],[13.64287,36.56534],[13.62774,36.56889],[13.61186,36.5726],[13.59591,36.57631],[13.57865,36.58038],[13.5614,36.58452],[13.5455,36.58829],[13.5303,36.59196],[13.51454,36.5957],[13.49264,36.60091],[13.47744,36.60456],[13.46287,36.60804],[13.459668,36.60881],[13.44098,36.61325],[13.42511,36.61698],[13.40959,36.62056],[13.39225,36.62445],[13.37674,36.62799],[13.36201,36.63132],[13.34528,36.63517],[13.33057,36.63853],[13.31589,36.64191],[13.29263,36.64729],[13.27809,36.65072],[13.26293,36.65431],[13.259745,36.65506],[13.24002,36.65969],[13.22549,36.66309],[13.21105,36.66634],[13.19593,36.66985],[13.18081,36.67336],[13.16567,36.67686],[13.15194,36.68005],[13.13738,36.68344],[13.12601,36.68609],[13.09623,36.69305],[13.08078,36.69659],[13.06554,36.70007],[13.061422,36.701],[13.05074,36.70346],[13.02738,36.70895],[13.01272,36.71246],[12.99605,36.71635],[12.98141,36.71982],[12.9669,36.72327],[12.95216,36.72676],[12.93633,36.73049],[12.92097,36.73413],[12.90642,36.73757],[12.89189,36.74092],[12.86884,36.74642],[12.862248,36.747973],[12.85433,36.74986],[12.8398,36.7533],[12.82456,36.75686],[12.80942,36.76057],[12.79548,36.76403],[12.78005,36.76776],[12.76476,36.77153],[12.74293,36.77693],[12.72751,36.78067],[12.71217,36.78433],[12.69021,36.78956],[12.67556,36.79298],[12.662922,36.79588],[12.66093,36.79634],[12.64565,36.79983],[12.62306,36.80401],[12.6074,36.80651],[12.59249,36.80885],[12.56876,36.81251],[12.55294,36.81492],[12.53655,36.81742],[12.51402,36.82084],[12.49829,36.82324],[12.48436,36.82662],[12.47052,36.83308],[12.45685,36.8398],[12.44314,36.84641],[12.42891,36.85337],[12.41482,36.86034],[12.40111,36.86708],[12.38811,36.87348],[12.37401,36.88043],[12.3609,36.88691],[12.34788,36.89332],[12.33486,36.89972],[12.32067,36.90666],[12.30766,36.913],[12.29408,36.9196],[12.27393,36.92919],[12.26044,36.93561],[12.24675,36.94214],[12.22602,36.95197],[12.21369,36.958],[12.1996,36.96484],[12.18027,36.97425],[12.16155,36.98347],[12.14747,36.99039],[12.13389,36.99703],[12.12057,37.00388],[12.10685,37.01262],[12.08838,37.02432],[12.07677,37.03159],[12.06474,37.03919],[12.05165,37.04755],[12.03313,37.05947],[12.02121,37.06723],[12.00936,37.07487],[11.9949,37.08547],[11.98316,37.09411],[11.96605,37.10587],[11.9528,37.11185],[11.93923,37.11718],[11.92545,37.12231],[11.90954,37.12904],[11.89758,37.13654],[11.88492,37.14454],[11.8669,37.15595],[11.8538,37.16425],[11.84192,37.17183],[11.82988,37.1795],[11.81151,37.19127],[11.7997,37.19884],[11.78716,37.20693],[11.76931,37.21852],[11.75624,37.22696],[11.74298,37.23529],[11.72977,37.24365],[11.71609,37.2518],[11.70273,37.25792],[11.68803,37.26463],[11.67383,37.27104],[11.65961,37.27744],[11.63857,37.28646],[11.62411,37.29241],[11.60978,37.29831],[11.58855,37.30699],[11.57232,37.31358],[11.55122,37.3221],[11.53751,37.3276],[11.52336,37.33377],[11.50261,37.34317],[11.48939,37.34945],[11.47454,37.35668],[11.45485,37.36684],[11.44149,37.37381],[11.4277,37.38106],[11.41454,37.38803],[11.4014,37.39506],[11.38765,37.40237],[11.37447,37.40939],[11.36254,37.4158],[11.34811,37.42361],[11.32912,37.43387],[11.31586,37.44104],[11.30205,37.44858],[11.28203,37.45853],[11.26883,37.46464],[11.25443,37.47136],[11.23394,37.48081],[11.23394,37.48081],[11.22066,37.48694],[11.20808,37.49275],[11.19415,37.4991],[11.17371,37.50769],[11.1601,37.51337],[11.14663,37.51875],[11.1321,37.52203],[11.10983,37.52639],[11.0959,37.5292],[11.08145,37.53212],[11.06767,37.53491],[11.05192,37.53816],[11.03619,37.54139],[11.02177,37.54439],[11.00672,37.54752],[10.98492,37.55079],[10.97029,37.55276],[10.95427,37.555],[10.93152,37.55828],[10.91629,37.56149],[10.90187,37.56469],[10.90187,37.56469],[10.88869,37.56758],[10.87282,37.5712],[10.85117,37.57626],[10.83733,37.57953],[10.82345,37.58277],[10.80754,37.58631],[10.799615,37.588093],[10.7924,37.58972],[10.77742,37.59308],[10.76385,37.59617],[10.74841,37.5995],[10.73435,37.60255],[10.72099,37.6054],[10.7065,37.60853],[10.69302,37.61144],[10.67013,37.61637],[10.657827,37.619023],[10.6559,37.61944],[10.64307,37.62229],[10.6297,37.62526],[10.61288,37.62908],[10.59816,37.63242],[10.58383,37.63571],[10.56301,37.6405],[10.54073,37.64575],[10.54073,37.64575],[10.52493,37.64948],[10.50117,37.65504],[10.48661,37.65841],[10.47201,37.66167],[10.474002,37.661223],[10.4491,37.66671],[10.434,37.66997],[10.4198,37.67219],[10.39886,37.67493],[10.38326,37.67703],[10.36575,37.67945],[10.34565,37.68227],[10.33074,37.68438],[10.31456,37.68669],[10.2913,37.69],[10.27773,37.69193],[10.26221,37.69409],[10.267382,37.693363],[10.24666,37.69632],[10.23112,37.69855],[10.21568,37.70078],[10.20146,37.70282],[10.18651,37.70496],[10.16462,37.70808],[10.15046,37.71011],[10.13566,37.71222],[10.12212,37.71419],[10.10083,37.7173],[10.08664,37.71941],[10.08084,37.720267],[10.07182,37.72162],[10.05698,37.72385],[10.04146,37.72624],[10.02715,37.7284],[10.01033,37.73092],[9.994552,37.73337],[9.978878,37.73573],[9.963264,37.73823],[9.963264,37.73823],[9.947055,37.74083],[9.923845,37.7445],[9.908366,37.74684],[9.885233,37.7503],[9.8852333,37.7503],[9.885233,37.7503],[9.869672,37.75255],[9.846867,37.75587],[9.831088,37.75813],[9.820728,37.75961],[9.802921,37.76215],[9.78321,37.76494],[9.765411,37.76738],[9.749599,37.76959],[9.733893,37.77162],[9.717412,37.7738],[9.702213,37.77583],[9.688184,37.77765],[9.6829917,37.778333],[9.672948,37.77972],[9.657719,37.78181],[9.635275,37.78491],[9.618542,37.78725],[9.595841,37.78921],[9.581087,37.79015],[9.566255,37.79113],[9.551398,37.79219],[9.528457,37.79372],[9.513741,37.79468],[9.496112,37.7958],[9.48814,37.796307],[9.480618,37.79679],[9.465154,37.7978],[9.44973,37.79883],[9.433782,37.79988],[9.418962,37.801],[9.404266,37.80212],[9.381595,37.80388],[9.365639,37.80518],[9.351735,37.80636],[9.334645,37.80789],[9.319636,37.80921],[9.304702,37.81046],[9.289105,37.81178],[9.273555,37.81323],[9.259718,37.8145],[9.237413,37.81651],[9.223708,37.81772],[9.209752,37.819],[9.18989,37.82072],[9.173192,37.82214],[9.155793,37.82363],[9.139075,37.82496],[9.12343,37.82619],[9.107708,37.82631],[9.091455,37.82622],[9.073958,37.82612],[9.05651,37.82594],[9.037744,37.8255],[9.0277767,37.825287],[9.01162,37.82496],[8.995419,37.82465],[8.978375,37.8243],[8.944206,37.82342],[8.8388183,37.815353],[8.4298,37.76935],[8.402982,37.76831],[8.386287,37.7676],[8.366963,37.76674],[8.349682,37.76594],[8.333078,37.76516],[8.315768,37.76443],[8.295749,37.76366],[8.276337,37.76296],[8.264385,37.762567],[8.253562,37.76223],[8.230868,37.76155],[8.211935,37.761],[8.195097,37.76055],[7.915962,37.75119],[7.915962,37.75119],[7.9159617,37.751193],[5.83422,37.53628],[5.2186583,37.478213],[4.9600967,37.45357],[4.960097,37.45357],[4.7267533,37.424497],[4.726753,37.4245],[4.221935,37.370053],[4.221935,37.37005],[4.074903,37.35461],[3.6763617,37.31266],[2.426625,37.18118],[2.426625,37.18118],[2.0600483,37.14551],[2.060048,37.14551],[1.797435,37.117073],[1.797435,37.11707],[1.5723233,37.09302],[1.1144783,37.028663],[1.114478,37.02866],[0.8137283,36.97436],[0.2550517,36.87373],[-1.541825,36.57267],[-1.867303,36.52157],[-1.883482,36.51783],[-1.90933,36.51193],[-1.93017,36.50714],[-1.944253,36.50395],[-1.962938,36.49972],[-1.978467,36.49615],[-1.997205,36.49191],[-2.021892,36.48625],[-2.041865,36.48162],[-2.085667,36.46921],[-2.103793,36.46364],[-2.123455,36.45752],[-2.139777,36.4524],[-2.1548,36.44765],[-2.171878,36.44228],[-2.186985,36.43747],[-2.201463,36.43283],[-2.217283,36.42772],[-2.239623,36.42043],[-2.256982,36.41479],[-2.273693,36.41241],[-2.289983,36.41081],[-2.307727,36.40907],[-2.323462,36.40753],[-2.341153,36.4057],[-2.364438,36.40308],[-2.380522,36.40127],[-2.3967,36.39945],[-2.41437,36.39746],[-2.429,36.39583],[-2.445748,36.39384],[-2.463618,36.39157],[-2.463618,36.39157],[-2.483205,36.38931],[-2.498887,36.38738],[-2.511633,36.38589],[-2.5116317,36.385887],[-2.52698,36.38337],[-2.544462,36.38023],[-2.561263,36.3773],[-2.580207,36.37411],[-2.598487,36.37111],[-2.613402,36.36868],[-2.628335,36.3662],[-2.645953,36.36351],[-2.658865,36.36128],[-2.6663933,36.36011],[-2.677483,36.35839],[-2.693973,36.35573],[-2.711187,36.35331],[-2.732048,36.35095],[-2.750193,36.34887],[-2.769575,36.34665],[-2.786165,36.34473],[-2.805507,36.34244],[-2.828258,36.3397],[-2.872072,36.33425],[-2.887222,36.33236],[-2.909015,36.32965],[-2.925353,36.32727],[-2.944088,36.32403],[-2.966898,36.3203],[-2.99014,36.31651],[-3.014623,36.31222],[-3.033725,36.3087],[-3.067775,36.30166],[-3.0677733,36.30166],[-3.09018,36.29719],[-3.124733,36.29112],[-3.144783,36.28807],[-3.186107,36.28159],[-3.204762,36.27862],[-3.219542,36.27631],[-3.243603,36.27256],[-3.285048,36.26633],[-3.2850467,36.266327],[-3.302272,36.26379],[-3.314378,36.26203],[-3.33981,36.25909],[-3.358605,36.25705],[-3.376093,36.25515],[-3.392283,36.25299],[-3.408568,36.25087],[-3.430383,36.24786],[-3.452233,36.245],[-3.469275,36.24277],[-3.48493,36.24081],[-3.4903583,36.240097],[-3.50121,36.2387],[-3.515983,36.23684],[-3.53163,36.23495],[-3.547123,36.23308],[-3.570008,36.23023],[-3.584632,36.22803],[-3.599052,36.22591],[-3.613598,36.22374],[-3.63669,36.22126],[-3.651142,36.21986],[-3.665013,36.21847],[-3.680228,36.217],[-3.675525,36.21743],[-3.701117,36.21503],[-3.716338,36.21366],[-3.73078,36.21237],[-3.745208,36.21109],[-3.766128,36.20948],[-3.78863,36.20822],[-3.805115,36.20737],[-3.820285,36.20665],[-3.83411,36.20593],[-3.84923,36.20526],[-3.865617,36.20455],[-3.87411,36.20421],[-3.880635,36.20395],[-3.894835,36.20339],[-3.908458,36.20285],[-3.930598,36.2021],[-3.94549,36.20164],[-3.960302,36.20118],[-3.982438,36.20065],[-3.996028,36.20036],[-4.013985,36.19985],[-4.028285,36.19873],[-4.042457,36.19772],[-4.057518,36.19667],[-4.07445,36.195473],[-4.079677,36.19511],[-4.0933,36.19419],[-4.10833,36.19325],[-4.123498,36.19229],[-4.145827,36.1908],[-4.16096,36.18991],[-4.175483,36.18896],[-4.197303,36.18759],[-4.212745,36.18655],[-4.227314,36.18565],[-4.241483,36.18463],[-4.256873,36.18362],[-4.279294,36.18206],[-4.27659,36.182253],[-4.295568,36.18105],[-4.310403,36.1801],[-4.333756,36.17875],[-4.34956,36.1779],[-4.365428,36.17705],[-4.381975,36.17613],[-4.397018,36.17548],[-4.412253,36.17472],[-4.435576,36.17351],[-4.450365,36.17174],[-4.464515,36.17007],[-4.47193,36.169147],[-4.480047,36.16815],[-4.495582,36.16619],[-4.510857,36.16418],[-4.52557,36.16216],[-4.542032,36.15976],[-4.56406,36.15638],[-4.578562,36.15407],[-4.594563,36.15143],[-4.617675,36.14768],[-4.632417,36.14528],[-4.649062,36.14254],[-4.670335,36.13914],[-4.6758617,36.138547],[-4.685335,36.13759],[-4.700785,36.13595],[-4.724586,36.13357],[-4.737428,36.13218],[-4.754378,36.13037],[-4.770663,36.12866],[-4.77609,36.12809],[-4.803203,36.12509],[-4.825965,36.1227],[-4.834123,36.12185],[-4.858356,36.11938],[-4.873222,36.11789],[-4.890165,36.11626],[-4.913163,36.11381],[-4.924845,36.112517],[-4.92894,36.1121],[-4.944487,36.11029],[-4.959518,36.10817],[-4.986835,36.10433],[-5.00917,36.10058],[-5.025405,36.0976],[-5.041564,36.09474],[-5.058437,36.09178],[-5.073035,36.08911],[-5.089463,36.08598],[-5.096507,36.08448],[-5.119787,36.07892],[-5.130037,36.07644],[-5.1327367,36.075787],[-5.153453,36.07059],[-5.168245,36.06676],[-5.182889,36.06289],[-5.202892,36.05684],[-5.22061,36.05289],[-5.238942,36.04769],[-5.251172,36.04421],[-5.263963,36.04126],[-5.2606267,36.04198],[-5.28028,36.03747],[-5.297788,36.03327],[-5.309305,36.02998],[-5.320678,36.02688],[-5.331937,36.02552],[-5.342727,36.02227],[-5.358521,36.01635],[-5.375105,36.01183],[-5.386229,36.00895],[-5.397918,36.0061],[-5.40915,36.00339],[-5.421355,36.00007],[-5.41755,36.00113],[-5.438468,35.99523],[-5.45045,35.99201],[-5.461858,35.98889],[-5.474112,35.98563],[-5.486225,35.98249],[-5.503725,35.97792],[-5.513752,35.97547],[-5.523255,35.97289],[-5.537433,35.96921],[-5.546854,35.96701],[-5.556013,35.96535],[-5.565752,35.96537],[-5.5734667,35.965],[-5.575013,35.96486],[-5.585377,35.96383],[-5.594968,35.96292],[-5.60516,35.96175],[-5.61695,35.96046],[-5.62676,35.95932],[-5.638908,35.95801],[-5.646878,35.95726],[-5.65712,35.95735],[-5.668118,35.9578],[-5.67842,35.95815],[-5.689752,35.95844],[-5.701763,35.95895],[-5.714992,35.96004],[-5.726892,35.96097],[-5.738402,35.9619],[-5.750472,35.96288],[-5.7532217,35.963067],[-5.771842,35.96504],[-5.789895,35.96668],[-5.802062,35.96794],[-5.81364,35.9689],[-5.826225,35.96987],[-5.838843,35.97004],[-5.851965,35.97004],[-5.866823,35.97005],[-5.885208,35.97009],[-5.896963,35.97015],[-5.909732,35.97029],[-5.927815,35.97055],[-5.939672,35.97065],[-5.952672,35.97047],[-5.965562,35.96977],[-5.977706,35.96846],[-5.990023,35.96687],[-6.021392,35.96431],[-6.037525,35.96418],[-6.046793,35.96412],[-6.060555,35.96395],[-6.133713,35.96668],[-6.14701,35.96737],[-6.179008,35.96799],[-6.205902,35.96704],[-6.218946,35.96648],[-6.9544217,35.964993],[-6.954423,35.96499],[-7.3078717,35.96806],[-7.307873,35.96806],[-7.357763,35.96815],[-7.392437,35.96809],[-7.427838,35.9684],[-7.462485,35.96859],[-7.492983,35.96873],[-7.527915,35.96891],[-7.563738,35.96891],[-7.609072,35.96896],[-7.640945,35.96878],[-7.673043,35.96865],[-7.704953,35.96875],[-7.74373,35.96892],[-7.779322,35.96952],[-7.815172,35.97045],[-7.9618717,35.972787],[-7.961874,35.97279],[-8.1984467,35.97369],[-8.198448,35.97369],[-8.3781417,35.974713],[-8.378143,35.97471],[-8.4072417,35.975397],[-8.407244,35.9754],[-8.624695,35.97805],[-8.6401317,35.978197],[-8.733519,35.97857],[-8.8386717,35.978047],[-8.838674,35.97805],[-9.163123,35.98102],[-9.208175,35.98184],[-9.373032,35.98613],[-9.41391,35.98724],[-9.560122,36.01067],[-9.76325,36.07336],[-9.894208,36.1137],[-9.894208,36.1137],[-9.894208,36.1137],[-9.938145,36.12745],[-9.938145,36.12745],[-9.98043,36.14096],[-9.98043,36.14096],[-9.98043,36.14096],[-10.06747,36.16876],[-10.102672,36.179683],[-10.23576,36.22195],[-10.50301,36.30714],[-10.503005,36.307143],[-10.51694,36.3116],[-10.83261,36.41135],[-10.8824,36.42681],[-11.06017,36.4829],[-11.1055,36.4969],[-11.120095,36.501427],[-11.23351,36.53588],[-11.27748,36.54948],[-11.28404,36.55148],[-12.64402,36.96104],[-12.64402,36.96104],[-12.800628,37.00915],[-12.80063,37.00915],[-13.163787,37.112733],[-13.16379,37.11273],[-13.46482,37.20053],[-13.481943,37.20587],[-13.48195,37.20587],[-13.50844,37.21364],[-13.54724,37.22463],[-13.68777,37.26433],[-13.687772,37.264327],[-13.99224,37.34767],[-13.994683,37.348373],[-14.405218,37.46353],[-14.40522,37.46353],[-14.635065,37.52655],[-14.63507,37.52655],[-14.878353,37.59272],[-14.87836,37.59272],[-15.089742,37.644003],[-15.08974,37.644],[-15.1075,37.64878],[-15.273602,37.697057],[-15.2736,37.69706],[-15.31,37.70678],[-15.44846,37.7444],[-15.44846,37.7444],[-15.56595,37.77579],[-15.62275,37.79046],[-15.785625,37.832727],[-15.78563,37.83273],[-15.861007,37.85271],[-15.86101,37.85271],[-15.96815,37.88174],[-16.02575,37.89683],[-16.1465,37.929873],[-16.1465,37.92987],[-16.316872,37.974273],[-16.31687,37.97427],[-16.49454,38.017427],[-16.49454,38.01743],[-16.668465,38.059153],[-16.66847,38.05915],[-16.974783,38.133053],[-16.97478,38.13305],[-17.335468,38.22532],[-17.33547,38.22532],[-17.37181,38.23475],[-17.531233,38.275193],[-17.53123,38.27519],[-17.64058,38.30148],[-17.67855,38.31016],[-17.67855,38.31016],[-17.85733,38.35301],[-17.918147,38.36757],[-17.91815,38.36757],[-18.07692,38.40541],[-18.112607,38.413853],[-18.11261,38.41385],[-18.14782,38.42223],[-18.23773,38.44348],[-18.433143,38.489407],[-18.43315,38.48941],[-18.601705,38.528707],[-18.60171,38.52871],[-18.966677,38.612927],[-18.96668,38.61293],[-19.03933,38.62956],[-19.224757,38.6717],[-19.22476,38.6717],[-19.377625,38.706153],[-19.37763,38.70615],[-19.532948,38.74094],[-19.53295,38.74094],[-19.740147,38.786967],[-19.74015,38.78697],[-19.984602,38.84072],[-20.207945,38.88922],[-20.20795,38.88922],[-20.26494,38.90163],[-20.44867,38.941147],[-20.44867,38.94115],[-20.597492,38.972917],[-20.59749,38.97292],[-20.64988,38.984],[-20.82891,39.021853],[-20.82891,39.02185],[-20.98754,39.05501],[-21.19812,39.09874],[-21.200947,39.099347],[-21.391283,39.13947],[-21.39128,39.13947],[-21.57247,39.178247],[-21.57247,39.17825],[-21.732113,39.210867],[-21.73211,39.21087],[-21.937943,39.249423],[-21.93794,39.24942],[-22.313157,39.32244],[-22.31316,39.32244],[-22.671568,39.396423],[-22.67157,39.39642],[-22.853098,39.42948],[-22.8531,39.42948],[-22.90061,39.43744],[-23.024198,39.4583],[-23.0242,39.4583],[-23.06937,39.46746],[-23.18467,39.49025],[-23.193607,39.492013],[-23.23558,39.49982],[-23.25495,39.50342],[-23.30375,39.51251],[-23.322707,39.516063],[-23.32271,39.51606],[-23.3416,39.51954],[-23.38903,39.52836],[-23.40519,39.53135],[-23.44819,39.53932],[-23.47917,39.54501],[-23.49737,39.54841],[-23.55906,39.55975],[-23.559055,39.559747],[-23.57736,39.56307],[-23.60954,39.56907],[-23.63128,39.57301],[-23.65453,39.57726],[-23.67125,39.58031],[-23.68824,39.58342],[-23.78385,39.60084],[-23.8219,39.60775],[-23.99379,39.63877],[-23.997988,39.639553],[-24.00782,39.64127],[-24.02747,39.64481],[-24.04849,39.64857],[-24.08906,39.65587],[-24.10579,39.65883],[-24.13545,39.66415],[-24.17777,39.67167],[-24.177765,39.671673],[-24.23421,39.68166],[-24.44724,39.71932],[-24.50936,39.730207],[-24.58354,39.743143],[-24.6952,39.76257],[-25.107395,39.8331],[-25.1074,39.8331],[-25.16789,39.84324],[-25.216198,39.851383],[-25.2162,39.85138],[-25.2627,39.85919],[-25.41439,39.8845],[-25.440728,39.88886],[-25.44073,39.88886],[-25.46692,39.89316],[-25.62356,39.91905],[-25.65192,39.92371],[-25.783358,39.94514],[-25.78336,39.94514],[-25.8407,39.95444],[-25.88045,39.96089],[-26.041967,39.98697],[-26.04197,39.98697],[-26.073453,39.991947],[-26.07346,39.99195],[-26.12926,40.00089],[-26.15491,40.00497],[-26.17055,40.00749],[-26.22826,40.0166],[-26.35176,40.03635],[-26.38378,40.04154],[-26.438737,40.05057],[-26.43874,40.05057],[-26.505798,40.061307],[-26.5058,40.06131],[-26.52868,40.065],[-26.62037,40.07957],[-26.71534,40.09515],[-26.836008,40.113097],[-26.83601,40.1131],[-26.85881,40.11627],[-26.89635,40.12135],[-27.07442,40.14663],[-27.102957,40.151057],[-27.10296,40.15106],[-27.12371,40.15421],[-27.138708,40.15653],[-27.21552,40.16908],[-27.23482,40.17243],[-27.26346,40.17744],[-27.28263,40.18075],[-27.29926,40.18356],[-27.31584,40.18639],[-27.33243,40.18913],[-27.34901,40.19196],[-27.3726,40.19591],[-27.38792,40.19839],[-27.40397,40.20091],[-27.411628,40.202177],[-27.4206,40.20362],[-27.4367,40.20622],[-27.45228,40.20871],[-27.46855,40.21103],[-27.49314,40.21456],[-27.50803,40.21657],[-27.5235,40.21852],[-27.54041,40.22068],[-27.55732,40.22277],[-27.57692,40.22523],[-27.581978,40.225823],[-27.59255,40.22709],[-27.60947,40.22913],[-27.63133,40.23178],[-27.65099,40.23448],[-27.67349,40.23765],[-27.69536,40.24077],[-27.71367,40.24334],[-27.73268,40.24594],[-27.74959,40.2482],[-27.75522,40.248973],[-27.7672,40.25057],[-27.7932,40.25418],[-27.82704,40.25891],[-27.86485,40.26439],[-27.88294,40.26699],[-27.90681,40.27047],[-27.92292,40.27268],[-27.93963,40.27502],[-27.958,40.27765],[-27.972053,40.279577],[-27.97404,40.27985],[-27.99242,40.28239],[-28.00911,40.28471],[-28.03298,40.28808],[-28.05117,40.29054],[-28.0694,40.29298],[-28.08628,40.29515],[-28.1115,40.29856],[-28.13129,40.30165],[-28.15102,40.30435],[-28.16799,40.30674],[-28.183587,40.308977],[-28.18359,40.30898],[-28.20209,40.31145],[-28.21921,40.31372],[-28.23562,40.31593],[-28.25324,40.31852],[-28.29162,40.32393],[-28.31715,40.32723],[-28.33269,40.32977],[-28.37309,40.33529],[-28.495483,40.352247],[-28.49549,40.35225],[-28.51596,40.355],[-28.56093,40.36119],[-28.6327,40.370973],[-28.71021,40.38155],[-28.78287,40.39135],[-28.79932,40.39356],[-28.81436,40.39564],[-28.8252,40.397113],[-28.83969,40.39901],[-28.85517,40.40108],[-28.871,40.40323],[-28.88849,40.40559],[-28.90729,40.40807],[-28.92243,40.41012],[-28.93828,40.41223],[-28.9628,40.41551],[-28.98094,40.41791],[-29.00862,40.42152],[-29.02465,40.42373],[-29.042837,40.42609],[-29.04865,40.42688],[-29.06464,40.42904],[-29.08138,40.43121],[-29.0988,40.43355],[-29.11687,40.43594],[-29.13219,40.43792],[-29.14982,40.44025],[-29.16734,40.44257],[-29.18419,40.44478],[-29.20036,40.44688],[-29.21861,40.44933],[-29.23639,40.45164],[-29.262187,40.454967],[-29.26219,40.45497],[-29.27845,40.4571],[-29.29472,40.45927],[-29.31328,40.46166],[-29.32947,40.46372],[-29.34736,40.46605],[-29.37095,40.46909],[-29.39005,40.47158],[-29.4121,40.47443],[-29.42968,40.47672],[-29.44861,40.47915],[-29.46563,40.48135],[-29.483287,40.48363],[-29.48329,40.48363],[-29.49871,40.4856],[-29.51508,40.48769],[-29.5317,40.48981],[-29.55466,40.49271],[-29.5719,40.49498],[-29.58794,40.49704],[-29.60548,40.49926],[-29.62741,40.50205],[-29.64643,40.50449],[-29.66245,40.50648],[-29.68314,40.50905],[-29.70069,40.51105],[-29.703753,40.511383],[-29.71844,40.51311],[-29.73458,40.51502],[-29.7521,40.51744],[-29.77107,40.51998],[-29.78704,40.52214],[-29.81006,40.52508],[-29.83179,40.52782],[-29.85081,40.53019],[-29.86972,40.53261],[-29.89154,40.53525],[-29.91623,40.53833],[-29.927733,40.5398],[-29.93658,40.54087],[-29.95391,40.54307],[-29.98013,40.54633],[-29.99807,40.54856],[-30.0369,40.55335],[-30.08629,40.55941],[-30.145217,40.56664],[-30.14522,40.56664],[-30.16584,40.56919],[-30.25048,40.57958],[-30.30566,40.58617],[-30.446357,40.603143],[-30.44636,40.60314],[-30.49305,40.60873],[-30.787173,40.643327],[-30.78718,40.64333],[-30.817463,40.646917],[-30.83157,40.64847],[-31.05068,40.673827],[-31.05068,40.67383],[-31.22976,40.69414],[-31.415713,40.71494],[-31.41571,40.71494],[-31.593187,40.734537],[-31.59319,40.73454],[-31.7937,40.75625],[-31.7937,40.75625],[-31.991167,40.77742],[-31.99117,40.77742],[-32.17722,40.79704],[-32.17722,40.79704],[-32.34778,40.8141],[-32.571967,40.833813],[-32.57197,40.83381],[-32.75415,40.85308],[-32.947747,40.87732],[-32.94775,40.87732],[-33.137187,40.89696],[-33.13719,40.89696],[-33.372083,40.916053],[-33.37208,40.91605],[-33.74329,40.951813],[-33.74329,40.95181],[-33.93929,40.96708],[-33.96365,40.96886],[-34.031613,40.975047],[-34.363493,41.00477],[-34.36349,41.00477],[-34.581323,41.02148],[-34.64229,41.026],[-34.91534,41.04857],[-34.91534,41.04857],[-35.139583,41.067187],[-35.13959,41.06719],[-35.171147,41.0694],[-35.17115,41.0694],[-35.34594,41.08312],[-35.43366,41.08986],[-35.43366,41.08986],[-35.56637,41.0996],[-35.589423,41.10133],[-35.72541,41.11046],[-35.763093,41.113007],[-35.76309,41.11301],[-35.88527,41.12108],[-35.938613,41.12502],[-35.93861,41.12502],[-35.99926,41.12928],[-36.04832,41.13253],[-36.20662,41.142253],[-36.20662,41.14225],[-36.23973,41.14397],[-36.40582,41.15577],[-36.44202,41.15882],[-36.4451,41.1591],[-36.66431,41.174107],[-36.66431,41.17411],[-36.714547,41.176667],[-36.71455,41.17667],[-36.87321,41.18523],[-36.89256,41.18658],[-37.079123,41.20068],[-37.07913,41.20068],[-37.11275,41.2029],[-37.11275,41.2029],[-37.24136,41.21023],[-37.2578,41.21108],[-37.28791,41.21265],[-37.343413,41.216027],[-37.34341,41.21603],[-37.40789,41.22033],[-37.532243,41.229693],[-37.53224,41.22969],[-37.56169,41.23241],[-37.6045,41.23573],[-37.735467,41.240373],[-37.73547,41.24037],[-37.75416,41.24107],[-37.78055,41.2424],[-37.83042,41.24485],[-37.921957,41.250097],[-37.92196,41.2501],[-38.00237,41.25448],[-38.08109,41.25847],[-38.218247,41.264733],[-38.21825,41.26473],[-38.24696,41.26619],[-38.41679,41.27234],[-38.41679,41.27234],[-38.58587,41.27953],[-38.60614,41.28049],[-38.6266,41.2813],[-38.65117,41.28263],[-38.684883,41.284627],[-38.686207,41.284727],[-38.68931,41.28495],[-38.7136,41.28636],[-38.75114,41.28813],[-38.81532,41.29071],[-38.915633,41.2949],[-38.91563,41.2949],[-38.95678,41.29723],[-39.12915,41.30503],[-39.12915,41.30503],[-39.16424,41.30651],[-39.305767,41.312307],[-39.30577,41.31231],[-39.45259,41.3183],[-39.49992,41.32017],[-39.63335,41.32526],[-39.663477,41.326437],[-39.66348,41.32644],[-39.851693,41.333213],[-39.8517,41.33321],[-40.037273,41.33995],[-40.03727,41.33995],[-40.05595,41.34054],[-40.22471,41.346213],[-40.22471,41.34621],[-40.380933,41.351307],[-40.38093,41.35131],[-40.42955,41.35284],[-40.58391,41.35755],[-40.634197,41.35914],[-40.79244,41.363737],[-40.79244,41.36374],[-40.80828,41.36406],[-40.83197,41.36477],[-40.96743,41.36849],[-41.13581,41.372753],[-41.13581,41.37275],[-41.17262,41.37372],[-41.340363,41.377747],[-41.34037,41.37775],[-41.52092,41.381827],[-41.52092,41.38183],[-41.70515,41.38561],[-41.70515,41.38561],[-41.881027,41.389423],[-41.88103,41.38942],[-42.0868,41.39494],[-42.0868,41.39494],[-42.28137,41.39647],[-42.45856,41.398023],[-42.45856,41.39802],[-42.63732,41.402047],[-42.63732,41.40205],[-42.837,41.40662],[-42.88753,41.40709],[-43.02669,41.40782],[-43.09436,41.40757],[-43.226273,41.405103],[-43.22627,41.4051],[-43.42839,41.40776],[-43.46213,41.40905],[-43.462127,41.409047],[-43.73022,41.41301],[-43.73022,41.413013],[-43.84176,41.4132],[-43.936137,41.413393],[-44.17663,41.41193],[-44.1796,41.41186],[-44.20253,41.41136],[-44.46483,41.407827],[-44.49652,41.40764],[-44.49727,41.407647],[-44.949187,41.406457],[-44.94919,41.40646],[-45.219907,41.4041],[-45.21991,41.4041],[-45.26568,41.40376],[-45.457887,41.400127],[-45.45789,41.40013],[-45.47971,41.39979],[-45.648133,41.397663],[-45.64814,41.39766],[-45.74142,41.39549],[-45.80449,41.39468],[-45.982177,41.392243],[-45.98218,41.39224],[-45.99816,41.39199],[-46.190007,41.390303],[-46.19001,41.3903],[-46.27245,41.38825],[-46.395213,41.384537],[-46.39521,41.38454],[-46.46615,41.38287],[-46.56111,41.38114],[-46.58192,41.38081],[-46.769947,41.37686],[-46.76995,41.37686],[-46.96308,41.371577],[-46.96308,41.37158],[-46.99635,41.37033],[-47.16577,41.36381],[-47.236087,41.362273],[-47.23609,41.36227],[-47.33911,41.35923],[-47.470367,41.355807],[-47.47037,41.35581],[-47.50679,41.35518],[-47.671193,41.352337],[-47.67119,41.35234],[-47.69749,41.35184],[-47.7592,41.35043],[-47.85346,41.34708],[-47.85346,41.34708],[-47.88171,41.34567],[-47.90896,41.34455],[-47.93458,41.3432],[-48.032193,41.338053],[-48.03219,41.33805],[-48.17596,41.33131],[-48.21816,41.330137],[-48.21816,41.33014],[-48.23123,41.32977],[-48.38859,41.32611],[-48.436057,41.324477],[-48.43606,41.32448],[-48.55326,41.31937],[-48.57737,41.3182],[-48.611,41.31611],[-48.729543,41.309727],[-48.72955,41.30973],[-48.87782,41.303133],[-48.87782,41.30313],[-48.90301,41.30194],[-48.93971,41.30023],[-49.08312,41.29373],[-49.12703,41.29169],[-49.17167,41.29011],[-49.17167,41.290107],[-49.23413,41.28947],[-49.26104,41.28821],[-49.28622,41.28711],[-49.571703,41.27412],[-49.5717,41.27412],[-49.62475,41.27151],[-49.792883,41.263277],[-49.80297,41.26277],[-49.951,41.25519],[-49.97134,41.25411],[-49.9848,41.253453],[-50.116153,41.24644],[-50.11616,41.24644],[-50.271493,41.23807],[-50.27149,41.23807],[-50.33157,41.23481],[-50.499027,41.225417],[-50.49903,41.22542],[-50.64209,41.217273],[-50.64209,41.21727],[-50.66055,41.21621],[-50.71998,41.21269],[-50.81079,41.20745],[-50.965573,41.198103],[-50.96557,41.1981],[-51.05505,41.1926],[-51.13757,41.18755],[-51.1722,41.18538],[-51.19245,41.18406],[-51.29633,41.17755],[-51.33311,41.17519],[-51.38369,41.17191],[-51.47323,41.16613],[-51.51725,41.16323],[-51.63077,41.15577],[-51.81405,41.14341],[-51.99603,41.13077],[-52.169,41.11861],[-52.3298,41.10704],[-52.51408,41.09478],[-52.694943,41.08322],[-52.69495,41.08322],[-52.878327,41.069907],[-52.87833,41.06991],[-53.04694,41.057497],[-53.04694,41.0575],[-53.26922,41.038173],[-53.26922,41.03817],[-53.428647,41.01842],[-53.42865,41.01842],[-53.636233,40.999797],[-53.63623,40.9998],[-53.96867,40.97583],[-54.035043,40.96958],[-54.364893,40.940977],[-54.521587,40.928227],[-54.53156,40.92735],[-54.682597,40.91302],[-54.73549,40.90767],[-54.93188,40.88889],[-54.93188,40.88889],[-55.08662,40.874673],[-55.16588,40.86677],[-55.280453,40.855373],[-55.28046,40.85537],[-55.40407,40.84334],[-55.44857,40.838637],[-55.44857,40.83864],[-55.59582,40.822],[-55.62534,40.81878],[-55.798187,40.801187],[-55.79819,40.80119],[-55.83507,40.79746],[-55.869927,40.793813],[-55.86993,40.79381],[-55.94889,40.78545],[-56.063933,40.773387],[-56.06393,40.77339],[-56.11269,40.76816],[-56.267547,40.751587],[-56.26755,40.75159],[-56.29326,40.74881],[-56.50246,40.726073],[-56.50246,40.72607],[-56.59355,40.71591],[-56.70958,40.70303],[-56.70958,40.70303],[-56.75748,40.69776],[-56.78927,40.69417],[-56.907873,40.680733],[-56.90788,40.68073],[-56.93987,40.67707],[-57.0725,40.661867],[-57.07251,40.66187],[-57.1071,40.65845],[-57.13921,40.65684],[-57.248247,40.645873],[-57.24825,40.64587],[-57.28532,40.64073],[-57.35617,40.63043],[-57.37309,40.62789],[-57.424147,40.620447],[-57.42415,40.62045],[-57.46207,40.61478],[-57.59253,40.5958],[-57.599707,40.595013],[-57.60911,40.59389],[-57.80184,40.57348],[-57.869367,40.567037],[-57.86937,40.56704],[-57.98137,40.55426],[-58.085573,40.540313],[-58.08558,40.54031],[-58.14225,40.53254],[-58.18072,40.52676],[-58.326373,40.50448],[-58.32637,40.50448],[-58.35189,40.50047],[-58.37758,40.49673],[-58.523333,40.48115],[-58.52333,40.48115],[-58.55908,40.47763],[-58.71072,40.45771],[-58.71072,40.45771],[-58.83461,40.44177],[-59.05522,40.416967],[-59.05522,40.41697],[-59.08857,40.41276],[-59.24457,40.39065],[-59.427587,40.365833],[-59.42759,40.36583],[-59.542767,40.351183],[-59.54277,40.35118],[-59.726307,40.326457],[-59.72631,40.32646],[-59.76356,40.32126],[-59.878653,40.305793],[-59.87865,40.30579],[-59.93427,40.29867],[-60.067053,40.281167],[-60.06705,40.28117],[-60.2121,40.25857],[-60.2383,40.254533],[-60.2383,40.25453],[-60.38744,40.23142],[-60.436067,40.2244],[-60.43607,40.2244],[-60.688233,40.185693],[-60.68824,40.18569],[-60.84304,40.162707],[-60.84304,40.16271],[-61.010627,40.137387],[-61.01063,40.13739],[-61.169673,40.113807],[-61.16967,40.11381],[-61.32282,40.08962],[-61.429387,40.072437],[-61.49371,40.06214],[-61.630947,40.04017],[-61.63095,40.04017],[-61.66703,40.03469],[-61.798347,40.016347],[-61.79835,40.01635],[-61.969347,39.989693],[-61.96935,39.98969],[-62.00161,39.98448],[-62.127687,39.96366],[-62.12769,39.96366],[-62.274747,39.940413],[-62.27475,39.94041],[-62.30652,39.93494],[-62.6148,39.86798],[-62.61481,39.86798],[-62.799007,39.83472],[-62.79901,39.83472],[-62.994893,39.805013],[-62.99489,39.80501],[-63.59698,39.72496],[-63.596987,39.72496],[-63.60036,39.72442],[-63.96428,39.662763],[-64.03984,39.65054],[-64.03984,39.65054],[-64.11415,39.63725],[-64.321887,39.596567],[-64.32188,39.59657],[-64.565933,39.554607],[-64.56593,39.55461],[-64.93102,39.48832],[-64.93102,39.48832],[-64.99996,39.475073],[-64.99996,39.47507],[-65.07003,39.46167],[-65.208967,39.43467],[-65.20897,39.43467],[-65.373873,39.40348],[-65.37387,39.40348],[-65.43462,39.39214],[-65.577187,39.364497],[-65.57719,39.3645],[-65.63654,39.35258],[-65.824267,39.317007],[-66.004733,39.2861],[-66.00473,39.2861],[-66.03692,39.28018],[-66.06215,39.27567],[-66.190413,39.251423],[-66.19041,39.25142],[-66.283027,39.233113],[-66.28304,39.23311],[-66.503453,39.190073],[-66.50346,39.19007],[-66.6636,39.19869],[-66.6636,39.19869],[-66.69147,39.20451],[-66.80194,39.227973],[-66.80194,39.22797],[-66.88031,39.24519],[-66.94376,39.25909],[-67.0794,39.291453],[-67.0794,39.29145],[-67.267307,39.326267],[-67.2673,39.32627],[-67.36854,39.34406],[-67.36855,39.34406],[-67.481787,39.366857],[-67.4818,39.36686],[-67.51267,39.37296],[-67.84653,39.43659],[-67.98821,39.46007],[-68.11131,39.48713],[-68.28335,39.52772],[-68.43594,39.56017],[-68.45663,39.56436],[-68.68109,39.61104],[-68.71236,39.61776],[-68.85063,39.64717],[-68.88013,39.65317],[-69.0949,39.69757],[-69.39801,39.75735],[-69.54037,39.78807],[-69.65987,39.81244],[-69.68755,39.81811],[-69.72507,39.8258],[-69.78627,39.83832],[-69.85501,39.85253],[-69.87064,39.85563],[-69.91071,39.86389],[-69.95312,39.87253],[-70.00034,39.88221],[-70.08369,39.89927],[-70.09347,39.90128],[-70.23745,39.93079],[-70.37505,39.95899],[-70.51227,39.98705],[-70.60795,40.00718],[-70.62203,40.00997],[-70.6403,40.01343],[-70.6581,40.01714],[-70.7336,40.03148],[-70.74704,40.03424],[-70.76047,40.03714],[-70.78304,40.04204],[-70.80185,40.04633],[-70.83096,40.05317],[-70.84389,40.05628],[-70.85857,40.05949],[-70.87273,40.06259],[-70.88581,40.06519],[-70.8984,40.06779],[-70.91217,40.07071],[-70.92976,40.07397],[-70.9473,40.07722],[-70.96811,40.08115],[-70.98263,40.08397],[-70.99519,40.08635],[-71.00853,40.08884],[-71.02137,40.0915],[-71.03461,40.09425],[-71.04778,40.09704],[-71.06117,40.09985],[-71.07444,40.10269],[-71.0884,40.10572],[-71.10125,40.10847],[-71.11466,40.11136],[-71.1271,40.11408],[-71.139,40.11661],[-71.15739,40.12061],[-71.1693,40.12319],[-71.18163,40.12593],[-71.20013,40.13],[-71.21313,40.13295],[-71.22559,40.13579],[-71.23851,40.13859],[-71.24999,40.14086],[-71.26239,40.14348],[-71.27687,40.14656],[-71.28817,40.1489],[-71.30547,40.15243],[-71.31467,40.15432],[-71.33094,40.15767],[-71.34399,40.16043],[-71.38051,40.16797],[-71.43414,40.17857],[-71.49014,40.18889],[-71.50105,40.19093],[-71.53979,40.19835],[-71.56033,40.20251],[-71.59578,40.20977],[-71.61774,40.21428],[-71.63096,40.21703],[-71.65468,40.22192],[-71.67067,40.22527],[-71.68775,40.22887],[-71.70042,40.2315],[-71.72509,40.23669],[-71.73671,40.23912],[-71.7504,40.24202],[-71.76355,40.24478],[-71.77616,40.24741],[-71.78875,40.25003],[-71.80243,40.25286],[-71.81558,40.25562],[-71.83627,40.25996],[-71.85003,40.26283],[-71.86371,40.26557],[-71.87674,40.26814],[-71.9007,40.27299],[-71.9203,40.27708],[-71.95936,40.28519],[-71.97673,40.28873],[-71.99019,40.29163],[-72.00851,40.29558],[-72.02044,40.29805],[-72.03623,40.30102],[-72.06496,40.30661],[-72.09093,40.31158],[-72.1217,40.3176],[-72.13417,40.31997],[-72.14826,40.32272],[-72.16019,40.325],[-72.1721,40.32734],[-72.18442,40.32979],[-72.20057,40.33291],[-72.20947,40.3346],[-72.2175,40.33619],[-72.22668,40.3379],[-72.23141,40.33883],[-72.2356,40.33946],[-72.23914,40.33963],[-72.24262,40.33939],[-72.24728,40.33879],[-72.25132,40.33942],[-72.25378,40.34023],[-72.25763,40.34175],[-72.26144,40.34287],[-72.2652,40.34372],[-72.26952,40.34409],[-72.27457,40.34524],[-72.28025,40.34653],[-72.2859,40.34802],[-72.29828,40.34755],[-72.30668,40.3476],[-72.31631,40.34888],[-72.33231,40.35217],[-72.34306,40.35431],[-72.35516,40.35658],[-72.36737,40.35889],[-72.38534,40.36228],[-72.39788,40.36466],[-72.4099,40.36695],[-72.42845,40.3707],[-72.44099,40.37325],[-72.45351,40.3758],[-72.47305,40.37978],[-72.4856,40.38233],[-72.49828,40.38491],[-72.51085,40.3875],[-72.5229,40.39],[-72.53384,40.39226],[-72.54858,40.39533],[-72.56009,40.39776],[-72.57077,40.40004],[-72.58195,40.40239],[-72.59406,40.40499],[-72.60413,40.40717],[-72.61541,40.40962],[-72.62606,40.41195],[-72.64002,40.41505],[-72.65408,40.41816],[-72.66512,40.42069],[-72.67488,40.42293],[-72.68529,40.42521],[-72.69561,40.42752],[-72.70538,40.42977],[-72.71965,40.43297],[-72.73119,40.43548],[-72.74667,40.43852],[-72.75612,40.44035],[-72.76566,40.44219],[-72.77669,40.44436],[-72.78846,40.44666],[-72.80027,40.44898],[-72.81199,40.45135],[-72.82397,40.45373],[-72.83572,40.45603],[-72.84749,40.45834],[-72.85863,40.46054],[-72.869,40.46246],[-72.88164,40.46488],[-72.89481,40.46747],[-72.90605,40.46961],[-72.92654,40.47358],[-72.93981,40.47592],[-72.95776,40.47738],[-72.97438,40.47853],[-72.99057,40.47919],[-73.00753,40.47989],[-73.02388,40.48057],[-73.0396,40.48122],[-73.05463,40.48184],[-73.06907,40.48248],[-73.08496,40.48321],[-73.1084,40.48364],[-73.1256,40.48339]]}}
{"type":"Feature","geometry":{"type":"LineString","coordinates":[[122.1552,29.91493],[122.1635,29.90655],[122.1704,29.89525],[122.1822,29.88067],[122.18881,29.8698],[122.1888,29.8698],[122.1935,29.86215],[122.2001,29.85193],[122.2067,29.84257],[122.2133,29.8339],[122.217,29.82888],[122.2207,29.82362],[122.2251,29.8184],[122.2331,29.81138],[122.2414,29.80408],[122.24989,29.7966],[122.2598,29.78792],[122.2691,29.77985],[122.2762,29.7746],[122.2855,29.76773],[122.2926,29.76233],[122.3095,29.75028],[122.321,29.7388],[122.33341,29.730483],[122.3399,29.72773],[122.3596,29.7216],[122.3874,29.71432],[122.4118,29.70722],[122.4391,29.69865],[122.4531,29.69435],[122.45535,29.693667],[122.4885,29.68327],[122.5107,29.67618],[122.5391,29.66683],[122.5665,29.6577],[122.579,29.65373],[122.59216,29.6521],[122.5922,29.6521],[122.6127,29.65213],[122.6217,29.64995],[122.6399,29.64722],[122.645,29.64947],[122.6693,29.67043],[122.691,29.69075],[122.6996,29.70032],[122.71189,29.7146],[122.7119,29.7146],[122.7284,29.73542],[122.7472,29.7604],[122.7676,29.7876],[122.7759,29.79755],[122.7863,29.80927],[122.7946,29.81815],[122.81033,29.83045],[122.8103,29.83045],[122.8192,29.83613],[122.8318,29.84453],[122.8411,29.85083],[122.8545,29.85975],[122.8662,29.86763],[122.8953,29.88708],[122.9185,29.90343],[122.9432,29.9246],[122.9677,29.9483],[122.9923,29.9635],[123.0328,29.9815],[123.0433,29.9863],[123.1009,30.0094],[123.2171,30.056],[123.2367,30.0627],[123.2781,30.0765],[123.3124,30.088],[123.3441,30.0987],[123.3744,30.1088],[123.4274,30.1265],[123.4744,30.1425],[123.5504,30.1692],[123.6082,30.1901],[123.6354,30.2002],[123.7171,30.2237],[123.7311,30.2259],[124.0017,30.3211],[129.0514,31.01908],[129.082,31.01578],[129.1315,31.01],[129.1722,31.00465],[129.2092,31],[129.2426,30.99605],[129.2863,30.99135],[129.3273,30.98707],[129.3665,30.9832],[129.4055,30.97935],[129.4456,30.97543],[129.4842,30.97168],[129.524,30.96788],[129.5633,30.96398],[129.6039,30.95972],[129.6427,30.95535],[129.6827,30.95145],[129.7232,30.94772],[129.7609,30.94417],[129.8006,30.94032],[129.8372,30.93733],[129.8783,30.93422],[129.9167,30.93127],[129.9554,30.92813],[129.9942,30.92495],[130.4383,30.89065],[130.4589,30.88837],[130.4792,30.88603],[130.4992,30.88368],[130.5191,30.88135],[130.5395,30.87883],[130.5732,30.87468],[131.5695,31.20377],[132.0635,31.3899],[132.1118,31.4069],[132.1559,31.42292],[132.1784,31.43138],[132.2008,31.43963],[132.2519,31.45902],[132.4534,31.53353],[132.69036,31.6176],[132.77815,31.648133],[132.8816,31.68832],[132.9068,31.69803],[132.9234,31.70437],[132.97539,31.724083],[132.9833,31.72725],[133.0184,31.74123],[133.12699,31.783383],[133.30725,31.850183],[133.48435,31.913567],[133.65825,31.976067],[133.83672,32.042513],[134.0136,32.108003],[134.3542,32.23275],[134.65163,32.33895],[134.97384,32.454467],[135.29375,32.5698],[135.40776,32.610803],[135.60563,32.681197],[135.76145,32.737533],[135.95533,32.8088],[136.13587,32.8752],[136.1953,32.89658],[136.32141,32.9435],[136.5005,33.01215],[136.54648,33.030167],[136.83545,33.128733],[136.8354,33.12873],[137.0114,33.19575],[137.0114,33.19575],[137.0881,33.2255],[137.15695,33.253483],[137.2801,33.30022],[137.546,33.38015],[138.01555,33.55325],[138.108,33.58653],[138.36325,33.679467],[138.3633,33.67947],[138.52157,33.736533],[138.5216,33.73653],[138.66619,33.78955],[138.8139,33.84385],[138.9774,33.947383],[139.14837,34.054717],[139.26779,34.131867],[139.47807,34.276717],[139.53952,34.319917],[139.5628,34.33587],[139.76525,34.471067],[139.82819,34.516633],[140.04287,34.669617],[140.11987,34.7216],[140.25379,34.811353],[140.51328,34.971283],[140.61441,35.049533],[140.6174,35.05162],[140.78887,35.172733],[140.7889,35.17273],[140.97552,35.298633],[140.9755,35.29863],[141.18733,35.4453],[141.1873,35.4453],[141.48548,35.652937],[141.4855,35.65294],[141.608,35.735283],[141.608,35.73528],[141.77901,35.848367],[141.779,35.84837],[142.08727,36.03925],[142.0873,36.03925],[142.1418,36.06208],[142.25785,36.11225],[142.2579,36.11225],[142.4245,36.18375],[142.59728,36.2557],[142.5973,36.2557],[142.6124,36.26203],[142.76287,36.329883],[142.7629,36.32988],[142.8107,36.35138],[142.93747,36.408117],[142.9375,36.40812],[143.14128,36.497317],[143.1413,36.49732],[143.25853,36.54565],[143.2585,36.54565],[143.2747,36.55217],[143.48895,36.643167],[143.489,36.64317],[143.72331,36.745033],[143.7233,36.74503],[143.7756,36.76723],[143.93548,36.836583],[143.9355,36.83658],[143.9552,36.8457],[144.10961,36.915267],[144.1096,36.91527],[144.3188,37.00895],[144.3188,37.00895],[144.41376,37.05168],[144.4138,37.05168],[144.70428,37.180633],[144.7043,37.18063],[144.79669,37.219033],[144.8063,37.22287],[144.91841,37.268137],[144.9184,37.26814],[145.10441,37.34405],[145.1044,37.34405],[145.26895,37.411817],[145.58007,37.562563],[145.5801,37.56256],[145.58793,37.566017],[145.87179,37.680667],[145.8718,37.68067],[146.02913,37.74917],[146.0291,37.74917],[146.173,37.808553],[146.173,37.80855],[146.2918,37.856783],[146.2918,37.85678],[146.3432,37.87848],[146.4518,37.92505],[146.4596,37.9283],[146.4662,37.93108],[146.6646,38.015787],[146.7923,38.069],[146.97908,38.148217],[146.9791,38.14822],[147.0559,38.18005],[147.05588,38.18005],[147.0701,38.1859],[147.22624,38.248717],[147.49553,38.363717],[147.4955,38.36372],[147.68235,38.44465],[147.6823,38.44465],[147.7009,38.45288],[147.8286,38.509467],[147.8286,38.50947],[147.98873,38.577417],[147.9887,38.57742],[148.2913,38.70303],[148.29133,38.703033],[148.47527,38.78935],[148.4753,38.78935],[148.9196,38.94585],[148.91965,38.94585],[148.9347,38.95055],[149.0061,38.98172],[149.03424,38.9943],[149.0342,38.9943],[149.28389,39.105533],[149.30564,39.115117],[149.4321,39.16993],[149.56172,39.232333],[149.5863,39.24405],[149.66739,39.284083],[149.6674,39.28408],[149.86481,39.371117],[149.8648,39.37112],[150.07316,39.45115],[150.0732,39.45115],[150.1445,39.47478],[150.1834,39.48763],[150.309,39.525783],[150.309,39.52578],[150.3526,39.5389],[150.51669,39.59318],[150.5167,39.59318],[150.5322,39.59845],[150.69765,39.65115],[150.6976,39.65115],[150.7544,39.66877],[150.86265,39.70225],[150.8627,39.70225],[150.9864,39.74005],[151.03132,39.7547],[151.0313,39.7547],[151.2116,39.81227],[151.38479,39.866467],[151.3848,39.86647],[151.54741,39.918817],[151.5474,39.91882],[151.70513,39.973433],[151.7051,39.97343],[151.7401,39.98615],[151.8358,40.019417],[152.03732,40.08195],[152.0373,40.08195],[152.18003,40.124867],[152.18,40.12487],[152.2443,40.14527],[152.40425,40.197333],[152.4043,40.19733],[152.4702,40.21883],[152.63651,40.2724],[152.6365,40.2724],[152.79729,40.325017],[152.7973,40.32502],[152.8396,40.33875],[152.95795,40.378133],[152.9579,40.37813],[153.053,40.40982],[153.2632,40.4742],[153.27301,40.477],[153.278,40.47868],[153.299,40.48512],[153.50015,40.5476],[153.5002,40.5476],[153.6319,40.58893],[153.8758,40.66695],[153.90081,40.675417],[153.9096,40.67825],[153.9501,40.69198],[154.0307,40.71862],[154.23212,40.7837],[154.2321,40.7837],[154.43825,40.84432],[154.4382,40.84432],[154.63401,40.9092],[154.634,40.9092],[154.77651,40.95745],[154.7765,40.95745],[154.86992,40.986917],[154.8699,40.98692],[155.10985,41.060417],[155.1098,41.06042],[155.31003,41.118317],[155.31,41.11832],[155.48107,41.171767],[155.4844,41.17282],[155.83661,41.2835],[155.8366,41.2835],[155.9494,41.3204],[155.94939,41.3204],[155.9665,41.32593],[155.9787,41.32992],[156.0268,41.34558],[156.14179,41.38325],[156.1836,41.39637],[156.36207,41.450283],[156.3621,41.45028],[156.56428,41.51255],[156.5643,41.51255],[156.88767,41.620067],[156.8877,41.62007],[157.0715,41.6785],[157.2634,41.73942],[157.26961,41.741417],[157.2743,41.74282],[157.2878,41.74712],[157.28781,41.747117],[157.3092,41.75397],[157.61959,41.84757],[157.79376,41.90205],[157.7938,41.90205],[157.92072,41.943917],[157.9207,41.94392],[157.9431,41.95087],[157.9563,41.95503],[157.9711,41.9597],[158.25656,42.0457],[158.49027,42.116733],[158.4903,42.11673],[158.6369,42.16135],[158.64108,42.162517],[158.6947,42.17825],[158.70412,42.181083],[158.92016,42.249183],[158.9643,42.26308],[159.13721,42.3171],[159.1372,42.3171],[159.2074,42.33878],[159.2975,42.36725],[159.41469,42.40405],[159.4147,42.40405],[159.4825,42.42547],[159.62893,42.473217],[159.6289,42.47322],[159.6709,42.48745],[159.83364,42.539903],[159.8336,42.5399],[159.887,42.55605],[160.01832,42.593967],[160.0183,42.59397],[160.1055,42.61018],[160.20864,42.629367],[160.2086,42.62937],[160.35648,42.660197],[160.3565,42.6602],[160.3844,42.66648],[160.56348,42.704983],[160.5635,42.70498],[160.7445,42.74267],[160.93403,42.762267],[160.934,42.76227],[160.9591,42.76447],[161.1199,42.7792],[161.22341,42.787717],[161.2234,42.78772],[161.3196,42.79535],[161.50571,42.80913],[161.5057,42.80913],[161.73287,42.826133],[161.7329,42.82613],[161.8294,42.8317],[162.00732,42.842833],[162.0073,42.84283],[162.0716,42.84683],[162.09087,42.848067],[162.0909,42.84807],[162.2635,42.86083],[162.3234,42.865817],[162.3234,42.86582],[162.5056,42.88025],[162.58741,42.886367],[162.5874,42.88637],[162.77132,42.903567],[162.7713,42.90357],[162.8171,42.90785],[163.0226,42.92747],[163.02261,42.927467],[163.2748,42.95133],[163.2926,42.953],[163.30205,42.954],[163.46985,42.96932],[163.4698,42.96932],[163.65715,42.983283],[163.6572,42.98328],[163.7871,42.99165],[163.8389,42.99435],[164.01832,43.0141],[164.04,43.0163],[164.0776,43.02008],[164.08745,43.02115],[164.2525,43.03835],[164.43881,43.059483],[164.4388,43.05948],[164.653,43.080763],[164.653,43.08076],[164.8386,43.09693],[165.0347,43.11678],[165.234,43.13567],[165.4165,43.14547],[165.64057,43.159833],[165.6406,43.15983],[165.7977,43.16936],[165.841,43.172633],[165.9867,43.18407],[166.3362,43.21137],[166.3362,43.21137],[166.4751,43.22163],[166.70647,43.23535],[166.7065,43.23535],[166.91787,43.251633],[166.9179,43.25163],[167.1072,43.2626],[167.16395,43.266183],[167.1639,43.26618],[167.1868,43.2677],[167.2044,43.26843],[167.3179,43.275],[167.50308,43.28375],[167.5031,43.28375],[167.69001,43.29285],[167.69,43.29285],[168.13551,43.321033],[168.49452,43.346533],[168.4945,43.34653],[168.5633,43.349],[168.72388,43.353017],[168.7239,43.35302],[168.97161,43.364497],[168.9716,43.3645],[169.049,43.36998],[169.21267,43.381233],[169.2127,43.38123],[169.26,43.38346],[169.38901,43.388767],[169.389,43.38877],[169.5029,43.39223],[169.56309,43.394517],[169.5631,43.39452],[169.7147,43.40075],[169.7586,43.40294],[169.96056,43.410333],[169.9606,43.41033],[170.22219,43.4153],[170.2222,43.4153],[170.3351,43.41838],[170.47515,43.42385],[170.4751,43.42385],[170.5537,43.42663],[170.70753,43.432717],[170.7075,43.43272],[170.9201,43.43998],[171.0824,43.44173],[171.2278,43.4445],[171.3706,43.44677],[171.4918,43.4477],[171.6158,43.44743],[171.6636,43.44868],[171.9696,43.45615],[172.2337,43.46155],[172.4415,43.46747],[172.5095,43.4678],[172.6475,43.46735],[172.6918,43.46729],[172.8283,43.46658],[172.9469,43.46635],[173.1914,43.4657],[173.3245,43.4663],[173.4241,43.46702],[173.4813,43.46767],[173.6722,43.4711],[173.9178,43.47235],[174.0194,43.47245],[174.1953,43.4722],[174.4198,43.47092],[174.5702,43.47023],[174.6806,43.46973],[174.7596,43.46926],[174.8212,43.46872],[174.94931,43.467183],[174.9493,43.46718],[175.1449,43.46468],[175.3291,43.4614],[175.5152,43.45755],[175.5864,43.4559],[175.75459,43.452617],[175.7546,43.45262],[175.8992,43.45153],[176.0776,43.450083],[176.0776,43.45008],[176.2717,43.44602],[176.4646,43.44312],[176.83464,43.42915],[177.02483,43.425433],[177.39879,43.415797],[177.3988,43.4158],[177.58412,43.410167],[177.5841,43.41017],[177.80921,43.401383],[177.8092,43.40138],[178.02039,43.39245],[178.0204,43.39245],[178.0569,43.3908],[178.0764,43.39045],[178.0928,43.39008],[178.56131,43.372567],[178.5613,43.37257],[178.6184,43.36987],[178.86107,43.359317],[178.8611,43.35932],[179.15973,43.346067],[179.1597,43.34607],[179.23787,43.343583],[179.2442,43.34332],[179.2749,43.34202],[179.2894,43.3415],[179.3566,43.33875],[179.66535,43.322363],[179.6653,43.32236],[179.7915,43.31339],[179.89953,43.305467],[179.8995,43.30547],[-179.91469,43.293717],[-179.8384,43.28913],[-179.68732,43.283117],[-179.6873,43.28312],[-179.6617,43.28214],[-179.48328,43.273833],[-179.4833,43.27383],[-179.382,43.26868],[-179.3636,43.26767],[-179.3017,43.26322],[-179.19019,43.253767],[-179.1902,43.25377],[-179.1193,43.24818],[-179.03699,43.241883],[-179.037,43.24188],[-179.0068,43.24003],[-178.9608,43.23725],[-178.82728,43.227967],[-178.8273,43.22797],[-178.7637,43.22327],[-178.64345,43.2183],[-178.6434,43.2183],[-178.5172,43.21167],[-178.4588,43.20857],[-178.3524,43.200613],[-178.2722,43.19433],[-178.24628,43.192567],[-178.03319,43.175597],[-178.0332,43.1756],[-178.0183,43.17433],[-177.79573,43.156217],[-177.7957,43.15622],[-177.59743,43.143817],[-177.5974,43.14382],[-177.5421,43.13992],[-177.37,43.1289],[-177.3066,43.1249],[-177.12005,43.10695],[-177.1201,43.10695],[-177.0519,43.10003],[-176.8892,43.08555],[-176.8892,43.08555],[-176.8741,43.08468],[-176.8102,43.07987],[-176.63273,43.06895],[-176.6327,43.06895],[-176.5654,43.06485],[-176.39088,43.051783],[-176.3909,43.05178],[-176.3735,43.05025],[-176.31236,43.045233],[-176.3124,43.04523],[-176.1922,43.03539],[-176.14015,43.03095],[-176.1402,43.03095],[-176.0081,43.01683],[-175.9172,43.00705],[-175.9172,43.00705],[-175.65627,42.979083],[-175.6563,42.97908],[-175.47347,42.961237],[-175.4735,42.96124],[-175.3523,42.95077],[-175.16173,42.934367],[-175.1084,42.92952],[-175.05556,42.924567],[-175.0475,42.92383],[-174.9764,42.91593],[-174.9242,42.90993],[-174.80883,42.89747],[-174.8088,42.89747],[-174.7459,42.8912],[-174.62869,42.880537],[-174.6287,42.88054],[-174.5782,42.87667],[-174.39195,42.859537],[-174.392,42.85954],[-174.26725,42.846317],[-174.2673,42.84632],[-174.2319,42.84168],[-174.1959,42.8376],[-174.0975,42.8257],[-174.02652,42.817817],[-174.0265,42.81782],[-173.9045,42.80583],[-173.72576,42.790633],[-173.7258,42.79063],[-173.37547,42.7475],[-173.3755,42.7475],[-173.18065,42.721117],[-173.1806,42.72112],[-172.99305,42.700353],[-172.9931,42.70035],[-172.8205,42.68128],[-172.77485,42.675767],[-172.7749,42.67577],[-172.6034,42.65533],[-172.40445,42.63143],[-172.4044,42.63143],[-172.23884,42.6101],[-172.2388,42.6101],[-172.14884,42.59905],[-172.1488,42.59905],[-172.1305,42.59708],[-172.1151,42.59547],[-172.0499,42.58778],[-171.5798,42.528917],[-171.5798,42.52892],[-171.42412,42.507117],[-171.3568,42.49758],[-171.1844,42.473633],[-171.10261,42.462033],[-171.1026,42.46203],[-171.0678,42.45715],[-171.0205,42.45027],[-170.944,42.43884],[-170.84075,42.42505],[-170.8407,42.42505],[-170.66041,42.4036],[-170.6604,42.4036],[-170.6379,42.40082],[-170.4784,42.37732],[-170.38837,42.361933],[-170.3884,42.36193],[-170.2995,42.34755],[-170.23108,42.33675],[-170.2311,42.33675],[-170.155,42.32735],[-169.95715,42.302447],[-169.9572,42.30245],[-169.9373,42.29996],[-169.77325,42.277817],[-169.7733,42.27782],[-169.6967,42.2667],[-169.6626,42.26162],[-169.52944,42.240897],[-169.5294,42.2409],[-169.4646,42.23042],[-169.37455,42.21605],[-169.3745,42.21605],[-169.3191,42.20715],[-169.2586,42.19797],[-169.15455,42.1818],[-169.1545,42.1818],[-169.0917,42.17252],[-169.0686,42.1691],[-168.96988,42.153633],[-168.9699,42.15363],[-168.9092,42.14475],[-168.8687,42.13875],[-168.7944,42.1276],[-168.7421,42.11927],[-168.6321,42.10152],[-168.556,42.09025],[-168.45127,42.073517],[-168.4513,42.07352],[-168.26259,42.044083],[-168.2626,42.04408],[-168.16088,42.028617],[-168.1609,42.02862],[-167.91012,41.997967],[-167.9101,41.99797],[-167.73768,42.000183],[-167.7377,42.00018],[-167.6819,42.0017],[-167.49365,42.0053],[-167.4937,42.0053],[-167.4377,42.00652],[-167.24956,42.010767],[-167.2496,42.01077],[-167.1973,42.01167],[-167.01549,42.01405],[-167.0155,42.01405],[-166.949,42.01502],[-166.81788,42.018483],[-166.8179,42.01848],[-166.76103,42.02005],[-166.761,42.02005],[-166.7433,42.02028],[-166.7224,42.0211],[-166.6022,42.02293],[-166.55287,42.02385],[-166.5529,42.02385],[-166.4869,42.02455],[-166.4284,42.0257],[-166.3234,42.027733],[-166.3234,42.02773],[-166.2482,42.02947],[-166.13423,42.027783],[-166.1222,42.02778],[-166.1043,42.02768],[-166.0862,42.02755],[-165.96348,42.0262],[-165.9635,42.0262],[-165.7922,42.02688],[-165.54165,42.027833],[-165.5417,42.02783],[-165.3719,42.02762],[-165.24452,42.02795],[-165.2445,42.02795],[-165.06913,42.025],[-165.0691,42.025],[-165.0116,42.02395],[-164.88959,42.022967],[-164.8896,42.02297],[-164.8747,42.02328],[-164.70209,42.024503],[-164.7021,42.0245],[-164.6543,42.02427],[-164.54172,42.024683],[-164.5417,42.02468],[-164.4854,42.02517],[-164.3597,42.02265],[-164.34333,42.0219],[-164.2014,42.01803],[-164.02243,42.015653],[-164.0224,42.01565],[-163.86513,42.012467],[-163.8651,42.01247],[-163.8459,42.01248],[-163.68788,42.0115],[-163.6658,42.01171],[-163.49152,42.010167],[-163.4915,42.01017],[-163.32015,42.005783],[-163.3201,42.00578],[-163.3053,42.00533],[-163.2903,42.0048],[-163.276,42.00397],[-163.2626,42.00362],[-163.1492,41.99955],[-162.96967,41.995783],[-162.9697,41.99578],[-162.91272,41.99545],[-162.7963,41.99467],[-162.65615,41.99285],[-162.6561,41.99285],[-162.6427,41.99253],[-162.40713,41.986083],[-162.4071,41.98608],[-162.20273,41.979233],[-162.2027,41.97923],[-161.97083,41.973117],[-161.90319,41.971233],[-161.9032,41.97123],[-161.7806,41.96758],[-161.7315,41.96572],[-161.72253,41.965583],[-161.6833,41.96455],[-161.6627,41.96373],[-161.626,41.96297],[-161.50313,41.960133],[-161.4642,41.95852],[-161.4091,41.95638],[-161.2221,41.94888],[-161.0486,41.94102],[-161.0296,41.93982],[-160.9806,41.93817],[-160.878,41.93447],[-160.7584,41.92892],[-160.6989,41.92638],[-160.5184,41.919133],[-160.5184,41.91913],[-160.3427,41.91175],[-160.2795,41.90935],[-160.1705,41.9033],[-160.05792,41.89685],[-160.0579,41.89685],[-160.0405,41.89587],[-160.0079,41.89382],[-159.9729,41.89153],[-159.9573,41.89063],[-159.9119,41.88799],[-159.8793,41.88626],[-159.81173,41.882317],[-159.8071,41.88217],[-159.7259,41.87822],[-159.7041,41.87713],[-159.63885,41.8736],[-159.6389,41.8736],[-159.5375,41.86878],[-159.4769,41.86622],[-159.45161,41.865083],[-159.4516,41.86508],[-159.4179,41.86367],[-159.3435,41.86042],[-159.3,41.85803],[-159.2728,41.85683],[-159.20672,41.853833],[-159.2067,41.85383],[-159.1297,41.8502],[-159.04692,41.844733],[-159.0469,41.84473],[-159.0288,41.8435],[-158.91012,41.8348],[-158.8691,41.8326],[-158.73088,41.824183],[-158.7309,41.82418],[-158.688,41.82173],[-158.6618,41.82013],[-158.51793,41.811067],[-158.5179,41.81107],[-158.4818,41.80832],[-158.4606,41.806733],[-158.3788,41.80087],[-158.32615,41.797433],[-158.3261,41.79743],[-158.2265,41.79113],[-158.18535,41.788483],[-158.1853,41.78848],[-158.1633,41.78725],[-158.02676,41.779983],[-158.0268,41.77998],[-158.014,41.7793],[-157.88089,41.77342],[-157.8809,41.77342],[-157.8492,41.7722],[-157.824,41.77117],[-157.791,41.76863],[-157.74751,41.764933],[-157.7475,41.76493],[-157.7064,41.76105],[-157.6792,41.75882],[-157.631,41.7547],[-157.50161,41.742567],[-157.5016,41.74257],[-157.4768,41.74057],[-157.37549,41.734917],[-157.3755,41.73492],[-157.25113,41.728297],[-157.2511,41.7283],[-157.12581,41.721783],[-157.1258,41.72178],[-157.01349,41.714317],[-157.0135,41.71432],[-156.9952,41.71292],[-156.85803,41.701617],[-156.858,41.70162],[-156.7791,41.69385],[-156.72667,41.68885],[-156.7267,41.68885],[-156.6342,41.67995],[-156.6008,41.67685],[-156.52593,41.6695],[-156.5259,41.6695],[-156.5164,41.66843],[-156.392,41.658537],[-156.392,41.65854],[-156.3518,41.65565],[-156.26623,41.649433],[-156.2662,41.64943],[-156.1362,41.64035],[-156.129,41.6398],[-156.0151,41.63153],[-155.96697,41.628583],[-155.967,41.62858],[-155.84967,41.621267],[-155.8497,41.62127],[-155.7661,41.61488],[-155.68365,41.608683],[-155.6483,41.60552],[-155.51809,41.590767],[-155.5181,41.59077],[-155.3918,41.5767],[-155.36201,41.5734],[-155.362,41.5734],[-155.3524,41.57238],[-155.3422,41.5713],[-155.3247,41.56965],[-155.27759,41.564383],[-155.2776,41.56438],[-155.1415,41.54993],[-154.98085,41.537533],[-154.9809,41.53753],[-154.8807,41.52957],[-154.8656,41.52823],[-154.58767,41.504283],[-154.5877,41.50428],[-154.39491,41.486583],[-154.3949,41.48658],[-154.2925,41.4771],[-154.27435,41.4753],[-154.2653,41.47441],[-154.2446,41.4727],[-154.1842,41.46712],[-154.14461,41.463367],[-154.1446,41.46337],[-154.0801,41.45705],[-154.0313,41.45189],[-153.91925,41.440967],[-153.9193,41.44097],[-153.9021,41.43927],[-153.86167,41.435067],[-153.8562,41.43447],[-153.8228,41.43107],[-153.8081,41.42968],[-153.7827,41.42673],[-153.67963,41.414433],[-153.6796,41.41443],[-153.61,41.40667],[-153.5576,41.401183],[-153.5576,41.40118],[-153.4517,41.38965],[-153.44072,41.38855],[-153.4407,41.38855],[-153.3832,41.38247],[-153.3709,41.38117],[-153.3099,41.37498],[-153.20239,41.363717],[-153.2024,41.36372],[-153.1737,41.36092],[-153.13941,41.357617],[-153.1394,41.35762],[-153.0833,41.35193],[-153.0587,41.34922],[-153.01333,41.34335],[-153.0133,41.34335],[-152.9959,41.34117],[-152.8889,41.32775],[-152.87768,41.326517],[-152.8244,41.32067],[-152.7337,41.31062],[-152.57409,41.292867],[-152.5741,41.29287],[-152.5537,41.29082],[-152.50487,41.28595],[-152.5049,41.28595],[-152.4593,41.28131],[-152.3895,41.27408],[-152.35159,41.270233],[-152.35159,41.270233],[-152.3516,41.27023],[-152.3086,41.2653],[-152.2487,41.25827],[-152.19735,41.252433],[-152.19735,41.252433],[-152.1596,41.24822],[-152.1487,41.24687],[-152.02641,41.231883],[-152.02641,41.231883],[-152.0264,41.23188],[-151.9936,41.22787],[-151.93308,41.220087],[-151.93308,41.220087],[-151.9331,41.22009],[-151.8838,41.2138],[-151.8219,41.20598],[-151.79928,41.202983],[-151.79928,41.202983],[-151.793,41.20215],[-151.64939,41.18425],[-151.64939,41.18425],[-151.6494,41.18425],[-151.5091,41.16868],[-151.45288,41.16223],[-151.45288,41.16223],[-151.4529,41.16223],[-151.33816,41.147417],[-151.33816,41.147417],[-151.3382,41.14742],[-151.3139,41.14443],[-151.2966,41.14202],[-151.19973,41.130347],[-151.19973,41.130347],[-151.1997,41.13035],[-151.1704,41.12655],[-151.05692,41.1138],[-151.05692,41.1138],[-151.0569,41.1138],[-150.9687,41.10205],[-150.9429,41.09828],[-150.9231,41.09523],[-150.88523,41.089613],[-150.88523,41.089613],[-150.8852,41.08961],[-150.8195,41.08013],[-150.7867,41.07575],[-150.66735,41.058917],[-150.66735,41.058917],[-150.6673,41.05892],[-150.6248,41.05345],[-150.52868,41.04105],[-150.52868,41.04105],[-150.5287,41.04105],[-150.4876,41.0357],[-150.43352,41.028717],[-150.43352,41.028717],[-150.4335,41.02872],[-150.4072,41.02523],[-150.3196,41.013983],[-150.3196,41.013983],[-150.2832,41.00965],[-150.1883,40.99657],[-150.04109,40.976083],[-150.04109,40.976083],[-150.0411,40.97608],[-150.00641,40.971083],[-150.00641,40.971083],[-150.0064,40.97108],[-149.9105,40.95743],[-149.87765,40.95255],[-149.87765,40.95255],[-149.8777,40.95255],[-149.7989,40.94143],[-149.7628,40.93608],[-149.66153,40.92108],[-149.66153,40.92108],[-149.6615,40.92108],[-149.6255,40.91548],[-149.52796,40.90105],[-149.52796,40.90105],[-149.528,40.90105],[-149.3836,40.88145],[-149.3836,40.88145],[-149.3836,40.88145],[-149.3498,40.87658],[-149.26829,40.865033],[-149.26829,40.865033],[-149.2683,40.86503],[-149.2198,40.85817],[-149.1462,40.84813],[-149.11183,40.843267],[-149.11183,40.843267],[-149.1118,40.84327],[-148.9873,40.82635],[-148.96149,40.82295],[-148.96149,40.82295],[-148.9615,40.82295],[-148.8865,40.81235],[-148.8396,40.80598],[-148.74676,40.792983],[-148.74676,40.792983],[-148.7029,40.7856],[-148.632,40.772817],[-148.632,40.772817],[-148.632,40.77282],[-148.5573,40.76042],[-148.5447,40.75828],[-148.52635,40.7553],[-148.52635,40.7553],[-148.5016,40.7514],[-148.36979,40.731483],[-148.36979,40.731483],[-148.3698,40.73148],[-148.2385,40.71107],[-148.10569,40.6904],[-148.10569,40.6904],[-148.1057,40.6904],[-147.94043,40.664433],[-147.94043,40.664433],[-147.9404,40.66443],[-147.78747,40.639253],[-147.78747,40.639253],[-147.7603,40.63507],[-147.60052,40.610033],[-147.60052,40.610033],[-147.6005,40.61003],[-147.46985,40.590133],[-147.46985,40.590133],[-147.4698,40.59013],[-147.30572,40.565633],[-147.30572,40.565633],[-147.2599,40.55883],[-147.2357,40.55535],[-147.18869,40.5485],[-147.18869,40.5485],[-147.1887,40.5485],[-147.1359,40.53938],[-147.1219,40.53668],[-147.0834,40.53002],[-147.06799,40.5272],[-147.06799,40.5272],[-146.9861,40.51293],[-146.9612,40.50897],[-146.92775,40.50337],[-146.92775,40.50337],[-146.8443,40.489],[-146.8052,40.48287],[-146.70933,40.466733],[-146.70933,40.466733],[-146.7093,40.46673],[-146.63176,40.453883],[-146.63176,40.453883],[-146.6318,40.45388],[-146.6018,40.44893],[-146.5073,40.43315],[-146.45848,40.424667],[-146.45848,40.424667],[-146.4585,40.42467],[-146.3514,40.406383],[-146.3514,40.406383],[-146.3514,40.40638],[-146.2955,40.39685],[-146.2686,40.39215],[-146.16756,40.37462],[-146.16756,40.37462],[-146.1676,40.37462],[-146.133,40.36875],[-146.1039,40.364],[-146.0736,40.3587],[-146.00101,40.3455],[-146.00101,40.3455],[-146.001,40.3455],[-145.9809,40.34198],[-145.9691,40.33998],[-145.91163,40.329483],[-145.91163,40.329483],[-145.9116,40.32948],[-145.9005,40.3274],[-145.8457,40.31697],[-145.8127,40.31105],[-145.7775,40.30532],[-145.75495,40.301383],[-145.75495,40.301383],[-145.7549,40.30138],[-145.7213,40.29555],[-145.6851,40.28957],[-145.6092,40.27638],[-145.56721,40.26895],[-145.56721,40.26895],[-145.5672,40.26895],[-145.526,40.26145],[-145.4481,40.24745],[-145.4281,40.24387],[-145.39,40.23658],[-145.36708,40.232133],[-145.36708,40.232133],[-145.3671,40.23213],[-145.3293,40.22472],[-145.2909,40.21757],[-145.2763,40.21493],[-145.18096,40.197383],[-145.18096,40.197383],[-145.181,40.19738],[-145.148,40.19175],[-145.1379,40.19007],[-145.05583,40.17585],[-145.05583,40.17585],[-145.0558,40.17585],[-145.0283,40.17137],[-145.0048,40.16751],[-144.94848,40.157587],[-144.94848,40.157587],[-144.9485,40.15759],[-144.8985,40.1487],[-144.8464,40.1399],[-144.80928,40.13378],[-144.80928,40.13378],[-144.8093,40.13378],[-144.67835,40.1085],[-144.67835,40.1085],[-144.6783,40.1085],[-144.6474,40.10182],[-144.48585,40.065383],[-144.48585,40.065383],[-144.4859,40.06538],[-144.4675,40.06182],[-144.3822,40.045763],[-144.3822,40.045763],[-144.3822,40.04576],[-144.3618,40.04173],[-144.27376,40.025317],[-144.27376,40.025317],[-144.2738,40.02532],[-144.2286,40.01643],[-144.2038,40.01178],[-144.1574,40.00265],[-144.11983,39.9952],[-144.11983,39.9952],[-144.1198,39.9952],[-144.0141,39.97555],[-143.98675,39.970183],[-143.98675,39.970183],[-143.9867,39.97018],[-143.8911,39.95258],[-143.8765,39.95012],[-143.84881,39.945467],[-143.84881,39.945467],[-143.8488,39.94547],[-143.796,39.9356],[-143.7581,39.92857],[-143.72928,39.923017],[-143.72928,39.923017],[-143.7293,39.92302],[-143.6895,39.91568],[-143.6725,39.91277],[-143.6489,39.90773],[-143.53812,39.885017],[-143.53812,39.885017],[-143.5381,39.88502],[-143.428,39.862183],[-143.428,39.862183],[-143.428,39.86218],[-143.4025,39.8572],[-143.31885,39.840217],[-143.31885,39.840217],[-143.2983,39.83622],[-143.1746,39.8117],[-143.1746,39.8117],[-143.1746,39.8117],[-143.0747,39.79233],[-143.043,39.7857],[-142.96236,39.769987],[-142.96236,39.769987],[-142.9624,39.76999],[-142.9267,39.76285],[-142.85015,39.7473],[-142.85015,39.7473],[-142.8501,39.7473],[-142.8096,39.73903],[-142.73861,39.723933],[-142.73861,39.723933],[-142.7386,39.72393],[-142.6863,39.71252],[-142.48479,39.669133],[-142.48479,39.669133],[-142.4848,39.66913],[-142.4599,39.66376],[-142.4329,39.65777],[-142.3668,39.64308],[-142.33003,39.634767],[-142.33003,39.634767],[-142.33,39.63477],[-142.2398,39.61455],[-142.20501,39.606617],[-142.20501,39.606617],[-142.205,39.60662],[-142.0901,39.58207],[-142.0636,39.577013],[-142.0636,39.577013],[-142.0636,39.57701],[-142.0021,39.56488],[-141.91427,39.547797],[-141.91427,39.547797],[-141.9143,39.5478],[-141.8806,39.54128],[-141.75432,39.517367],[-141.75432,39.517367],[-141.7543,39.51737],[-141.63095,39.490933],[-141.63095,39.490933],[-141.631,39.49093],[-141.50564,39.461567],[-141.50564,39.461567],[-141.5056,39.46157],[-141.4659,39.45205],[-141.4513,39.44812],[-141.438,39.44447],[-141.3824,39.43173],[-141.20177,39.39125],[-141.20177,39.39125],[-141.2018,39.39125],[-141.03873,39.354367],[-141.03873,39.354367],[-141.0387,39.35437],[-140.8691,39.31737],[-140.8537,39.31393],[-140.7588,39.29352],[-140.7239,39.28573],[-140.6352,39.26495],[-140.5306,39.23938],[-140.4937,39.231],[-140.3819,39.20777],[-140.258,39.17913],[-140.2335,39.17398],[-140.2167,39.17031],[-140.1548,39.15647],[-140.1289,39.15063],[-140.092,39.14242],[-140.0436,39.13157],[-140.0344,39.1293],[-139.9929,39.11985],[-139.902,39.09823],[-139.7693,39.06572],[-139.7118,39.05113],[-139.6367,39.03187],[-139.587,39.01982],[-139.5663,39.01507],[-139.5038,39.0005],[-139.4803,38.99522],[-139.435,38.98527],[-139.4129,38.98075],[-139.35808,38.96895],[-139.35808,38.96895],[-139.3581,38.96895],[-139.3287,38.96258],[-139.29495,38.954267],[-139.29495,38.954267],[-139.295,38.95427],[-139.2271,38.9376],[-139.1657,38.92227],[-139.1245,38.91128],[-139.11,38.90718],[-139.0754,38.89785],[-138.9763,38.87095],[-138.9529,38.86458],[-138.9182,38.85535],[-138.8796,38.8452],[-138.8419,38.83707],[-138.8169,38.83168],[-138.7671,38.8209],[-138.7368,38.8143],[-138.6597,38.79842],[-138.6321,38.79172],[-138.54816,38.7692],[-138.54816,38.7692],[-138.5482,38.7692],[-138.5234,38.76243],[-138.4973,38.75542],[-138.46913,38.74785],[-138.46913,38.74785],[-138.4691,38.74785],[-138.4336,38.73868],[-138.3875,38.7269],[-138.32716,38.711033],[-138.32716,38.711033],[-138.3272,38.71103],[-138.2775,38.69783],[-138.14209,38.662103],[-138.14209,38.662103],[-138.1421,38.6621],[-138.03209,38.634567],[-138.03209,38.634567],[-138.0321,38.63457],[-138.0117,38.62947],[-137.93836,38.611817],[-137.93836,38.611817],[-137.9384,38.61182],[-137.8794,38.5988],[-137.8417,38.5901],[-137.83676,38.58915],[-137.83676,38.58915],[-137.8084,38.5827],[-137.70505,38.559017],[-137.70505,38.559017],[-137.705,38.55902],[-137.5962,38.53478],[-137.5486,38.52515],[-137.5486,38.52515],[-137.5486,38.52515],[-137.5117,38.51722],[-137.42869,38.500583],[-137.42869,38.500583],[-137.4287,38.50058],[-137.3995,38.49315],[-137.3683,38.48485],[-137.26723,38.455917],[-137.26723,38.455917],[-137.2672,38.45592],[-137.2407,38.44868],[-137.15503,38.422917],[-137.15503,38.422917],[-137.155,38.42292],[-137.1109,38.40908],[-137.03407,38.385617],[-137.03407,38.385617],[-137.0341,38.38562],[-136.93713,38.357717],[-136.93713,38.357717],[-136.9371,38.35772],[-136.8503,38.33473],[-136.7443,38.30692],[-136.7033,38.29627],[-136.6395,38.27832],[-136.61275,38.271083],[-136.61275,38.271083],[-136.6127,38.27108],[-136.52069,38.245683],[-136.52069,38.245683],[-136.5207,38.24568],[-136.4875,38.23718],[-136.37881,38.208467],[-136.37881,38.208467],[-136.3788,38.20847],[-136.29129,38.181117],[-136.29129,38.181117],[-136.2913,38.18112],[-136.2665,38.17338],[-136.18047,38.147433],[-136.18047,38.147433],[-136.1805,38.14743],[-136.12,38.13092],[-136.02819,38.106217],[-136.02819,38.106217],[-136.0282,38.10622],[-135.9103,38.07525],[-135.88281,38.067967],[-135.88281,38.067967],[-135.8156,38.04998],[-135.7934,38.04402],[-135.70887,38.020717],[-135.70887,38.020717],[-135.7089,38.02072],[-135.6593,38.00692],[-135.59903,37.990067],[-135.59903,37.990067],[-135.5519,37.97667],[-135.4805,37.95695],[-135.43787,37.944383],[-135.43787,37.944383],[-135.3364,37.915817],[-135.3364,37.915817],[-135.3364,37.91582],[-135.22109,37.882367],[-135.22109,37.882367],[-135.2211,37.88237],[-135.08239,37.84475],[-135.08239,37.84475],[-135.0824,37.84475],[-134.92127,37.79885],[-134.92127,37.79885],[-134.9213,37.79885],[-134.79843,37.761183],[-134.79843,37.761183],[-134.7984,37.76118],[-134.7881,37.75788],[-134.68849,37.727117],[-134.68849,37.727117],[-134.6885,37.72712],[-134.6692,37.72127],[-134.6417,37.71353],[-134.53819,37.683583],[-134.53819,37.683583],[-134.50708,37.674433],[-134.50708,37.674433],[-134.5071,37.67443],[-134.405,37.64378],[-134.37223,37.633933],[-134.37223,37.633933],[-134.3722,37.63393],[-134.3569,37.62937],[-134.2828,37.60725],[-134.25063,37.599117],[-134.25063,37.599117],[-134.2506,37.59912],[-134.2273,37.59313],[-134.1386,37.5705],[-134.1386,37.5705],[-134.1386,37.5705],[-134.0856,37.55572],[-134.0699,37.5512],[-134.0327,37.54082],[-133.97967,37.525333],[-133.97967,37.525333],[-133.9613,37.52003],[-133.9252,37.50988],[-133.82479,37.480583],[-133.82479,37.480583],[-133.8248,37.48058],[-133.8044,37.47408],[-133.73815,37.4548],[-133.73815,37.4548],[-133.7381,37.4548],[-133.7122,37.44777],[-133.6823,37.4383],[-133.64855,37.427733],[-133.64855,37.427733],[-133.6485,37.42773],[-133.6241,37.41992],[-133.566,37.40112],[-133.543,37.39357],[-133.51895,37.38582],[-133.51895,37.38582],[-133.519,37.38582],[-133.4985,37.37933],[-133.40689,37.3501],[-133.40689,37.3501],[-133.4069,37.3501],[-133.38,37.3415],[-133.3399,37.3292],[-133.3074,37.32042],[-133.2048,37.291113],[-133.2048,37.291113],[-133.2048,37.29111],[-133.13672,37.2687],[-133.13672,37.2687],[-133.1367,37.2687],[-133.1091,37.26068],[-133.0715,37.25062],[-133.0164,37.23478],[-132.97115,37.2214],[-132.97115,37.2214],[-132.9711,37.2214],[-132.9413,37.21264],[-132.8985,37.19865],[-132.87272,37.190133],[-132.87272,37.190133],[-132.8727,37.19013],[-132.8475,37.18178],[-132.8,37.16678],[-132.7603,37.1533],[-132.737,37.145683],[-132.737,37.145683],[-132.737,37.14568],[-132.7146,37.13828],[-132.61625,37.107667],[-132.61625,37.107667],[-132.6163,37.10767],[-132.5831,37.09867],[-132.5514,37.08978],[-132.524,37.08313],[-132.45112,37.06235],[-132.45112,37.06235],[-132.4511,37.06235],[-132.4199,37.05357],[-132.35493,37.034753],[-132.35493,37.034753],[-132.3259,37.02617],[-132.20007,36.975],[-132.20007,36.975],[-132.2001,36.975],[-132.184,36.9682],[-132.11199,36.941733],[-132.11199,36.941733],[-132.112,36.94173],[-132.0393,36.92155],[-131.98447,36.905883],[-131.98447,36.905883],[-131.9845,36.90588],[-131.91521,36.88582],[-131.91521,36.88582],[-131.9037,36.8826],[-131.8809,36.87634],[-131.8138,36.85546],[-131.71741,36.827033],[-131.71741,36.827033],[-131.6908,36.81835],[-131.62868,36.79795],[-131.62868,36.79795],[-131.6287,36.79795],[-131.5888,36.78455],[-131.49581,36.753133],[-131.49581,36.753133],[-131.4958,36.75313],[-131.4822,36.74863],[-131.40932,36.723567],[-131.40932,36.723567],[-131.4093,36.72357],[-131.3672,36.70865],[-131.33052,36.695167],[-131.33052,36.695167],[-131.3305,36.69517],[-131.3095,36.68795],[-131.2843,36.67922],[-131.20693,36.6535],[-131.20693,36.6535],[-131.2069,36.6535],[-131.1726,36.64388],[-131.0957,36.6211],[-131.07012,36.61375],[-131.07012,36.61375],[-131.0701,36.61375],[-130.87765,36.553397],[-130.87765,36.553397],[-130.8777,36.5534],[-130.7968,36.52492],[-130.79283,36.5236],[-130.79283,36.5236],[-130.74863,36.5094],[-130.74863,36.5094],[-130.57167,36.452183],[-130.57167,36.452183],[-130.5717,36.45218],[-130.49045,36.425833],[-130.49045,36.425833],[-130.4904,36.42583],[-130.38392,36.388017],[-130.38392,36.388017],[-130.3839,36.38802],[-130.28673,36.354683],[-130.28673,36.354683],[-130.2867,36.35468],[-130.2663,36.34773],[-130.1934,36.32242],[-130.16388,36.312867],[-130.16388,36.312867],[-130.1639,36.31287],[-130.101,36.29108],[-130.0016,36.258433],[-130.0016,36.258433],[-130.0016,36.25843],[-129.9683,36.24669],[-129.9018,36.22397],[-129.9018,36.22397],[-129.9018,36.22397],[-129.80159,36.18955],[-129.80159,36.18955],[-129.8016,36.18955],[-129.7302,36.16497],[-129.68816,36.151367],[-129.68816,36.151367],[-129.6882,36.15137],[-129.59733,36.11925],[-129.59733,36.11925],[-129.5973,36.11925],[-129.43092,36.062867],[-129.43092,36.062867],[-129.4309,36.06287],[-129.30437,36.01955],[-129.30437,36.01955],[-129.2806,36.01103],[-129.27081,36.007617],[-129.27081,36.007617],[-129.2708,36.00762],[-129.1789,35.97517],[-129.09628,35.945667],[-129.09628,35.945667],[-129.0963,35.94567],[-129.0576,35.93195],[-129.03595,35.92407],[-129.03595,35.92407],[-129.0359,35.92407],[-129.0024,35.9115],[-128.9794,35.90273],[-128.91373,35.879],[-128.91373,35.879],[-128.9137,35.879],[-128.8914,35.87117],[-128.81829,35.845317],[-128.81829,35.845317],[-128.8183,35.84532],[-128.7944,35.83705],[-128.69149,35.80225],[-128.69149,35.80225],[-128.6915,35.80225],[-128.6489,35.78617],[-128.6254,35.77733],[-128.58907,35.765],[-128.58907,35.765],[-128.5891,35.765],[-128.5478,35.75065],[-128.5136,35.73915],[-128.40547,35.702767],[-128.40547,35.702767],[-128.4055,35.70277],[-128.3896,35.69742],[-128.33189,35.675967],[-128.33189,35.675967],[-128.3319,35.67597],[-128.2574,35.64865],[-128.2574,35.64865],[-128.2574,35.64865],[-128.2103,35.63267],[-128.10301,35.595133],[-128.10301,35.595133],[-128.103,35.59513],[-127.99889,35.557117],[-127.99889,35.557117],[-127.9989,35.55712],[-127.9584,35.5419],[-127.90768,35.521083],[-127.90768,35.521083],[-127.9077,35.52108],[-127.8707,35.5057],[-127.8074,35.48063],[-127.69393,35.4399],[-127.69393,35.4399],[-127.6939,35.4399],[-127.6572,35.42698],[-127.62259,35.41525],[-127.62259,35.41525],[-127.6226,35.41525],[-127.5483,35.38932],[-127.5316,35.38332],[-127.47933,35.363333],[-127.47933,35.363333],[-127.4793,35.36333],[-127.4537,35.3538],[-127.4088,35.33669],[-127.3881,35.32865],[-127.36285,35.319083],[-127.36285,35.319083],[-127.3629,35.31908],[-127.3453,35.31223],[-127.2722,35.28433],[-127.23653,35.270483],[-127.23653,35.270483],[-127.2365,35.27048],[-127.2023,35.25718],[-127.1516,35.23782],[-127.12156,35.226333],[-127.12156,35.226333],[-127.1216,35.22633],[-127.0814,35.2112],[-127.0671,35.20658],[-127.0463,35.19978],[-126.96012,35.17265],[-126.96012,35.17265],[-126.9601,35.17265],[-126.9379,35.16565],[-126.9181,35.15923],[-126.835,35.128883],[-126.835,35.128883],[-126.835,35.12888],[-126.8247,35.12525],[-126.79385,35.113817],[-126.79385,35.113817],[-126.7939,35.11382],[-126.7408,35.09255],[-126.6684,35.0641],[-126.6684,35.0641],[-126.6684,35.0641],[-126.6556,35.05908],[-126.55272,35.019733],[-126.55272,35.019733],[-126.5527,35.01973],[-126.44707,34.97635],[-126.44707,34.97635],[-126.4471,34.97635],[-126.4203,34.9653],[-126.3708,34.94495],[-126.34963,34.936767],[-126.34963,34.936767],[-126.3496,34.93677],[-126.2549,34.89965],[-126.18739,34.872817],[-126.18739,34.872817],[-126.1874,34.87282],[-126.1641,34.86362],[-126.05612,34.82147],[-126.05612,34.82147],[-126.0561,34.82147],[-126.0383,34.81422],[-125.9994,34.799883],[-125.9994,34.799883],[-125.9994,34.79988],[-125.9794,34.79268],[-125.94027,34.77865],[-125.94027,34.77865],[-125.9403,34.77865],[-125.9337,34.77638],[-125.9316,34.77578],[-125.9288,34.77438],[-125.92296,34.764283],[-125.92296,34.764283],[-125.923,34.76428],[-125.91809,34.749133],[-125.91809,34.749133],[-125.9181,34.74913],[-125.9164,34.73685],[-125.91545,34.731617],[-125.91545,34.731617],[-125.9155,34.73162],[-125.9123,34.7226],[-125.90029,34.7155],[-125.90029,34.7155],[-125.9003,34.7155],[-125.83888,34.701033],[-125.83888,34.701033],[-125.8389,34.70103],[-125.67192,34.6494],[-125.67192,34.6494],[-125.6719,34.6494],[-125.60127,34.62742],[-125.60127,34.62742],[-125.6013,34.62742],[-125.5823,34.62123],[-125.46032,34.58615],[-125.46032,34.58615],[-125.4603,34.58615],[-125.3696,34.55748],[-125.29535,34.529033],[-125.29535,34.529033],[-125.2953,34.52903],[-125.26,34.520083],[-125.26,34.520083],[-125.10781,34.517233],[-125.10781,34.517233],[-125.1078,34.51723],[-125.0641,34.51715],[-125.0192,34.5172],[-125.0192,34.5172],[-125.0118,34.51735],[-124.9128,34.5167],[-124.9128,34.5167],[-124.911,34.51668],[-124.81408,34.51355],[-124.81408,34.51355],[-124.8141,34.51355],[-124.7403,34.51058],[-124.6652,34.50782],[-124.6652,34.507817],[-124.6652,34.507817],[-124.6533,34.5074],[-124.6393,34.50728],[-124.49935,34.50515],[-124.49935,34.50515],[-124.4993,34.50515],[-124.4782,34.505067],[-124.4782,34.505067],[-124.4782,34.50507],[-124.3907,34.50445],[-124.36463,34.50425],[-124.36463,34.50425],[-124.3646,34.50425],[-124.337,34.50352],[-124.2951,34.5026],[-124.2386,34.501383],[-124.2386,34.501383],[-124.2386,34.50138],[-124.2049,34.50072],[-124.1837,34.50006],[-124.11368,34.498833],[-124.11368,34.498833],[-124.0938,34.49852],[-124.01705,34.496867],[-124.01705,34.496867],[-124.0171,34.49687],[-123.9885,34.49627],[-123.9595,34.49563],[-123.92455,34.495033],[-123.92455,34.495033],[-123.9245,34.49503],[-123.8296,34.49222],[-123.72492,34.490533],[-123.72492,34.490533],[-123.7249,34.49053],[-123.7099,34.49026],[-123.62505,34.489767],[-123.62505,34.489767],[-123.6251,34.48977],[-123.58872,34.4891],[-123.58872,34.4891],[-123.5887,34.4891],[-123.5009,34.48732],[-123.47005,34.4869],[-123.47005,34.4869],[-123.4701,34.4869],[-123.4327,34.48632],[-123.4187,34.48612],[-123.37299,34.48555],[-123.37299,34.48555],[-123.373,34.48555],[-123.345,34.48492],[-123.3209,34.48421],[-123.228,34.48275],[-123.1729,34.4819],[-123.17295,34.4819],[-123.17295,34.4819],[-123.1575,34.48167],[-123.13255,34.481533],[-123.13255,34.481533],[-123.1325,34.48153],[-123.0779,34.48174],[-123.0623,34.48178],[-123.0369,34.48205],[-123.03445,34.482033],[-123.03445,34.482033],[-123.0085,34.48141],[-122.9632,34.47937],[-122.9505,34.47867],[-122.94933,34.478613],[-122.94933,34.478613],[-122.9331,34.47763],[-122.9123,34.47635],[-122.9049,34.47595],[-122.8729,34.47387],[-122.8566,34.47283],[-122.8495,34.47237],[-122.8377,34.47157],[-122.80773,34.469933],[-122.80773,34.469933],[-122.8077,34.46993],[-122.7796,34.4687],[-122.763,34.46835],[-122.7478,34.46798],[-122.7375,34.46786],[-122.73633,34.46785],[-122.73633,34.46785],[-122.7296,34.46785],[-122.7204,34.46793],[-122.7019,34.46813],[-122.6915,34.46813],[-122.6786,34.46817],[-122.6695,34.46822],[-122.6489,34.46863],[-122.62496,34.468917],[-122.62496,34.468917],[-122.625,34.46892],[-122.6135,34.46915],[-122.5645,34.46977],[-122.5565,34.46995],[-122.5438,34.47027],[-122.5352,34.47053],[-122.5141,34.47115],[-122.51413,34.47115],[-122.51413,34.47115],[-122.5004,34.47157],[-122.4912,34.47177],[-122.4721,34.47147],[-122.4596,34.47108],[-122.4473,34.47077],[-122.4393,34.47068],[-122.4291,34.47055],[-122.42915,34.47055],[-122.42915,34.47055],[-122.4175,34.47033],[-122.4079,34.46997],[-122.3971,34.4697],[-122.3873,34.46953],[-122.3738,34.4693],[-122.3618,34.46908],[-122.3459,34.46862],[-122.3338,34.46837],[-122.3204,34.46817],[-122.31319,34.467833],[-122.31319,34.467833],[-122.3095,34.46782],[-122.2901,34.46733],[-122.2791,34.46697],[-122.2565,34.46643],[-122.2442,34.466],[-122.2267,34.46547],[-122.1964,34.46449],[-122.19643,34.464487],[-122.1765,34.46387],[-122.1681,34.46357],[-122.1616,34.46185],[-122.1604,34.46133],[-122.16036,34.461333],[-122.1591,34.46068],[-122.1578,34.45997],[-122.1553,34.45837],[-122.1523,34.45847],[-122.1495,34.46],[-122.1473,34.46181],[-122.1417,34.46425],[-122.1395,34.46337],[-122.13939,34.463283],[-122.1384,34.46275],[-122.137,34.462],[-122.136,34.4614],[-122.1326,34.45962],[-122.1314,34.4588],[-122.1286,34.45453],[-122.11956,34.457533],[-122.1176,34.45842],[-122.1124,34.4596],[-122.0987,34.45863],[-122.0863,34.45783],[-122.0684,34.45742],[-122.06001,34.457217],[-122.056,34.45715],[-122.0375,34.45657],[-122.0283,34.45617],[-122.0162,34.45564],[-121.9956,34.45488],[-121.9823,34.45428],[-121.9672,34.45357],[-121.96428,34.453467],[-121.957,34.45317],[-121.9485,34.45278],[-121.9367,34.45275],[-121.9256,34.45292],[-121.9183,34.45307],[-121.9092,34.45318],[-121.8993,34.45325],[-121.8906,34.45333],[-121.8792,34.45337],[-121.8688,34.45341],[-121.8616,34.45345],[-121.8499,34.45335],[-121.84287,34.453333],[-121.8402,34.45333],[-121.8275,34.45333],[-121.8153,34.45347],[-121.8069,34.4536],[-121.7961,34.45372],[-121.787,34.4538],[-121.7761,34.45403],[-121.7681,34.4544],[-121.76033,34.454583],[-121.7565,34.45448],[-121.7474,34.45463],[-121.7345,34.45488],[-121.7226,34.45505],[-121.7122,34.45525],[-121.7019,34.45547],[-121.6912,34.45558],[-121.6822,34.45572],[-121.6711,34.45585],[-121.6593,34.4559],[-121.6515,34.456],[-121.6438,34.45612],[-121.6362,34.45627],[-121.6264,34.45658],[-121.6167,34.45685],[-121.6067,34.45707],[-121.59881,34.45725],[-121.5969,34.45725],[-121.5878,34.45735],[-121.5814,34.45755],[-121.5715,34.45793],[-121.5609,34.45782],[-121.5504,34.45767],[-121.5386,34.45753],[-121.5296,34.45735],[-121.5186,34.45702],[-121.5077,34.45672],[-121.4972,34.45633],[-121.4861,34.45578],[-121.4759,34.45515],[-121.47009,34.454783],[-121.465,34.45448],[-121.4557,34.45405],[-121.4451,34.45355],[-121.4355,34.45303],[-121.4257,34.45262],[-121.413,34.45201],[-121.4022,34.45158],[-121.39,34.45102],[-121.3807,34.45063],[-121.37712,34.4505],[-121.3699,34.45022],[-121.3596,34.44978],[-121.3511,34.44945],[-121.3418,34.44903],[-121.3313,34.4486],[-121.3206,34.44807],[-121.3114,34.44781],[-121.3018,34.4476],[-121.2918,34.4472],[-121.2832,34.4468],[-121.27601,34.446617],[-121.2741,34.44655],[-121.2646,34.44641],[-121.2544,34.44617],[-121.2453,34.446],[-121.2364,34.44572],[-121.2281,34.44542],[-121.2192,34.44508],[-121.2096,34.44473],[-121.1988,34.44425],[-121.1896,34.44395],[-121.1789,34.44368],[-121.1692,34.44347],[-121.1608,34.44327],[-121.1523,34.44295],[-121.143,34.4426],[-121.14056,34.442517],[-121.1345,34.44232],[-121.124,34.44197],[-121.1145,34.4418],[-121.1055,34.44167],[-121.0962,34.44168],[-121.0872,34.44173],[-121.0784,34.4418],[-121.0701,34.44178],[-121.0611,34.4419],[-121.0495,34.44197],[-121.0392,34.44202],[-121.0301,34.44205],[-121.0205,34.44198],[-121.0114,34.44188],[-121.00475,34.4413],[-120.9981,34.44018],[-120.9895,34.43822],[-120.9808,34.43607],[-120.9701,34.4336],[-120.9601,34.43118],[-120.9512,34.42905],[-120.9423,34.42705],[-120.9342,34.42535],[-120.9264,34.42375],[-120.92179,34.422783],[-120.9162,34.42153],[-120.9079,34.41965],[-120.8992,34.4177],[-120.891,34.41587],[-120.8824,34.41397],[-120.873,34.41185],[-120.8643,34.40978],[-120.8562,34.4078],[-120.8479,34.4058],[-120.8387,34.40362],[-120.8306,34.40167],[-120.82716,34.400833],[-120.8219,34.39963],[-120.8131,34.3976],[-120.8048,34.39565],[-120.7966,34.3936],[-120.7885,34.39165],[-120.7803,34.38968],[-120.7719,34.38754],[-120.7628,34.38523],[-120.7543,34.38307],[-120.7465,34.38107],[-120.7374,34.37888],[-120.7295,34.37703],[-120.721,34.37503],[-120.70949,34.372333],[-120.7084,34.37208],[-120.6981,34.36958],[-120.6903,34.36772],[-120.6779,34.36485],[-120.67,34.36298],[-120.6615,34.36097],[-120.653,34.35887],[-120.6446,34.3569],[-120.64003,34.355917],[-120.6367,34.35517],[-120.6282,34.35333],[-120.6203,34.35163],[-120.6124,34.34988],[-120.6038,34.348],[-120.5957,34.34618],[-120.587,34.3443],[-120.5789,34.34258],[-120.5708,34.34075],[-120.5614,34.33862],[-120.5528,34.33655],[-120.55167,34.336283],[-120.5447,34.3346],[-120.5359,34.3326],[-120.5237,34.3298],[-120.5141,34.3275],[-120.5053,34.32542],[-120.4967,34.32338],[-120.4877,34.32148],[-120.4783,34.31933],[-120.47,34.31743],[-120.4618,34.3156],[-120.453,34.31363],[-120.4447,34.31173],[-120.4369,34.3099],[-120.4239,34.30692],[-120.4198,34.305967],[-120.4156,34.30499],[-120.4067,34.3029],[-120.3983,34.30098],[-120.3893,34.29907],[-120.378,34.29668],[-120.3703,34.29503],[-120.3624,34.29343],[-120.3539,34.29172],[-120.3447,34.29002],[-120.3361,34.2883],[-120.33728,34.28855],[-120.323,34.28573],[-120.3117,34.28358],[-120.3029,34.28185],[-120.2927,34.28008],[-120.2837,34.27872],[-120.2755,34.2774],[-120.2621,34.27522],[-120.2529,34.27318],[-120.243,34.2708],[-120.2345,34.2687],[-120.2218,34.26553],[-120.2129,34.26333],[-120.2005,34.26027],[-120.20052,34.260267],[-120.1923,34.25827],[-120.1842,34.25618],[-120.1761,34.2541],[-120.1683,34.25208],[-120.1604,34.25002],[-120.1492,34.24707],[-120.1414,34.24497],[-120.1341,34.24306],[-120.1222,34.24],[-120.1139,34.23788],[-120.1026,34.23495],[-120.0924,34.23222],[-120.0841,34.22997],[-120.0761,34.22783],[-120.0683,34.22585],[-120.0603,34.22385],[-120.06083,34.223983],[-120.0533,34.2221],[-120.0459,34.2202],[-120.0372,34.21795],[-120.0297,34.21605],[-120.0205,34.21375],[-120.0124,34.21172],[-120.0043,34.20963],[-119.9938,34.20712],[-119.985,34.20528],[-119.97905,34.204067],[-119.9767,34.20362],[-119.9677,34.20187],[-119.9595,34.2001],[-119.9513,34.19832],[-119.9428,34.1965],[-119.935,34.19482],[-119.927,34.19305],[-119.9189,34.19115],[-119.91443,34.190133],[-119.9111,34.18937],[-119.9031,34.18752],[-119.8951,34.18562],[-119.8876,34.18393],[-119.8791,34.18198],[-119.8709,34.1803],[-119.8622,34.17853],[-119.85,34.17607],[-119.8417,34.17442],[-119.8329,34.17272],[-119.8244,34.17085],[-119.8163,34.16918],[-119.8083,34.16755],[-119.8007,34.16583],[-119.7922,34.16385],[-119.7838,34.16188],[-119.7748,34.15983],[-119.7669,34.15795],[-119.758,34.15588],[-119.7496,34.15393],[-119.7417,34.15208],[-119.74173,34.152083],[-119.7335,34.14993],[-119.7255,34.14788],[-119.7134,34.14468],[-119.7046,34.1425],[-119.6957,34.1403],[-119.6873,34.1383],[-119.6794,34.13622],[-119.6717,34.13418],[-119.66609,34.132883],[-119.6633,34.13222],[-119.6555,34.13035],[-119.6437,34.12753],[-119.6359,34.12572],[-119.6292,34.12417],[-119.621,34.1221],[-119.6111,34.1199],[-119.6041,34.11847],[-119.5969,34.11677],[-119.5899,34.11505],[-119.5824,34.1132],[-119.5743,34.11123],[-119.56993,34.11015],[-119.5667,34.10935],[-119.5588,34.10743],[-119.5515,34.10573],[-119.5441,34.10405],[-119.5362,34.1023],[-119.5287,34.10065],[-119.5207,34.09883],[-119.5143,34.09737],[-119.5047,34.09525],[-119.4971,34.0936],[-119.4888,34.09184],[-119.4813,34.09018],[-119.4735,34.08845],[-119.46636,34.08685],[-119.4631,34.08612],[-119.4527,34.08377],[-119.4449,34.08202],[-119.4383,34.08045],[-119.4318,34.07893],[-119.4246,34.07728],[-119.4171,34.07557],[-119.409,34.07372],[-119.4013,34.07198],[-119.39852,34.07135],[-119.3929,34.0701],[-119.3853,34.0684],[-119.3775,34.06676],[-119.3698,34.06513],[-119.3611,34.06335],[-119.3503,34.06112],[-119.3416,34.05937],[-119.3334,34.05763],[-119.3248,34.05582],[-119.3169,34.05412],[-119.3081,34.05217],[-119.3012,34.05063],[-119.2927,34.04872],[-119.2842,34.04685],[-119.2772,34.04475],[-119.269,34.04192],[-119.2614,34.03902],[-119.2542,34.0358],[-119.2474,34.0325],[-119.2377,34.02785],[-119.2309,34.0247],[-119.22567,34.02235],[-119.2233,34.02122],[-119.2166,34.018],[-119.2098,34.01467],[-119.20555,34.012537],[-119.2026,34.0111],[-119.1959,34.00783],[-119.1862,34.00313],[-119.1799,34.00002],[-119.1721,33.99622],[-119.1655,33.99292],[-119.1577,33.9891],[-119.151,33.98578],[-119.1442,33.98237],[-119.1383,33.97945],[-119.131,33.97583],[-119.1238,33.97235],[-119.1169,33.969],[-119.1063,33.9638],[-119.10487,33.9631],[-119.0989,33.96027],[-119.092,33.95707],[-119.0861,33.95424]]}}
{"type":"Feature","geometry":{"type":"LineString","coordinates":[[122.1432,29.91902],[122.1638,29.90505],[122.1784,29.88508],[122.1899,29.86563],[122.2017,29.84592],[122.20912,29.835533],[122.2142,29.82882],[122.2441,29.80105],[122.2627,29.78483],[122.2758,29.77502],[122.28481,29.768383],[122.2893,29.7651],[122.3086,29.75107],[122.3264,29.73885],[122.3511,29.72403],[122.3705,29.71385],[122.38683,29.703117],[122.3924,29.70007],[122.4146,29.68992],[122.4388,29.68268],[122.4708,29.67795],[122.4971,29.67523],[122.52475,29.67165],[122.5585,29.66562],[122.5918,29.67557],[122.6093,29.70067],[122.6266,29.72512],[122.64781,29.745117],[122.6532,29.74937],[122.6776,29.77015],[122.7064,29.786],[122.738,29.8021],[122.7775,29.82242],[122.8035,29.83572],[122.80625,29.8371],[122.8351,29.8542],[122.8617,29.87087],[122.8988,29.88962],[122.9326,29.90287],[122.9633,29.9208],[122.96923,29.924517],[122.991,29.94145],[122.9983,29.9473],[123.0815,29.99925],[123.1083,30.01063],[123.11681,30.012867],[123.1083,30.01063],[123.1918,30.03612],[123.2238,30.0476],[123.1834,30.03318],[123.2968,30.07392],[123.3318,30.08912],[123.3216,30.08463],[123.4001,30.11582],[123.4353,30.129],[123.4383,30.1301],[123.4733,30.14355],[123.4877,30.14908],[123.4996,30.15362],[123.4766,30.14483],[123.4659,30.14068],[123.4996,30.15362],[123.4766,30.14483],[123.7827,30.24063],[123.8121,30.25063],[123.8427,30.26205],[123.8746,30.27325],[129.061,31.01473],[129.1073,31.01097],[129.1501,31.00743],[129.1915,31.00363],[129.2283,30.99997],[129.2697,30.99515],[129.3077,30.9906],[129.342,30.98652],[129.3863,30.9809],[129.4269,30.97562],[129.4676,30.97027],[129.5071,30.9656],[129.5509,30.96132],[129.5877,30.95785],[129.626,30.9541],[129.6676,30.95065],[129.7074,30.94812],[129.7456,30.946],[129.7874,30.94372],[129.8264,30.94115],[129.8663,30.93792],[129.9055,30.93408],[129.9445,30.93008],[129.9866,30.92593],[131.93701,31.339967],[131.937,31.33997],[132.41752,31.51725],[132.4175,31.51725],[133.0194,31.740467],[133.16135,31.792533],[133.34908,31.862783],[133.53085,31.930567],[133.71781,32.000117],[133.7361,32.00687],[133.90488,32.063117],[134.10157,32.133283],[135.01807,32.47],[135.08357,32.4943],[135.0836,32.4943],[135.60861,32.684383],[135.7776,32.741383],[135.96696,32.809187],[135.9696,32.8101],[136.16392,32.8838],[136.35491,32.956767],[136.60625,33.045833],[137.53448,33.378483],[137.5345,33.37848],[137.76861,33.4645],[137.7686,33.4645],[137.792,33.47346],[138.30735,33.660883],[138.3073,33.66088],[138.88165,33.865117],[138.8817,33.86512],[138.9433,33.90763],[138.96056,33.919733],[138.9606,33.91973],[138.9716,33.92757],[138.9877,33.93907],[139.0083,33.95322],[139.0237,33.9638],[139.1042,34.021233],[139.1042,34.02123],[139.1329,34.04167],[139.1586,34.05955],[139.1811,34.07493],[139.1955,34.08487],[139.25867,34.128867],[139.2587,34.12887],[139.2843,34.14665],[139.2986,34.15652],[139.3102,34.16425],[139.3249,34.17427],[139.3374,34.18302],[139.3553,34.19563],[139.46065,34.274833],[139.4606,34.27483],[139.4735,34.2844],[139.4906,34.29685],[139.5057,34.30827],[139.52,34.3191],[139.5367,34.33195],[139.5547,34.34535],[139.56135,34.34995],[139.5697,34.35582],[139.5888,34.36948],[139.5996,34.37702],[139.6118,34.38573],[139.6346,34.39935],[139.6619,34.41442],[139.6797,34.42403],[139.76032,34.47492],[139.7603,34.47492],[139.7753,34.48578],[139.8055,34.50807],[139.8204,34.51917],[139.8363,34.53115],[139.8676,34.55438],[139.87921,34.563317],[139.8792,34.56332],[139.8941,34.57448],[140.04384,34.6859],[140.0438,34.6859],[140.0605,34.69693],[140.0809,34.7074],[140.0949,34.71485],[140.1192,34.72798],[140.1375,34.73777],[140.1505,34.74501],[140.1657,34.75339],[140.1813,34.76438],[140.19185,34.771847],[140.1918,34.77185],[140.2043,34.78052],[140.2172,34.78963],[140.229,34.79772],[140.2448,34.80727],[140.2697,34.8196],[140.2894,34.82337],[140.44301,34.881817],[140.443,34.88182],[140.65307,34.966883],[140.6531,34.96688],[140.7796,35.010983],[140.7796,35.01098],[140.8175,35.02515],[141.11052,35.13075],[141.1105,35.13075],[141.1319,35.13815],[141.206,35.16352],[141.28976,35.1923],[141.2898,35.1923],[141.53749,35.283353],[141.5375,35.28335],[141.74597,35.357133],[141.746,35.35713],[141.7843,35.3706],[142.20613,35.52895],[142.2061,35.52895],[142.66327,35.697467],[142.6633,35.69747],[142.86221,35.771433],[142.8622,35.77143],[143.02544,35.826247],[143.0254,35.82625],[143.20896,35.8856],[143.2473,35.8984],[143.309,35.92085],[143.67948,36.050383],[143.6795,36.05038],[143.81959,36.099467],[143.8196,36.09947],[143.98492,36.164233],[143.9849,36.16423],[144.11917,36.21255],[144.1192,36.21255],[144.28332,36.270567],[144.2833,36.27057],[144.43121,36.3259],[144.4312,36.3259],[144.5863,36.38052],[144.72212,36.4292],[144.7221,36.4292],[144.88295,36.489017],[144.8829,36.48902],[145.15668,36.587897],[145.1567,36.5879],[145.31299,36.644017],[145.313,36.64402],[145.45473,36.690967],[145.4547,36.69097],[145.59228,36.738067],[145.5923,36.73807],[145.7342,36.78993],[145.8224,36.821233],[145.8224,36.82123],[145.8388,36.82689],[146.00281,36.885583],[146.0028,36.88558],[146.2894,36.988983],[146.2894,36.98898],[146.47347,37.054833],[146.4735,37.05483],[146.80113,37.159033],[146.8011,37.15903],[146.8346,37.17167],[146.98901,37.231267],[146.989,37.23127],[147.15039,37.285333],[147.1504,37.28533],[147.32135,37.337003],[147.3207,37.3368],[147.3529,37.34697],[147.41259,37.3646],[147.4126,37.3646],[147.4929,37.38873],[147.5362,37.40235],[147.67012,37.444833],[147.6701,37.44483],[147.81621,37.488067],[147.8162,37.48807],[147.95571,37.528483],[147.9557,37.52848],[148.10127,37.56885],[148.1013,37.56885],[148.23895,37.608897],[148.239,37.6089],[148.47793,37.682967],[148.4779,37.68297],[148.72647,37.757583],[148.7265,37.75758],[148.82119,37.784983],[148.8212,37.78498],[148.92443,37.815283],[148.9244,37.81528],[148.9879,37.8333],[149.0255,37.84405],[149.28972,37.920313],[149.2897,37.92031],[149.3631,37.94205],[149.61088,38.01465],[149.6109,38.01465],[149.78972,38.065167],[149.7897,38.06517],[150.00092,38.1238],[150.0009,38.1238],[150.10725,38.1486],[150.1073,38.1486],[150.221,38.17397],[150.22101,38.173967],[150.4824,38.24402],[150.4824,38.24402],[150.64397,38.28515],[150.644,38.28515],[150.684,38.29427],[150.81856,38.324133],[150.8186,38.32413],[150.99845,38.368983],[151.0093,38.37183],[151.1424,38.40763],[151.2007,38.42288],[151.2671,38.44052],[151.2839,38.44487],[151.50833,38.50155],[151.5083,38.50155],[151.6113,38.52677],[151.67988,38.5447],[151.6799,38.5447],[151.8388,38.58675],[151.8388,38.58675],[152.01912,38.634917],[152.0191,38.63492],[152.35733,38.71745],[152.3573,38.71745],[152.53455,38.759833],[152.5345,38.75983],[152.6942,38.79708],[152.78808,38.8218],[152.7881,38.8218],[152.8668,38.84272],[153.18563,38.926667],[153.1856,38.92667],[153.54917,39.012433],[153.5492,39.01243],[153.9216,39.107497],[153.9216,39.1075],[154.0931,39.15228],[154.1112,39.15687],[154.28407,39.199733],[154.2841,39.19973],[154.75972,39.31167],[154.7597,39.31167],[154.8988,39.34697],[155.13931,39.4045],[155.1393,39.4045],[155.37092,39.453153],[155.3709,39.45315],[155.61811,39.50185],[155.6181,39.50185],[155.6677,39.51223],[155.85675,39.551633],[155.8568,39.55163],[155.96005,39.570667],[155.9761,39.57358],[156.0267,39.58389],[156.0819,39.59537],[156.20967,39.618317],[156.2097,39.61832],[156.36087,39.643903],[156.3609,39.6439],[156.5396,39.67508],[156.72016,39.7127],[156.7202,39.7127],[156.7606,39.72165],[156.7606,39.72165],[156.881,39.7493],[157.06665,39.791267],[157.0667,39.79127],[157.23381,39.825983],[157.2338,39.82598],[157.42295,39.866317],[157.4229,39.86632],[157.5217,39.8847],[157.58972,39.89683],[157.5897,39.89683],[157.88783,39.960603],[157.8878,39.9606],[157.9161,39.9663],[158.02033,39.9875],[158.0203,39.9875],[158.25547,40.03125],[158.2555,40.03125],[158.3764,40.05258],[158.5128,40.081867],[158.5128,40.08187],[158.63013,40.1056],[158.6301,40.1056],[158.7517,40.1304],[158.96104,40.174233],[158.961,40.17423],[158.9976,40.1819],[159.17547,40.217317],[159.1755,40.21732],[159.44745,40.269767],[159.4474,40.26977],[159.5238,40.28608],[159.74293,40.33357],[159.7429,40.33357],[159.89585,40.360567],[159.8959,40.36057],[159.9324,40.3674],[160.06892,40.3902],[160.0689,40.3902],[160.1648,40.40473],[160.27045,40.420583],[160.2704,40.42058],[160.47117,40.451217],[160.4712,40.45122],[160.6397,40.47902],[160.66328,40.482717],[160.6633,40.48272],[160.808,40.50473],[160.8406,40.5095],[160.87961,40.515517],[160.8829,40.51602],[160.9436,40.52525],[160.9641,40.5283],[161.0374,40.53997],[161.13928,40.556233],[161.1393,40.55623],[161.19,40.56435],[161.35455,40.587817],[161.3546,40.58782],[161.4067,40.59543],[161.57632,40.622367],[161.5763,40.62237],[161.74108,40.64815],[161.7411,40.64815],[161.93121,40.676983],[161.9312,40.67698],[162.1103,40.70777],[162.1448,40.71317],[162.29993,40.73695],[162.2999,40.73695],[162.47157,40.762867],[162.4716,40.76287],[162.82185,40.8166],[162.8219,40.8166],[162.9151,40.83027],[162.9296,40.83245],[162.9453,40.83484],[163.20269,40.875467],[163.2027,40.87547],[163.39089,40.9049],[163.3909,40.9049],[163.5779,40.93508],[163.5808,40.9356],[163.5943,40.93758],[163.6078,40.93965],[163.6217,40.94195],[163.7652,40.96058],[163.94935,40.984517],[163.9493,40.98452],[164.13672,41.014253],[164.1367,41.01425],[164.40875,41.06025],[164.4088,41.06025],[164.63749,41.096633],[164.6375,41.09663],[164.86704,41.12818],[164.867,41.12818],[165.05701,41.1491],[165.057,41.1491],[165.122,41.15513],[165.2185,41.16678],[165.30555,41.177517],[165.342,41.18215],[165.3842,41.18722],[165.5735,41.20512],[165.60479,41.208083],[165.83549,41.23097],[165.8355,41.23097],[165.96771,41.246],[165.9677,41.246],[166.15117,41.266617],[166.1512,41.26662],[166.35481,41.29055],[166.3548,41.29055],[166.5393,41.31203],[166.60309,41.319383],[166.6031,41.31938],[166.7266,41.33322],[166.84693,41.347217],[166.8951,41.35273],[167.09675,41.375767],[167.0967,41.37577],[167.2082,41.38793],[167.30213,41.397367],[167.3021,41.39737],[167.46895,41.412583],[167.4689,41.41258],[167.6627,41.42962],[167.85851,41.452467],[167.8585,41.45247],[168.05055,41.474287],[168.0506,41.47429],[168.2404,41.496947],[168.2404,41.49695],[168.2615,41.4994],[168.53353,41.532517],[168.5335,41.53252],[168.63008,41.542],[168.6301,41.542],[168.81987,41.5581],[168.8199,41.5581],[169.0164,41.5763],[169.04444,41.579667],[169.0444,41.57967],[169.28332,41.607033],[169.2833,41.60703],[169.54571,41.638217],[169.5457,41.63822],[169.6447,41.64928],[169.80896,41.666133],[169.809,41.66613],[169.8305,41.66818],[170.05036,41.687817],[170.0504,41.68782],[170.17469,41.695617],[170.1747,41.69562],[170.36437,41.707783],[170.3644,41.70778],[170.569,41.718687],[170.569,41.71869],[170.80176,41.732733],[170.8018,41.73273],[170.8367,41.73537],[171.061,41.7504],[171.061,41.7504],[171.1599,41.7577],[171.32601,41.77183],[171.326,41.77183],[171.52799,41.78015],[171.528,41.78015],[171.74155,41.794767],[171.7415,41.79477],[171.7973,41.79845],[171.94145,41.809467],[171.9415,41.80947],[172.10763,41.818133],[172.1076,41.81813],[172.3042,41.82865],[172.3195,41.8293],[172.32045,41.829317],[172.522,41.84495],[172.70669,41.857017],[172.7067,41.85702],[172.909,41.86485],[172.909,41.86485],[173.03483,41.87145],[173.0348,41.87145],[173.0529,41.87268],[173.072,41.87402],[173.1046,41.8761],[173.49404,41.9026],[173.494,41.9026],[173.70593,41.916717],[173.7059,41.91672],[173.7634,41.92072],[173.7802,41.92185],[173.7949,41.92297],[173.8074,41.92365],[173.9036,41.9312],[174.09824,41.942167],[174.0982,41.94217],[174.40056,41.959117],[174.4006,41.95912],[174.62827,41.97595],[174.6283,41.97595],[174.87149,41.992267],[174.8715,41.99227],[175.39227,41.999517],[175.3923,41.99952],[175.66865,41.9989],[175.7222,41.999467],[175.7222,41.99947],[175.9023,41.99873],[175.97449,41.99775],[175.9745,41.99775],[176.16625,41.997783],[176.1783,41.99788],[176.2875,41.99915],[176.40117,41.999983],[176.4012,41.99998],[176.55,42.0019],[176.6578,42.002517],[176.6578,42.00252],[176.737,42.00193],[176.85215,42.00135],[176.8521,42.00135],[176.9032,42.00112],[177.0403,42.00134],[177.11379,42.001667],[177.1138,42.00167],[177.2357,42.00203],[177.39105,42.0031],[177.3911,42.0031],[177.4242,42.00245],[177.60939,42.000133],[177.6094,42.00013],[177.79999,41.99965],[177.8,41.99965],[177.85,41.99947],[177.9038,41.99947],[177.99061,41.999817],[177.9906,41.99982],[178.1061,41.99943],[178.36305,41.997783],[178.3631,41.99778],[178.56201,41.999567],[178.562,41.99957],[178.63112,42.000367],[178.6311,42.00037],[178.6641,42.0007],[178.88745,41.99915],[178.8875,41.99915],[179.07216,41.997713],[179.0722,41.99771],[179.1455,41.99809],[179.416,41.999],[179.416,41.999],[179.59971,41.99962],[179.5997,41.99962],[179.86344,41.999747],[179.8634,41.99975],[179.9422,41.999],[179.9628,41.9989],[-179.85361,41.998183],[-179.66868,41.99945],[-179.48972,42.000483],[-179.4014,42.00127],[-179.29649,42.002617],[-179.2066,42.00267],[-179.00948,42.00095],[-179.0095,42.00095],[-178.9146,42.00058],[-178.90571,42.0006],[-178.8181,42.00022],[-178.6994,41.99992],[-178.62299,42.000767],[-178.623,42.00077],[-178.5716,42.00155],[-178.42203,42.003167],[-178.422,42.00317],[-178.2318,42.0011],[-178.07316,41.998683],[-178.0732,41.99868],[-178.0292,41.99882],[-177.89549,41.998683],[-177.8955,41.99868],[-177.8308,41.99866],[-177.69569,41.998483],[-177.6957,41.99848],[-177.6346,41.99855],[-177.50803,41.999183],[-177.508,41.99918],[-177.4795,41.99947],[-177.30508,41.998917],[-177.3051,41.99892],[-177.1166,41.99788],[-176.9284,41.99915],[-176.9284,41.99915],[-176.73608,42.002667],[-176.7361,42.00267],[-176.54403,42.000967],[-176.544,42.00097],[-176.5303,42.00095],[-176.5159,42.00089],[-176.34288,42.000233],[-176.3429,42.00023],[-176.15547,42.000583],[-176.1555,42.00058],[-175.78413,41.999633],[-175.7841,41.99963],[-175.56919,42.000983],[-175.5692,42.00098],[-175.26028,41.998383],[-175.2603,41.99838],[-175.1915,41.9981],[-175.1587,41.9981],[-175.1257,41.99812],[-175.11384,41.998183],[-174.73153,41.999367],[-174.7315,41.99937],[-174.4718,42.000983],[-174.4718,42.00098],[-174.32276,42.001083],[-174.3228,42.00108],[-174.21972,42.000703],[-174.2197,42.0007],[-174.0745,42.00042],[-173.98795,42.001217],[-173.9879,42.00122],[-173.8903,42.00123],[-173.8034,42.000917],[-173.7349,42.0004],[-173.7082,42.00037],[-173.6948,42.00027],[-173.5232,41.999017],[-173.5232,41.99902],[-173.33829,41.998067],[-173.3383,41.99807],[-173.2567,41.99822],[-173.15361,41.998233],[-173.1536,41.99823],[-173.0611,41.99813],[-173.0006,41.99857],[-172.9663,41.99898],[-172.83265,42.0008],[-172.7797,42.0017],[-172.66663,42.004667],[-172.6666,42.00467],[-172.58,42.00463],[-172.46975,42.0026],[-172.4697,42.0026],[-172.4013,42.0016],[-172.2899,42.00095],[-172.21605,42.000703],[-172.216,42.0007],[-172.1474,42.00053],[-172.0772,42.00051],[-171.91705,42.0006],[-171.9171,42.0006],[-171.8834,42.0007],[-171.82741,42.0006],[-171.8274,42.0006],[-171.7182,41.99995],[-171.6462,41.99918],[-171.54789,41.997967],[-171.5479,41.99797],[-171.39067,41.999487],[-171.3907,41.99949],[-171.12895,41.9983],[-171.129,41.9983],[-170.88693,41.998537],[-170.8869,41.99854],[-170.63645,42.003503],[-170.6365,42.0035],[-170.45499,42.002333],[-170.455,42.00233],[-170.3774,42.00182],[-170.20132,42.00045],[-170.2013,42.00045],[-170.1244,41.99995],[-169.92452,41.999033],[-169.9245,41.99903],[-169.8628,41.9984],[-169.83359,41.998283],[-169.7819,41.99793],[-169.6592,41.9995],[-169.59928,42.000967],[-169.5993,42.00097],[-169.4678,42.00108],[-169.37848,42.000417],[-169.3785,42.00042],[-169.2023,41.99952],[-169.0072,42.00085],[-169.0072,42.00085],[-168.89389,42.0014],[-168.8939,42.0014],[-168.68675,42.003083],[-168.6868,42.00308],[-168.43065,42.002737],[-168.4306,42.00274],[-168.28488,42.000887],[-168.2849,42.00089],[-168.2246,42.00023],[-168.1692,41.99965],[-168.1087,41.99918],[-168.0876,41.999],[-167.92836,41.997633],[-167.9284,41.99763],[-167.8427,41.99882],[-167.65875,42.000617],[-167.6588,42.00062],[-167.49645,42.00223],[-167.4965,42.00223],[-167.4456,42.00198],[-167.36341,42.001317],[-167.3614,42.00122],[-167.3064,42.0007],[-167.2666,42.0001],[-167.11045,41.998967],[-167.1105,41.99897],[-167.0685,41.99887],[-166.93643,41.999217],[-166.9364,41.99922],[-166.8693,41.99905],[-166.7347,41.99857],[-166.5324,41.997167],[-166.5324,41.99717],[-166.33067,41.998583],[-166.3307,41.99858],[-166.3162,41.99845],[-166.3014,41.99822],[-166.2878,41.99798],[-166.14128,41.9967],[-166.1413,41.9967],[-165.94756,41.997083],[-165.9476,41.99708],[-165.64063,41.9976],[-165.6406,41.9976],[-165.46503,41.997683],[-165.465,41.99768],[-165.20427,41.99905],[-165.2043,41.99905],[-165.1645,41.99938],[-165.02643,41.999567],[-165.0264,41.99957],[-164.9799,41.99972],[-164.78321,41.999267],[-164.7832,41.99927],[-164.58169,41.999113],[-164.5817,41.99911],[-164.4362,42.00012],[-164.39501,42.000887],[-164.395,42.00089],[-164.2532,42.0006],[-164.15672,42],[-164.1065,41.99983],[-163.98855,41.999317],[-163.9885,41.99932],[-163.9507,41.99958],[-163.806,41.99965],[-163.806,41.99965],[-163.71739,42.00015],[-163.6548,42.00137],[-163.5583,42.0029],[-163.55381,42.002933],[-163.516,42.003],[-163.4549,42.0026],[-163.3982,42.00213],[-163.26663,42.00105],[-163.2293,42.00102],[-163.13332,42.000867],[-163.1333,42.00087],[-163.0797,42.00057],[-163.02716,42.00038],[-163.0272,42.00038],[-162.9769,42.00003],[-162.9325,41.99952],[-162.86856,41.998833],[-162.8163,41.99878],[-162.7846,41.99847],[-162.7385,41.99803],[-162.68487,41.998433],[-162.6849,41.99843],[-162.6348,41.99953],[-162.5402,42.00195],[-162.48036,42.003417],[-162.4804,42.00342],[-162.3433,42.00337],[-162.32551,42.003067],[-162.3255,42.00307],[-162.2297,42.00188],[-162.1663,42.00102],[-162.13867,42.00055],[-162.1387,42.00055],[-162.0808,42.0001],[-162.0125,41.99998],[-161.9448,41.998883],[-161.9448,41.99888],[-161.77289,41.9971],[-161.7729,41.9971],[-161.63715,41.99755],[-161.5921,41.99797],[-161.43541,42.000633],[-161.4036,42.00112],[-161.27875,42.002767],[-161.2787,42.00277],[-161.2244,42.00297],[-161.0722,42.001733],[-161.0722,42.00173],[-161.0416,42.001283],[-161.0416,42.00128],[-161.0091,42.0006],[-160.8494,41.999817],[-160.8494,41.99982],[-160.7495,41.99873],[-160.69625,41.998767],[-160.6963,41.99877],[-160.6712,41.99893],[-160.56777,41.99898],[-160.5678,41.99898],[-160.5198,41.99788],[-160.4746,41.99615],[-160.4259,41.99403],[-160.29099,41.990917],[-160.291,41.99092],[-160.14287,41.99095],[-160.1429,41.99095],[-159.99367,41.990567],[-159.9937,41.99057],[-159.918,41.98817],[-159.858,41.98545],[-159.858,41.98545],[-159.74981,41.979683],[-159.7393,41.97895],[-159.7233,41.97793],[-159.6944,41.97569],[-159.6202,41.97047],[-159.57228,41.967267],[-159.5723,41.96727],[-159.4797,41.96212],[-159.4334,41.96449],[-159.41412,41.966683],[-159.4141,41.96668],[-159.3138,41.97847],[-159.22023,41.99025],[-159.1624,41.9974],[-159.1065,42.00452],[-158.96988,42.022533],[-158.9699,42.02253],[-158.9343,42.02747],[-158.81015,42.04295],[-158.8102,42.04295],[-158.7773,42.0467],[-158.7421,42.05033],[-158.65995,42.057233],[-158.6079,42.06113],[-158.5711,42.06453],[-158.43736,42.077217],[-158.4374,42.07722],[-158.2995,42.09075],[-158.2697,42.09385],[-158.26369,42.094467],[-158.2485,42.0961],[-158.222,42.09912],[-157.9738,42.126367],[-157.9738,42.12637],[-157.80248,42.143667],[-157.8025,42.14367],[-157.65148,42.1589],[-157.6436,42.15972],[-157.6306,42.16107],[-157.6192,42.16225],[-157.605,42.16375],[-157.48476,42.17545],[-157.4848,42.17545],[-157.19865,42.202203],[-157.1625,42.20552],[-156.95485,42.22455],[-156.9548,42.22455],[-156.56488,42.26415],[-156.5649,42.26415],[-156.33761,42.27902],[-156.3376,42.27902],[-156.18913,42.29022],[-156.1891,42.29022],[-156.1387,42.29272],[-156.02725,42.303847],[-156.0273,42.30385],[-155.9437,42.3119],[-155.9216,42.31403],[-155.8658,42.31888],[-155.73028,42.329813],[-155.7303,42.32981],[-155.59101,42.340417],[-155.5786,42.34137],[-155.5643,42.3426],[-155.5197,42.34593],[-155.48967,42.348267],[-155.4897,42.34827],[-155.4046,42.35497],[-155.3161,42.36243],[-155.24613,42.367767],[-155.2461,42.36777],[-155.2138,42.37037],[-155.1588,42.3751],[-155.09348,42.380967],[-155.0935,42.38097],[-155.0621,42.38372],[-154.9859,42.38928],[-154.93632,42.392503],[-154.9363,42.3925],[-154.9016,42.3949],[-154.842,42.399],[-154.783,42.40322],[-154.75215,42.405433],[-154.7522,42.40543],[-154.7016,42.4085],[-154.6321,42.41365],[-154.5985,42.41592],[-154.53981,42.420233],[-154.4839,42.42515],[-154.4453,42.42838],[-154.408,42.43143],[-154.32441,42.438567],[-154.3244,42.43857],[-154.20073,42.449733],[-154.2007,42.44973],[-154.1622,42.45298],[-154.1277,42.45607],[-154.0522,42.46142],[-154.00057,42.46485],[-153.9966,42.46513],[-153.9678,42.46698],[-153.8961,42.47145],[-153.8414,42.474933],[-153.8414,42.47493],[-153.7713,42.47908],[-153.56183,42.495333],[-153.5618,42.49533],[-153.5296,42.49858],[-153.40169,42.510517],[-153.4017,42.51052],[-153.3402,42.51618],[-153.18316,42.527067],[-153.1832,42.52707],[-152.97507,42.541383],[-152.9751,42.54138],[-152.90047,42.546383],[-152.9005,42.54638],[-152.7613,42.55655],[-152.67913,42.562067],[-152.6791,42.56207],[-152.6494,42.56472],[-152.52079,42.576017],[-152.5208,42.57602],[-152.4997,42.57778],[-152.36021,42.58785],[-152.3602,42.58785],[-152.3191,42.59115],[-152.2482,42.59643],[-152.16513,42.60325],[-152.1177,42.60722],[-152.0811,42.61015],[-152.02139,42.614917],[-152.0214,42.61492],[-151.9121,42.62325],[-151.76205,42.6346],[-151.7621,42.6346],[-151.729,42.63705],[-151.69128,42.639667],[-151.6913,42.63967],[-151.6112,42.6451],[-151.45583,42.656313],[-151.4558,42.65631],[-151.4318,42.65803],[-151.3801,42.66185],[-151.32551,42.665833],[-151.3255,42.66583],[-151.17209,42.677717],[-151.1721,42.67772],[-151.0679,42.68608],[-151.02495,42.68955],[-151.0249,42.68955],[-150.9046,42.69928],[-150.8622,42.70287],[-150.85527,42.7034],[-150.8446,42.70435],[-150.8209,42.70632],[-150.7531,42.71233],[-150.7174,42.71558],[-150.6926,42.71797],[-150.56975,42.72805],[-150.5697,42.72805],[-150.46008,42.735067],[-150.4601,42.73507],[-150.4458,42.73606],[-150.30575,42.7456],[-150.274,42.74813],[-150.2539,42.74978],[-150.1607,42.75672],[-150.11536,42.76015],[-150.1154,42.76015],[-150.0074,42.7701],[-149.86189,42.78105],[-149.8619,42.78105],[-149.78929,42.786483],[-149.7893,42.78648],[-149.7045,42.79275],[-149.54276,42.805717],[-149.5428,42.80572],[-149.39339,42.816867],[-149.3934,42.81687],[-149.3608,42.81912],[-149.3487,42.8199],[-149.3299,42.82117],[-149.24588,42.827267],[-149.2459,42.82727],[-149.09733,42.839233],[-149.0973,42.83923],[-148.97139,42.850867],[-148.9714,42.85087],[-148.78188,42.862283],[-148.7819,42.86228],[-148.62852,42.872417],[-148.6285,42.87242],[-148.4558,42.88905],[-148.4558,42.88905],[-148.3998,42.89458],[-148.28035,42.90542],[-148.2803,42.90542],[-148.2477,42.90778],[-148.11997,42.916417],[-148.12,42.91642],[-148.1101,42.91722],[-148.01883,42.924483],[-148.0188,42.92448],[-147.9632,42.92802],[-147.923,42.93047],[-147.8951,42.93238],[-147.83649,42.93648],[-147.8365,42.93648],[-147.7357,42.94407],[-147.71297,42.945883],[-147.713,42.94588],[-147.5793,42.9552],[-147.5522,42.957383],[-147.5522,42.95738],[-147.5406,42.95844],[-147.4416,42.96698],[-147.4179,42.9688],[-147.37652,42.970967],[-147.3765,42.97097],[-147.3063,42.97301],[-147.2755,42.97355],[-147.2523,42.97413],[-147.23435,42.97455],[-147.2249,42.97441],[-147.1532,42.97575],[-147.0292,42.978817],[-147.0292,42.97882],[-146.9898,42.97253],[-146.88828,42.95392],[-146.8883,42.95392],[-146.8735,42.95113],[-146.818,42.94032],[-146.7952,42.93583],[-146.75187,42.927383],[-146.7519,42.92738],[-146.6874,42.91315],[-146.6427,42.90315],[-146.5968,42.89265],[-146.57999,42.88865],[-146.58,42.88865],[-146.4817,42.8638],[-146.4615,42.85867],[-146.4464,42.8547],[-146.4337,42.85155],[-146.39345,42.841067],[-146.3934,42.84107],[-146.3409,42.82765],[-146.3113,42.81995],[-146.21955,42.795067],[-146.2195,42.79507],[-146.1899,42.78682],[-146.10436,42.764233],[-146.1044,42.76423],[-146.0538,42.75085],[-146.018,42.74133],[-145.9668,42.72738],[-145.91939,42.714297],[-145.9194,42.7143],[-145.8396,42.69273],[-145.77753,42.676167],[-145.7775,42.67617],[-145.6606,42.64425],[-145.6335,42.63687],[-145.4634,42.589467],[-145.4634,42.58947],[-145.3252,42.54962],[-145.27852,42.536317],[-145.2785,42.53632],[-145.13935,42.497417],[-145.1393,42.49742],[-145.1004,42.48705],[-145.0704,42.47917],[-145.0454,42.47267],[-144.91961,42.439833],[-144.9196,42.43983],[-144.8972,42.43405],[-144.78088,42.403183],[-144.7809,42.40318],[-144.7545,42.39552],[-144.7228,42.38602],[-144.6851,42.37482],[-144.61716,42.354317],[-144.6172,42.35432],[-144.569,42.33955],[-144.539,42.33038],[-144.5096,42.32153],[-144.4694,42.309283],[-144.4694,42.30928],[-144.3425,42.27052],[-144.33024,42.26665],[-144.3302,42.26665],[-144.1937,42.2281],[-144.15075,42.216],[-144.1507,42.216],[-144.1219,42.20803],[-144.0983,42.20155],[-144.00755,42.176583],[-144.0076,42.17658],[-143.947,42.15947],[-143.8995,42.1452],[-143.77399,42.10815],[-143.774,42.10815],[-143.66467,42.075517],[-143.6354,42.06676],[-143.5429,42.03938],[-143.4296,42.0043],[-143.4296,42.0043],[-143.4142,41.99972],[-143.4004,41.99529],[-143.38,41.9889],[-143.36133,41.983003],[-143.3613,41.983],[-143.2682,41.95697],[-143.225,41.9453],[-143.12419,41.916033],[-143.0888,41.9057],[-143.0586,41.89705],[-142.95068,41.8655],[-142.9507,41.8655],[-142.9229,41.85718],[-142.87312,41.84265],[-142.8642,41.8401],[-142.8523,41.83672],[-142.8389,41.83288],[-142.7766,41.8149],[-142.70072,41.792767],[-142.7007,41.79277],[-142.656,41.77825],[-142.55427,41.745467],[-142.5543,41.74547],[-142.4961,41.72677],[-142.37233,41.688083],[-142.3723,41.68808],[-142.23067,41.643017],[-142.2307,41.64302],[-142.2034,41.63437],[-142.1387,41.61412],[-142.075,41.59395],[-142.075,41.59395],[-141.9991,41.57001],[-141.9365,41.55012],[-141.89736,41.537183],[-141.8974,41.53718],[-141.8415,41.51775],[-141.56129,41.426517],[-141.5613,41.42652],[-141.5354,41.4185],[-141.39659,41.374683],[-141.3966,41.37468],[-141.3444,41.35735],[-141.21129,41.3131],[-141.1744,41.30091],[-140.99193,41.241267],[-140.9919,41.24127],[-140.9233,41.21845],[-140.81485,41.182483],[-140.8148,41.18248],[-140.7882,41.17347],[-140.7533,41.1623],[-140.65055,41.127483],[-140.6214,41.11768],[-140.51556,41.082667],[-140.5156,41.08267],[-140.4665,41.06721],[-140.4155,41.05127],[-140.37799,41.039467],[-140.378,41.03947],[-140.3387,41.02693],[-140.2696,41.00503],[-140.23513,40.994147],[-140.2351,40.99415],[-140.192,40.98063],[-140.06003,40.938767],[-140.06,40.93877],[-140.0315,40.92847],[-139.9162,40.88635],[-139.8894,40.876117],[-139.8894,40.87612],[-139.8669,40.86832],[-139.8181,40.84998],[-139.7778,40.83468],[-139.72381,40.814167],[-139.7238,40.81417],[-139.6926,40.80207],[-139.6579,40.78837],[-139.6317,40.7789],[-139.6028,40.76888],[-139.53095,40.7461],[-139.5309,40.7461],[-139.4901,40.7335],[-139.35789,40.68995],[-139.3579,40.68995],[-139.3126,40.67443],[-139.2871,40.66537],[-139.2679,40.65848],[-139.19869,40.635117],[-139.1987,40.63512],[-139.1536,40.6207],[-139.1237,40.6107],[-139.1038,40.60433],[-139.0556,40.589533],[-139.0556,40.58953],[-138.9679,40.56218],[-138.9332,40.55007],[-138.91133,40.542083],[-138.9113,40.54208],[-138.8997,40.53783],[-138.8135,40.50668],[-138.7717,40.492],[-138.74152,40.481467],[-138.7415,40.48147],[-138.718,40.47305],[-138.6814,40.45995],[-138.6503,40.44848],[-138.6171,40.43718],[-138.50252,40.39747],[-138.5025,40.39747],[-138.4581,40.3814],[-138.39025,40.3574],[-138.3903,40.3574],[-138.3341,40.33722],[-138.2882,40.32065],[-138.25009,40.306767],[-138.215,40.29398],[-138.1433,40.26765],[-138.1031,40.25302],[-138.08265,40.245633],[-138.0827,40.24563],[-138.042,40.23088],[-137.921,40.1871],[-137.921,40.1871],[-137.8976,40.17875],[-137.73567,40.121783],[-137.7357,40.12178],[-137.7058,40.11085],[-137.56529,40.060883],[-137.5653,40.06088],[-137.5389,40.05093],[-137.5107,40.0408],[-137.40743,40.003517],[-137.4074,40.00352],[-137.3804,39.99368],[-137.3523,39.98322],[-137.26441,39.9499],[-137.2644,39.9499],[-137.2381,39.93943],[-137.2117,39.92958],[-137.1851,39.91995],[-137.06581,39.87285],[-137.0658,39.87285],[-136.98733,39.841667],[-136.9873,39.84167],[-136.8919,39.80398],[-136.84643,39.78595],[-136.8464,39.78595],[-136.7566,39.75355],[-136.7243,39.74213],[-136.71289,39.738133],[-136.7129,39.73813],[-136.6793,39.72618],[-136.6286,39.70812],[-136.5915,39.69417],[-136.54121,39.675533],[-136.5412,39.67553],[-136.5053,39.66132],[-136.4745,39.64893],[-136.4556,39.64133],[-136.4436,39.6365],[-136.34073,39.596383],[-136.3407,39.59638],[-136.23527,39.554183],[-136.2353,39.55418],[-136.1718,39.52865],[-136.095,39.498733],[-136.095,39.49873],[-136.0128,39.46863],[-135.93787,39.440717],[-135.9379,39.44072],[-135.81048,39.39215],[-135.8105,39.39215],[-135.7109,39.35428],[-135.678,39.34168],[-135.59141,39.308363],[-135.5914,39.30836],[-135.5628,39.29713],[-135.5305,39.2842],[-135.51659,39.278367],[-135.5166,39.27837],[-135.4661,39.25797],[-135.4065,39.2355],[-135.34509,39.21165],[-135.3451,39.21165],[-135.2842,39.186],[-135.21615,39.157767],[-135.2161,39.15777],[-135.1898,39.14793],[-135.03295,39.087917],[-135.0329,39.08792],[-134.94536,39.051237],[-134.9454,39.05124],[-134.9025,39.0319],[-134.8429,39.00507],[-134.80601,38.989667],[-134.806,38.98967],[-134.7791,38.9793],[-134.6651,38.92905],[-134.6142,38.905117],[-134.6142,38.90512],[-134.6009,38.899],[-134.3214,38.790767],[-134.3214,38.79077],[-134.2936,38.78052],[-134.15815,38.728333],[-134.1581,38.72833],[-133.99729,38.659183],[-133.9973,38.65918],[-133.81988,38.584567],[-133.8199,38.58457],[-133.73208,38.547883],[-133.7321,38.54788],[-133.6417,38.51],[-133.611,38.49723],[-133.60823,38.496083],[-133.4826,38.44361],[-133.4615,38.43502],[-133.35539,38.391183],[-133.3554,38.39118],[-133.3305,38.38123],[-133.27605,38.359783],[-133.276,38.35978],[-133.1925,38.32752],[-133.09629,38.285483],[-133.0963,38.28548],[-133.0437,38.26255],[-132.96785,38.230667],[-132.9263,38.21293],[-132.8456,38.17723],[-132.83523,38.172817],[-132.8028,38.15887],[-132.7569,38.13883],[-132.62415,38.081213],[-132.6241,38.08121],[-132.5847,38.06418],[-132.5414,38.04603],[-132.50865,38.032383],[-132.5087,38.03238],[-132.4497,38.00687],[-132.422,37.99472],[-132.4123,37.99042],[-132.3984,37.98421],[-132.3862,37.9789],[-132.38199,37.977],[-132.3645,37.96932],[-132.3433,37.96005],[-132.3066,37.94403],[-132.2873,37.93547],[-132.2461,37.91727],[-132.2318,37.91103],[-132.22629,37.908583],[-132.1479,37.87388],[-132.0974,37.85035],[-132.04783,37.828287],[-132.0478,37.82829],[-132.0126,37.81355],[-131.9333,37.78035],[-131.90307,37.766737],[-131.9031,37.76674],[-131.8823,37.75757],[-131.8473,37.7418],[-131.7826,37.71315],[-131.7568,37.701667],[-131.7568,37.70167],[-131.7247,37.68742],[-131.7097,37.68062],[-131.6741,37.66538],[-131.6514,37.65542],[-131.6215,37.64163],[-131.59495,37.630383],[-131.5949,37.63038],[-131.5524,37.61192],[-131.5254,37.60017],[-131.4878,37.58373],[-131.4754,37.57841],[-131.39123,37.5401],[-131.3912,37.5401],[-131.3566,37.52357],[-131.3309,37.51133],[-131.26753,37.482033],[-131.2675,37.48203],[-131.2335,37.46618],[-131.15959,37.43235],[-131.1596,37.43235],[-131.1339,37.42038],[-131.0048,37.362283],[-131.0048,37.36228],[-130.9745,37.3485],[-130.946,37.33547],[-130.878,37.30463],[-130.82568,37.2812],[-130.8257,37.2812],[-130.7963,37.26825],[-130.7451,37.24538],[-130.65185,37.204033],[-130.6519,37.20403],[-130.6161,37.1878],[-130.45615,37.111317],[-130.4561,37.11132],[-130.4352,37.10108],[-130.3311,37.05045],[-130.29395,37.0325],[-130.2939,37.0325],[-130.2668,37.01948],[-130.24036,37.006883],[-130.2404,37.00688],[-130.2002,36.98835],[-130.1865,36.98202],[-130.1198,36.95225],[-130.07179,36.929867],[-130.0718,36.92987],[-130.0346,36.91218],[-129.9479,36.87169],[-129.92019,36.858567],[-129.9202,36.85857],[-129.9025,36.85045],[-129.8837,36.84153],[-129.8188,36.80998],[-129.7764,36.789397],[-129.7764,36.7894],[-129.7503,36.7768],[-129.7224,36.76397],[-129.6342,36.723367],[-129.6342,36.72337],[-129.5999,36.70702],[-129.5617,36.68867],[-129.5166,36.66703],[-129.42219,36.621733],[-129.3915,36.60702],[-129.3761,36.59958],[-129.3496,36.5867],[-129.25744,36.544617],[-129.2574,36.54462],[-129.2448,36.53903],[-129.1482,36.49385],[-129.1482,36.49385],[-129.1211,36.48157],[-129.02396,36.4319],[-129.024,36.4319],[-128.9944,36.41678],[-128.87219,36.35785],[-128.8722,36.35785],[-128.73625,36.293913],[-128.7363,36.29391],[-128.6313,36.24378],[-128.616,36.23643],[-128.51655,36.187933],[-128.5165,36.18793],[-128.4879,36.17393],[-128.19179,36.026417],[-128.1785,36.0199],[-128.168,36.01472],[-128.16803,36.014717],[-128.1571,36.00943],[-128.1155,35.9893],[-127.99552,35.9311],[-127.9955,35.9311],[-127.9636,35.91563],[-127.876,35.873133],[-127.876,35.87313],[-127.85,35.86061],[-127.766,35.81852],[-127.72873,35.799917],[-127.7287,35.79992],[-127.7051,35.78785],[-127.61,35.73848],[-127.41088,35.635067],[-127.4109,35.63507],[-127.398,35.62833],[-127.26979,35.55935],[-127.2698,35.55935],[-127.12875,35.4869],[-127.1287,35.4869],[-126.95016,35.40035],[-126.9502,35.40035],[-126.85653,35.354167],[-126.8565,35.35417],[-126.8128,35.33252],[-126.78103,35.3162],[-126.78103,35.3162],[-126.781,35.3162],[-126.7471,35.29805],[-126.6687,35.25617],[-126.63701,35.23955],[-126.63701,35.23955],[-126.637,35.23955],[-126.5146,35.1755],[-126.49089,35.163383],[-126.49089,35.163383],[-126.4909,35.16338],[-126.4076,35.12052],[-126.3815,35.10702],[-126.32195,35.076483],[-126.32195,35.076483],[-126.3219,35.07648],[-126.2905,35.06033],[-126.2584,35.04373],[-126.1996,35.014667],[-126.1996,35.014667],[-126.1765,35.00223],[-126.1545,34.98993],[-126.06495,34.941003],[-126.06495,34.941003],[-126.0387,34.9265],[-126.0153,34.91355],[-125.94629,34.87745],[-125.94629,34.87745],[-125.9216,34.86508],[-125.79408,34.80135],[-125.79408,34.80135],[-125.7941,34.80135],[-125.751,34.7791],[-125.7155,34.7611],[-125.68768,34.747167],[-125.68768,34.747167],[-125.6877,34.74717],[-125.6577,34.731],[-125.587,34.693],[-125.55285,34.673633],[-125.55285,34.673633],[-125.5491,34.67153],[-125.4595,34.62029],[-125.4378,34.60825],[-125.4378,34.60825],[-125.4378,34.60825],[-125.4141,34.59527],[-125.4014,34.58852],[-125.3651,34.5695],[-125.26687,34.5233],[-125.26687,34.5233],[-125.2669,34.5233],[-125.2422,34.52227],[-125.2143,34.52102],[-125.12496,34.519],[-125.12496,34.519],[-125.125,34.519],[-125.0784,34.51747],[-125.0665,34.51727],[-125.01501,34.516217],[-125.01501,34.516217],[-125.015,34.51622],[-124.9515,34.51455],[-124.9321,34.51382],[-124.902,34.51262],[-124.88996,34.512583],[-124.88996,34.512583],[-124.8153,34.51283],[-124.7906,34.51285],[-124.7776,34.51277],[-124.75041,34.512483],[-124.75041,34.512483],[-124.7504,34.51248],[-124.6676,34.51278],[-124.6429,34.51295],[-124.61503,34.51265],[-124.61503,34.51265],[-124.615,34.51265],[-124.5879,34.51218],[-124.5592,34.51092],[-124.5296,34.50962],[-124.43635,34.5075],[-124.43635,34.5075],[-124.4363,34.5075],[-124.4079,34.50688],[-124.31947,34.504283],[-124.31947,34.504283],[-124.3195,34.50428],[-124.3112,34.50408],[-124.17693,34.500033],[-124.17693,34.500033],[-124.1769,34.50003],[-124.0936,34.49918],[-123.99153,34.4972],[-123.99153,34.4972],[-123.9915,34.4972],[-123.9409,34.49652],[-123.87672,34.495433],[-123.87672,34.495433],[-123.8767,34.49543],[-123.8431,34.49457],[-123.76292,34.493253],[-123.76292,34.493253],[-123.7629,34.49325],[-123.7386,34.49247],[-123.65783,34.489667],[-123.65783,34.489667],[-123.6578,34.48967],[-123.6382,34.489],[-123.6108,34.48798],[-123.5612,34.48578],[-123.52683,34.484033],[-123.52683,34.484033],[-123.5268,34.48403],[-123.4793,34.48318],[-123.4119,34.48208],[-123.3787,34.48098],[-123.3249,34.48032],[-123.26465,34.479817],[-123.26465,34.479817],[-123.2647,34.47982],[-123.2077,34.48001],[-123.1682,34.47928],[-123.13455,34.478683],[-123.13455,34.478683],[-123.1345,34.47868],[-123.0495,34.47662],[-123.0181,34.47638],[-122.9302,34.47395],[-122.83487,34.472583],[-122.83487,34.472583],[-122.8349,34.47258],[-122.79,34.47192],[-122.6848,34.46958],[-122.5686,34.46775],[-122.5475,34.46743],[-122.3028,34.4602],[-122.22469,34.458247],[-122.22469,34.458247],[-122.2247,34.45825],[-122.15087,34.456567],[-122.15087,34.456567],[-122.0586,34.45387],[-122.0474,34.45365],[-121.9952,34.4526],[-121.98372,34.45235],[-121.98372,34.45235],[-121.9814,34.45232],[-121.9735,34.45218],[-121.9331,34.45138],[-121.9226,34.45117],[-121.9128,34.45093],[-121.8991,34.4506],[-121.8876,34.45042],[-121.8765,34.4503],[-121.8666,34.45022],[-121.8575,34.45032],[-121.8534,34.450353],[-121.8534,34.450353],[-121.849,34.45037],[-121.8358,34.45045],[-121.8271,34.45057],[-121.8187,34.45075],[-121.8105,34.45085],[-121.8006,34.45083],[-121.7942,34.45123],[-121.7895,34.45145],[-121.7868,34.451383],[-121.7868,34.451383],[-121.7867,34.4514],[-121.7847,34.4518],[-121.7843,34.45208],[-121.7837,34.45268],[-121.7836,34.45308],[-121.7835,34.4535],[-121.7837,34.45435],[-121.7839,34.45478],[-121.7841,34.45535],[-121.78432,34.455953],[-121.78432,34.455953],[-121.7843,34.45603],[-121.7845,34.45673],[-121.7845,34.45818],[-121.7844,34.4594],[-121.7843,34.4603],[-121.7842,34.46153],[-121.784,34.46252],[-121.7833,34.46352],[-121.783,34.46453],[-121.78296,34.464867],[-121.78296,34.464867],[-121.7826,34.46622],[-121.7801,34.46763],[-121.775,34.46828],[-121.7697,34.46798],[-121.7633,34.46658],[-121.7531,34.46601],[-121.7451,34.46552],[-121.7349,34.46457],[-121.7247,34.46363],[-121.7133,34.4629],[-121.71045,34.46275],[-121.71045,34.46275],[-121.7009,34.46213],[-121.6883,34.46115],[-121.6753,34.46033],[-121.6637,34.45935],[-121.6505,34.45862],[-121.6393,34.45778],[-121.6285,34.457],[-121.6169,34.45612],[-121.6045,34.4551],[-121.5936,34.4542],[-121.5821,34.45343],[-121.57316,34.452917],[-121.57316,34.452917],[-121.5705,34.45277],[-121.5588,34.4522],[-121.5484,34.45156],[-121.5333,34.45085],[-121.5183,34.45],[-121.5086,34.44957],[-121.4977,34.44918],[-121.4877,34.44868],[-121.479,34.44832],[-121.4659,34.44773],[-121.4548,34.44732],[-121.4407,34.44657],[-121.4277,34.44608],[-121.4168,34.44598],[-121.4053,34.4458],[-121.3943,34.44553],[-121.3793,34.44525],[-121.3693,34.44505],[-121.3549,34.44478],[-121.3445,34.44453],[-121.3325,34.44432],[-121.3206,34.44412],[-121.3047,34.44385],[-121.29612,34.4436],[-121.29612,34.4436],[-121.2924,34.44353],[-121.2812,34.4431],[-121.2701,34.44277],[-121.2592,34.44248],[-121.2467,34.4423],[-121.2348,34.4423],[-121.2233,34.44228],[-121.2078,34.44217],[-121.1965,34.44218],[-121.1848,34.44221],[-121.1716,34.44233],[-121.1612,34.44235],[-121.1503,34.44227],[-121.1407,34.44215],[-121.1304,34.44218],[-121.118,34.44215],[-121.106,34.44233],[-121.0951,34.4425],[-121.0827,34.44223],[-121.0709,34.44188],[-121.06801,34.441833],[-121.06801,34.441833],[-121.059,34.44175],[-121.049,34.44145],[-121.0378,34.44062],[-121.0276,34.43917],[-121.0177,34.43705],[-121.0084,34.4351],[-120.9931,34.43195],[-120.9823,34.42967],[-120.9726,34.42778],[-120.9623,34.42538],[-120.9525,34.42277],[-120.9423,34.42005],[-120.932,34.4174],[-120.93089,34.4171],[-120.93089,34.4171],[-120.9217,34.41477],[-120.9117,34.41227],[-120.9024,34.40998],[-120.8874,34.40622],[-120.8775,34.40388],[-120.8669,34.40132],[-120.8566,34.39874],[-120.8566,34.398737],[-120.8566,34.398737],[-120.846,34.39615],[-120.8361,34.39408],[-120.8253,34.39182],[-120.8115,34.38888],[-120.8009,34.38652],[-120.7917,34.38457],[-120.7813,34.3823],[-120.7716,34.38008],[-120.7686,34.379383],[-120.7686,34.379383],[-120.7625,34.37797],[-120.7525,34.37555],[-120.7426,34.37332],[-120.7326,34.371],[-120.7196,34.36785],[-120.7079,34.3649],[-120.698,34.36227],[-120.6889,34.3599],[-120.6793,34.35745],[-120.6682,34.3547],[-120.6571,34.35188],[-120.6472,34.34982],[-120.6444,34.3492],[-120.6363,34.34747],[-120.6265,34.3455],[-120.6157,34.34327],[-120.6043,34.34087],[-120.5927,34.33873],[-120.581,34.33647],[-120.5698,34.33437],[-120.5531,34.33133],[-120.5425,34.32928],[-120.53449,34.327683],[-120.5307,34.32687],[-120.5205,34.32463],[-120.5101,34.32233],[-120.5002,34.31982],[-120.4902,34.31708],[-120.4785,34.31455],[-120.4689,34.31248],[-120.4592,34.31043],[-120.4499,34.30845],[-120.4395,34.30618],[-120.4298,34.30412],[-120.4199,34.30183],[-120.4096,34.29932],[-120.3989,34.29683],[-120.3888,34.29465],[-120.3807,34.2927],[-120.3702,34.2903],[-120.35893,34.287717],[-120.3556,34.28697],[-120.3451,34.2846],[-120.3301,34.28108],[-120.3195,34.27858],[-120.3036,34.27485],[-120.2924,34.27218],[-120.2827,34.26988],[-120.272,34.2673],[-120.2621,34.26483],[-120.2517,34.26222],[-120.2367,34.25853],[-120.2261,34.25597],[-120.216,34.25368],[-120.2045,34.2512],[-120.1936,34.24888],[-120.1843,34.24697],[-120.1689,34.24378],[-120.1585,34.2417],[-120.1479,34.23952],[-120.138,34.23743],[-120.1234,34.23427],[-120.1141,34.2322],[-120.10936,34.23115],[-120.1044,34.23005],[-120.093,34.22755],[-120.082,34.22505],[-120.0713,34.22252],[-120.0601,34.22007],[-120.0507,34.21786],[-120.0412,34.21565],[-120.0298,34.21287],[-120.0195,34.21053],[-120.0092,34.20825],[-119.9977,34.20568],[-119.9861,34.20303],[-119.9748,34.20045],[-119.9635,34.19788],[-119.9523,34.19528],[-119.9374,34.19173],[-119.9277,34.18943],[-119.9168,34.18682],[-119.9069,34.18455],[-119.8963,34.18227],[-119.8862,34.18013],[-119.8757,34.17803],[-119.8647,34.1758],[-119.8552,34.17392],[-119.8451,34.17178],[-119.8316,34.16897],[-119.8207,34.1667],[-119.8107,34.16452],[-119.7993,34.16198],[-119.788,34.15948],[-119.778,34.15747],[-119.7679,34.1554],[-119.7521,34.15188],[-119.7428,34.14988],[-119.7329,34.14779],[-119.7223,34.1454],[-119.7125,34.14315],[-119.6981,34.13978],[-119.6877,34.13725],[-119.6769,34.1346],[-119.6664,34.13198],[-119.6554,34.12926],[-119.6463,34.1269],[-119.64432,34.126417],[-119.6317,34.12338],[-119.6225,34.12113],[-119.6129,34.11878],[-119.6027,34.11632],[-119.5934,34.11398],[-119.5845,34.1117],[-119.5721,34.10858],[-119.5645,34.10682],[-119.5563,34.1049],[-119.5485,34.10323],[-119.5399,34.10165],[-119.5284,34.09933],[-119.52,34.09753],[-119.5117,34.09605],[-119.50387,34.094533],[-119.499,34.09342],[-119.4903,34.09155],[-119.4815,34.08961],[-119.4691,34.08697],[-119.4616,34.0851],[-119.4535,34.08317],[-119.4448,34.08107],[-119.4355,34.07862],[-119.4263,34.0767],[-119.4174,34.07555],[-119.4079,34.07418],[-119.3986,34.07248],[-119.3906,34.07107],[-119.3812,34.06868],[-119.3728,34.06622],[-119.3643,34.064],[-119.3554,34.06207],[-119.3468,34.06017],[-119.3381,34.05828],[-119.3301,34.0565],[-119.3206,34.05438],[-119.3119,34.05252],[-119.3036,34.05067],[-119.2944,34.04853],[-119.29261,34.048113],[-119.2842,34.0462],[-119.2749,34.04407],[-119.2668,34.04213],[-119.2568,34.03819],[-119.2484,34.03382],[-119.2407,34.02988],[-119.2322,34.02559],[-119.2206,34.01973],[-119.2132,34.01602],[-119.20823,34.01362],[-119.2053,34.01215],[-119.197,34.00793],[-119.1899,34.00433],[-119.1815,34.00023],[-119.1737,33.99645],[-119.1654,33.99237],[-119.1537,33.98663],[-119.1463,33.98315],[-119.1393,33.97967],[-119.1338,33.97687],[-119.1271,33.9736],[-119.1197,33.97042],[-119.1114,33.96663],[-119.10996,33.966],[-119.1027,33.9626],[-119.0957,33.95938],[-119.088,33.95582]]}}
{"type":"Feature","geometry":{"type":"LineString","coordinates":[[122.12628,29.91725],[122.1649,29.90575],[122.1893,29.86635],[122.2016,29.8449],[122.21283,29.83055],[122.2147,29.82877],[122.2337,29.81073],[122.2486,29.79773],[122.2637,29.78438],[122.2792,29.77297],[122.28805,29.76628],[122.2912,29.76403],[122.3112,29.74978],[122.3274,29.73473],[122.3581,29.72293],[122.3839,29.71817],[122.40944,29.708967],[122.4215,29.70517],[122.4549,29.69263],[122.4934,29.68092],[122.5161,29.67537],[122.5568,29.66663],[122.58629,29.662983],[122.5934,29.66208],[122.6283,29.6704],[122.6517,29.6889],[122.6773,29.70863],[122.7039,29.72893],[122.72953,29.748467],[122.7369,29.75403],[122.7597,29.77083],[122.7865,29.79712],[122.811,29.82037],[122.8391,29.83968],[122.86468,29.856583],[122.8691,29.85947],[122.9006,29.87982],[122.9329,29.90078],[122.96,29.91852],[122.9894,29.938],[123.01749,29.956633],[123.0493,29.97708],[123.0806,29.99712],[123.1116,30.01418],[123.1477,30.02428],[123.1842,30.0353],[123.18779,30.036383],[123.2198,30.04542],[123.2571,30.05208],[123.2962,30.05862],[123.3346,30.06232],[123.3696,30.07222],[123.404,30.0849],[123.4399,30.09865],[123.4743,30.1126],[123.5136,30.12875],[123.5462,30.14198],[123.5809,30.15595],[123.6087,30.16692],[123.6446,30.17863],[123.6798,30.19013],[123.7195,30.20318],[123.7459,30.2119],[123.7887,30.2278],[123.8165,30.23987],[123.8483,30.25558],[123.8786,30.27035],[123.9129,30.28452],[123.9463,30.29747],[123.9753,30.3089],[124.0079,30.32158],[124.1168,30.36252],[124.1505,30.37497],[129.0818,31.00977],[129.1077,31.00758],[129.1581,31.00287],[129.1978,30.99887],[129.2383,30.99525],[129.2726,30.99243],[129.3504,30.9854],[129.3834,30.98243],[129.4265,30.97965],[129.4632,30.97853],[129.5058,30.97743],[129.5442,30.97398],[129.5811,30.97095],[129.6178,30.96685],[129.6573,30.96105],[129.6934,30.95657],[129.73349,30.95225],[129.7392,30.9517],[129.7791,30.9475],[129.8195,30.9433],[129.8577,30.93918],[129.8978,30.9347],[129.9371,30.92968],[129.9784,30.92413],[130.0177,30.92012],[130.0621,30.91523],[130.0986,30.91128],[130.138,30.90748],[130.1787,30.90377],[130.2251,30.89972],[130.2644,30.89655],[130.3033,30.89353],[130.3482,30.88992],[130.5208,30.8745],[130.5611,30.87072],[130.6093,30.8665],[130.6501,30.87015],[130.68575,30.878483],[130.6857,30.87848],[130.7563,30.89362],[130.8143,30.90593],[130.8578,30.91567],[130.8965,30.93028],[130.9403,30.94753],[130.9759,30.96195],[131.0257,30.98005],[131.065,30.98747],[131.1118,30.99312],[131.1578,30.99622],[131.1986,30.99897],[131.2467,31.00115],[131.2923,31.0011],[131.338,31.00053],[131.3831,30.99968],[131.4318,30.9989],[131.4667,30.99897],[131.5223,30.9994],[131.5787,30.99983],[131.608,31.00027],[131.6382,30.99948],[131.6918,30.99657],[131.7368,30.99722],[131.777,30.9974],[131.8186,30.9981],[131.8502,30.99867],[131.9114,31.00042],[131.9525,31.00077],[132.0184,31.00025],[132.8764,31.00008],[132.87639,31.000083],[132.8746,31.0001],[134.58731,31.001667],[134.5873,31.00167],[135.00452,30.99755],[135.0045,30.99755],[135.19841,30.998233],[135.1984,30.99823],[135.533,30.9977],[135.533,30.9977],[135.9116,30.99992],[136.32037,30.996233],[136.3204,30.99623],[136.55076,30.998167],[136.5508,30.99817],[136.76965,31.000233],[136.7697,31.00023],[137.26541,30.998817],[137.2654,30.99882],[137.55087,30.96755],[137.5692,30.96837],[138.05909,30.994983],[138.0591,30.99498],[138.3986,31.000067],[138.3986,31.00007],[138.56628,31.001617],[138.5663,31.00162],[138.73699,31.000983],[138.737,31.00098],[138.90677,30.99975],[138.9068,30.99975],[139.11905,31.00015],[139.119,31.00015],[139.81261,30.99975],[139.8126,30.99975],[140.03208,30.999267],[140.0321,30.99927],[140.5488,30.999667],[140.5488,30.99967],[141.79219,30.99925],[141.8219,30.99932],[141.8629,30.99935],[142.14888,30.99165],[142.1489,30.99165],[142.34776,30.99765],[142.3478,30.99765],[142.3682,30.9978],[142.3682,30.9978],[142.4939,30.99837],[142.5409,30.99833],[142.70928,30.9985],[142.7093,30.9985],[142.86201,30.999467],[142.862,30.99947],[142.91652,31.000483],[142.9165,31.00048],[143.025,31.00202],[143.19079,31.000967],[143.1908,31.00097],[143.35592,31.000917],[143.3559,31.00092],[143.68419,30.999617],[143.7888,31.00293],[143.91803,31.004933],[143.918,31.00493],[144.0798,30.999583],[144.0798,30.99958],[144.2444,30.99587],[144.28673,30.995333],[144.2867,30.99533],[144.3113,30.99518],[144.3382,30.99508],[144.62681,30.9981],[144.6268,30.9981],[144.78275,30.999633],[144.7827,30.99963],[144.8207,31.00197],[144.94367,30.99825],[144.9437,30.99825],[145.03439,30.995117],[145.0344,30.99512],[145.31505,30.998333],[145.315,30.99833],[145.49212,31.001],[145.4921,31.001],[145.71749,31.001867],[145.7175,31.00187],[145.94675,31.00115],[145.9467,31.00115],[146.09531,30.99935],[146.1187,30.99937],[146.66273,31.000167],[146.6627,31.00017],[146.82908,31.000083],[146.8291,31.00008],[147.14607,30.997183],[147.1461,30.99718],[147.3446,30.998667],[147.3446,30.99867],[147.65539,30.999733],[147.6554,30.99973],[147.82367,31.000917],[147.8237,31.00092],[147.8529,31.001],[148.04541,31.000417],[148.0454,31.00042],[148.0713,31.00012],[148.1716,30.999467],[148.1716,30.99947],[148.2997,30.9987],[148.53277,30.996067],[148.5328,30.99607],[148.6025,30.99492],[148.76019,30.993683],[148.7602,30.99368],[148.98603,30.995517],[148.986,30.99552],[149.10148,30.998433],[149.1015,30.99843],[149.1866,31.00237],[149.27887,31.003667],[149.2789,31.00367],[149.62187,30.9957],[149.6219,30.9957],[149.77592,30.995],[149.7759,30.995],[149.8254,30.99532],[150.093,30.998183],[150.093,30.99818],[150.26335,31.001667],[150.2634,31.00167],[150.42027,30.998917],[150.4203,30.99892],[150.63072,30.996083],[150.6417,30.99587],[150.717,30.99542],[150.779,30.99535],[150.94149,30.995133],[150.9415,30.99513],[151.1802,30.998117],[151.1802,30.99812],[151.22357,30.99915],[151.239,30.99945],[151.2766,30.99933],[151.43753,30.998833],[151.4375,30.99883],[151.5668,30.99952],[151.57763,30.999683],[151.662,31.00038],[151.88624,31.001467],[151.8862,31.00147],[151.9172,31.00143],[152.11443,31.001767],[152.1144,31.00177],[152.22489,31.0009],[152.2249,31.0009],[152.34296,30.999567],[152.343,30.99957],[152.53861,30.9984],[152.5386,30.9984],[152.5757,30.9983],[152.80428,30.997517],[152.8043,30.99752],[152.95593,30.997583],[152.9559,30.99758],[153.1037,31.0009],[153.20355,31.00185],[153.2036,31.00185],[153.288,31.0025],[153.48597,31],[153.486,31],[153.5281,30.99928],[153.66411,30.9986],[153.6641,30.9986],[153.6772,30.99855],[153.83281,30.997017],[153.8328,30.99702],[153.8501,30.99683],[153.89913,30.996517],[154.1096,30.998283],[154.1096,30.99828],[154.1771,30.99977],[154.33176,31.002433],[154.3318,31.00243],[154.50247,31.002617],[154.5025,31.00262],[154.66976,30.997383],[154.6698,30.99738],[154.7932,30.99755],[155.00105,31.001067],[155.0011,31.00107],[155.18361,30.99895],[155.1836,30.99895],[155.36155,30.998933],[155.3615,30.99893],[155.41936,30.997833],[155.4447,30.99783],[155.4671,30.99768],[155.5233,30.99733],[155.69061,30.99845],[155.6906,30.99845],[156.00395,30.998883],[156.004,30.99888],[156.1967,31.00057],[156.36048,31.001283],[156.3605,31.00128],[156.54019,31.001783],[156.5402,31.00178],[156.73439,30.997567],[156.7344,30.99757],[156.86855,30.998617],[156.8685,30.99862],[156.9456,30.99937],[157.05181,30.999883],[157.0518,30.99988],[157.1503,31.00162],[157.39093,31.00455],[157.3909,31.00455],[157.5189,31.00245],[157.6332,30.999967],[157.6332,30.99997],[157.6721,30.99937],[157.84197,30.997383],[157.842,30.99738],[158.06536,30.998683],[158.0654,30.99868],[158.17367,30.998783],[158.1737,30.99878],[158.33747,30.998017],[158.3375,30.99802],[158.5132,30.99703],[158.67517,30.997817],[158.6752,30.99782],[158.71923,30.99785],[158.7192,30.99785],[158.862,30.99837],[159.01951,30.998783],[159.0195,30.99878],[159.1796,30.999383],[159.1796,30.99938],[159.35517,31.000167],[159.3552,31.00017],[159.4175,31.00082],[159.50668,31.002067],[159.5067,31.00207],[159.6136,31.004],[159.66636,31.00405],[159.6664,31.00405],[159.8185,31.00272],[160.00176,31.000633],[160.0018,31.00063],[160.0329,31.00008],[160.21933,30.995017],[160.2193,30.99502],[160.29795,30.9967],[160.2979,30.9967],[160.3241,30.99725],[160.54113,31.000233],[160.5411,31.00023],[160.75539,31.0002],[160.7554,31.0002],[160.96841,30.997867],[160.9684,30.99787],[160.9876,30.99742],[161.22187,30.996667],[161.2219,30.99667],[161.48321,30.996583],[161.4832,30.99658],[161.66553,31.001983],[161.6655,31.00198],[161.7081,31.00207],[161.86519,31.001133],[161.8652,31.00113],[162.0336,31.000183],[162.0336,31.00018],[162.23433,30.998],[162.2343,30.998],[162.40931,30.999183],[162.4093,30.99918],[162.6044,30.99948],[162.76747,30.998167],[162.7675,30.99817],[162.9578,30.996433],[162.9578,30.99643],[163.05392,30.997567],[163.0539,30.99757],[163.131,30.99857],[163.30076,31.000317],[163.3008,31.00032],[163.356,31.0005],[163.3669,31.00062],[163.5026,31.002083],[163.5026,31.00208],[163.81309,31.002667],[163.8131,31.00267],[163.9638,31.00237],[163.99336,31.002167],[164.24928,30.9982],[164.47344,30.997817],[164.62887,30.998167],[164.82525,30.999617],[164.98031,30.99895],[165.29985,31.001733],[165.64811,31.002667],[165.82335,30.998733],[166.00605,30.992367],[166.12612,30.997783],[166.35736,31.001983],[166.51592,30.998533],[166.80867,30.99755],[167.0656,30.996317],[167.15731,30.995983],[167.34921,30.996733],[167.49888,31.000183],[167.71776,30.999217],[167.89139,31.000933],[168.23784,31.00015],[168.40713,31.00065],[168.57771,31.001633],[168.73779,31.00025],[168.92251,31.000417],[169.09755,31.002433],[169.28797,31.000067],[169.59932,30.99955],[169.67856,30.998833],[170.08468,30.998033],[170.32865,30.998383],[170.60007,30.998817],[170.77801,31.000283],[170.97035,30.997767],[171.14292,31.00005],[171.3142,31.001167],[171.6712,31.000083],[171.71041,30.9999],[172.0284,31.004267],[172.23373,31.001],[172.39665,30.998117],[172.6114,30.998983],[172.74877,30.999167],[172.91455,30.997783],[173.07405,30.995683],[173.26455,30.99675],[173.60121,31.000533],[173.87073,31.00525],[173.8984,31.00562],[173.9345,31.00545],[173.9479,31.00515],[174.26659,31.002633],[174.2666,31.00263],[174.63459,30.998583],[174.6346,30.99858],[174.80488,30.998633],[174.8049,30.99863],[174.88229,31.000483],[174.8823,31.00048],[175.09772,31.00325],[175.0977,31.00325],[175.33451,31.015083],[175.3345,31.01508],[175.54368,31.025067],[175.5437,31.02507],[175.74492,31.033717],[175.7449,31.03372],[175.7804,31.03538],[175.89424,31.041733],[175.8942,31.04173],[176.0294,31.04962],[176.0627,31.05167],[176.23168,31.058617],[176.2317,31.05862],[176.27365,31.0599],[176.2737,31.0599],[176.3914,31.06197],[176.55768,31.067983],[176.5577,31.06798],[176.71816,31.075583],[176.7182,31.07558],[176.7574,31.07778],[176.91451,31.08915],[176.9145,31.08915],[177.08317,31.09905],[177.0832,31.09905],[177.1593,31.10278],[177.2836,31.10745],[177.2836,31.10745],[177.4323,31.1128],[177.61933,31.124133],[177.6193,31.12413],[177.78201,31.141083],[177.782,31.14108],[177.84555,31.14615],[177.8456,31.14615],[177.9487,31.1453],[178.06792,31.144367],[178.0679,31.14437],[178.1217,31.14357],[178.2132,31.14093],[178.2828,31.139133],[178.2828,31.13913],[178.52232,31.129483],[178.5223,31.12948],[178.6163,31.12307],[178.73833,31.116083],[178.81559,31.113833],[178.8156,31.11383],[178.8907,31.1123],[178.9309,31.1117],[178.9852,31.11122],[179.04672,31.11155],[179.0467,31.11155],[179.0952,31.1117],[179.1304,31.11147],[179.20825,31.107667],[179.2083,31.10767],[179.2851,31.10622],[179.46733,31.102833],[179.4673,31.10283],[179.68652,31.10045],[179.6865,31.10045],[179.93912,31.095383],[179.9391,31.09538],[-179.89496,31.09055],[-179.73613,31.090417],[-179.57208,31.0865],[-179.5415,31.08565],[-179.5288,31.0852],[-179.5146,31.08487],[-179.4624,31.0837],[-179.38876,31.0821],[-179.3888,31.0821],[-179.2935,31.08015],[-179.2779,31.07982],[-179.2624,31.07958],[-179.04776,31.0761],[-179.0478,31.0761],[-178.92315,31.074867],[-178.8685,31.07445],[-178.74045,31.071983],[-178.6834,31.06992],[-178.52341,31.06415],[-178.5234,31.06415],[-178.5088,31.06358],[-178.28339,31.05945],[-178.2834,31.05945],[-178.14327,31.0613],[-177.96803,31.057767],[-177.968,31.05777],[-177.82121,31.05315],[-177.8212,31.05315],[-177.7909,31.05225],[-177.63233,31.047883],[-177.6323,31.04788],[-177.4816,31.04547],[-177.3134,31.04305],[-177.3134,31.04305],[-177.12464,31.041617],[-177.1088,31.04157],[-176.95648,31.038567],[-176.9565,31.03857],[-176.78616,31.035467],[-176.7862,31.03547],[-176.61133,31.029883],[-176.6113,31.02988],[-176.5063,31.02665],[-176.45173,31.0254],[-176.4517,31.0254],[-176.21669,31.022617],[-176.2167,31.02262],[-176.1031,31.01995],[-176.01647,31.018317],[-176.0165,31.01832],[-175.9272,31.01602],[-175.76695,31.013083],[-175.767,31.01308],[-175.58292,31.010583],[-175.5829,31.01058],[-175.5566,31.01043],[-175.36145,31.00775],[-175.3055,31.0067],[-175.14899,31.002883],[-175.149,31.00288],[-175.1105,31.00197],[-174.98515,31.001267],[-174.9852,31.00127],[-174.9056,31.02473],[-174.82795,31.047583],[-174.8279,31.04758],[-174.67793,31.093417],[-174.6779,31.09342],[-174.41473,31.158833],[-174.4147,31.15883],[-174.23676,31.200517],[-174.2368,31.20052],[-174.1712,31.2177],[-173.99052,31.265683],[-173.9905,31.26568],[-173.80585,31.3177],[-173.8058,31.3177],[-173.7531,31.3318],[-173.63172,31.363983],[-173.6317,31.36398],[-173.5463,31.38628],[-173.41069,31.420917],[-173.4107,31.42092],[-173.327,31.4423],[-173.29229,31.45125],[-173.2923,31.45125],[-173.1251,31.49543],[-173.0772,31.508733],[-173.0772,31.50873],[-172.91099,31.555817],[-172.911,31.55582],[-172.8612,31.5701],[-172.7995,31.58792],[-172.7532,31.6014],[-172.64103,31.6322],[-172.5898,31.64515],[-172.573,31.64947],[-172.47532,31.674483],[-172.4753,31.67448],[-172.20947,31.741367],[-172.16445,31.752933],[-172.1552,31.7554],[-172.1365,31.76042],[-171.92135,31.818533],[-171.9213,31.81853],[-171.76952,31.85885],[-171.7695,31.85885],[-171.54583,31.919083],[-171.5458,31.91908],[-171.34016,31.972167],[-171.3402,31.97217],[-171.288,31.98625],[-171.12948,32.02895],[-171.1295,32.02895],[-171.0806,32.04113],[-171.06344,32.045283],[-171.0634,32.04528],[-170.917,32.08307],[-170.85283,32.099583],[-170.8528,32.09958],[-170.7606,32.12268],[-170.63716,32.157117],[-170.6372,32.15712],[-170.5277,32.18465],[-170.45988,32.202817],[-170.4599,32.20282],[-170.3585,32.23143],[-170.27799,32.25385],[-170.2039,32.27392],[-170.10923,32.29865],[-170.0409,32.3164],[-169.86987,32.352333],[-169.8699,32.35233],[-169.7778,32.37309],[-169.58468,32.415517],[-169.54593,32.424283],[-169.5459,32.42428],[-169.4267,32.45172],[-169.3768,32.46282],[-169.26553,32.48725],[-169.2655,32.48725],[-169.09785,32.521717],[-169.0979,32.52172],[-169.0464,32.53232],[-168.93228,32.55728],[-168.9323,32.55728],[-168.8914,32.56628],[-168.73613,32.601383],[-168.7361,32.60138],[-168.6211,32.62648],[-168.56908,32.638783],[-168.5691,32.63878],[-168.39815,32.6774],[-168.3981,32.6774],[-168.23461,32.713633],[-168.0946,32.74322],[-168.0755,32.74738],[-168.0627,32.75032],[-167.7954,32.807033],[-167.7784,32.81068],[-167.47539,32.8779],[-167.4754,32.8779],[-167.3057,32.91513],[-167.19267,32.940583],[-167.1927,32.94058],[-166.99848,32.984117],[-166.9985,32.98412],[-166.9835,32.98737],[-166.81279,33.0258],[-166.8128,33.0258],[-166.7227,33.0457],[-166.49497,33.094333],[-166.495,33.09433],[-166.2859,33.13857],[-166.1975,33.16143],[-166.0715,33.19168],[-165.97325,33.21495],[-165.9733,33.21495],[-165.92099,33.225383],[-165.921,33.22538],[-165.8013,33.25008],[-165.69668,33.27185],[-165.6967,33.27185],[-165.54801,33.302447],[-165.548,33.30245],[-165.4622,33.31937],[-165.404,33.33127],[-165.3841,33.33535],[-165.24108,33.36622],[-165.2411,33.36622],[-165.14443,33.387283],[-165.1444,33.38728],[-165.0392,33.4116],[-164.98141,33.424],[-164.9814,33.424],[-164.8779,33.44342],[-164.8106,33.45573],[-164.75152,33.465783],[-164.7515,33.46578],[-164.7153,33.47195],[-164.58296,33.491783],[-164.583,33.49178],[-164.5233,33.49292],[-164.36165,33.520183],[-164.3507,33.52287],[-164.3271,33.52895],[-164.20312,33.556933],[-164.2031,33.55693],[-164.0369,33.58663],[-163.97896,33.597417],[-163.979,33.59742],[-163.8131,33.62638],[-163.69335,33.646683],[-163.6933,33.64668],[-163.629,33.65777],[-163.58533,33.665067],[-163.5853,33.66507],[-163.4412,33.68962],[-163.34165,33.707583],[-163.3417,33.70758],[-163.18875,33.73535],[-163.1888,33.73535],[-163.1018,33.75068],[-162.8812,33.788717],[-162.8812,33.78872],[-162.76615,33.809333],[-162.7513,33.81205],[-162.6737,33.82667],[-162.6336,33.83463],[-162.47169,33.863603],[-162.4717,33.8636],[-162.22389,33.905983],[-162.2239,33.90598],[-162.17425,33.914617],[-162.1743,33.91462],[-161.94885,33.95205],[-161.9489,33.95205],[-161.9341,33.95463],[-161.78275,33.98075],[-161.7827,33.98075],[-161.7297,33.98983],[-161.60467,34.01082],[-161.6047,34.01082],[-161.5483,34.02032],[-161.4914,34.0299],[-161.4355,34.03948],[-161.3444,34.055833],[-161.3444,34.05583],[-161.2713,34.06932],[-161.17699,34.08637],[-161.1036,34.0992],[-160.99987,34.1174],[-160.9999,34.1174],[-160.75812,34.162383],[-160.7581,34.16238],[-160.6617,34.17825],[-160.582,34.1911],[-160.582,34.1911],[-160.41316,34.218767],[-160.4132,34.21877],[-160.2923,34.24043],[-160.2505,34.24793],[-160.12235,34.270983],[-160.1223,34.27098],[-159.9358,34.301633],[-159.9358,34.30163],[-159.8963,34.3069],[-159.76205,34.323983],[-159.7621,34.32398],[-159.7102,34.33103],[-159.57464,34.347983],[-159.5394,34.35273],[-159.3836,34.373333],[-159.3836,34.37333],[-159.2413,34.39178],[-159.18593,34.398833],[-159.1859,34.39883],[-159.0664,34.41398],[-159.00285,34.42225],[-159.0029,34.42225],[-158.8551,34.44213],[-158.79281,34.45045],[-158.7928,34.45045],[-158.7085,34.46173],[-158.53851,34.484213],[-158.5385,34.48421],[-158.36305,34.505383],[-158.3631,34.50538],[-158.3475,34.50743],[-158.3338,34.50917],[-158.3206,34.51118],[-158.06135,34.54805],[-158.0613,34.54805],[-157.78113,34.584647],[-157.7811,34.58465],[-157.6161,34.60842],[-157.39949,34.636713],[-157.3995,34.63671],[-157.29659,34.649187],[-157.2601,34.65342],[-157.14248,34.668153],[-157.0948,34.67435],[-156.91941,34.6949],[-156.9194,34.6949],[-156.8655,34.70168],[-156.7518,34.716647],[-156.7518,34.71665],[-156.6699,34.72782],[-156.57529,34.74122],[-156.5753,34.74122],[-156.4758,34.75525],[-156.4184,34.76395],[-156.3963,34.76713],[-156.30296,34.780317],[-156.243,34.78863],[-156.1909,34.79555],[-156.07236,34.80955],[-156.0724,34.80955],[-156.0305,34.81405],[-155.9624,34.821633],[-155.9624,34.82163],[-155.881,34.83062],[-155.8034,34.83918],[-155.73747,34.848167],[-155.7375,34.84817],[-155.6284,34.86475],[-155.56167,34.8746],[-155.5617,34.8746],[-155.5126,34.88167],[-155.405,34.89737],[-155.35756,34.902567],[-155.3576,34.90257],[-155.2779,34.91057],[-155.2305,34.91597],[-155.13481,34.929],[-155.1348,34.929],[-155.0755,34.93737],[-155.0438,34.94167],[-154.95059,34.950567],[-154.9506,34.95057],[-154.8259,34.96177],[-154.70855,34.971517],[-154.7085,34.97152],[-154.6445,34.97672],[-154.56403,34.983283],[-154.564,34.98328],[-154.5173,34.98817],[-154.3896,35.002863],[-154.3896,35.00286],[-154.3528,35.00725],[-154.2893,35.01478],[-154.2204,35.02285],[-154.12753,35.031383],[-154.1275,35.03138],[-154.0987,35.03388],[-153.90032,35.048017],[-153.9003,35.04802],[-153.8427,35.05253],[-153.67707,35.065283],[-153.6771,35.06528],[-153.6251,35.06995],[-153.44123,35.084617],[-153.4412,35.08462],[-153.421,35.08638],[-153.25099,35.104417],[-153.251,35.10442],[-153.02325,35.121283],[-153.0233,35.12128],[-152.97368,35.1247],[-152.9737,35.1247],[-152.9357,35.12831],[-152.77829,35.143467],[-152.7356,35.14763],[-152.6131,35.15893],[-152.50199,35.1706],[-152.502,35.1706],[-152.38253,35.18155],[-152.3825,35.18155],[-152.2783,35.19018],[-152.2431,35.19313],[-152.2079,35.19628],[-152.02901,35.210783],[-152.029,35.21078],[-151.86069,35.224383],[-151.8607,35.22438],[-151.79387,35.2293],[-151.7939,35.2293],[-151.7551,35.23218],[-151.6787,35.23768],[-151.50127,35.257783],[-151.5013,35.25778],[-151.33639,35.274833],[-151.3364,35.27483],[-151.16293,35.28935],[-151.1629,35.28935],[-151.0314,35.30033],[-151.0166,35.30162],[-150.9952,35.30352],[-150.85809,35.314967],[-150.8581,35.31497],[-150.7979,35.3193],[-150.68801,35.32735],[-150.688,35.32735],[-150.6381,35.33163],[-150.51668,35.341533],[-150.5167,35.34153],[-150.4583,35.34622],[-150.34292,35.356483],[-150.3429,35.35648],[-150.2605,35.36397],[-150.16085,35.373233],[-150.1609,35.37323],[-150.1143,35.37737],[-149.9986,35.389],[-149.946,35.392883],[-149.946,35.39288],[-149.8145,35.40077],[-149.76572,35.40288],[-149.7657,35.40288],[-149.7419,35.40395],[-149.60011,35.4109],[-149.6001,35.4109],[-149.4796,35.41708],[-149.40188,35.420313],[-149.4019,35.42031],[-149.3171,35.4241],[-149.17868,35.4308],[-149.1163,35.43378],[-149.0345,35.43632],[-148.84108,35.442183],[-148.8411,35.44218],[-148.8066,35.443467],[-148.8066,35.44347],[-148.58613,35.454567],[-148.5861,35.45457],[-148.5135,35.45853],[-148.37219,35.465733],[-148.3722,35.46573],[-148.14849,35.476517],[-148.1485,35.47652],[-147.98207,35.484537],[-147.9291,35.48785],[-147.9097,35.48908],[-147.78649,35.497263],[-147.7865,35.49726],[-147.7139,35.49978],[-147.57112,35.503767],[-147.5711,35.50377],[-147.5509,35.5042],[-147.40881,35.509217],[-147.4088,35.50922],[-147.2703,35.51573],[-147.24481,35.5169],[-147.2448,35.5169],[-147.0818,35.52413],[-146.96115,35.530583],[-146.9023,35.53399],[-146.8786,35.53555],[-146.8314,35.538763],[-146.8314,35.53876],[-146.8029,35.5408],[-146.64839,35.549117],[-146.6484,35.54912],[-146.5746,35.55083],[-146.46439,35.553933],[-146.4644,35.55393],[-146.3894,35.5574],[-146.237,35.566267],[-146.237,35.56627],[-146.2074,35.56785],[-146.173,35.5695],[-146.1311,35.57165],[-146.05667,35.575297],[-146.0567,35.5753],[-145.979,35.57893],[-145.916,35.58168],[-145.8979,35.58249],[-145.77696,35.588087],[-145.777,35.58809],[-145.7274,35.59072],[-145.7072,35.59173],[-145.59739,35.597233],[-145.5974,35.59723],[-145.47256,35.6046],[-145.4726,35.6046],[-145.444,35.60613],[-145.397,35.60923],[-145.3609,35.61135],[-145.27455,35.6161],[-145.2215,35.61787],[-145.04783,35.622433],[-144.9935,35.62283],[-144.9243,35.62402],[-144.87133,35.624267],[-144.8713,35.62427],[-144.7743,35.62553],[-144.68005,35.62583],[-144.6801,35.62583],[-144.6075,35.62648],[-144.567,35.62712],[-144.5468,35.62729],[-144.3254,35.629317],[-144.3254,35.62932],[-144.26556,35.629033],[-144.10887,35.628333],[-144.1089,35.62833],[-144.0973,35.62847],[-143.91593,35.6297],[-143.9082,35.62977],[-143.8329,35.62945],[-143.68287,35.630967],[-143.6829,35.63097],[-143.6373,35.63173],[-143.51253,35.63385],[-143.5125,35.63385],[-143.4617,35.63367],[-143.3832,35.6333],[-143.31559,35.63275],[-143.3156,35.63275],[-143.2807,35.63227],[-143.2308,35.63192],[-143.1913,35.63273],[-143.13063,35.63395],[-143.1306,35.63395],[-142.9625,35.63578],[-142.95247,35.635947],[-142.7926,35.63671],[-142.73665,35.637167],[-142.7366,35.63717],[-142.6223,35.63923],[-142.55929,35.6407],[-142.5593,35.6407],[-142.4404,35.64265],[-142.28533,35.643417],[-142.2853,35.64342],[-142.2483,35.64353],[-142.15703,35.643533],[-142.157,35.64353],[-141.92593,35.639717],[-141.9259,35.63972],[-141.75885,35.640517],[-141.7589,35.64052],[-141.6338,35.64208],[-141.5831,35.643],[-141.45967,35.644867],[-141.4597,35.64487],[-141.27995,35.645683],[-141.28,35.64568],[-141.2421,35.64557],[-141.10696,35.643767],[-141.107,35.64377],[-140.9276,35.645983],[-140.9276,35.64598],[-140.8882,35.64693],[-140.76188,35.64747],[-140.7619,35.64747],[-140.53145,35.648967],[-140.5314,35.64897],[-140.4963,35.64928],[-140.4052,35.64982],[-140.35369,35.65],[-140.3537,35.65],[-140.3134,35.64973],[-140.2242,35.64978],[-140.1736,35.65012],[-140.0986,35.65047],[-140.06432,35.6506],[-140.0643,35.6506],[-139.994,35.6506],[-139.95279,35.649567],[-139.9528,35.64957],[-139.74093,35.643283],[-139.7409,35.64328],[-139.7048,35.64193],[-139.54743,35.635383],[-139.537,35.63497],[-139.5041,35.63362],[-139.31956,35.626517],[-139.3196,35.62652],[-139.2515,35.62392],[-139.047,35.61622],[-139.047,35.61622],[-138.9719,35.614],[-138.87316,35.610667],[-138.8283,35.60902],[-138.8128,35.60845],[-138.7711,35.60688],[-138.61247,35.601667],[-138.6125,35.60167],[-138.5951,35.60097],[-138.44872,35.594683],[-138.4487,35.59468],[-138.419,35.5937],[-138.35821,35.591867],[-138.3582,35.59187],[-138.321,35.59085],[-138.2677,35.58965],[-138.14508,35.587467],[-138.1451,35.58747],[-138.0984,35.58475],[-137.9764,35.57745],[-137.90325,35.573897],[-137.9033,35.5739],[-137.76265,35.56905],[-137.7626,35.56905],[-137.7325,35.5676],[-137.6014,35.56358],[-137.50896,35.56167],[-137.509,35.56167],[-137.4212,35.55953],[-137.3696,35.55818],[-137.28208,35.556733],[-137.2821,35.55673],[-137.2403,35.55488],[-137.2053,35.55323],[-137.11235,35.548367],[-137.0685,35.54587],[-137.0437,35.5443],[-136.9962,35.5421],[-136.93068,35.53885],[-136.9307,35.53885],[-136.8768,35.53587],[-136.8225,35.53277],[-136.72096,35.528197],[-136.721,35.5282],[-136.5789,35.52597],[-136.54459,35.5258],[-136.5446,35.5258],[-136.5129,35.52553],[-136.3673,35.52408],[-136.32839,35.523517],[-136.3284,35.52352],[-136.3016,35.52335],[-136.2464,35.52277],[-136.1843,35.51863],[-136.09225,35.513417],[-136.0923,35.51342],[-136.0639,35.51193],[-136.043,35.51073],[-135.87743,35.502383],[-135.8774,35.50238],[-135.73981,35.4964],[-135.7398,35.4964],[-135.694,35.49434],[-135.6107,35.49075],[-135.568,35.48897],[-135.52653,35.48755],[-135.5265,35.48755],[-135.4914,35.48675],[-135.4439,35.48585],[-135.3748,35.48428],[-135.31723,35.48237],[-135.3172,35.48237],[-135.1641,35.4782],[-135.12703,35.477233],[-135.127,35.47723],[-135.0464,35.47502],[-134.94668,35.4645],[-134.9467,35.4645],[-134.8007,35.43918],[-134.71989,35.425433],[-134.6708,35.41703],[-134.48565,35.38835],[-134.4857,35.38835],[-134.4694,35.38583],[-134.319,35.36323],[-134.319,35.36323],[-134.2724,35.35523],[-134.10713,35.32595],[-134.1071,35.32595],[-134.0111,35.30858],[-133.97388,35.3023],[-133.9739,35.3023],[-133.9289,35.29475],[-133.85,35.28223],[-133.79145,35.272433],[-133.7915,35.27243],[-133.768,35.2685],[-133.6748,35.25297],[-133.60559,35.24122],[-133.6056,35.24122],[-133.567,35.23454],[-133.5317,35.2284],[-133.46,35.21685],[-133.35509,35.199883],[-133.3551,35.19988],[-133.3079,35.19227],[-133.2638,35.18497],[-133.15955,35.166983],[-133.1595,35.16698],[-133.0945,35.15685],[-133.0611,35.15199],[-132.98913,35.141383],[-132.9429,35.13418],[-132.81765,35.11515],[-132.781,35.10943],[-132.58169,35.075803],[-132.5817,35.0758],[-132.45048,35.053917],[-132.4505,35.05392],[-132.1587,35.0035],[-131.9694,34.971517],[-131.9694,34.97152],[-131.9232,34.96472],[-131.8877,34.95942],[-131.8058,34.946483],[-131.8058,34.94648],[-131.7555,34.9381],[-131.58789,34.910933],[-131.5879,34.91093],[-131.5492,34.90448],[-131.45889,34.88955],[-131.4589,34.88955],[-131.4146,34.88208],[-131.24772,34.855117],[-131.2477,34.85512],[-131.2047,34.8482],[-131.1025,34.83195],[-131.0407,34.8219],[-130.97829,34.811383],[-130.9783,34.81138],[-130.9623,34.80855],[-130.9397,34.80467],[-130.9246,34.80208],[-130.9019,34.79825],[-130.90339,34.798483],[-130.8829,34.79503],[-130.8582,34.7907],[-130.8346,34.78655],[-130.8117,34.78263],[-130.7955,34.77987],[-130.7791,34.77702],[-130.7562,34.77308],[-130.741,34.77058],[-130.7244,34.76775],[-130.71561,34.76625],[-130.7079,34.76493],[-130.6887,34.762],[-130.6652,34.7584],[-130.6486,34.75575],[-130.6304,34.75297],[-130.6097,34.74962],[-130.5916,34.74672],[-130.5734,34.74373],[-130.4469,34.72343],[-130.4106,34.71722],[-130.39552,34.714583],[-130.3878,34.71321],[-130.3696,34.70995],[-130.346,34.70572],[-130.3237,34.7016],[-130.32883,34.702533],[-130.2884,34.69495],[-130.2531,34.68868],[-130.2321,34.6852],[-130.206,34.68018],[-130.171,34.67375],[-130.1439,34.6688],[-130.13349,34.667017],[-130.1267,34.66613],[-130.1137,34.66459],[-129.9964,34.64738],[-129.982,34.64545],[-129.966,34.6429],[-129.8778,34.62903],[-129.7991,34.61573],[-129.79913,34.615733],[-129.7679,34.61027],[-129.7509,34.60727],[-129.73943,34.605167],[-129.7174,34.60132],[-129.6812,34.5956],[-129.6629,34.59265],[-129.6476,34.59015],[-129.6232,34.58617],[-129.6077,34.58365],[-129.587,34.58045],[-129.5653,34.57705],[-129.5262,34.57093],[-129.51832,34.569667],[-129.5106,34.56845],[-129.4865,34.5646],[-129.461,34.56043],[-129.4381,34.55665],[-129.4229,34.55405],[-129.4012,34.55048],[-129.3846,34.5477],[-129.3682,34.54492],[-129.3528,34.54225],[-129.35281,34.54225],[-129.3363,34.5393],[-129.3209,34.53655],[-129.3045,34.5336],[-129.288,34.53057],[-129.2727,34.52768],[-129.2565,34.52458],[-129.2412,34.52163],[-129.2271,34.51895],[-129.2126,34.5161],[-129.1936,34.51242],[-129.15,34.50422],[-129.1339,34.50288],[-129.1197,34.50168],[-129.1048,34.5007],[-129.08748,34.499583],[-129.0802,34.49915],[-129.0658,34.4983],[-129.0455,34.4971],[-129.0264,34.49605],[-129.0042,34.49512],[-128.9891,34.49448],[-128.9722,34.49377],[-128.96696,34.49357],[-128.9537,34.49298],[-128.9377,34.49232],[-128.9231,34.49177],[-128.9059,34.49118],[-128.8886,34.49048],[-128.8605,34.48942],[-128.843,34.4887],[-128.8248,34.48788],[-128.8101,34.48722],[-128.7947,34.4865],[-128.7778,34.4857],[-128.7612,34.48497],[-128.7383,34.4838],[-128.7234,34.48308],[-128.7087,34.48233],[-128.7102,34.482417],[-128.6941,34.48162],[-128.6722,34.48045],[-128.654,34.47953],[-128.6311,34.47832],[-128.6189,34.47788],[-128.6007,34.47712],[-128.5852,34.47645],[-128.5694,34.4758],[-128.57203,34.4759],[-128.5525,34.4751],[-128.5368,34.47452],[-128.5201,34.474],[-128.5053,34.47352],[-128.4901,34.47313],[-128.4723,34.47263],[-128.457,34.47218],[-128.4428,34.4718],[-128.4275,34.47138],[-128.4121,34.47097],[-128.3953,34.47055],[-128.3787,34.47015],[-128.38,34.4702],[-128.3634,34.46972],[-128.3441,34.4692],[-128.3263,34.46872],[-128.3046,34.46817],[-128.2854,34.46762],[-128.2699,34.46712],[-128.2554,34.46662],[-128.2337,34.46577],[-128.2105,34.46465],[-128.1862,34.4632],[-128.1761,34.4626],[-128.16,34.46158],[-128.1422,34.46057],[-128.1257,34.45975],[-128.11048,34.459013],[-128.1105,34.45901],[-128.0932,34.4583],[-128.0494,34.45657],[-128.0341,34.45592],[-128.019,34.45522],[-127.9975,34.45422],[-127.9821,34.45341],[-127.96955,34.452767],[-127.9617,34.45232],[-127.9467,34.45153],[-127.9315,34.45075],[-127.9106,34.44972],[-127.8962,34.44895],[-127.8823,34.44822],[-127.8684,34.4475],[-127.8518,34.44668],[-127.8379,34.44595],[-127.8241,34.44533],[-127.8038,34.44437],[-127.80747,34.444517],[-127.7872,34.44365],[-127.772,34.44295],[-127.7569,34.44228],[-127.7408,34.44158],[-127.7233,34.44085],[-127.7092,34.44024],[-127.6846,34.43925],[-127.6689,34.43862],[-127.6538,34.438],[-127.6402,34.4374],[-127.6245,34.43673],[-127.61396,34.436267],[-127.6036,34.43578],[-127.5878,34.4351],[-127.571,34.43438],[-127.5553,34.4337],[-127.5388,34.433],[-127.5233,34.43237],[-127.5081,34.43168],[-127.4909,34.43087],[-127.4752,34.43018],[-127.4582,34.42935],[-127.44,34.42838],[-127.4245,34.42764],[-127.41785,34.427267],[-127.4089,34.42678],[-127.3918,34.42577],[-127.3751,34.42467],[-127.3582,34.42365],[-127.3413,34.42311],[-127.3255,34.42238],[-127.3084,34.42195],[-127.2411,34.41983],[-127.2226,34.41927],[-127.22128,34.419237],[-127.2054,34.41877],[-127.1883,34.41827],[-127.1699,34.41775],[-127.1527,34.41732],[-127.1283,34.41638],[-127.1134,34.4158],[-127.0896,34.41503],[-127.075,34.41462],[-127.058,34.41412],[-127.0407,34.41365],[-127.0172,34.41313],[-127.02245,34.413233],[-127.0012,34.41277],[-126.9814,34.41227],[-126.9512,34.41138],[-126.9459,34.41122],[-126.9166,34.41028],[-126.9007,34.40972],[-126.8845,34.40917],[-126.8683,34.4086],[-126.8457,34.40778],[-126.8272,34.4072],[-126.8232,34.40708],[-126.8095,34.4066],[-126.7925,34.40602],[-126.7768,34.40548],[-126.7579,34.40485],[-126.7371,34.40408],[-126.7137,34.40322],[-126.6982,34.40265],[-126.6768,34.40195],[-126.6549,34.40087],[-126.641,34.40002],[-126.6262,34.39908],[-126.63001,34.399313],[-126.6117,34.39823],[-126.5963,34.3973],[-126.5816,34.39643],[-126.5669,34.39567],[-126.5529,34.3951],[-126.5387,34.39454],[-126.5245,34.39397],[-126.5038,34.3931],[-126.4892,34.39258],[-126.4736,34.3921],[-126.4513,34.39132],[-126.4309,34.39065],[-126.43823,34.3909],[-126.4137,34.39008],[-126.3937,34.38947],[-126.377,34.38894],[-126.3631,34.38852],[-126.3499,34.38788],[-126.3347,34.38703],[-126.3192,34.38628],[-126.3051,34.38553],[-126.2912,34.38478],[-126.2769,34.38393],[-126.2559,34.38282],[-126.2415,34.38198],[-126.24213,34.382],[-126.227,34.38115],[-126.2052,34.38023],[-126.1905,34.37962],[-126.1765,34.37897],[-126.1631,34.37827],[-126.1411,34.37703],[-126.1245,34.37605],[-126.1031,34.37498],[-126.0889,34.37437],[-126.0742,34.37378],[-126.0607,34.37322],[-126.047,34.37295],[-126.04195,34.37277],[-126.0244,34.37222],[-126.01,34.37175],[-125.9927,34.37123],[-125.979,34.37082],[-125.9636,34.3703],[-125.9493,34.36975],[-125.9285,34.36907],[-125.9072,34.36827],[-125.8931,34.36778],[-125.8789,34.36727],[-125.8583,34.3665],[-125.85572,34.366367],[-125.8436,34.36588],[-125.8294,34.36535],[-125.8146,34.36478],[-125.7914,34.36393],[-125.7771,34.3634],[-125.7643,34.3628],[-125.7487,34.36197],[-125.7333,34.36117],[-125.7176,34.36032],[-125.6967,34.35907],[-125.6814,34.3586],[-125.6664,34.35802],[-125.66185,34.357833],[-125.6529,34.35752],[-125.6306,34.35662],[-125.6162,34.35597],[-125.6013,34.3554],[-125.5863,34.35472],[-125.5654,34.35385],[-125.5509,34.35323],[-125.5365,34.3527],[-125.5208,34.35205],[-125.5001,34.3512],[-125.4863,34.35069],[-125.4707,34.3501],[-125.4662,34.34992],[-125.4557,34.3495],[-125.441,34.34898],[-125.4271,34.3485],[-125.4127,34.34792],[-125.3983,34.34735],[-125.3778,34.3465],[-125.3635,34.34595],[-125.3492,34.34538],[-125.3356,34.34487],[-125.3208,34.34428],[-125.2994,34.3435],[-125.2857,34.34295],[-125.2726,34.34248],[-125.26432,34.342217],[-125.2585,34.34195],[-125.2451,34.34137],[-125.2301,34.34075],[-125.2089,34.3398],[-125.1955,34.33923],[-125.1806,34.33853],[-125.1662,34.33788],[-125.1456,34.33698],[-125.1242,34.33603],[-125.11,34.33543],[-125.0951,34.33477],[-125.0745,34.33378],[-125.07823,34.33395],[-125.0531,34.33392],[-125.0398,34.33423],[-125.0258,34.33457],[-125.0123,34.3349],[-124.9981,34.3353],[-124.9778,34.33583],[-124.9583,34.33635],[-124.9453,34.33658],[-124.9335,34.33683],[-124.9222,34.33712],[-124.9037,34.33743],[-124.89727,34.337517],[-124.8917,34.33758],[-124.8799,34.33778],[-124.8685,34.33792],[-124.8571,34.33802],[-124.8398,34.33812],[-124.8232,34.3382],[-124.8057,34.33825],[-124.7937,34.33833],[-124.7819,34.33838],[-124.7693,34.33838],[-124.7515,34.3384],[-124.7391,34.33842],[-124.73479,34.338417],[-124.7268,34.33847],[-124.7084,34.33908],[-124.6953,34.33947],[-124.684,34.33983],[-124.6653,34.34044],[-124.6477,34.34101],[-124.6363,34.3414],[-124.622,34.34185],[-124.6094,34.34223],[-124.5972,34.34255],[-124.58,34.34307],[-124.5678,34.34342],[-124.57261,34.3433],[-124.5554,34.34377],[-124.5432,34.34408],[-124.5302,34.34442],[-124.5187,34.3447],[-124.5068,34.345],[-124.4897,34.34548],[-124.4715,34.34592],[-124.4597,34.3462],[-124.4477,34.34645],[-124.4305,34.34692],[-124.4182,34.34715],[-124.4062,34.34753],[-124.395,34.3478],[-124.39501,34.3478],[-124.3832,34.3481],[-124.3655,34.34857],[-124.3531,34.34888],[-124.3413,34.34915],[-124.3294,34.34948],[-124.3117,34.34992],[-124.2941,34.3503],[-124.2811,34.35053],[-124.2702,34.35083],[-124.259,34.35103],[-124.24968,34.3512],[-124.2411,34.35125],[-124.2245,34.35165],[-124.2122,34.35193],[-124.1998,34.3521],[-124.1833,34.35223],[-124.1661,34.35237],[-124.1542,34.35252],[-124.1424,34.35258],[-124.1305,34.35265],[-124.1187,34.35278],[-124.1015,34.35323],[-124.0848,34.35388],[-124.08956,34.353683],[-124.0717,34.35445],[-124.0606,34.35485],[-124.0487,34.35538],[-124.0309,34.35612],[-124.0191,34.35648],[-124.0068,34.35683],[-123.9934,34.35713],[-123.9796,34.35747],[-123.9626,34.35787],[-123.9453,34.3583],[-123.933,34.35853],[-123.9213,34.35875],[-123.925,34.358683],[-123.9051,34.35892],[-123.887,34.35907],[-123.875,34.35937],[-123.8635,34.35993],[-123.8463,34.36075],[-123.8299,34.36157],[-123.8134,34.36262],[-123.8023,34.36332],[-123.7915,34.36395],[-123.7792,34.3646],[-123.7673,34.36525],[-123.7538,34.36613],[-123.7533,34.36617],[-123.7414,34.36682],[-123.7294,34.36757],[-123.7159,34.36847],[-123.7037,34.3693],[-123.6905,34.37018],[-123.673,34.37143],[-123.6604,34.37217],[-123.6482,34.37247],[-123.6308,34.3729],[-123.6207,34.37323],[-123.6108,34.37345],[-123.6016,34.37352],[-123.593,34.37333],[-123.5794,34.37263],[-123.5704,34.37215],[-123.5621,34.3717],[-123.554,34.37137],[-123.5387,34.37012],[-123.528,34.36912],[-123.5117,34.36767],[-123.5,34.3675],[-123.488,34.36742],[-123.4753,34.36747],[-123.4575,34.3674],[-123.4452,34.36718],[-123.435,34.36705],[-123.424,34.36682],[-123.4103,34.36652],[-123.4025,34.36638],[-123.3956,34.36657],[-123.3904,34.36698],[-123.3865,34.36745],[-123.3829,34.36777],[-123.3811,34.36797],[-123.3797,34.36815],[-123.3773,34.36828],[-123.3761,34.36825],[-123.3741,34.3689],[-123.372,34.37102],[-123.3697,34.37177],[-123.3657,34.37223],[-123.3633,34.37293],[-123.3611,34.37373],[-123.3577,34.37423],[-123.3535,34.37397],[-123.3494,34.37423],[-123.3439,34.37408],[-123.3368,34.37377],[-123.3292,34.3736],[-123.3205,34.37366],[-123.3109,34.37363],[-123.3015,34.37347],[-123.2901,34.37323],[-123.2787,34.37302],[-123.2683,34.37297],[-123.2575,34.37293],[-123.2405,34.37285],[-123.2232,34.37283],[-123.2112,34.37288],[-123.1997,34.37288],[-123.1824,34.37283],[-123.1711,34.37283],[-123.159,34.3729],[-123.1477,34.373],[-123.13,34.37307],[-123.1182,34.37323],[-123.1064,34.3734],[-123.0892,34.37447],[-123.0781,34.3752],[-123.0674,34.37597],[-123.0558,34.3769],[-123.0393,34.37815],[-123.0282,34.379],[-123.0169,34.37993],[-123.0063,34.38083],[-122.9926,34.38177],[-122.9926,34.38177],[-122.9813,34.38213],[-122.9706,34.38248],[-122.96,34.38293],[-122.943,34.38367],[-122.9316,34.38418],[-122.921,34.38465],[-122.9098,34.38523],[-122.8982,34.38582],[-122.8865,34.38635],[-122.8754,34.38678],[-122.8636,34.3872],[-122.8455,34.38785],[-122.8332,34.38832],[-122.8196,34.38878],[-122.8077,34.38923],[-122.7941,34.3898],[-122.7827,34.39015],[-122.7707,34.39042],[-122.7593,34.39073],[-122.7415,34.39118],[-122.7289,34.39148],[-122.7178,34.39177],[-122.7001,34.39215],[-122.6877,34.39242],[-122.6764,34.3926],[-122.659,34.39282],[-122.6422,34.39305],[-122.6301,34.39317],[-122.6173,34.3933],[-122.6061,34.39343],[-122.5942,34.3936],[-122.5829,34.39371],[-122.5654,34.3939],[-122.5533,34.39402],[-122.5424,34.39405],[-122.5256,34.39418],[-122.5151,34.39423],[-122.5028,34.39452],[-122.4859,34.39487],[-122.4743,34.39515],[-122.4629,34.39552],[-122.4516,34.3959],[-122.4407,34.39628],[-122.4297,34.3967],[-122.4184,34.3971],[-122.4055,34.39738],[-122.3941,34.39777],[-122.3825,34.39812],[-122.366,34.39863],[-122.3488,34.39925],[-122.3367,34.39968],[-122.3248,34.40007],[-122.3123,34.40047],[-122.3014,34.40087],[-122.2888,34.40125],[-122.2711,34.40175],[-122.2594,34.40208],[-122.2479,34.40245],[-122.2361,34.40283],[-122.2183,34.40332],[-122.207,34.40378],[-122.1959,34.4042],[-122.1835,34.40473],[-122.1716,34.40517],[-122.159,34.40562],[-122.147,34.40619],[-122.1317,34.4068],[-122.1136,34.40732],[-122.1022,34.40775],[-122.0907,34.4082],[-122.0776,34.40865],[-122.0663,34.40911],[-122.0548,34.40956],[-122.0428,34.41007],[-122.031,34.41012],[-122.0195,34.41018],[-122.0081,34.41017],[-121.9969,34.41018],[-121.9848,34.41023],[-121.9704,34.41022],[-121.9593,34.41033],[-121.9473,34.41042],[-121.9357,34.41067],[-121.9183,34.41102],[-121.9071,34.41123],[-121.8958,34.41142],[-121.8839,34.41162],[-121.8675,34.41179],[-121.855,34.4121],[-121.8443,34.41235],[-121.8329,34.41278],[-121.8157,34.41331],[-121.8038,34.41367],[-121.7923,34.414],[-121.7804,34.41435],[-121.7632,34.41497],[-121.7517,34.41535],[-121.7413,34.4156],[-121.7275,34.41595],[-121.716,34.41627],[-121.704,34.41655],[-121.6924,34.41682],[-121.674,34.41717],[-121.6621,34.41745],[-121.6511,34.41765],[-121.6391,34.41788],[-121.6271,34.41808],[-121.6146,34.41825],[-121.6031,34.41835],[-121.5855,34.41865],[-121.5731,34.41882],[-121.561,34.41898],[-121.5439,34.4192],[-121.5315,34.41942],[-121.5195,34.4196],[-121.5024,34.42],[-121.4911,34.4202],[-121.4803,34.42038],[-121.4681,34.4207],[-121.4561,34.421],[-121.4441,34.42133],[-121.4333,34.42163],[-121.4221,34.42192],[-121.4046,34.4223],[-121.3932,34.42268],[-121.3808,34.42315],[-121.3638,34.42375],[-121.352,34.42415],[-121.3407,34.4246],[-121.3288,34.42513],[-121.3118,34.42583],[-121.3004,34.42627],[-121.2885,34.42667],[-121.2718,34.42727],[-121.2534,34.42805],[-121.2419,34.42862],[-121.2284,34.42927],[-121.2167,34.42987],[-121.2029,34.4305],[-121.1905,34.43082],[-121.179,34.43122],[-121.1673,34.43153],[-121.1492,34.432],[-121.1375,34.43225],[-121.1253,34.43248],[-121.1078,34.43287],[-121.0956,34.43308],[-121.0835,34.43333],[-121.0714,34.43353],[-121.0541,34.43392],[-121.0425,34.43413],[-121.0309,34.43425],[-121.0187,34.43413],[-121.0065,34.433],[-120.9933,34.4313],[-120.9749,34.42823],[-120.9623,34.42517],[-120.9507,34.42216],[-120.9388,34.41915],[-120.9274,34.41617],[-120.9274,34.41617],[-120.9159,34.41307],[-120.8979,34.40815],[-120.8871,34.4052],[-120.8758,34.4021],[-120.8647,34.39908],[-120.8473,34.39423],[-120.8356,34.39107],[-120.8235,34.38782],[-120.8063,34.38345],[-120.7951,34.38083],[-120.7831,34.37788],[-120.7657,34.37385],[-120.7534,34.3712],[-120.7418,34.36855],[-120.7291,34.36563],[-120.7177,34.36297],[-120.706,34.36022],[-120.6943,34.3575],[-120.683,34.35482],[-120.6716,34.35205],[-120.6601,34.34925],[-120.6429,34.34518],[-120.631,34.3428],[-120.6192,34.3403],[-120.602,34.33618],[-120.5897,34.33327],[-120.5789,34.33073],[-120.5679,34.32815],[-120.5509,34.32435],[-120.5393,34.32217],[-120.5283,34.32003],[-120.5171,34.31788],[-120.5055,34.31573],[-120.4938,34.31363],[-120.4754,34.31033],[-120.4635,34.30815],[-120.4513,34.30583],[-120.434,34.30253],[-120.4217,34.30018],[-120.4099,34.29823],[-120.3981,34.29628],[-120.3864,34.29385],[-120.3754,34.29123],[-120.3644,34.2887],[-120.354,34.28632],[-120.3381,34.28255],[-120.3277,34.28015],[-120.3167,34.27755],[-120.3006,34.27368],[-120.2904,34.27133],[-120.2795,34.26888],[-120.2688,34.26648],[-120.2533,34.26293],[-120.2429,34.26052],[-120.2322,34.25808],[-120.2173,34.25467],[-120.2065,34.25229],[-120.1961,34.24995],[-120.1867,34.2479],[-120.176,34.24558],[-120.1602,34.24213],[-120.1499,34.23988],[-120.1397,34.2377],[-120.1298,34.23567],[-120.1133,34.23228],[-120.1035,34.23027],[-120.0931,34.22805],[-120.0817,34.22567],[-120.0666,34.22257],[-120.0521,34.21957],[-120.0415,34.21737],[-120.0312,34.21528],[-120.0157,34.21212],[-120.0014,34.20898],[-119.9885,34.20607],[-119.9784,34.20378],[-119.9682,34.20147],[-119.9581,34.19915],[-119.948,34.19682],[-119.9312,34.1929],[-119.9214,34.19058],[-119.9105,34.18801],[-119.8945,34.18419],[-119.8842,34.18172],[-119.873,34.179],[-119.8569,34.17515],[-119.8448,34.17232],[-119.8291,34.16883],[-119.8178,34.16617],[-119.807,34.1636],[-119.7911,34.15985],[-119.7803,34.15733],[-119.7695,34.15477],[-119.7545,34.15142],[-119.7437,34.14902],[-119.7335,34.14672],[-119.7234,34.14452],[-119.7124,34.14208],[-119.6971,34.13873],[-119.6864,34.1364],[-119.6759,34.13418],[-119.6643,34.13165],[-119.6532,34.12925],[-119.6427,34.12712],[-119.6318,34.12485],[-119.6159,34.12158],[-119.605,34.1194],[-119.5941,34.11723],[-119.5781,34.11395],[-119.5673,34.11175],[-119.5574,34.10968],[-119.5466,34.10738],[-119.5306,34.1034],[-119.5203,34.1008],[-119.5091,34.09797],[-119.4947,34.09425],[-119.4844,34.09162],[-119.4737,34.08895],[-119.4621,34.08608],[-119.4468,34.08235],[-119.4374,34.08008],[-119.4271,34.07747],[-119.4165,34.0748],[-119.4004,34.071],[-119.3896,34.06843],[-119.3792,34.066],[-119.3631,34.06233],[-119.3519,34.05967],[-119.3414,34.05717],[-119.3253,34.05338],[-119.3145,34.0507],[-119.3045,34.0483],[-119.2941,34.04593],[-119.2779,34.0424],[-119.2683,34.0395],[-119.259,34.03515],[-119.2491,34.03032],[-119.2348,34.0235],[-119.2243,34.01848],[-119.2148,34.01412],[-119.2005,34.0074],[-119.1913,34.00303],[-119.1802,33.99793],[-119.1705,33.99355],[-119.1608,33.98917],[-119.1516,33.98512],[-119.1384,33.97932],[-119.1298,33.97565],[-119.1211,33.97185],[-119.1141,33.9686],[-119.1061,33.96482],[-119.0973,33.96075],[-119.0896,33.95718],[-119.079,33.95235]]}}
{"type":"Feature","geometry":{"type":"LineString","coordinates":[[122.1585,29.91017],[122.1585,29.91017],[122.1669,29.89775],[122.1669,29.89775],[122.172,29.88948],[122.172,29.88948],[122.17395,29.886133],[122.1793,29.8769],[122.1793,29.8769],[122.1869,29.8646],[122.1869,29.8646],[122.1921,29.85695],[122.1921,29.85695],[122.1979,29.84955],[122.1979,29.84955],[122.204,29.84183],[122.204,29.84183],[122.2104,29.83385],[122.2104,29.83385],[122.2165,29.82793],[122.2165,29.82793],[122.2229,29.82115],[122.2229,29.82115],[122.2281,29.81513],[122.2281,29.81513],[122.2326,29.81087],[122.2326,29.81087],[122.2398,29.80477],[122.2398,29.80477],[122.24468,29.8007],[122.2458,29.7998],[122.2458,29.7998],[122.251,29.79553],[122.251,29.79553],[122.2571,29.79025],[122.2571,29.79025],[122.2633,29.78492],[122.2633,29.78492],[122.2684,29.78055],[122.2684,29.78055],[122.2736,29.77627],[122.2736,29.77627],[122.2797,29.77125],[122.2797,29.77125],[122.2898,29.7639],[122.2898,29.7639],[122.2982,29.75822],[122.2982,29.75822],[122.3077,29.7526],[122.3077,29.7526],[122.3178,29.74682],[122.3178,29.74682],[122.32251,29.744133],[122.3303,29.7395],[122.3303,29.7395],[122.3378,29.73482],[122.3378,29.73482],[122.3492,29.7279],[122.3492,29.7279],[122.377,29.71867],[122.377,29.71867],[122.3956,29.71308],[122.3956,29.71308],[122.4347,29.70103],[122.4347,29.70103],[122.4495,29.69597],[122.4495,29.69597],[122.4663,29.69015],[122.4663,29.69015],[122.46688,29.68995],[122.4799,29.68515],[122.4799,29.68515],[122.4951,29.68007],[122.4951,29.68007],[122.5088,29.67525],[122.5088,29.67525],[122.5231,29.67097],[122.5231,29.67097],[122.5478,29.6651],[122.5478,29.6651],[122.5664,29.66165],[122.5664,29.66165],[122.6035,29.6609],[122.6035,29.6609],[122.6356,29.66403],[122.6356,29.66403],[122.63332,29.66365],[122.6608,29.6688],[122.6608,29.6688],[122.6712,29.67088],[122.6712,29.67088],[122.7028,29.67648],[122.7028,29.67648],[122.7156,29.67905],[122.7156,29.67905],[122.7348,29.6814],[122.7348,29.6814],[122.7642,29.6841],[122.7642,29.6841],[122.7966,29.6873],[122.7966,29.6873],[122.8307,29.6904],[122.8307,29.6904],[122.8598,29.6937],[122.8598,29.6937],[122.8954,29.69778],[122.8954,29.69778],[122.931,29.702],[122.931,29.702],[122.9617,29.706],[122.9617,29.706],[122.9912,29.7095],[122.9912,29.7095],[123.0308,29.7147],[123.0308,29.7147],[123.0634,29.7169],[123.0634,29.7169],[123.0964,29.7176],[123.0964,29.7176],[123.1294,29.7187],[123.1294,29.7187],[123.1637,29.7203],[123.1637,29.7203],[123.2,29.7226],[123.2,29.7226],[123.2348,29.7232],[123.2348,29.7232],[123.2696,29.7254],[123.2696,29.7254],[123.3045,29.7277],[123.3045,29.7277],[123.3396,29.7298],[123.3396,29.7298],[123.3752,29.7323],[123.3752,29.7323],[123.409,29.7343],[123.409,29.7343],[123.445,29.7367],[123.445,29.7367],[123.4804,29.7388],[123.4804,29.7388],[123.5152,29.7409],[123.5152,29.7409],[123.5508,29.7434],[123.5508,29.7434],[123.5852,29.7456],[123.5852,29.7456],[123.6204,29.7476],[123.6204,29.7476],[123.6553,29.7502],[123.6553,29.7502],[123.6917,29.7548],[123.6917,29.7548],[123.7247,29.7582],[123.7247,29.7582],[123.7597,29.7615],[123.7597,29.7615],[123.7915,29.7647],[123.7915,29.7647],[123.8322,29.7689],[123.8322,29.7689],[123.8668,29.7725],[123.8668,29.7725],[123.8943,29.7755],[123.8943,29.7755],[123.9309,29.7799],[123.9309,29.7799],[123.9774,29.7857],[123.9774,29.7857],[124.0818,29.7987],[124.0818,29.7987],[128.58621,30.33535],[128.5862,30.33535],[128.5862,30.33535],[128.5862,30.33535],[128.5862,30.33535],[129.3778,30.45412],[129.3778,30.45412],[129.4211,30.46153],[129.4211,30.46153],[129.4783,30.4724],[129.4783,30.4724],[129.515,30.47972],[129.515,30.47972],[129.554,30.48807],[129.554,30.48807],[129.5977,30.49657],[129.5977,30.49657],[129.7096,30.5201],[129.7096,30.5201],[129.7529,30.52862],[129.7529,30.52862],[129.7936,30.53623],[129.7936,30.53623],[129.834,30.5434],[129.834,30.5434],[129.8719,30.5508],[129.8719,30.5508],[129.9117,30.55785],[129.9117,30.55785],[129.9532,30.56488],[129.9532,30.56488],[129.993,30.57185],[129.993,30.57185],[132.77308,31.732917],[132.83048,31.7557],[132.99315,31.825033],[133.17428,31.908817],[133.35989,31.9901],[133.55181,32.072717],[133.73927,32.156583],[133.92837,32.241883],[134.1156,32.3233],[134.37416,32.434967],[134.6099,32.53873],[134.6099,32.53873],[134.68519,32.57305],[135.15861,32.78005],[135.23607,32.813317],[135.40291,32.88675],[135.4795,32.92143],[135.4795,32.92143],[135.5014,32.93147],[135.5014,32.93147],[135.523,32.94132],[135.523,32.94132],[135.5431,32.95035],[135.5431,32.95035],[135.5635,32.95962],[135.5635,32.95962],[135.5851,32.96938],[135.5851,32.96938],[135.59453,32.973583],[135.607,32.97913],[135.607,32.97913],[135.6295,32.98932],[135.6295,32.98932],[135.6391,32.99358],[135.6391,32.99358],[135.6601,33.00274],[135.6601,33.00274],[135.6814,33.01192],[135.6814,33.01192],[135.7038,33.02125],[135.7038,33.02125],[135.7281,33.03135],[135.7281,33.03135],[135.741,33.03653],[135.741,33.03653],[135.7601,33.04422],[135.7601,33.04422],[135.7685,33.04772],[135.7685,33.04772],[135.79559,33.058583],[135.791,33.05678],[135.791,33.05678],[135.8138,33.06603],[135.8138,33.06603],[135.8356,33.0748],[135.8356,33.0748],[135.8599,33.08453],[135.8599,33.08453],[135.8714,33.08917],[135.8714,33.08917],[135.8946,33.09908],[135.8946,33.09908],[135.9153,33.10814],[135.9153,33.10814],[135.9357,33.1169],[135.9357,33.1169],[135.9581,33.12655],[135.9581,33.12655],[135.9779,33.13518],[135.9779,33.13518],[135.99981,33.145033],[136.001,33.14553],[136.001,33.14553],[136.0107,33.15003],[136.0107,33.15003],[136.0323,33.1593],[136.0323,33.1593],[136.0536,33.1685],[136.0536,33.1685],[136.0747,33.17764],[136.0747,33.17764],[136.0959,33.187],[136.0959,33.187],[136.1176,33.19662],[136.1176,33.19662],[136.1273,33.20093],[136.1273,33.20093],[136.148,33.21003],[136.148,33.21003],[136.1688,33.21913],[136.1688,33.21913],[136.1901,33.22838],[136.1901,33.22838],[136.20357,33.23415],[136.2111,33.23723],[136.2111,33.23723],[136.2329,33.24687],[136.2329,33.24687],[136.254,33.25622],[136.254,33.25622],[136.2743,33.26522],[136.2743,33.26522],[136.2959,33.27451],[136.2959,33.27451],[136.3164,33.2832],[136.3164,33.2832],[136.3369,33.2918],[136.3369,33.2918],[136.3574,33.30028],[136.3574,33.30028],[136.3772,33.30842],[136.3772,33.30842],[136.40264,33.319033],[136.3987,33.3173],[136.3987,33.3173],[136.4187,33.32597],[136.4187,33.32597],[136.4389,33.33445],[136.4389,33.33445],[136.58961,33.402],[137.36339,33.734733],[137.5698,33.82281],[137.5698,33.82281],[137.5698,33.822813],[137.9977,34.00808],[137.9977,34.00808],[138.0712,34.03953],[138.0712,34.03953],[138.10953,34.055217],[138.1113,34.05598],[138.1113,34.05598],[138.144,34.06958],[138.144,34.06958],[138.17465,34.082367],[138.1798,34.08468],[138.1798,34.08468],[138.2178,34.10072],[138.2178,34.10072],[138.2518,34.11557],[138.2518,34.11557],[138.2891,34.13242],[138.2891,34.13242],[138.3231,34.148],[138.3231,34.148],[138.3554,34.16283],[138.3554,34.16283],[138.35732,34.163733],[138.3965,34.18147],[138.3965,34.18147],[138.4329,34.19712],[138.4329,34.19712],[138.4692,34.2124],[138.4692,34.2124],[138.53563,34.239983],[138.72692,34.323763],[138.90872,34.406717],[139.08433,34.498117],[139.0964,34.50405],[139.0964,34.50405],[139.118,34.51495],[139.118,34.51495],[139.1387,34.52419],[139.1387,34.52419],[139.172,34.53815],[139.172,34.53815],[139.1942,34.5474],[139.1942,34.5474],[139.253,34.56825],[139.253,34.56825],[139.28089,34.57655],[139.3195,34.58593],[139.3195,34.58593],[139.3512,34.5934],[139.3512,34.5934],[139.3738,34.5987],[139.3738,34.5987],[139.395,34.60303],[139.395,34.60303],[139.46283,34.6272],[139.66611,34.703383],[139.83869,34.762853],[139.8767,34.776],[139.8767,34.776],[140.04292,34.838333],[140.33052,34.939267],[140.46395,34.982933],[140.6017,35.02977],[140.6017,35.02977],[140.85765,35.117017],[140.8577,35.11702],[140.8577,35.11702],[141.0393,35.18182],[141.0393,35.18182],[141.1398,35.21645],[141.1398,35.21645],[141.27893,35.265183],[141.2861,35.2677],[141.2861,35.2677],[141.3044,35.2741],[141.3044,35.2741],[141.3044,35.2741],[141.5418,35.35597],[141.5418,35.35597],[141.62547,35.384967],[141.719,35.41853],[141.719,35.41853],[141.84395,35.462637],[141.96523,35.506467],[141.9652,35.50647],[141.9652,35.50647],[142.0867,35.54883],[142.0867,35.54883],[142.4558,35.67344],[142.4558,35.67344],[142.5493,35.70572],[142.5493,35.70572],[142.56283,35.710267],[142.62447,35.731083],[142.7474,35.77283],[142.7474,35.77283],[142.9024,35.826183],[142.9024,35.82618],[142.9024,35.82618],[143.0833,35.8869],[143.0833,35.8869],[143.1494,35.9092],[143.1494,35.9092],[143.24513,35.94272],[143.34039,35.97575],[143.3404,35.97575],[143.3404,35.97575],[143.7146,36.10588],[143.7146,36.10588],[143.8877,36.16647],[143.8877,36.16647],[143.90308,36.1718],[143.92264,36.1783],[144.1161,36.24188],[144.1161,36.24188],[144.28028,36.295217],[144.2803,36.29522],[144.2803,36.29522],[144.47064,36.36155],[144.4706,36.36155],[144.4706,36.36155],[144.67768,36.441433],[144.6777,36.44143],[144.6777,36.44143],[144.87504,36.507667],[144.875,36.50767],[144.875,36.50767],[145.04248,36.56315],[145.0837,36.57682],[145.0837,36.57682],[145.2362,36.631],[145.2362,36.631],[145.336,36.664847],[145.4475,36.70053],[145.4475,36.70053],[145.7098,36.79652],[145.7098,36.79652],[145.70979,36.796517],[145.7287,36.80253],[145.7287,36.80253],[145.94865,36.872883],[145.9487,36.87288],[145.9487,36.87288],[146.2917,36.9891],[146.2917,36.9891],[146.35979,37.0132],[146.3598,37.0132],[146.3598,37.0132],[146.4688,37.05415],[146.4688,37.05415],[146.4688,37.05415],[146.623,37.10513],[146.623,37.10513],[146.71548,37.13635],[146.7967,37.1628],[146.7967,37.1628],[146.88968,37.193717],[146.8897,37.19372],[146.8897,37.19372],[146.9588,37.21805],[146.9588,37.21805],[146.9755,37.22377],[146.9755,37.22377],[146.9897,37.22878],[146.9897,37.22878],[147.11745,37.271167],[147.1193,37.2718],[147.1193,37.2718],[147.5894,37.42904],[147.5894,37.42904],[147.66989,37.45575],[147.80839,37.500367],[147.8084,37.50037],[147.8084,37.50037],[148.03976,37.57895],[148.0398,37.57895],[148.0398,37.57895],[148.24859,37.64842],[148.2486,37.64842],[148.2486,37.64842],[148.35727,37.683833],[148.3573,37.68383],[148.3573,37.68383],[148.54355,37.749917],[148.5435,37.74992],[148.5435,37.74992],[148.6944,37.8027],[148.6944,37.8027],[148.7228,37.81225],[148.7228,37.81225],[148.72613,37.813367],[148.91065,37.874367],[148.9107,37.87437],[148.9107,37.87437],[148.9306,37.88063],[148.9306,37.88063],[149.0774,37.9323],[149.0774,37.9323],[149.16033,37.961133],[149.1603,37.96113],[149.1603,37.96113],[149.43083,38.049963],[149.4308,38.04996],[149.4308,38.04996],[149.58771,38.099333],[149.5877,38.09933],[149.5877,38.09933],[149.6219,38.11052],[149.6219,38.11052],[149.7716,38.166867],[149.7716,38.16687],[149.7716,38.16687],[149.817,38.18253],[149.817,38.18253],[149.96907,38.230433],[149.9691,38.23043],[149.9691,38.23043],[150.117,38.27532],[150.117,38.27532],[150.141,38.28257],[150.141,38.28257],[150.38952,38.369683],[150.3895,38.36968],[150.3895,38.36968],[150.58843,38.44045],[150.5884,38.44045],[150.5884,38.44045],[150.6763,38.46992],[150.6763,38.46992],[150.90896,38.549817],[150.909,38.54982],[150.909,38.54982],[151.02881,38.589613],[151.0288,38.58961],[151.0288,38.58961],[151.3052,38.68008],[151.3052,38.68008],[151.3774,38.70335],[151.3774,38.70335],[151.6424,38.790117],[151.6424,38.79012],[151.6424,38.79012],[151.85864,38.860467],[151.8586,38.86047],[151.8586,38.86047],[152.0277,38.91763],[152.0277,38.91763],[152.1046,38.94315],[152.1046,38.94315],[152.15495,38.960603],[152.34043,39.0244],[152.3404,39.0244],[152.3404,39.0244],[152.51131,39.082417],[152.5113,39.08242],[152.5113,39.08242],[152.74733,39.16335],[152.7473,39.16335],[152.7473,39.16335],[152.93119,39.226367],[152.9312,39.22637],[152.9312,39.22637],[153.08375,39.276083],[153.0837,39.27608],[153.0837,39.27608],[153.31427,39.351717],[153.3143,39.35172],[153.3143,39.35172],[153.52075,39.42015],[153.5208,39.42015],[153.5208,39.42015],[153.7086,39.48245],[153.7086,39.48245],[153.87887,39.53768],[153.8789,39.53768],[153.8789,39.53768],[154.07469,39.603633],[154.0747,39.60363],[154.0747,39.60363],[154.24521,39.662363],[154.2452,39.66236],[154.2452,39.66236],[154.4137,39.71785],[154.4137,39.71785],[154.4392,39.72615],[154.4335,39.72422],[154.4335,39.72422],[154.4473,39.72893],[154.4473,39.72893],[154.4661,39.73525],[154.4661,39.73525],[154.60401,39.782667],[154.604,39.78267],[154.604,39.78267],[154.80704,39.847],[154.807,39.847],[154.807,39.847],[154.9761,39.90562],[154.9761,39.90562],[155.17848,39.96965],[155.1785,39.96965],[155.1785,39.96965],[155.35332,40.02665],[155.3533,40.02665],[155.3533,40.02665],[155.71237,40.145033],[155.7124,40.14503],[155.7124,40.14503],[155.90235,40.207567],[155.9023,40.20757],[155.9023,40.20757],[156.0628,40.25955],[156.0628,40.25955],[156.0878,40.2677],[156.3832,40.36213],[156.3832,40.36213],[156.38993,40.36455],[156.4737,40.39425],[156.4737,40.39425],[156.4971,40.40265],[156.4971,40.40265],[156.49712,40.40265],[156.513,40.4082],[156.513,40.4082],[156.5269,40.41302],[156.5269,40.41302],[156.5458,40.41935],[156.5458,40.41935],[156.7366,40.482033],[156.978,40.56352],[156.978,40.56352],[156.97796,40.56352],[157.2002,40.63237],[157.2002,40.63237],[157.20868,40.634997],[157.4144,40.6986],[157.4144,40.6986],[157.4144,40.6986],[157.68705,40.7882],[157.6871,40.7882],[157.6871,40.7882],[157.91915,40.87015],[157.9191,40.87015],[157.9191,40.87015],[158.07179,40.9183],[158.0718,40.9183],[158.0718,40.9183],[158.1582,40.94563],[158.1582,40.94563],[158.2641,40.97972],[158.2641,40.97972],[158.33732,41.0038],[158.46243,41.046017],[158.4624,41.04602],[158.4624,41.04602],[158.63611,41.103467],[158.6361,41.10347],[158.6361,41.10347],[158.83535,41.166917],[158.8353,41.16692],[158.8353,41.16692],[158.8917,41.1845],[158.8917,41.1845],[159.03181,41.230817],[159.0318,41.23082],[159.0318,41.23082],[159.1291,41.26433],[159.1291,41.26433],[159.36773,41.342767],[159.3677,41.34277],[159.3677,41.34277],[159.56259,41.402667],[159.5626,41.40267],[159.5626,41.40267],[159.7444,41.45828],[159.7444,41.45828],[159.8509,41.49268],[159.8509,41.49268],[159.9348,41.5195],[159.9348,41.5195],[160.0932,41.56357],[160.0932,41.56357],[160.1983,41.58825],[160.1983,41.58825],[160.4047,41.63565],[160.4047,41.63565],[160.4961,41.65475],[160.4961,41.65475],[160.6907,41.7006],[160.6907,41.7006],[160.7652,41.71672],[160.7652,41.71672],[161.0035,41.76848],[161.0035,41.76848],[161.076,41.78505],[161.076,41.78505],[161.17563,41.8087],[161.2114,41.81702],[161.2114,41.81702],[161.30693,41.838967],[161.3069,41.83897],[161.3069,41.83897],[161.55259,41.8933],[161.5526,41.8933],[161.5526,41.8933],[161.7867,41.94538],[161.7867,41.94538],[161.84675,41.958667],[161.92464,41.976117],[161.9754,41.98755],[161.9754,41.98755],[162.0664,42.00725],[162.0664,42.00725],[162.30624,42.05728],[162.3062,42.05728],[162.3062,42.05728],[162.3236,42.0609],[162.3236,42.0609],[162.49959,42.102213],[162.4996,42.10221],[162.4996,42.10221],[162.75541,42.159533],[162.7554,42.15953],[162.7554,42.15953],[162.89227,42.188],[162.8923,42.188],[162.8923,42.188],[163.1153,42.23427],[163.1153,42.23427],[163.22153,42.259133],[163.31901,42.2823],[163.319,42.2823],[163.319,42.2823],[163.5085,42.32522],[163.5085,42.32522],[163.56845,42.338167],[163.5685,42.33817],[163.5685,42.33817],[163.7063,42.36922],[163.7063,42.36922],[163.90603,42.4131],[163.906,42.4131],[163.906,42.4131],[163.96939,42.426833],[164.0797,42.45055],[164.0797,42.45055],[164.30565,42.500887],[164.3056,42.50089],[164.3056,42.50089],[164.50224,42.54445],[164.5022,42.54445],[164.5022,42.54445],[164.69732,42.588417],[164.6973,42.58842],[164.6973,42.58842],[164.89961,42.634],[164.8996,42.634],[164.8996,42.634],[165.0954,42.67636],[165.0954,42.67636],[165.47544,42.7578],[165.4754,42.7578],[165.4754,42.7578],[165.67709,42.801217],[165.6771,42.80122],[165.6771,42.80122],[165.90127,42.8521],[165.9013,42.8521],[165.9013,42.8521],[166.0817,42.89282],[166.0817,42.89282],[166.23699,42.92725],[166.2882,42.9381],[166.2882,42.9381],[166.49575,42.98225],[166.5402,42.99228],[166.5402,42.99228],[166.69108,43.027233],[166.6911,43.02723],[166.6911,43.02723],[166.8855,43.07088],[166.8855,43.07088],[166.99816,43.093667],[167.243,43.14568],[167.243,43.14568],[167.25139,43.147417],[167.48591,43.198883],[167.4859,43.19888],[167.4859,43.19888],[167.67713,43.242133],[167.731,43.25473],[167.731,43.25473],[167.97813,43.308237],[167.9781,43.30824],[167.9781,43.30824],[168.22793,43.3599],[168.2279,43.3599],[168.2279,43.3599],[168.4612,43.4117],[168.4612,43.4117],[168.4612,43.4117],[168.65452,43.457],[168.6545,43.457],[168.6545,43.457],[168.79016,43.4865],[168.7902,43.4865],[168.7902,43.4865],[168.8577,43.50035],[168.8577,43.50035],[169.01567,43.531417],[169.0157,43.53142],[169.0157,43.53142],[169.0702,43.5432],[169.0702,43.5432],[169.26405,43.5874],[169.2641,43.5874],[169.2641,43.5874],[169.3029,43.59638],[169.3029,43.59638],[169.45576,43.628933],[169.4558,43.62893],[169.4558,43.62893],[169.6494,43.67048],[169.6494,43.67048],[169.85588,43.714433],[169.8559,43.71443],[169.8559,43.71443],[170.05657,43.75285],[170.0566,43.75285],[170.0566,43.75285],[170.37069,43.791867],[170.3707,43.79187],[170.3707,43.79187],[170.48384,43.8053],[170.4838,43.8053],[170.4838,43.8053],[170.69404,43.831517],[170.694,43.83152],[170.694,43.83152],[170.87709,43.855433],[170.8771,43.85543],[170.8771,43.85543],[170.9141,43.85977],[170.9141,43.85977],[171.0942,43.88182],[171.0942,43.88182],[171.1934,43.8942],[171.1934,43.8942],[171.1934,43.8942],[171.3084,43.90813],[171.3084,43.90813],[171.4163,43.9219],[171.4163,43.9219],[171.46588,43.928233],[171.4693,43.9286],[171.4693,43.9286],[171.511,43.9341],[171.511,43.9341],[171.6158,43.9481],[171.6158,43.9481],[171.633,43.950367],[171.7197,43.96163],[171.7197,43.96163],[171.8252,43.97558],[171.8252,43.97558],[171.9474,43.99215],[171.9474,43.99215],[171.94741,43.99215],[172.1495,44.01642],[172.1495,44.01642],[172.1854,44.02048],[172.1854,44.02048],[172.2453,44.02755],[172.2453,44.02755],[172.27227,44.030583],[172.2968,44.03333],[172.2968,44.03333],[172.46795,44.052817],[172.4679,44.05282],[172.4679,44.05282],[172.5389,44.0607],[172.5389,44.0607],[172.7043,44.08182],[172.7043,44.08182],[172.72852,44.085267],[172.8248,44.09797],[172.8248,44.09797],[173.05372,44.12725],[173.0537,44.12725],[173.0537,44.12725],[173.13624,44.137183],[173.3228,44.159],[173.3228,44.159],[173.4579,44.17532],[173.4579,44.17532],[173.49917,44.180283],[173.66833,44.200417],[173.7708,44.21272],[173.7708,44.21272],[173.88797,44.225633],[173.888,44.22563],[173.888,44.22563],[173.9714,44.2356],[173.9714,44.2356],[174.16792,44.259883],[174.1679,44.25988],[174.1679,44.25988],[174.30757,44.277067],[174.3076,44.27707],[174.3076,44.27707],[174.3861,44.28772],[174.3861,44.28772],[174.5444,44.31055],[174.5444,44.31055],[174.5444,44.31055],[174.7299,44.33465],[174.7299,44.33465],[174.80273,44.342567],[174.8027,44.34257],[174.8027,44.34257],[174.9384,44.35788],[174.9384,44.35788],[175.13669,44.380517],[175.1367,44.38052],[175.1367,44.38052],[175.3507,44.40688],[175.3507,44.40688],[175.35073,44.406883],[175.56059,44.433617],[175.5606,44.43362],[175.5606,44.43362],[175.78147,44.460383],[175.7815,44.46038],[175.7815,44.46038],[175.9914,44.4863],[175.9914,44.4863],[176.2274,44.515267],[176.2274,44.51527],[176.2274,44.51527],[176.42229,44.539333],[176.4223,44.53933],[176.4223,44.53933],[176.66037,44.56875],[176.6604,44.56875],[176.6604,44.56875],[177.09859,44.623733],[177.0986,44.62373],[177.0986,44.62373],[177.4974,44.670833],[177.4974,44.67083],[177.4974,44.67083],[177.5499,44.67753],[177.5499,44.67753],[177.766,44.7062],[177.766,44.7062],[177.94195,44.725433],[177.97883,44.729483],[177.9814,44.72978],[177.9814,44.72978],[178.2685,44.7646],[178.2685,44.7646],[178.28424,44.7665],[178.2906,44.76735],[178.2906,44.76735],[178.3188,44.77092],[178.3188,44.77092],[178.3547,44.77537],[178.3547,44.77537],[178.66633,44.815433],[178.6663,44.81543],[178.6663,44.81543],[178.73437,44.82415],[178.96611,44.85],[179.0573,44.8609],[179.0573,44.8609],[179.182,44.87602],[179.182,44.87602],[179.35479,44.897217],[179.3548,44.89722],[179.3548,44.89722],[179.54544,44.922133],[179.5454,44.92213],[179.5454,44.92213],[179.84519,44.961633],[179.8452,44.96163],[179.8452,44.96163],[-179.97077,44.980867],[-179.97077,44.980867],[-179.9708,44.98087],[-179.9708,44.98087],[-179.8917,44.98367],[-179.8917,44.98367],[-179.76369,44.987033],[-179.76369,44.987033],[-179.7637,44.98703],[-179.7637,44.98703],[-179.6823,44.98917],[-179.6823,44.98917],[-179.6031,44.99087],[-179.6031,44.99087],[-179.54663,44.99198],[-179.54663,44.99198],[-179.5466,44.99198],[-179.5466,44.99198],[-179.336,44.9987],[-179.336,44.9987],[-179.13828,45.00755],[-179.13828,45.00755],[-179.1383,45.00755],[-179.1383,45.00755],[-179.05201,45.009533],[-179.05201,45.009533],[-179.052,45.00953],[-179.052,45.00953],[-178.9937,45.01057],[-178.9937,45.01057],[-178.9091,45.01333],[-178.9091,45.01333],[-178.8394,45.01528],[-178.8394,45.01528],[-178.7747,45.01722],[-178.7747,45.01722],[-178.7015,45.02015],[-178.7015,45.02015],[-178.66736,45.021483],[-178.66736,45.021483],[-178.55879,45.0253],[-178.55879,45.0253],[-178.5588,45.0253],[-178.5588,45.0253],[-178.4858,45.02763],[-178.4858,45.02763],[-178.3737,45.03108],[-178.3737,45.03108],[-178.28256,45.033633],[-178.28256,45.033633],[-178.2826,45.03363],[-178.2826,45.03363],[-178.0699,45.04042],[-178.0699,45.04042],[-178.06156,45.040717],[-178.06156,45.040717],[-177.9269,45.04592],[-177.9269,45.04592],[-177.8524,45.04925],[-177.8524,45.04925],[-177.72939,45.05475],[-177.72939,45.05475],[-177.7294,45.05475],[-177.7294,45.05475],[-177.6902,45.05555],[-177.6902,45.05555],[-177.55928,45.058017],[-177.55928,45.058017],[-177.5593,45.05802],[-177.5593,45.05802],[-177.4603,45.06116],[-177.4603,45.06116],[-177.19085,45.070217],[-177.19085,45.070217],[-177.1909,45.07022],[-177.1909,45.07022],[-177.1516,45.07227],[-177.1516,45.07227],[-177.0828,45.07488],[-177.0828,45.07488],[-176.98443,45.0775],[-176.98443,45.0775],[-176.9844,45.0775],[-176.9844,45.0775],[-176.8719,45.08083],[-176.8719,45.08083],[-176.7522,45.08535],[-176.7522,45.08535],[-176.7522,45.08535],[-176.7522,45.08535],[-176.677,45.08868],[-176.677,45.08868],[-176.52928,45.09465],[-176.52928,45.09465],[-176.5293,45.09465],[-176.5293,45.09465],[-176.3962,45.09917],[-176.3962,45.09917],[-176.3087,45.1018],[-176.3087,45.1018],[-176.22519,45.104267],[-176.22519,45.104267],[-176.2252,45.10427],[-176.2252,45.10427],[-176.1227,45.10705],[-176.1227,45.10705],[-176.02632,45.109853],[-176.02632,45.109853],[-176.0263,45.10985],[-176.0263,45.10985],[-175.8715,45.11482],[-175.8715,45.11482],[-175.7047,45.12123],[-175.7047,45.12123],[-175.70295,45.121283],[-175.70295,45.121283],[-175.51897,45.127933],[-175.51897,45.127933],[-175.519,45.12793],[-175.519,45.12793],[-175.4236,45.13133],[-175.4236,45.13133],[-175.304,45.13623],[-175.304,45.13623],[-175.22788,45.138917],[-175.22788,45.138917],[-175.2279,45.13892],[-175.2279,45.13892],[-175.0142,45.14495],[-175.0142,45.14495],[-175.0142,45.14495],[-175.0142,45.14495],[-174.8846,45.14803],[-174.8846,45.14803],[-174.7704,45.151383],[-174.7704,45.151383],[-174.5872,45.1583],[-174.5872,45.1583],[-174.35872,45.1674],[-174.35872,45.1674],[-174.3587,45.1674],[-174.3587,45.1674],[-174.15107,45.173033],[-174.15107,45.173033],[-174.1511,45.17303],[-174.1511,45.17303],[-174.02845,45.17575],[-174.02845,45.17575],[-173.9941,45.17662],[-173.9941,45.17662],[-173.9167,45.17927],[-173.9167,45.17927],[-173.7906,45.18393],[-173.7906,45.18393],[-173.70147,45.187733],[-173.70147,45.187733],[-173.7015,45.18773],[-173.7015,45.18773],[-173.5669,45.19203],[-173.5669,45.19203],[-173.49475,45.194167],[-173.49475,45.194167],[-173.4948,45.19417],[-173.4948,45.19417],[-173.3537,45.19995],[-173.3537,45.19995],[-173.26972,45.203683],[-173.26972,45.203683],[-173.2697,45.20368],[-173.2697,45.20368],[-173.1395,45.20752],[-173.1395,45.20752],[-173.0443,45.2099],[-173.0443,45.2099],[-172.92716,45.2133],[-172.92716,45.2133],[-172.9272,45.2133],[-172.9272,45.2133],[-172.70933,45.219233],[-172.70933,45.219233],[-172.7093,45.21923],[-172.7093,45.21923],[-172.48296,45.228033],[-172.48296,45.228033],[-172.483,45.22803],[-172.483,45.22803],[-172.05976,45.243167],[-172.05976,45.243167],[-172.0598,45.24317],[-172.0598,45.24317],[-171.85195,45.250183],[-171.85195,45.250183],[-171.8519,45.25018],[-171.8519,45.25018],[-171.61992,45.25705],[-171.61992,45.25705],[-171.6199,45.25705],[-171.6199,45.25705],[-171.34032,45.267067],[-171.34032,45.267067],[-171.3403,45.26707],[-171.3403,45.26707],[-171.02283,45.2767],[-171.02283,45.2767],[-171.00676,45.277417],[-171.00676,45.277417],[-171.0068,45.27742],[-171.0068,45.27742],[-170.99,45.27777],[-170.99,45.27777],[-170.9299,45.27953],[-170.9299,45.27953],[-170.6891,45.28838],[-170.6891,45.28838],[-170.58161,45.291983],[-170.58161,45.291983],[-170.2501,45.30187],[-170.2501,45.30187],[-170.23985,45.302187],[-170.23985,45.302187],[-170.2347,45.30233],[-170.2347,45.30233],[-170.1787,45.30385],[-170.1787,45.30385],[-169.76095,45.2971],[-169.76095,45.2971],[-169.69665,45.295763],[-169.69665,45.295763],[-169.6967,45.29576],[-169.6967,45.29576],[-169.43409,45.281033],[-169.43409,45.281033],[-169.4341,45.28103],[-169.4341,45.28103],[-169.3935,45.27823],[-169.3935,45.27823],[-169.3739,45.27683],[-169.3739,45.27683],[-169.12723,45.264267],[-169.12723,45.264267],[-169.1272,45.26427],[-169.1272,45.26427],[-168.9858,45.257133],[-168.9858,45.257133],[-168.9858,45.25713],[-168.9858,45.25713],[-168.8398,45.247],[-168.8398,45.247],[-168.7593,45.24268],[-168.7593,45.24268],[-168.56777,45.232617],[-168.56777,45.232617],[-168.5678,45.23262],[-168.5678,45.23262],[-168.25825,45.215217],[-168.25825,45.215217],[-168.2583,45.21522],[-168.2583,45.21522],[-168.2005,45.21197],[-168.2005,45.21197],[-168.20045,45.211967],[-168.20045,45.211967],[-168.0597,45.20397],[-168.0597,45.20397],[-167.9712,45.19892],[-167.9712,45.19892],[-167.88696,45.196183],[-167.88696,45.196183],[-167.887,45.19618],[-167.887,45.19618],[-167.69735,45.185133],[-167.69735,45.185133],[-167.6973,45.18513],[-167.6973,45.18513],[-167.4517,45.17233],[-167.4517,45.17233],[-167.3963,45.16978],[-167.3963,45.16978],[-167.39632,45.169783],[-167.39632,45.169783],[-167.3222,45.166],[-167.3222,45.166],[-167.2265,45.16138],[-167.2265,45.16138],[-167.18319,45.1591],[-167.18319,45.1591],[-167.1832,45.1591],[-167.1832,45.1591],[-167.102,45.15465],[-167.102,45.15465],[-167.0077,45.14908],[-167.0077,45.14908],[-166.90448,45.143533],[-166.90448,45.143533],[-166.9045,45.14353],[-166.9045,45.14353],[-166.812,45.13858],[-166.812,45.13858],[-166.7921,45.13765],[-166.7921,45.13765],[-166.6478,45.130067],[-166.6478,45.130067],[-166.5862,45.12687],[-166.5862,45.12687],[-166.36569,45.114967],[-166.36569,45.114967],[-166.3657,45.11497],[-166.3657,45.11497],[-166.2132,45.10587],[-166.2132,45.10587],[-166.12937,45.1009],[-166.12937,45.1009],[-166.1294,45.1009],[-166.1294,45.1009],[-166.0715,45.0973],[-166.0715,45.0973],[-166.0023,45.09293],[-166.0023,45.09293],[-165.84693,45.084117],[-165.84693,45.084117],[-165.8469,45.08412],[-165.8469,45.08412],[-165.7673,45.07943],[-165.7673,45.07943],[-165.6862,45.07488],[-165.6862,45.07488],[-165.57836,45.0683],[-165.57836,45.0683],[-165.5784,45.0683],[-165.5784,45.0683],[-165.5009,45.06513],[-165.5009,45.06513],[-165.4584,45.06353],[-165.4584,45.06353],[-165.20709,45.0527],[-165.20709,45.0527],[-165.2071,45.0527],[-165.2071,45.0527],[-165.0656,45.04445],[-165.0656,45.04445],[-165.017,45.0413],[-165.017,45.0413],[-165.01695,45.041303],[-165.01695,45.041303],[-164.922,45.03537],[-164.922,45.03537],[-164.8914,45.033817],[-164.8914,45.033817],[-164.8862,45.0336],[-164.8862,45.0336],[-164.8511,45.03128],[-164.8511,45.03128],[-164.6741,45.01968],[-164.6741,45.01968],[-164.60943,45.015117],[-164.60943,45.015117],[-164.6094,45.01512],[-164.6094,45.01512],[-164.498,45.00827],[-164.498,45.00827],[-164.39,45.002033],[-164.39,45.002033],[-164.39,45.00203],[-164.39,45.00203],[-164.2845,44.99583],[-164.2845,44.99583],[-164.212,44.9921],[-164.212,44.9921],[-164.166,44.99007],[-164.166,44.99007],[-164.12587,44.988067],[-164.12587,44.988067],[-164.0105,44.98326],[-164.0105,44.98326],[-163.81396,44.974383],[-163.81396,44.974383],[-163.769,44.97185],[-163.769,44.97185],[-163.729,44.96962],[-163.729,44.96962],[-163.60655,44.963817],[-163.60655,44.963817],[-163.6066,44.96382],[-163.6066,44.96382],[-163.519,44.95937],[-163.519,44.95937],[-163.4301,44.9554],[-163.4301,44.9554],[-163.3964,44.954],[-163.3964,44.954],[-163.30899,44.948567],[-163.30899,44.948567],[-163.309,44.94857],[-163.309,44.94857],[-163.1668,44.93922],[-163.1668,44.93922],[-163.11209,44.936133],[-163.11209,44.936133],[-163.1121,44.93613],[-163.1121,44.93613],[-162.9398,44.92635],[-162.9398,44.92635],[-162.8994,44.92428],[-162.8994,44.92428],[-162.68273,44.91165],[-162.68273,44.91165],[-162.6827,44.91165],[-162.6827,44.91165],[-162.43883,44.897533],[-162.43883,44.897533],[-162.4388,44.89753],[-162.4388,44.89753],[-162.35911,44.894537],[-162.35911,44.894537],[-162.2274,44.8885],[-162.2274,44.8885],[-162.1074,44.88143],[-162.1074,44.88143],[-162.1074,44.88143],[-162.1074,44.88143],[-162.0303,44.87705],[-162.0303,44.87705],[-161.8737,44.86773],[-161.8737,44.86773],[-161.80293,44.863483],[-161.80293,44.863483],[-161.8029,44.86348],[-161.8029,44.86348],[-161.659,44.85522],[-161.659,44.85522],[-161.57128,44.8517],[-161.57128,44.8517],[-161.5713,44.8517],[-161.5713,44.8517],[-161.4459,44.84657],[-161.4459,44.84657],[-161.36336,44.842097],[-161.36336,44.842097],[-161.3634,44.8421],[-161.3634,44.8421],[-161.2321,44.83487],[-161.2321,44.83487],[-161.1519,44.83067],[-161.1519,44.83067],[-161.01663,44.82215],[-161.01663,44.82215],[-161.0166,44.82215],[-161.0166,44.82215],[-160.9184,44.81617],[-160.9184,44.81617],[-160.71103,44.805917],[-160.71103,44.805917],[-160.711,44.80592],[-160.711,44.80592],[-160.57245,44.7986],[-160.57245,44.7986],[-160.5724,44.7986],[-160.5724,44.7986],[-160.4829,44.7932],[-160.4829,44.7932],[-160.35987,44.785733],[-160.35987,44.785733],[-160.3599,44.78573],[-160.3599,44.78573],[-160.1495,44.77337],[-160.1495,44.77337],[-159.93416,44.756267],[-159.93416,44.756267],[-159.9342,44.75627],[-159.9342,44.75627],[-159.7196,44.72655],[-159.7196,44.72655],[-159.7196,44.72655],[-159.7196,44.72655],[-159.61435,44.711917],[-159.61435,44.711917],[-159.4187,44.68385],[-159.4187,44.68385],[-159.30303,44.66715],[-159.30303,44.66715],[-159.303,44.66715],[-159.303,44.66715],[-159.072,44.63373],[-159.072,44.63373],[-159.01123,44.6241],[-159.01123,44.6241],[-158.67528,44.575367],[-158.67528,44.575367],[-158.64856,44.5717],[-158.64856,44.5717],[-158.6339,44.56967],[-158.6339,44.56967],[-158.26096,44.5163],[-158.26096,44.5163],[-158.14841,44.499017],[-158.14841,44.499017],[-158.1484,44.49902],[-158.1484,44.49902],[-158.0766,44.48798],[-158.0766,44.48798],[-157.91148,44.462883],[-157.91148,44.462883],[-157.9057,44.46213],[-157.9057,44.46213],[-157.8862,44.4595],[-157.8862,44.4595],[-157.857,44.45517],[-157.857,44.45517],[-157.8124,44.44915],[-157.8124,44.44915],[-157.61873,44.421167],[-157.61873,44.421167],[-157.6187,44.42117],[-157.6187,44.42117],[-157.5464,44.41051],[-157.5464,44.41051],[-157.4466,44.396183],[-157.4466,44.396183],[-157.4209,44.39252],[-157.4209,44.39252],[-157.3725,44.38618],[-157.3725,44.38618],[-157.2856,44.37487],[-157.2856,44.37487],[-157.2344,44.36837],[-157.2344,44.36837],[-157.15323,44.358233],[-157.15323,44.358233],[-157.1532,44.35823],[-157.1532,44.35823],[-157.0006,44.33742],[-157.0006,44.33742],[-156.83549,44.313767],[-156.83549,44.313767],[-156.7703,44.30307],[-156.7703,44.30307],[-156.7368,44.29733],[-156.7368,44.29733],[-156.56913,44.271917],[-156.56913,44.271917],[-156.5691,44.27192],[-156.5691,44.27192],[-156.48616,44.260283],[-156.48616,44.260283],[-156.4862,44.26028],[-156.4862,44.26028],[-156.4445,44.25426],[-156.4445,44.25426],[-156.20859,44.219367],[-156.20859,44.219367],[-156.2086,44.21937],[-156.2086,44.21937],[-156.1725,44.21428],[-156.1725,44.21428],[-155.97016,44.187183],[-155.97016,44.187183],[-155.9702,44.18718],[-155.9702,44.18718],[-155.75267,44.153513],[-155.75267,44.153513],[-155.7527,44.15351],[-155.7527,44.15351],[-155.6924,44.14355],[-155.6924,44.14355],[-155.6523,44.1369],[-155.6523,44.1369],[-155.54973,44.11995],[-155.54973,44.11995],[-155.5497,44.11995],[-155.5497,44.11995],[-155.4078,44.09953],[-155.4078,44.09953],[-155.3739,44.09478],[-155.3739,44.09478],[-155.3321,44.08877],[-155.3321,44.08877],[-155.31619,44.08637],[-155.31619,44.08637],[-155.3162,44.08637],[-155.3162,44.08637],[-155.1495,44.06313],[-155.1495,44.06313],[-155.1336,44.06087],[-155.1336,44.06087],[-155.05033,44.04935],[-155.05033,44.04935],[-155.0503,44.04935],[-155.0503,44.04935],[-155.0273,44.0458],[-155.0273,44.0458],[-154.9615,44.03593],[-154.9615,44.03593],[-154.8542,44.01955],[-154.8542,44.01955],[-154.8304,44.0157],[-154.8304,44.0157],[-154.8304,44.0157],[-154.8304,44.0157],[-154.7555,44.00538],[-154.7555,44.00538],[-154.7164,43.99982],[-154.7164,43.99982],[-154.6234,43.98638],[-154.6234,43.98638],[-154.55385,43.976533],[-154.55385,43.976533],[-154.5538,43.97653],[-154.5538,43.97653],[-154.485,43.96693],[-154.485,43.96693],[-154.4247,43.95807],[-154.4247,43.95807],[-154.34823,43.947517],[-154.34823,43.947517],[-154.3482,43.94752],[-154.3482,43.94752],[-154.2343,43.93165],[-154.2343,43.93165],[-154.2084,43.92782],[-154.2084,43.92782],[-154.01207,43.9006],[-154.01207,43.9006],[-153.9158,43.88727],[-153.9158,43.88727],[-153.84983,43.87835],[-153.84983,43.87835],[-153.8498,43.87835],[-153.8498,43.87835],[-153.6689,43.85167],[-153.6689,43.85167],[-153.60505,43.841317],[-153.60505,43.841317],[-153.6051,43.84132],[-153.6051,43.84132],[-153.5777,43.83698],[-153.5777,43.83698],[-153.37159,43.806963],[-153.37159,43.806963],[-153.3716,43.80696],[-153.3716,43.80696],[-153.3134,43.79822],[-153.3134,43.79822],[-153.13348,43.771167],[-153.13348,43.771167],[-153.1335,43.77117],[-153.1335,43.77117],[-153.0681,43.76143],[-153.0681,43.76143],[-152.9751,43.74692],[-152.9751,43.74692],[-152.87979,43.732497],[-152.87979,43.732497],[-152.8363,43.72622],[-152.8363,43.72622],[-152.789,43.71908],[-152.789,43.71908],[-152.58375,43.6902],[-152.58375,43.6902],[-152.5837,43.6902],[-152.5837,43.6902],[-152.5359,43.68393],[-152.5359,43.68393],[-152.5021,43.67938],[-152.5021,43.67938],[-152.3432,43.656133],[-152.3432,43.656133],[-152.3432,43.65613],[-152.3432,43.65613],[-152.2797,43.6464],[-152.2797,43.6464],[-152.2182,43.63782],[-152.2182,43.63782],[-152.18541,43.633133],[-152.18541,43.633133],[-152.1854,43.63313],[-152.1854,43.63313],[-152.0513,43.61298],[-152.0513,43.61298],[-151.9767,43.60172],[-151.9767,43.60172],[-151.91123,43.591533],[-151.91123,43.591533],[-151.9112,43.59153],[-151.9112,43.59153],[-151.71279,43.561833],[-151.71279,43.561833],[-151.7128,43.56183],[-151.7128,43.56183],[-151.6718,43.55563],[-151.6718,43.55563],[-151.626,43.54903],[-151.626,43.54903],[-151.5767,43.54156],[-151.5767,43.54156],[-151.47583,43.526517],[-151.47583,43.526517],[-151.4758,43.52652],[-151.4758,43.52652],[-151.3011,43.5012],[-151.3011,43.5012],[-151.0914,43.4711],[-151.0914,43.4711],[-151.0914,43.4711],[-151.0914,43.4711],[-150.87,43.43992],[-150.87,43.43992],[-150.86997,43.43992],[-150.86997,43.43992],[-150.70679,43.415767],[-150.70679,43.415767],[-150.7068,43.41577],[-150.7068,43.41577],[-150.6412,43.40619],[-150.6412,43.40619],[-150.51372,43.386517],[-150.51372,43.386517],[-150.5137,43.38652],[-150.5137,43.38652],[-150.4529,43.37733],[-150.4529,43.37733],[-150.3125,43.3561],[-150.3125,43.3561],[-150.02441,43.312233],[-150.02441,43.312233],[-150.0244,43.31223],[-150.0244,43.31223],[-149.8968,43.28487],[-149.8968,43.28487],[-149.78465,43.257017],[-149.78465,43.257017],[-149.6867,43.23262],[-149.6867,43.23262],[-149.5803,43.20715],[-149.5803,43.20715],[-149.47869,43.183783],[-149.47869,43.183783],[-149.4787,43.18378],[-149.4787,43.18378],[-149.4055,43.16638],[-149.4055,43.16638],[-149.27455,43.13445],[-149.27455,43.13445],[-149.1991,43.1159],[-149.1991,43.1159],[-149.07707,43.088033],[-149.07707,43.088033],[-149.0771,43.08803],[-149.0771,43.08803],[-148.9966,43.06907],[-148.9966,43.06907],[-148.8579,43.03417],[-148.8579,43.03417],[-148.66156,42.985833],[-148.66156,42.985833],[-148.6616,42.98583],[-148.6616,42.98583],[-148.5136,42.9509],[-148.5136,42.9509],[-148.51361,42.9509],[-148.51361,42.9509],[-148.4512,42.9356],[-148.4512,42.9356],[-148.03795,42.837683],[-148.03795,42.837683],[-148.0379,42.83768],[-148.0379,42.83768],[-147.6917,42.7523],[-147.6917,42.7523],[-147.69173,42.7523],[-147.69173,42.7523],[-147.31065,42.65665],[-147.31065,42.65665],[-147.10775,42.60885],[-147.10775,42.60885],[-147.1077,42.60885],[-147.1077,42.60885],[-146.9955,42.58277],[-146.9955,42.58277],[-146.9537,42.57297],[-146.9537,42.57297],[-146.95365,42.572967],[-146.95365,42.572967],[-146.8459,42.54797],[-146.8459,42.54797],[-146.8184,42.54153],[-146.8184,42.54153],[-146.63605,42.498433],[-146.63605,42.498433],[-146.636,42.49843],[-146.636,42.49843],[-146.45287,42.453533],[-146.45287,42.453533],[-146.4529,42.45353],[-146.4529,42.45353],[-146.321,42.42019],[-146.321,42.42019],[-146.26695,42.406667],[-146.26695,42.406667],[-146.267,42.40667],[-146.267,42.40667],[-146.2074,42.39163],[-146.2074,42.39163],[-146.132,42.3728],[-146.132,42.3728],[-146.06832,42.35718],[-146.06832,42.35718],[-146.0242,42.34645],[-146.0242,42.34645],[-145.83103,42.298717],[-145.83103,42.298717],[-145.831,42.29872],[-145.831,42.29872],[-145.8149,42.29475],[-145.8149,42.29475],[-145.61583,42.245317],[-145.61583,42.245317],[-145.6158,42.24532],[-145.6158,42.24532],[-145.4465,42.20295],[-145.4465,42.20295],[-145.35807,42.180333],[-145.35807,42.180333],[-145.3581,42.18033],[-145.3581,42.18033],[-145.3095,42.16833],[-145.3095,42.16833],[-145.2257,42.14688],[-145.2257,42.14688],[-145.09552,42.1161],[-145.09552,42.1161],[-145.0955,42.1161],[-145.0955,42.1161],[-145.046,42.1042],[-145.046,42.1042],[-144.93432,42.077667],[-144.93432,42.077667],[-144.9343,42.07767],[-144.9343,42.07767],[-144.8597,42.05972],[-144.8597,42.05972],[-144.7746,42.0396],[-144.7746,42.0396],[-144.66387,42.012367],[-144.66387,42.012367],[-144.6639,42.01237],[-144.6639,42.01237],[-144.5321,41.97847],[-144.5321,41.97847],[-144.48284,41.965833],[-144.48284,41.965833],[-144.4828,41.96583],[-144.4828,41.96583],[-144.3552,41.93412],[-144.3552,41.93412],[-144.2768,41.91513],[-144.2768,41.91513],[-144.20376,41.897117],[-144.20376,41.897117],[-144.2038,41.89712],[-144.2038,41.89712],[-144.1494,41.88377],[-144.1494,41.88377],[-144.0894,41.86892],[-144.0894,41.86892],[-144.03559,41.8558],[-144.03559,41.8558],[-144.0356,41.8558],[-144.0356,41.8558],[-143.9528,41.83518],[-143.9528,41.83518],[-143.76503,41.78955],[-143.76503,41.78955],[-143.765,41.78955],[-143.765,41.78955],[-143.6972,41.77234],[-143.6972,41.77234],[-143.6781,41.76738],[-143.6781,41.76738],[-143.57979,41.742667],[-143.57979,41.742667],[-143.5798,41.74267],[-143.5798,41.74267],[-143.4956,41.72161],[-143.4956,41.72161],[-143.3829,41.69422],[-143.3829,41.69422],[-143.33069,41.681917],[-143.33069,41.681917],[-143.3307,41.68192],[-143.3307,41.68192],[-143.2077,41.65247],[-143.2077,41.65247],[-143.13265,41.634467],[-143.13265,41.634467],[-143.1327,41.63447],[-143.1327,41.63447],[-143.1038,41.6274],[-143.1038,41.6274],[-143.0153,41.60615],[-143.0153,41.60615],[-142.9509,41.59087],[-142.9509,41.59087],[-142.88548,41.575317],[-142.88548,41.575317],[-142.8855,41.57532],[-142.8855,41.57532],[-142.8182,41.55957],[-142.8182,41.55957],[-142.59039,41.500917],[-142.59039,41.500917],[-142.5904,41.50092],[-142.5904,41.50092],[-142.41128,41.455897],[-142.41128,41.455897],[-142.4113,41.4559],[-142.4113,41.4559],[-142.3637,41.44473],[-142.3637,41.44473],[-142.31,41.43215],[-142.31,41.43215],[-142.1616,41.396867],[-142.1616,41.396867],[-142.1616,41.39687],[-142.1616,41.39687],[-142.1338,41.39023],[-142.1338,41.39023],[-141.95799,41.345133],[-141.95799,41.345133],[-141.958,41.34513],[-141.958,41.34513],[-141.915,41.33393],[-141.915,41.33393],[-141.8738,41.32343],[-141.8738,41.32343],[-141.83681,41.314133],[-141.83681,41.314133],[-141.7403,41.28967],[-141.7403,41.28967],[-141.6707,41.2726],[-141.6707,41.2726],[-141.6006,41.255467],[-141.6006,41.255467],[-141.6006,41.25547],[-141.6006,41.25547],[-141.5243,41.23628],[-141.5243,41.23628],[-141.39875,41.20532],[-141.39875,41.20532],[-141.3987,41.20532],[-141.3987,41.20532],[-141.3711,41.1986],[-141.3711,41.1986],[-141.2294,41.1641],[-141.2294,41.1641],[-141.1777,41.15143],[-141.1777,41.15143],[-141.17048,41.149683],[-141.17048,41.149683],[-141.044,41.11934],[-141.044,41.11934],[-140.98081,41.103333],[-140.98081,41.103333],[-140.9808,41.10333],[-140.9808,41.10333],[-140.9203,41.08813],[-140.9203,41.08813],[-140.78504,41.054617],[-140.78504,41.054617],[-140.785,41.05462],[-140.785,41.05462],[-140.6667,41.02368],[-140.6667,41.02368],[-140.43195,40.96615],[-140.43195,40.96615],[-140.4319,40.96615],[-140.4319,40.96615],[-140.26272,40.922967],[-140.26272,40.922967],[-140.2627,40.92297],[-140.2627,40.92297],[-140.10673,40.883133],[-140.10673,40.883133],[-140.1067,40.88313],[-140.1067,40.88313],[-140.054,40.86983],[-140.054,40.86983],[-139.92253,40.831333],[-139.92253,40.831333],[-139.885,40.81815],[-139.885,40.81815],[-139.8497,40.80595],[-139.8497,40.80595],[-139.729,40.76202],[-139.729,40.76202],[-139.55925,40.704],[-139.55925,40.704],[-139.5592,40.704],[-139.5592,40.704],[-139.51719,40.688],[-139.51719,40.688],[-139.5172,40.688],[-139.5172,40.688],[-139.3835,40.63905],[-139.3835,40.63905],[-139.3383,40.62382],[-139.3383,40.62382],[-139.19707,40.575467],[-139.19707,40.575467],[-139.1971,40.57547],[-139.1971,40.57547],[-139.01867,40.512417],[-139.01867,40.512417],[-139.0187,40.51242],[-139.0187,40.51242],[-138.84675,40.449783],[-138.84675,40.449783],[-138.8467,40.44978],[-138.8467,40.44978],[-138.57183,40.355533],[-138.57183,40.355533],[-138.5718,40.35553],[-138.5718,40.35553],[-138.3966,40.296397],[-138.3966,40.296397],[-138.3966,40.2964],[-138.3966,40.2964],[-138.3017,40.26093],[-138.3017,40.26093],[-138.2682,40.24765],[-138.2682,40.24765],[-138.11412,40.193383],[-138.11412,40.193383],[-138.1141,40.19338],[-138.1141,40.19338],[-137.92913,40.129817],[-137.92913,40.129817],[-137.9291,40.12982],[-137.9291,40.12982],[-137.73259,40.057883],[-137.73259,40.057883],[-137.7326,40.05788],[-137.7326,40.05788],[-137.35839,39.9253],[-137.35839,39.9253],[-137.3584,39.9253],[-137.3584,39.9253],[-137.0723,39.82663],[-137.0723,39.82663],[-137.06287,39.823217],[-137.06287,39.823217],[-137.0331,39.8123],[-137.0331,39.8123],[-136.88772,39.75795],[-136.88772,39.75795],[-136.8877,39.75795],[-136.8877,39.75795],[-136.81427,39.730083],[-136.81427,39.730083],[-136.8143,39.73008],[-136.8143,39.73008],[-136.6903,39.68465],[-136.6903,39.68465],[-136.6726,39.67778],[-136.6726,39.67778],[-136.6355,39.66403],[-136.6355,39.66403],[-136.46604,39.600717],[-136.46604,39.600717],[-136.466,39.60072],[-136.466,39.60072],[-136.40632,39.578583],[-136.40632,39.578583],[-136.4063,39.57858],[-136.4063,39.57858],[-136.3838,39.5703],[-136.3838,39.5703],[-136.3655,39.56323],[-136.3655,39.56323],[-136.3435,39.5554],[-136.3435,39.5554],[-136.2527,39.5219],[-136.2527,39.5219],[-136.18452,39.498663],[-136.18452,39.498663],[-136.1845,39.49866],[-136.1845,39.49866],[-136.132,39.48255],[-136.132,39.48255],[-135.99945,39.441717],[-135.99945,39.441717],[-135.9479,39.4247],[-135.9479,39.4247],[-135.76668,39.359167],[-135.76668,39.359167],[-135.7667,39.35917],[-135.7667,39.35917],[-135.7286,39.34517],[-135.7286,39.34517],[-135.60828,39.301417],[-135.60828,39.301417],[-135.6083,39.30142],[-135.6083,39.30142],[-135.32039,39.1942],[-135.32039,39.1942],[-135.3204,39.1942],[-135.3204,39.1942],[-135.2824,39.1816],[-135.2824,39.1816],[-135.2716,39.17785],[-135.2716,39.17785],[-135.13008,39.1266],[-135.13008,39.1266],[-135.1301,39.1266],[-135.1301,39.1266],[-135.09,39.11132],[-135.09,39.11132],[-135.054,39.09857],[-135.054,39.09857],[-134.93505,39.058883],[-134.93505,39.058883],[-134.9351,39.05888],[-134.9351,39.05888],[-134.8734,39.03647],[-134.8734,39.03647],[-134.76693,38.996733],[-134.76693,38.996733],[-134.7669,38.99673],[-134.7669,38.99673],[-134.7408,38.98683],[-134.7408,38.98683],[-134.6662,38.96015],[-134.6662,38.96015],[-134.63565,38.949983],[-134.63565,38.949983],[-134.6357,38.94998],[-134.6357,38.94998],[-134.6237,38.94572],[-134.6237,38.94572],[-134.5565,38.92173],[-134.5565,38.92173],[-134.5345,38.91382],[-134.5345,38.91382],[-134.50495,38.903233],[-134.50495,38.903233],[-134.5049,38.90323],[-134.5049,38.90323],[-134.3898,38.86187],[-134.3898,38.86187],[-134.35092,38.848183],[-134.35092,38.848183],[-134.3183,38.83703],[-134.3183,38.83703],[-134.2821,38.82452],[-134.2821,38.82452],[-134.2642,38.81823],[-134.2642,38.81823],[-134.2379,38.80038],[-134.2379,38.80038],[-134.18332,38.78235],[-134.18332,38.78235],[-134.1485,38.77197],[-134.1485,38.77197],[-134.0944,38.75408],[-134.0944,38.75408],[-134.05981,38.7428],[-134.05981,38.7428],[-134.0598,38.7428],[-134.0598,38.7428],[-134.0211,38.72938],[-134.0211,38.72938],[-133.88923,38.684283],[-133.88923,38.684283],[-133.8892,38.68428],[-133.8892,38.68428],[-133.79383,38.648983],[-133.79383,38.648983],[-133.7938,38.64898],[-133.7938,38.64898],[-133.7566,38.63467],[-133.7566,38.63467],[-133.7375,38.62725],[-133.7375,38.62725],[-133.6477,38.5943],[-133.6477,38.5943],[-133.6266,38.58677],[-133.6266,38.58677],[-133.57001,38.566117],[-133.57001,38.566117],[-133.57,38.56612],[-133.57,38.56612],[-133.511,38.54447],[-133.511,38.54447],[-133.41725,38.510217],[-133.41725,38.510217],[-133.4173,38.51022],[-133.4173,38.51022],[-133.39,38.50003],[-133.39,38.50003],[-133.35953,38.48885],[-133.35953,38.48885],[-133.3595,38.48885],[-133.3595,38.48885],[-133.2731,38.45812],[-133.2731,38.45812],[-133.2385,38.4467],[-133.2385,38.4467],[-133.2208,38.44057],[-133.2208,38.44057],[-133.22083,38.440567],[-133.22083,38.440567],[-133.2009,38.4338],[-133.2009,38.4338],[-133.1268,38.40862],[-133.1268,38.40862],[-133.0976,38.39818],[-133.0976,38.39818],[-133.06141,38.384783],[-133.06141,38.384783],[-133.0614,38.38478],[-133.0614,38.38478],[-133.0152,38.36797],[-133.0152,38.36797],[-132.9879,38.3583],[-132.9879,38.3583],[-132.93677,38.34045],[-132.93677,38.34045],[-132.9368,38.34045],[-132.9368,38.34045],[-132.8943,38.32475],[-132.8943,38.32475],[-132.8646,38.31407],[-132.8646,38.31407],[-132.79215,38.288017],[-132.79215,38.288017],[-132.7921,38.28802],[-132.7921,38.28802],[-132.7447,38.27098],[-132.7447,38.27098],[-132.62375,38.22625],[-132.62375,38.22625],[-132.6237,38.22625],[-132.6237,38.22625],[-132.5897,38.21323],[-132.5897,38.21323],[-132.51288,38.184017],[-132.51288,38.184017],[-132.5129,38.18402],[-132.5129,38.18402],[-132.4497,38.16143],[-132.4497,38.16143],[-132.4244,38.15208],[-132.4244,38.15208],[-132.3936,38.14058],[-132.3936,38.14058],[-132.36592,38.130833],[-132.36592,38.130833],[-132.3659,38.13083],[-132.3659,38.13083],[-132.2881,38.10262],[-132.2881,38.10262],[-132.2492,38.08875],[-132.2492,38.08875],[-132.14949,38.052017],[-132.14949,38.052017],[-132.1495,38.05202],[-132.1495,38.05202],[-132.104,38.03502],[-132.104,38.03502],[-132.07219,38.022967],[-132.07219,38.022967],[-132.0352,38.00923],[-132.0352,38.00923],[-131.9891,37.99235],[-131.9891,37.99235],[-131.87145,37.9497],[-131.87145,37.9497],[-131.8715,37.9497],[-131.8715,37.9497],[-131.77619,37.91505],[-131.77619,37.91505],[-131.7762,37.91505],[-131.7762,37.91505],[-131.65759,37.8711],[-131.65759,37.8711],[-131.6576,37.8711],[-131.6576,37.8711],[-131.6271,37.86005],[-131.6271,37.86005],[-131.5429,37.82963],[-131.5429,37.82963],[-131.50927,37.81715],[-131.50927,37.81715],[-131.5093,37.81715],[-131.5093,37.81715],[-131.4191,37.78427],[-131.4191,37.78427],[-131.2921,37.73829],[-131.2921,37.73829],[-131.2664,37.72897],[-131.2664,37.72897],[-131.2244,37.71375],[-131.2244,37.71375],[-131.1599,37.69038],[-131.1599,37.69038],[-131.1311,37.67952],[-131.1311,37.67952],[-131.0331,37.64435],[-131.0331,37.64435],[-131.0073,37.63495],[-131.0073,37.63495],[-130.9244,37.6046],[-130.9244,37.6046],[-130.8893,37.59115],[-130.8893,37.59115],[-130.75929,37.543217],[-130.75929,37.543217],[-130.7593,37.54322],[-130.7593,37.54322],[-130.63299,37.495017],[-130.63299,37.495017],[-130.633,37.49502],[-130.633,37.49502],[-130.40003,37.408517],[-130.40003,37.408517],[-130.4,37.40852],[-130.4,37.40852],[-130.27589,37.363933],[-130.27589,37.363933],[-130.2759,37.36393],[-130.2759,37.36393],[-130.1634,37.32224],[-130.1634,37.32224],[-130.13745,37.312383],[-130.13745,37.312383],[-130.1375,37.31238],[-130.1375,37.31238],[-130.0019,37.26325],[-130.0019,37.26325],[-130.00189,37.26325],[-130.00189,37.26325],[-129.85599,37.199617],[-129.85599,37.199617],[-129.856,37.19962],[-129.856,37.19962],[-129.8299,37.1878],[-129.8299,37.1878],[-129.8046,37.17613],[-129.8046,37.17613],[-129.68975,37.123017],[-129.68975,37.123017],[-129.6897,37.12302],[-129.6897,37.12302],[-129.62475,37.092983],[-129.62475,37.092983],[-129.6247,37.09298],[-129.6247,37.09298],[-129.534,37.05528],[-129.534,37.05528],[-129.3982,36.998467],[-129.3982,36.998467],[-129.3963,36.99765],[-129.3963,36.99765],[-129.3793,36.9902],[-129.3793,36.9902],[-129.2526,36.9345],[-129.2526,36.9345],[-129.2526,36.9345],[-129.2526,36.9345],[-129.17608,36.90122],[-129.17608,36.90122],[-129.1761,36.90122],[-129.1761,36.90122],[-129.03019,36.832117],[-129.03019,36.832117],[-129.02,36.82758],[-129.02,36.82758],[-129.0037,36.82028],[-129.0037,36.82028],[-128.90705,36.776183],[-128.90705,36.776183],[-128.9071,36.77618],[-128.9071,36.77618],[-128.874,36.7611],[-128.874,36.7611],[-128.8297,36.74002],[-128.8297,36.74002],[-128.78016,36.717603],[-128.78016,36.717603],[-128.7802,36.7176],[-128.7802,36.7176],[-128.6923,36.67975],[-128.6923,36.67975],[-128.63161,36.652333],[-128.63161,36.652333],[-128.6316,36.65233],[-128.6316,36.65233],[-128.5186,36.60005],[-128.5186,36.60005],[-128.46896,36.5782],[-128.46896,36.5782],[-128.469,36.5782],[-128.469,36.5782],[-128.31185,36.509017],[-128.31185,36.509017],[-128.3119,36.50902],[-128.3119,36.50902],[-128.16221,36.441733],[-128.16221,36.441733],[-128.1622,36.44173],[-128.1622,36.44173],[-128.1343,36.42942],[-128.1343,36.42942],[-128.0365,36.38474],[-128.0365,36.38474],[-128.03649,36.384737],[-128.03649,36.384737],[-127.9915,36.3643],[-127.9915,36.3643],[-127.9625,36.35065],[-127.9625,36.35065],[-127.90915,36.32725],[-127.90915,36.32725],[-127.8841,36.31675],[-127.8841,36.31675],[-127.8672,36.30965],[-127.8672,36.30965],[-127.8194,36.28935],[-127.8194,36.28935],[-127.789,36.27662],[-127.789,36.27662],[-127.72639,36.249487],[-127.72639,36.249487],[-127.7264,36.24949],[-127.7264,36.24949],[-127.6888,36.23332],[-127.6888,36.23332],[-127.6428,36.21282],[-127.6428,36.21282],[-127.53501,36.16427],[-127.53501,36.16427],[-127.5135,36.15497],[-127.5135,36.15497],[-127.48328,36.142083],[-127.48328,36.142083],[-127.4833,36.14208],[-127.4833,36.14208],[-127.38,36.09527],[-127.38,36.09527],[-127.3559,36.08344],[-127.3559,36.08344],[-127.2811,36.04627],[-127.2811,36.04627],[-127.1537,35.98892],[-127.1537,35.98892],[-127.1247,35.9759],[-127.1247,35.9759],[-127.0501,35.94173],[-127.0501,35.94173],[-127.0158,35.92597],[-127.0158,35.92597],[-126.9845,35.91157],[-126.9845,35.91157],[-126.901,35.8739],[-126.901,35.8739],[-126.8765,35.86293],[-126.8765,35.86293],[-126.7847,35.8212],[-126.7847,35.8212],[-126.7516,35.80577],[-126.7516,35.80577],[-126.6511,35.7597],[-126.6511,35.7597],[-126.6367,35.75353],[-126.6367,35.75353],[-126.5133,35.6992],[-126.5133,35.6992],[-126.488,35.68808],[-126.488,35.68808],[-126.4596,35.67542],[-126.4596,35.67542],[-126.4046,35.65148],[-126.4046,35.65148],[-126.3722,35.63755],[-126.3722,35.63755],[-126.2956,35.60367],[-126.2956,35.60367],[-126.2414,35.5819],[-126.2414,35.5819],[-126.1614,35.56303],[-126.1614,35.56303],[-126.1179,35.55322],[-126.1179,35.55322],[-126.0277,35.53358],[-126.0277,35.53358],[-125.9954,35.52688],[-125.9954,35.52688],[-125.9515,35.5175],[-125.9515,35.5175],[-125.7663,35.4785],[-125.7663,35.4785],[-125.6338,35.4469],[-125.6338,35.4469],[-125.5992,35.43913],[-125.5992,35.43913],[-125.449,35.40637],[-125.449,35.40637],[-125.4183,35.39998],[-125.4183,35.39998],[-125.352,35.38595],[-125.352,35.38595],[-125.281,35.37005],[-125.281,35.37005],[-125.1089,35.32985],[-125.1089,35.32985],[-124.967,35.30113],[-124.967,35.30113],[-124.8237,35.27118],[-124.8237,35.27118],[-124.699,35.24567],[-124.699,35.24567],[-124.56155,35.215017],[-124.56155,35.215017],[-124.5615,35.21502],[-124.5615,35.21502],[-124.4607,35.1925],[-124.4607,35.1925],[-124.4317,35.18608],[-124.4317,35.18608],[-124.3167,35.16045],[-124.3167,35.16045],[-124.2041,35.13531],[-124.2041,35.13531],[-124.1731,35.12875],[-124.1731,35.12875],[-124.06368,35.10545],[-124.06368,35.10545],[-124.0637,35.10545],[-124.0637,35.10545],[-124.038,35.09962],[-124.038,35.09962],[-123.90816,35.070583],[-123.90816,35.070583],[-123.9082,35.07058],[-123.9082,35.07058],[-123.8235,35.05172],[-123.8235,35.05172],[-123.7651,35.03908],[-123.7651,35.03908],[-123.6563,35.01617],[-123.6563,35.01617],[-123.5558,34.994],[-123.5558,34.994],[-123.5558,34.994],[-123.5558,34.994],[-123.41085,34.960517],[-123.41085,34.960517],[-123.28475,34.93368],[-123.28475,34.93368],[-123.11332,34.898547],[-123.11332,34.898547],[-122.78233,34.829333],[-122.78233,34.829333],[-122.7823,34.82933],[-122.7823,34.82933],[-122.73452,34.818583],[-122.73452,34.818583],[-122.7345,34.81858],[-122.7345,34.81858],[-122.6849,34.80667],[-122.6849,34.80667],[-122.60781,34.78805],[-122.60781,34.78805],[-122.5879,34.78322],[-122.5879,34.78322],[-122.5747,34.77998],[-122.5747,34.77998],[-122.5112,34.76546],[-122.5112,34.76546],[-122.4982,34.76262],[-122.4982,34.76262],[-122.4821,34.75922],[-122.4821,34.75922],[-122.40827,34.743933],[-122.40827,34.743933],[-122.4083,34.74393],[-122.4083,34.74393],[-122.3788,34.73787],[-122.3788,34.73787],[-122.3306,34.72795],[-122.3306,34.72795],[-122.2991,34.72127],[-122.2991,34.72127],[-122.2859,34.7185],[-122.2859,34.7185],[-122.2732,34.71565],[-122.2732,34.71565],[-122.2596,34.71253],[-122.2596,34.71253],[-122.25909,34.712417],[-122.25909,34.712417],[-122.247,34.70987],[-122.247,34.70987],[-122.2329,34.70668],[-122.2329,34.70668],[-122.2205,34.7039],[-122.2205,34.7039],[-122.2068,34.70088],[-122.2068,34.70088],[-122.1942,34.69805],[-122.1942,34.69805],[-122.1816,34.6952],[-122.1816,34.6952],[-122.17563,34.69385],[-122.17563,34.69385],[-122.1675,34.69205],[-122.1675,34.69205],[-122.1528,34.68875],[-122.1528,34.68875],[-122.1351,34.68476],[-122.1351,34.68476],[-122.1229,34.68202],[-122.1229,34.68202],[-122.1107,34.67918],[-122.1107,34.67918],[-122.0985,34.67638],[-122.0985,34.67638],[-122.0863,34.6735],[-122.0863,34.6735],[-122.0719,34.6701],[-122.0719,34.6701],[-122.0592,34.66693],[-122.0592,34.66693],[-122.0475,34.664],[-122.0475,34.664],[-122.0342,34.66068],[-122.0342,34.66068],[-122.021,34.65747],[-122.021,34.65747],[-122.0077,34.654],[-122.0077,34.654],[-121.9933,34.65033],[-121.9933,34.65033],[-121.9789,34.64665],[-121.9789,34.64665],[-121.96695,34.643817],[-121.96695,34.643817],[-121.9664,34.6437],[-121.9664,34.6437],[-121.9541,34.64091],[-121.9541,34.64091],[-121.9428,34.63833],[-121.9428,34.63833],[-121.9237,34.6343],[-121.9237,34.6343],[-121.9105,34.63162],[-121.9105,34.63162],[-121.8984,34.62925],[-121.8984,34.62925],[-121.8856,34.62712],[-121.8856,34.62712],[-121.8745,34.62487],[-121.8745,34.62487],[-121.8629,34.6227],[-121.8629,34.6227],[-121.8512,34.62055],[-121.8512,34.62055],[-121.8389,34.6182],[-121.8389,34.6182],[-121.8266,34.61585],[-121.8266,34.61585],[-121.8153,34.61363],[-121.8153,34.61363],[-121.8021,34.61077],[-121.8021,34.61077],[-121.7903,34.6081],[-121.7903,34.6081],[-121.78676,34.607333],[-121.78676,34.607333],[-121.7774,34.60542],[-121.7774,34.60542],[-121.7639,34.60247],[-121.7639,34.60247],[-121.754,34.59998],[-121.754,34.59998],[-121.7459,34.59815],[-121.7459,34.59815],[-121.7389,34.59673],[-121.7389,34.59673],[-121.7335,34.59568],[-121.7335,34.59568],[-121.72623,34.594033],[-121.72623,34.594033],[-121.7256,34.59388],[-121.7256,34.59388],[-121.7142,34.59113],[-121.7142,34.59113],[-121.7041,34.5886],[-121.7041,34.5886],[-121.6952,34.58637],[-121.6952,34.58637],[-121.6848,34.58393],[-121.6848,34.58393],[-121.674,34.58148],[-121.674,34.58148],[-121.6629,34.57895],[-121.6629,34.57895],[-121.6523,34.57655],[-121.6523,34.57655],[-121.6419,34.57417],[-121.6419,34.57417],[-121.6313,34.57175],[-121.6313,34.57175],[-121.6201,34.569],[-121.6201,34.569],[-121.6042,34.56575],[-121.6042,34.56575],[-121.5937,34.56373],[-121.5937,34.56373],[-121.585,34.562083],[-121.585,34.562083],[-121.5827,34.56161],[-121.5827,34.56161],[-121.5663,34.55822],[-121.5663,34.55822],[-121.5545,34.55588],[-121.5545,34.55588],[-121.5425,34.55325],[-121.5425,34.55325],[-121.5305,34.55075],[-121.5305,34.55075],[-121.5181,34.54805],[-121.5181,34.54805],[-121.5076,34.54583],[-121.5076,34.54583],[-121.4958,34.54328],[-121.4958,34.54328],[-121.4857,34.54107],[-121.4857,34.54107],[-121.4733,34.53823],[-121.4733,34.53823],[-121.4625,34.53577],[-121.4625,34.53577],[-121.4508,34.53307],[-121.4508,34.53307],[-121.4359,34.52958],[-121.4359,34.52958],[-121.42985,34.528233],[-121.42985,34.528233],[-121.4261,34.52738],[-121.4261,34.52738],[-121.4155,34.52495],[-121.4155,34.52495],[-121.4035,34.5221],[-121.4035,34.5221],[-121.3908,34.51895],[-121.3908,34.51895],[-121.3798,34.51613],[-121.3798,34.51613],[-121.3635,34.51233],[-121.3635,34.51233],[-121.3527,34.50992],[-121.3527,34.50992],[-121.3404,34.5073],[-121.3404,34.5073],[-121.3285,34.50471],[-121.3285,34.50471],[-121.3178,34.50242],[-121.3178,34.50242],[-121.3073,34.50017],[-121.3073,34.50017],[-121.2972,34.4981],[-121.2972,34.4981],[-121.28992,34.496467],[-121.28992,34.496467],[-121.2854,34.49548],[-121.2854,34.49548],[-121.2731,34.49294],[-121.2731,34.49294],[-121.2617,34.49063],[-121.2617,34.49063],[-121.2513,34.48825],[-121.2513,34.48825],[-121.2402,34.48603],[-121.2402,34.48603],[-121.2289,34.48378],[-121.2289,34.48378],[-121.2179,34.48129],[-121.2179,34.48129],[-121.2083,34.47903],[-121.2083,34.47903],[-121.1973,34.47648],[-121.1973,34.47648],[-121.1856,34.4741],[-121.1856,34.4741],[-121.171,34.4709],[-121.171,34.4709],[-121.16,34.46848],[-121.16,34.46848],[-121.1503,34.46645],[-121.1503,34.46645],[-121.1391,34.46418],[-121.1391,34.46418],[-121.1295,34.46225],[-121.1295,34.46225],[-121.12032,34.460267],[-121.12032,34.460267],[-121.1203,34.46027],[-121.1203,34.46027],[-121.1107,34.45818],[-121.1107,34.45818],[-121.1002,34.45583],[-121.1002,34.45583],[-121.0848,34.45237],[-121.0848,34.45237],[-121.0752,34.45013],[-121.0752,34.45013],[-121.0658,34.44792],[-121.0658,34.44792],[-121.056,34.44573],[-121.056,34.44573],[-121.0447,34.44325],[-121.0447,34.44325],[-121.0323,34.44062],[-121.0323,34.44062],[-121.0178,34.43733],[-121.0178,34.43733],[-121.0074,34.43507],[-121.0074,34.43507],[-120.9981,34.433],[-120.9981,34.433],[-120.9887,34.43088],[-120.9887,34.43088],[-120.98776,34.430683],[-120.98776,34.430683],[-120.9788,34.42887],[-120.9788,34.42887],[-120.9633,34.42568],[-120.9633,34.42568],[-120.9543,34.42368],[-120.9543,34.42368],[-120.9438,34.42147],[-120.9438,34.42147],[-120.9339,34.41932],[-120.9339,34.41932],[-120.9191,34.41608],[-120.9191,34.41608],[-120.9091,34.41392],[-120.9091,34.41392],[-120.8995,34.41175],[-120.8995,34.41175],[-120.8899,34.40948],[-120.8899,34.40948],[-120.8796,34.40727],[-120.8796,34.40727],[-120.8654,34.4042],[-120.8654,34.4042],[-120.8547,34.40168],[-120.8547,34.40168],[-120.8454,34.39952],[-120.8454,34.39952],[-120.83683,34.397483],[-120.83683,34.397483],[-120.8361,34.39734],[-120.8361,34.39734],[-120.8263,34.395],[-120.8263,34.395],[-120.8176,34.39293],[-120.8176,34.39293],[-120.8082,34.39073],[-120.8082,34.39073],[-120.80215,34.389317],[-120.7981,34.3884],[-120.7981,34.3884],[-120.7886,34.38612],[-120.7886,34.38612],[-120.7783,34.38385],[-120.7783,34.38385],[-120.7652,34.38083],[-120.7652,34.38083],[-120.7533,34.37798],[-120.7533,34.37798],[-120.7429,34.37573],[-120.7429,34.37573],[-120.7325,34.37354],[-120.7325,34.37354],[-120.7221,34.37143],[-120.7221,34.37143],[-120.7125,34.36953],[-120.7125,34.36953],[-120.7023,34.36768],[-120.7023,34.36768],[-120.6931,34.36609],[-120.6931,34.36609],[-120.6821,34.36405],[-120.6821,34.36405],[-120.673,34.36215],[-120.673,34.36215],[-120.6604,34.3597],[-120.6604,34.3597],[-120.6507,34.35788],[-120.6507,34.35788],[-120.6365,34.35489],[-120.6365,34.35489],[-120.6239,34.35212],[-120.6239,34.35212],[-120.6129,34.34943],[-120.6129,34.34943],[-120.6018,34.3468],[-120.6018,34.3468],[-120.5908,34.34422],[-120.5908,34.34422],[-120.5813,34.3421],[-120.5813,34.3421],[-120.571,34.33972],[-120.571,34.33972],[-120.5571,34.33652],[-120.5571,34.33652],[-120.5468,34.33401],[-120.5468,34.33401],[-120.5373,34.33167],[-120.5373,34.33167],[-120.53132,34.330267],[-120.5259,34.32898],[-120.5259,34.32898],[-120.5106,34.32518],[-120.5106,34.32518],[-120.5,34.32257],[-120.5,34.32257],[-120.4893,34.32003],[-120.4893,34.32003],[-120.4795,34.31755],[-120.4795,34.31755],[-120.4691,34.3151],[-120.4691,34.3151],[-120.4582,34.3126],[-120.4582,34.3126],[-120.4477,34.31033],[-120.4477,34.31033],[-120.4371,34.30797],[-120.4371,34.30797],[-120.4272,34.3058],[-120.4272,34.3058],[-120.4173,34.30373],[-120.4173,34.30373],[-120.4081,34.30173],[-120.4081,34.30173],[-120.3977,34.29947],[-120.3977,34.29947],[-120.3885,34.29758],[-120.3885,34.29758],[-120.3785,34.29565],[-120.3785,34.29565],[-120.37433,34.29485],[-120.3667,34.2933],[-120.3667,34.2933],[-120.356,34.291],[-120.356,34.291],[-120.3459,34.28876],[-120.3459,34.28876],[-120.3369,34.28685],[-120.3369,34.28685],[-120.3256,34.28432],[-120.3256,34.28432],[-120.3161,34.28203],[-120.3161,34.28203],[-120.3074,34.2798],[-120.3074,34.2798],[-120.2936,34.27635],[-120.2936,34.27635],[-120.28641,34.27445],[-120.2845,34.27393],[-120.2845,34.27393],[-120.2734,34.27123],[-120.2734,34.27123],[-120.2647,34.2692],[-120.2647,34.2692],[-120.2549,34.26683],[-120.2549,34.26683],[-120.2463,34.26473],[-120.2463,34.26473],[-120.237,34.26247],[-120.237,34.26247],[-120.2264,34.26003],[-120.2264,34.26003],[-120.2178,34.25808],[-120.2178,34.25808],[-120.2079,34.25577],[-120.2079,34.25577],[-120.1984,34.25348],[-120.1984,34.25348],[-120.1898,34.25138],[-120.1898,34.25138],[-120.18128,34.249217],[-120.1805,34.24902],[-120.1805,34.24902],[-120.1671,34.2458],[-120.1671,34.2458],[-120.1569,34.24332],[-120.1569,34.24332],[-120.1459,34.24067],[-120.1459,34.24067],[-120.1355,34.23815],[-120.1355,34.23815],[-120.1209,34.23463],[-120.1209,34.23463],[-120.1209,34.23463],[-120.1209,34.23463],[-120.111,34.23225],[-120.111,34.23225],[-120.1018,34.23003],[-120.1018,34.23003],[-120.0899,34.2271],[-120.0899,34.2271],[-120.0799,34.2247],[-120.0799,34.2247],[-120.0693,34.22217],[-120.0693,34.22217],[-120.0587,34.2196],[-120.0587,34.2196],[-120.04955,34.2174],[-120.0489,34.21725],[-120.0489,34.21725],[-120.0396,34.21503],[-120.0396,34.21503],[-120.0295,34.21262],[-120.0295,34.21262],[-120.0182,34.20997],[-120.0182,34.20997],[-120.0067,34.2072],[-120.0067,34.2072],[-119.9937,34.20417],[-119.9937,34.20417],[-119.9829,34.20173],[-119.9829,34.20173],[-119.9732,34.1996],[-119.9732,34.1996],[-119.9615,34.1971],[-119.9615,34.1971],[-119.9513,34.19503],[-119.9513,34.19503],[-119.9395,34.19272],[-119.9395,34.19272],[-119.93727,34.192283],[-119.9299,34.19083],[-119.9299,34.19083],[-119.9179,34.18825],[-119.9179,34.18825],[-119.9074,34.18597],[-119.9074,34.18597],[-119.8964,34.18322],[-119.8964,34.18322],[-119.8845,34.18032],[-119.8845,34.18032],[-119.8734,34.17753],[-119.8734,34.17753],[-119.8617,34.1745],[-119.8617,34.1745],[-119.8514,34.17188],[-119.8514,34.17188],[-119.8405,34.1689],[-119.8405,34.1689],[-119.8275,34.16583],[-119.8275,34.16583],[-119.8131,34.16236],[-119.8131,34.16236],[-119.8032,34.15992],[-119.8032,34.15992],[-119.7932,34.15743],[-119.7932,34.15743],[-119.782,34.15462],[-119.782,34.15462],[-119.7721,34.15208],[-119.7721,34.15208],[-119.7601,34.14938],[-119.7601,34.14938],[-119.7494,34.14697],[-119.7494,34.14697],[-119.74445,34.1458],[-119.738,34.14433],[-119.738,34.14433],[-119.724,34.14112],[-119.724,34.14112],[-119.7139,34.13888],[-119.7139,34.13888],[-119.704,34.13665],[-119.704,34.13665],[-119.689,34.1334],[-119.689,34.1334],[-119.6781,34.1313],[-119.6781,34.1313],[-119.6637,34.12815],[-119.6637,34.12815],[-119.6537,34.12598],[-119.6537,34.12598],[-119.6434,34.1238],[-119.6434,34.1238],[-119.6282,34.12045],[-119.6282,34.12045],[-119.618,34.11818],[-119.618,34.11818],[-119.6078,34.11595],[-119.6078,34.11595],[-119.5947,34.1131],[-119.5947,34.1131],[-119.59396,34.112933],[-119.5802,34.10988],[-119.5802,34.10988],[-119.5686,34.1073],[-119.5686,34.1073],[-119.5549,34.10418],[-119.5549,34.10418],[-119.5448,34.10185],[-119.5448,34.10185],[-119.5347,34.09952],[-119.5347,34.09952],[-119.5231,34.09678],[-119.5231,34.09678],[-119.5129,34.09442],[-119.5129,34.09442],[-119.4974,34.091],[-119.4974,34.091],[-119.487,34.0889],[-119.487,34.0889],[-119.475,34.08633],[-119.475,34.08633],[-119.4647,34.08412],[-119.4647,34.08412],[-119.46403,34.083967],[-119.4545,34.08187],[-119.4545,34.08187],[-119.4442,34.07965],[-119.4442,34.07965],[-119.4346,34.07788],[-119.4346,34.07788],[-119.4229,34.07582],[-119.4229,34.07582],[-119.4127,34.07372],[-119.4127,34.07372],[-119.4035,34.0715],[-119.4035,34.0715],[-119.3937,34.06908],[-119.3937,34.06908],[-119.3839,34.06673],[-119.3839,34.06673],[-119.3742,34.0645],[-119.3742,34.0645],[-119.3647,34.06205],[-119.3647,34.06205],[-119.3551,34.06002],[-119.3551,34.06002],[-119.3449,34.05763],[-119.3449,34.05763],[-119.3317,34.05499],[-119.3317,34.05499],[-119.32979,34.054617],[-119.3187,34.05247],[-119.3187,34.05247],[-119.3061,34.05007],[-119.3061,34.05007],[-119.30059,34.048983],[-119.2965,34.0482],[-119.2965,34.0482],[-119.2883,34.04625],[-119.2883,34.04625],[-119.2798,34.043],[-119.2798,34.043],[-119.2699,34.03798],[-119.2699,34.03798],[-119.2597,34.03338],[-119.2597,34.03338],[-119.2501,34.02934],[-119.2501,34.02934],[-119.2411,34.02543],[-119.2411,34.02543],[-119.2309,34.02107],[-119.2309,34.02107],[-119.2226,34.01757],[-119.2226,34.01757],[-119.2129,34.01353],[-119.2129,34.01353],[-119.2018,34.00838],[-119.2018,34.00838],[-119.1908,34.00303],[-119.1908,34.00303],[-119.1797,33.9977],[-119.1797,33.9977],[-119.18219,33.9989],[-119.1711,33.9936],[-119.1711,33.9936],[-119.162,33.9892],[-119.162,33.9892],[-119.1504,33.98357],[-119.1504,33.98357],[-119.1413,33.97908],[-119.1413,33.97908],[-119.134,33.97545],[-119.134,33.97545],[-119.1256,33.97127],[-119.1256,33.97127],[-119.1127,33.9649],[-119.1127,33.9649],[-119.1035,33.96037],[-119.1035,33.96037],[-119.0938,33.95562],[-119.0938,33.95562],[-119.0852,33.9513],[-119.0852,33.9513]]}}
{"type":"Feature","geometry":{"type":"LineString","coordinates":[[122.10559,29.920533],[122.19612,29.857217],[122.26853,29.7821],[122.38721,29.715617],[122.57639,29.673417],[122.77864,29.678483],[123.03112,29.68825],[123.19083,29.678817],[128.32337,30.312517],[128.3234,30.31252],[128.3234,30.31252],[128.7936,30.36385],[128.7936,30.36385],[128.7936,30.36385],[129.3571,30.39842],[129.3945,30.40563],[129.4277,30.41267],[129.4629,30.41982],[129.4988,30.4274],[129.5326,30.43483],[129.5648,30.44148],[129.6048,30.44708],[129.6386,30.45197],[129.6741,30.45748],[129.7074,30.46292],[129.7417,30.46757],[129.7783,30.4726],[129.8129,30.47722],[129.8506,30.4813],[129.8871,30.48485],[129.919,30.48963],[129.9555,30.49605],[129.9935,30.50172],[128.356,30.31555],[132.46557,31.399817],[132.4656,31.39982],[134.0141,31.87165],[134.01408,31.87165],[134.68651,32.07173],[134.6865,32.07173],[136.04587,32.48305],[136.0459,32.48305],[136.35928,32.57615],[136.3593,32.57615],[136.67573,32.6735],[136.6757,32.6735],[136.99616,32.76805],[136.4182,32.59458],[138.00188,33.061017],[138.0019,33.06102],[138.16255,33.114417],[138.1626,33.11442],[137.0187,32.77438],[139.43059,33.4944],[139.4306,33.4944],[139.67115,33.567833],[139.6711,33.56783],[139.93387,33.6449],[139.9339,33.6449],[140.08741,33.683833],[140.0874,33.68383],[140.18331,33.70635],[140.1833,33.70635],[140.2388,33.71862],[140.36992,33.748117],[140.3699,33.74812],[140.572,33.792033],[140.572,33.79203],[140.69435,33.8181],[140.6944,33.8181],[140.84228,33.84992],[140.8441,33.85032],[140.9908,33.88367],[141.14128,33.915933],[141.1413,33.91593],[141.29001,33.948783],[141.29,33.94878],[141.52269,34.002517],[141.5227,34.00252],[141.7022,34.0442],[141.7022,34.0442],[141.84427,34.077817],[141.8443,34.07782],[142.0072,34.11157],[142.0072,34.11157],[142.11756,34.13265],[142.1176,34.13265],[142.31268,34.16745],[142.3127,34.16745],[142.51929,34.21175],[142.5193,34.21175],[142.72107,34.261263],[142.7211,34.26126],[142.9294,34.306617],[142.9294,34.30662],[143.22555,34.371467],[143.2255,34.37147],[143.36985,34.40305],[143.3699,34.40305],[143.52167,34.434517],[143.5217,34.43452],[143.67669,34.468433],[143.6767,34.46843],[143.80636,34.499333],[141.9351,34.09682],[143.96435,34.532587],[143.9643,34.53259],[143.9916,34.53822],[144.1098,34.56102],[144.24753,34.594183],[144.2475,34.59418],[144.38045,34.624217],[144.3804,34.62422],[144.5149,34.65298],[144.51491,34.652983],[144.5307,34.65631],[144.68308,34.68795],[144.6831,34.68795],[144.7443,34.7017],[144.82705,34.718533],[144.8271,34.71853],[144.97525,34.7486],[144.9753,34.7486],[145.13239,34.7827],[145.1324,34.7827],[145.31245,34.8228],[145.3125,34.8228],[145.3392,34.82827],[145.54363,34.867833],[145.5436,34.86783],[144.6671,34.68453],[145.76229,34.920817],[145.7623,34.92082],[145.97069,34.963367],[145.9707,34.96337],[146.1,34.994633],[146.19321,35.017383],[146.1932,35.01738],[146.2948,35.03953],[144.6163,34.67355],[146.44853,35.070667],[146.4485,35.07067],[144.5579,34.66195],[146.63207,35.11315],[146.6321,35.11315],[146.77547,35.144117],[146.7755,35.14412],[146.8139,35.15327],[146.9216,35.17688],[145.3768,34.8357],[147.09627,35.215583],[147.0963,35.21558],[147.26679,35.253467],[147.2668,35.25347],[147.43605,35.288217],[147.4361,35.28822],[147.59427,35.319753],[147.5943,35.31975],[147.73161,35.346867],[147.7316,35.34687],[144.796,34.71225],[147.98439,35.403667],[147.9844,35.40367],[148.17225,35.442067],[148.1723,35.44207],[144.8063,34.71445],[148.27107,35.4645],[148.2711,35.4645],[148.4077,35.49435],[148.63815,35.543617],[148.6382,35.54362],[148.83879,35.587733],[148.8388,35.58773],[149.05028,35.631],[149.0503,35.631],[149.29808,35.683483],[149.2981,35.68348],[149.48573,35.726083],[149.4857,35.72608],[149.51487,35.732633],[149.5547,35.74182],[149.6395,35.76223],[149.6951,35.77547],[149.86481,35.813387],[149.8648,35.81339],[150.06189,35.848833],[150.0619,35.84883],[150.21824,35.875933],[150.2182,35.87593],[150.41047,35.915083],[150.4105,35.91508],[150.406,35.91412],[150.3941,35.9116],[150.57251,35.953683],[150.5725,35.95368],[150.77127,35.997617],[150.7713,35.99762],[150.89273,36.023067],[150.8927,36.02307],[151.06619,36.060617],[151.0662,36.06062],[151.23275,36.095967],[151.2327,36.09597],[151.3842,36.12758],[151.55692,36.1687],[151.5569,36.1687],[151.66095,36.191533],[151.6609,36.19153],[151.7097,36.20145],[151.81159,36.225467],[151.8116,36.22547],[151.8755,36.23852],[152.03225,36.270833],[152.0323,36.27083],[152.1944,36.306387],[152.1944,36.30639],[152.36101,36.343167],[152.361,36.34317],[152.4126,36.35266],[152.51167,36.37355],[152.5117,36.37355],[152.82445,36.444367],[152.8244,36.44437],[153.02355,36.486233],[153.0372,36.48845],[153.05,36.49068],[153.17283,36.511533],[153.1728,36.51153],[153.35065,36.54468],[153.3506,36.54468],[153.52128,36.581933],[153.5213,36.58193],[153.6349,36.6076],[153.72035,36.626913],[153.7351,36.63022],[153.7858,36.64137],[153.916,36.6695],[153.916,36.6695],[154.09869,36.708247],[153.5612,36.59095],[152.9423,36.4706],[154.35108,36.76245],[153.3371,36.54213],[154.56925,36.8092],[154.5693,36.8092],[154.57639,36.810733],[154.7216,36.84083],[154.77677,36.851667],[154.7768,36.85167],[153.0294,36.48718],[154.97909,36.889983],[154.9791,36.88998],[155.0646,36.90893],[153.6378,36.6083],[155.22105,36.9428],[155.2211,36.9428],[155.37597,36.9749],[155.376,36.9749],[155.5212,37.006983],[155.5212,37.00698],[155.5894,37.02227],[154.1544,36.7202],[155.83215,37.075037],[153.5316,36.58433],[155.9536,37.09982],[155.9806,37.10583],[156.09887,37.130853],[156.0989,37.13085],[156.16,37.14472],[156.25283,37.163983],[156.2528,37.16398],[152.9166,36.4654],[156.41621,37.199883],[156.4162,37.19988],[156.64584,37.24637],[156.6458,37.24637],[156.704,37.259067],[156.704,37.25907],[156.86425,37.2949],[156.8643,37.2949],[156.953,37.31247],[157.08296,37.33993],[157.083,37.33993],[157.28544,37.380383],[157.2854,37.38038],[157.48327,37.42267],[157.4833,37.42267],[157.73448,37.472697],[157.7345,37.4727],[157.98052,37.525233],[157.9848,37.52627],[158.1513,37.56233],[158.35373,37.60495],[158.3537,37.60495],[158.59123,37.652267],[158.5912,37.65227],[158.674,37.67007],[158.80987,37.699867],[158.8099,37.69987],[158.8635,37.71093],[159.02669,37.745817],[159.0267,37.74582],[158.4613,37.62777],[159.0598,37.75322],[159.2038,37.788167],[159.2038,37.78817],[159.35477,37.815917],[159.3548,37.81592],[158.7993,37.69745],[159.5208,37.847433],[159.68399,37.87865],[159.684,37.87865],[159.7085,37.88363],[159.7417,37.89015],[159.86128,37.9155],[160.02068,37.950883],[160.0207,37.95088],[160.1563,37.98182],[160.31891,38.014183],[160.3189,38.01418],[160.4698,38.013367],[160.4698,38.01337],[160.79867,37.999817],[160.7987,37.99982],[160.97312,37.998267],[160.9731,37.99827],[161.15372,38.009033],[161.1537,38.00903],[161.3155,38.01975],[161.48599,38.029167],[161.486,38.02917],[161.82376,38.051317],[161.8238,38.05132],[162.13793,38.077533],[162.1466,38.07802],[162.1725,38.07985],[162.1897,38.08097],[162.2049,38.08202],[162.44559,38.09712],[162.4456,38.09712],[162.74375,38.120883],[162.7458,38.12093],[162.7821,38.12358],[162.8952,38.13175],[163.20735,38.150713],[163.2074,38.15071],[163.40188,38.1629],[163.4019,38.1629],[163.557,38.17375],[163.74767,38.189117],[161.4255,38.026],[162.051,38.07135],[163.89973,38.201133],[163.8997,38.20113],[163.947,38.2041],[164.14673,38.21557],[162.0695,38.07273],[161.1781,38.01088],[164.31896,38.227883],[161.9757,38.06505],[161.1881,38.01162],[164.49288,38.243333],[164.4929,38.24333],[161.3351,38.02095],[164.65528,38.25337],[164.6553,38.25337],[162.9666,38.13668],[164.84995,38.264817],[164.8499,38.26482],[164.9809,38.27545],[165.15572,38.290133],[165.21287,38.293983],[165.2129,38.29398],[165.3031,38.29803],[165.3246,38.2988],[165.47019,38.308117],[165.4702,38.30812],[165.63664,38.320233],[165.6366,38.32023],[165.79704,38.330637],[165.797,38.33064],[165.97527,38.343687],[162.3083,38.08775],[166.23891,38.3615],[166.2389,38.3615],[162.2658,38.08558],[166.47212,38.378313],[166.4721,38.37831],[166.69055,38.394267],[166.6906,38.39427],[166.88425,38.408467],[166.90375,38.40965],[166.9177,38.41063],[167.11699,38.425767],[167.117,38.42577],[167.177,38.43005],[167.33113,38.438667],[167.3311,38.43867],[167.47304,38.445867],[167.473,38.44587],[167.6235,38.4589],[167.80108,38.4705],[167.8011,38.4705],[167.9047,38.47802],[167.5824,38.4554],[168.18415,38.4999],[168.1841,38.4999],[168.30408,38.507883],[168.3041,38.50788],[168.3841,38.5132],[168.44867,38.5172],[168.4487,38.5172],[168.2909,38.50718],[168.63512,38.53005],[168.6351,38.53005],[168.80181,38.5421],[168.8018,38.5421],[168.96384,38.553283],[168.2659,38.50555],[168.9163,38.54939],[169.1229,38.56525],[169.28945,38.576437],[169.2895,38.57644],[169.45199,38.585883],[169.452,38.58588],[169.61401,38.59485],[169.614,38.59485],[169.6364,38.59617],[169.94376,38.625],[169.9438,38.625],[170.11393,38.63405],[170.1139,38.63405],[169.4806,38.5876],[170.81224,38.652017],[170.8122,38.65202],[170.98845,38.6713],[170.9884,38.6713],[171.17139,38.687817],[171.1714,38.68782],[171.1971,38.69024],[171.2107,38.69113],[171.2241,38.69208],[171.2359,38.69312],[171.462,38.709233],[171.462,38.70923],[171.61429,38.722083],[171.6179,38.7224],[171.6352,38.72355],[171.6496,38.72472],[171.84545,38.74015],[171.8455,38.74015],[172.06085,38.760533],[172.0609,38.76053],[172.2395,38.77755],[172.23953,38.77755],[172.3156,38.7845],[170.7547,38.64752],[172.47147,38.795483],[172.4715,38.79548],[172.526,38.79927],[169.4397,38.58527],[172.63092,38.805],[172.7331,38.81244],[170.8855,38.65967],[168.7949,38.54163],[172.94687,38.828967],[172.9469,38.82897],[172.9881,38.83215],[170.2589,38.64138],[169.6268,38.59565],[173.16239,38.8423],[173.1624,38.8423],[170.9485,38.6668],[170.8965,38.6609],[173.31669,38.854217],[173.3167,38.85422],[173.40391,38.862317],[173.4039,38.86232],[173.496,38.86902],[173.62041,38.8741],[173.6204,38.8741],[173.65,38.87589],[173.83877,38.889017],[173.8388,38.88902],[173.9868,38.8996],[174.07589,38.9045],[174.0759,38.9045],[174.1757,38.9112],[174.30327,38.922417],[174.3033,38.92242],[174.3527,38.92543],[174.49819,38.935617],[174.4982,38.93562],[174.66915,38.94865],[174.6691,38.94865],[174.7325,38.95438],[174.84459,38.963383],[174.8446,38.96338],[174.939,38.97062],[174.971,38.9733],[175.01853,38.976533],[175.0185,38.97653],[175.1066,38.9816],[175.1734,38.98438],[175.33255,38.993697],[175.3326,38.9937],[175.42188,39.000513],[175.4219,39.00051],[175.5215,39.00745],[175.5547,39.00948],[175.69085,39.017117],[175.6909,39.01712],[175.7715,39.0224],[176.00187,39.040883],[176.0019,39.04088],[176.0656,39.04542],[176.0851,39.04667],[176.22796,39.057333],[176.228,39.05733],[176.3445,39.0641],[176.44379,39.06935],[176.4438,39.06935],[176.46,39.0703],[176.54748,39.07685],[176.5475,39.07685],[176.80065,39.092467],[176.8007,39.09247],[176.9,39.1],[176.9646,39.105183],[176.9646,39.10518],[177.0629,39.1139],[177.29445,39.12775],[177.2944,39.12775],[177.32419,39.129617],[177.3242,39.12962],[177.2621,39.12563],[176.7478,39.0886],[177.4641,39.14148],[177.3457,39.13132],[177.56113,39.148533],[177.5611,39.14853],[177.6245,39.15132],[177.71507,39.15655],[177.7151,39.15655],[177.7867,39.16028],[177.89852,39.166383],[177.8985,39.16638],[177.949,39.17015],[178.06571,39.179467],[178.1102,39.1826],[177.1483,39.11853],[178.27001,39.198017],[178.27,39.19802],[178.3744,39.20858],[178.53117,39.21695],[178.5312,39.21695],[178.69527,39.224817],[178.6953,39.22482],[178.85493,39.235683],[178.8549,39.23568],[178.8715,39.23707],[179.04367,39.249113],[179.0437,39.24911],[179.35153,39.2705],[179.3515,39.2705],[179.0774,39.25153],[179.51472,39.28322],[179.5147,39.28322],[179.68157,39.295533],[179.6816,39.29553],[179.86159,39.310467],[179.8616,39.31047],[-179.96321,39.32175],[-179.9632,39.32175],[-179.9127,39.32472],[-179.8997,39.32535],[-179.8821,39.32605],[-179.68807,39.337717],[-179.6746,39.338567],[-179.6523,39.34002],[-179.6349,39.34108],[-179.47065,39.353017],[-179.4707,39.35302],[-179.26195,39.365417],[-179.2619,39.36542],[-179.04699,39.38],[-179.047,39.38],[-179.0114,39.38285],[-178.9227,39.3895],[-178.82281,39.396767],[-178.8228,39.39677],[-178.70009,39.405067],[-178.7001,39.40507],[179.5477,39.2862],[-178.37615,39.426083],[-178.3761,39.42608],[-178.27916,39.43295],[-178.1915,39.44013],[-178.1505,39.44332],[179.1463,39.25648],[-177.91825,39.4591],[-177.9183,39.4591],[-177.8521,39.46282],[179.6695,39.29485],[-179.9371,39.32345],[-177.6946,39.47352],[-177.6185,39.47792],[-177.5833,39.48003],[178.4588,39.21332],[-177.40999,39.490967],[-177.41,39.49097],[-177.3443,39.49522],[-177.24587,39.502767],[-177.2459,39.50277],[-177.1665,39.5089],[-177.1291,39.512],[-177.0242,39.5204],[-177.0242,39.5204],[-176.9966,39.52248],[-176.89688,39.53105],[-176.8969,39.53105],[-176.8269,39.53575],[-176.7949,39.5372],[-176.70933,39.541183],[-176.7093,39.54118],[-176.604,39.54671],[-176.5555,39.54992],[-176.36899,39.564617],[-176.369,39.56462],[-176.329,39.5677],[-179.3903,39.35803],[-176.20748,39.577183],[-176.2075,39.57718],[-176.1217,39.58358],[-175.97985,39.592033],[-175.90267,39.596717],[-175.9027,39.59672],[-175.8643,39.59888],[-175.68639,39.61138],[-175.6864,39.61138],[-175.6635,39.61298],[-175.6391,39.61457],[-175.5061,39.62385],[-175.4992,39.624383],[-175.42,39.63003],[-175.347,39.63523],[-175.28329,39.6402],[-175.2833,39.6402],[-175.2084,39.6462],[-175.05472,39.656917],[-175.0547,39.65692],[-175.0041,39.66062],[-174.9826,39.66228],[-174.9467,39.66447],[-174.79525,39.6739],[-174.7953,39.6739],[-174.7317,39.67813],[-174.58048,39.68788],[-174.5805,39.68788],[-174.5079,39.69268],[-174.38472,39.699767],[-174.3847,39.69977],[-174.2172,39.70935],[-174.2172,39.70935],[-174.1318,39.71563],[-174.05567,39.721],[-174.0557,39.721],[-174.6898,39.68053],[-173.91643,39.731083],[-173.9164,39.73108],[-173.8918,39.73312],[-173.72597,39.747117],[-173.726,39.74712],[-173.6848,39.75055],[-173.6127,39.75632],[-173.44907,39.767683],[-173.4491,39.76768],[-173.3892,39.77155],[-173.28467,39.77928],[-173.2847,39.77928],[-173.2105,39.78539],[-173.8357,39.73742],[-173.12425,39.79143],[-173.1243,39.79143],[-173.0587,39.79537],[-172.94272,39.8018],[-172.9427,39.8018],[-172.8779,39.80503],[-173.4919,39.76538],[-172.71452,39.814367],[-172.7145,39.81437],[-172.605,39.82242],[-172.42453,39.834683],[-172.4245,39.83468],[-172.36425,39.8378],[-172.3643,39.8378],[-172.2485,39.84378],[-172.09123,39.85505],[-172.0912,39.85505],[-172.0643,39.85685],[-172.0406,39.85848],[-172.0271,39.85958],[-172.0139,39.86065],[-171.9892,39.86273],[-171.90484,39.8691],[-171.9048,39.8691],[-171.74152,39.882317],[-171.7415,39.88232],[-171.56933,39.89425],[-171.5693,39.89425],[-171.4105,39.90425],[-171.3933,39.90512],[-171.3788,39.90597],[-171.37428,39.9063],[-171.3668,39.90676],[-171.205,39.91877],[-171.03085,39.927533],[-171.0309,39.92753],[-170.86192,39.93855],[-170.8619,39.93855],[-170.7603,39.94685],[-170.76029,39.94685],[-170.7431,39.94847],[-170.54761,39.964233],[-170.5476,39.96423],[-170.5063,39.96765],[-170.32521,39.9775],[-170.2612,39.98045],[-170.04403,39.993],[-170.0349,39.99367],[-169.90553,40.001567],[-169.8296,40.00485],[-169.75061,40.008517],[-169.6932,40.01097],[-169.5893,40.01537],[-169.36233,40.026633],[-169.3623,40.02663],[-169.3427,40.02762],[-169.17983,40.034733],[-169.1798,40.03473],[-171.4255,39.90333],[-169.0086,40.03988],[-168.98213,40.04055],[-168.9821,40.04055],[-168.9095,40.04245],[-168.8341,40.04455],[-168.74115,40.049197],[-171.3223,39.91],[-168.6625,40.05363],[-168.48439,40.062517],[-168.4844,40.06252],[-168.4466,40.06448],[-168.3786,40.06733],[-168.31048,40.06985],[-168.3105,40.06985],[-168.2016,40.0739],[-168.14265,40.076233],[-168.1427,40.07623],[-168.0546,40.07936],[-168.0282,40.08018],[-167.9681,40.08265],[-167.8972,40.085567],[-167.8972,40.08557],[-167.8683,40.08702],[-167.7983,40.09018],[-167.64879,40.097583],[-167.6488,40.09758],[-167.6266,40.09843],[-167.52479,40.102467],[-167.5248,40.10247],[-167.4557,40.10507],[-167.4269,40.10618],[-171.9596,39.86507],[-167.34757,40.108383],[-167.3476,40.10838],[-167.285,40.11015],[-167.2078,40.11283],[-167.1693,40.11455],[-167.08927,40.117867],[-167.0893,40.11787],[-166.95929,40.122183],[-166.9593,40.12218],[-166.9336,40.12293],[-166.8221,40.12847],[-166.5163,40.14233],[-166.51629,40.142333],[-166.5019,40.14272],[-166.4844,40.14326],[-166.34292,40.148183],[-166.3429,40.14818],[-166.16308,40.156667],[-166.1631,40.15667],[-166.1064,40.15938],[-166.0473,40.16177],[-165.87991,40.1693],[-165.8799,40.1693],[-165.7718,40.17268],[-165.63416,40.17713],[-165.6342,40.17713],[-165.5638,40.17877],[-165.38949,40.186633],[-165.3895,40.18663],[-165.33855,40.189933],[-165.3385,40.18993],[-165.2804,40.1929],[-165.1775,40.19745],[-165.09385,40.199847],[-165.0939,40.19985],[-165.0233,40.20223],[-164.93487,40.2043],[-164.9349,40.2043],[-164.8536,40.2061],[-164.67867,40.217517],[-164.6787,40.21752],[-164.7932,40.20925],[-164.5104,40.225617],[-164.5104,40.22562],[-164.33207,40.232917],[-164.3321,40.23292],[-164.7138,40.21515],[-164.03647,40.249383],[-164.0365,40.24938],[-163.9792,40.25252],[-163.87712,40.25785],[-163.8771,40.25785],[-164.4786,40.22657],[-163.67865,40.263983],[-164.9946,40.20287],[-163.6201,40.26588],[-163.49568,40.270633],[-163.4957,40.27063],[-163.4442,40.2717],[-163.25675,40.274617],[-163.2567,40.27462],[-163.7297,40.26242],[-163.1614,40.27975],[-163.08552,40.286913],[-163.0855,40.28691],[-162.9807,40.2946],[-162.80163,40.292183],[-162.8016,40.29218],[-162.7117,40.295],[-162.6228,40.298583],[-162.6228,40.29858],[-162.5332,40.30252],[-162.45156,40.30588],[-162.4516,40.30588],[-162.27261,40.31307],[-162.2726,40.31307],[-162.4427,40.3063],[-161.92208,40.3285],[-161.9221,40.3285],[-161.74769,40.335017],[-161.7477,40.33502],[-161.57575,40.341583],[-161.5757,40.34158],[-161.39755,40.347833],[-161.3976,40.34783],[-161.22319,40.353033],[-161.1719,40.35492],[-161.01396,40.363017],[-160.9539,40.36497],[-160.90807,40.366067],[-160.9081,40.36607],[-160.7583,40.37103],[-160.54829,40.3794],[-160.5483,40.3794],[-160.528,40.3801],[-160.38695,40.3879],[-160.3869,40.3879],[-160.31169,40.391067],[-160.3117,40.39107],[-160.2851,40.39222],[-160.2695,40.39283],[-160.2455,40.3941],[-160.2216,40.39537],[-160.09175,40.396683],[-160.0918,40.39668],[-160.0451,40.39703],[-159.87988,40.396133],[-162.1443,40.31848],[-159.8582,40.39587],[-162.1015,40.32018],[-159.71839,40.392917],[-159.7184,40.39292],[-159.6985,40.39243],[-159.5437,40.38515],[-159.48728,40.3835],[-159.4873,40.3835],[-159.3737,40.37988],[-159.21163,40.372317],[-159.2116,40.37232],[-159.1953,40.37148],[-159.10855,40.367883],[-159.1086,40.36788],[-158.9687,40.36007],[-161.7651,40.33448],[-158.87439,40.354983],[-158.8744,40.35498],[-161.8745,40.33064],[-158.7611,40.35012],[-158.69267,40.346467],[-158.6927,40.34647],[-162.5108,40.30325],[-158.6448,40.34422],[-158.54732,40.339067],[-158.5473,40.33907],[-158.5148,40.33732],[-158.4328,40.33327],[-158.3728,40.33073],[-158.2716,40.327383],[-158.2716,40.32738],[-158.2104,40.32533],[-158.09616,40.32045],[-158.0962,40.32045],[-158.0473,40.31813],[-157.9942,40.31592],[-157.93868,40.313583],[-157.9387,40.31358],[-157.8689,40.31045],[-157.76385,40.30493],[-157.7639,40.30493],[-157.7095,40.30182],[-157.5414,40.29355],[-157.5193,40.29278],[-157.32203,40.284933],[-157.322,40.28493],[-157.09712,40.273183],[-157.0971,40.27318],[-156.94069,40.26645],[-156.9407,40.26645],[-156.8794,40.2638],[-156.8472,40.26257],[-156.70907,40.256717],[-156.7091,40.25672],[-156.6501,40.25417],[-156.44355,40.2444],[-156.40611,40.242583],[-156.4061,40.24258],[-156.2763,40.23668],[-156.2465,40.23542],[-156.2393,40.2352],[-156.16961,40.231883],[-156.0701,40.22597],[-156.02727,40.224033],[-156.0273,40.22403],[-155.9663,40.22138],[-155.8976,40.21862],[-155.78795,40.213783],[-155.7303,40.21098],[-155.7133,40.21015],[-155.7082,40.20988],[-155.55887,40.201753],[-155.5589,40.20175],[-155.7846,40.21363],[-155.3864,40.195783],[-155.3864,40.19578],[-155.21543,40.190033],[-155.2154,40.19003],[-155.1938,40.18945],[-155.048,40.18502],[-155.6662,40.20775],[-154.88048,40.1806],[-154.8805,40.1806],[-154.84505,40.178817],[-154.845,40.17882],[-154.7097,40.17017],[-154.6763,40.16773],[-154.59389,40.161967],[-154.5939,40.16197],[-154.5072,40.15553],[-154.485,40.1542],[-154.41268,40.14925],[-154.3666,40.1461],[-154.3326,40.14383],[-154.24899,40.14002],[-154.249,40.14002],[-154.1808,40.13832],[-154.0759,40.13447],[-154.02779,40.13238],[-154.0278,40.13238],[-153.903,40.12657],[-153.84796,40.12398],[-153.848,40.12398],[-153.7362,40.11908],[-153.6782,40.11678],[-153.64115,40.115167],[-153.6411,40.11517],[-153.5595,40.11165],[-153.4,40.10545],[-153.4,40.10545],[-153.3239,40.10235],[-153.22133,40.098233],[-153.2213,40.09823],[-153.09104,40.063167],[-153.091,40.06317],[-152.74979,40.0503],[-152.7498,40.0503],[-152.40088,40.036033],[-152.4009,40.03603],[-152.3828,40.03502],[-152.3664,40.03408],[-152.3474,40.0329],[-152.3312,40.03212],[-152.19516,40.024333],[-152.1952,40.02433],[-152.03555,40.016267],[-152.0079,40.0142],[-151.971,40.01192],[-151.74661,39.998167],[-151.7466,39.99817],[-151.5654,39.989083],[-151.5654,39.98908],[-151.52759,39.986667],[-151.5276,39.98667],[-151.3938,39.9808],[-151.3717,39.97982],[-151.32052,39.977633],[-151.3205,39.97763],[-151.2059,39.97205],[-151.14831,39.9694],[-151.1483,39.9694],[-151.0431,39.96408],[-150.93295,39.958183],[-150.933,39.95818],[-150.7735,39.95218],[-150.77353,39.952183],[-150.715,39.95043],[-150.55121,39.94505],[-150.5512,39.94505],[-150.4872,39.94308],[-150.4215,39.94102],[-150.38707,39.940017],[-150.3871,39.94002],[-150.2178,39.93395],[-150.18601,39.932267],[-150.186,39.93227],[-150.0575,39.92496],[-150.0224,39.92302],[-149.89035,39.917233],[-149.8904,39.91723],[-149.8573,39.91602],[-149.8387,39.91522],[-149.79433,39.913187],[-149.7943,39.91319],[-149.7561,39.90993],[-149.7092,39.90403],[-149.62165,39.892917],[-149.5727,39.88657],[-149.5279,39.8811],[-149.4512,39.87248],[-149.408,39.867517],[-149.408,39.86752],[-149.3755,39.86392],[-149.3599,39.86222],[-149.2763,39.85112],[-149.24367,39.846717],[-149.2374,39.84582],[-149.2051,39.84093],[-149.116,39.82847],[-149.0847,39.8247],[-149.04819,39.820183],[-149.0482,39.82018],[-148.9186,39.8041],[-148.8768,39.79842],[-148.82115,39.79095],[-148.8212,39.79095],[-148.7471,39.78123],[-148.64747,39.767583],[-148.6035,39.76187],[-148.576,39.7582],[-148.39955,39.734617],[-148.3996,39.73462],[-148.3795,39.73193],[-148.15055,39.7014],[-148.1505,39.7014],[-148.1354,39.69913],[-147.94383,39.671967],[-147.9438,39.67197],[-147.76667,39.650233],[-147.724,39.64438],[-147.68833,39.639533],[-147.6883,39.63953],[-147.6618,39.63588],[-147.51272,39.615467],[-147.5127,39.61547],[-147.4745,39.60988],[-147.3795,39.59661],[-147.3506,39.5928],[-147.3104,39.587017],[-147.3104,39.58702],[-147.2766,39.582],[-147.193,39.57052],[-147.09368,39.55773],[-147.0937,39.55773],[-147.0468,39.5514],[-146.9776,39.5434],[-146.81572,39.5237],[-146.8157,39.5237],[-146.69507,39.507783],[-146.6951,39.50778],[-146.6402,39.5001],[-146.5833,39.49235],[-146.5487,39.48768],[-146.47055,39.47795],[-146.4706,39.47795],[-146.4225,39.47218],[-146.35089,39.463467],[-146.3509,39.46347],[-146.137,39.431767],[-146.137,39.43177],[-145.9595,39.40425],[-145.79296,39.383817],[-145.793,39.38382],[-145.7579,39.37952],[-145.66005,39.3684],[-145.6045,39.36125],[-145.48859,39.345133],[-145.4481,39.3391],[-145.31293,39.320183],[-145.2765,39.31517],[-145.14721,39.29885],[-145.1472,39.29885],[-145.0963,39.29227],[-145.0628,39.28792],[-144.93013,39.269333],[-144.9301,39.26933],[-144.76852,39.24715],[-144.7685,39.24715],[-144.6316,39.23043],[-144.6012,39.2268],[-144.56279,39.222253],[-144.5628,39.22225],[-144.4707,39.21038],[-144.4401,39.20625],[-144.4053,39.20155],[-144.29801,39.18648],[-144.2445,39.1789],[-144.2122,39.17478],[-144.13316,39.163763],[-144.1332,39.16376],[-143.96593,39.139817],[-143.9659,39.13982],[-143.79808,39.1184],[-143.7981,39.1184],[-143.46488,39.07545],[-143.4649,39.07545],[-143.4483,39.07307],[-143.27009,39.047867],[-143.2701,39.04787],[-143.2191,39.04177],[-143.01975,39.016183],[-143.0197,39.01618],[-142.98599,39.011467],[-142.986,39.01147],[-142.835,38.9903],[-142.57505,38.951333],[-142.5751,38.95133],[-142.41349,38.929833],[-142.4135,38.92983],[-142.3448,38.92025],[-142.21632,38.901333],[-142.2163,38.90133],[-142.1105,38.88828],[-142.0431,38.87887],[-141.93301,38.864483],[-141.9291,38.86397],[-141.8685,38.85718],[-141.74579,38.840437],[-141.7027,38.83458],[-141.6675,38.82957],[-141.6342,38.8247],[-141.57413,38.8164],[-141.5741,38.8164],[-141.4438,38.79715],[-141.41088,38.79295],[-141.4109,38.79295],[-141.2322,38.76871],[-141.18645,38.762417],[-141.1864,38.76242],[-141.0789,38.74833],[-141.01123,38.7401],[-141.0112,38.7401],[-140.9161,38.72923],[-140.79411,38.714917],[-140.7941,38.71492],[-140.7409,38.70802],[-140.7157,38.70443],[-140.62372,38.691367],[-140.6237,38.69137],[-140.5628,38.68198],[-140.42495,38.660867],[-140.4249,38.66087],[-140.3916,38.65693],[-140.3557,38.65287],[-140.3393,38.65105],[-140.2863,38.64493],[-140.22967,38.637367],[-140.2297,38.63737],[-140.1478,38.6258],[-140.1046,38.61934],[-140.07141,38.61395],[-140.0714,38.61395],[-140.0451,38.60937],[-139.9819,38.59813],[-139.9133,38.58547],[-139.87623,38.57685],[-139.8762,38.57685],[-139.8393,38.56863],[-139.7782,38.55505],[-139.7395,38.54648],[-139.7076,38.539233],[-139.7076,38.53923],[-139.68,38.53297],[-139.635,38.52332],[-139.5954,38.51437],[-139.5537,38.50483],[-139.46853,38.484783],[-139.4685,38.48478],[-139.4129,38.47255],[-139.30673,38.448667],[-139.2557,38.43668],[-139.2114,38.42648],[-139.16228,38.415733],[-139.1623,38.41573],[-139.0219,38.38372],[-138.9886,38.37553],[-138.81733,38.3374],[-138.78409,38.330333],[-138.7841,38.33033],[-138.7152,38.31422],[-138.58781,38.285167],[-138.5878,38.28517],[-138.5759,38.28253],[-138.5449,38.276],[-138.4348,38.251653],[-138.4348,38.25165],[-138.395,38.24242],[-138.3613,38.23466],[-138.2853,38.21677],[-138.24535,38.208183],[-138.2453,38.20818],[-138.1889,38.19501],[-138.1376,38.18287],[-138.094,38.17223],[-137.97648,38.14265],[-137.9436,38.13557],[-137.9129,38.12907],[-137.81939,38.108717],[-137.7789,38.09967],[-137.7074,38.085233],[-137.7074,38.08523],[-137.6268,38.06747],[-137.5915,38.05903],[-137.50541,38.03787],[-137.5054,38.03787],[-137.4232,38.01855],[-137.31361,37.993583],[-137.3136,37.99358],[-137.2829,37.9867],[-137.14352,37.9555],[-137.1435,37.9555],[-137.11,37.94852],[-136.9843,37.92267],[-136.96547,37.9182],[-136.9642,37.91793],[-136.826,37.8841],[-136.70393,37.856287],[-136.7039,37.85629],[-136.6871,37.85277],[-136.50609,37.815283],[-136.5061,37.81528],[-136.34541,37.77945],[-136.3454,37.77945],[-136.3043,37.76965],[-136.22204,37.749683],[-136.222,37.74968],[-136.1867,37.74109],[-136.1516,37.73303],[-136.0636,37.71365],[-135.99624,37.698483],[-135.9962,37.69848],[-135.86745,37.66865],[-135.8674,37.66865],[-135.8329,37.66003],[-135.7068,37.62978],[-135.5802,37.604183],[-135.5802,37.60418],[-135.5375,37.59575],[-135.42827,37.570583],[-135.4283,37.57058],[-135.3764,37.55727],[-135.26847,37.531503],[-135.2204,37.52005],[-135.1891,37.51287],[-134.92993,37.455517],[-134.9299,37.45552],[-134.7596,37.42112],[-134.58789,37.37975],[-134.5879,37.37975],[-134.53669,37.36675],[-134.5367,37.36675],[-134.38841,37.328933],[-134.3562,37.32157],[-134.18887,37.285417],[-134.1889,37.28542],[-134.1557,37.2779],[-134.1106,37.26782],[-133.94793,37.229217],[-133.9479,37.22922],[-133.7791,37.19048],[-133.77908,37.190483],[-133.64119,37.156067],[-133.6105,37.14937],[-133.5777,37.14217],[-133.5287,37.13013],[-133.45407,37.112],[-133.4541,37.112],[-133.3303,37.08553],[-133.27685,37.074017],[-133.2769,37.07402],[-133.1754,37.05065],[-133.1278,37.03895],[-132.98872,37.007283],[-132.9887,37.00728],[-132.92103,36.99215],[-132.921,36.99215],[-132.8597,36.9771],[-132.8077,36.96487],[-132.74028,36.948933],[-132.7403,36.94893],[-132.6753,36.93468],[-132.55212,36.903783],[-132.5202,36.89798],[-132.4897,36.89198],[-132.4634,36.88717],[-132.4026,36.8745],[-132.3684,36.867],[-132.36841,36.867],[-132.348,36.86273],[-132.2736,36.8459],[-132.2193,36.83355],[-132.13756,36.81545],[-132.1376,36.81545],[-132.0674,36.79973],[-131.94169,36.76925],[-131.9417,36.76925],[-131.8971,36.75808],[-131.8829,36.7548],[-131.79859,36.735417],[-131.7986,36.73542],[-131.7645,36.72692],[-131.7457,36.72252],[-131.7025,36.71188],[-131.68288,36.7069],[-131.6829,36.7069],[-131.6283,36.69248],[-131.6088,36.68738],[-131.5316,36.66943],[-131.50099,36.662983],[-131.501,36.66298],[-131.4904,36.66072],[-131.4604,36.65438],[-131.4246,36.64678],[-131.30989,36.620783],[-131.3099,36.62078],[-131.2979,36.61813],[-131.2648,36.61023],[-131.2156,36.5986],[-131.1986,36.59475],[-131.168,36.58697],[-131.13333,36.578367],[-131.1333,36.57837],[-131.0649,36.56102],[-131.0485,36.55767],[-130.9941,36.5469],[-130.89579,36.524367],[-130.8958,36.52437],[-130.8512,36.51428],[-130.8201,36.50703],[-130.74939,36.489283],[-130.7494,36.48928],[-130.7021,36.478],[-130.6599,36.46782],[-130.62861,36.46005],[-130.6286,36.46005],[-130.6034,36.45355],[-130.45845,36.420933],[-130.4585,36.42093],[-130.4263,36.41385],[-130.3818,36.40447],[-130.23789,36.371947],[-130.2379,36.37195],[-130.209,36.36512],[-130.09343,36.337683],[-130.0934,36.33768],[-130.0471,36.32527],[-130.0167,36.31717],[-129.9844,36.30853],[-129.9516,36.29932],[-129.8559,36.2714],[-129.85587,36.2714],[-129.8231,36.2616],[-129.76756,36.244517],[-129.7676,36.24452],[-129.6533,36.20995],[-129.6129,36.19728],[-129.50345,36.162883],[-129.5034,36.16288],[-129.3583,36.12187],[-129.35833,36.121867],[-129.3219,36.11125],[-129.2982,36.10458],[-129.25239,36.091717],[-129.2524,36.09172],[-129.2208,36.08292],[-129.1702,36.06842],[-129.1366,36.05907],[-129.05259,36.03585],[-129.0204,36.02672],[-128.9739,36.01333],[-128.8944,35.989483],[-128.8944,35.98948],[-128.7386,35.93647],[-128.67425,35.915583],[-128.6743,35.91558],[-128.5833,35.8903],[-128.53933,35.877967],[-128.5393,35.87797],[-128.4029,35.83748],[-128.36895,35.827647],[-128.3689,35.82765],[-128.12832,35.754883],[-128.1283,35.75488],[-128.00613,35.715247],[-128.0061,35.71525],[-127.90439,35.683767],[-127.9044,35.68377],[-127.8781,35.67692],[-127.75393,35.643117],[-127.7539,35.64312],[-127.63341,35.606583],[-127.6334,35.60658],[-127.5301,35.57553],[-127.50352,35.5675],[-127.5035,35.5675],[-127.3766,35.52845],[-127.27783,35.4981],[-127.2778,35.4981],[-127.2532,35.4906],[-127.14053,35.455117],[-127.1405,35.45512],[-127.1149,35.44682],[-127.04989,35.4271],[-127.0499,35.4271],[-126.94455,35.396817],[-126.9445,35.39682],[-126.9273,35.39172],[-126.79565,35.351783],[-126.7957,35.35178],[-126.64548,35.3056],[-126.6455,35.3056],[-126.47281,35.256],[-126.4728,35.256],[-126.34183,35.216933],[-126.3418,35.21693],[-126.3068,35.20665],[-126.18089,35.168033],[-126.1809,35.16803],[-126.1655,35.16325],[-126.1413,35.15587],[-126.08688,35.139417],[-126.0869,35.13942],[-126.0648,35.13298],[-126.0331,35.1237],[-126.0034,35.11485],[-125.9794,35.107283],[-125.9794,35.10728],[-125.9215,35.08898],[-125.84041,35.064767],[-125.8404,35.06477],[-125.8143,35.05663],[-125.8035,35.05317],[-125.715,35.0259],[-125.68659,35.017367],[-125.6866,35.01737],[-125.6325,35.00953],[-125.592,35.00512],[-125.56775,35.0025],[-125.5677,35.0025],[-125.5115,34.99445],[-125.4512,34.98608],[-125.38796,34.978783],[-125.388,34.97878],[-125.3639,34.97567],[-125.3158,34.97],[-125.24492,34.960533],[-125.2249,34.95802],[-125.1897,34.95305],[-125.10013,34.941267],[-125.1001,34.94127],[-125.0839,34.9391],[-125.0602,34.93622],[-125.0436,34.93392],[-124.93223,34.919483],[-124.9322,34.91948],[-124.9188,34.91777],[-124.88448,34.913187],[-124.8845,34.91319],[-124.8585,34.90975],[-124.7902,34.90073],[-124.775,34.89872],[-124.70615,34.891067],[-124.7061,34.89107],[-124.6301,34.8813],[-124.60329,34.8777],[-124.6033,34.8777],[-124.5886,34.8758],[-124.5533,34.87172],[-124.534,34.86918],[-124.47015,34.861683],[-124.4701,34.86168],[-124.4437,34.85808],[-124.4163,34.85438],[-124.3951,34.85158],[-124.31423,34.84135],[-124.3142,34.84135],[-124.3005,34.8397],[-124.279,34.83712],[-124.2629,34.83512],[-124.2205,34.83003],[-124.1861,34.82561],[-124.18613,34.825613],[-124.1426,34.82001],[-124.1253,34.8179],[-124.0623,34.8104],[-124.02885,34.8061],[-124.0289,34.8061],[-123.9315,34.79424],[-123.90719,34.791417],[-123.9072,34.79142],[-123.8263,34.78067],[-123.7947,34.77637],[-123.74732,34.770267],[-123.7473,34.77027],[-123.6989,34.7655],[-123.6584,34.761],[-123.58221,34.75105],[-123.5822,34.75105],[-123.5465,34.74623],[-123.43663,34.7307],[-123.4366,34.7307],[-123.31329,34.713517],[-123.3133,34.71352],[-123.2776,34.70928],[-123.2524,34.7064],[-123.11032,34.688733],[-123.1103,34.68873],[-123.078,34.68598],[-123.05253,34.683217],[-123.0525,34.68322],[-122.9584,34.67307],[-122.9491,34.67212],[-122.92109,34.668733],[-122.9211,34.66873],[-122.8301,34.65785],[-122.8011,34.65463],[-122.74729,34.64655],[-122.7473,34.64655],[-122.6932,34.63855],[-122.6266,34.629183],[-122.6266,34.62918],[-122.587,34.62385],[-122.5557,34.61935],[-122.46867,34.607617],[-122.4687,34.60762],[-122.4422,34.60385],[-122.4177,34.60003],[-122.30776,34.586217],[-122.3078,34.58622],[-122.2775,34.58302],[-122.2635,34.58158],[-122.23012,34.577837],[-122.2301,34.57784],[-122.2039,34.57487],[-122.1819,34.57213],[-122.168,34.57043],[-122.1555,34.5689],[-122.1067,34.56308],[-122.10375,34.562753],[-122.0921,34.56138],[-122.0788,34.55968],[-122.0676,34.55808],[-122.0491,34.5555],[-122.0382,34.554],[-122.0277,34.55268],[-122.0115,34.55033],[-121.9997,34.54863],[-121.9878,34.54685],[-121.976,34.54535],[-121.9625,34.54342],[-121.9513,34.54183],[-121.9401,34.54022],[-121.9276,34.5384],[-121.9164,34.53679],[-121.9045,34.53502],[-121.8935,34.5335],[-121.8823,34.53208],[-121.87712,34.5314],[-121.8719,34.53072],[-121.8611,34.5292],[-121.8488,34.52762],[-121.8349,34.52568],[-121.8225,34.52425],[-121.8105,34.52288],[-121.7993,34.52151],[-121.7888,34.52027],[-121.7771,34.5188],[-121.76953,34.517917],[-121.7658,34.51748],[-121.7545,34.51615],[-121.7425,34.51467],[-121.7305,34.51317],[-121.7183,34.51153],[-121.7063,34.51005],[-121.6958,34.50877],[-121.6824,34.50703],[-121.6719,34.50582],[-121.6615,34.50463],[-121.6504,34.50343],[-121.6399,34.50232],[-121.6324,34.50145],[-121.6278,34.50092],[-121.6172,34.49977],[-121.6023,34.49825],[-121.5918,34.49695],[-121.5813,34.49575],[-121.5743,34.49502],[-121.5638,34.49375],[-121.5555,34.4929],[-121.5494,34.49223],[-121.5437,34.49163],[-121.54083,34.491347],[-121.5359,34.4908],[-121.5254,34.48972],[-121.5144,34.48858],[-121.5031,34.48718],[-121.4924,34.48588],[-121.4815,34.48455],[-121.4714,34.4834],[-121.4591,34.48197],[-121.4475,34.48048],[-121.4366,34.47897],[-121.4257,34.47768],[-121.42,34.476967],[-121.4149,34.4763],[-121.4047,34.475],[-121.3885,34.47295],[-121.3776,34.47147],[-121.3671,34.47003],[-121.3559,34.46855],[-121.3438,34.46693],[-121.3325,34.46545],[-121.3213,34.46375],[-121.3109,34.46242],[-121.30119,34.461033],[-121.2989,34.46067],[-121.2869,34.45898],[-121.2751,34.45743],[-121.2638,34.45592],[-121.2533,34.45452],[-121.2423,34.45307],[-121.2303,34.45165],[-121.2171,34.44983],[-121.2017,34.44768],[-121.1908,34.44628],[-121.1753,34.44417],[-121.1644,34.44273],[-121.16367,34.442633],[-121.1539,34.44145],[-121.1436,34.44005],[-121.1319,34.43842],[-121.1218,34.43715],[-121.1102,34.43588],[-121.0999,34.43462],[-121.0896,34.43333],[-121.0744,34.43155],[-121.0635,34.43027],[-121.0482,34.42848],[-121.0373,34.42732],[-121.0219,34.42567],[-121.0103,34.42455],[-120.9988,34.42353],[-120.99525,34.423167],[-120.9882,34.4223],[-120.9781,34.42098],[-120.9682,34.41967],[-120.9533,34.41778],[-120.9427,34.41643],[-120.9278,34.41433],[-120.9193,34.41307],[-120.9081,34.41143],[-120.8983,34.41],[-120.8885,34.40843],[-120.8781,34.40647],[-120.8683,34.40438],[-120.8585,34.40227],[-120.8482,34.40003],[-120.84767,34.399917],[-120.8395,34.39807],[-120.8299,34.39613],[-120.8201,34.39412],[-120.8099,34.39193],[-120.7995,34.3897],[-120.7897,34.3876],[-120.7794,34.38517],[-120.7696,34.38297],[-120.76467,34.381817],[-120.7593,34.38062],[-120.7493,34.37848],[-120.7383,34.3759],[-120.7229,34.37232],[-120.7126,34.36997],[-120.6994,34.36692],[-120.6897,34.36445],[-120.6787,34.3618],[-120.6691,34.35954],[-120.6588,34.35705],[-120.6477,34.35457],[-120.6366,34.35237],[-120.6263,34.35022],[-120.6159,34.34798],[-120.6063,34.34595],[-120.5968,34.34381],[-120.586,34.34173],[-120.5759,34.3398],[-120.5665,34.33775],[-120.5572,34.33577],[-120.5438,34.33302],[-120.533,34.33083],[-120.5223,34.32862],[-120.5127,34.3267],[-120.4987,34.32337],[-120.488,34.32058],[-120.4767,34.31773],[-120.4685,34.31567],[-120.4578,34.3129],[-120.448,34.31052],[-120.4375,34.30803],[-120.4263,34.30542],[-120.4141,34.30252],[-120.3998,34.29912],[-120.3881,34.29635],[-120.3773,34.29377],[-120.3672,34.29153],[-120.3548,34.2889],[-120.3445,34.28668],[-120.3276,34.28315],[-120.3172,34.28092],[-120.3061,34.27865],[-120.2965,34.27665],[-120.2855,34.27457],[-120.2753,34.27245],[-120.2652,34.27032],[-120.2494,34.26737],[-120.2389,34.26492],[-120.229,34.26257],[-120.2192,34.26045],[-120.2082,34.25768],[-120.1993,34.2553],[-120.1897,34.25298],[-120.1753,34.24957],[-120.1646,34.24697],[-120.1545,34.24452],[-120.1445,34.24203],[-120.1351,34.23969],[-120.1257,34.23728],[-120.1164,34.23483],[-120.1071,34.23248],[-120.0979,34.23008],[-120.0885,34.22765],[-120.0786,34.2251],[-120.0693,34.22265],[-120.0587,34.21985],[-120.0508,34.2177],[-120.0422,34.21555],[-120.0323,34.2132],[-120.0229,34.21095],[-120.0135,34.2088],[-119.9999,34.20582],[-119.9905,34.20382],[-119.9803,34.20163],[-119.9693,34.19917],[-119.9591,34.19683],[-119.9494,34.19456],[-119.9386,34.19208],[-119.9247,34.18885],[-119.915,34.1865],[-119.9007,34.18298],[-119.8912,34.18063],[-119.8817,34.17822],[-119.8722,34.17585],[-119.8628,34.17353],[-119.8533,34.17118],[-119.84,34.16782],[-119.8292,34.16527],[-119.8185,34.16255],[-119.8092,34.16027],[-119.7992,34.15792],[-119.7906,34.15574],[-119.7807,34.1533],[-119.7715,34.15117],[-119.7628,34.14928],[-119.7522,34.147],[-119.7424,34.14454],[-119.7345,34.1426],[-119.7265,34.14063],[-119.717,34.13848],[-119.7076,34.1363],[-119.6988,34.13423],[-119.6887,34.1319],[-119.679,34.12977],[-119.6689,34.12752],[-119.6594,34.1254],[-119.6493,34.12352],[-119.6363,34.12098],[-119.6269,34.1192],[-119.6179,34.1176],[-119.6078,34.11583],[-119.5983,34.11402],[-119.5882,34.11207],[-119.578,34.11017],[-119.5686,34.10843],[-119.5605,34.10695],[-119.5513,34.10538],[-119.5419,34.10357],[-119.5302,34.1007],[-119.5211,34.0985],[-119.5101,34.09592],[-119.5009,34.09381],[-119.4923,34.09177],[-119.4791,34.08887],[-119.4705,34.08703],[-119.4611,34.08497],[-119.4475,34.08197],[-119.438,34.07965],[-119.4285,34.07735],[-119.4141,34.0738],[-119.4052,34.07177],[-119.3944,34.06915],[-119.3856,34.0673],[-119.3769,34.0655],[-119.3667,34.0632],[-119.3565,34.06098],[-119.3471,34.05917],[-119.3323,34.05675],[-119.3223,34.05485],[-119.3223,34.05485],[-119.3129,34.0529],[-119.3035,34.05087],[-119.2934,34.04868],[-119.284,34.04642],[-119.2759,34.0432],[-119.2673,34.039],[-119.2582,34.03465],[-119.2485,34.0299],[-119.2388,34.02502],[-119.2264,34.01917],[-119.2152,34.01402],[-119.2068,34.01],[-119.2003,34.00688],[-119.193,34.00345],[-119.181,33.99765],[-119.1697,33.99202],[-119.1631,33.98877],[-119.1568,33.98585],[-119.15,33.98277],[-119.1423,33.97903],[-119.1346,33.97523],[-119.1279,33.97187],[-119.1175,33.96703],[-119.1108,33.96387],[-119.1041,33.96067],[-119.0958,33.9567],[-119.0879,33.95298]]}}
{"type":"Feature","geometry":{"type":"LineString","coordinates":[[122.147,29.91602],[122.1664,29.89585],[122.1815,29.87667],[122.1964,29.85463],[122.2085,29.83688],[122.21184,29.832917],[122.2215,29.82288],[122.2359,29.80902],[122.2486,29.7973],[122.2621,29.78463],[122.27757,29.771333],[122.2869,29.76395],[122.2914,29.76068],[122.2976,29.75678],[122.3222,29.7401],[122.3401,29.7288],[122.3633,29.72162],[122.37988,29.716533],[122.3847,29.71508],[122.4113,29.70707],[122.4403,29.69767],[122.4724,29.68813],[122.506,29.67987],[122.52907,29.675],[122.5335,29.67337],[122.5683,29.66035],[122.5999,29.67203],[122.6103,29.67662],[122.6354,29.69122],[122.6647,29.71393],[122.68872,29.73245],[122.6962,29.73825],[122.7117,29.7502],[122.7225,29.75867],[122.7383,29.7692],[122.7597,29.78272],[122.7929,29.80322],[122.8236,29.81995],[122.85168,29.83515],[122.8587,29.839],[122.8952,29.8586],[122.93,29.87453],[122.9678,29.88548],[122.9995,29.90688],[123.02805,29.92555],[123.0672,29.9506],[123.0925,29.96658],[123.1404,29.99065],[123.1733,29.9986],[123.2067,30.00678],[123.2191,30.01007],[123.2424,30.01908],[123.2532,30.0257],[123.2806,30.0495],[123.28107,30.049917],[123.3053,30.06982],[123.3376,30.09592],[123.3645,30.11737],[123.3784,30.13],[123.398,30.14877],[123.4184,30.16845],[123.437,30.18417],[123.4816,30.21697],[123.5056,30.23385],[123.5477,30.26303],[123.5768,30.28152],[123.6144,30.30622],[123.645,30.32667],[123.6779,30.34907],[123.7057,30.36782],[123.7398,30.39022],[123.802,30.42895],[123.8371,30.45062],[123.8719,30.47348],[123.902,30.49293],[123.9229,30.50638],[123.9381,30.5169],[123.9637,30.53445],[126.0109,32.01572],[126.0377,32.06248],[126.0528,32.08681],[126.0535,32.0879],[126.0806,32.12337],[126.0968,32.14732],[126.1244,32.18548],[126.1535,32.21722],[126.1765,32.23737],[126.1786,32.23905],[126.2267,32.2779],[126.2506,32.29647],[126.2745,32.31403],[126.2959,32.33123],[127.9252,33.68328],[127.9526,33.70803],[127.9762,33.72892],[128.0536,33.7896],[128.0835,33.81252],[128.1187,33.84128],[128.1499,33.86658],[128.1814,33.89313],[128.2157,33.91975],[128.2472,33.94473],[128.2764,33.96868],[128.3129,33.99763],[128.351,34.02657],[128.3836,34.05103],[128.4156,34.07612],[128.4471,34.10142],[128.4822,34.13005],[128.5093,34.1531],[128.5478,34.18567],[128.5772,34.20885],[128.6087,34.23428],[128.6741,34.2933],[128.7034,34.32168],[128.7355,34.34875],[128.7671,34.3756],[128.7984,34.40208],[128.8297,34.42728],[128.8663,34.45495],[128.8925,34.47485],[128.9272,34.50558],[128.9596,34.53488],[128.9919,34.56372],[129.0225,34.59197],[129.0525,34.61957],[129.083,34.64575],[129.1188,34.67527],[129.1378,34.69028],[129.1507,34.70097],[129.1726,34.7189],[129.182,34.72688],[129.2028,34.74465],[129.2269,34.765],[129.2449,34.78012],[129.2624,34.79452],[129.2752,34.80507],[129.2971,34.82307],[129.3194,34.84138],[129.3291,34.84932],[129.3399,34.85775],[129.3575,34.87108],[129.3877,34.8936],[129.3907,34.89583],[129.3971,34.90057],[129.4154,34.91428],[129.4422,34.93324],[129.4645,34.94718],[129.4797,34.95655],[129.4872,34.96107],[129.4933,34.96463],[129.5128,34.97628],[129.524,34.98293],[129.5527,35.00022],[129.5695,35.01068],[129.5862,35.02125],[129.6005,35.03032],[129.6183,35.04167],[129.638,35.05413],[129.6526,35.06315],[129.6708,35.0742],[129.6858,35.0832],[129.7092,35.09717],[129.7285,35.10902],[129.745,35.11872],[129.7697,35.13308],[129.7883,35.14517],[129.8046,35.15597],[129.8237,35.16842],[129.8413,35.17985],[129.8598,35.19195],[129.9265,35.23353],[129.9519,35.24992],[129.9724,35.26303],[129.99,35.2742],[130.0101,35.28573],[130.0289,35.29647],[130.0508,35.3089],[130.0666,35.31847],[130.1194,35.35008],[130.1378,35.36103],[130.1553,35.3715],[132.76288,36.950367],[132.7629,36.95037],[133.12941,37.172467],[133.1294,37.17247],[133.3594,37.30835],[133.3594,37.30835],[134.94931,38.2501],[134.9493,38.2501],[135.12581,38.354983],[135.1258,38.35498],[135.49061,38.566217],[135.4906,38.56622],[136.75613,39.303367],[136.7561,39.30337],[136.98028,39.429717],[136.9803,39.42972],[137.33619,39.63635],[137.3362,39.63635],[137.51332,39.7338],[137.5133,39.7338],[137.68024,39.82915],[137.6802,39.82915],[137.85869,39.935067],[137.8587,39.93507],[138.33825,40.204033],[138.3383,40.20403],[138.53427,40.31435],[138.5343,40.31435],[138.5675,40.3327],[138.77019,40.447333],[138.7702,40.44733],[138.8556,40.497417],[138.8556,40.49742],[139.17919,40.700833],[139.1792,40.70083],[139.48079,40.869983],[139.4808,40.86998],[139.5372,40.90188],[139.6587,40.97247],[139.73353,41.014217],[139.76,41.02947],[139.782,41.04277],[139.8389,41.07443],[139.8568,41.08455],[139.9023,41.11008],[139.9634,41.14395],[139.9794,41.15335],[139.9911,41.1601],[140.0121,41.17197],[140.0285,41.18078],[140.03879,41.186117],[140.0525,41.19323],[140.0736,41.20447],[140.1149,41.22675],[140.1427,41.24195],[140.1607,41.25157],[140.1776,41.25992],[140.1941,41.26823],[140.2052,41.2741],[140.213,41.27842],[140.2282,41.28707],[140.246,41.2971],[140.2625,41.30677],[140.279,41.3167],[140.297,41.3265],[140.3158,41.33678],[140.3345,41.34687],[140.3523,41.35655],[140.3694,41.36605],[140.3868,41.376],[140.4112,41.3891],[140.41967,41.39355],[140.4372,41.40282],[140.4539,41.41127],[140.4705,41.41942],[140.4868,41.4271],[140.5034,41.43482],[140.5197,41.44225],[140.5357,41.44985],[140.5606,41.46152],[140.5851,41.473],[140.6002,41.48118],[140.616,41.4887],[140.6323,41.49667],[140.6483,41.5041],[140.6687,41.51365],[140.6841,41.5206],[140.69205,41.5244],[140.7005,41.52845],[140.7164,41.53547],[140.7373,41.54835],[140.7519,41.55755],[140.7743,41.57057],[140.7979,41.58197],[140.8233,41.5917],[140.8505,41.59915],[140.8707,41.60313],[140.89088,41.60595],[140.8909,41.60595],[140.9108,41.60842],[140.93,41.61045],[140.9496,41.61217],[140.9701,41.61398],[141.0004,41.61688],[141.0313,41.6195],[141.0624,41.62242],[141.0833,41.6243],[141.1042,41.62607],[141.1251,41.6281],[141.1453,41.63122],[141.1654,41.63338],[141.18403,41.635383],[141.184,41.63538],[141.1938,41.63638],[141.2239,41.63978],[141.2626,41.64378],[141.2879,41.6464],[141.3027,41.64742],[141.336,41.64958],[141.3688,41.65123],[141.3963,41.65235],[141.4177,41.65358],[141.4346,41.65462],[141.45619,41.65655],[141.4689,41.6572],[141.4888,41.65867],[141.5129,41.65993],[141.5359,41.66118],[141.5517,41.66202],[141.5692,41.66297],[141.6286,41.66656],[141.6286,41.66656],[141.6657,41.66917],[141.6701,41.66947],[141.7053,41.67215],[141.7559,41.67613],[141.7811,41.67835],[141.8126,41.68107],[141.8367,41.68273],[141.8739,41.6858],[141.9032,41.68798],[141.9155,41.6888],[141.9456,41.69087],[141.9555,41.69155],[141.9737,41.69312],[142.0043,41.69613],[142.0327,41.69864],[142.0606,41.70158],[142.07567,41.702883],[142.074,41.70272],[142.0905,41.70438],[142.1169,41.7072],[142.1494,41.71051],[142.177,41.71368],[142.1935,41.71573],[142.2424,41.72068],[142.31124,41.727467],[142.3616,41.73208],[142.4106,41.73637],[142.4427,41.73917],[142.5132,41.74467],[142.52933,41.745863],[142.5645,41.74875],[142.616,41.75288],[142.6667,41.75667],[142.73721,41.762317],[142.7372,41.76232],[142.8663,41.7741],[142.9136,41.7788],[142.95535,41.783163],[142.9554,41.78316],[143.18621,41.804733],[143.1862,41.80473],[143.415,41.85977],[143.78927,41.953683],[143.7893,41.95368],[144.00036,41.97825],[144.0004,41.97825],[144.0144,41.97977],[144.1299,41.99283],[144.21061,42.00178],[144.2106,42.00178],[144.42117,42.032067],[144.4212,42.03207],[144.63048,42.0718],[144.6305,42.0718],[144.6537,42.07592],[144.6767,42.07981],[144.8609,42.1131],[145.25771,42.1865],[145.2577,42.1865],[145.43688,42.219283],[145.4369,42.21928],[145.4806,42.22835],[145.89373,42.283163],[145.8937,42.28316],[146.33827,42.3316],[146.3383,42.3316],[146.72185,42.391517],[146.7218,42.39152],[146.99291,42.437563],[146.9929,42.43756],[147.2756,42.486917],[147.2756,42.48692],[147.57492,42.538883],[147.5749,42.53888],[147.81505,42.578783],[147.815,42.57878],[147.85175,42.584867],[147.8517,42.58487],[148.0011,42.61094],[148.20875,42.64645],[148.2087,42.64645],[148.43119,42.683533],[148.4312,42.68353],[148.67888,42.722917],[148.6789,42.72292],[148.83065,42.747117],[148.8385,42.74848],[148.8842,42.75633],[149.05492,42.7867],[149.212,42.81467],[149.2804,42.82557],[149.50673,42.8632],[149.5067,42.8632],[149.68859,42.894663],[149.6886,42.89466],[149.88341,42.9276],[149.8834,42.9276],[150.03032,42.94885],[150.0303,42.94885],[150.0858,42.95436],[150.30265,42.9731],[150.3027,42.9731],[150.315,42.97425],[150.64021,43.005867],[150.6402,43.00587],[150.87328,43.026633],[150.8733,43.02663],[150.9252,43.03119],[151.24376,43.061967],[151.2438,43.06197],[151.54313,43.0905],[151.5431,43.0905],[151.574,43.09353],[151.82713,43.115633],[151.8271,43.11563],[152.11509,43.143667],[152.1151,43.14367],[152.39299,43.170133],[152.393,43.17013],[152.67597,43.19485],[152.676,43.19485],[153.25715,43.250133],[153.2571,43.25013],[153.3821,43.26114],[153.61265,43.281217],[153.6127,43.28122],[153.7045,43.28973],[153.84757,43.301217],[153.8487,43.30133],[154.05157,43.320567],[154.0516,43.32057],[154.43408,43.359683],[154.4341,43.35968],[154.5112,43.3658],[154.51117,43.3658],[154.7296,43.38206],[154.97273,43.404517],[154.9727,43.40452],[155.19315,43.4265],[155.1931,43.4265],[155.41211,43.446617],[155.4121,43.44662],[155.64715,43.468567],[155.6471,43.46857],[155.85045,43.486717],[155.8504,43.48672],[156.05941,43.50662],[156.0594,43.50662],[156.1221,43.5118],[156.28161,43.52715],[156.2816,43.52715],[156.4955,43.54778],[156.71419,43.567847],[156.7142,43.56785],[156.8099,43.57605],[156.89532,43.58615],[156.8953,43.58615],[156.9117,43.58821],[156.9299,43.5898],[156.9632,43.59222],[157.13835,43.60675],[157.1384,43.60675],[157.35685,43.62595],[157.3569,43.62595],[157.56064,43.645067],[157.5606,43.64507],[157.77148,43.66363],[157.7715,43.66363],[157.99736,43.686733],[157.9974,43.68673],[158.1409,43.70138],[158.38627,43.72315],[158.3863,43.72315],[158.70015,43.7505],[158.7001,43.7505],[159.22999,43.7996],[159.23,43.7996],[159.4285,43.81818],[159.53713,43.829017],[159.5371,43.82902],[159.6505,43.83992],[159.81055,43.852663],[159.8105,43.85266],[159.8557,43.85512],[160.09837,43.870017],[160.0984,43.87002],[160.31777,43.87865],[160.3178,43.87865],[160.3998,43.88077],[160.54201,43.88485],[160.542,43.88485],[160.77445,43.888417],[160.7745,43.88842],[161.2361,43.90059],[161.23612,43.900587],[161.4458,43.90732],[161.66179,43.91455],[161.6618,43.91455],[161.92533,43.921233],[161.9253,43.92123],[162.09559,43.923767],[162.0956,43.92377],[162.1567,43.92485],[162.53985,43.9358],[162.5399,43.9358],[162.83572,43.943517],[162.8357,43.94352],[163.12612,43.9495],[163.1261,43.9495],[163.42909,43.95985],[163.4291,43.95985],[163.4555,43.96105],[163.74908,43.969667],[163.7491,43.96967],[164.05113,43.973533],[164.0511,43.97353],[164.34895,43.982033],[164.349,43.98203],[164.67099,43.9906],[164.671,43.9906],[164.8742,43.99692],[165.09153,44.00105],[165.0915,44.00105],[165.23848,43.999067],[165.2385,43.99907],[165.54268,43.99855],[165.5427,43.99855],[165.76173,43.997883],[165.7617,43.99788],[166.01373,43.99935],[166.0137,43.99935],[166.1641,44.00165],[166.23661,44.001717],[166.2366,44.00172],[166.2871,44.00083],[166.3479,43.9999],[166.45913,43.998733],[166.4591,43.99873],[166.6864,43.9961],[166.89639,43.992267],[166.8964,43.99227],[167.184,43.991417],[167.184,43.99142],[167.37747,43.991833],[167.3775,43.99183],[167.60399,43.995917],[167.604,43.99592],[167.6286,43.99662],[167.84235,43.9995],[167.8423,43.9995],[167.9246,43.99965],[167.9437,43.99985],[167.9596,43.99957],[168.06267,43.999667],[168.0627,43.99967],[168.2897,43.99988],[168.52704,43.999747],[168.527,43.99975],[168.75253,44.013767],[168.7525,44.01377],[168.7838,44.0193],[168.8126,44.02372],[168.82041,44.0249],[168.9859,44.04485],[169.21149,44.072417],[169.2115,44.07242],[169.44967,44.053433],[169.4497,44.05343],[169.66407,44.025633],[169.6641,44.02563],[169.89512,44.002833],[169.8951,44.00283],[170.0638,44.00108],[170.1057,44.00048],[170.3534,43.99865],[170.3534,43.99865],[170.63003,43.99945],[170.63,43.99945],[170.95387,44.000967],[170.9539,44.00097],[171.0843,43.99997],[171.2608,43.997417],[171.2608,43.99742],[171.49459,43.995317],[171.4946,43.99532],[171.5549,43.9952],[171.70696,43.9955],[171.707,43.9955],[171.8989,43.9971],[171.9222,43.99712],[172.15615,43.9992],[172.1561,43.9992],[172.39647,44.000433],[172.3965,44.00043],[172.51469,44.00102],[172.5147,44.00102],[172.73792,44.00223],[172.7379,44.00223],[172.8583,44.00146],[172.98835,44.0008],[172.9883,44.0008],[173.0511,44.0006],[173.33549,44.00102],[173.3372,44.00103],[173.4826,44.0012],[173.71839,44.0027],[173.7184,44.0027],[173.86048,44.003983],[173.8605,44.00398],[173.8906,44.00347],[173.9573,44.00077],[174.22312,44.00145],[174.2231,44.00145],[174.56752,43.998567],[174.5675,43.99857],[174.6094,43.99857],[174.91915,44.000317],[174.9191,44.00032],[175.13776,44.001517],[175.1378,44.00152],[175.45239,44.00075],[175.4524,44.00075],[175.5129,44.00051],[175.70675,43.99965],[175.7067,43.99965],[176.03541,44.000117],[176.0354,44.00012],[176.34696,44.000233],[176.347,44.00023],[176.3685,44.00018],[176.65451,43.999297],[176.6545,43.9993],[176.7059,43.99913],[176.86513,43.998783],[176.8651,43.99878],[176.9247,43.9983],[177.31339,43.997067],[177.3134,43.99707],[177.5144,43.9974],[177.5144,43.9974],[177.83523,43.9977],[177.8352,43.9977],[178.1436,43.99955],[178.1436,43.99955],[178.22967,44.000233],[178.2418,44.0002],[178.3199,44.00127],[178.44415,44.002863],[178.4442,44.00286],[178.6855,44.0004],[178.9246,43.9989],[178.9246,43.9989],[179.00799,43.99865],[179.008,43.99865],[179.1556,43.99792],[179.1795,43.9977],[179.3742,43.995567],[179.3742,43.99557],[179.4601,43.9946],[179.61532,43.994867],[179.6153,43.99487],[179.84225,43.99515],[179.8423,43.99515],[-179.90613,43.999083],[-179.9061,43.99908],[-179.6928,43.999667],[-179.6928,43.99967],[-179.4634,43.99825],[-179.21575,43.99795],[-179.2157,43.99795],[-179.13925,43.998583],[-179.1393,43.99858],[-179.1199,43.99842],[-179.095,43.99832],[-179.0747,43.9982],[-178.78669,43.99735],[-178.7867,43.99735],[-178.52236,43.998537],[-178.5224,43.99854],[-178.28496,43.998317],[-178.285,43.99832],[-178.2552,43.99823],[-178.06,43.998537],[-178.06,43.99854],[-177.8573,43.99833],[-177.83675,43.998467],[-177.8367,43.99847],[-177.48635,43.999417],[-177.4863,43.99942],[-177.189,44.00005],[-176.8893,43.99942],[-176.8401,43.99932],[-176.60199,43.998853],[-176.602,43.99885],[-176.5409,43.99895],[-176.40535,43.9991],[-176.3868,43.9991],[-176.19652,43.999467],[-176.1011,43.99978],[-176.0777,43.99977],[-175.99776,43.999267],[-175.9978,43.99927],[-175.8772,43.99872],[-175.7941,43.99825],[-175.71824,43.998183],[-175.7182,43.99818],[-175.6552,43.99815],[-175.5205,43.99718],[-175.42427,43.997117],[-175.4243,43.99712],[-175.3754,43.9973],[-175.22232,43.998267],[-175.2223,43.99827],[-175.0756,43.99893],[-175.0002,43.99928],[-174.92065,43.999747],[-174.9207,43.99975],[-174.7779,43.99897],[-174.6746,43.998817],[-174.6574,43.99887],[-174.5488,43.99913],[-174.42453,43.999017],[-174.4245,43.99902],[-174.3389,43.99949],[-174.2163,43.999],[-173.97732,43.999333],[-173.9773,43.99933],[-173.89668,43.999217],[-173.8967,43.99922],[-173.8294,43.99875],[-173.7743,43.99855],[-173.66061,43.998853],[-173.6606,43.99885],[-173.6284,43.99902],[-173.4933,43.9993],[-173.35875,43.99855],[-173.3587,43.99855],[-173.03287,43.997917],[-173.0329,43.99792],[-172.90745,43.997833],[-172.9075,43.99783],[-172.7509,43.99748],[-172.47972,43.998347],[-172.4797,43.99835],[-172.4505,43.99855],[-172.21759,43.99825],[-172.2176,43.99825],[-172.15609,43.9973],[-172.1561,43.9973],[-171.9384,44.00112],[-171.87323,44.001883],[-171.8732,44.00188],[-171.7859,44.0016],[-171.58308,44.000083],[-171.5831,44.00008],[-171.32372,43.998783],[-171.3237,43.99878],[-171.2852,43.99902],[-171.12803,43.998933],[-171.128,43.99893],[-171.0691,43.99863],[-170.9861,43.99825],[-170.9116,43.998183],[-170.9116,43.99818],[-170.7764,43.9983],[-170.7049,43.99866],[-170.49268,43.9985],[-170.4927,43.9985],[-170.28472,43.998537],[-170.2847,43.99854],[-170.07093,43.998583],[-170.0709,43.99858],[-169.88196,44.000017],[-169.8751,44.00002],[-169.8465,43.99975],[-169.7543,43.99872],[-169.63341,43.997283],[-169.6334,43.99728],[-169.6068,43.99717],[-169.32309,43.9983],[-169.3231,43.9983],[-169.16109,43.99825],[-169.1611,43.99825],[-169.0936,43.99805],[-169.045,43.99643],[-169.032,43.9872],[-168.9937,43.9841],[-168.9538,43.98403],[-168.87348,43.984133],[-168.8735,43.98413],[-168.748,43.98598],[-168.6761,43.9868],[-168.54696,43.9891],[-168.547,43.9891],[-168.4539,43.99205],[-168.32601,43.995567],[-168.326,43.99557],[-168.2517,43.9976],[-168.08361,43.998567],[-168.0836,43.99857],[-167.87173,43.995967],[-167.8717,43.99597],[-167.7941,43.99595],[-167.64683,43.997137],[-167.6468,43.99714],[-167.23631,43.99955],[-167.2363,43.99955],[-167.00613,43.9984],[-167.0061,43.9984],[-166.78303,43.998633],[-166.783,43.99863],[-166.39493,43.99943],[-166.3949,43.99943],[-166.3483,43.99955],[-166.14223,44.00015],[-166.1422,44.00015],[-165.8808,44.000633],[-165.8097,44.00048],[-165.55519,43.999067],[-165.5552,43.99907],[-165.39487,44.0001],[-165.3949,44.0001],[-165.2861,43.9991],[-165.19429,43.9981],[-165.1414,43.99675],[-165.004,43.99298],[-164.92745,43.990033],[-164.9275,43.99003],[-164.7899,43.98145],[-164.71275,43.976917],[-164.7128,43.97692],[-164.5162,43.9686],[-164.44936,43.965887],[-164.4494,43.96589],[-164.3014,43.95693],[-164.2579,43.95415],[-164.18375,43.949847],[-164.1837,43.94985],[-164.0806,43.94368],[-164.0397,43.94117],[-163.96076,43.936333],[-163.8936,43.93247],[-163.67981,43.920117],[-163.6798,43.92012],[-163.6218,43.91652],[-163.5403,43.91172],[-163.41708,43.90445],[-163.4171,43.90445],[-163.3353,43.89917],[-163.24753,43.893417],[-163.2475,43.89342],[-163.1387,43.88648],[-163.0517,43.88148],[-162.89992,43.873183],[-162.8999,43.87318],[-162.7802,43.86582],[-162.67109,43.859283],[-162.6711,43.85928],[-162.50973,43.848817],[-162.5097,43.84882],[-162.4397,43.84523],[-162.26479,43.834647],[-162.2648,43.83465],[-162.2013,43.83048],[-162.0614,43.82157],[-161.96843,43.81635],[-161.9002,43.81305],[-161.8427,43.81025],[-161.68147,43.801267],[-161.6815,43.80127],[-161.5838,43.79567],[-161.31787,43.778217],[-161.3179,43.77822],[-161.12268,43.7654],[-161.01023,43.7588],[-161.0102,43.7588],[-160.9896,43.75778],[-160.8108,43.7472],[-160.76467,43.7446],[-160.7647,43.7446],[-160.5336,43.732833],[-160.5336,43.73283],[-160.449,43.72795],[-160.2487,43.71404],[-160.24875,43.714037],[-160.142,43.70647],[-159.92388,43.689333],[-159.9239,43.68933],[-159.8913,43.68468],[-159.72939,43.663763],[-159.7294,43.66376],[-159.6683,43.65592],[-159.6097,43.64853],[-159.5772,43.6445],[-159.45841,43.629],[-159.4584,43.629],[-159.3305,43.6116],[-159.30693,43.608833],[-159.3069,43.60883],[-159.2221,43.59862],[-159.1119,43.5859],[-159.0952,43.5838],[-158.90737,43.5602],[-158.9074,43.5602],[-158.61605,43.524187],[-158.6161,43.52419],[-158.58016,43.519683],[-158.5802,43.51968],[-158.382,43.49485],[-158.3648,43.49265],[-158.1822,43.469333],[-158.1822,43.46933],[-157.96732,43.439867],[-157.9673,43.43987],[-157.80292,43.419933],[-157.793,43.41882],[-157.7409,43.41235],[-157.59449,43.39355],[-157.5945,43.39355],[-157.5442,43.38708],[-157.41,43.3699],[-157.18761,43.341533],[-157.1876,43.34153],[-157.1114,43.33168],[-156.9933,43.31617],[-156.99328,43.316167],[-156.9643,43.31233],[-156.8809,43.30124],[-156.74601,43.283867],[-156.746,43.28387],[-156.6647,43.27577],[-156.54349,43.259267],[-156.5435,43.25927],[-156.33009,43.231767],[-156.3301,43.23177],[-156.2558,43.22245],[-156.09735,43.203067],[-156.0067,43.19168],[-155.9363,43.18287],[-155.9183,43.18056],[-155.83685,43.17035],[-155.8369,43.17035],[-155.676,43.15025],[-155.32468,43.103283],[-155.3247,43.10328],[-155.07859,43.07235],[-155.0786,43.07235],[-155.0108,43.06465],[-154.72916,43.028983],[-154.7292,43.02898],[-154.47792,42.995717],[-154.4779,42.99572],[-154.21133,42.960867],[-154.2113,42.96087],[-154.00673,42.935667],[-153.9625,42.93025],[-153.9352,42.9268],[-153.79675,42.909067],[-153.7968,42.90907],[-153.7291,42.90023],[-153.60848,42.884117],[-153.6085,42.88412],[-153.5368,42.87402],[-153.37763,42.852817],[-153.3776,42.85282],[-153.345,42.84865],[-153.13125,42.821933],[-153.1313,42.82193],[-153.1035,42.81875],[-152.91553,42.795983],[-152.9155,42.79598],[-152.8719,42.7908],[-152.799,42.78214],[-152.717,42.77232],[-152.59785,42.75802],[-152.5979,42.75802],[-152.5332,42.74923],[-152.35695,42.723317],[-152.3276,42.71913],[-152.09552,42.68852],[-152.0783,42.68623],[-151.9779,42.674],[-151.93099,42.668617],[-151.8756,42.66215],[-151.7667,42.64874],[-151.7047,42.64095],[-151.63412,42.630883],[-151.6341,42.63088],[-151.5135,42.61505],[-151.43952,42.605533],[-151.4395,42.60553],[-151.3976,42.5999],[-151.3226,42.59055],[-151.2956,42.5871],[-151.2309,42.57898],[-151.18387,42.573233],[-151.1839,42.57323],[-151.1483,42.5694],[-151.0734,42.56073],[-151.0373,42.55602],[-150.9946,42.55023],[-150.82521,42.52705],[-150.8252,42.52705],[-150.671,42.505833],[-150.671,42.50583],[-150.5939,42.49555],[-150.5467,42.48898],[-150.4994,42.48295],[-150.45253,42.476667],[-150.3829,42.4668],[-150.3224,42.45995],[-150.2247,42.44898],[-150.14533,42.438963],[-150.1453,42.43896],[-149.9837,42.41492],[-149.75299,42.364033],[-149.753,42.36403],[-149.43019,42.2931],[-149.4302,42.2931],[-149.4081,42.28803],[-149.19999,42.240897],[-149.2,42.2409],[-149.1559,42.23157],[-148.944,42.18527],[-148.944,42.18527],[-148.62219,42.11323],[-148.6222,42.11323],[-148.5775,42.1032],[-148.44073,42.073067],[-148.4011,42.06417],[-148.34,42.05023],[-148.18303,42.01715],[-148.183,42.01715],[-148.124,42.00372],[-148.06759,41.99145],[-148.0676,41.99145],[-147.84449,41.942067],[-147.7839,41.9288],[-147.658,41.90122],[-147.6368,41.89662],[-147.57156,41.881683],[-147.5716,41.88168],[-147.4711,41.85875],[-147.3466,41.83053],[-147.34664,41.830533],[-147.228,41.80363],[-146.97149,41.745333],[-146.9715,41.74533],[-146.76436,41.698833],[-146.7644,41.69883],[-146.6765,41.6787],[-146.56737,41.655483],[-146.5674,41.65548],[-146.3992,41.620097],[-146.3992,41.6201],[-146.1963,41.57238],[-146.10873,41.5521],[-146.1087,41.5521],[-145.9961,41.52675],[-145.85336,41.496497],[-145.8534,41.4965],[-145.7894,41.48275],[-145.57501,41.432517],[-145.575,41.43252],[-145.494,41.41495],[-145.3754,41.38894],[-145.17255,41.342817],[-145.1725,41.34282],[-145.1204,41.33117],[-145.0812,41.32228],[-144.90029,41.2816],[-144.9003,41.2816],[-144.75741,41.249917],[-144.7574,41.24992],[-144.6619,41.229],[-144.5632,41.20716],[-144.22699,41.132683],[-144.227,41.13268],[-143.97875,41.076633],[-143.9787,41.07663],[-143.9269,41.06425],[-143.72187,41.015933],[-143.7219,41.01593],[-143.6552,41.00033],[-143.41995,40.946867],[-143.42,40.94687],[-143.30748,40.9213],[-143.3075,40.9213],[-143.1509,40.88652],[-143.12668,40.881033],[-143.1267,40.88103],[-142.9321,40.83787],[-142.88419,40.827267],[-142.8842,40.82727],[-142.7475,40.79797],[-142.6955,40.78507],[-142.62575,40.768167],[-142.6257,40.76817],[-142.5067,40.74085],[-142.41429,40.719533],[-142.4143,40.71953],[-142.3148,40.6959],[-142.2762,40.68722],[-142.09941,40.64735],[-142.0994,40.64735],[-141.96415,40.61765],[-141.9058,40.60475],[-141.8784,40.59862],[-141.71728,40.563167],[-141.7173,40.56317],[-141.6249,40.54253],[-141.5327,40.52222],[-141.49913,40.514533],[-141.4991,40.51453],[-141.3429,40.48073],[-141.2916,40.46962],[-141.16029,40.436353],[-141.1204,40.42635],[-141.0908,40.41898],[-141.0461,40.40815],[-141.0044,40.39863],[-141.00436,40.398633],[-140.9021,40.37527],[-140.8382,40.35927],[-140.78212,40.345867],[-140.7821,40.34587],[-140.7195,40.33088],[-140.57267,40.292867],[-140.5521,40.28782],[-140.5174,40.27927],[-140.4866,40.27325],[-140.4664,40.26913],[-140.3719,40.25017],[-140.32995,40.241067],[-140.3299,40.24107],[-140.2919,40.23278],[-140.243,40.22182],[-140.22,40.21632],[-140.1801,40.20737],[-140.1362,40.19692],[-140.09672,40.188013],[-140.0967,40.18801],[-140.0198,40.17042],[-139.968,40.15685],[-139.9133,40.14088],[-139.7874,40.10118],[-139.7874,40.101183],[-139.702,40.07343],[-139.60743,40.042867],[-139.6074,40.04287],[-139.5377,40.02045],[-139.5094,40.0106],[-139.26732,39.929083],[-139.22113,39.914033],[-139.2211,39.91403],[-139.1633,39.89538],[-139.00796,39.846433],[-139.008,39.84643],[-138.9446,39.82547],[-138.74981,39.7615],[-138.7008,39.74408],[-138.45796,39.660767],[-138.458,39.66077],[-138.24819,39.597667],[-138.2482,39.59767],[-138.2109,39.58552],[-138.11172,39.551283],[-138.1117,39.55128],[-137.9919,39.51182],[-137.9485,39.49802],[-137.76095,39.43715],[-137.7609,39.43715],[-137.68936,39.413883],[-137.6894,39.41388],[-137.5811,39.37833],[-137.49945,39.351533],[-137.4995,39.35153],[-137.4627,39.33913],[-137.4247,39.32625],[-137.3775,39.31008],[-137.25212,39.269717],[-137.2003,39.25247],[-137.1806,39.24583],[-137.06875,39.20745],[-137.0687,39.20745],[-136.9973,39.1832],[-136.9317,39.16065],[-136.83076,39.12695],[-136.8308,39.12695],[-136.7361,39.09635],[-136.62673,39.059883],[-136.6267,39.05988],[-136.4977,39.01999],[-136.431,38.99673],[-136.31915,38.9584],[-136.3192,38.9584],[-136.2345,38.92967],[-136.20611,38.919767],[-136.2034,38.9187],[-136.1824,38.91218],[-136.079,38.87922],[-135.88799,38.819033],[-135.888,38.81903],[-135.72128,38.762183],[-135.7213,38.76218],[-135.5422,38.7039],[-135.5422,38.7039],[-135.4923,38.68842],[-135.3798,38.65078],[-135.33912,38.636137],[-135.3391,38.63614],[-135.2919,38.61925],[-135.1989,38.58777],[-135.1575,38.57397],[-135.023,38.528883],[-134.963,38.50965],[-134.79421,38.454183],[-134.7942,38.45418],[-134.66329,38.408917],[-134.6633,38.40892],[-134.6035,38.3897],[-134.48149,38.347017],[-134.4815,38.34702],[-134.4315,38.32925],[-134.30493,38.286983],[-134.2489,38.26826],[-134.05885,38.20285],[-134.0589,38.20285],[-134.0132,38.18808],[-133.9364,38.16477],[-133.74536,38.099317],[-133.7454,38.09932],[-133.51676,38.024567],[-133.5168,38.02457],[-133.322,37.9571],[-133.322,37.9571],[-133.26447,37.937583],[-133.2645,37.93758],[-133.1666,37.90545],[-133.03495,37.86165],[-133.0349,37.86165],[-132.9914,37.84717],[-132.81825,37.806283],[-132.8183,37.80628],[-132.7981,37.82958],[-132.6818,37.84792],[-132.64445,37.837783],[-132.6445,37.83778],[-132.6025,37.82103],[-132.5661,37.80597],[-132.4674,37.7666],[-132.27713,37.69385],[-132.2771,37.69385],[-132.16085,37.64868],[-132.1609,37.64868],[-132.1073,37.62732],[-131.98549,37.58013],[-131.9855,37.58013],[-131.9392,37.56203],[-131.8679,37.53485],[-131.80529,37.509983],[-131.8053,37.50998],[-131.6905,37.4657],[-131.58977,37.4266],[-131.5898,37.4266],[-131.5761,37.42098],[-131.5528,37.41152],[-131.4421,37.36652],[-131.40423,37.35065],[-131.4042,37.35065],[-131.3659,37.3349],[-131.2838,37.30228],[-131.2427,37.28583],[-131.2168,37.2752],[-131.2168,37.2752],[-131.158,37.25137],[-131.1034,37.22938],[-131.0664,37.21532],[-131.03305,37.202013],[-131.0331,37.20201],[-130.9909,37.18593],[-130.9712,37.17845],[-130.9438,37.16778],[-130.9107,37.155],[-130.8763,37.14143],[-130.80175,37.1111],[-130.8017,37.1111],[-130.7775,37.10135],[-130.7303,37.0844],[-130.57865,37.028567],[-130.5787,37.02857],[-130.5367,37.0129],[-130.5242,37.00817],[-130.44776,36.979367],[-130.4478,36.97937],[-130.4141,36.96617],[-130.3539,36.94265],[-130.3067,36.92403],[-130.27389,36.9114],[-130.2739,36.9114],[-130.2035,36.88448],[-130.0872,36.8399],[-130.08215,36.837933],[-129.9592,36.79087],[-129.9222,36.77772],[-129.9059,36.77172],[-129.86615,36.758067],[-129.8661,36.75807],[-129.7479,36.71763],[-129.6512,36.684533],[-129.6512,36.68453],[-129.6198,36.67263],[-129.5781,36.65587],[-129.5411,36.64095],[-129.41687,36.588967],[-129.4169,36.58897],[-129.20679,36.503033],[-129.2068,36.50303],[-129.1734,36.4893],[-129.01105,36.41965],[-129.011,36.41965],[-128.9792,36.40612],[-128.87575,36.36195],[-128.8757,36.36195],[-128.7581,36.31133],[-128.57705,36.23565],[-128.5771,36.23565],[-128.55925,36.228183],[-128.5592,36.22818],[-128.5115,36.20847],[-128.4137,36.16865],[-128.36521,36.148983],[-128.3652,36.14898],[-128.3259,36.13222],[-128.2609,36.10468],[-128.2197,36.08705],[-128.12295,36.045033],[-128.1229,36.04503],[-128.0624,36.01992],[-128.0304,36.00708],[-128.0116,35.99933],[-127.93585,35.968567],[-127.9359,35.96857],[-127.9009,35.9543],[-127.8811,35.94615],[-127.78081,35.905083],[-127.7808,35.90508],[-127.7304,35.88395],[-127.7091,35.87462],[-127.6703,35.85781],[-127.58356,35.820033],[-127.5836,35.82003],[-127.5495,35.80502],[-127.4449,35.75993],[-127.4116,35.74565],[-127.4116,35.74565],[-127.24183,35.675217],[-127.2418,35.67522],[-127.1992,35.65788],[-127.0787,35.60807],[-126.92712,35.545733],[-126.9271,35.54573],[-126.8711,35.52188],[-126.777,35.481667],[-126.777,35.48167],[-126.7369,35.46458],[-126.60599,35.409133],[-126.606,35.40913],[-126.5508,35.38565],[-126.47127,35.351733],[-126.4673,35.35012],[-126.3963,35.32068],[-126.3599,35.305],[-126.25919,35.261617],[-126.2592,35.26162],[-126.2232,35.24633],[-126.07928,35.187483],[-126.0793,35.18748],[-125.9469,35.1311],[-125.9151,35.11715],[-125.88473,35.103767],[-125.8847,35.10377],[-125.8644,35.09488],[-125.7919,35.0624],[-125.7554,35.04625],[-125.59715,35.003483],[-125.5971,35.00348],[-125.48493,34.989017],[-125.4849,34.98902],[-125.4445,34.9837],[-125.4135,34.9798],[-125.30399,34.966837],[-125.304,34.96684],[-125.2855,34.96458],[-125.2711,34.96297],[-125.13893,34.945733],[-125.1389,34.94573],[-125.1085,34.94187],[-125.02752,34.931683],[-125.0275,34.93168],[-124.974,34.92528],[-124.9122,34.9177],[-124.8698,34.91287],[-124.723,34.894183],[-124.723,34.89418],[-124.68113,34.888533],[-124.6811,34.88853],[-124.525,34.86823],[-124.47696,34.862767],[-124.477,34.86277],[-124.388,34.85277],[-124.33709,34.847063],[-124.3371,34.84706],[-124.2894,34.84143],[-124.2469,34.83603],[-124.1075,34.81603],[-124.0757,34.81122],[-123.9698,34.79555],[-123.9382,34.79172],[-123.7929,34.77283],[-123.7061,34.76328],[-123.6884,34.76159],[-123.644,34.75737],[-123.5527,34.74675],[-123.5235,34.74247],[-123.5113,34.74058],[-123.4529,34.7378],[-123.4278,34.73315],[-123.4136,34.73186],[-123.3402,34.72117],[-123.2991,34.7153],[-123.2362,34.7071],[-123.1979,34.70265],[-123.1624,34.69827],[-123.0102,34.67717],[-122.8705,34.6581],[-122.8378,34.65351],[-122.7625,34.64323],[-122.6718,34.63111],[-122.6399,34.62691],[-122.5937,34.62113],[-122.4825,34.60705],[-122.4688,34.60523],[-122.3157,34.58662],[-122.3022,34.58502],[-122.2615,34.58012],[-122.242,34.57782],[-122.2021,34.57337],[-122.1503,34.5674],[-122.134,34.56553],[-122.1196,34.5639],[-122.1054,34.56237],[-122.0916,34.56088],[-122.0767,34.5593],[-122.0589,34.55735],[-122.0468,34.55593],[-122.0346,34.55468],[-122.0179,34.55255],[-122.0041,34.55087],[-121.9921,34.54937],[-121.9795,34.54788],[-121.9663,34.54598],[-121.9526,34.54408],[-121.9324,34.54103],[-121.9187,34.53905],[-121.9055,34.53717],[-121.8923,34.53537],[-121.8718,34.53292],[-121.8599,34.53133],[-121.8414,34.5289],[-121.8288,34.52715],[-121.8154,34.52548],[-121.8026,34.52374],[-121.7871,34.52185],[-121.7735,34.5202],[-121.7527,34.51755],[-121.7395,34.5159],[-121.7204,34.51355],[-121.7069,34.51195],[-121.6909,34.5101],[-121.6726,34.50773],[-121.6601,34.50607],[-121.6464,34.5043],[-121.6333,34.50243],[-121.6208,34.50075],[-121.602,34.49866],[-121.5897,34.4972],[-121.5755,34.49558],[-121.5631,34.49418],[-121.5503,34.49262],[-121.5324,34.49026],[-121.5206,34.48862],[-121.5087,34.48689],[-121.4965,34.48512],[-121.4781,34.48263],[-121.4654,34.48103],[-121.4534,34.47938],[-121.4331,34.47673],[-121.4211,34.4752],[-121.4085,34.47346],[-121.3899,34.47117],[-121.3762,34.46942],[-121.3572,34.46705],[-121.3457,34.4657],[-121.3321,34.464],[-121.3197,34.46248],[-121.3078,34.46097],[-121.2956,34.45942],[-121.278,34.45732],[-121.2602,34.45505],[-121.2478,34.45357],[-121.2359,34.45215],[-121.2185,34.45038],[-121.2067,34.4489],[-121.1946,34.44767],[-121.1817,34.4461],[-121.1684,34.44422],[-121.155,34.44243],[-121.1421,34.44065],[-121.1297,34.43878],[-121.1153,34.4368],[-121.1015,34.4347],[-121.0833,34.43196],[-121.0714,34.43052],[-121.0589,34.42898],[-121.0403,34.42677],[-121.0273,34.42527],[-121.0154,34.42365],[-120.9971,34.42135],[-120.9845,34.41957],[-120.972,34.41775],[-120.9529,34.41502],[-120.941,34.41325],[-120.9289,34.41147],[-120.9106,34.40877],[-120.8991,34.40748],[-120.8862,34.40532],[-120.8679,34.40178],[-120.856,34.39952],[-120.8435,34.39717],[-120.8305,34.3947],[-120.8185,34.39262],[-120.8064,34.39038],[-120.7945,34.38792],[-120.7821,34.3852],[-120.7699,34.3823],[-120.7577,34.3793],[-120.7453,34.37638],[-120.7281,34.37248],[-120.7157,34.36953],[-120.7028,34.3666],[-120.6847,34.36238],[-120.6729,34.35973],[-120.6605,34.35683],[-120.6469,34.35373],[-120.6349,34.35123],[-120.6223,34.34838],[-120.6103,34.34553],[-120.5978,34.34265],[-120.5858,34.33973],[-120.5737,34.33695],[-120.5623,34.334],[-120.5508,34.33147],[-120.5387,34.3288],[-120.5262,34.32595],[-120.5146,34.32327],[-120.5027,34.32052],[-120.4852,34.31662],[-120.4746,34.31396],[-120.4629,34.3114],[-120.4491,34.30827],[-120.4377,34.30578],[-120.4259,34.30297],[-120.4082,34.299],[-120.3945,34.29573],[-120.382,34.29285],[-120.3704,34.29008],[-120.3578,34.28703],[-120.3403,34.28307],[-120.329,34.2805],[-120.3171,34.27783],[-120.3045,34.27512],[-120.2859,34.27112],[-120.2734,34.26843],[-120.2615,34.266],[-120.2495,34.26355],[-120.2311,34.25982],[-120.2193,34.25737],[-120.2068,34.2548],[-120.1889,34.25072],[-120.1765,34.24788],[-120.1642,34.24503],[-120.1531,34.2425],[-120.1353,34.23853],[-120.1234,34.2358],[-120.1113,34.2331],[-120.1003,34.23053],[-120.0883,34.2278],[-120.0764,34.22508],[-120.0646,34.22223],[-120.0477,34.21847],[-120.0362,34.21598],[-120.0236,34.2133],[-120.0071,34.20963],[-119.9929,34.20638],[-119.9761,34.20252],[-119.9643,34.19972],[-119.9521,34.19702],[-119.9401,34.19413],[-119.9401,34.19413],[-119.9281,34.19132],[-119.9115,34.18732],[-119.8999,34.18457],[-119.8883,34.18175],[-119.8777,34.17918],[-119.8592,34.17485],[-119.848,34.17227],[-119.8338,34.16898],[-119.8224,34.16638],[-119.8114,34.16385],[-119.7955,34.1601],[-119.7847,34.15757],[-119.7739,34.15503],[-119.7622,34.15247],[-119.7451,34.14867],[-119.7343,34.14622],[-119.7236,34.14362],[-119.707,34.13965],[-119.6964,34.13702],[-119.6854,34.13445],[-119.6748,34.13203],[-119.6589,34.1284],[-119.6491,34.12612],[-119.6382,34.12358],[-119.6267,34.12093],[-119.6108,34.11727],[-119.6003,34.11493],[-119.5906,34.11277],[-119.5804,34.11067],[-119.5646,34.10722],[-119.5536,34.10477],[-119.5426,34.10218],[-119.5307,34.09948],[-119.5192,34.09675],[-119.5077,34.09413],[-119.4975,34.09188],[-119.4869,34.08952],[-119.4748,34.08673],[-119.4614,34.0839],[-119.4501,34.08123],[-119.439,34.07863],[-119.4293,34.07623],[-119.4187,34.07368],[-119.4071,34.0709],[-119.3944,34.06785],[-119.3841,34.06543],[-119.373,34.06287],[-119.3606,34.05998],[-119.3497,34.05722],[-119.3396,34.0547],[-119.3251,34.05095],[-119.3135,34.04803],[-119.2998,34.04453],[-119.2877,34.04123],[-119.2749,34.03755],[-119.2644,34.03288],[-119.2568,34.02912],[-119.2467,34.02423],[-119.2404,34.02135],[-119.2345,34.0186],[-119.2273,34.01534],[-119.2188,34.01145],[-119.2118,34.00835],[-119.2063,34.0059],[-119.2002,34.0032],[-119.1923,33.99958],[-119.1864,33.99688],[-119.1783,33.99323],[-119.1711,33.98998],[-119.1638,33.9868],[-119.1574,33.98402],[-119.1499,33.98088],[-119.1429,33.97785],[-119.1354,33.9745],[-119.1272,33.97102],[-119.1191,33.96758],[-119.111,33.96397],[-119.1031,33.96015],[-119.0952,33.9564],[-119.0884,33.95307]]}}
{"type":"Feature","geometry":{"type":"LineString","coordinates":[[122.1542,29.91087],[122.17088,29.893417],[122.172,29.89177],[122.1863,29.87038],[122.1996,29.85043],[122.2123,29.8319],[122.2271,29.81627],[122.24213,29.803333],[122.2456,29.80042],[122.2609,29.78785],[122.2761,29.77538],[122.2881,29.7664],[122.3063,29.75292],[122.32197,29.740667],[122.3246,29.73852],[122.341,29.72733],[122.368,29.71792],[122.3897,29.7114],[122.4105,29.70377],[122.4281,29.69743],[122.43027,29.696667],[122.4581,29.68815],[122.4852,29.68188],[122.5154,29.6749],[122.5469,29.67013],[122.5808,29.6656],[122.58225,29.665383],[122.6187,29.66182],[122.6558,29.66123],[122.6908,29.66235],[122.7292,29.66375],[122.7651,29.6645],[122.76053,29.664583],[122.804,29.66373],[122.8389,29.66265],[122.8776,29.66008],[122.9128,29.6587],[122.9508,29.65995],[122.95199,29.66],[122.9882,29.66145],[123.0606,29.66458],[123.0963,29.66617],[123.1327,29.66783],[123.12835,29.667617],[123.1708,29.6697],[123.2054,29.67083],[123.2416,29.67107],[123.2795,29.67123],[123.3146,29.67132],[123.351,29.67182],[123.3867,29.67192],[123.4247,29.67177],[123.4652,29.67162],[123.5,29.6715],[123.5391,29.67155],[123.5783,29.67157],[123.6128,29.67163],[123.6557,29.6715],[123.6925,29.67125],[123.7199,29.67112],[123.7699,29.67152],[123.8028,29.67173],[123.8409,29.67217],[123.8667,29.67245],[123.911,29.67282],[123.952,29.67332],[127.1676,30.13425],[129.28488,30.454867],[129.4984,30.48697],[129.5422,30.4913],[129.5786,30.49825],[129.6188,30.50543],[129.6614,30.51327],[129.7065,30.52178],[129.7505,30.53058],[129.7955,30.54025],[129.8306,30.54787],[129.8672,30.55513],[129.9073,30.56238],[129.9528,30.57048],[129.985,30.57583],[131.69721,31.1281],[131.6972,31.1281],[132.88255,31.4538],[132.8826,31.4538],[133.89752,31.729767],[133.8975,31.72977],[134.82563,31.988133],[134.8256,31.98813],[136.23365,32.37035],[136.2337,32.37035],[136.74611,32.511433],[136.7461,32.51143],[137.1018,32.606817],[137.1018,32.60682],[137.1337,32.61553],[137.33819,32.670233],[137.3382,32.67023],[137.92987,32.832163],[137.9299,32.83216],[138.16004,32.891667],[138.16,32.89167],[138.71237,33.05],[138.7124,33.05],[139.24717,33.191983],[139.2472,33.19198],[140.01007,33.351233],[140.0101,33.35123],[140.293,33.379137],[140.293,33.37914],[140.73887,33.444667],[140.7389,33.44467],[140.89264,33.465933],[140.8926,33.46593],[140.9576,33.47697],[141.06352,33.490667],[141.0635,33.49067],[141.1855,33.50528],[141.41047,33.528533],[141.4105,33.52853],[141.5717,33.55057],[141.75221,33.571683],[141.7522,33.57168],[142.33801,33.643417],[142.338,33.64342],[142.67724,33.680167],[142.6772,33.68017],[142.87921,33.70392],[142.8792,33.70392],[143.10896,33.736417],[143.109,33.73642],[143.33671,33.768883],[143.3367,33.76888],[143.55427,33.79655],[143.5543,33.79655],[143.5685,33.79848],[143.7227,33.82245],[143.77989,33.8292],[143.7799,33.8292],[144.00288,33.854483],[144.0029,33.85448],[144.24363,33.884833],[144.2436,33.88483],[144.84096,33.956067],[144.841,33.95607],[144.9146,33.96045],[145.25757,34.010283],[145.2576,34.01028],[145.48077,34.04055],[145.4808,34.04055],[145.76069,34.079617],[145.7607,34.07962],[145.93695,34.1041],[145.937,34.1041],[146.26779,34.149733],[146.2678,34.14973],[146.63085,34.1998],[146.6309,34.1998],[146.85348,34.229733],[146.8535,34.22973],[147.0478,34.255233],[147.0478,34.25523],[147.1732,34.27013],[147.28945,34.285167],[147.2895,34.28517],[147.3431,34.29275],[147.52891,34.316003],[147.5289,34.316],[147.68788,34.33895],[147.6879,34.33895],[147.7026,34.34132],[147.84812,34.364497],[147.8481,34.3645],[147.9207,34.37673],[148.0198,34.389733],[148.0198,34.38973],[148.17981,34.410633],[148.1798,34.41063],[148.3286,34.43158],[148.48071,34.451967],[148.4807,34.45197],[148.66261,34.474117],[148.6626,34.47412],[148.81803,34.490117],[148.818,34.49012],[149.02168,34.511333],[149.0217,34.51133],[149.24473,34.547267],[149.2447,34.54727],[149.48239,34.585833],[149.4824,34.58583],[149.72252,34.624133],[149.7225,34.62413],[149.94625,34.650633],[149.9463,34.65063],[149.9888,34.65572],[150.09599,34.67315],[150.096,34.67315],[150.1193,34.67675],[150.45315,34.71985],[150.4531,34.71985],[150.6177,34.74193],[150.83829,34.767283],[150.8383,34.76728],[150.9401,34.78442],[151.04447,34.801817],[151.0445,34.80182],[151.1724,34.82095],[151.32653,34.836717],[151.3265,34.83672],[151.4514,34.85048],[151.49509,34.856717],[151.4951,34.85672],[151.5196,34.86012],[151.66749,34.880067],[151.6675,34.88007],[151.82847,34.89868],[151.8285,34.89868],[151.9996,34.920517],[151.9996,34.92052],[152.17201,34.957683],[152.172,34.95768],[152.3298,34.976817],[152.3298,34.97682],[152.54159,35.007367],[152.5416,35.00737],[152.6768,35.02243],[152.84728,35.042817],[152.8473,35.04282],[153.01065,35.064217],[153.0107,35.06422],[153.17525,35.08618],[153.1752,35.08618],[153.2343,35.09455],[153.49648,35.134617],[153.4965,35.13462],[153.6286,35.1537],[153.6683,35.15978],[153.8407,35.18405],[154.0147,35.20424],[154.3147,35.24888],[154.5133,35.27302],[154.68643,35.296883],[154.6864,35.29688],[155.00451,35.3394],[155.0045,35.3394],[155.1429,35.35952],[155.34725,35.387683],[155.3473,35.38768],[155.56447,35.424033],[155.5645,35.42403],[155.78176,35.4483],[155.7818,35.4483],[155.7966,35.45002],[155.92465,35.467617],[155.9247,35.46762],[155.9903,35.47587],[156.0635,35.48333],[156.19689,35.49898],[156.1969,35.49898],[156.39277,35.52415],[156.3928,35.52415],[156.55963,35.54535],[156.5596,35.54535],[156.6178,35.55287],[156.70481,35.565617],[156.7048,35.56562],[156.81401,35.579237],[156.814,35.57924],[156.8655,35.58527],[157.02923,35.6076],[157.0292,35.6076],[157.18027,35.624383],[157.1803,35.62438],[157.3192,35.64505],[157.46468,35.67075],[157.4647,35.67075],[157.61347,35.688817],[157.6135,35.68882],[157.6298,35.69088],[157.76373,35.70885],[157.7637,35.70885],[157.8087,35.71623],[157.88765,35.727867],[157.88765,35.727867],[157.8876,35.72787],[157.9855,35.74268],[158.02781,35.748283],[158.02781,35.748283],[158.21601,35.773317],[158.21601,35.773317],[158.216,35.77332],[158.3238,35.78808],[158.3411,35.79042],[158.36339,35.792917],[158.36339,35.792917],[158.3634,35.79292],[158.63515,35.829333],[158.63515,35.829333],[158.6351,35.82933],[158.80047,35.851917],[158.80047,35.851917],[158.8005,35.85192],[158.8967,35.86595],[159.12984,35.897167],[159.12984,35.897167],[159.1298,35.89717],[159.3024,35.91915],[159.3024,35.91915],[159.3024,35.91915],[159.55759,35.953367],[159.55759,35.953367],[159.5576,35.95337],[159.69451,35.974483],[159.69451,35.974483],[159.6945,35.97448],[159.8506,35.997],[159.96907,36.011067],[159.96907,36.011067],[159.9691,36.01107],[160.0038,36.01472],[160.0544,36.02033],[160.16216,36.033017],[160.16216,36.033017],[160.1622,36.03302],[160.40741,36.061613],[160.40741,36.061613],[160.4074,36.06161],[160.51388,36.075083],[160.51388,36.075083],[160.5139,36.07508],[160.70541,36.104967],[160.70541,36.104967],[160.7054,36.10497],[160.83467,36.1245],[160.83467,36.1245],[160.8347,36.1245],[161.02483,36.1542],[161.02483,36.1542],[161.0248,36.1542],[161.19985,36.175833],[161.19985,36.175833],[161.1999,36.17583],[161.2683,36.18277],[161.3561,36.19072],[161.48483,36.203033],[161.48483,36.203033],[161.4848,36.20303],[161.5275,36.20678],[161.68573,36.222433],[161.68573,36.222433],[161.6857,36.22243],[161.84392,36.238783],[161.84392,36.238783],[161.8439,36.23878],[162.00744,36.260433],[162.00744,36.260433],[162.0074,36.26043],[162.17837,36.284533],[162.17837,36.284533],[162.1784,36.28453],[162.48981,36.336467],[162.48981,36.336467],[162.4898,36.33647],[162.78935,36.387],[162.78935,36.387],[162.7894,36.387],[162.97144,36.410483],[162.97144,36.410483],[162.9714,36.41048],[162.987,36.41268],[163.27349,36.451867],[163.27349,36.451867],[163.2735,36.45187],[163.41911,36.470267],[163.41911,36.470267],[163.4191,36.47027],[163.5968,36.49377],[163.78856,36.519017],[163.78856,36.519017],[163.7886,36.51902],[163.99505,36.54748],[163.99505,36.54748],[163.9951,36.54748],[164.22661,36.576133],[164.22661,36.576133],[164.2266,36.57613],[164.268,36.58157],[164.42611,36.60255],[164.42611,36.60255],[164.4261,36.60255],[164.62945,36.629817],[164.62945,36.629817],[164.6295,36.62982],[164.6929,36.64003],[164.86273,36.661583],[164.86273,36.661583],[164.8627,36.66158],[165.04572,36.684383],[165.04572,36.684383],[165.0457,36.68438],[165.17703,36.702117],[165.17703,36.702117],[165.177,36.70212],[165.25487,36.714817],[165.25487,36.714817],[165.2549,36.71482],[165.3373,36.72655],[165.47688,36.743933],[165.47688,36.743933],[165.4769,36.74393],[165.62595,36.764167],[165.62595,36.764167],[165.6259,36.76417],[165.642,36.7663],[165.8132,36.7893],[165.8132,36.7893],[165.8132,36.7893],[165.8786,36.79943],[166.13828,36.839487],[166.13828,36.839487],[166.1383,36.83949],[166.26203,36.853767],[166.26203,36.853767],[166.262,36.85377],[166.2771,36.8556],[166.3327,36.86257],[166.48081,36.87977],[166.48081,36.87977],[166.4808,36.87977],[166.5784,36.892517],[166.5784,36.892517],[166.5784,36.89252],[166.6874,36.9074],[166.76013,36.917837],[166.76013,36.917837],[166.7601,36.91784],[166.8898,36.934083],[166.8898,36.934083],[166.8898,36.93408],[167.0422,36.9532],[167.18685,36.973117],[167.18685,36.973117],[167.1869,36.97312],[167.34936,36.9946],[167.34936,36.9946],[167.3494,36.9946],[167.3906,36.99952],[167.50376,37.012833],[167.50376,37.012833],[167.5038,37.01283],[167.61893,37.028133],[167.61893,37.028133],[167.6189,37.02813],[167.808,37.053483],[167.808,37.053483],[167.808,37.05348],[168.02091,37.08385],[168.02091,37.08385],[168.0209,37.08385],[168.19653,37.1046],[168.19653,37.1046],[168.1965,37.1046],[168.2366,37.10909],[168.33407,37.12118],[168.33407,37.12118],[168.3341,37.12118],[168.4405,37.13773],[168.4858,37.14443],[168.65913,37.1711],[168.65913,37.1711],[168.6591,37.1711],[168.7123,37.17803],[168.7283,37.1799],[168.85771,37.194733],[168.85771,37.194733],[168.8577,37.19473],[169.0562,37.2214],[169.0562,37.2214],[169.0562,37.2214],[169.1232,37.22893],[169.26915,37.246567],[169.26915,37.246567],[169.2691,37.24657],[169.2817,37.2485],[169.43588,37.268683],[169.43588,37.268683],[169.4359,37.26868],[169.58579,37.2881],[169.58579,37.2881],[169.5858,37.2881],[169.619,37.2923],[169.6894,37.30195],[169.7118,37.30502],[169.76984,37.312933],[169.76984,37.312933],[169.7698,37.31293],[169.9297,37.33377],[170.09477,37.355867],[170.09477,37.355867],[170.0948,37.35587],[170.23739,37.374717],[170.23739,37.374717],[170.2374,37.37472],[170.2646,37.3778],[170.43869,37.398567],[170.43869,37.398567],[170.4387,37.39857],[170.61189,37.4253],[170.61189,37.4253],[170.6119,37.4253],[170.6493,37.43072],[170.75355,37.4446],[170.75355,37.4446],[170.7535,37.4446],[171.08592,37.486183],[171.08592,37.486183],[171.0859,37.48618],[171.22313,37.50565],[171.22313,37.50565],[171.2231,37.50565],[171.38405,37.525167],[171.38405,37.525167],[171.384,37.52517],[171.56819,37.5514],[171.56819,37.5514],[171.5682,37.5514],[171.72905,37.5699],[171.72905,37.5699],[171.729,37.5699],[171.87865,37.590367],[171.87865,37.590367],[171.8786,37.59037],[172.07359,37.616933],[172.07359,37.616933],[172.0736,37.61693],[172.2045,37.63382],[172.25981,37.64095],[172.25981,37.64095],[172.2598,37.64095],[172.46753,37.667817],[172.46753,37.667817],[172.4675,37.66782],[172.66264,37.69525],[172.66264,37.69525],[172.6626,37.69525],[172.7547,37.70775],[172.89117,37.725767],[172.89117,37.725767],[172.8912,37.72577],[173.09997,37.75545],[173.09997,37.75545],[173.1,37.75545],[173.29043,37.776717],[173.29043,37.776717],[173.2904,37.77672],[173.3382,37.780967],[173.3382,37.780967],[173.3382,37.78097],[173.52789,37.800267],[173.52789,37.800267],[173.5279,37.80027],[173.6929,37.82333],[173.75712,37.833183],[173.75712,37.833183],[173.7571,37.83318],[173.8735,37.85137],[173.94393,37.859347],[173.94393,37.859347],[173.9439,37.85935],[174.0107,37.86806],[174.16752,37.889433],[174.16752,37.889433],[174.1675,37.88943],[174.38459,37.923633],[174.38459,37.923633],[174.3846,37.92363],[174.503,37.9431],[174.503,37.9431],[174.503,37.9431],[174.5887,37.95785],[174.66776,37.97065],[174.66776,37.97065],[174.6678,37.97065],[174.6888,37.97417],[174.7047,37.97637],[174.8374,37.99512],[174.896,38.004533],[174.896,38.004533],[174.896,38.00453],[175.0011,38.02151],[175.10273,38.038763],[175.10273,38.038763],[175.1027,38.03876],[175.2688,38.06715],[175.2688,38.06715],[175.2688,38.06715],[175.335,38.07855],[175.47016,38.1036],[175.47016,38.1036],[175.4702,38.1036],[175.4998,38.10909],[175.67103,38.139733],[175.67103,38.139733],[175.85567,38.1718],[175.85567,38.1718],[175.8557,38.1718],[175.9148,38.1819],[176.0167,38.20235],[176.23919,38.252633],[176.23919,38.252633],[176.2392,38.25263],[176.47475,38.298267],[176.47475,38.298267],[176.4747,38.29827],[176.5215,38.3057],[176.70975,38.338933],[176.70975,38.338933],[176.7097,38.33893],[176.86283,38.370783],[176.86283,38.370783],[176.8628,38.37078],[177.03147,38.40383],[177.03147,38.40383],[177.0315,38.40383],[177.21575,38.4434],[177.21575,38.4434],[177.2157,38.4434],[177.391,38.4785],[177.45799,38.492283],[177.45799,38.492283],[177.458,38.49228],[177.62901,38.529],[177.62901,38.529],[177.629,38.529],[177.8012,38.562],[177.84537,38.57085],[177.84537,38.57085],[177.8454,38.57085],[177.9791,38.5986],[178.07611,38.619183],[178.07611,38.619183],[178.1387,38.6325],[178.1655,38.63797],[178.24757,38.653483],[178.24757,38.653483],[178.2476,38.65348],[178.3165,38.66592],[178.3754,38.67725],[178.3897,38.67995],[178.43316,38.688837],[178.43316,38.688837],[178.4332,38.68884],[178.4913,38.70013],[178.544,38.71135],[178.61753,38.7258],[178.61753,38.7258],[178.6175,38.7258],[178.6688,38.73527],[178.83753,38.768167],[178.83753,38.768167],[178.8375,38.76817],[178.9598,38.79298],[179.13772,38.83115],[179.13772,38.83115],[179.1377,38.83115],[179.33275,38.87095],[179.33275,38.87095],[179.3771,38.88037],[179.49052,38.904983],[179.49052,38.904983],[179.4905,38.90498],[179.67388,38.941433],[179.67388,38.941433],[179.6739,38.94143],[-179.98636,39.001633],[-179.98636,39.001633],[-179.9864,39.00163],[-179.79968,39.035783],[-179.79968,39.035783],[-179.7997,39.03578],[-179.7668,39.04092],[-179.76315,39.04155],[-179.76315,39.04155],[-179.7427,39.04455],[-179.43821,39.0873],[-179.43821,39.0873],[-179.4382,39.0873],[-179.28389,39.111697],[-179.28389,39.111697],[-179.2839,39.1117],[-179.10007,39.140067],[-179.10007,39.140067],[-179.1001,39.14007],[-178.8736,39.175267],[-178.8736,39.175267],[-178.8736,39.17527],[-178.65565,39.208183],[-178.65565,39.208183],[-178.6557,39.20818],[-178.44932,39.240383],[-178.44932,39.240383],[-178.4493,39.24038],[-178.23825,39.2738],[-178.23825,39.2738],[-178.2383,39.2738],[-178.13105,39.289517],[-178.13105,39.289517],[-178.1311,39.28952],[-177.9811,39.31088],[-177.75083,39.341083],[-177.75083,39.341083],[-177.7508,39.34108],[-177.5904,39.36438],[-177.55936,39.369217],[-177.55936,39.369217],[-177.4988,39.37825],[-177.33092,39.40475],[-177.33092,39.40475],[-177.3309,39.40475],[-177.1426,39.4351],[-177.1426,39.4351],[-177.1426,39.4351],[-177.0935,39.44337],[-176.94107,39.470663],[-176.94107,39.470663],[-176.9411,39.47066],[-176.9109,39.47673],[-176.8566,39.48577],[-176.78099,39.498483],[-176.78099,39.498483],[-176.781,39.49848],[-176.6833,39.51232],[-176.51824,39.533163],[-176.51824,39.533163],[-176.5182,39.53316],[-176.4598,39.54012],[-176.34793,39.55635],[-176.34793,39.55635],[-176.2965,39.56418],[-176.18635,39.579833],[-176.18635,39.579833],[-176.1863,39.57983],[-176.1363,39.5873],[-176.04247,39.602633],[-176.04247,39.602633],[-176.0425,39.60263],[-175.9748,39.61341],[-175.8801,39.62955],[-175.86296,39.632367],[-175.86296,39.632367],[-175.863,39.63237],[-175.81,39.64125],[-175.7316,39.6542],[-175.68733,39.6615],[-175.68733,39.6615],[-175.6841,39.6619],[-175.515,39.69048],[-175.30707,39.722033],[-175.30707,39.722033],[-175.3071,39.72203],[-175.2421,39.73175],[-175.10492,39.75085],[-175.10492,39.75085],[-175.1049,39.75085],[-175.043,39.76102],[-174.96479,39.771333],[-174.96479,39.771333],[-174.9648,39.77133],[-174.8126,39.78585],[-174.74676,39.79225],[-174.74676,39.79225],[-174.7468,39.79225],[-174.6944,39.79723],[-174.54449,39.8137],[-174.54449,39.8137],[-174.5445,39.8137],[-174.4952,39.81992],[-174.32521,39.8406],[-174.32521,39.8406],[-174.3252,39.8406],[-174.2707,39.84647],[-174.12219,39.86145],[-174.12219,39.86145],[-174.1222,39.86145],[-174.06196,39.86902],[-174.06196,39.86902],[-174.062,39.86902],[-173.9997,39.87598],[-173.85581,39.892167],[-173.85581,39.892167],[-173.8558,39.89217],[-173.7951,39.89853],[-173.709,39.907117],[-173.709,39.907117],[-173.709,39.90712],[-173.48879,39.92965],[-173.48879,39.92965],[-173.4888,39.92965],[-173.3748,39.94203],[-173.3573,39.944],[-173.32947,39.947133],[-173.32947,39.947133],[-173.3295,39.94713],[-173.16833,39.964683],[-173.16833,39.964683],[-173.1683,39.96468],[-173.0779,39.97477],[-173.0196,39.98125],[-172.87381,39.99655],[-172.87381,39.99655],[-172.8738,39.99655],[-172.8554,39.99873],[-172.7914,40.0065],[-172.75361,40.011117],[-172.75361,40.011117],[-172.7536,40.01112],[-172.58781,40.031933],[-172.58781,40.031933],[-172.5309,40.0389],[-172.42811,40.0498],[-172.42811,40.0498],[-172.3827,40.0538],[-172.2696,40.06458],[-172.20419,40.0709],[-172.20419,40.0709],[-172.2042,40.0709],[-172.0921,40.08127],[-172.05265,40.084683],[-172.05265,40.084683],[-172.0527,40.08468],[-171.9438,40.09413],[-171.9215,40.09618],[-171.77849,40.112117],[-171.77849,40.112117],[-171.7785,40.11212],[-171.7261,40.11825],[-171.62876,40.129883],[-171.62876,40.129883],[-171.6288,40.12988],[-171.47313,40.147733],[-171.47313,40.147733],[-171.4731,40.14773],[-171.31639,40.165783],[-171.31639,40.165783],[-171.3164,40.16578],[-171.166,40.18153],[-171.01173,40.1977],[-171.01173,40.1977],[-171.0117,40.1977],[-170.85693,40.213067],[-170.85693,40.213067],[-170.8569,40.21307],[-170.8355,40.21589],[-170.54336,40.2488],[-170.54336,40.2488],[-170.5434,40.2488],[-170.37679,40.266533],[-170.37679,40.266533],[-170.3768,40.26653],[-170.328,40.2716],[-170.09241,40.297233],[-170.09241,40.297233],[-169.95163,40.311767],[-169.95163,40.311767],[-169.8848,40.3149],[-169.8848,40.3149],[-169.67913,40.326867],[-169.67913,40.326867],[-169.6343,40.32955],[-169.47656,40.3396],[-169.47656,40.3396],[-169.4766,40.3396],[-169.34073,40.347283],[-169.34073,40.347283],[-169.2865,40.35032],[-169.1965,40.3562],[-169.06163,40.36365],[-169.06163,40.36365],[-169.0616,40.36365],[-168.97996,40.369367],[-168.97996,40.369367],[-168.98,40.36937],[-168.9309,40.37325],[-168.8175,40.38163],[-168.72276,40.3879],[-168.72276,40.3879],[-168.7228,40.3879],[-168.6681,40.39202],[-168.5716,40.39878],[-168.51479,40.40365],[-168.51479,40.40365],[-168.5035,40.4046],[-168.4414,40.40857],[-168.41883,40.410817],[-168.41883,40.410817],[-168.4188,40.41082],[-168.24588,40.420917],[-168.24588,40.420917],[-168.1922,40.4219],[-168.0998,40.42428],[-167.94941,40.436517],[-167.94941,40.436517],[-167.9188,40.4397],[-167.8886,40.44168],[-167.88063,40.442067],[-167.88063,40.442067],[-167.788,40.44775],[-167.7145,40.45233],[-167.61433,40.459117],[-167.61433,40.459117],[-167.6143,40.45912],[-167.5586,40.45668],[-167.48292,40.456833],[-167.48292,40.456833],[-167.4829,40.45683],[-167.4709,40.457],[-167.4081,40.46297],[-167.3561,40.46768],[-167.3346,40.469833],[-167.3346,40.469833],[-167.3346,40.46983],[-167.2706,40.47575],[-167.1857,40.48402],[-167.14675,40.488],[-167.14675,40.488],[-167.1467,40.488],[-167.1076,40.49255],[-167.0224,40.4988],[-166.95393,40.502],[-166.95393,40.502],[-166.9539,40.502],[-166.79473,40.5107],[-166.79473,40.5107],[-166.7487,40.51437],[-166.5796,40.522867],[-166.5796,40.522867],[-166.5796,40.52287],[-166.532,40.5265],[-166.38285,40.537883],[-166.38285,40.537883],[-166.334,40.54153],[-166.19529,40.54975],[-166.19529,40.54975],[-166.1953,40.54975],[-166.1241,40.553],[-166.1077,40.55405],[-165.95299,40.564717],[-165.95299,40.564717],[-165.953,40.56472],[-165.9172,40.56715],[-165.9172,40.56715],[-165.9172,40.56715],[-165.7577,40.57747],[-165.71068,40.580983],[-165.71068,40.580983],[-165.7107,40.58098],[-165.605,40.58778],[-165.56673,40.589733],[-165.56673,40.589733],[-165.36996,40.601517],[-165.36996,40.601517],[-165.14965,40.61615],[-165.14965,40.61615],[-165.0852,40.621],[-164.99877,40.62725],[-164.99877,40.62725],[-164.82768,40.629417],[-164.82768,40.629417],[-164.8277,40.62942],[-164.694,40.63105],[-164.60268,40.635233],[-164.60268,40.635233],[-164.6027,40.63523],[-164.35976,40.646167],[-164.35976,40.646167],[-164.3598,40.64617],[-164.27895,40.6459],[-164.27895,40.6459],[-164.2789,40.6459],[-164.2107,40.64547],[-164.10949,40.647167],[-164.10949,40.647167],[-164.1095,40.64717],[-164.0598,40.64865],[-163.94089,40.649717],[-163.94089,40.649717],[-163.9409,40.64972],[-163.9038,40.65014],[-163.7618,40.6529],[-163.7618,40.6529],[-163.7361,40.65343],[-163.6241,40.65403],[-163.56073,40.655433],[-163.56073,40.655433],[-163.5607,40.65543],[-163.4511,40.65508],[-163.3968,40.65405],[-163.29548,40.656833],[-163.29548,40.656833],[-163.2955,40.65683],[-163.11961,40.66345],[-163.11961,40.66345],[-163.1196,40.66345],[-163.0259,40.66455],[-162.9634,40.66545],[-162.9634,40.66545],[-162.9634,40.66545],[-162.82612,40.668767],[-162.82612,40.668767],[-162.8261,40.66877],[-162.7417,40.67065],[-162.7252,40.67137],[-162.7128,40.67085],[-162.6975,40.67137],[-162.6763,40.67185],[-162.6587,40.67263],[-162.47105,40.6766],[-162.47105,40.6766],[-162.4711,40.6766],[-162.31636,40.679797],[-162.31636,40.679797],[-162.3164,40.6798],[-162.306,40.68008],[-162.15673,40.682083],[-162.15673,40.682083],[-162.1567,40.68208],[-161.94013,40.686233],[-161.94013,40.686233],[-161.9401,40.68623],[-161.69003,40.691667],[-161.69003,40.691667],[-161.69,40.69167],[-161.6566,40.69195],[-161.5287,40.69442],[-161.46912,40.695883],[-161.46912,40.695883],[-161.4691,40.69588],[-161.26469,40.6991],[-161.26469,40.6991],[-161.2647,40.6991],[-161.1847,40.70158],[-161.05763,40.7047],[-161.05763,40.7047],[-161.0576,40.7047],[-161.0001,40.70609],[-160.84061,40.709533],[-160.84061,40.709533],[-160.8406,40.70953],[-160.68155,40.7124],[-160.68155,40.7124],[-160.6815,40.7124],[-160.49548,40.7182],[-160.49548,40.7182],[-160.4955,40.7182],[-160.4024,40.72107],[-160.35243,40.722683],[-160.35243,40.722683],[-160.3524,40.72268],[-160.18593,40.7263],[-160.18593,40.7263],[-160.1859,40.7263],[-160.09,40.7276],[-160.0442,40.72905],[-159.97893,40.728283],[-159.97893,40.728283],[-159.9789,40.72828],[-159.8561,40.72488],[-159.77047,40.723917],[-159.77047,40.723917],[-159.7705,40.72392],[-159.6998,40.72167],[-159.60076,40.7179],[-159.60076,40.7179],[-159.6008,40.7179],[-159.5432,40.7144],[-159.436,40.71215],[-159.39927,40.711617],[-159.39927,40.711617],[-159.3993,40.71162],[-159.3223,40.71045],[-159.2969,40.70984],[-159.2719,40.70958],[-159.20809,40.7088],[-159.20809,40.7088],[-159.2081,40.7088],[-159.1842,40.70862],[-159.1086,40.70617],[-159.053,40.7044],[-158.92813,40.699917],[-158.92813,40.699917],[-158.9281,40.69992],[-158.8921,40.69918],[-158.85495,40.698367],[-158.85495,40.698367],[-158.8549,40.69837],[-158.8436,40.6983],[-158.7802,40.69775],[-158.7129,40.69667],[-158.6846,40.6966],[-158.55715,40.6955],[-158.55715,40.6955],[-158.5571,40.6955],[-158.41427,40.69095],[-158.41427,40.69095],[-158.4143,40.69095],[-158.3047,40.6872],[-158.22511,40.684733],[-158.22511,40.684733],[-158.2251,40.68473],[-158.1888,40.68387],[-157.98089,40.67967],[-157.98089,40.67967],[-157.9809,40.67967],[-157.9468,40.67892],[-157.74349,40.676103],[-157.74349,40.676103],[-157.7435,40.6761],[-157.59816,40.670167],[-157.59816,40.670167],[-157.5982,40.67017],[-157.546,40.66947],[-157.36436,40.6655],[-157.36436,40.6655],[-157.30999,40.664417],[-157.30999,40.664417],[-157.31,40.66442],[-157.0908,40.636453],[-157.0908,40.636453],[-157.0908,40.63645],[-157.002,40.63785],[-156.9565,40.63945],[-156.7838,40.64475],[-156.7838,40.64475],[-156.7838,40.64475],[-156.69372,40.6269],[-156.69372,40.6269],[-156.6528,40.62553],[-156.48648,40.630933],[-156.48648,40.630933],[-156.4865,40.63093],[-156.4299,40.63143],[-156.31065,40.630267],[-156.31065,40.630267],[-156.3107,40.63027],[-156.1966,40.62957],[-156.15375,40.62995],[-156.15375,40.62995],[-156.1537,40.62995],[-155.993,40.631113],[-155.993,40.631113],[-155.993,40.63111],[-155.8249,40.63043],[-155.72013,40.62875],[-155.72013,40.62875],[-155.6535,40.62691],[-155.4914,40.62175],[-155.4914,40.62175],[-155.4914,40.62175],[-155.33821,40.620287],[-155.33821,40.620287],[-155.3382,40.62029],[-155.22999,40.616883],[-155.22999,40.616883],[-155.23,40.61688],[-155.1508,40.61397],[-155.0646,40.61061],[-155.00455,40.60815],[-155.00455,40.60815],[-155.0045,40.60815],[-154.8882,40.60262],[-154.72889,40.591837],[-154.72889,40.591837],[-154.7289,40.59184],[-154.66519,40.588867],[-154.66519,40.588867],[-154.6652,40.58887],[-154.5277,40.58113],[-154.5118,40.58028],[-154.4014,40.573417],[-154.4014,40.573417],[-154.4014,40.57342],[-154.3407,40.56958],[-154.22372,40.562383],[-154.22372,40.562383],[-154.2237,40.56238],[-154.1649,40.55872],[-154.06212,40.552867],[-154.06212,40.552867],[-154.0621,40.55287],[-153.9845,40.5487],[-153.87181,40.54065],[-153.87181,40.54065],[-153.8718,40.54065],[-153.7113,40.52688],[-153.54103,40.514063],[-153.54103,40.514063],[-153.541,40.51406],[-153.37247,40.501833],[-153.37247,40.501833],[-153.3725,40.50183],[-153.3194,40.4986],[-153.31273,40.498133],[-153.31273,40.498133],[-153.3062,40.49768],[-153.2934,40.4968],[-153.2687,40.49515],[-153.2044,40.491],[-152.88161,40.470467],[-152.88161,40.470467],[-152.8816,40.47047],[-152.71823,40.4595],[-152.71823,40.4595],[-152.6689,40.45653],[-152.50221,40.446883],[-152.50221,40.446883],[-152.5022,40.44688],[-152.3397,40.43363],[-152.30136,40.43045],[-152.30136,40.43045],[-152.3014,40.43045],[-152.2205,40.42475],[-152.1448,40.42043],[-152.06605,40.41548],[-152.06605,40.41548],[-152.0141,40.41233],[-151.9688,40.40897],[-151.82208,40.398667],[-151.82208,40.398667],[-151.8221,40.39867],[-151.7891,40.39632],[-151.65737,40.387517],[-151.65737,40.387517],[-151.6574,40.38752],[-151.5655,40.38162],[-151.49375,40.3773],[-151.49375,40.3773],[-151.4937,40.3773],[-151.4595,40.37515],[-151.32675,40.366683],[-151.32675,40.366683],[-151.3268,40.36668],[-151.15719,40.3554],[-151.15719,40.3554],[-151.1572,40.3554],[-151.1385,40.35425],[-150.9968,40.34585],[-150.91175,40.34075],[-150.91175,40.34075],[-150.9117,40.34075],[-150.8758,40.33853],[-150.8385,40.33562],[-150.804,40.33355],[-150.74959,40.329783],[-150.74959,40.329783],[-150.7496,40.32978],[-150.6927,40.32575],[-150.668,40.32367],[-150.54293,40.313533],[-150.54293,40.313533],[-150.4989,40.31003],[-150.4806,40.30858],[-150.4327,40.30545],[-150.39308,40.303467],[-150.39308,40.303467],[-150.343,40.30117],[-150.2545,40.297],[-150.09725,40.287217],[-150.09725,40.287217],[-150.0219,40.28128],[-150.00599,40.2799],[-150.00599,40.2799],[-150.006,40.2799],[-149.8847,40.26765],[-149.80997,40.259317],[-149.80997,40.259317],[-149.7675,40.25468],[-149.7316,40.25067],[-149.6761,40.24428],[-149.54741,40.230383],[-149.54741,40.230383],[-149.5474,40.23038],[-149.511,40.22665],[-149.4743,40.2228],[-149.33719,40.205883],[-149.33719,40.205883],[-149.3372,40.20588],[-149.3222,40.20397],[-149.21181,40.190783],[-149.21181,40.190783],[-149.1443,40.18223],[-149.0867,40.1754],[-149.0573,40.1724],[-148.97009,40.163433],[-148.97009,40.163433],[-148.9701,40.16343],[-148.8661,40.15177],[-148.63263,40.1274],[-148.63263,40.1274],[-148.6326,40.1274],[-148.5939,40.12298],[-148.4491,40.10743],[-148.39395,40.101883],[-148.39395,40.101883],[-148.394,40.10188],[-148.22153,40.083333],[-148.22153,40.083333],[-148.2215,40.08333],[-148.1759,40.07815],[-147.99172,40.056633],[-147.99172,40.056633],[-147.9494,40.0517],[-147.916,40.04785],[-147.8723,40.04303],[-147.74496,40.030517],[-147.74496,40.030517],[-147.745,40.03052],[-147.6972,40.02545],[-147.57792,40.011367],[-147.57792,40.011367],[-147.5296,40.00543],[-147.4798,39.99938],[-147.44069,39.99505],[-147.44069,39.99505],[-147.4407,39.99505],[-147.3623,39.98655],[-147.3264,39.98273],[-147.2862,39.97853],[-147.24047,39.973617],[-147.24047,39.973617],[-147.2405,39.97362],[-147.1996,39.96918],[-147.1823,39.96729],[-147.1468,39.96353],[-147.0589,39.95442],[-146.97812,39.945933],[-146.97812,39.945933],[-146.9781,39.94593],[-146.83313,39.9305],[-146.83313,39.9305],[-146.8331,39.9305],[-146.6543,39.91013],[-146.53483,39.896467],[-146.53483,39.896467],[-146.5348,39.89647],[-146.474,39.88937],[-146.32048,39.871167],[-146.32048,39.871167],[-146.3205,39.87117],[-146.2858,39.86723],[-146.2622,39.86438],[-146.14491,39.851667],[-146.14491,39.851667],[-146.1449,39.85167],[-146.01216,39.83592],[-146.01216,39.83592],[-145.9697,39.83187],[-145.9315,39.82802],[-145.8118,39.815717],[-145.8118,39.815717],[-145.8118,39.81572],[-145.7784,39.81207],[-145.6427,39.79708],[-145.59608,39.79155],[-145.59608,39.79155],[-145.5961,39.79155],[-145.4841,39.77848],[-145.4423,39.77353],[-145.22155,39.747883],[-145.22155,39.747883],[-145.2215,39.74788],[-145.1221,39.73573],[-145.0859,39.73127],[-144.95723,39.715983],[-144.95723,39.715983],[-144.9559,39.7158],[-144.9246,39.71133],[-144.78369,39.690767],[-144.78369,39.690767],[-144.7428,39.68493],[-144.7055,39.67983],[-144.61712,39.66705],[-144.61712,39.66705],[-144.6171,39.66705],[-144.5337,39.6545],[-144.2674,39.6096],[-144.2674,39.6096],[-144.2674,39.6096],[-144.02088,39.572467],[-144.02088,39.572467],[-144.0209,39.57247],[-143.82108,39.5421],[-143.82108,39.5421],[-143.8211,39.5421],[-143.60889,39.508633],[-143.60889,39.508633],[-143.6089,39.50863],[-143.5504,39.49935],[-143.36425,39.47025],[-143.36425,39.47025],[-143.3643,39.47025],[-143.3405,39.46652],[-143.21801,39.4477],[-143.21801,39.4477],[-143.218,39.4477],[-143.132,39.43433],[-143.06532,39.42405],[-143.06532,39.42405],[-143.0314,39.4188],[-142.9092,39.39928],[-142.86279,39.3922],[-142.86279,39.3922],[-142.8628,39.3922],[-142.6967,39.36595],[-142.67043,39.362013],[-142.67043,39.362013],[-142.6704,39.36201],[-142.5203,39.3394],[-142.46205,39.3307],[-142.46205,39.3307],[-142.4621,39.3307],[-142.3535,39.31432],[-142.24272,39.296033],[-142.24272,39.296033],[-142.2427,39.29603],[-142.1875,39.28665],[-142.1537,39.28083],[-142.03015,39.260083],[-142.03015,39.260083],[-142.0302,39.26008],[-141.9961,39.25478],[-141.86701,39.23595],[-141.86701,39.23595],[-141.867,39.23595],[-141.8322,39.23038],[-141.7992,39.22513],[-141.7616,39.21895],[-141.726,39.21321],[-141.67861,39.205483],[-141.67861,39.205483],[-141.6786,39.20548],[-141.6113,39.19501],[-141.5662,39.18835],[-141.5163,39.18112],[-141.37627,39.16015],[-141.37627,39.16015],[-141.3763,39.16015],[-141.3283,39.15227],[-141.19465,39.130663],[-141.19465,39.130663],[-141.1947,39.13066],[-141.1718,39.12695],[-141.1238,39.11912],[-141.04895,39.106583],[-141.04895,39.106583],[-141.049,39.10658],[-141.0162,39.10103],[-140.9713,39.09343],[-140.9099,39.08297],[-140.8742,39.076887],[-140.8742,39.076887],[-140.8742,39.07689],[-140.8412,39.0711],[-140.7211,39.0498],[-140.68345,39.043133],[-140.68345,39.043133],[-140.6835,39.04313],[-140.6532,39.03772],[-140.6283,39.03328],[-140.5549,39.02002],[-140.518,39.01367],[-140.47164,39.0065],[-140.47164,39.0065],[-140.4716,39.0065],[-140.4499,39.00318],[-140.3917,38.99483],[-140.3753,38.99242],[-140.3362,38.98722],[-140.2226,38.972167],[-140.2226,38.972167],[-140.2226,38.97217],[-140.1666,38.96467],[-140.1265,38.95905],[-140.02839,38.944247],[-140.02839,38.944247],[-140.0284,38.94425],[-139.9945,38.9385],[-139.9606,38.9327],[-139.9366,38.92827],[-139.87705,38.916483],[-139.87705,38.916483],[-139.8227,38.90562],[-139.76,38.89283],[-139.71156,38.882983],[-139.71156,38.882983],[-139.7116,38.88298],[-139.49729,38.841983],[-139.49729,38.841983],[-139.4973,38.84198],[-139.29861,38.8012],[-139.29861,38.8012],[-139.2986,38.8012],[-139.09133,38.75945],[-139.09133,38.75945],[-139.0913,38.75945],[-138.93788,38.729017],[-138.93788,38.729017],[-138.9379,38.72902],[-138.853,38.7112],[-138.7985,38.69978],[-138.7777,38.69535],[-138.74045,38.687833],[-138.74045,38.687833],[-138.7404,38.68783],[-138.6239,38.66477],[-138.5672,38.6542],[-138.45703,38.631667],[-138.45703,38.631667],[-138.4198,38.62375],[-138.35021,38.6091],[-138.35021,38.6091],[-138.3502,38.6091],[-138.3161,38.60232],[-138.2523,38.5899],[-138.2169,38.58308],[-138.13573,38.567583],[-138.13573,38.567583],[-138.1357,38.56758],[-138.0753,38.55673],[-137.89889,38.52535],[-137.89889,38.52535],[-137.8989,38.52535],[-137.8755,38.521],[-137.7677,38.49775],[-137.71939,38.487217],[-137.71939,38.487217],[-137.7194,38.48722],[-137.6647,38.4756],[-137.6267,38.46775],[-137.5693,38.45609],[-137.52396,38.446483],[-137.52396,38.446483],[-137.524,38.44648],[-137.4216,38.42527],[-137.3685,38.41428],[-137.25836,38.390567],[-137.25836,38.390567],[-137.2584,38.39057],[-137.2058,38.37885],[-137.07836,38.350867],[-137.07836,38.350867],[-137.0784,38.35087],[-137.0278,38.34083],[-136.85953,38.30635],[-136.85953,38.30635],[-136.8595,38.30635],[-136.71275,38.278117],[-136.71275,38.278117],[-136.7128,38.27812],[-136.6642,38.26865],[-136.54673,38.245217],[-136.54673,38.245217],[-136.5467,38.24522],[-136.5039,38.23505],[-136.3736,38.20693],[-136.31783,38.19525],[-136.31783,38.19525],[-136.3178,38.19525],[-136.01905,38.134433],[-136.01905,38.134433],[-136.0191,38.13443],[-135.9867,38.12755],[-135.9706,38.12383],[-135.83735,38.097217],[-135.83735,38.097217],[-135.8373,38.09722],[-135.8027,38.09188],[-135.65815,38.06745],[-135.65815,38.06745],[-135.6581,38.06745],[-135.6201,38.06007],[-135.48656,38.0317],[-135.48656,38.0317],[-135.4866,38.0317],[-135.4471,38.02297],[-135.268,37.9856],[-135.268,37.9856],[-135.268,37.9856],[-135.2335,37.97817],[-135.10359,37.951483],[-135.10359,37.951483],[-135.1036,37.95148],[-134.9749,37.92216],[-134.66525,37.842967],[-134.66525,37.842967],[-134.6653,37.84297],[-134.6297,37.83425],[-134.47848,37.796383],[-134.47848,37.796383],[-134.4785,37.79638],[-134.4494,37.78902],[-134.23459,37.7355],[-134.23459,37.7355],[-134.2346,37.7355],[-134.08083,37.694417],[-134.08083,37.694417],[-134.0808,37.69442],[-134.0492,37.6865],[-133.78141,37.620583],[-133.78141,37.620583],[-133.7814,37.62058],[-133.7474,37.61183],[-133.7108,37.60278],[-133.5955,37.57555],[-133.56025,37.566267],[-133.56025,37.566267],[-133.5603,37.56627],[-133.39212,37.521317],[-133.39212,37.521317],[-133.3921,37.52132],[-133.3442,37.50877],[-133.3102,37.50002],[-133.2605,37.48725],[-133.2095,37.4742],[-133.15012,37.458697],[-133.15012,37.458697],[-133.1111,37.44847],[-133.0981,37.44512],[-133.0458,37.43257],[-133.0106,37.4237],[-132.89453,37.395967],[-132.89453,37.395967],[-132.8945,37.39597],[-132.8608,37.3877],[-132.74872,37.358033],[-132.74872,37.358033],[-132.7487,37.35803],[-132.6998,37.3452],[-132.6691,37.33775],[-132.54903,37.3097],[-132.54903,37.3097],[-132.549,37.3097],[-132.5089,37.29982],[-132.4543,37.2859],[-132.4102,37.27462],[-132.37367,37.26525],[-132.37367,37.26525],[-132.3737,37.26525],[-132.3336,37.25538],[-132.215,37.22255],[-132.18487,37.21485],[-132.18487,37.21485],[-132.1849,37.21485],[-132.0781,37.18837],[-132.0436,37.18002],[-132.00289,37.170067],[-132.00289,37.170067],[-132.0029,37.17007],[-131.8487,37.13182],[-131.7606,37.112817],[-131.7606,37.112817],[-131.7606,37.11282],[-131.7266,37.10497],[-131.6876,37.09553],[-131.59193,37.069683],[-131.59193,37.069683],[-131.5919,37.06968],[-131.5501,37.05815],[-131.5092,37.04847],[-131.37979,37.013367],[-131.37979,37.013367],[-131.3798,37.01337],[-131.3401,37.00218],[-131.3166,36.99595],[-131.2793,36.9859],[-131.19963,36.965633],[-131.19963,36.965633],[-131.1996,36.96563],[-131.1583,36.95547],[-131.0889,36.93998],[-131.0354,36.92752],[-131.011,36.92143],[-130.83549,36.878033],[-130.83549,36.878033],[-130.8355,36.87803],[-130.79559,36.867217],[-130.79559,36.867217],[-130.7956,36.86722],[-130.7809,36.8633],[-130.7023,36.84298],[-130.6444,36.82788],[-130.58392,36.811633],[-130.58392,36.811633],[-130.5839,36.81163],[-130.5274,36.79628],[-130.4722,36.7815],[-130.439,36.77248],[-130.3768,36.7564],[-130.3768,36.7564],[-130.3768,36.7564],[-130.3606,36.75253],[-130.2973,36.7361],[-130.13545,36.696967],[-130.13545,36.696967],[-130.1355,36.69697],[-130.0967,36.68645],[-129.92699,36.64145],[-129.92699,36.64145],[-129.927,36.64145],[-129.8669,36.62462],[-129.8199,36.61045],[-129.67563,36.568783],[-129.67563,36.568783],[-129.6756,36.56878],[-129.6033,36.54815],[-129.39443,36.486133],[-129.39443,36.486133],[-129.3944,36.48613],[-129.2689,36.44763],[-129.18353,36.4201],[-129.18353,36.4201],[-129.1835,36.4201],[-129.0989,36.39402],[-129.0654,36.38407],[-128.9754,36.357467],[-128.9754,36.357467],[-128.9754,36.35747],[-128.9281,36.34265],[-128.8723,36.32563],[-128.7626,36.29385],[-128.7626,36.29385],[-128.7626,36.29385],[-128.7187,36.28092],[-128.6973,36.27508],[-128.55533,36.234933],[-128.55533,36.234933],[-128.5553,36.23493],[-128.5309,36.22777],[-128.4806,36.21277],[-128.4461,36.20287],[-128.4232,36.19617],[-128.27187,36.15085],[-128.27187,36.15085],[-128.2719,36.15085],[-128.2375,36.14095],[-128.20013,36.129567],[-128.20013,36.129567],[-128.2001,36.12957],[-128.0797,36.09322],[-128.0416,36.08182],[-127.877,36.0336],[-127.877,36.0336],[-127.877,36.0336],[-127.74605,35.995683],[-127.74605,35.995683],[-127.7461,35.99568],[-127.7138,35.9862],[-127.56899,35.94165],[-127.56899,35.94165],[-127.569,35.94165],[-127.5356,35.93196],[-127.42599,35.8988],[-127.42599,35.8988],[-127.426,35.8988],[-127.3668,35.87982],[-127.23745,35.8389],[-127.23745,35.8389],[-127.2374,35.8389],[-127.08339,35.791867],[-127.08339,35.791867],[-127.0834,35.79187],[-127.0367,35.7774],[-126.9349,35.74563],[-126.89595,35.733417],[-126.89595,35.733417],[-126.896,35.73342],[-126.7813,35.69823],[-126.64033,35.655467],[-126.64033,35.655467],[-126.6403,35.65547],[-126.6044,35.6451],[-126.5146,35.619417],[-126.5146,35.619417],[-126.5146,35.61942],[-126.4604,35.60445],[-126.4257,35.59487],[-126.31147,35.562817],[-126.31147,35.562817],[-126.3115,35.56282],[-126.2815,35.55416],[-126.16788,35.52085],[-126.16788,35.52085],[-126.1679,35.52085],[-126.03576,35.488333],[-126.03576,35.488333],[-125.80885,35.441917],[-125.80885,35.441917],[-125.63927,35.406217],[-125.63927,35.406217],[-125.46645,35.370767],[-125.46645,35.370767],[-125.41579,35.360067],[-125.41579,35.360067],[-125.2464,35.325117],[-125.2464,35.325117],[-125.03821,35.282767],[-125.03821,35.282767],[-124.93148,35.259817],[-124.93148,35.259817],[-124.76987,35.226967],[-124.76987,35.226967],[-124.6615,35.20473],[-124.6128,35.19445],[-124.59636,35.190767],[-124.59636,35.190767],[-124.596,35.1907],[-124.5843,35.18823],[-124.5744,35.18598],[-124.5396,35.17832],[-124.5264,35.17528],[-124.4974,35.16895],[-124.4619,35.1613],[-124.4277,35.15422],[-124.4131,35.15078],[-124.3877,35.14533],[-124.38036,35.143967],[-124.38036,35.143967],[-124.3629,35.14027],[-124.3142,35.13111],[-124.268,35.12217],[-124.2251,35.11355],[-124.22403,35.11335],[-124.22403,35.11335],[-124.1606,35.09972],[-124.1523,35.09778],[-124.1061,35.0876],[-124.0751,35.08067],[-124.0495,35.075],[-124.0041,35.06497],[-124.00412,35.064967],[-124.00412,35.064967],[-123.9889,35.06152],[-123.9759,35.05848],[-123.9517,35.0534],[-123.95165,35.053397],[-123.95165,35.053397],[-123.9379,35.05062],[-123.9021,35.04322],[-123.8635,35.03583],[-123.8482,35.03277],[-123.82052,35.027383],[-123.82052,35.027383],[-123.8073,35.0246],[-123.787,35.02045],[-123.7726,35.0176],[-123.7576,35.01447],[-123.7455,35.01202],[-123.7339,35.00965],[-123.7158,35.00573],[-123.7005,35.00242],[-123.6863,34.99918],[-123.6735,34.99625],[-123.6625,34.99395],[-123.6399,34.98847],[-123.63621,34.987667],[-123.63621,34.987667],[-123.625,34.98498],[-123.6088,34.98112],[-123.5747,34.9727],[-123.5628,34.97005],[-123.5503,34.96725],[-123.5414,34.96548],[-123.5253,34.96202],[-123.5172,34.96035],[-123.5059,34.95773],[-123.50875,34.95838],[-123.50875,34.95838],[-123.4965,34.95578],[-123.4827,34.95275],[-123.4413,34.94537],[-123.4305,34.94368],[-123.4129,34.9408],[-123.4003,34.93902],[-123.385,34.93647],[-123.38307,34.936217],[-123.38307,34.936217],[-123.3704,34.93445],[-123.3543,34.93163],[-123.3382,34.92885],[-123.3095,34.92397],[-123.2978,34.92202],[-123.2804,34.91902],[-123.2633,34.91558],[-123.2474,34.9125],[-123.2287,34.90882],[-123.2171,34.90663],[-123.2025,34.90363],[-123.1896,34.9011],[-123.177,34.89863],[-123.17701,34.898633],[-123.17701,34.898633],[-123.1653,34.89632],[-123.1537,34.89392],[-123.1411,34.89137],[-123.1225,34.88772],[-123.0706,34.8778],[-123.0577,34.87517],[-123.05229,34.8741],[-123.05229,34.8741],[-123.043,34.87218],[-123.0276,34.86915],[-123.0075,34.8651],[-122.9936,34.86215],[-122.9843,34.86025],[-122.9723,34.8579],[-122.9591,34.85512],[-122.948,34.85273],[-122.9349,34.84995],[-122.9197,34.84667],[-122.9091,34.84428],[-122.892,34.8404],[-122.8874,34.839367],[-122.8874,34.839367],[-122.8816,34.83807],[-122.8709,34.83568],[-122.8538,34.83187],[-122.8412,34.82898],[-122.8296,34.8263],[-122.8169,34.82332],[-122.8045,34.82052],[-122.80452,34.82052],[-122.80452,34.82052],[-122.794,34.8182],[-122.7817,34.8152],[-122.7666,34.81185],[-122.7535,34.80878],[-122.7415,34.80618],[-122.7299,34.8035],[-122.7181,34.80087],[-122.707,34.79833],[-122.6954,34.79572],[-122.6835,34.79293],[-122.6733,34.7907],[-122.661,34.78787],[-122.65,34.78548],[-122.65301,34.786153],[-122.65301,34.786153],[-122.6402,34.78318],[-122.6279,34.78048],[-122.6156,34.77777],[-122.6068,34.77588],[-122.5979,34.77395],[-122.5888,34.77203],[-122.5795,34.77007],[-122.5663,34.76731],[-122.5555,34.76502],[-122.5447,34.76273],[-122.5351,34.76085],[-122.52912,34.759633],[-122.52912,34.759633],[-122.5216,34.75803],[-122.5076,34.75508],[-122.4986,34.75343],[-122.4873,34.75128],[-122.4762,34.74925],[-122.4667,34.74748],[-122.4575,34.74583],[-122.4464,34.74373],[-122.4343,34.74138],[-122.4217,34.73907],[-122.41595,34.737917],[-122.41595,34.737917],[-122.4105,34.73685],[-122.4005,34.73488],[-122.3919,34.73314],[-122.3817,34.73118],[-122.3651,34.72772],[-122.3517,34.72515],[-122.3408,34.72312],[-122.3308,34.72128],[-122.3213,34.71962],[-122.3087,34.71725],[-122.2965,34.71517],[-122.285,34.71265],[-122.28287,34.712267],[-122.28287,34.712267],[-122.2743,34.71053],[-122.2624,34.70795],[-122.249,34.70522],[-122.2363,34.70267],[-122.2261,34.70033],[-122.218,34.69852],[-122.2071,34.69618],[-122.1964,34.69378],[-122.1857,34.69135],[-122.1748,34.68908],[-122.1647,34.68683],[-122.1558,34.68487],[-122.15253,34.684117],[-122.15253,34.684117],[-122.145,34.68258],[-122.1368,34.68078],[-122.1287,34.67908],[-122.1187,34.67692],[-122.1093,34.67488],[-122.0981,34.67262],[-122.0875,34.67048],[-122.0757,34.66796],[-122.0628,34.66513],[-122.053,34.66323],[-122.0418,34.66087],[-122.04375,34.6613],[-122.04375,34.6613],[-122.0266,34.6578],[-122.0164,34.65567],[-122.0056,34.65335],[-121.9942,34.65097],[-121.9855,34.64908],[-121.974,34.6466],[-121.9633,34.64442],[-121.9506,34.64178],[-121.9412,34.63975],[-121.9321,34.63765],[-121.9215,34.63535],[-121.9121,34.63335],[-121.9022,34.63135],[-121.8917,34.62908],[-121.8804,34.62675],[-121.87523,34.6256],[-121.87523,34.6256],[-121.8691,34.62347],[-121.8602,34.6202],[-121.8519,34.61852],[-121.8387,34.61827],[-121.8229,34.6179],[-121.8127,34.61775],[-121.80948,34.617747],[-121.80948,34.617747],[-121.8037,34.61772],[-121.7915,34.61747],[-121.7798,34.61727],[-121.7701,34.61717],[-121.7618,34.617],[-121.7509,34.61678],[-121.7392,34.6165],[-121.729,34.6151],[-121.7188,34.61183],[-121.7077,34.60863],[-121.6976,34.60557],[-121.6855,34.60202],[-121.6719,34.59775],[-121.6633,34.59535],[-121.66203,34.594983],[-121.66203,34.594983],[-121.653,34.59225],[-121.6438,34.5896],[-121.6335,34.58655],[-121.6244,34.58387],[-121.6147,34.58105],[-121.6049,34.5781],[-121.5958,34.57537],[-121.5851,34.57255],[-121.5753,34.56987],[-121.5653,34.56708],[-121.5561,34.5645],[-121.5417,34.56047],[-121.5322,34.5582],[-121.5223,34.55568],[-121.5129,34.5533],[-121.503,34.55067],[-121.50025,34.549963],[-121.50025,34.549963],[-121.4941,34.54856],[-121.4837,34.54597],[-121.474,34.54368],[-121.4642,34.5413],[-121.4503,34.53785],[-121.4409,34.53555],[-121.4322,34.53345],[-121.4213,34.53095],[-121.4128,34.52907],[-121.40793,34.528017],[-121.4052,34.52742],[-121.3954,34.52533],[-121.3893,34.52419],[-121.3833,34.52308],[-121.3783,34.52218],[-121.3744,34.52163],[-121.3713,34.5211],[-121.3691,34.52047],[-121.36795,34.520017],[-121.3674,34.51977],[-121.3662,34.51912],[-121.3643,34.51797],[-121.3639,34.51757],[-121.3648,34.51745],[-121.3653,34.51768],[-121.3658,34.51808],[-121.3663,34.51848],[-121.3666,34.51898],[-121.3669,34.51954],[-121.3673,34.52013],[-121.3675,34.52075],[-121.3677,34.52137],[-121.3679,34.52283],[-121.3679,34.52365],[-121.3679,34.52447],[-121.36781,34.525333],[-121.3678,34.52533],[-121.3677,34.52625],[-121.3675,34.52723],[-121.3673,34.52823],[-121.367,34.52922],[-121.3666,34.53032],[-121.3662,34.5314],[-121.3657,34.5325],[-121.3653,34.53362],[-121.36481,34.534753],[-121.3643,34.53588],[-121.3631,34.53827],[-121.3617,34.54063],[-121.361,34.54175],[-121.3603,34.54292],[-121.3595,34.54412],[-121.3588,34.54525],[-121.3573,34.54758],[-121.3565,34.54877],[-121.3559,34.54998],[-121.3551,34.55125],[-121.3545,34.55257],[-121.3538,34.5539],[-121.3531,34.55528],[-121.3524,34.55672],[-121.3516,34.55807],[-121.3509,34.55938],[-121.3501,34.56075],[-121.3493,34.56217],[-121.3485,34.56362],[-121.3468,34.56638],[-121.3458,34.56785],[-121.3449,34.56922],[-121.3439,34.57062],[-121.3429,34.57205],[-121.3419,34.57347],[-121.3399,34.57613],[-121.3388,34.5775],[-121.3378,34.57887],[-121.3357,34.5815],[-121.3346,34.58282],[-121.3336,34.58417],[-121.3326,34.5855],[-121.3306,34.58825],[-121.3296,34.58953],[-121.3285,34.59083],[-121.3274,34.59215],[-121.3263,34.59353],[-121.3253,34.59487],[-121.3243,34.5963],[-121.3232,34.5977],[-121.3221,34.59903],[-121.321,34.60035],[-121.3199,34.60168],[-121.3187,34.60302],[-121.3175,34.60435],[-121.3163,34.60573],[-121.3152,34.60707],[-121.3141,34.60843],[-121.3129,34.60977],[-121.3105,34.61237],[-121.3081,34.61483],[-121.3056,34.61723],[-121.3043,34.61845],[-121.303,34.61965],[-121.3004,34.62195],[-121.2991,34.6231],[-121.2978,34.62423],[-121.2937,34.6278],[-121.291,34.63005],[-121.2897,34.63111],[-121.2883,34.63213],[-121.287,34.63307],[-121.2855,34.63408],[-121.2842,34.63503],[-121.2829,34.63588],[-121.2815,34.63682],[-121.2801,34.63773],[-121.2788,34.63868],[-121.2774,34.63962],[-121.2759,34.64057],[-121.2745,34.64147],[-121.2729,34.64231],[-121.2713,34.64305],[-121.2697,34.64392],[-121.2682,34.64482],[-121.2666,34.64575],[-121.2651,34.6467],[-121.2636,34.64768],[-121.2621,34.64872],[-121.2607,34.64977],[-121.2593,34.65085],[-121.2579,34.65199],[-121.2565,34.65312],[-121.2551,34.65418],[-121.2537,34.65515],[-121.2523,34.65612],[-121.2508,34.6571],[-121.2493,34.658],[-121.2479,34.65892],[-121.2463,34.6599],[-121.2448,34.66078],[-121.24328,34.661597],[-121.2433,34.6616],[-121.2418,34.66243],[-121.2387,34.66405],[-121.2356,34.66563],[-121.23405,34.6665],[-121.2341,34.6665],[-121.2325,34.66728],[-121.2309,34.66805],[-121.2293,34.66883],[-121.2277,34.6696],[-121.226,34.67045],[-121.2243,34.6712],[-121.2228,34.67185],[-121.2212,34.67245],[-121.2198,34.67307],[-121.2183,34.67375],[-121.217,34.67443],[-121.2156,34.67523],[-121.2142,34.67603],[-121.2129,34.67683],[-121.2115,34.67767],[-121.21013,34.67845],[-121.2101,34.67845],[-121.2088,34.67925],[-121.2074,34.68],[-121.2061,34.68072],[-121.2047,34.68143],[-121.2033,34.68207],[-121.2018,34.68268],[-121.2004,34.68328],[-121.1989,34.68388],[-121.1975,34.68443],[-121.1959,34.68495],[-121.1944,34.68543],[-121.1929,34.68592],[-121.1915,34.68637],[-121.19,34.68685],[-121.187,34.68772],[-121.1856,34.68813],[-121.1842,34.68862],[-121.1828,34.68913],[-121.1814,34.68963],[-121.1799,34.69002],[-121.1782,34.69028],[-121.1784,34.69148],[-121.1822,34.69243],[-121.1846,34.69123],[-121.1853,34.68828],[-121.183,34.6848],[-121.1787,34.6813],[-121.1708,34.67478],[-121.1645,34.66945],[-121.1583,34.66373],[-121.15792,34.6634],[-121.1521,34.65787],[-121.1458,34.65205],[-121.1357,34.64231],[-121.1274,34.63452],[-121.1197,34.62723],[-121.1132,34.62097],[-121.1064,34.61442],[-121.0987,34.60703],[-121.0919,34.60063],[-121.0844,34.5934],[-121.0776,34.58703],[-121.0701,34.5796],[-121.0628,34.5727],[-121.0522,34.56262],[-121.0454,34.55622],[-121.04132,34.552083],[-121.0384,34.54925],[-121.0316,34.54284],[-121.0253,34.53672],[-121.0151,34.52693],[-121.0083,34.52042],[-121.0012,34.51345],[-120.9915,34.5043],[-120.9839,34.4971],[-120.9771,34.49063],[-120.9703,34.48418],[-120.96805,34.482017],[-120.9597,34.47408],[-120.953,34.46792],[-120.9424,34.45802],[-120.9347,34.45077],[-120.9271,34.44363],[-120.9199,34.43699],[-120.9126,34.43027],[-120.9007,34.42215],[-120.891,34.41918],[-120.8811,34.41565],[-120.8718,34.41253],[-120.861,34.40938],[-120.8521,34.40707],[-120.8426,34.40468],[-120.8318,34.402],[-120.8212,34.39948],[-120.8121,34.39743],[-120.8027,34.39518],[-120.7883,34.39183],[-120.78689,34.391517],[-120.7782,34.3895],[-120.7631,34.38608],[-120.7521,34.3836],[-120.7413,34.38105],[-120.7302,34.37857],[-120.7193,34.37615],[-120.7096,34.37378],[-120.6993,34.37148],[-120.689,34.3688],[-120.6797,34.36638],[-120.6689,34.36372],[-120.6595,34.36137],[-120.656,34.360533],[-120.6453,34.35773],[-120.6345,34.35513],[-120.624,34.35272],[-120.6139,34.35025],[-120.6044,34.34807],[-120.5941,34.34578],[-120.5849,34.3437],[-120.5754,34.34143],[-120.5645,34.33883],[-120.554,34.33655],[-120.5407,34.33338],[-120.532,34.33145],[-120.5221,34.32908],[-120.5113,34.32673],[-120.5018,34.32432],[-120.4915,34.32195],[-120.4815,34.31962],[-120.4721,34.3174],[-120.4619,34.31498],[-120.4517,34.3127],[-120.4418,34.31017],[-120.43512,34.308667],[-120.4284,34.30702],[-120.4187,34.30445],[-120.4092,34.30225],[-120.3998,34.2999],[-120.3903,34.2977],[-120.38,34.29527],[-120.3706,34.29303],[-120.3606,34.29058],[-120.3509,34.28835],[-120.34216,34.28647],[-120.3408,34.28617],[-120.3273,34.28298],[-120.3186,34.28103],[-120.309,34.27892],[-120.299,34.27662],[-120.289,34.2745],[-120.2794,34.27227],[-120.2692,34.27],[-120.2595,34.26755],[-120.25685,34.266933],[-120.2483,34.2649],[-120.238,34.2625],[-120.2228,34.25893],[-120.2131,34.25665],[-120.2,34.2536],[-120.1902,34.2514],[-120.1799,34.249],[-120.1655,34.24585],[-120.1554,34.24358],[-120.15319,34.243083],[-120.1402,34.2403],[-120.129,34.23783],[-120.1192,34.23567],[-120.1098,34.23337],[-120.0943,34.22989],[-120.0847,34.22757],[-120.0744,34.2252],[-120.0646,34.22297],[-120.0541,34.22047],[-120.04649,34.218717],[-120.0443,34.21822],[-120.0339,34.2158],[-120.0203,34.21252],[-120.0107,34.21023],[-120.0005,34.20785],[-119.9883,34.20481],[-119.9787,34.20257],[-119.9678,34.19985],[-119.9568,34.19743],[-119.9466,34.19497],[-119.9365,34.19252],[-119.9221,34.18915],[-119.91385,34.187083],[-119.9125,34.18677],[-119.9035,34.18465],[-119.8934,34.18223],[-119.8835,34.17999],[-119.8739,34.17776],[-119.8642,34.17562],[-119.8539,34.1735],[-119.8393,34.17023],[-119.8291,34.16813],[-119.8135,34.16468],[-119.8035,34.1626],[-119.7915,34.16],[-119.7822,34.1581],[-119.7729,34.15595],[-119.7632,34.15395],[-119.7547,34.15213],[-119.7455,34.15003],[-119.7317,34.14695],[-119.7228,34.14488],[-119.7129,34.14273],[-119.70833,34.1416],[-119.7037,34.1405],[-119.6942,34.13837],[-119.6796,34.13488],[-119.6701,34.13272],[-119.6571,34.12953],[-119.6452,34.12677],[-119.6326,34.1238],[-119.6209,34.12097],[-119.613,34.11907],[-119.6055,34.11735],[-119.60195,34.116417],[-119.5993,34.11572],[-119.5918,34.11377],[-119.5805,34.11132],[-119.5731,34.11018],[-119.566,34.10875],[-119.5583,34.10683],[-119.5502,34.1048],[-119.5431,34.1031],[-119.5363,34.10153],[-119.53027,34.100033],[-119.5297,34.0999],[-119.5182,34.0972],[-119.5108,34.09537],[-119.5002,34.09282],[-119.4902,34.09033],[-119.4823,34.0885],[-119.4715,34.08602],[-119.46401,34.084283],[-119.4634,34.08413],[-119.456,34.08233],[-119.4477,34.0803],[-119.4394,34.07841],[-119.4316,34.07658],[-119.4234,34.0745],[-119.4145,34.07233],[-119.4055,34.07015],[-119.3967,34.06798],[-119.3849,34.0652],[-119.37945,34.063933],[-119.3777,34.06352],[-119.3689,34.06128],[-119.3597,34.05903],[-119.3519,34.05722],[-119.3443,34.05558],[-119.3364,34.0536],[-119.3285,34.05155],[-119.3195,34.04965],[-119.3115,34.04778],[-119.304,34.04595],[-119.2959,34.04438],[-119.2876,34.04207],[-119.28721,34.04195],[-119.2811,34.0403],[-119.2739,34.03833],[-119.266,34.03613],[-119.2585,34.03335],[-119.2517,34.03013],[-119.2453,34.02715],[-119.2389,34.02425],[-119.2322,34.02103],[-119.2229,34.01658],[-119.2158,34.0131],[-119.2075,34.00918],[-119.2016,34.00642],[-119.19932,34.005317],[-119.1948,34.0031],[-119.1847,33.99823],[-119.1779,33.99497],[-119.1717,33.99202],[-119.1643,33.98829],[-119.1577,33.98503],[-119.1501,33.98145],[-119.1435,33.97823],[-119.1365,33.97478],[-119.129,33.97098],[-119.1224,33.96778],[-119.1163,33.96497],[-119.1112,33.96233],[-119.1053,33.95933],[-119.0978,33.95573],[-119.0907,33.9524],[-119.0838,33.94883]]}}
{"type":"Feature","geometry":{"type":"LineString","coordinates":[[122.09069,29.9151],[122.18773,29.867633],[122.25972,29.7875],[122.34845,29.721583],[122.493,29.6701],[122.65372,29.66915],[122.84,29.709533],[123.03025,29.7461],[129.82529,30.583917],[129.8253,30.58392],[130.65719,30.78965],[130.6572,30.78965],[131.21468,30.99195],[131.2147,30.99195],[132.39317,31.32795],[132.3932,31.32795],[133.1034,31.520483],[133.1034,31.52048],[133.8234,31.718917],[133.8234,31.71892],[133.97724,31.76205],[133.9772,31.76205],[135.48371,32.178833],[135.4837,32.17883],[137.01652,32.58505],[137.0303,32.58867],[137.21531,32.638533],[137.2153,32.63853],[138.40549,32.969017],[138.4055,32.96902],[138.6057,33.02505],[138.79912,33.072217],[138.7991,33.07222],[138.99095,33.119383],[138.991,33.11938],[139.18855,33.173217],[139.1886,33.17322],[139.41125,33.237463],[139.4113,33.23746],[139.62628,33.303383],[139.6263,33.30338],[139.9474,33.38685],[139.9474,33.38685],[140.19487,33.43107],[140.1949,33.43107],[140.38172,33.4682],[140.3817,33.4682],[140.69087,33.542],[140.6909,33.542],[140.7643,33.55988],[141.16015,33.663517],[141.1601,33.66352],[141.35419,33.7147],[141.3542,33.7147],[141.69007,33.79255],[141.6901,33.79255],[141.88772,33.8411],[141.8877,33.8411],[142.07531,33.887383],[142.0753,33.88738],[142.60299,34.003967],[142.603,34.00397],[142.79301,34.03945],[142.793,34.03945],[142.8693,34.06485],[142.95475,34.093617],[142.9547,34.09362],[143.0856,34.13142],[143.12989,34.140733],[143.1299,34.14073],[143.3172,34.1841],[143.63545,34.243617],[143.6355,34.24362],[143.676,34.2526],[143.78613,34.278483],[144.01145,34.330733],[144.0115,34.33073],[144.1005,34.34877],[144.32128,34.392667],[144.3213,34.39267],[144.35008,34.398983],[144.3501,34.39898],[144.56035,34.44393],[144.5603,34.44393],[144.6959,34.47613],[144.78081,34.497137],[144.7808,34.49714],[145.19285,34.601083],[145.1929,34.60108],[145.29981,34.630917],[145.2998,34.63092],[145.48501,34.680083],[145.485,34.68008],[145.6524,34.7254],[145.6684,34.72973],[145.82709,34.767517],[145.8271,34.76752],[146.01465,34.808933],[146.0146,34.80893],[146.12533,34.832],[146.1253,34.832],[146.2086,34.84967],[146.37361,34.88525],[146.3736,34.88525],[146.3989,34.89065],[146.56727,34.928117],[146.5673,34.92812],[146.6761,34.95333],[146.76499,34.974],[146.765,34.974],[146.9408,35.01255],[147.29371,35.084167],[147.2937,35.08417],[147.312,35.08803],[147.49223,35.127863],[147.4922,35.12786],[147.6186,35.15545],[147.6186,35.15545],[147.6844,35.17013],[147.87811,35.211317],[147.8781,35.21132],[148.06385,35.251567],[148.0639,35.25157],[148.26139,35.296397],[148.2614,35.2964],[148.3221,35.3093],[148.3448,35.31435],[148.65381,35.386617],[148.6538,35.38662],[148.85925,35.440363],[148.8593,35.44036],[149.06984,35.501147],[149.0698,35.50115],[149.1466,35.52408],[149.29347,35.567213],[149.2935,35.56721],[149.4,35.59882],[149.49881,35.628],[149.4988,35.628],[149.69412,35.683317],[149.6941,35.68332],[149.97193,35.75335],[149.9719,35.75335],[150.27131,35.818433],[150.2713,35.81843],[150.54331,35.8797],[150.5433,35.8797],[150.6196,35.8999],[150.81293,35.941567],[150.8129,35.94157],[150.8812,35.954633],[150.8812,35.95463],[151.0624,35.9872],[151.0908,35.99272],[151.28451,36.028317],[151.2845,36.02832],[151.33671,36.039283],[151.3367,36.03928],[151.4721,36.06563],[151.65173,36.102833],[151.6517,36.10283],[151.81479,36.1385],[151.8148,36.1385],[151.8509,36.14783],[152.03784,36.199133],[152.0378,36.19913],[152.21205,36.237617],[152.2121,36.23762],[152.3955,36.2766],[152.54361,36.30545],[152.5436,36.30545],[152.5893,36.31622],[152.8084,36.3748],[152.8084,36.3748],[152.93601,36.402667],[152.936,36.40267],[153.06347,36.4297],[153.0635,36.4297],[153.107,36.43968],[153.31921,36.49015],[153.3192,36.49015],[153.57312,36.545447],[153.5731,36.54545],[153.633,36.55836],[153.8152,36.60325],[153.8152,36.60325],[154.00593,36.648817],[154.0059,36.64882],[154.0495,36.65828],[154.30909,36.712967],[154.3091,36.71297],[154.55728,36.765833],[154.5573,36.76583],[154.78913,36.815333],[154.7891,36.81533],[155.04379,36.871833],[155.0438,36.87183],[155.16336,36.900633],[155.1634,36.90063],[155.33695,36.947633],[155.3369,36.94763],[155.53708,37.002863],[155.5371,37.00286],[155.74097,37.05],[155.741,37.05],[155.96228,37.094383],[155.9623,37.09438],[156.0628,37.11548],[156.28945,37.16615],[156.2895,37.16615],[156.47936,37.211767],[156.4794,37.21177],[156.70584,37.2611],[156.7058,37.2611],[156.7338,37.26672],[156.7626,37.27225],[156.86285,37.291517],[156.8629,37.29152],[157.08333,37.336667],[157.0833,37.33667],[157.2726,37.3757],[157.28891,37.37882],[157.2889,37.37882],[157.4608,37.4239],[157.82467,37.5125],[157.8247,37.5125],[158.03417,37.56307],[158.0342,37.56307],[158.22999,37.607667],[158.23,37.60767],[158.4128,37.6412],[158.4128,37.6412],[158.5061,37.6575],[158.5204,37.6598],[158.61984,37.67805],[158.6198,37.67805],[158.95491,37.77045],[158.9549,37.77045],[159.0179,37.78522],[159.18083,37.821317],[159.1808,37.82132],[159.27375,37.842267],[159.2737,37.84227],[159.50061,37.892917],[159.5006,37.89292],[159.5683,37.90775],[159.74008,37.943183],[159.7401,37.94318],[159.7565,37.94647],[160.02639,38.0158],[160.0264,38.0158],[160.27392,38.088733],[160.2739,38.08873],[160.2911,38.0938],[160.52745,38.161083],[160.5275,38.16108],[160.65096,38.194467],[160.651,38.19447],[160.8133,38.23662],[160.85687,38.247833],[160.8569,38.24783],[161.07001,38.31167],[161.07,38.31167],[161.32781,38.386983],[161.3278,38.38698],[161.67095,38.488683],[161.6709,38.48868],[161.6877,38.49303],[161.82971,38.53795],[161.8297,38.53795],[162.05269,38.604317],[162.0527,38.60432],[162.21521,38.651817],[162.2152,38.65182],[162.40561,38.70653],[162.4056,38.70653],[162.599,38.76657],[162.6232,38.773967],[162.6232,38.77397],[162.7838,38.81972],[162.86427,38.842033],[162.8643,38.84203],[163.0549,38.89705],[163.16201,38.929283],[163.162,38.92928],[163.38519,38.9978],[163.3852,38.9978],[163.53815,39.04415],[163.5381,39.04415],[163.634,39.07093],[163.73305,39.09885],[163.733,39.09885],[163.9011,39.14418],[163.9341,39.15402],[164.31517,39.25935],[164.3152,39.25935],[164.42563,39.289983],[164.4256,39.28998],[164.71472,39.377917],[164.7147,39.37792],[164.96565,39.45485],[164.9657,39.45485],[165.23101,39.53165],[165.231,39.53165],[165.43432,39.58245],[165.4343,39.58245],[165.61627,39.624283],[165.6163,39.62428],[165.6332,39.6282],[165.7672,39.65955],[165.81288,39.670167],[165.8129,39.67017],[166.04563,39.72295],[166.0456,39.72295],[166.31668,39.783067],[166.3167,39.78307],[166.4646,39.81747],[166.58005,39.84415],[166.58,39.84415],[166.6666,39.86612],[166.6989,39.87449],[166.7345,39.88362],[166.86296,39.9137],[166.863,39.9137],[167.04208,39.955883],[167.0421,39.95588],[167.1154,39.97482],[167.25296,40.007867],[167.253,40.00787],[167.279,40.01412],[167.45712,40.057667],[167.4571,40.05767],[167.6435,40.10322],[167.84359,40.1538],[167.8436,40.1538],[167.8663,40.15942],[168.04967,40.20445],[168.0497,40.20445],[168.25289,40.251933],[168.2529,40.25193],[168.272,40.25638],[168.2997,40.26322],[168.46527,40.303383],[168.4653,40.30338],[168.84069,40.388067],[168.8407,40.38807],[169.05323,40.434883],[169.0532,40.43488],[169.243,40.47728],[169.47344,40.525867],[169.4734,40.52587],[169.79753,40.596017],[169.7975,40.59602],[169.8972,40.61812],[170.03679,40.647267],[170.0368,40.64727],[170.30865,40.70795],[170.3087,40.70795],[170.54667,40.7604],[170.5467,40.7604],[170.84048,40.824467],[170.8405,40.82447],[170.8979,40.83673],[171.08313,40.876067],[171.0831,40.87607],[171.1349,40.88707],[171.36799,40.935867],[171.368,40.93587],[171.46749,40.954497],[171.4675,40.9545],[171.63931,40.984433],[171.6393,40.98443],[171.6594,40.98788],[171.90423,41.030737],[171.9042,41.03074],[171.9649,41.04187],[172.17643,41.082367],[172.1764,41.08237],[172.3144,41.10674],[172.44443,41.130663],[172.4444,41.13066],[172.5045,41.14233],[172.70788,41.17415],[172.7079,41.17415],[172.7239,41.17723],[172.88392,41.20835],[172.9173,41.2148],[172.9873,41.22728],[173.14695,41.25755],[173.1469,41.25755],[173.2544,41.2784],[173.32141,41.29105],[173.3214,41.29105],[173.3636,41.29847],[173.53427,41.331267],[173.5343,41.33127],[173.5854,41.34095],[173.79699,41.3578],[173.797,41.3578],[173.9282,41.3785],[174.10305,41.42575],[174.1105,41.42782],[174.1338,41.43423],[174.38279,41.50345],[174.51747,41.5346],[174.5175,41.5346],[174.6496,41.55615],[174.89181,41.594783],[174.8918,41.59478],[174.92509,41.600333],[174.9251,41.60033],[175.1069,41.63072],[175.19425,41.64525],[175.1943,41.64525],[175.44411,41.686],[175.4441,41.686],[175.5365,41.70093],[175.73913,41.735367],[175.7391,41.73537],[176.02268,41.7762],[176.0227,41.7762],[176.27527,41.806283],[176.2753,41.80628],[176.55025,41.836667],[176.5502,41.83667],[176.64292,41.847467],[176.6429,41.84747],[176.87317,41.880853],[176.8732,41.88085],[177.13349,41.919633],[177.1335,41.91963],[177.42568,41.961967],[177.4257,41.96197],[177.59033,41.984483],[177.5903,41.98448],[177.7172,42.00232],[177.7857,42.01247],[177.94256,42.0353],[177.9982,42.0427],[178.12096,42.05895],[178.121,42.05895],[178.2135,42.07192],[178.34801,42.091533],[178.348,42.09153],[178.4369,42.10565],[178.54043,42.121933],[178.5404,42.12193],[178.5675,42.12623],[178.6651,42.14128],[178.7604,42.15345],[178.9834,42.180753],[178.9834,42.18075],[179.06147,42.190183],[179.0615,42.19018],[179.2146,42.21073],[179.2393,42.21404],[179.25749,42.216433],[179.2575,42.21643],[179.2785,42.2192],[179.4052,42.23653],[179.61485,42.2657],[179.6149,42.2657],[179.82347,42.293617],[179.8235,42.29362],[-179.77323,42.3457],[-179.7732,42.3457],[-179.5654,42.36427],[-179.18503,42.39905],[-179.18503,42.39905],[-179.185,42.39905],[-179.097,42.40692],[-178.92185,42.422987],[-178.92185,42.422987],[-178.9219,42.42299],[-178.8993,42.4251],[-178.57479,42.4539],[-178.57479,42.4539],[-178.5748,42.4539],[-178.39581,42.46932],[-178.39581,42.46932],[-178.3958,42.46932],[-178.01999,42.499233],[-178.01999,42.499233],[-178.02,42.49923],[-177.74816,42.527317],[-177.74816,42.527317],[-177.7482,42.52732],[-177.53687,42.55028],[-177.53687,42.55028],[-177.5369,42.55028],[-177.4789,42.55702],[-177.4277,42.56258],[-177.27561,42.578833],[-177.27561,42.578833],[-177.2756,42.57883],[-177.2221,42.58465],[-176.99479,42.610117],[-176.99479,42.610117],[-176.9948,42.61012],[-176.9037,42.6209],[-176.74395,42.638317],[-176.74395,42.638317],[-176.7439,42.63832],[-176.7109,42.64142],[-176.59427,42.653],[-176.59427,42.653],[-176.5943,42.653],[-176.5181,42.6603],[-176.4467,42.6675],[-176.38228,42.674387],[-176.38228,42.674387],[-176.3823,42.67439],[-176.305,42.68307],[-176.1965,42.69267],[-176.1662,42.69507],[-176.09923,42.699967],[-176.09923,42.699967],[-176.0992,42.69997],[-175.9711,42.7109],[-175.76995,42.731603],[-175.76995,42.731603],[-175.7699,42.7316],[-175.67975,42.740817],[-175.67975,42.740817],[-175.6797,42.74082],[-175.6387,42.7444],[-175.5888,42.7491],[-175.5671,42.75113],[-175.5002,42.75698],[-175.43415,42.763733],[-175.43415,42.763733],[-175.4262,42.76443],[-175.3597,42.77097],[-175.2887,42.77752],[-175.17052,42.78863],[-175.17052,42.78863],[-175.1705,42.78863],[-175.014,42.80368],[-174.90525,42.815717],[-174.90525,42.815717],[-174.8763,42.81908],[-174.7948,42.82108],[-174.74837,42.822483],[-174.74837,42.822483],[-174.7484,42.82248],[-174.5993,42.82998],[-174.46823,42.83875],[-174.46823,42.83875],[-174.4682,42.83875],[-174.4015,42.84402],[-174.21513,42.852467],[-174.21513,42.852467],[-174.2151,42.85247],[-174.1404,42.85665],[-173.99553,42.862203],[-173.99553,42.862203],[-173.9955,42.8622],[-173.9501,42.86352],[-173.75528,42.869367],[-173.75528,42.869367],[-173.7553,42.86937],[-173.6774,42.8716],[-173.52033,42.879617],[-173.52033,42.879617],[-173.5203,42.87962],[-173.4308,42.88587],[-173.25103,42.896417],[-173.25103,42.896417],[-173.251,42.89642],[-173.16607,42.902567],[-173.16607,42.902567],[-173.1661,42.90257],[-172.9548,42.91595],[-172.91319,42.9181],[-172.91319,42.9181],[-172.9132,42.9181],[-172.7344,42.9276],[-172.54093,42.938167],[-172.54093,42.938167],[-172.5409,42.93817],[-172.49553,42.940667],[-172.49553,42.940667],[-172.4955,42.94067],[-172.3353,42.9495],[-172.23912,42.956033],[-172.23912,42.956033],[-172.2391,42.95603],[-172.1835,42.96007],[-171.97027,42.969967],[-171.97027,42.969967],[-171.9703,42.96997],[-171.77045,42.979767],[-171.77045,42.979767],[-171.7704,42.97977],[-171.57167,42.992083],[-171.57167,42.992083],[-171.5717,42.99208],[-171.4642,42.99982],[-171.39876,43.00485],[-171.39876,43.00485],[-171.3988,43.00485],[-171.2033,43.01277],[-171.00363,43.019683],[-171.00363,43.019683],[-171.0036,43.01968],[-170.87583,43.024533],[-170.87583,43.024533],[-170.8758,43.02453],[-170.68448,43.030167],[-170.68448,43.030167],[-170.6845,43.03017],[-170.6577,43.03092],[-170.6112,43.03245],[-170.5909,43.0332],[-170.4997,43.03735],[-170.28553,43.0489],[-170.28553,43.0489],[-170.2855,43.0489],[-170.07525,43.059383],[-170.07525,43.059383],[-170.0753,43.05938],[-169.87568,43.07135],[-169.87568,43.07135],[-169.8699,43.07163],[-169.8499,43.07265],[-169.78169,43.0764],[-169.78169,43.0764],[-169.7817,43.0764],[-169.6724,43.08287],[-169.45845,43.093267],[-169.45845,43.093267],[-169.4585,43.09327],[-169.24153,43.103613],[-169.24153,43.103613],[-169.2415,43.10361],[-169.2166,43.10493],[-169.1962,43.10588],[-169.1833,43.1065],[-169.04553,43.105317],[-169.04553,43.105317],[-169.0455,43.10532],[-168.84312,43.107947],[-168.84312,43.107947],[-168.8431,43.10795],[-168.45763,43.101733],[-168.45763,43.101733],[-168.4576,43.10173],[-168.4081,43.10069],[-168.14009,43.096517],[-168.14009,43.096517],[-168.1401,43.09652],[-167.87416,43.0944],[-167.87416,43.0944],[-167.8742,43.0944],[-167.59287,43.0918],[-167.59287,43.0918],[-167.5929,43.0918],[-167.4769,43.0909],[-167.41787,43.090667],[-167.41787,43.090667],[-167.4179,43.09067],[-167.2237,43.09025],[-167.06132,43.090767],[-167.06132,43.090767],[-167.0613,43.09077],[-167.0256,43.09089],[-166.81223,43.0908],[-166.81223,43.0908],[-166.8122,43.0908],[-166.7851,43.09053],[-166.67965,43.089833],[-166.67965,43.089833],[-166.6176,43.09093],[-166.5867,43.09162],[-166.5245,43.09263],[-166.40632,43.09465],[-166.40632,43.09465],[-166.4063,43.09465],[-166.3439,43.09542],[-166.2559,43.09695],[-166.10067,43.098433],[-166.10067,43.098433],[-166.1007,43.09843],[-166.0447,43.09918],[-165.88307,43.10075],[-165.88307,43.10075],[-165.8831,43.10075],[-165.71147,43.103383],[-165.71147,43.103383],[-165.7115,43.10338],[-165.6456,43.10412],[-165.42569,43.10552],[-165.42569,43.10552],[-165.4257,43.10552],[-165.3902,43.10522],[-165.24028,43.10405],[-165.24028,43.10405],[-165.2403,43.10405],[-165.0579,43.10238],[-164.92932,43.101083],[-164.92932,43.101083],[-164.924,43.10103],[-164.9032,43.1007],[-164.8813,43.10048],[-164.8401,43.09952],[-164.75047,43.09755],[-164.75047,43.09755],[-164.7505,43.09755],[-164.637,43.09005],[-164.5748,43.08283],[-164.35055,43.050717],[-164.35055,43.050717],[-164.3505,43.05072],[-164.3026,43.04947],[-164.22267,43.046433],[-164.22267,43.046433],[-164.2178,43.04628],[-164.02592,43.0393],[-164.02592,43.0393],[-164.0259,43.0393],[-163.73532,43.029717],[-163.73532,43.029717],[-163.7353,43.02972],[-163.4566,43.02442],[-163.45659,43.024417],[-163.45659,43.024417],[-163.393,43.02397],[-163.25299,43.0234],[-163.25299,43.0234],[-163.253,43.0234],[-163.1563,43.02372],[-162.95869,43.025183],[-162.95869,43.025183],[-162.9128,43.02582],[-162.71928,43.027983],[-162.71928,43.027983],[-162.7193,43.02798],[-162.6402,43.02828],[-162.43481,43.026583],[-162.43481,43.026583],[-162.4348,43.02658],[-162.3678,43.025587],[-162.3678,43.025587],[-162.3678,43.02559],[-162.3276,43.02508],[-162.11381,43.022683],[-162.11381,43.022683],[-162.1138,43.02268],[-162.0806,43.02053],[-162.0496,43.01863],[-161.87959,43.008233],[-161.87959,43.008233],[-161.8796,43.00823],[-161.8152,43.00593],[-161.6657,43.00107],[-161.60009,42.998767],[-161.60009,42.998767],[-161.6001,42.99877],[-161.5136,42.9945],[-161.4451,42.99015],[-161.32369,42.983533],[-161.32369,42.983533],[-161.3237,42.98353],[-161.2398,42.97915],[-161.12756,42.974117],[-161.12756,42.974117],[-161.1276,42.97412],[-161.0292,42.97062],[-160.91301,42.96725],[-160.91301,42.96725],[-160.8127,42.96461],[-160.60052,42.9591],[-160.60052,42.9591],[-160.6005,42.9591],[-160.3888,42.953517],[-160.3888,42.953517],[-160.3888,42.95352],[-160.2768,42.95042],[-160.06513,42.943833],[-160.06513,42.943833],[-160.0651,42.94383],[-159.9919,42.9395],[-159.86041,42.928847],[-159.86041,42.928847],[-159.8604,42.92885],[-159.6948,42.914483],[-159.6948,42.914483],[-159.6307,42.909],[-159.5912,42.9056],[-159.43883,42.891917],[-159.43883,42.891917],[-159.4388,42.89192],[-159.3547,42.88437],[-159.21008,42.87155],[-159.21008,42.87155],[-159.2101,42.87155],[-159.00443,42.854017],[-159.00443,42.854017],[-159.0044,42.85402],[-158.9255,42.84748],[-158.8685,42.8427],[-158.8163,42.83853],[-158.60781,42.82355],[-158.60781,42.82355],[-158.6078,42.82355],[-158.37587,42.807233],[-158.37587,42.807233],[-158.29828,42.8016],[-158.29828,42.8016],[-158.2983,42.8016],[-158.146,42.79027],[-158.1181,42.78812],[-158.0906,42.78603],[-158.0727,42.78463],[-157.98432,42.777583],[-157.98432,42.777583],[-157.9843,42.77758],[-157.61045,42.747263],[-157.61045,42.747263],[-157.6105,42.74726],[-157.3662,42.724667],[-157.3662,42.724667],[-157.3662,42.72467],[-157.31241,42.719333],[-157.31241,42.719333],[-157.3124,42.71933],[-157.05477,42.69385],[-157.05477,42.69385],[-157.0548,42.69385],[-156.76821,42.664533],[-156.76821,42.664533],[-156.7682,42.66453],[-156.52733,42.6464],[-156.52733,42.6464],[-156.5273,42.6464],[-156.5053,42.64466],[-156.27481,42.628503],[-156.27481,42.628503],[-156.2748,42.6285],[-156.09756,42.616403],[-156.09756,42.616403],[-156.0976,42.6164],[-155.9451,42.6056],[-155.8803,42.60197],[-155.74305,42.59318],[-155.74305,42.59318],[-155.6753,42.58882],[-155.54128,42.580333],[-155.54128,42.580333],[-155.5413,42.58033],[-155.4587,42.57545],[-155.28267,42.563817],[-155.28267,42.563817],[-155.2827,42.56382],[-155.1318,42.555667],[-155.1318,42.555667],[-155.1318,42.55567],[-155.0757,42.55103],[-154.9354,42.53598],[-154.863,42.527517],[-154.863,42.527517],[-154.863,42.52752],[-154.6613,42.4998],[-154.60299,42.4916],[-154.60299,42.4916],[-154.603,42.4916],[-154.4658,42.47373],[-154.38483,42.463367],[-154.38483,42.463367],[-154.3848,42.46337],[-154.3142,42.45492],[-154.1201,42.42872],[-154.05448,42.419783],[-154.05448,42.419783],[-154.0545,42.41978],[-154.0107,42.41367],[-153.8437,42.39133],[-153.8012,42.38577],[-153.7125,42.37433],[-153.6279,42.36363],[-153.4735,42.34528],[-153.4299,42.3403],[-153.4005,42.3368],[-153.2977,42.32527],[-153.2289,42.31772],[-153.1851,42.31285],[-153.1693,42.31113],[-153.0777,42.30118],[-152.9185,42.28413],[-152.8102,42.2707],[-152.61896,42.24705],[-152.61896,42.24705],[-152.619,42.24705],[-152.5789,42.2415],[-152.34627,42.212447],[-152.34627,42.212447],[-152.3463,42.21245],[-152.06355,42.1805],[-152.06355,42.1805],[-152.0636,42.1805],[-152.0446,42.17822],[-151.84955,42.15575],[-151.84955,42.15575],[-151.8495,42.15575],[-151.76448,42.145817],[-151.76448,42.145817],[-151.7645,42.14582],[-151.5942,42.12613],[-151.52756,42.11855],[-151.52756,42.11855],[-151.5276,42.11855],[-151.322,42.09547],[-151.25583,42.087897],[-151.25583,42.087897],[-151.2558,42.0879],[-151.2155,42.08232],[-151.1792,42.07732],[-151.00663,42.053067],[-151.00663,42.053067],[-151.0066,42.05307],[-150.9742,42.04863],[-150.9335,42.04272],[-150.81807,42.025367],[-150.81807,42.025367],[-150.8181,42.02537],[-150.7729,42.01888],[-150.7054,42.00903],[-150.56869,41.9893],[-150.56869,41.9893],[-150.5687,41.9893],[-150.5038,41.97978],[-150.4403,41.97172],[-150.3641,41.962],[-150.32152,41.95698],[-150.32152,41.95698],[-150.3215,41.95698],[-150.1696,41.93858],[-150.1561,41.93677],[-150.0224,41.918933],[-150.0224,41.918933],[-149.9621,41.9101],[-149.85452,41.892783],[-149.85452,41.892783],[-149.8545,41.89278],[-149.7462,41.87478],[-149.60607,41.851733],[-149.60607,41.851733],[-149.6061,41.85173],[-149.39341,41.8164],[-149.39341,41.8164],[-149.3521,41.80945],[-149.15483,41.777133],[-149.15483,41.777133],[-149.1548,41.77713],[-148.9496,41.74342],[-148.79276,41.716567],[-148.79276,41.716567],[-148.7928,41.71657],[-148.7387,41.70728],[-148.58633,41.6791],[-148.58633,41.6791],[-148.5863,41.6791],[-148.5388,41.6706],[-148.39688,41.6454],[-148.39688,41.6454],[-148.3969,41.6454],[-148.3363,41.63498],[-148.19143,41.60885],[-148.19143,41.60885],[-148.1914,41.60885],[-148.1329,41.59728],[-148.0809,41.5877],[-147.99099,41.571783],[-147.99099,41.571783],[-147.991,41.57178],[-147.9194,41.55882],[-147.73596,41.524917],[-147.73596,41.524917],[-147.736,41.52492],[-147.5827,41.49597],[-147.50419,41.48125],[-147.50419,41.48125],[-147.5042,41.48125],[-147.3144,41.44667],[-147.16196,41.4209],[-147.16196,41.4209],[-147.162,41.4209],[-147.05793,41.40405],[-147.05793,41.40405],[-147.0579,41.40405],[-146.9632,41.38873],[-146.60612,41.33055],[-146.60612,41.33055],[-146.6061,41.33055],[-146.3702,41.291467],[-146.3702,41.291467],[-146.3702,41.29147],[-146.32847,41.284417],[-146.32847,41.284417],[-146.3285,41.28442],[-146.08916,41.243917],[-146.08916,41.243917],[-146.0892,41.24392],[-146.0117,41.23034],[-145.8478,41.202633],[-145.8478,41.202633],[-145.7672,41.18857],[-145.58113,41.156187],[-145.58113,41.156187],[-145.5174,41.145],[-145.33749,41.115517],[-145.33749,41.115517],[-145.3375,41.11552],[-145.294,41.10833],[-145.243,41.0999],[-145.14227,41.0831],[-145.14227,41.0831],[-145.1423,41.0831],[-145.0977,41.07588],[-145.0394,41.0659],[-144.89461,41.03863],[-144.89461,41.03863],[-144.8946,41.03863],[-144.67519,40.997317],[-144.67519,40.997317],[-144.6752,40.99732],[-144.4819,40.95483],[-144.43849,40.944753],[-144.43849,40.944753],[-144.4385,40.94475],[-144.3945,40.93467],[-144.2943,40.9114],[-144.17753,40.884433],[-144.17753,40.884433],[-144.1775,40.88443],[-144.1266,40.8726],[-144.0714,40.85995],[-143.96211,40.834433],[-143.96211,40.834433],[-143.9139,40.8231],[-143.8718,40.81313],[-143.8377,40.80502],[-143.72221,40.777333],[-143.72221,40.777333],[-143.6773,40.7668],[-143.61,40.75283],[-143.47735,40.725533],[-143.47735,40.725533],[-143.4773,40.72553],[-143.4301,40.7153],[-143.3374,40.69477],[-143.16553,40.657683],[-143.16553,40.657683],[-143.1655,40.65768],[-143.1069,40.64463],[-143.0775,40.63795],[-142.92723,40.604417],[-142.92723,40.604417],[-142.9272,40.60442],[-142.8858,40.59485],[-142.8434,40.5858],[-142.8228,40.5814],[-142.73,40.563267],[-142.73,40.563267],[-142.73,40.56327],[-142.6853,40.55432],[-142.6135,40.53953],[-142.5814,40.53307],[-142.54829,40.526267],[-142.54829,40.526267],[-142.5483,40.52627],[-142.5213,40.52047],[-142.4778,40.51108],[-142.4363,40.50253],[-142.3252,40.47875],[-142.30296,40.473883],[-142.30296,40.473883],[-142.303,40.47388],[-142.2444,40.46072],[-142.2171,40.4546],[-142.1098,40.43025],[-142.06745,40.420967],[-142.06745,40.420967],[-142.0675,40.42097],[-142.0217,40.41075],[-141.9238,40.38933],[-141.7338,40.346667],[-141.7338,40.346667],[-141.7338,40.34667],[-141.7119,40.3417],[-141.6542,40.32877],[-141.60999,40.31875],[-141.60999,40.31875],[-141.61,40.31875],[-141.5163,40.29745],[-141.436,40.2792],[-141.31972,40.252917],[-141.31972,40.252917],[-141.3197,40.25292],[-141.2275,40.23247],[-141.1891,40.22393],[-141.11233,40.207367],[-141.11233,40.207367],[-141.1123,40.20737],[-140.9364,40.16975],[-140.89453,40.161067],[-140.89453,40.161067],[-140.8945,40.16107],[-140.62215,40.100813],[-140.62215,40.100813],[-140.6221,40.10081],[-140.43441,40.056767],[-140.43441,40.056767],[-140.4344,40.05677],[-140.3876,40.04567],[-140.3111,40.02717],[-140.1336,39.984917],[-140.1336,39.984917],[-140.1336,39.98492],[-140.1163,39.98075],[-139.95188,39.94087],[-139.95188,39.94087],[-139.9519,39.94087],[-139.8584,39.91772],[-139.75948,39.89375],[-139.75948,39.89375],[-139.7595,39.89375],[-139.7156,39.88322],[-139.6344,39.8613],[-139.5861,39.84918],[-139.5651,39.84381],[-139.37725,39.794067],[-139.37725,39.794067],[-139.3347,39.7825],[-139.17363,39.7407],[-139.17363,39.7407],[-139.135,39.7305],[-139.077,39.713833],[-139.077,39.713833],[-139.077,39.71383],[-139.0357,39.70203],[-138.9397,39.67548],[-138.85285,39.6519],[-138.85285,39.6519],[-138.8529,39.6519],[-138.781,39.63277],[-138.7339,39.62042],[-138.588,39.582367],[-138.588,39.582367],[-138.588,39.58237],[-138.5442,39.56985],[-138.37163,39.520533],[-138.37163,39.520533],[-138.3716,39.52053],[-138.3301,39.50928],[-138.16061,39.46365],[-138.16061,39.46365],[-138.1606,39.46365],[-138.1183,39.45248],[-137.996,39.41855],[-137.77675,39.357633],[-137.77675,39.357633],[-137.7767,39.35763],[-137.73965,39.347133],[-137.73965,39.347133],[-137.7397,39.34713],[-137.6234,39.31365],[-137.43245,39.260017],[-137.43245,39.260017],[-137.3957,39.24987],[-137.3499,39.23732],[-137.23039,39.20335],[-137.23039,39.20335],[-137.2304,39.20335],[-137.1929,39.19282],[-137.1406,39.17857],[-137.0422,39.151],[-137.0422,39.151],[-137.0422,39.151],[-137.0012,39.13963],[-136.85455,39.10055],[-136.85455,39.10055],[-136.8546,39.10055],[-136.8149,39.08997],[-136.659,39.04755],[-136.60127,39.0318],[-136.60127,39.0318],[-136.5935,39.02962],[-136.4657,38.99285],[-136.39028,38.9706],[-136.39028,38.9706],[-136.3903,38.9706],[-136.2785,38.93992],[-136.2178,38.92363],[-136.19005,38.916113],[-136.19005,38.916113],[-136.19,38.91611],[-136.0115,38.86743],[-135.67095,38.778133],[-135.67095,38.778133],[-135.6709,38.77813],[-135.43292,38.718047],[-135.43292,38.718047],[-135.4329,38.71805],[-135.17508,38.650067],[-135.17508,38.650067],[-135.1751,38.65007],[-135.081,38.62488],[-134.96416,38.5919],[-134.96416,38.5919],[-134.9642,38.5919],[-134.74195,38.52905],[-134.74195,38.52905],[-134.7419,38.52905],[-134.6814,38.5098],[-134.644,38.4976],[-134.55232,38.468467],[-134.55232,38.468467],[-134.5523,38.46847],[-134.5072,38.4534],[-134.4289,38.42662],[-134.37013,38.406333],[-134.37013,38.406333],[-134.3701,38.40633],[-134.3182,38.38772],[-134.19656,38.3434],[-134.19656,38.3434],[-134.1812,38.33768],[-134.1596,38.32947],[-133.98105,38.2669],[-133.98105,38.2669],[-133.981,38.2669],[-133.832,38.21997],[-133.69653,38.175567],[-133.69653,38.175567],[-133.6965,38.17557],[-133.6499,38.1599],[-133.6339,38.15445],[-133.5716,38.133],[-133.48321,38.103033],[-133.48321,38.103033],[-133.4832,38.10303],[-133.3985,38.07452],[-133.23595,38.022533],[-133.23595,38.022533],[-133.2359,38.02253],[-133.1986,38.01052],[-133.1537,37.99633],[-133.07049,37.970213],[-133.07049,37.970213],[-133.0705,37.97021],[-132.9998,37.94648],[-132.87988,37.90682],[-132.87988,37.90682],[-132.8799,37.90682],[-132.8062,37.8835],[-132.6951,37.84748],[-132.63221,37.827267],[-132.63221,37.827267],[-132.6322,37.82727],[-132.5117,37.78853],[-132.4615,37.7728],[-132.41249,37.75757],[-132.41249,37.75757],[-132.4125,37.75757],[-132.2837,37.71332],[-132.22887,37.696867],[-132.22887,37.696867],[-132.2289,37.69687],[-132.1973,37.68727],[-132.1591,37.67567],[-132.0953,37.65525],[-132.0444,37.63858],[-131.98455,37.6193],[-131.98455,37.6193],[-131.9845,37.6193],[-131.9277,37.60102],[-131.8694,37.58153],[-131.75647,37.541753],[-131.75647,37.541753],[-131.7565,37.54175],[-131.7103,37.52778],[-131.6828,37.5195],[-131.5965,37.49292],[-131.55463,37.479483],[-131.55463,37.479483],[-131.5546,37.47948],[-131.5105,37.46567],[-131.4688,37.45205],[-131.4273,37.43777],[-131.3834,37.42299],[-131.33221,37.405737],[-131.33221,37.405737],[-131.3322,37.40574],[-131.23,37.3713],[-131.1611,37.34907],[-131.12043,37.335667],[-131.12043,37.335667],[-131.1204,37.33567],[-131.0164,37.30067],[-130.9537,37.28062],[-130.9367,37.2753],[-130.82413,37.238983],[-130.82413,37.238983],[-130.7432,37.21323],[-130.61895,37.172883],[-130.61895,37.172883],[-130.6189,37.17288],[-130.41503,37.099863],[-130.41503,37.099863],[-130.415,37.09986],[-130.20397,37.02095],[-130.20397,37.02095],[-130.1535,37.00191],[-130.1149,36.9884],[-129.93392,36.928783],[-129.93392,36.928783],[-129.9339,36.92878],[-129.74415,36.86762],[-129.74415,36.86762],[-129.7441,36.86762],[-129.6967,36.85283],[-129.6601,36.8408],[-129.44452,36.76685],[-129.44452,36.76685],[-129.4445,36.76685],[-129.38988,36.744683],[-129.38988,36.744683],[-129.3899,36.74468],[-129.3528,36.72978],[-129.2166,36.67475],[-129.17308,36.657933],[-129.17308,36.657933],[-129.1731,36.65793],[-129.1513,36.64972],[-129.0366,36.60682],[-128.9956,36.59113],[-128.93728,36.569317],[-128.93728,36.569317],[-128.9373,36.56932],[-128.9023,36.55615],[-128.8565,36.53873],[-128.7484,36.49818],[-128.72633,36.48982],[-128.72633,36.48982],[-128.7263,36.48982],[-128.6525,36.46127],[-128.6059,36.44313],[-128.46528,36.389063],[-128.46528,36.389063],[-128.4653,36.38906],[-128.4273,36.3748],[-128.3872,36.35998],[-128.29839,36.32695],[-128.29839,36.32695],[-128.2984,36.32695],[-128.263,36.31365],[-128.1288,36.26137],[-128.0984,36.2494],[-127.94968,36.191883],[-127.94968,36.191883],[-127.9154,36.17892],[-127.8808,36.16572],[-127.8562,36.15647],[-127.812,36.13967],[-127.743,36.11255],[-127.7101,36.09958],[-127.73059,36.1077],[-127.73059,36.1077],[-127.5908,36.05267],[-127.38905,35.9758],[-127.38905,35.9758],[-127.3652,35.96648],[-127.3299,35.9528],[-127.2957,35.93948],[-127.261,35.92612],[-127.2267,35.9128],[-127.22309,35.911333],[-127.22309,35.911333],[-127.1921,35.89931],[-127.1576,35.88565],[-127.1232,35.87205],[-127.0906,35.85912],[-127.0616,35.84772],[-127.0208,35.83162],[-127.02079,35.831617],[-127.02079,35.831617],[-127.0208,35.83162],[-126.9603,35.8077],[-126.9164,35.79122],[-126.8819,35.77832],[-126.82185,35.755767],[-126.82185,35.755767],[-126.8219,35.75577],[-126.70907,35.715033],[-126.70907,35.715033],[-126.7036,35.71307],[-126.6576,35.69697],[-126.5169,35.6465],[-126.51687,35.6465],[-126.51687,35.6465],[-126.5016,35.6409],[-126.4643,35.6274],[-126.3559,35.58835],[-126.2947,35.56632],[-126.29472,35.56632],[-126.29472,35.56632],[-126.2584,35.55332],[-126.2041,35.5338],[-126.1413,35.51118],[-126.122,35.50715],[-126.12199,35.50715],[-126.12199,35.50715],[-126.1053,35.50345],[-126.0712,35.49585],[-126.048,35.49075],[-126.0291,35.48657],[-126.0058,35.48143],[-125.9871,35.4773],[-125.9695,35.4734],[-125.946,35.4683],[-125.93839,35.466617],[-125.93839,35.466617],[-125.9313,35.46512],[-125.9151,35.46153],[-125.8917,35.4565],[-125.874,35.4527],[-125.8495,35.44743],[-125.8319,35.44365],[-125.8024,35.43727],[-125.7697,35.4303],[-125.7514,35.4265],[-125.7281,35.42157],[-125.72808,35.421567],[-125.72808,35.421567],[-125.7115,35.41812],[-125.6938,35.41443],[-125.6772,35.411],[-125.6605,35.40748],[-125.6443,35.40402],[-125.6276,35.40043],[-125.6039,35.39528],[-125.5874,35.39168],[-125.5717,35.38833],[-125.556,35.38512],[-125.5372,35.38113],[-125.52775,35.37905],[-125.52775,35.37905],[-125.514,35.3762],[-125.4978,35.37285],[-125.472,35.36753],[-125.4529,35.36348],[-125.4356,35.35982],[-125.4166,35.35565],[-125.3936,35.35043],[-125.3773,35.34672],[-125.3625,35.34358],[-125.3386,35.3383],[-125.3214,35.33452],[-125.32541,35.335383],[-125.32541,35.335383],[-125.3041,35.3308],[-125.2878,35.32742],[-125.2717,35.32392],[-125.2554,35.32047],[-125.2377,35.31662],[-125.219,35.31258],[-125.2013,35.30868],[-125.1837,35.30473],[-125.1662,35.30073],[-125.1489,35.29671],[-125.1329,35.29298],[-125.1177,35.28933],[-125.12353,35.29075],[-125.12353,35.29075],[-125.1007,35.28542],[-125.0662,35.27725],[-125.0503,35.27343],[-125.0369,35.2702],[-125.0219,35.2667],[-125.0063,35.26299],[-124.9895,35.25903],[-124.9743,35.25548],[-124.9579,35.2518],[-124.9386,35.24742],[-124.9228,35.24377],[-124.91669,35.24235],[-124.91669,35.24235],[-124.9078,35.24035],[-124.8935,35.23718],[-124.8759,35.23328],[-124.8583,35.22935],[-124.843,35.22592],[-124.8268,35.22232],[-124.8027,35.21735],[-124.786,35.2139],[-124.763,35.20923],[-124.7473,35.20595],[-124.7335,35.20303],[-124.7177,35.1997],[-124.71901,35.200037],[-124.71901,35.200037],[-124.7016,35.19628],[-124.6853,35.1929],[-124.6635,35.18852],[-124.648,35.18547],[-124.6317,35.18217],[-124.61,35.1779],[-124.5933,35.17468],[-124.576,35.17167],[-124.554,35.16796],[-124.5384,35.16537],[-124.5226,35.16275],[-124.51819,35.16205],[-124.51819,35.16205],[-124.507,35.16018],[-124.4922,35.15728],[-124.4751,35.15388],[-124.4545,35.14975],[-124.4394,35.1466],[-124.4241,35.14345],[-124.4087,35.14027],[-124.3918,35.13673],[-124.3737,35.13295],[-124.3565,35.12925],[-124.3404,35.12583],[-124.3174,35.12088],[-124.31736,35.120883],[-124.31736,35.120883],[-124.2985,35.11673],[-124.2837,35.11347],[-124.2686,35.1102],[-124.2538,35.10693],[-124.2305,35.1019],[-124.2154,35.09855],[-124.2002,35.09535],[-124.1819,35.09127],[-124.166,35.0877],[-124.1511,35.08438],[-124.1279,35.07925],[-124.111,35.07538],[-124.0953,35.07193],[-124.0725,35.06692],[-124.053,35.06285],[-124.0379,35.05983],[-124.0231,35.05687],[-124.02172,35.056583],[-124.0075,35.05363],[-123.9848,35.04883],[-123.9684,35.04512],[-123.9532,35.04177],[-123.9297,35.03695],[-123.915,35.03392],[-123.90883,35.0326],[-123.9001,35.03067],[-123.8844,35.02722],[-123.8627,35.02257],[-123.8451,35.01885],[-123.821,35.0137],[-123.8057,35.01045],[-123.7913,35.00747],[-123.769,35.00286],[-123.7531,34.99949],[-123.7383,34.99637],[-123.7155,34.99155],[-123.70623,34.989617],[-123.6996,34.98813],[-123.6843,34.98498],[-123.6607,34.97992],[-123.6457,34.97672],[-123.6312,34.97365],[-123.6092,34.96905],[-123.5929,34.96575],[-123.5782,34.96275],[-123.5582,34.95887],[-123.5437,34.95592],[-123.5292,34.95312],[-123.5168,34.95068],[-123.5134,34.949967],[-123.5011,34.94757],[-123.4874,34.94478],[-123.4728,34.94176],[-123.4519,34.93747],[-123.4372,34.93458],[-123.4225,34.93155],[-123.4077,34.92837],[-123.3943,34.9255],[-123.3794,34.92218],[-123.3648,34.91905],[-123.3513,34.91625],[-123.3382,34.9133],[-123.32772,34.911117],[-123.3198,34.90928],[-123.13347,34.870367],[-123.1262,34.86885],[-123.3083,34.9068],[-123.1131,34.86605],[-123.2971,34.90435],[-123.1015,34.86357],[-123.0894,34.86117],[-123.2812,34.9009],[-123.2722,34.89878],[-123.0711,34.85747],[-123.264,34.89672],[-123.0592,34.8551],[-123.2569,34.89475],[-123.0466,34.85257],[-123.252,34.89323],[-123.0297,34.84917],[-123.2477,34.8917],[-123.0179,34.84683],[-123.2443,34.89102],[-123.007,34.8447],[-122.9927,34.84192],[-123.2409,34.89087],[-122.9813,34.83961],[-122.98229,34.839803],[-123.23993,34.891017],[-123.2387,34.89117],[-122.9699,34.8375],[-123.2361,34.89153],[-122.9519,34.83395],[-123.2326,34.89168],[-122.9402,34.83155],[-123.2278,34.89062],[-122.9285,34.82928],[-123.2204,34.88885],[-123.2121,34.88697],[-122.9106,34.82592],[-122.8992,34.8237],[-123.1984,34.88432],[-122.8866,34.82128],[-123.187,34.88182],[-122.8692,34.81788],[-123.1769,34.87978],[-122.8579,34.8157],[-123.1659,34.87745],[-122.8465,34.81348],[-123.1498,34.87397],[-122.8339,34.81115],[-123.1379,34.87137],[-122.8219,34.80893],[-122.82608,34.809733],[-122.8105,34.8068],[-122.7981,34.80453],[-122.7799,34.80125],[-122.7692,34.79939],[-122.757,34.7973],[-122.7402,34.7944],[-122.7286,34.79245],[-122.7175,34.79048],[-122.7064,34.78855],[-122.6947,34.7865],[-122.6774,34.78365],[-122.6655,34.7817],[-122.66793,34.782117],[-122.6541,34.77972],[-122.6429,34.77777],[-122.6249,34.77485],[-122.613,34.77275],[-122.6013,34.77075],[-122.5898,34.76888],[-122.5723,34.76603],[-122.5596,34.76395],[-122.5478,34.76205],[-122.5304,34.75912],[-122.5192,34.75727],[-122.51379,34.75635],[-122.5068,34.7552],[-122.4956,34.75317],[-122.483,34.75098],[-122.4691,34.74848],[-122.4568,34.7463],[-122.4454,34.74368],[-122.4341,34.7411],[-122.4217,34.73832],[-122.4095,34.73567],[-122.3977,34.73312],[-122.3863,34.73062],[-122.3691,34.72678],[-122.3575,34.72422],[-122.35427,34.72352],[-122.3454,34.72152],[-122.3297,34.71788],[-122.3128,34.71387],[-122.3015,34.71118],[-122.2898,34.7084],[-122.2787,34.70576],[-122.2615,34.7017],[-122.2497,34.69887],[-122.2381,34.69607],[-122.2211,34.69197],[-122.2095,34.68922],[-122.20475,34.688013],[-122.1986,34.6865],[-122.1872,34.68372],[-122.1697,34.67963],[-122.1586,34.67687],[-122.1483,34.67447],[-122.136,34.67142],[-122.1194,34.66739],[-122.1023,34.6632],[-122.0923,34.6608],[-122.0815,34.65812],[-122.0712,34.65555],[-122.0603,34.65275],[-122.05323,34.650967],[-122.0431,34.64847],[-122.0313,34.64557],[-122.02,34.64277],[-122.0034,34.6385],[-121.9871,34.63437],[-121.9762,34.63175],[-121.9655,34.62898],[-121.9547,34.62612],[-121.9436,34.62325],[-121.9262,34.61858],[-121.9149,34.61543],[-121.9035,34.61268],[-121.8919,34.60963],[-121.88823,34.60875],[-121.8744,34.6054],[-121.8632,34.60278],[-121.8509,34.60022],[-121.8333,34.59647],[-121.8225,34.59417],[-121.8113,34.59165],[-121.8,34.58917],[-121.7881,34.58652],[-121.7725,34.58318],[-121.7549,34.57936],[-121.743,34.57673],[-121.74473,34.577083],[-121.7314,34.57405],[-121.7191,34.57123],[-121.707,34.56857],[-121.6958,34.56595],[-121.6796,34.56207],[-121.6641,34.55838],[-121.6529,34.55567],[-121.6419,34.55295],[-121.6308,34.55028],[-121.6202,34.54785],[-121.6032,34.54383],[-121.5918,34.54118],[-121.59213,34.541247],[-121.5808,34.53868],[-121.5697,34.53608],[-121.5529,34.53247],[-121.5411,34.5301],[-121.5295,34.5277],[-121.513,34.52452],[-121.4961,34.52123],[-121.4835,34.5188],[-121.4712,34.51648],[-121.4591,34.51433],[-121.4472,34.51208],[-121.4357,34.50986],[-121.44096,34.5109],[-121.4171,34.50635],[-121.4047,34.50377],[-121.3884,34.50057],[-121.377,34.49835],[-121.3658,34.49605],[-121.3546,34.4939],[-121.3438,34.49183],[-121.3278,34.4889],[-121.3155,34.48658],[-121.304,34.48445],[-121.2934,34.4825],[-121.28525,34.4809],[-121.2762,34.47925],[-121.2649,34.47705],[-121.2533,34.47486],[-121.2413,34.4726],[-121.2296,34.4705],[-121.215,34.4677],[-121.2031,34.46535],[-121.1917,34.46321],[-121.1799,34.46103],[-121.1622,34.45772],[-121.1501,34.45547],[-121.1381,34.45343],[-121.12995,34.452013],[-121.1203,34.4503],[-121.1053,34.4477],[-121.0931,34.44553],[-121.0807,34.44345],[-121.0685,34.44123],[-121.0506,34.43825],[-121.0383,34.43616],[-121.0255,34.4339],[-121.0072,34.4307],[-120.9919,34.42793],[-120.9797,34.42577],[-120.9678,34.42355],[-120.96888,34.423753],[-120.9562,34.42138],[-120.9388,34.41817],[-120.9272,34.41585],[-120.9154,34.4135],[-120.9028,34.41093],[-120.8853,34.40735],[-120.873,34.40485],[-120.8609,34.40247],[-120.844,34.39895],[-120.832,34.39633],[-120.8204,34.39371],[-120.8086,34.39108],[-120.80792,34.390913],[-120.7912,34.38705],[-120.7791,34.38433],[-120.7689,34.38206],[-120.7585,34.37965],[-120.7451,34.37643],[-120.7339,34.3737],[-120.7216,34.37055],[-120.7043,34.36642],[-120.6936,34.3639],[-120.6823,34.36112],[-120.6705,34.35823],[-120.6531,34.35398],[-120.6418,34.35133],[-120.631,34.34867],[-120.62376,34.34675],[-120.6195,34.34572],[-120.6021,34.34152],[-120.5914,34.339],[-120.5795,34.33624],[-120.5683,34.33355],[-120.5511,34.32958],[-120.5393,34.32689],[-120.5288,34.32442],[-120.5184,34.322],[-120.5074,34.31947],[-120.4897,34.31553],[-120.477,34.31268],[-120.4605,34.3091],[-120.4436,34.30558],[-120.44155,34.305133],[-120.4316,34.303],[-120.4201,34.30055],[-120.4038,34.29682],[-120.3921,34.29412],[-120.3809,34.2915],[-120.3685,34.28845],[-120.357,34.28553],[-120.343,34.28214],[-120.3262,34.27842],[-120.3147,34.2759],[-120.3037,34.27347],[-120.2919,34.27085],[-120.2746,34.26698],[-120.2639,34.2646],[-120.2518,34.26193],[-120.25025,34.261587],[-120.2409,34.25955],[-120.2293,34.2571],[-120.2118,34.25337],[-120.2004,34.25092],[-120.1885,34.24838],[-120.1774,34.24605],[-120.1607,34.24262],[-120.1436,34.23923],[-120.1315,34.23683],[-120.1196,34.23454],[-120.1028,34.23115],[-120.0907,34.22868],[-120.08727,34.2279],[-120.0788,34.2261],[-120.0669,34.22352],[-120.051,34.2202],[-120.0395,34.2179],[-120.0282,34.21555],[-120.03199,34.216317],[-120.0178,34.21342],[-120.0055,34.21092],[-119.9883,34.20722],[-119.9773,34.2048],[-119.9663,34.2023],[-119.9551,34.19973],[-119.9445,34.19728],[-119.9336,34.1948],[-119.9181,34.1912],[-119.9014,34.1873],[-119.8854,34.18355],[-119.88401,34.18325],[-119.8737,34.18085],[-119.8626,34.17827],[-119.8515,34.17562],[-119.8356,34.17171],[-119.8191,34.16753],[-119.8083,34.16478],[-119.7962,34.16197],[-119.7791,34.15793],[-119.7686,34.15542],[-119.7574,34.15275],[-119.7467,34.1501],[-119.7366,34.14757],[-119.7326,34.1466],[-119.7252,34.14472],[-119.7087,34.14065],[-119.6979,34.13811],[-119.6868,34.1356],[-119.6763,34.1333],[-119.6655,34.13075],[-119.6503,34.12727],[-119.6341,34.12345],[-119.6235,34.12097],[-119.6128,34.11848],[-119.6025,34.1161],[-119.5861,34.11246],[-119.5858,34.112383],[-119.576,34.11027],[-119.5657,34.108],[-119.5559,34.1059],[-119.5453,34.10338],[-119.5351,34.10093],[-119.5247,34.09846],[-119.5087,34.09513],[-119.4972,34.09272],[-119.4865,34.09072],[-119.4758,34.08848],[-119.4601,34.08508],[-119.4442,34.08153],[-119.43912,34.080417],[-119.4333,34.07915],[-119.4225,34.07662],[-119.4123,34.07415],[-119.3968,34.07028],[-119.3827,34.06578],[-119.3726,34.06183],[-119.3629,34.0593],[-119.353,34.05663],[-119.3427,34.05563],[-119.3281,34.05242],[-119.3173,34.04963],[-119.307,34.04705],[-119.2965,34.04442],[-119.2974,34.044667],[-119.2848,34.04123],[-119.2748,34.03742],[-119.2647,34.03395],[-119.2548,34.03095],[-119.2436,34.02758],[-119.2285,34.02222],[-119.2178,34.01808],[-119.208,34.01433],[-119.1983,34.00983],[-119.1889,34.00535],[-119.179,34.00053],[-119.1667,33.99457],[-119.1567,33.98967],[-119.15939,33.990967],[-119.1421,33.98235],[-119.1331,33.97788],[-119.1241,33.9734],[-119.1154,33.96908],[-119.1065,33.96455],[-119.0984,33.96043],[-119.0869,33.9545]]}}
{"type":"Feature","geometry":{"type":"LineString","coordinates":[[122.1403,29.92035],[122.161,29.90662],[122.1748,29.88873],[122.1872,29.87317],[122.1975,29.8527],[122.20123,29.845617],[122.2065,29.83857],[122.2212,29.82197],[122.2358,29.80815],[122.2455,29.79992],[122.2531,29.794],[122.2573,29.79072],[122.27085,29.780267],[122.2922,29.7643],[122.3054,29.7539],[122.3264,29.74083],[122.3459,29.72695],[122.35805,29.721217],[122.3718,29.7174],[122.3859,29.71345],[122.4194,29.70067],[122.4363,29.69177],[122.4625,29.67658],[122.48701,29.661917],[122.4902,29.65998],[122.548,29.6241],[122.5876,29.5995],[122.6143,29.58482],[122.64845,29.575283],[122.6611,29.5747],[122.6931,29.57937],[122.7079,29.58317],[122.7385,29.59072],[122.8129,29.60905],[122.84763,29.621083],[122.857,29.62523],[122.8901,29.64255],[122.9263,29.66527],[122.9687,29.69003],[123.007,29.70222],[123.0461,29.71123],[123.03701,29.709183],[123.0982,29.71292],[123.1387,29.70973],[123.1797,29.71205],[123.2253,29.72375],[123.2585,29.7321],[123.2632,29.73325],[123.2989,29.74205],[123.345,29.74895],[123.3852,29.75858],[123.4258,29.76825],[123.4669,29.77448],[123.5164,29.78028],[123.5586,29.78063],[123.5996,29.78063],[123.6485,29.78052],[123.6893,29.78022],[123.7314,29.77983],[123.7834,29.78342],[123.8145,29.78732],[123.866,29.79487],[123.9087,29.80183],[123.9546,29.80927],[129.3516,30.50755],[129.4258,30.51657],[129.4919,30.52418],[129.5224,30.52897],[129.5686,30.53707],[129.6201,30.5463],[129.6503,30.55162],[129.6967,30.55983],[129.745,30.56848],[129.7666,30.57247],[129.804,30.57933],[129.8744,30.59222],[129.9063,30.59813],[129.9543,30.607],[130.0052,30.61643],[130.0356,30.62187],[130.087,30.6314],[130.1195,30.63632],[130.1674,30.64355],[130.2155,30.65053],[130.2782,30.65927],[130.3056,30.66303],[130.3452,30.67572],[130.3868,30.69347],[130.4321,30.71203],[130.4709,30.72708],[130.5117,30.7427],[130.5842,30.77128],[130.6024,30.77883],[130.6438,30.79613],[130.6766,30.81018],[130.7094,30.82443],[130.7534,30.84375],[130.7799,30.85563],[130.847,30.88622],[130.8692,30.89588],[130.9144,30.91585],[130.9441,30.92883],[131.0778,30.98867],[131.1173,31.00573],[131.157,31.0232],[131.1882,31.03647],[131.2334,31.05445],[131.2742,31.07118],[131.3202,31.09048],[131.3599,31.1075],[131.3998,31.12573],[131.4354,31.1422],[131.4785,31.16102],[131.5199,31.1799],[131.5604,31.19778],[131.58,31.20627],[131.6415,31.23205],[131.6801,31.24798],[131.7186,31.2634],[131.7523,31.27857],[131.7897,31.29628],[131.8345,31.31762],[131.8742,31.3354],[131.9133,31.35282],[131.939,31.3655],[131.9814,31.38718],[132.0335,31.41342],[132.0887,31.43992],[132.1223,31.45565],[132.1701,31.47773],[132.2113,31.49543],[132.63597,31.68425],[132.74112,31.73035],[132.9352,31.8145],[132.9483,31.82018],[132.9775,31.83312],[133.0213,31.85217],[133.071,31.87123],[133.1126,31.887],[133.13075,31.893883],[133.1499,31.90115],[133.1917,31.91688],[133.2354,31.93402],[133.33792,31.975483],[133.54267,32.063183],[133.74719,32.154913],[133.8392,32.19703],[133.94915,32.249733],[134.14707,32.3417],[134.35701,32.438567],[134.63635,32.5668],[134.76167,32.62345],[134.98997,32.725083],[134.99,32.72508],[135.1421,32.79222],[135.18761,32.81095],[135.39784,32.896633],[135.4542,32.92076],[135.4734,32.92895],[135.4817,32.93245],[135.5012,32.94057],[135.5202,32.94853],[135.5378,32.9558],[135.5553,32.9633],[135.5792,32.97301],[135.5992,32.98145],[135.60833,32.985487],[135.6161,32.98897],[135.6404,33.00006],[135.6658,33.01182],[135.6886,33.02198],[135.7092,33.03108],[135.7267,33.03907],[135.7544,33.05264],[135.7644,33.05777],[135.7942,33.07167],[135.8125,33.0798],[135.82336,33.084617],[135.8318,33.08825],[135.8498,33.09608],[135.869,33.10402],[135.8901,33.11245],[135.9105,33.12063],[135.9311,33.12905],[135.9496,33.13698],[135.9628,33.1424],[135.9991,33.15728],[136.0174,33.16495],[136.0372,33.17315],[136.05059,33.178467],[136.0551,33.18025],[136.078,33.18943],[136.1067,33.20098],[136.1299,33.20935],[136.1455,33.21445],[136.173,33.22242],[136.1952,33.22895],[136.219,33.23617],[136.2399,33.24358],[136.2554,33.24983],[136.27717,33.260217],[136.2776,33.26047],[136.297,33.27015],[136.3264,33.28417],[136.347,33.29353],[136.3691,33.30345],[136.3851,33.31082],[136.4084,33.32128],[136.4272,33.33],[136.4741,33.35215],[136.50047,33.364717],[136.70841,33.465267],[136.95615,33.581317],[136.9561,33.58132],[137.17619,33.68035],[137.1762,33.68035],[137.42168,33.78695],[137.4217,33.78695],[137.63612,33.86525],[137.6361,33.86525],[138.0381,34.02982],[138.06576,34.0423],[138.0658,34.0423],[138.11549,34.064817],[138.1155,34.06482],[138.1323,34.07255],[138.1527,34.08205],[138.1779,34.09378],[138.1939,34.10115],[138.2057,34.10662],[138.2224,34.11413],[138.2384,34.12132],[138.2658,34.13378],[138.2871,34.14345],[138.3102,34.15405],[138.3102,34.15405],[138.3415,34.16882],[138.3747,34.18448],[138.3994,34.19617],[138.4387,34.2147],[138.4535,34.22152],[138.4796,34.23395],[138.4924,34.24007],[138.51287,34.249747],[138.5129,34.24975],[138.5615,34.27285],[138.579,34.28113],[138.602,34.29175],[138.6235,34.3016],[138.6818,34.32841],[138.7021,34.33752],[138.70973,34.341],[138.7185,34.34503],[138.737,34.35327],[138.7538,34.36083],[138.7752,34.37057],[138.7957,34.3795],[138.8139,34.38737],[138.8323,34.39537],[138.8486,34.40235],[138.8716,34.41235],[138.8897,34.42033],[138.9094,34.42887],[138.91868,34.4329],[138.9262,34.43616],[138.9406,34.4423],[138.9551,34.44848],[138.9695,34.45463],[138.9855,34.46143],[139.0079,34.47104],[139.0315,34.48115],[139.0459,34.48727],[139.0651,34.49547],[139.0807,34.50207],[139.0874,34.50512],[139.109,34.5142],[139.1325,34.52402],[139.16548,34.537467],[139.1804,34.54298],[139.1939,34.54773],[139.2133,34.55475],[139.2366,34.56317],[139.2536,34.5689],[139.2715,34.5742],[139.296,34.58135],[139.3131,34.58603],[139.3111,34.58558],[139.3441,34.59502],[139.36228,34.60113],[139.3623,34.60113],[139.4364,34.61483],[139.456,34.61958],[139.4736,34.62388],[139.4895,34.62772],[139.511,34.63307],[139.5336,34.63863],[139.5501,34.64257],[139.569,34.64639],[139.57727,34.64875],[139.5901,34.65232],[139.6141,34.65915],[139.6362,34.66497],[139.6787,34.67513],[139.7047,34.68123],[139.7321,34.6879],[139.7549,34.69422],[139.786,34.70258],[139.78821,34.703167],[139.8018,34.70683],[139.8197,34.71157],[139.8373,34.71622],[139.8541,34.7207],[139.8729,34.72573],[139.9034,34.73409],[139.9216,34.7393],[139.9428,34.74529],[139.9688,34.75275],[139.9923,34.76065],[140.01253,34.76835],[140.0125,34.76835],[140.0311,34.7762],[140.046,34.78238],[140.0618,34.789],[140.0848,34.79878],[140.1051,34.80748],[140.1171,34.8126],[140.1391,34.8224],[140.1525,34.82887],[140.1777,34.84113],[140.1955,34.84986],[140.21323,34.8587],[140.2132,34.8587],[140.2311,34.86772],[140.2489,34.87685],[140.2628,34.88427],[140.2796,34.89338],[140.3034,34.90615],[140.44507,34.97065],[140.4451,34.97065],[140.5653,35.02323],[140.79856,35.132133],[140.7986,35.13213],[141.02725,35.242297],[141.0273,35.2423],[142.55315,35.968433],[142.5531,35.96843],[142.71019,36.04135],[142.7102,36.04135],[142.8838,36.1228],[143.2064,36.275],[143.2064,36.275],[143.41228,36.376463],[143.4123,36.37646],[144.23539,36.754617],[144.2354,36.75462],[144.37717,36.82055],[144.3772,36.82055],[144.4488,36.8555],[144.58239,36.925617],[144.5824,36.92562],[144.80032,37.029433],[144.8003,37.02943],[145.14812,37.178633],[145.1481,37.17863],[145.46611,37.311017],[145.4661,37.31102],[145.81267,37.46045],[145.8127,37.46045],[145.98117,37.534333],[145.9812,37.53433],[146.1266,37.593133],[146.1266,37.59313],[146.35387,37.68085],[146.3539,37.68085],[146.49711,37.738317],[146.4971,37.73832],[146.5916,37.77608],[146.66535,37.805667],[146.6653,37.80567],[146.83613,37.87295],[146.8361,37.87295],[147.06371,37.963213],[147.0637,37.96321],[147.33541,38.076467],[147.3354,38.07647],[147.49589,38.149333],[147.4959,38.14933],[147.5226,38.16162],[147.97877,38.343237],[147.9788,38.34324],[148.21352,38.436067],[148.2135,38.43607],[148.44305,38.526367],[148.4487,38.5286],[148.70025,38.626667],[148.7003,38.62667],[148.88677,38.698717],[148.8868,38.69872],[149.0678,38.7695],[149.0678,38.7695],[149.1227,38.79391],[149.265,38.8545],[149.265,38.8545],[149.3716,38.90125],[149.439,38.93187],[149.62749,39.0115],[149.6275,39.0115],[150.00588,39.145567],[150.0059,39.14557],[150.18123,39.212117],[150.1812,39.21212],[150.35192,39.276683],[150.3519,39.27668],[150.51695,39.338017],[150.517,39.33802],[150.69531,39.413483],[150.6953,39.41348],[150.7161,39.42204],[150.86091,39.4829],[150.8609,39.4829],[151.3116,39.646917],[151.3116,39.64692],[151.51532,39.716933],[151.5153,39.71693],[151.82424,39.8129],[151.8242,39.8129],[152.04043,39.877933],[152.2113,39.93385],[152.36127,39.984767],[152.3613,39.98477],[152.3888,39.99502],[152.5726,40.059583],[152.5726,40.05958],[152.80491,40.1379],[152.8049,40.1379],[153.041,40.2171],[153.382,40.3352],[153.517,40.38192],[153.56248,40.39695],[153.5625,40.39695],[153.75447,40.45785],[153.7545,40.45785],[153.92487,40.509633],[153.9249,40.50963],[154.0035,40.53332],[154.13472,40.573003],[154.1347,40.573],[154.31705,40.630967],[154.317,40.63097],[154.49816,40.689017],[154.4982,40.68902],[154.6517,40.73503],[154.71,40.75365],[154.85261,40.806367],[154.8526,40.80637],[155.05095,40.874717],[155.0509,40.87472],[155.2165,40.92963],[155.3811,40.9873],[155.63011,41.077433],[155.6301,41.07743],[155.72899,41.11575],[155.729,41.11575],[155.9043,41.16455],[155.92699,41.169983],[155.927,41.16998],[156.12739,41.222267],[156.1274,41.22227],[156.2642,41.2625],[156.3625,41.28715],[156.65656,41.345767],[156.6566,41.34577],[156.89887,41.405983],[156.8989,41.40598],[157.1426,41.46915],[157.1426,41.46915],[157.3575,41.52677],[157.42135,41.542467],[157.4213,41.54247],[157.65975,41.6027],[157.6597,41.6027],[157.87991,41.659113],[157.8799,41.65911],[157.9077,41.666],[158.18971,41.740633],[158.1897,41.74063],[158.34384,41.7831],[158.3438,41.7831],[158.3861,41.79527],[158.50812,41.829583],[158.5081,41.82958],[158.5993,41.85677],[158.6162,41.86158],[158.6423,41.86945],[158.70488,41.888333],[158.7049,41.88833],[158.913,41.94858],[159.1,42.009833],[159.1,42.00983],[159.34159,42.089117],[159.3416,42.08912],[159.45,42.1249],[159.4804,42.135],[159.63565,42.184933],[159.6357,42.18493],[159.84379,42.252863],[159.8438,42.25286],[159.98053,42.29555],[159.9805,42.29555],[160.0805,42.32656],[160.096,42.33102],[160.1703,42.35378],[160.18096,42.357317],[160.2394,42.3768],[160.3686,42.415797],[160.3686,42.4158],[160.544,42.46869],[160.57287,42.478417],[160.5752,42.4792],[160.7474,42.5241],[160.93215,42.572083],[160.9321,42.57208],[161.11548,42.610983],[161.1155,42.61098],[161.28833,42.644283],[161.2883,42.64428],[161.67323,42.732467],[161.6732,42.73247],[161.6985,42.73829],[161.86972,42.779033],[161.8697,42.77903],[162.054,42.82255],[162.27092,42.870767],[162.2709,42.87077],[162.42952,42.907233],[162.4295,42.90723],[162.51387,42.9245],[162.5139,42.9245],[162.77973,42.979917],[162.7797,42.97992],[163.00805,43.029147],[163.0081,43.02915],[163.1051,43.04995],[163.25961,43.081167],[163.2596,43.08117],[163.48068,43.1304],[163.4807,43.1304],[163.69892,43.18055],[163.6989,43.18055],[163.822,43.209617],[163.822,43.20962],[163.961,43.24245],[164.01904,43.256267],[164.019,43.25627],[164.21528,43.301083],[164.2153,43.30108],[164.383,43.3395],[164.42988,43.349067],[164.4299,43.34907],[164.5653,43.37472],[164.66536,43.394917],[164.6654,43.39492],[164.739,43.40685],[164.93176,43.443583],[164.9318,43.44358],[164.9618,43.45095],[165.17019,43.492667],[165.1702,43.49267],[165.39712,43.541733],[165.3971,43.54173],[165.4872,43.558633],[165.4872,43.55863],[165.73385,43.60605],[165.7353,43.60632],[165.91453,43.647583],[165.9145,43.64758],[166.16952,43.703383],[166.1695,43.70338],[166.43892,43.764733],[166.4389,43.76473],[166.71705,43.815267],[166.7171,43.81527],[166.81029,43.828367],[166.8103,43.82837],[166.9627,43.85223],[167.20949,43.89145],[167.2095,43.89145],[167.48593,43.93755],[167.4859,43.93755],[167.73772,43.980933],[167.7377,43.98093],[168.00928,44.0307],[168.0093,44.0307],[168.0832,44.0436],[168.25524,44.074433],[168.2552,44.07443],[168.50816,44.121067],[168.5082,44.12107],[168.5545,44.13012],[168.62744,44.144617],[168.6274,44.14462],[168.84104,44.17825],[168.841,44.17825],[169.0414,44.216417],[169.0414,44.21642],[169.30464,44.2638],[169.3046,44.2638],[169.3391,44.2691],[169.67493,44.331847],[169.6749,44.33185],[169.6979,44.33592],[169.86821,44.368117],[169.8682,44.36812],[170.02699,44.399433],[170.027,44.39943],[170.24988,44.427467],[170.2499,44.42747],[170.287,44.43172],[170.3035,44.43372],[170.46723,44.452837],[170.4672,44.45284],[170.6774,44.480817],[170.6774,44.48082],[170.8684,44.5075],[171.136,44.542433],[171.1365,44.5425],[171.14533,44.5439],[171.1664,44.546],[171.1855,44.54892],[171.3043,44.56375],[171.51313,44.591933],[171.5131,44.59193],[171.90127,44.641983],[171.9013,44.64198],[172.12157,44.672083],[172.1216,44.67208],[172.37361,44.708867],[172.3736,44.70887],[172.63056,44.73495],[172.6306,44.73495],[172.90917,44.78175],[172.9092,44.78175],[173.4894,44.856033],[173.4894,44.85603],[173.5773,44.87082],[173.76207,44.89895],[173.7621,44.89895],[173.7775,44.90102],[173.97256,44.926363],[173.9726,44.92636],[174.0463,44.93285],[174.17372,44.947583],[174.1737,44.94758],[174.3141,44.96715],[174.40159,44.980767],[174.4016,44.98077],[174.59411,45.00795],[174.5941,45.00795],[174.6937,45.0205],[174.84152,45.039167],[174.8415,45.03917],[174.9083,45.04758],[175.0357,45.06137],[175.1142,45.06703],[175.11419,45.067033],[175.2662,45.08433],[175.32879,45.091867],[175.3288,45.09187],[175.4757,45.10403],[175.65011,45.119933],[175.6501,45.11993],[175.6716,45.12203],[175.7548,45.12928],[175.87763,45.140083],[175.8776,45.14008],[175.9509,45.1477],[176.09241,45.1615],[176.0924,45.1615],[176.2424,45.17311],[176.30851,45.178587],[176.3085,45.17859],[176.3376,45.18018],[176.5069,45.19227],[176.52699,45.19412],[176.527,45.19412],[176.5565,45.19693],[176.7318,45.2139],[176.832,45.224097],[176.832,45.2241],[177.17251,45.25325],[177.1725,45.25325],[177.38141,45.27285],[177.3814,45.27285],[177.4868,45.28222],[177.60199,45.292417],[177.602,45.29242],[177.7135,45.3021],[177.78967,45.30887],[177.7897,45.30887],[177.8196,45.31153],[177.9866,45.32457],[178.06387,45.33025],[178.0639,45.33025],[178.27652,45.3472],[178.2765,45.3472],[178.3572,45.35373],[178.57265,45.373133],[178.5726,45.37313],[178.6534,45.38055],[178.85336,45.399033],[178.8534,45.39903],[178.9432,45.40683],[179.0056,45.41303],[179.26803,45.435183],[179.268,45.43518],[179.45739,45.451583],[179.4574,45.45158],[179.5311,45.4583],[179.65747,45.47095],[179.6575,45.47095],[179.89088,45.491017],[179.8909,45.49102],[179.9827,45.49872],[-179.80747,45.50878],[-179.8075,45.50878],[-179.69632,45.513233],[-179.6963,45.51323],[-179.37623,45.52705],[-179.3762,45.52705],[-179.2091,45.53515],[-178.97941,45.546],[-178.9794,45.546],[-178.77408,45.55565],[-178.7741,45.55565],[-178.7367,45.55708],[-178.5652,45.564367],[-178.5652,45.56437],[-178.5444,45.5652],[-178.4425,45.56972],[-178.10315,45.58495],[-178.1031,45.58495],[-178.0063,45.58935],[-177.8814,45.595183],[-177.8814,45.59518],[-177.7044,45.60435],[-177.6294,45.6078],[-177.32221,45.6194],[-177.3179,45.61948],[-177.2959,45.6203],[-177.2785,45.6209],[-177.2615,45.62163],[-177.2432,45.62222],[-177.1725,45.6245],[-176.74035,45.637663],[-176.7403,45.63766],[-176.51223,45.644617],[-176.4628,45.64633],[-176.4333,45.64752],[-176.4156,45.6482],[-176.25859,45.653583],[-176.2586,45.65358],[-175.98045,45.66305],[-175.9805,45.66305],[-175.69005,45.681837],[-175.69,45.68184],[-175.31639,45.703333],[-175.3164,45.70333],[-175.02183,45.717517],[-175.0218,45.71752],[-174.72257,45.717117],[-174.7226,45.71712],[-174.6541,45.71665],[-174.5045,45.71587],[-174.42283,45.715417],[-174.4228,45.71542],[-174.20183,45.71735],[-174.2018,45.71735],[-174.1408,45.7171],[-173.9758,45.71835],[-173.91833,45.718283],[-173.9183,45.71828],[-173.75,45.71646],[-173.65208,45.715717],[-173.6521,45.71572],[-173.5434,45.7155],[-173.36436,45.714803],[-173.3644,45.7148],[-173.3045,45.71522],[-173.14623,45.716667],[-173.1462,45.71667],[-173.0473,45.71695],[-172.85655,45.71815],[-172.8566,45.71815],[-172.7692,45.7185],[-172.7269,45.71827],[-172.61669,45.717433],[-172.6167,45.71743],[-172.4724,45.71567],[-172.4106,45.71568],[-172.27296,45.716],[-172.273,45.716],[-172.05048,45.716617],[-172.0505,45.71662],[-171.945,45.71684],[-171.8862,45.7166],[-171.81716,45.716533],[-171.8172,45.71653],[-171.53313,45.717],[-171.5331,45.717],[-171.3729,45.71765],[-171.14663,45.7175],[-171.1466,45.7175],[-170.97027,45.716567],[-170.9703,45.71657],[-170.70365,45.715183],[-170.7037,45.71518],[-170.665,45.71518],[-170.2736,45.71615],[-170.2736,45.71615],[-170.2182,45.71648],[-170.05041,45.716867],[-170.0504,45.71687],[-169.9776,45.7154],[-169.71868,45.7056],[-169.7187,45.7056],[-169.6724,45.70382],[-169.41248,45.693803],[-169.4125,45.6938],[-169.3604,45.69107],[-169.12312,45.676237],[-169.1231,45.67624],[-169.0663,45.67183],[-169.0056,45.66832],[-168.8258,45.66275],[-168.8258,45.66275],[-168.52005,45.65325],[-168.5201,45.65325],[-168.44455,45.649683],[-168.4445,45.64968],[-168.2392,45.63855],[-168.18055,45.63485],[-168.1805,45.63485],[-168.0027,45.62385],[-167.87123,45.616],[-167.7854,45.61023],[-167.6566,45.6029],[-167.6566,45.6029],[-167.43453,45.592133],[-167.4345,45.59213],[-167.3099,45.58728],[-167.1947,45.58298],[-167.0881,45.57945],[-167.0649,45.57873],[-167.0453,45.57815],[-166.94583,45.574967],[-166.87753,45.572767],[-166.8775,45.57277],[-166.7221,45.56778],[-166.50452,45.561163],[-166.5045,45.56116],[-166.4421,45.5592],[-166.25663,45.5533],[-166.2566,45.5533],[-166.1955,45.55168],[-166.03147,45.546467],[-166.0315,45.54647],[-165.9605,45.54393],[-165.8028,45.53235],[-165.8028,45.53235],[-165.7119,45.52453],[-165.58713,45.5146],[-165.5871,45.5146],[-165.514,45.5087],[-165.3466,45.49415],[-165.13277,45.474783],[-165.1328,45.47478],[-164.91549,45.455167],[-164.9155,45.45517],[-164.59165,45.429283],[-164.5788,45.42828],[-164.41847,45.416033],[-164.4185,45.41603],[-164.18333,45.39895],[-164.1833,45.39895],[-163.84415,45.373383],[-163.8441,45.37338],[-163.75545,45.3666],[-163.7554,45.3666],[-163.6362,45.35743],[-163.5459,45.35095],[-163.34935,45.335617],[-163.3493,45.33562],[-163.2613,45.3284],[-163.05381,45.312283],[-163.0538,45.31228],[-162.86107,45.297883],[-162.8611,45.29788],[-162.67641,45.284967],[-162.6764,45.28497],[-162.5976,45.27918],[-162.45645,45.268983],[-162.3862,45.2629],[-162.16621,45.241537],[-162.1662,45.24154],[-162.0838,45.23409],[-162.0267,45.22947],[-161.92733,45.221867],[-161.9273,45.22187],[-161.8831,45.21869],[-161.7137,45.2046],[-161.51669,45.185883],[-161.5167,45.18588],[-161.4953,45.18375],[-161.27813,45.163967],[-161.2781,45.16397],[-161.2319,45.15982],[-161.2121,45.15803],[-161.0498,45.143333],[-161.0498,45.14333],[-161.011,45.13977],[-160.87476,45.127117],[-160.8277,45.1229],[-160.7146,45.11312],[-160.62245,45.105217],[-160.6225,45.10522],[-160.6009,45.10349],[-160.432,45.08967],[-160.23376,45.072433],[-160.2338,45.07243],[-160.1546,45.06437],[-160.00796,45.049567],[-160.008,45.04957],[-159.79875,45.019],[-159.7988,45.019],[-159.56745,44.986683],[-159.5675,44.98668],[-159.4905,44.97685],[-159.4615,44.97337],[-159.36273,44.961383],[-159.3627,44.96138],[-159.2609,44.94853],[-159.1567,44.93464],[-159.1295,44.9309],[-158.96316,44.90755],[-158.9632,44.90755],[-158.8978,44.89827],[-158.65235,44.86418],[-158.5752,44.8534],[-158.5752,44.8534],[-158.26932,44.811367],[-158.2693,44.81137],[-157.97933,44.772617],[-157.9793,44.77262],[-157.72888,44.737817],[-157.7289,44.73782],[-157.6811,44.73117],[-157.6363,44.72465],[-157.43625,44.696483],[-157.4362,44.69648],[-157.381,44.6889],[-157.16849,44.65988],[-157.1685,44.65988],[-156.96521,44.63305],[-156.9652,44.63305],[-156.9182,44.627],[-156.8634,44.61975],[-156.80085,44.611783],[-156.8009,44.61178],[-156.7548,44.60568],[-156.7092,44.59952],[-156.50868,44.572917],[-156.5087,44.57292],[-156.28963,44.543817],[-156.2896,44.54382],[-156.0643,44.51439],[-155.99813,44.505567],[-155.9981,44.50557],[-155.8967,44.49193],[-155.694,44.46432],[-155.64781,44.4579],[-155.6478,44.4579],[-155.6025,44.45162],[-155.51163,44.438667],[-155.5116,44.43867],[-155.4053,44.42325],[-155.3896,44.42092],[-155.3728,44.41857],[-155.21045,44.39562],[-155.2104,44.39562],[-154.99388,44.364867],[-154.9939,44.36487],[-154.8619,44.34657],[-154.77973,44.334917],[-154.7797,44.33492],[-154.57309,44.301917],[-154.5731,44.30192],[-154.4127,44.27282],[-154.3684,44.26477],[-154.20709,44.2335],[-154.2071,44.2335],[-154.1534,44.22308],[-154.095,44.21167],[-153.95089,44.1831],[-153.9509,44.1831],[-153.81135,44.155883],[-153.8113,44.15588],[-153.58417,44.113383],[-153.5842,44.11338],[-153.5141,44.10057],[-153.3783,44.07707],[-153.17452,44.041733],[-153.1745,44.04173],[-153.12179,44.032467],[-153.117,44.03165],[-152.9668,44.00507],[-152.74992,43.965867],[-152.7499,43.96587],[-152.50723,43.92155],[-152.5072,43.92155],[-152.4477,43.91077],[-152.35309,43.894017],[-152.3531,43.89402],[-152.2002,43.86638],[-151.92312,43.817733],[-151.9231,43.81773],[-151.6508,43.7681],[-151.6508,43.7681],[-151.6093,43.76027],[-151.4787,43.73583],[-151.4456,43.72963],[-151.28236,43.69972],[-151.2824,43.69972],[-151.17372,43.67945],[-151.1015,43.6657],[-150.88927,43.624767],[-150.8483,43.6168],[-150.8307,43.61343],[-150.7838,43.60418],[-150.69445,43.586237],[-150.635,43.57433],[-150.555,43.55805],[-150.43279,43.532883],[-150.4328,43.53288],[-150.3411,43.51482],[-150.2828,43.50383],[-150.2288,43.49358],[-150.08221,43.46652],[-150.0822,43.46652],[-150.0201,43.4551],[-149.97689,43.447067],[-149.9769,43.44707],[-149.8051,43.41403],[-149.61372,43.368317],[-149.6137,43.36832],[-149.49876,43.341417],[-149.4988,43.34142],[-149.4683,43.33435],[-149.2852,43.29242],[-149.21672,43.276633],[-149.2167,43.27663],[-149.1628,43.26422],[-149.01068,43.2293],[-149.0107,43.2293],[-148.9709,43.22009],[-148.8617,43.19505],[-148.80372,43.181733],[-148.8037,43.18173],[-148.761,43.1719],[-148.6606,43.14867],[-148.6035,43.13548],[-148.55685,43.124717],[-148.5569,43.12472],[-148.4693,43.10402],[-148.4184,43.09215],[-148.4,43.08788],[-148.25556,43.053903],[-148.2556,43.0539],[-148.151,43.02928],[-148.05509,43.006683],[-147.9849,42.99032],[-147.8974,42.96972],[-147.85376,42.9595],[-147.7843,42.94304],[-147.64812,42.910867],[-147.5749,42.89362],[-147.4528,42.86588],[-147.35173,42.842983],[-147.3517,42.84298],[-147.1458,42.7975],[-147.0826,42.78358],[-146.82903,42.727367],[-146.829,42.72737],[-146.7887,42.71828],[-146.54307,42.66185],[-146.5431,42.66185],[-146.27583,42.598867],[-146.2758,42.59887],[-146.23203,42.588583],[-146.232,42.58858],[-146.0743,42.55227],[-146.01016,42.537333],[-146.0102,42.53733],[-145.9688,42.52755],[-145.7948,42.48717],[-145.73971,42.47473],[-145.7397,42.47473],[-145.6989,42.4657],[-145.6452,42.45412],[-145.51623,42.425483],[-145.5162,42.42548],[-145.4113,42.40187],[-145.3205,42.3813],[-145.24327,42.3637],[-145.2433,42.3637],[-145.1756,42.34827],[-145.05788,42.321083],[-145.0579,42.32108],[-144.9204,42.28288],[-144.8711,42.2679],[-144.8547,42.26295],[-144.66127,42.2063],[-144.6613,42.2063],[-144.6267,42.19667],[-144.46885,42.153333],[-144.4689,42.15333],[-144.428,42.14207],[-144.26881,42.097933],[-144.2688,42.09793],[-144.11616,42.0546],[-144.1162,42.0546],[-144.0544,42.03607],[-143.87053,41.981267],[-143.8705,41.98127],[-143.68375,41.925217],[-143.6837,41.92522],[-143.5299,41.88192],[-143.47007,41.865967],[-143.4701,41.86597],[-143.3393,41.83097],[-143.14575,41.776917],[-143.1458,41.77692],[-143.0754,41.7571],[-142.95128,41.721037],[-142.9008,41.70627],[-142.75228,41.6629],[-142.7064,41.64942],[-142.6641,41.63692],[-142.54093,41.601217],[-142.5409,41.60122],[-142.4797,41.58427],[-142.3584,41.54972],[-142.29252,41.530817],[-142.2925,41.53082],[-142.1883,41.50148],[-142.1639,41.4945],[-142.10116,41.47675],[-142.1012,41.47675],[-141.9549,41.43502],[-141.73825,41.37075],[-141.7383,41.37075],[-141.6856,41.35468],[-141.49787,41.301133],[-141.4577,41.28992],[-141.19827,41.215667],[-141.1983,41.21567],[-140.9878,41.1548],[-140.73459,41.0787],[-140.7346,41.0787],[-140.6579,41.05513],[-140.6125,41.04113],[-140.47181,40.998683],[-140.4019,40.97835],[-140.3407,40.96005],[-140.2258,40.925967],[-140.1823,40.91312],[-140.1516,40.9044],[-139.99183,40.858933],[-139.9918,40.85893],[-139.9154,40.83688],[-139.84063,40.815467],[-139.8406,40.81547],[-139.7705,40.79383],[-139.6473,40.75352],[-139.60068,40.737983],[-139.6007,40.73798],[-139.3934,40.66567],[-139.3934,40.66567],[-139.2179,40.60197],[-139.1807,40.5888],[-139.16376,40.582817],[-139.1241,40.5688],[-139.0089,40.52818],[-138.94288,40.50555],[-138.9429,40.50555],[-138.871,40.48055],[-138.8156,40.4615],[-138.69499,40.420817],[-138.695,40.42082],[-138.6354,40.40157],[-138.44065,40.336117],[-138.4407,40.33612],[-138.3879,40.31783],[-138.2928,40.28517],[-138.24209,40.26775],[-138.2421,40.26775],[-138.158,40.23918],[-138.1216,40.2266],[-138.0959,40.21772],[-138.04969,40.2016],[-138.0497,40.2016],[-137.9329,40.16095],[-137.8707,40.13975],[-137.8454,40.13137],[-137.70825,40.084767],[-137.7083,40.08477],[-137.6702,40.07133],[-137.648,40.06345],[-137.61273,40.051333],[-137.6127,40.05133],[-137.5178,40.01768],[-137.4757,40.00235],[-137.4395,39.98918],[-137.39699,39.97397],[-137.397,39.97397],[-137.3036,39.94008],[-137.268,39.9273],[-137.17016,39.89405],[-137.1702,39.89405],[-137.1278,39.87997],[-137.1114,39.87462],[-137.0722,39.86153],[-136.95512,39.822667],[-136.9551,39.82267],[-136.8965,39.80257],[-136.8586,39.78947],[-136.70425,39.735803],[-136.7043,39.7358],[-136.6316,39.71048],[-136.5822,39.69287],[-136.5515,39.6821],[-136.43039,39.639133],[-136.3757,39.61953],[-136.13075,39.535933],[-136.1308,39.53593],[-136.08763,39.521733],[-136.0876,39.52173],[-135.86603,39.44768],[-135.866,39.44768],[-135.7108,39.39247],[-135.6691,39.37697],[-135.62593,39.360783],[-135.6259,39.36078],[-135.5293,39.3243],[-135.39216,39.272167],[-135.3922,39.27217],[-135.3556,39.25813],[-135.16892,39.186833],[-135.1689,39.18683],[-135.1267,39.17103],[-135.0762,39.15187],[-134.99061,39.11935],[-134.9906,39.11935],[-134.8619,39.0697],[-134.7975,39.0452],[-134.7666,39.03362],[-134.66536,38.995067],[-134.6654,38.99507],[-134.5965,38.96863],[-134.54552,38.949317],[-134.5455,38.94932],[-134.4195,38.90243],[-134.3978,38.89447],[-134.35509,38.87818],[-134.3551,38.87818],[-134.3035,38.85887],[-134.1868,38.81475],[-134.1034,38.783433],[-134.1034,38.78343],[-134.0638,38.76885],[-134.0286,38.75597],[-133.9748,38.73537],[-133.948,38.72482],[-133.84076,38.682367],[-133.8408,38.68237],[-133.66033,38.606617],[-133.6603,38.60662],[-133.6197,38.58912],[-133.50068,38.537983],[-133.5007,38.53798],[-133.4501,38.51748],[-133.26433,38.442017],[-133.2643,38.44202],[-133.07745,38.366663],[-133.0775,38.36666],[-132.9366,38.30867],[-132.76736,38.238267],[-132.7674,38.23827],[-132.7049,38.21228],[-132.6424,38.18633],[-132.57752,38.159083],[-132.5775,38.15908],[-132.5397,38.14332],[-132.4971,38.12589],[-132.37829,38.078183],[-132.3783,38.07818],[-132.3059,38.04925],[-132.21575,38.013183],[-132.2157,38.01318],[-132.1427,37.98418],[-132.0567,37.92904],[-132.00379,37.908367],[-132.0038,37.90837],[-131.8979,37.86743],[-131.8538,37.85023],[-131.84125,37.845317],[-131.8191,37.83665],[-131.6784,37.78027],[-131.63793,37.7639],[-131.6379,37.7639],[-131.4419,37.68622],[-131.15999,37.57965],[-131.16,37.57965],[-131.1259,37.56536],[-130.97716,37.5041],[-130.9772,37.5041],[-130.9306,37.4851],[-130.8141,37.43638],[-130.73529,37.40315],[-130.7353,37.40315],[-130.6419,37.3644],[-130.49947,37.304267],[-130.4995,37.30427],[-130.4647,37.29013],[-130.28267,37.216817],[-130.2827,37.21682],[-130.2605,37.208],[-130.2089,37.18738],[-130.10108,37.1449],[-130.0639,37.13035],[-129.9579,37.08455],[-129.9212,37.06737],[-129.9212,37.067367],[-129.8504,37.03342],[-129.73895,36.97798],[-129.739,36.97798],[-129.6929,36.95632],[-129.5623,36.89387],[-129.51123,36.86935],[-129.4954,36.8618],[-129.3463,36.79072],[-129.30747,36.773183],[-129.3075,36.77318],[-129.2575,36.75113],[-129.164,36.71145],[-129.02379,36.649717],[-129.0238,36.64972],[-128.9829,36.63145],[-128.80353,36.5484],[-128.8035,36.5484],[-128.63027,36.46697],[-128.6303,36.46697],[-128.5956,36.45075],[-128.549,36.4291],[-128.43312,36.37515],[-128.4331,36.37515],[-128.3698,36.34555],[-128.3319,36.32777],[-128.29333,36.30985],[-128.2933,36.30985],[-128.2582,36.2936],[-128.1507,36.24427],[-128.114,36.2274],[-128.07601,36.208983],[-128.0708,36.20643],[-128.0412,36.19168],[-127.9301,36.13722],[-127.88621,36.115967],[-127.8862,36.11597],[-127.6884,36.02082],[-127.54505,35.95195],[-127.5451,35.95195],[-127.46187,35.91205],[-127.4619,35.91205],[-127.4182,35.89095],[-127.3798,35.87237],[-127.3452,35.85575],[-127.21039,35.79045],[-127.2104,35.79045],[-127.01921,35.698733],[-127.0192,35.69873],[-126.9919,35.68585],[-126.9525,35.66717],[-126.84652,35.616],[-126.8465,35.616],[-126.8137,35.59923],[-126.7201,35.55292],[-126.66296,35.525467],[-126.663,35.52547],[-126.5105,35.45168],[-126.16185,35.288867],[-126.1618,35.28887],[-126.00643,35.21725],[-126.0064,35.21725],[-125.89183,35.16643],[-125.8918,35.16643],[-125.64261,35.08705],[-125.6426,35.08705],[-125.49856,35.0663],[-125.4986,35.0663],[-125.4306,35.0564],[-125.415,35.05397],[-125.3493,35.04342],[-125.30133,35.035333],[-125.3013,35.03533],[-125.2408,35.02495],[-125.1579,35.01117],[-125.1112,35.00426],[-125.0728,34.998417],[-125.0728,34.99842],[-124.8882,34.97],[-124.8882,34.97],[-124.8561,34.96492],[-124.7399,34.94635],[-124.6913,34.93925],[-124.6422,34.93208],[-124.64216,34.932083],[-124.6031,34.92633],[-124.5456,34.91763],[-124.5006,34.91127],[-124.39341,34.896387],[-124.3528,34.89091],[-124.3166,34.88612],[-124.2962,34.88358],[-124.11901,34.861167],[-124.119,34.86117],[-123.975,34.84148],[-123.753,34.81223],[-123.5435,34.78528],[-123.5007,34.77932],[-123.399,34.76505],[-123.3882,34.76353],[-123.3738,34.76148],[-123.3592,34.75935],[-123.3441,34.75718],[-123.3303,34.75513],[-123.3135,34.75268],[-123.2973,34.7503],[-123.2823,34.74809],[-123.2649,34.74557],[-123.2494,34.74347],[-123.2353,34.74166],[-123.2165,34.73925],[-123.2032,34.73757],[-123.1872,34.73572],[-123.1774,34.73454],[-123.1676,34.73347],[-123.1595,34.73257],[-123.1526,34.73182],[-123.1453,34.73108],[-123.1383,34.73035],[-123.1334,34.72997],[-123.1295,34.72975],[-123.126,34.72955],[-123.1225,34.72892],[-123.1197,34.72813],[-123.1182,34.72712],[-123.1157,34.7248],[-123.1127,34.72265],[-123.1067,34.72158],[-123.0991,34.72066],[-123.0843,34.7188],[-123.0736,34.71741],[-123.062,34.71583],[-123.0501,34.71418],[-123.0391,34.71262],[-123.0228,34.71027],[-123.0055,34.70778],[-122.9922,34.70585],[-122.9791,34.70397],[-122.9653,34.702],[-122.9505,34.69983],[-122.9325,34.69732],[-122.9207,34.69572],[-122.9087,34.69397],[-122.8966,34.69208],[-122.8845,34.6903],[-122.8728,34.68857],[-122.8548,34.68585],[-122.8431,34.68432],[-122.8317,34.68272],[-122.8142,34.68007],[-122.8031,34.6785],[-122.7913,34.67688],[-122.7741,34.67445],[-122.7624,34.67285],[-122.7506,34.67123],[-122.7343,34.66902],[-122.7224,34.6674],[-122.711,34.66583],[-122.6997,34.66428],[-122.681,34.66177],[-122.6697,34.66025],[-122.6584,34.6587],[-122.647,34.6572],[-122.6286,34.6547],[-122.6167,34.65308],[-122.6052,34.65158],[-122.5877,34.6493],[-122.5763,34.64777],[-122.564,34.64608],[-122.5465,34.64365],[-122.534,34.64195],[-122.5227,34.6404],[-122.5054,34.63811],[-122.4931,34.63645],[-122.4811,34.6348],[-122.4636,34.63233],[-122.4518,34.6307],[-122.44,34.62907],[-122.4229,34.62673],[-122.4109,34.62515],[-122.3974,34.62337],[-122.3804,34.62108],[-122.3678,34.6194],[-122.3543,34.61762],[-122.3435,34.61585],[-122.3325,34.61407],[-122.3146,34.61115],[-122.3034,34.6094],[-122.2925,34.60762],[-122.2802,34.60562],[-122.2681,34.60357],[-122.2564,34.60162],[-122.2445,34.59962],[-122.2281,34.59682],[-122.2178,34.59505],[-122.206,34.59315],[-122.1943,34.59137],[-122.1766,34.58855],[-122.1605,34.58612],[-122.1488,34.58437],[-122.1376,34.58265],[-122.1195,34.5798],[-122.1079,34.57796],[-122.0966,34.57625],[-122.0792,34.57365],[-122.0673,34.57185],[-122.0556,34.57003],[-122.0377,34.56723],[-122.0258,34.56545],[-122.014,34.56368],[-121.9936,34.56083],[-121.9771,34.5585],[-121.9657,34.55685],[-121.9549,34.55527],[-121.9429,34.5534],[-121.9255,34.5507],[-121.9141,34.54882],[-121.9029,34.54693],[-121.8902,34.5448],[-121.8797,34.54305],[-121.8684,34.54137],[-121.8574,34.53965],[-121.8466,34.53812],[-121.8301,34.53568],[-121.8188,34.5342],[-121.8085,34.53287],[-121.7966,34.53135],[-121.7848,34.52991],[-121.7676,34.5279],[-121.7555,34.52655],[-121.7441,34.52532],[-121.7274,34.52357],[-121.7094,34.5218],[-121.6975,34.52072],[-121.6853,34.5196],[-121.6676,34.51803],[-121.6555,34.51695],[-121.6447,34.51591],[-121.6327,34.51483],[-121.6161,34.51322],[-121.6048,34.51203],[-121.5934,34.5108],[-121.5819,34.50957],[-121.5696,34.50823],[-121.559,34.50705],[-121.5481,34.50592],[-121.5357,34.50457],[-121.5195,34.50277],[-121.5027,34.50051],[-121.4917,34.49893],[-121.4807,34.49738],[-121.4686,34.49557],[-121.4575,34.49385],[-121.4464,34.49208],[-121.4352,34.49032],[-121.4172,34.48742],[-121.406,34.48558],[-121.3937,34.48347],[-121.382,34.48152],[-121.3703,34.47958],[-121.3592,34.47773],[-121.3414,34.47465],[-121.3286,34.47248],[-121.317,34.4705],[-121.3001,34.46755],[-121.2885,34.46548],[-121.2768,34.4633],[-121.2597,34.46017],[-121.248,34.45803],[-121.2358,34.45573],[-121.2237,34.45345],[-121.2124,34.45145],[-121.2018,34.4495],[-121.1845,34.4464],[-121.1728,34.44432],[-121.162,34.44243],[-121.1514,34.44053],[-121.1398,34.43862],[-121.1227,34.4357],[-121.1119,34.4339],[-121.1003,34.43198],[-121.0889,34.43018],[-121.0715,34.42748],[-121.0601,34.42585],[-121.0481,34.42413],[-121.0309,34.42152],[-121.0195,34.41958],[-121.0084,34.41782],[-120.9945,34.41568],[-120.9836,34.4139],[-120.973,34.41215],[-120.9603,34.41002],[-120.944,34.40714],[-120.927,34.40448],[-120.9157,34.40317],[-120.9042,34.40193],[-120.8862,34.39993],[-120.8751,34.39865],[-120.8631,34.39727],[-120.8511,34.39582],[-120.8336,34.3931],[-120.8212,34.39058],[-120.8107,34.38833],[-120.7937,34.38492],[-120.7819,34.38238],[-120.7701,34.37988],[-120.753,34.37646],[-120.7369,34.37342],[-120.7259,34.37122],[-120.7143,34.36893],[-120.6963,34.36548],[-120.6847,34.36338],[-120.674,34.36128],[-120.6627,34.35887],[-120.6456,34.35525],[-120.6345,34.35293],[-120.623,34.35042],[-120.6069,34.34687],[-120.5957,34.34437],[-120.5846,34.34198],[-120.5729,34.33938],[-120.5556,34.33538],[-120.5443,34.33272],[-120.5327,34.32998],[-120.5218,34.32747],[-120.5047,34.32395],[-120.4932,34.32157],[-120.4823,34.31878],[-120.4656,34.31475],[-120.4546,34.31188],[-120.4443,34.3092],[-120.4332,34.30658],[-120.4225,34.30402],[-120.4056,34.3],[-120.394,34.29723],[-120.3825,34.29445],[-120.3661,34.29035],[-120.3547,34.28747],[-120.344,34.28465],[-120.3268,34.28038],[-120.3155,34.27757],[-120.3039,34.27485],[-120.2868,34.27103],[-120.2713,34.26755],[-120.2602,34.26502],[-120.2484,34.26245],[-120.2319,34.25893],[-120.2201,34.25653],[-120.208,34.25395],[-120.1903,34.25028],[-120.179,34.24792],[-120.1679,34.24567],[-120.1558,34.24313],[-120.1389,34.23973],[-120.1275,34.23705],[-120.1168,34.2346],[-120.0999,34.23068],[-120.0889,34.22803],[-120.0778,34.22545],[-120.0678,34.22317],[-120.0569,34.22082],[-120.0458,34.21837],[-120.0288,34.21467],[-120.0171,34.21212],[-120.0055,34.20957],[-119.9883,34.20575],[-119.9767,34.20317],[-119.9646,34.20049],[-119.9531,34.19798],[-119.9424,34.19563],[-119.9315,34.19316],[-119.9208,34.19075],[-119.909,34.188],[-119.8981,34.18538],[-119.8866,34.18279],[-119.8752,34.18012],[-119.858,34.17608],[-119.8466,34.17345],[-119.8355,34.17095],[-119.8245,34.16848],[-119.8126,34.1658],[-119.8006,34.16313],[-119.789,34.1605],[-119.7779,34.15802],[-119.7662,34.15528],[-119.7549,34.15262],[-119.7385,34.1488],[-119.7266,34.14612],[-119.7155,34.14347],[-119.7026,34.1407],[-119.6915,34.1383],[-119.6806,34.136],[-119.6695,34.1336],[-119.6528,34.12993],[-119.6373,34.12662],[-119.6255,34.12408],[-119.6141,34.12153],[-119.5976,34.1178],[-119.5869,34.11532],[-119.5753,34.1126],[-119.5649,34.11005],[-119.5541,34.10747],[-119.538,34.1035],[-119.5289,34.10117],[-119.519,34.0988],[-119.5085,34.0963],[-119.493,34.09272],[-119.4825,34.09033],[-119.4725,34.08807],[-119.4622,34.08583],[-119.451,34.08345],[-119.4403,34.0812],[-119.4302,34.07905],[-119.4148,34.07583],[-119.404,34.07368],[-119.3929,34.07143],[-119.3824,34.0693],[-119.3661,34.06602],[-119.3559,34.06392],[-119.3443,34.06147],[-119.3339,34.05919],[-119.3232,34.05673],[-119.3135,34.05448],[-119.3039,34.05219],[-119.2934,34.04973],[-119.2791,34.0456],[-119.2696,34.0423],[-119.2594,34.03853],[-119.2502,34.03452],[-119.2411,34.0306],[-119.2311,34.02628],[-119.2173,34.0202],[-119.2075,34.01575],[-119.1983,34.01163],[-119.1891,34.0076],[-119.175,34.0035],[-119.1659,34.00162],[-119.1555,33.99738],[-119.1475,33.99328],[-119.1392,33.98895],[-119.1299,33.98418],[-119.1208,33.97937],[-119.112,33.97477],[-119.104,33.9706],[-119.0968,33.96668],[-119.0886,33.96232],[-119.0775,33.95647]]}}
{"type":"Feature","geometry":{"type":"LineString","coordinates":[[114.8602,22.2696],[114.8602,22.2696],[119.51889,22.441317],[119.51889,22.441317],[119.5189,22.44132],[119.5189,22.44132],[119.55036,22.444767],[119.55036,22.444767],[119.5504,22.44477],[119.5504,22.44477],[119.5987,22.44882],[119.5987,22.44882],[119.6597,22.44472],[119.6597,22.44472],[119.6782,22.44343],[119.6782,22.44343],[119.7532,22.44953],[119.7532,22.44953],[119.81209,22.454797],[119.81209,22.454797],[119.8121,22.4548],[119.8121,22.4548],[119.8283,22.45633],[119.8283,22.45633],[119.8484,22.45806],[119.8484,22.45806],[119.8872,22.46152],[119.8872,22.46152],[119.9047,22.46331],[119.9047,22.46331],[119.92331,22.466153],[119.92331,22.466153],[119.9233,22.46615],[119.9233,22.46615],[119.9417,22.46895],[119.9417,22.46895],[119.9588,22.4715],[119.9588,22.4715],[119.9781,22.47456],[119.9781,22.47456],[119.9937,22.47695],[119.9937,22.47695],[120.0095,22.47935],[120.0095,22.47935],[120.0226,22.48083],[120.0226,22.48083],[120.0427,22.48229],[120.0427,22.48229],[120.0541,22.48314],[120.0541,22.48314],[120.0678,22.4841],[120.0678,22.4841],[120.0837,22.48538],[120.0837,22.48538],[120.0938,22.48623],[120.0938,22.48623],[120.09337,22.48619],[120.09337,22.48619],[120.1057,22.48709],[120.1057,22.48709],[120.1161,22.48958],[120.1161,22.48958],[120.1306,22.49458],[120.1306,22.49458],[120.1426,22.49845],[120.1426,22.49845],[120.151,22.50106],[120.151,22.50106],[120.1603,22.504],[120.1603,22.504],[120.1684,22.50645],[120.1684,22.50645],[120.1777,22.50929],[120.1777,22.50929],[120.1858,22.51179],[120.1858,22.51179],[120.1935,22.51423],[120.1935,22.51423],[120.2012,22.51667],[120.2012,22.51667],[120.20581,22.518185],[120.20581,22.518185],[120.2081,22.51893],[120.2081,22.51893],[120.2177,22.52228],[120.2177,22.52228],[120.2209,22.52405],[120.2209,22.52405],[120.2207,22.52459],[120.2207,22.52459],[120.2205,22.52493],[120.2205,22.52493],[120.2202,22.52555],[120.2202,22.52555],[120.22,22.52592],[120.22,22.52592],[120.2198,22.52617],[120.2198,22.52617],[120.21979,22.526227],[120.21979,22.526227],[120.2196,22.52649],[120.2196,22.52649],[120.2192,22.52705],[120.2192,22.52705],[120.2209,22.52851],[120.2209,22.52851],[120.2222,22.52956],[120.2222,22.52956],[120.2234,22.53052],[120.2234,22.53052],[120.2244,22.53132],[120.2244,22.53132],[120.2252,22.53207],[120.2252,22.53207],[120.2261,22.53295],[120.2261,22.53295],[120.2269,22.53386],[120.2269,22.53386],[120.2282,22.53539],[120.2282,22.53539],[120.22875,22.536127],[120.22875,22.536127],[120.2292,22.53686],[120.2292,22.53686],[120.2297,22.53758],[120.2297,22.53758],[120.2305,22.53907],[120.2305,22.53907],[120.2308,22.53967],[120.2308,22.53967],[120.2311,22.5402],[120.2311,22.5402],[120.2319,22.54139],[120.2319,22.54139],[120.2335,22.54224],[120.2335,22.54224],[120.2357,22.54243],[120.2357,22.54243],[120.2367,22.54236],[120.2367,22.54236],[120.2374,22.54227],[120.2374,22.54227],[120.2381,22.54219],[120.2381,22.54219],[120.2388,22.54209],[120.2388,22.54209],[120.23867,22.542125],[120.23867,22.542125],[120.2398,22.54192],[120.2398,22.54192],[120.2405,22.54178],[120.2405,22.54178],[120.2408,22.54173],[120.2408,22.54173],[120.2412,22.54165],[120.2412,22.54165],[120.2425,22.54134],[120.2425,22.54134],[120.2431,22.54053],[120.2431,22.54053],[120.245,22.53876],[120.245,22.53876],[120.2471,22.5384],[120.2471,22.5384],[120.24715,22.538403],[120.24715,22.538403],[120.2499,22.53914],[120.2499,22.53914],[120.2549,22.54048],[120.2549,22.54048],[120.2607,22.54175],[120.2607,22.54175],[120.2687,22.54347],[120.2687,22.54347],[120.2745,22.54462],[120.2745,22.54462],[120.2808,22.54577],[120.2808,22.54577],[120.2863,22.54694],[120.2863,22.54694],[120.2919,22.54821],[120.2919,22.54821],[120.2968,22.54902],[120.2968,22.54902],[120.3023,22.54983],[120.3023,22.54983],[120.3068,22.55068],[120.3068,22.55068],[120.311,22.55144],[120.311,22.55144],[120.31425,22.552008],[120.31425,22.552008],[120.3149,22.55214],[120.3149,22.55214],[120.3177,22.55293],[120.3177,22.55293],[120.3198,22.55475],[120.3198,22.55475],[120.3196,22.55655],[120.3196,22.55655],[120.319,22.55799],[120.319,22.55799],[120.3184,22.55927],[120.3184,22.55927],[120.3185,22.55956],[120.3185,22.55956],[120.31875,22.559907],[120.31875,22.559907],[120.3187,22.55991],[120.3187,22.55991],[120.31872,22.559925],[120.31872,22.559925],[120.3187,22.55993],[120.3187,22.55993],[120.3187,22.55993],[120.3187,22.55993],[120.31875,22.55993],[120.31875,22.55993],[120.3187,22.55996],[120.3187,22.55996],[120.31873,22.559972],[120.31873,22.559972],[120.3188,22.55998],[120.3188,22.55998],[120.31872,22.560027],[120.31872,22.560027],[120.3187,22.56003],[120.3187,22.56003],[120.3187,22.55998],[120.3187,22.55998],[120.31875,22.559987],[120.31875,22.559987],[120.3187,22.56001],[120.3187,22.56001],[120.31872,22.559998],[120.31872,22.559998],[120.3187,22.56003],[120.3187,22.56003],[120.3187,22.56],[120.3187,22.56],[120.31869,22.559975],[120.31869,22.559975],[120.3187,22.55996],[120.3187,22.55996],[120.31872,22.559958],[120.31872,22.559958],[120.3187,22.55999],[120.3187,22.55999],[120.3188,22.559943],[120.3188,22.559943],[120.3188,22.55994],[120.3188,22.55994],[120.3187,22.55997],[120.3187,22.55997],[120.31873,22.559962],[120.31873,22.559962],[120.3187,22.55996],[120.3187,22.55996],[120.31872,22.559935],[120.31872,22.559935],[120.3187,22.55996],[120.3187,22.55996],[120.3187,22.55996],[120.3187,22.55996],[120.31875,22.55995],[120.31875,22.55995],[120.3188,22.55993],[120.3188,22.55993],[120.3188,22.559928],[120.3188,22.559928],[120.3188,22.55996],[120.3188,22.55996],[120.31875,22.559975],[120.31875,22.559975],[120.3187,22.55996],[120.3187,22.55996],[120.31873,22.559958],[120.31873,22.559958],[120.3187,22.55996],[120.3187,22.55996],[120.3187,22.55999],[120.3187,22.55999],[120.31875,22.560003],[120.31875,22.560003],[120.3187,22.55998],[120.3187,22.55998],[120.31876,22.559972],[120.31876,22.559972],[120.3188,22.55996],[120.3188,22.55996],[120.31875,22.559977],[120.31875,22.559977],[120.3187,22.55998],[120.3187,22.55998],[120.3188,22.55996],[120.3188,22.55996],[120.31876,22.559968],[120.31876,22.559968],[120.3188,22.55996],[120.3188,22.55996],[120.31876,22.559965],[120.31876,22.559965],[120.3188,22.55998],[120.3188,22.55998],[120.3188,22.55996],[120.3188,22.55996],[120.31873,22.559985],[120.31873,22.559985],[120.3186,22.55986],[120.3186,22.55986],[120.3184,22.55947],[120.3184,22.55947],[120.3193,22.55793],[120.3193,22.55793],[120.3211,22.5561],[120.3211,22.5561],[120.32187,22.555288],[120.32187,22.555288],[120.3238,22.55372],[120.3238,22.55372],[120.3256,22.55263],[120.3256,22.55263],[120.3266,22.5521],[120.3266,22.5521],[120.32752,22.551572],[120.32752,22.551572],[120.3275,22.55157],[120.3275,22.55157],[120.3264,22.55277],[120.3264,22.55277],[120.3247,22.55321],[120.3247,22.55321],[120.322,22.55327],[120.322,22.55327],[120.3191,22.55273],[120.3191,22.55273],[120.3152,22.55205],[120.3152,22.55205],[120.31288,22.551627],[120.31288,22.551627],[120.3101,22.55113],[120.3101,22.55113],[120.3021,22.54973],[120.3021,22.54973],[120.2925,22.54812],[120.2925,22.54812],[120.2811,22.54744],[120.2811,22.54744],[120.2695,22.54705],[120.2695,22.54705],[120.2603,22.54403],[120.2603,22.54403],[120.2423,22.5462],[120.2423,22.5462],[120.2268,22.54577],[120.2268,22.54577],[120.2076,22.54579],[120.2076,22.54579],[120.1945,22.54965],[120.1945,22.54965],[120.1773,22.55837],[120.1773,22.55837],[120.16775,22.563368],[120.16775,22.563368],[120.1646,22.56501],[120.1646,22.56501],[120.1519,22.57176],[120.1519,22.57176],[120.1381,22.57922],[120.1381,22.57922],[120.1245,22.58652],[120.1245,22.58652],[120.1098,22.59446],[120.1098,22.59446],[120.0965,22.60162],[120.0965,22.60162],[120.0795,22.61413],[120.0795,22.61413],[120.0696,22.62323],[120.0696,22.62323],[120.0608,22.63325],[120.0608,22.63325],[120.0526,22.64477],[120.0526,22.64477],[120.0456,22.65696],[120.0456,22.65696],[120.0395,22.66892],[120.0395,22.66892],[120.03952,22.668925],[120.03952,22.668925],[120.033,22.68157],[120.033,22.68157],[120.0236,22.69945],[120.0236,22.69945],[120.0161,22.71234],[120.0161,22.71234],[120.0086,22.72383],[120.0086,22.72383],[120.0007,22.73585],[120.0007,22.73585],[119.9905,22.75116],[119.9905,22.75116],[119.9778,22.77031],[119.9778,22.77031],[119.9723,22.77822],[119.9723,22.77822],[119.9635,22.79181],[119.9635,22.79181],[119.9536,22.81015],[119.9536,22.81015],[119.9476,22.82237],[119.9476,22.82237],[119.94103,22.83552],[119.94103,22.83552],[119.941,22.83552],[119.941,22.83552],[119.9335,22.85051],[119.9335,22.85051],[119.9272,22.86263],[119.9272,22.86263],[119.9201,22.87623],[119.9201,22.87623],[119.9128,22.8903],[119.9128,22.8903],[119.9069,22.9007],[119.9069,22.9007],[119.8996,22.91624],[119.8996,22.91624],[119.893,22.92947],[119.893,22.92947],[119.8862,22.94218],[119.8862,22.94218],[119.8777,22.96321],[119.8777,22.96321],[119.8742,22.97686],[119.8742,22.97686],[119.873,22.98876],[119.873,22.98876],[119.8695,23.03502],[119.8695,23.03502],[119.86913,23.042292],[119.86913,23.042292],[119.8677,23.07778],[119.8677,23.07778],[119.867,23.09655],[119.867,23.09655],[119.8664,23.11199],[119.8664,23.11199],[119.8665,23.12483],[119.8665,23.12483],[119.8656,23.14215],[119.8656,23.14215],[119.8638,23.16849],[119.8638,23.16849],[119.8645,23.18385],[119.8645,23.18385],[119.86493,23.19215],[119.86493,23.19215],[119.8655,23.20341],[119.8655,23.20341],[119.867,23.23263],[119.867,23.23263],[119.8678,23.24703],[119.8678,23.24703],[119.8689,23.26998],[119.8689,23.26998],[119.8701,23.28622],[119.8701,23.28622],[119.8714,23.30164],[119.8714,23.30164],[119.8726,23.31642],[119.8726,23.31642],[119.8738,23.33133],[119.8738,23.33133],[119.8749,23.34554],[119.8749,23.34554],[119.8764,23.35962],[119.8764,23.35962],[119.87681,23.368037],[119.87681,23.368037],[119.8774,23.37518],[119.8774,23.37518],[119.8788,23.3894],[119.8788,23.3894],[119.8801,23.40486],[119.8801,23.40486],[119.8823,23.4164],[119.8823,23.4164],[119.8852,23.439],[119.8852,23.439],[119.8879,23.45306],[119.8879,23.45306],[119.8904,23.46716],[119.8904,23.46716],[119.893,23.48125],[119.893,23.48125],[119.8955,23.49529],[119.8955,23.49529],[119.9011,23.52612],[119.9011,23.52612],[119.90639,23.564037],[119.90639,23.564037],[119.9064,23.56404],[119.9064,23.56404],[119.9025,23.61792],[119.9025,23.61792],[119.8984,23.64056],[119.8984,23.64056],[119.8955,23.65492],[119.8955,23.65492],[119.8925,23.66921],[119.8925,23.66921],[119.8894,23.68459],[119.8894,23.68459],[119.88259,23.803915],[119.88259,23.803915],[119.8826,23.80392],[119.8826,23.80392],[119.8787,23.8768],[119.8787,23.8768],[119.8991,23.9094],[119.8991,23.9094],[119.9201,23.93579],[119.9201,23.93579],[119.9401,23.95946],[119.9401,23.95946],[119.9511,23.97369],[119.9511,23.97369],[119.9702,23.99794],[119.9702,23.99794],[119.9874,24.01959],[119.9874,24.01959],[119.9983,24.0332],[119.9983,24.0332],[120.0087,24.0473],[120.0087,24.0473],[120.0345,24.08238],[120.0345,24.08238],[120.0517,24.10558],[120.0517,24.10558],[120.0632,24.1211],[120.0632,24.1211],[120.0702,24.13048],[120.0702,24.13048],[120.0914,24.15895],[120.0914,24.15895],[120.1173,24.19356],[120.1173,24.19356],[120.1321,24.21335],[120.1321,24.21335],[120.1386,24.22202],[120.1386,24.22202],[120.1475,24.23383],[120.1475,24.23383],[120.1557,24.24468],[120.1557,24.24468],[120.1634,24.2552],[120.1634,24.2552],[120.1739,24.26918],[120.1739,24.26918],[120.1836,24.2823],[120.1836,24.2823],[120.1957,24.29893],[120.1957,24.29893],[120.204,24.30998],[120.204,24.30998],[120.2134,24.32021],[120.2134,24.32021],[120.223,24.33092],[120.223,24.33092],[120.2316,24.34295],[120.2316,24.34295],[120.243,24.35939],[120.243,24.35939],[120.2499,24.37008],[120.2499,24.37008],[120.2564,24.3802],[120.2564,24.3802],[120.2661,24.39555],[120.2661,24.39555],[120.2715,24.4058],[120.2715,24.4058],[120.2769,24.41597],[120.2769,24.41597],[120.2826,24.42674],[120.2826,24.42674],[120.2921,24.44089],[120.2921,24.44089],[120.2998,24.45182],[120.2998,24.45182],[120.3075,24.46272],[120.3075,24.46272],[120.316,24.47326],[120.316,24.47326],[120.3239,24.48275],[120.3239,24.48275],[120.332,24.49236],[120.332,24.49236],[120.3398,24.50151],[120.3398,24.50151],[120.3483,24.51148],[120.3483,24.51148],[120.3569,24.52156],[120.3569,24.52156],[120.3654,24.53131],[120.3654,24.53131],[120.3739,24.54126],[120.3739,24.54126],[120.3853,24.55618],[120.3853,24.55618],[120.3929,24.56622],[120.3929,24.56622],[120.4009,24.57666],[120.4009,24.57666],[120.4097,24.5882],[120.4097,24.5882],[120.4167,24.59989],[120.4167,24.59989],[120.4235,24.61174],[120.4235,24.61174],[120.4332,24.62858],[120.4332,24.62858],[120.4407,24.63963],[120.4407,24.63963],[120.4495,24.6501],[120.4495,24.6501],[120.4586,24.6609],[120.4586,24.6609],[120.4671,24.67137],[120.4671,24.67137],[120.4751,24.68145],[120.4751,24.68145],[120.4852,24.69828],[120.4852,24.69828],[120.4918,24.70919],[120.4918,24.70919],[120.4988,24.72051],[120.4988,24.72051],[120.51,24.73831],[120.51,24.73831],[120.5176,24.74888],[120.5176,24.74888],[120.525,24.75966],[120.525,24.75966],[120.5335,24.77201],[120.5335,24.77201],[120.541,24.78282],[120.541,24.78282],[120.549,24.79419],[120.549,24.79419],[120.563,24.81171],[120.563,24.81171],[120.5716,24.82205],[120.5716,24.82205],[120.5815,24.83117],[120.5815,24.83117],[120.5964,24.84488],[120.5964,24.84488],[120.6074,24.85504],[120.6074,24.85504],[120.618,24.86455],[120.618,24.86455],[120.6291,24.87469],[120.6291,24.87469],[120.6503,24.90356],[120.6503,24.90356],[120.6758,24.94147],[120.6758,24.94147],[120.6873,24.95854],[120.6873,24.95854],[120.6981,24.97431],[120.6981,24.97431],[120.7589,25.06462],[120.7589,25.06462],[120.856,25.18825],[120.856,25.18825],[120.8858,25.2182],[120.8858,25.2182],[120.9121,25.24451],[120.9121,25.24451],[120.926,25.25603],[120.926,25.25603],[120.9453,25.26916],[120.9453,25.26916],[120.9585,25.27757],[120.9585,25.27757],[120.9733,25.28696],[120.9733,25.28696],[120.9871,25.29564],[120.9871,25.29564],[121.0356,25.33008],[121.0356,25.33008],[121.0536,25.34544],[121.0536,25.34544],[121.0658,25.35594],[121.0658,25.35594],[121.1048,25.38878],[121.1048,25.38878],[121.1277,25.40769],[121.1277,25.40769],[121.155,25.42985],[121.155,25.42985],[121.2017,25.46712],[121.2017,25.46712],[121.2301,25.48939],[121.2301,25.48939],[121.5019,25.70543],[121.5019,25.70543],[121.5143,25.71704],[121.5143,25.71704],[121.5309,25.73007],[121.5309,25.73007],[121.6576,25.83182],[121.6576,25.83182],[121.6725,25.84419],[121.6725,25.84419],[122.6015,26.57284],[122.6015,26.57284],[122.6805,26.63578],[122.6805,26.63578],[122.9262,26.82585],[122.9262,26.82585],[122.9599,26.85205],[122.9599,26.85205],[126.9537,29.02274],[126.9537,29.02274],[127.0156,29.05296],[127.0156,29.05296],[127.1142,29.1008],[127.1142,29.1008],[127.1533,29.11983],[127.1533,29.11983],[127.2301,29.15691],[127.2301,29.15691],[127.2849,29.18365],[127.2849,29.18365],[127.3403,29.21071],[127.3403,29.21071],[127.4841,29.28073],[127.4841,29.28073],[128.6578,29.85103],[128.6578,29.85103],[128.9879,30.02004],[128.9879,30.02004],[129.1373,30.08864],[129.1373,30.08864],[129.1825,30.10954],[129.1825,30.10954],[129.2294,30.13112],[129.2294,30.13112],[129.3565,30.18837],[129.3565,30.18837],[129.4038,30.21123],[129.4038,30.21123],[129.426,30.22207],[129.426,30.22207],[129.47003,30.242767],[129.47003,30.242767],[129.4725,30.24391],[129.4725,30.24391],[129.4968,30.25495],[129.4968,30.25495],[129.521,30.26597],[129.521,30.26597],[129.5616,30.28429],[129.5616,30.28429],[129.5961,30.30016],[129.5961,30.30016],[129.6189,30.3106],[129.6189,30.3106],[129.6601,30.33069],[129.6601,30.33069],[129.6837,30.3427],[129.6837,30.3427],[129.7194,30.36101],[129.7194,30.36101],[129.7497,30.37637],[129.7497,30.37637],[129.7837,30.39331],[129.7837,30.39331],[129.8136,30.40925],[129.8136,30.40925],[129.836,30.42096],[129.836,30.42096],[129.8745,30.43973],[129.8745,30.43973],[129.9037,30.45369],[129.9037,30.45369],[129.9361,30.46917],[129.9361,30.46917],[129.9604,30.48126],[129.9604,30.48126],[130.3084,30.628637],[130.3084,30.628637],[130.37187,30.65598],[130.37187,30.65598],[130.58967,30.740277],[130.58967,30.740277],[130.69625,30.783973],[130.69625,30.783973],[131.01119,30.921307],[131.01119,30.921307],[131.09056,30.958327],[131.09056,30.958327],[132.04685,31.406643],[132.04685,31.406643],[132.0469,31.40664],[132.0469,31.40664],[132.29592,31.523007],[132.29592,31.523007],[132.412,31.57732],[132.412,31.57732],[132.41249,31.57754],[132.41249,31.57754],[132.5061,31.62112],[132.5061,31.62112],[132.63332,31.68052],[132.63332,31.68052],[132.76625,31.742467],[132.76625,31.742467],[132.93624,31.821573],[132.93624,31.821573],[133.10812,31.901453],[133.10812,31.901453],[133.28576,31.984013],[133.28576,31.984013],[133.46616,32.06778],[133.46616,32.06778],[133.67283,32.163813],[133.67283,32.163813],[133.84267,32.242593],[133.84267,32.242593],[134.01529,32.322583],[134.01529,32.322583],[134.20061,32.408227],[134.20061,32.408227],[134.36885,32.485867],[134.36885,32.485867],[135.38313,32.90867],[135.38313,32.90867],[135.4447,32.93405],[135.4447,32.93405],[135.4584,32.93993],[135.4584,32.93993],[135.47724,32.94774],[135.47724,32.94774],[135.4778,32.94796],[135.4778,32.94796],[135.4936,32.95447],[135.4936,32.95447],[135.5195,32.96521],[135.5195,32.96521],[135.536,32.97202],[135.536,32.97202],[135.5455,32.97598],[135.5455,32.97598],[135.5728,32.98724],[135.5728,32.98724],[135.5869,32.99317],[135.5869,32.99317],[135.6097,33.00259],[135.6097,33.00259],[135.6322,33.01201],[135.6322,33.01201],[135.6626,33.024677],[135.6626,33.024677],[135.6535,33.02068],[135.6535,33.02068],[135.731,33.05267],[135.731,33.05267],[135.7406,33.05685],[135.7406,33.05685],[135.7523,33.06181],[135.7523,33.06181],[135.77,33.06893],[135.77,33.06893],[135.7915,33.07785],[135.7915,33.07785],[135.8132,33.08679],[135.8132,33.08679],[135.8401,33.09811],[135.8401,33.09811],[135.86464,33.108203],[135.86464,33.108203],[135.8646,33.1082],[135.8646,33.1082],[135.8871,33.11751],[135.8871,33.11751],[135.913,33.12814],[135.913,33.12814],[135.9416,33.13993],[135.9416,33.13993],[135.9636,33.14913],[135.9636,33.14913],[135.9818,33.15655],[135.9818,33.15655],[136.0033,33.16548],[136.0033,33.16548],[136.0249,33.17444],[136.0249,33.17444],[136.0405,33.18083],[136.0405,33.18083],[136.07221,33.193993],[136.07221,33.193993],[136.06,33.18898],[136.06,33.18898],[136.0864,33.19989],[136.0864,33.19989],[136.0988,33.20502],[136.0988,33.20502],[136.1198,33.21365],[136.1198,33.21365],[136.1475,33.2251],[136.1475,33.2251],[136.1823,33.23956],[136.1823,33.23956],[136.2082,33.25019],[136.2082,33.25019],[136.234,33.26081],[136.234,33.26081],[136.2346,33.2611],[136.2346,33.2611],[136.26177,33.2723],[136.26177,33.2723],[136.2618,33.2723],[136.2618,33.2723],[136.2863,33.2824],[136.2863,33.2824],[136.3122,33.29309],[136.3122,33.29309],[136.3368,33.30325],[136.3368,33.30325],[136.3379,33.30374],[136.3379,33.30374],[136.366,33.31536],[136.366,33.31536],[136.3844,33.3229],[136.3844,33.3229],[136.402,33.33025],[136.402,33.33025],[136.412,33.33432],[136.412,33.33432],[136.46903,33.357893],[136.46903,33.357893],[136.91663,33.544193],[136.91663,33.544193],[136.9949,33.57823],[136.9949,33.57823],[137.2256,33.67557],[137.2256,33.67557],[137.3648,33.72783],[137.3648,33.72783],[137.38397,33.734717],[137.38397,33.734717],[137.58253,33.811553],[137.58253,33.811553],[137.7037,33.85867],[137.7037,33.85867],[137.75543,33.881747],[137.75543,33.881747],[137.91397,33.949023],[137.91397,33.949023],[138.0587,34.00973],[138.0587,34.00973],[138.0812,34.01908],[138.0812,34.01908],[138.09413,34.024373],[138.09413,34.024373],[138.1169,34.03391],[138.1169,34.03391],[138.1918,34.06487],[138.1918,34.06487],[138.212,34.07326],[138.212,34.07326],[138.2291,34.08018],[138.2291,34.08018],[138.2437,34.08636],[138.2437,34.08636],[138.27061,34.097353],[138.27061,34.097353],[138.44336,34.170833],[138.44336,34.170833],[138.61683,34.242093],[138.61683,34.242093],[138.76715,34.301407],[138.76715,34.301407],[138.8817,34.34648],[138.8817,34.34648],[138.895,34.35164],[138.895,34.35164],[138.9133,34.35871],[138.9133,34.35871],[138.9267,34.36434],[138.9267,34.36434],[138.9422,34.37099],[138.9422,34.37099],[138.94772,34.373447],[138.94772,34.373447],[139.0001,34.40163],[139.0001,34.40163],[139.0114,34.41043],[139.0114,34.41043],[139.022,34.41915],[139.022,34.41915],[139.0322,34.42743],[139.0322,34.42743],[139.0477,34.43985],[139.0477,34.43985],[139.058,34.44801],[139.058,34.44801],[139.0677,34.45564],[139.0677,34.45564],[139.0836,34.46821],[139.0836,34.46821],[139.093,34.47547],[139.093,34.47547],[139.09303,34.47547],[139.09303,34.47547],[139.1028,34.48312],[139.1028,34.48312],[139.1131,34.49115],[139.1131,34.49115],[139.1167,34.49401],[139.1167,34.49401],[139.1356,34.509],[139.1356,34.509],[139.1468,34.51801],[139.1468,34.51801],[139.1624,34.53069],[139.1624,34.53069],[139.1767,34.54245],[139.1767,34.54245],[139.2,34.56006],[139.2,34.56006],[139.2184,34.56796],[139.2184,34.56796],[139.21835,34.567957],[139.21835,34.567957],[139.2375,34.57301],[139.2375,34.57301],[139.2576,34.57689],[139.2576,34.57689],[139.2776,34.5793],[139.2776,34.5793],[139.2991,34.58165],[139.2991,34.58165],[139.3196,34.58401],[139.3196,34.58401],[139.3406,34.58649],[139.3406,34.58649],[139.3509,34.58776],[139.3509,34.58776],[139.372,34.59025],[139.372,34.59025],[139.3944,34.5927],[139.3944,34.5927],[139.4057,34.59395],[139.4057,34.59395],[139.44024,34.597413],[139.44024,34.597413],[139.61805,34.611993],[139.61805,34.611993],[139.81156,34.658863],[139.81156,34.658863],[139.9983,34.72246],[139.9983,34.72246],[140.01959,34.72964],[140.01959,34.72964],[140.23545,34.801993],[140.23545,34.801993],[140.2501,34.80696],[140.2501,34.80696],[140.3355,34.83641],[140.3355,34.83641],[140.42948,34.868687],[140.42948,34.868687],[140.4861,34.88811],[140.4861,34.88811],[140.6931,34.95921],[140.6931,34.95921],[140.7287,34.97136],[140.7287,34.97136],[140.78901,34.992123],[140.78901,34.992123],[140.83855,35.009123],[140.83855,35.009123],[140.9055,35.03207],[140.9055,35.03207],[141.0574,35.08426],[141.0574,35.08426],[141.0784,35.09136],[141.0784,35.09136],[141.2426,35.14769],[141.2426,35.14769],[141.408,35.20426],[141.408,35.20426],[141.55433,35.254357],[141.55433,35.254357],[141.5543,35.25436],[141.5543,35.25436],[141.85003,35.355383],[141.85003,35.355383],[141.85,35.35538],[141.85,35.35538],[142.03451,35.441013],[142.03451,35.441013],[142.0345,35.44101],[142.0345,35.44101],[142.29917,35.57044],[142.29917,35.57044],[142.2992,35.57044],[142.2992,35.57044],[142.43804,35.63788],[142.43804,35.63788],[142.438,35.63788],[142.438,35.63788],[142.661,35.74567],[142.661,35.74567],[142.66099,35.745667],[142.66099,35.745667],[142.725,35.77651],[142.725,35.77651],[142.7583,35.79256],[142.7583,35.79256],[142.93869,35.878967],[142.93869,35.878967],[142.9387,35.87897],[142.9387,35.87897],[143.03009,35.92268],[143.03009,35.92268],[143.0301,35.92268],[143.0301,35.92268],[143.1745,35.99128],[143.1745,35.99128],[143.46232,36.127507],[143.46232,36.127507],[143.4623,36.12751],[143.4623,36.12751],[143.89643,36.330447],[143.89643,36.330447],[143.8964,36.33045],[143.8964,36.33045],[144.16171,36.45322],[144.16171,36.45322],[144.1617,36.45322],[144.1617,36.45322],[144.2607,36.50136],[144.2607,36.50136],[144.3782,36.552737],[144.3782,36.552737],[144.3782,36.55274],[144.3782,36.55274],[144.4989,36.60791],[144.4989,36.60791],[144.74451,36.719553],[144.74451,36.719553],[144.7445,36.71955],[144.7445,36.71955],[145.74407,37.165367],[145.74407,37.165367],[145.7441,37.16537],[145.7441,37.16537],[145.93399,37.24866],[145.93399,37.24866],[145.934,37.24866],[145.934,37.24866],[146.18964,37.359847],[146.18964,37.359847],[146.1896,37.35985],[146.1896,37.35985],[146.3181,37.41542],[146.3181,37.41542],[146.40713,37.45383],[146.40713,37.45383],[146.4071,37.45383],[146.4071,37.45383],[146.50792,37.497087],[146.50792,37.497087],[146.5079,37.49709],[146.5079,37.49709],[146.5994,37.53623],[146.5994,37.53623],[146.6616,37.56287],[146.6616,37.56287],[146.75941,37.604633],[146.75941,37.604633],[146.7594,37.60463],[146.7594,37.60463],[146.8234,37.63187],[146.8234,37.63187],[146.97757,37.697167],[146.97757,37.697167],[146.9776,37.69717],[146.9776,37.69717],[147.024,37.71675],[147.024,37.71675],[147.12451,37.759087],[147.12451,37.759087],[147.1245,37.75909],[147.1245,37.75909],[147.1993,37.79065],[147.1993,37.79065],[147.2808,37.82474],[147.2808,37.82474],[147.28251,37.82546],[147.28251,37.82546],[147.3406,37.84975],[147.3406,37.84975],[147.40213,37.875563],[147.40213,37.875563],[147.4021,37.87556],[147.4021,37.87556],[147.59155,37.954223],[147.59155,37.954223],[147.5916,37.95422],[147.5916,37.95422],[147.7392,38.01523],[147.7392,38.01523],[147.80355,38.041787],[147.80355,38.041787],[147.889,38.07699],[147.889,38.07699],[148.04936,38.142577],[148.04936,38.142577],[148.0494,38.14258],[148.0494,38.14258],[148.22936,38.21587],[148.22936,38.21587],[148.2294,38.21587],[148.2294,38.21587],[148.55499,38.3473],[148.55499,38.3473],[148.555,38.3473],[148.555,38.3473],[148.74016,38.421477],[148.74016,38.421477],[148.7402,38.42148],[148.7402,38.42148],[148.90388,38.486653],[148.90388,38.486653],[148.9039,38.48665],[148.9039,38.48665],[149.08749,38.55931],[149.08749,38.55931],[149.1561,38.58632],[149.1561,38.58632],[149.2326,38.61643],[149.2326,38.61643],[149.30672,38.645647],[149.30672,38.645647],[149.3067,38.64565],[149.3067,38.64565],[149.3393,38.65846],[149.3393,38.65846],[149.50389,38.7229],[149.50389,38.7229],[149.5039,38.7229],[149.5039,38.7229],[149.5205,38.72928],[149.5205,38.72928],[149.5614,38.74534],[149.5614,38.74534],[149.69609,38.79745],[149.69609,38.79745],[149.6961,38.79745],[149.6961,38.79745],[149.8481,38.85623],[149.8481,38.85623],[149.96615,38.901713],[149.96615,38.901713],[149.9661,38.90171],[149.9661,38.90171],[150.1492,38.97184],[150.1492,38.97184],[150.2674,39.016877],[150.2674,39.016877],[150.2674,39.01688],[150.2674,39.01688],[150.2911,39.02582],[150.2911,39.02582],[150.63875,39.15699],[150.63875,39.15699],[150.6387,39.15699],[150.6387,39.15699],[150.75369,39.19996],[150.75369,39.19996],[150.7537,39.19996],[150.7537,39.19996],[150.8476,39.23502],[150.8476,39.23502],[151.02081,39.2994],[151.02081,39.2994],[151.0208,39.2994],[151.0208,39.2994],[151.25943,39.387447],[151.25943,39.387447],[151.2594,39.38745],[151.2594,39.38745],[151.46741,39.46344],[151.46741,39.46344],[151.4674,39.46344],[151.4674,39.46344],[151.5916,39.50875],[151.5916,39.50875],[151.7362,39.561137],[151.7362,39.561137],[151.7362,39.56114],[151.7362,39.56114],[151.8607,39.60621],[151.8607,39.60621],[151.8801,39.61315],[151.8801,39.61315],[152.14532,39.708167],[152.14532,39.708167],[152.1453,39.70817],[152.1453,39.70817],[152.289,39.7593],[152.289,39.7593],[152.43255,39.810103],[152.43255,39.810103],[152.4325,39.8101],[152.4325,39.8101],[152.56627,39.857177],[152.56627,39.857177],[152.5663,39.85718],[152.5663,39.85718],[152.7665,39.9273],[152.7665,39.9273],[152.76652,39.9273],[152.76652,39.9273],[152.9978,40.00762],[152.9978,40.00762],[153.15352,40.061407],[153.15352,40.061407],[153.1535,40.06141],[153.1535,40.06141],[153.2803,40.10493],[153.2803,40.10493],[153.4195,40.15246],[153.4195,40.15246],[153.41951,40.152457],[153.41951,40.152457],[153.56001,40.200267],[153.56001,40.200267],[153.56,40.20027],[153.56,40.20027],[153.6993,40.24753],[153.6993,40.24753],[153.84015,40.294817],[153.84015,40.294817],[153.8401,40.29482],[153.8401,40.29482],[154.0468,40.36399],[154.0468,40.36399],[154.04683,40.36399],[154.04683,40.36399],[154.73665,40.591313],[154.73665,40.591313],[154.7366,40.59131],[154.7366,40.59131],[154.96416,40.665037],[154.96416,40.665037],[154.9642,40.66504],[154.9642,40.66504],[155.22629,40.749113],[155.22629,40.749113],[155.2263,40.74911],[155.2263,40.74911],[155.70561,40.900887],[155.70561,40.900887],[155.7056,40.90089],[155.7056,40.90089],[155.98069,40.986873],[155.98069,40.986873],[155.9807,40.98687],[155.9807,40.98687],[156.01403,40.997193],[156.01403,40.997193],[156.014,40.99719],[156.014,40.99719],[156.1996,41.05459],[156.1996,41.05459],[156.23356,41.065057],[156.23356,41.065057],[156.2336,41.06506],[156.2336,41.06506],[156.3611,41.10427],[156.3611,41.10427],[156.48845,41.14314],[156.48845,41.14314],[156.4884,41.14314],[156.4884,41.14314],[156.568,41.16729],[156.568,41.16729],[156.74304,41.22035],[156.74304,41.22035],[156.743,41.22035],[156.743,41.22035],[156.764,41.22663],[156.764,41.22663],[156.8246,41.24486],[156.8246,41.24486],[156.97745,41.290757],[156.97745,41.290757],[156.9774,41.29076],[156.9774,41.29076],[157.1657,41.34689],[157.1657,41.34689],[157.2146,41.36139],[157.2146,41.36139],[157.21463,41.361387],[157.21463,41.361387],[157.3486,41.400977],[157.3486,41.400977],[157.3486,41.40098],[157.3486,41.40098],[157.3885,41.41273],[157.3885,41.41273],[157.59448,41.473193],[157.59448,41.473193],[157.5945,41.47319],[157.5945,41.47319],[157.7673,41.52354],[157.7673,41.52354],[157.9112,41.56513],[157.9112,41.56513],[157.9776,41.58431],[157.9776,41.58431],[157.9776,41.58431],[157.9776,41.58431],[158.20192,41.648583],[158.20192,41.648583],[158.2019,41.64858],[158.2019,41.64858],[158.23129,41.656917],[158.23129,41.656917],[158.4036,41.70588],[158.4036,41.70588],[158.73312,41.7986],[158.73312,41.7986],[158.7331,41.7986],[158.7331,41.7986],[159.00231,41.873387],[159.00231,41.873387],[159.0023,41.87339],[159.0023,41.87339],[159.0578,41.88873],[159.0578,41.88873],[159.26487,41.9456],[159.26487,41.9456],[159.2649,41.9456],[159.2649,41.9456],[159.47895,42.003853],[159.47895,42.003853],[159.4789,42.00385],[159.4789,42.00385],[159.64683,42.049247],[159.64683,42.049247],[159.7645,42.08079],[159.7645,42.08079],[159.93504,42.126437],[159.93504,42.126437],[159.935,42.12644],[159.935,42.12644],[159.9488,42.13003],[159.9488,42.13003],[159.9842,42.13945],[159.9842,42.13945],[160.11791,42.174883],[160.11791,42.174883],[160.1179,42.17488],[160.1179,42.17488],[160.26988,42.214937],[160.26988,42.214937],[160.2699,42.21494],[160.2699,42.21494],[160.59152,42.29874],[160.59152,42.29874],[160.5915,42.29874],[160.5915,42.29874],[160.7564,42.34133],[160.7564,42.34133],[160.7564,42.34133],[160.7564,42.34133],[160.96237,42.394013],[160.96237,42.394013],[160.9624,42.39401],[160.9624,42.39401],[161.0118,42.40666],[161.0118,42.40666],[161.0314,42.41156],[161.0314,42.41156],[161.0808,42.42413],[161.0808,42.42413],[161.39047,42.502187],[161.39047,42.502187],[161.3905,42.50219],[161.3905,42.50219],[161.52341,42.535347],[161.52341,42.535347],[161.5234,42.53535],[161.5234,42.53535],[161.70651,42.580773],[161.70651,42.580773],[161.7058,42.58058],[161.7058,42.58058],[161.7765,42.598],[161.7765,42.598],[161.85753,42.617963],[161.85753,42.617963],[161.8575,42.61796],[161.8575,42.61796],[162.17425,42.6951],[162.17425,42.6951],[162.1743,42.6951],[162.1743,42.6951],[162.32876,42.732333],[162.32876,42.732333],[162.3288,42.73233],[162.3288,42.73233],[162.5044,42.77442],[162.5044,42.77442],[162.65093,42.809207],[162.65093,42.809207],[162.6509,42.80921],[162.6509,42.80921],[162.9133,42.87102],[162.9133,42.87102],[162.91329,42.87102],[162.91329,42.87102],[162.9641,42.88291],[162.9641,42.88291],[163.12749,42.920877],[163.12749,42.920877],[163.1275,42.92088],[163.1275,42.92088],[163.30896,42.962777],[163.30896,42.962777],[163.309,42.96278],[163.309,42.96278],[163.46116,42.997667],[163.46116,42.997667],[163.4612,42.99767],[163.4612,42.99767],[163.6528,43.04122],[163.6528,43.04122],[163.78632,43.071447],[163.78632,43.071447],[163.7863,43.07145],[163.7863,43.07145],[164.10083,43.141667],[164.10083,43.141667],[164.1008,43.14167],[164.1008,43.14167],[164.1193,43.14572],[164.1193,43.14572],[164.27239,43.179567],[164.27239,43.179567],[164.2724,43.17957],[164.2724,43.17957],[164.3857,43.2044],[164.3857,43.2044],[164.3904,43.20539],[164.3904,43.20539],[164.4099,43.20971],[164.4099,43.20971],[164.427,43.21341],[164.427,43.21341],[164.4442,43.21714],[164.4442,43.21714],[165.17131,43.373147],[165.17131,43.373147],[165.1713,43.37315],[165.1713,43.37315],[165.65183,43.473233],[165.65183,43.473233],[165.6518,43.47323],[165.6518,43.47323],[165.7633,43.49612],[165.7633,43.49612],[165.93467,43.53106],[165.93467,43.53106],[165.9347,43.53106],[165.9347,43.53106],[166.21359,43.587307],[166.21359,43.587307],[166.2136,43.58731],[166.2136,43.58731],[166.49067,43.642313],[166.49067,43.642313],[166.4907,43.64231],[166.4907,43.64231],[166.73573,43.6904],[166.73573,43.6904],[166.7357,43.6904],[166.7357,43.6904],[166.78211,43.69942],[166.78211,43.69942],[166.7821,43.69942],[166.7821,43.69942],[166.9596,43.73375],[166.9596,43.73375],[167.08943,43.75867],[167.08943,43.75867],[167.0894,43.75867],[167.0894,43.75867],[167.3042,43.799647],[167.3042,43.799647],[167.3042,43.79965],[167.3042,43.79965],[167.3958,43.81692],[167.3958,43.81692],[167.50564,43.837567],[167.50564,43.837567],[167.5056,43.83757],[167.5056,43.83757],[167.5997,43.85507],[167.5997,43.85507],[167.7028,43.87423],[167.7028,43.87423],[167.81037,43.894127],[167.81037,43.894127],[167.8104,43.89413],[167.8104,43.89413],[168.02227,43.93282],[168.02227,43.93282],[168.0223,43.93282],[168.0223,43.93282],[168.1173,43.95019],[168.1173,43.95019],[168.20365,43.96559],[168.20365,43.96559],[168.2037,43.96559],[168.2037,43.96559],[168.4017,44.00133],[168.4017,44.00133],[168.55208,44.028017],[168.55208,44.028017],[168.5521,44.02802],[168.5521,44.02802],[168.6146,44.03905],[168.6146,44.03905],[168.67729,44.050127],[168.67729,44.050127],[168.6773,44.05013],[168.6773,44.05013],[168.95961,44.09933],[168.95961,44.09933],[168.9596,44.09933],[168.9596,44.09933],[169.19229,44.139393],[169.19229,44.139393],[169.1923,44.13939],[169.1923,44.13939],[169.2173,44.14367],[169.2173,44.14367],[169.42837,44.179393],[169.42837,44.179393],[169.4284,44.17939],[169.4284,44.17939],[169.4612,44.18491],[169.4612,44.18491],[169.5117,44.19335],[169.5117,44.19335],[169.669,44.2196],[169.669,44.2196],[169.8361,44.24723],[169.8361,44.24723],[170.06452,44.284537],[170.06452,44.284537],[170.0645,44.28454],[170.0645,44.28454],[170.28523,44.320097],[170.28523,44.320097],[170.2852,44.3201],[170.2852,44.3201],[170.49853,44.354087],[170.49853,44.354087],[170.61824,44.372833],[170.61824,44.372833],[170.6182,44.37283],[170.6182,44.37283],[170.7756,44.39741],[170.7756,44.39741],[170.94523,44.423653],[170.94523,44.423653],[170.9452,44.42365],[170.9452,44.42365],[171.10343,44.447883],[171.10343,44.447883],[171.1034,44.44788],[171.1034,44.44788],[171.1991,44.46244],[171.1991,44.46244],[171.47687,44.50402],[171.47687,44.50402],[171.4769,44.50402],[171.4769,44.50402],[171.74365,44.543427],[171.74365,44.543427],[171.7437,44.54343],[171.7437,44.54343],[171.8081,44.55285],[171.8081,44.55285],[171.97239,44.576553],[171.97239,44.576553],[171.9724,44.57655],[171.9724,44.57655],[172.35816,44.63143],[172.35816,44.63143],[172.3582,44.63143],[172.3582,44.63143],[172.4895,44.64979],[172.4895,44.64979],[172.5191,44.65382],[172.5191,44.65382],[172.56853,44.660677],[172.56853,44.660677],[172.5702,44.6609],[172.5702,44.6609],[172.6893,44.67733],[172.6893,44.67733],[172.8526,44.699583],[172.8526,44.699583],[172.8526,44.69958],[172.8526,44.69958],[173.19361,44.745313],[173.19361,44.745313],[173.1936,44.74531],[173.1936,44.74531],[173.32471,44.76268],[173.32471,44.76268],[173.3247,44.76268],[173.3247,44.76268],[173.3835,44.77034],[173.3835,44.77034],[173.5394,44.79061],[173.5394,44.79061],[173.70307,44.8115],[173.70307,44.8115],[173.7031,44.8115],[173.7031,44.8115],[174.02612,44.852247],[174.02612,44.852247],[174.0261,44.85225],[174.0261,44.85225],[174.05403,44.85583],[174.05403,44.85583],[174.054,44.85583],[174.054,44.85583],[174.38976,44.897083],[174.38976,44.897083],[174.3898,44.89708],[174.3898,44.89708],[174.57593,44.919553],[174.57593,44.919553],[174.5759,44.91955],[174.5759,44.91955],[174.92084,44.960167],[174.92084,44.960167],[174.9208,44.96017],[174.9208,44.96017],[175.09925,44.9809],[175.09925,44.9809],[175.0993,44.9809],[175.0993,44.9809],[175.2765,45.001],[175.2765,45.001],[175.44132,45.019543],[175.44132,45.019543],[175.4413,45.01954],[175.4413,45.01954],[175.62883,45.040333],[175.62883,45.040333],[175.6288,45.04033],[175.6288,45.04033],[175.6454,45.04212],[175.6454,45.04212],[176.41484,45.12392],[176.41484,45.12392],[176.4148,45.12392],[176.4148,45.12392],[176.6656,45.14939],[176.6656,45.14939],[176.6656,45.14939],[176.6656,45.14939],[177.06364,45.18862],[177.06364,45.18862],[177.0636,45.18862],[177.0636,45.18862],[177.2216,45.2037],[177.2216,45.2037],[177.46623,45.22684],[177.46623,45.22684],[177.4662,45.22684],[177.4662,45.22684],[177.78219,45.255763],[177.78219,45.255763],[177.7822,45.25576],[177.7822,45.25576],[177.81156,45.25848],[177.81156,45.25848],[177.8116,45.25848],[177.8116,45.25848],[177.8825,45.26481],[177.8825,45.26481],[178.10133,45.284147],[178.10133,45.284147],[178.1013,45.28415],[178.1013,45.28415],[178.201,45.29281],[178.201,45.29281],[178.35116,45.305727],[178.35116,45.305727],[178.3652,45.30694],[178.3652,45.30694],[178.55272,45.322677],[178.55272,45.322677],[178.5527,45.32268],[178.5527,45.32268],[178.6355,45.32962],[178.6355,45.32962],[178.7564,45.3395],[178.7564,45.3395],[178.84812,45.34697],[178.84812,45.34697],[178.8481,45.34697],[178.8481,45.34697],[178.9764,45.35717],[178.9764,45.35717],[179.12267,45.368783],[179.12267,45.368783],[179.1319,45.36951],[179.1319,45.36951],[179.1794,45.3732],[179.1794,45.3732],[179.228,45.37699],[179.228,45.37699],[179.41463,45.391247],[179.41463,45.391247],[179.4975,45.39747],[179.4975,45.39747],[179.61253,45.406033],[179.61253,45.406033],[179.6125,45.40603],[179.6125,45.40603],[179.6932,45.41188],[179.6932,45.41188],[179.93315,45.429187],[179.93315,45.429187],[179.9332,45.42919],[179.9332,45.42919],[-179.9705,45.43611],[-179.9705,45.43611],[-179.86856,45.443147],[-179.86856,45.443147],[-179.8686,45.44315],[-179.8686,45.44315],[-179.52536,45.46629],[-179.52536,45.46629],[-179.5254,45.46629],[-179.5254,45.46629],[-179.5018,45.46786],[-179.5018,45.46786],[-179.41279,45.473673],[-179.41279,45.473673],[-179.4128,45.47367],[-179.4128,45.47367],[-179.2779,45.48238],[-179.2779,45.48238],[-179.1958,45.48759],[-179.1958,45.48759],[-179.05917,45.49626],[-179.05917,45.49626],[-179.0592,45.49626],[-179.0592,45.49626],[-178.9811,45.50098],[-178.9811,45.50098],[-178.86568,45.50802],[-178.86568,45.50802],[-178.8657,45.50802],[-178.8657,45.50802],[-178.62711,45.5221],[-178.62711,45.5221],[-178.6271,45.5221],[-178.6271,45.5221],[-178.5512,45.5265],[-178.5512,45.5265],[-178.39109,45.535547],[-178.39109,45.535547],[-178.3215,45.5395],[-178.3215,45.5395],[-178.1983,45.54617],[-178.1983,45.54617],[-178.17536,45.54754],[-178.17536,45.54754],[-178.1754,45.54754],[-178.1754,45.54754],[-177.80041,45.56727],[-177.80041,45.56727],[-177.8004,45.56727],[-177.8004,45.56727],[-177.62092,45.576147],[-177.62092,45.576147],[-177.6209,45.57615],[-177.6209,45.57615],[-177.5335,45.58034],[-177.5335,45.58034],[-177.42327,45.5857],[-177.42327,45.5857],[-177.4233,45.5857],[-177.4233,45.5857],[-177.3675,45.58833],[-177.3675,45.58833],[-177.29,45.59191],[-177.29,45.59191],[-177.02189,45.604003],[-177.02189,45.604003],[-176.90857,45.608977],[-176.90857,45.608977],[-176.9086,45.60898],[-176.9086,45.60898],[-176.7503,45.61559],[-176.7503,45.61559],[-176.47481,45.626857],[-176.47481,45.626857],[-176.4748,45.62686],[-176.4748,45.62686],[-176.38981,45.63002],[-176.38981,45.63002],[-176.3898,45.63002],[-176.3898,45.63002],[-176.08883,45.6389],[-176.08883,45.6389],[-176.0888,45.6389],[-176.0888,45.6389],[-176.0367,45.63759],[-176.0367,45.63759],[-175.934,45.63534],[-175.934,45.63534],[-175.75753,45.64394],[-175.75753,45.64394],[-175.7575,45.64394],[-175.7575,45.64394],[-175.58988,45.65398],[-175.58988,45.65398],[-175.5899,45.65398],[-175.5899,45.65398],[-175.5215,45.65784],[-175.5215,45.65784],[-175.32505,45.66585],[-175.32505,45.66585],[-175.3144,45.66629],[-175.3144,45.66629],[-175.2998,45.66672],[-175.2998,45.66672],[-175.2373,45.6686],[-175.2373,45.6686],[-175.05697,45.673437],[-175.05697,45.673437],[-175.057,45.67344],[-175.057,45.67344],[-174.87261,45.67816],[-174.87261,45.67816],[-174.8726,45.67816],[-174.8726,45.67816],[-174.7117,45.68215],[-174.7117,45.68215],[-174.49447,45.68693],[-174.49447,45.68693],[-174.4945,45.68693],[-174.4945,45.68693],[-174.36077,45.689907],[-174.36077,45.689907],[-174.3608,45.68991],[-174.3608,45.68991],[-174.01405,45.696617],[-174.01405,45.696617],[-174.0141,45.69662],[-174.0141,45.69662],[-173.84981,45.699107],[-173.84981,45.699107],[-173.8498,45.69911],[-173.8498,45.69911],[-173.5435,45.70362],[-173.5435,45.70362],[-173.54352,45.703617],[-173.54352,45.703617],[-173.5219,45.70397],[-173.5219,45.70397],[-173.5053,45.70418],[-173.5053,45.70418],[-173.4887,45.70438],[-173.4887,45.70438],[-173.31033,45.706567],[-173.31033,45.706567],[-173.3103,45.70657],[-173.3103,45.70657],[-173.13368,45.708393],[-173.13368,45.708393],[-173.1337,45.70839],[-173.1337,45.70839],[-172.7449,45.71169],[-172.7449,45.71169],[-172.74489,45.711693],[-172.74489,45.711693],[-172.7286,45.71163],[-172.7286,45.71163],[-172.7057,45.71189],[-172.7057,45.71189],[-171.99933,45.714013],[-171.99933,45.714013],[-171.9993,45.71401],[-171.9993,45.71401],[-171.9547,45.71395],[-171.9547,45.71395],[-171.9283,45.71393],[-171.9283,45.71393],[-171.72497,45.713793],[-171.72497,45.713793],[-171.725,45.71379],[-171.725,45.71379],[-171.50509,45.71272],[-171.50509,45.71272],[-171.5051,45.71272],[-171.5051,45.71272],[-171.31623,45.711613],[-171.31623,45.711613],[-171.3162,45.71161],[-171.3162,45.71161],[-171.1811,45.71189],[-171.1811,45.71189],[-171.11251,45.71032],[-171.11251,45.71032],[-171.1125,45.71032],[-171.1125,45.71032],[-170.89653,45.707547],[-170.89653,45.707547],[-170.8965,45.70755],[-170.8965,45.70755],[-170.7837,45.70738],[-170.7837,45.70738],[-170.60025,45.705227],[-170.60025,45.705227],[-170.6003,45.70523],[-170.6003,45.70523],[-170.4855,45.70403],[-170.4855,45.70403],[-170.27465,45.700777],[-170.27465,45.700777],[-170.2747,45.70078],[-170.2747,45.70078],[-170.1788,45.69925],[-170.1788,45.69925],[-170.15187,45.698843],[-170.15187,45.698843],[-170.1519,45.69884],[-170.1519,45.69884],[-170.1307,45.69853],[-170.1307,45.69853],[-170.1056,45.69806],[-170.1056,45.69806],[-169.9617,45.69554],[-169.9617,45.69554],[-169.74701,45.691453],[-169.74701,45.691453],[-169.747,45.69145],[-169.747,45.69145],[-169.655,45.68966],[-169.655,45.68966],[-169.61824,45.688927],[-169.61824,45.688927],[-169.6182,45.68893],[-169.6182,45.68893],[-169.5438,45.68729],[-169.5438,45.68729],[-169.4771,45.68577],[-169.4771,45.68577],[-169.38152,45.683637],[-169.38152,45.683637],[-169.3815,45.68364],[-169.3815,45.68364],[-169.3564,45.683],[-169.3564,45.683],[-169.3176,45.68218],[-169.3176,45.68218],[-169.2798,45.68127],[-169.2798,45.68127],[-169.1809,45.67887],[-169.1809,45.67887],[-169.1068,45.67697],[-169.1068,45.67697],[-169.1068,45.67697],[-169.1068,45.67697],[-169.0896,45.67656],[-169.0896,45.67656],[-169.0566,45.67567],[-169.0566,45.67567],[-168.9863,45.67389],[-168.9863,45.67389],[-168.9089,45.67183],[-168.9089,45.67183],[-168.88743,45.671217],[-168.88743,45.671217],[-168.8874,45.67122],[-168.8874,45.67122],[-168.7598,45.66771],[-168.7598,45.66771],[-168.6929,45.66572],[-168.6929,45.66572],[-168.6378,45.66408],[-168.6378,45.66408],[-168.6378,45.66408],[-168.6378,45.66408],[-168.5573,45.66159],[-168.5573,45.66159],[-168.4885,45.65963],[-168.4885,45.65963],[-168.26751,45.652493],[-168.26751,45.652493],[-168.2675,45.65249],[-168.2675,45.65249],[-168.13839,45.64823],[-168.13839,45.64823],[-168.1384,45.64823],[-168.1384,45.64823],[-168.063,45.64562],[-168.063,45.64562],[-167.88349,45.639207],[-167.88349,45.639207],[-167.8835,45.63921],[-167.8835,45.63921],[-167.8025,45.63628],[-167.8025,45.63628],[-167.65907,45.630873],[-167.65907,45.630873],[-167.6591,45.63087],[-167.6591,45.63087],[-167.5822,45.62796],[-167.5822,45.62796],[-167.38225,45.62015],[-167.38225,45.62015],[-167.3822,45.62015],[-167.3822,45.62015],[-167.3267,45.61802],[-167.3267,45.61802],[-167.2429,45.61421],[-167.2429,45.61421],[-167.01467,45.60457],[-167.01467,45.60457],[-167.0147,45.60457],[-167.0147,45.60457],[-166.95191,45.601733],[-166.95191,45.601733],[-166.9519,45.60173],[-166.9519,45.60173],[-166.8328,45.5964],[-166.8328,45.5964],[-166.8041,45.59515],[-166.8041,45.59515],[-166.7363,45.59193],[-166.7363,45.59193],[-166.68783,45.589723],[-166.68783,45.589723],[-166.6416,45.58752],[-166.6416,45.58752],[-166.5921,45.58521],[-166.5921,45.58521],[-166.5313,45.58234],[-166.5313,45.58234],[-166.30969,45.571397],[-166.30969,45.571397],[-166.3097,45.5714],[-166.3097,45.5714],[-166.21063,45.56642],[-166.21063,45.56642],[-166.1349,45.56258],[-166.1349,45.56258],[-165.97065,45.55392],[-165.97065,45.55392],[-165.9707,45.55392],[-165.9707,45.55392],[-165.8813,45.54914],[-165.8813,45.54914],[-165.7858,45.54397],[-165.7858,45.54397],[-165.74429,45.541707],[-165.74429,45.541707],[-165.7443,45.54171],[-165.7443,45.54171],[-165.469,45.526173],[-165.469,45.526173],[-165.469,45.52617],[-165.469,45.52617],[-165.3064,45.51674],[-165.3064,45.51674],[-165.138,45.506673],[-165.138,45.506673],[-165.138,45.50667],[-165.138,45.50667],[-165.0512,45.50132],[-165.0512,45.50132],[-164.9756,45.496793],[-164.9756,45.496793],[-164.9756,45.49679],[-164.9756,45.49679],[-164.8418,45.48837],[-164.8418,45.48837],[-164.69608,45.479133],[-164.69608,45.479133],[-164.6961,45.47913],[-164.6961,45.47913],[-164.6249,45.47444],[-164.6249,45.47444],[-164.52231,45.467823],[-164.52231,45.467823],[-164.4596,45.46361],[-164.4596,45.46361],[-164.3428,45.45576],[-164.3428,45.45576],[-164.27412,45.451133],[-164.27412,45.451133],[-164.2741,45.45113],[-164.2741,45.45113],[-164.1116,45.44002],[-164.1116,45.44002],[-164.0696,45.43693],[-164.0696,45.43693],[-163.75885,45.414733],[-163.75885,45.414733],[-163.7589,45.41473],[-163.7589,45.41473],[-163.6621,45.40772],[-163.6621,45.40772],[-163.5873,45.40218],[-163.5873,45.40218],[-163.46657,45.39314],[-163.46657,45.39314],[-163.4666,45.39314],[-163.4666,45.39314],[-163.30072,45.380527],[-163.30072,45.380527],[-163.2958,45.38009],[-163.2958,45.38009],[-163.2496,45.3765],[-163.2496,45.3765],[-162.922,45.35063],[-162.922,45.35063],[-162.92204,45.350633],[-162.92204,45.350633],[-162.9057,45.34937],[-162.9057,45.34937],[-162.8869,45.34781],[-162.8869,45.34781],[-162.81621,45.34213],[-162.81621,45.34213],[-162.8162,45.34213],[-162.8162,45.34213],[-162.7239,45.33463],[-162.7239,45.33463],[-162.6473,45.32827],[-162.6473,45.32827],[-162.48997,45.315167],[-162.48997,45.315167],[-162.49,45.31517],[-162.49,45.31517],[-162.14823,45.28592],[-162.14823,45.28592],[-162.1482,45.28592],[-162.1482,45.28592],[-162.1341,45.28471],[-162.1341,45.28471],[-161.98691,45.27174],[-161.98691,45.27174],[-161.9869,45.27174],[-161.9869,45.27174],[-161.82168,45.25692],[-161.82168,45.25692],[-161.8217,45.25692],[-161.8217,45.25692],[-161.6568,45.24191],[-161.6568,45.24191],[-161.414,45.21943],[-161.414,45.21943],[-161.41405,45.219433],[-161.41405,45.219433],[-161.40777,45.21884],[-161.40777,45.21884],[-161.3999,45.21812],[-161.3999,45.21812],[-161.3757,45.21573],[-161.3757,45.21573],[-160.65667,45.145673],[-160.65667,45.145673],[-160.6567,45.14567],[-160.6567,45.14567],[-160.4646,45.12614],[-160.4646,45.12614],[-160.23816,45.10268],[-160.23816,45.10268],[-160.2382,45.10268],[-160.2382,45.10268],[-160.20839,45.099613],[-160.20839,45.099613],[-160.2084,45.09961],[-160.2084,45.09961],[-159.9905,45.07654],[-159.9905,45.07654],[-159.92919,45.069987],[-159.92919,45.069987],[-159.9292,45.06999],[-159.9292,45.06999],[-159.8373,45.06005],[-159.8373,45.06005],[-159.7883,45.05477],[-159.7883,45.05477],[-159.65141,45.03974],[-159.65141,45.03974],[-159.6514,45.03974],[-159.6514,45.03974],[-159.5787,45.03173],[-159.5787,45.03173],[-159.45167,45.017587],[-159.45167,45.017587],[-159.4517,45.01759],[-159.4517,45.01759],[-159.2995,45.00054],[-159.2995,45.00054],[-159.17151,44.985967],[-159.17151,44.985967],[-159.1715,44.98597],[-159.1715,44.98597],[-159.0271,44.96926],[-159.0271,44.96926],[-158.9896,44.96487],[-158.9896,44.96487],[-158.98957,44.964867],[-158.98957,44.964867],[-158.9423,44.95961],[-158.9423,44.95961],[-158.7533,44.9373],[-158.7533,44.9373],[-158.53528,44.911253],[-158.53528,44.911253],[-158.5353,44.91125],[-158.5353,44.91125],[-158.48615,44.905387],[-158.48615,44.905387],[-158.4861,44.90539],[-158.4861,44.90539],[-158.4013,44.89507],[-158.4013,44.89507],[-158.22603,44.873537],[-158.22603,44.873537],[-158.226,44.87354],[-158.226,44.87354],[-158.1919,44.86938],[-158.1919,44.86938],[-158.1107,44.85933],[-158.1107,44.85933],[-157.97967,44.842967],[-157.97967,44.842967],[-157.9211,44.83563],[-157.9211,44.83563],[-157.9071,44.83382],[-157.9071,44.83382],[-157.7603,44.81525],[-157.7603,44.81525],[-157.69573,44.807017],[-157.69573,44.807017],[-157.6957,44.80702],[-157.6957,44.80702],[-157.6427,44.80021],[-157.6427,44.80021],[-157.5643,44.79018],[-157.5643,44.79018],[-157.48792,44.780187],[-157.48792,44.780187],[-157.4879,44.78019],[-157.4879,44.78019],[-157.3851,44.76683],[-157.3851,44.76683],[-157.2721,44.75195],[-157.2721,44.75195],[-157.23249,44.746727],[-157.23249,44.746727],[-157.1552,44.73651],[-157.1552,44.73651],[-157.139,44.73426],[-157.139,44.73426],[-157.0685,44.72486],[-157.0685,44.72486],[-157.02015,44.718423],[-157.02015,44.718423],[-157.0201,44.71842],[-157.0201,44.71842],[-156.8589,44.6966],[-156.8589,44.6966],[-156.71051,44.6763],[-156.71051,44.6763],[-156.7105,44.6763],[-156.7105,44.6763],[-156.53139,44.651567],[-156.53139,44.651567],[-156.5314,44.65157],[-156.5314,44.65157],[-156.362,44.62784],[-156.362,44.62784],[-156.313,44.62094],[-156.313,44.62094],[-156.10063,44.59082],[-156.10063,44.59082],[-156.1006,44.59082],[-156.1006,44.59082],[-156.057,44.58461],[-156.057,44.58461],[-155.78083,44.544537],[-155.78083,44.544537],[-155.7808,44.54454],[-155.7808,44.54454],[-155.7384,44.53834],[-155.7384,44.53834],[-155.6826,44.53013],[-155.6826,44.53013],[-155.5758,44.51441],[-155.5758,44.51441],[-155.43144,44.492867],[-155.43144,44.492867],[-155.4314,44.49287],[-155.4314,44.49287],[-155.23212,44.46308],[-155.23212,44.46308],[-155.2321,44.46308],[-155.2321,44.46308],[-155.1865,44.45613],[-155.1865,44.45613],[-155.152,44.45085],[-155.152,44.45085],[-155.0832,44.44034],[-155.0832,44.44034],[-154.92332,44.415757],[-154.92332,44.415757],[-154.9233,44.41576],[-154.9233,44.41576],[-154.8544,44.40514],[-154.8544,44.40514],[-154.74349,44.3879],[-154.74349,44.3879],[-154.7435,44.3879],[-154.7435,44.3879],[-154.54639,44.356953],[-154.54639,44.356953],[-154.5464,44.35695],[-154.5464,44.35695],[-154.23752,44.307753],[-154.23752,44.307753],[-154.2375,44.30775],[-154.2375,44.30775],[-154.06336,44.279533],[-154.06336,44.279533],[-154.0634,44.27953],[-154.0634,44.27953],[-153.9604,44.26279],[-153.9604,44.26279],[-153.8484,44.24445],[-153.8484,44.24445],[-153.72807,44.224567],[-153.72807,44.224567],[-153.7281,44.22457],[-153.7281,44.22457],[-153.4464,44.17759],[-153.4464,44.17759],[-153.4464,44.17759],[-153.4464,44.17759],[-153.3844,44.16708],[-153.3844,44.16708],[-153.21705,44.138627],[-153.21705,44.138627],[-153.2171,44.13863],[-153.2171,44.13863],[-153.1744,44.13135],[-153.1744,44.13135],[-153.08897,44.116673],[-153.08897,44.116673],[-153.0326,44.10692],[-153.0326,44.10692],[-152.9859,44.09882],[-152.9859,44.09882],[-152.9242,44.08814],[-152.9242,44.08814],[-152.8609,44.07716],[-152.8609,44.07716],[-152.56627,44.02548],[-152.56627,44.02548],[-152.5663,44.02548],[-152.5663,44.02548],[-152.5058,44.01467],[-152.5058,44.01467],[-152.4132,43.99824],[-152.4132,43.99824],[-152.33589,43.98443],[-152.33589,43.98443],[-152.3359,43.98443],[-152.3359,43.98443],[-152.2388,43.96692],[-152.2388,43.96692],[-152.2213,43.96377],[-152.2213,43.96377],[-152.2045,43.96072],[-152.2045,43.96072],[-152.05984,43.9345],[-152.05984,43.9345],[-152.0598,43.9345],[-152.0598,43.9345],[-151.71249,43.870633],[-151.71249,43.870633],[-151.7125,43.87063],[-151.7125,43.87063],[-151.6243,43.85425],[-151.6243,43.85425],[-151.55867,43.842043],[-151.55867,43.842043],[-151.5587,43.84204],[-151.5587,43.84204],[-151.5407,43.83861],[-151.5407,43.83861],[-151.3703,43.80657],[-151.3703,43.80657],[-151.20147,43.774577],[-151.20147,43.774577],[-151.2015,43.77458],[-151.2015,43.77458],[-150.86664,43.71024],[-150.86664,43.71024],[-150.8666,43.71024],[-150.8666,43.71024],[-150.8355,43.70421],[-150.8355,43.70421],[-150.8129,43.69972],[-150.8129,43.69972],[-150.6914,43.67602],[-150.6914,43.67602],[-150.50791,43.639883],[-150.50791,43.639883],[-150.5079,43.63988],[-150.5079,43.63988],[-150.33208,43.605063],[-150.33208,43.605063],[-150.3321,43.60506],[-150.3321,43.60506],[-150.0666,43.55185],[-150.0666,43.55185],[-150.06661,43.551847],[-150.06661,43.551847],[-150.0448,43.54749],[-150.0448,43.54749],[-150.0151,43.54138],[-150.0151,43.54138],[-149.64892,43.466587],[-149.64892,43.466587],[-149.6489,43.46659],[-149.6489,43.46659],[-149.39343,43.413567],[-149.39343,43.413567],[-149.3934,43.41357],[-149.3934,43.41357],[-148.90529,43.310423],[-148.90529,43.310423],[-148.55476,43.234813],[-148.55476,43.234813],[-148.30435,43.180193],[-148.30435,43.180193],[-148.3044,43.18019],[-148.3044,43.18019],[-148.2474,43.16754],[-148.2474,43.16754],[-148.13388,43.142493],[-148.13388,43.142493],[-148.084,43.13138],[-148.084,43.13138],[-148.0374,43.12006],[-148.0374,43.12006],[-147.96155,43.104573],[-147.96155,43.104573],[-147.9023,43.09263],[-147.9023,43.09263],[-147.80811,43.070193],[-147.80811,43.070193],[-147.8081,43.07019],[-147.8081,43.07019],[-147.7669,43.06043],[-147.7669,43.06043],[-147.7243,43.05074],[-147.7243,43.05074],[-147.57197,43.016247],[-147.57197,43.016247],[-147.572,43.01625],[-147.572,43.01625],[-147.5331,43.00749],[-147.5331,43.00749],[-147.4179,42.98108],[-147.4179,42.98108],[-147.33517,42.96205],[-147.33517,42.96205],[-147.3352,42.96205],[-147.3352,42.96205],[-147.2827,42.95],[-147.2827,42.95],[-147.1837,42.9271],[-147.1837,42.9271],[-147.1599,42.92159],[-147.1599,42.92159],[-147.1303,42.91476],[-147.1303,42.91476],[-147.09211,42.904913],[-147.09211,42.904913],[-147.0921,42.90491],[-147.0921,42.90491],[-147.0585,42.89836],[-147.0585,42.89836],[-147.0266,42.89085],[-147.0266,42.89085],[-147.0064,42.88604],[-147.0064,42.88604],[-146.9634,42.87631],[-146.9634,42.87631],[-146.83135,42.84435],[-146.83135,42.84435],[-146.8313,42.84435],[-146.8313,42.84435],[-146.7927,42.83451],[-146.7927,42.83451],[-146.64927,42.801113],[-146.64927,42.801113],[-146.6493,42.80111],[-146.6493,42.80111],[-146.6003,42.79128],[-146.6003,42.79128],[-146.557,42.78055],[-146.557,42.78055],[-146.45333,42.755167],[-146.45333,42.755167],[-146.4039,42.74332],[-146.4039,42.74332],[-146.3615,42.73311],[-146.3615,42.73311],[-146.3057,42.71975],[-146.3057,42.71975],[-146.24433,42.7049],[-146.24433,42.7049],[-146.2443,42.7049],[-146.2443,42.7049],[-146.0363,42.65444],[-146.0363,42.65444],[-146.01575,42.64945],[-146.01575,42.64945],[-146.0157,42.64945],[-146.0157,42.64945],[-145.9714,42.6386],[-145.9714,42.6386],[-145.8412,42.60666],[-145.8412,42.60666],[-145.80371,42.59743],[-145.80371,42.59743],[-145.8037,42.59743],[-145.8037,42.59743],[-145.6226,42.55273],[-145.6226,42.55273],[-145.49695,42.521427],[-145.49695,42.521427],[-145.4271,42.504],[-145.4271,42.504],[-145.30093,42.472353],[-145.30093,42.472353],[-145.3009,42.47235],[-145.3009,42.47235],[-145.2548,42.46077],[-145.2548,42.46077],[-145.2137,42.45034],[-145.2137,42.45034],[-145.09039,42.419103],[-145.09039,42.419103],[-145.0904,42.4191],[-145.0904,42.4191],[-145.038,42.40574],[-145.038,42.40574],[-144.85636,42.359387],[-144.85636,42.359387],[-144.8564,42.35939],[-144.8564,42.35939],[-144.7081,42.32123],[-144.7081,42.32123],[-144.65871,42.308483],[-144.65871,42.308483],[-144.6587,42.30848],[-144.6587,42.30848],[-144.5652,42.28425],[-144.5652,42.28425],[-144.5218,42.27299],[-144.5218,42.27299],[-144.45613,42.255887],[-144.45613,42.255887],[-144.4561,42.25589],[-144.4561,42.25589],[-144.3244,42.22144],[-144.3244,42.22144],[-144.2794,42.20963],[-144.2794,42.20963],[-144.21333,42.192233],[-144.21333,42.192233],[-144.2133,42.19223],[-144.2133,42.19223],[-144.0656,42.15321],[-144.0656,42.15321],[-144.013,42.13926],[-144.013,42.13926],[-143.89579,42.108083],[-143.89579,42.108083],[-143.8958,42.10808],[-143.8958,42.10808],[-143.834,42.09156],[-143.834,42.09156],[-143.8018,42.0829],[-143.8018,42.0829],[-143.73943,42.06623],[-143.73943,42.06623],[-143.7394,42.06623],[-143.7394,42.06623],[-143.672,42.04807],[-143.672,42.04807],[-143.6277,42.03615],[-143.6277,42.03615],[-143.5262,42.008637],[-143.5262,42.008637],[-143.4527,41.98873],[-143.4527,41.98873],[-143.28375,41.94262],[-143.28375,41.94262],[-143.2838,41.94262],[-143.2838,41.94262],[-143.1162,41.89665],[-143.1162,41.89665],[-143.00232,41.865183],[-143.00232,41.865183],[-142.9643,41.85468],[-142.9643,41.85468],[-142.923,41.84319],[-142.923,41.84319],[-142.6592,41.769627],[-142.6592,41.769627],[-142.6592,41.76963],[-142.6592,41.76963],[-142.5599,41.74183],[-142.5599,41.74183],[-142.4916,41.72249],[-142.4916,41.72249],[-142.39469,41.69507],[-142.39469,41.69507],[-142.3947,41.69507],[-142.3947,41.69507],[-142.3403,41.67952],[-142.3403,41.67952],[-142.21493,41.643887],[-142.21493,41.643887],[-142.2149,41.64389],[-142.2149,41.64389],[-142.1772,41.63309],[-142.1772,41.63309],[-141.81935,41.53],[-141.81935,41.53],[-141.7921,41.52219],[-141.7921,41.52219],[-141.76565,41.514507],[-141.76565,41.514507],[-141.7604,41.51297],[-141.7604,41.51297],[-141.7464,41.5089],[-141.7464,41.5089],[-141.7115,41.49877],[-141.7115,41.49877],[-141.6161,41.47092],[-141.6161,41.47092],[-141.5672,41.45662],[-141.5672,41.45662],[-141.47073,41.42834],[-141.47073,41.42834],[-141.4707,41.42834],[-141.4707,41.42834],[-141.4284,41.41577],[-141.4284,41.41577],[-141.17087,41.33968],[-141.17087,41.33968],[-141.1709,41.33968],[-141.1709,41.33968],[-141.10749,41.320797],[-141.10749,41.320797],[-141.1075,41.3208],[-141.1075,41.3208],[-141.0499,41.3036],[-141.0499,41.3036],[-140.9531,41.27459],[-140.9531,41.27459],[-140.8642,41.247887],[-140.8642,41.247887],[-140.8642,41.24789],[-140.8642,41.24789],[-140.7825,41.22329],[-140.7825,41.22329],[-140.7089,41.20105],[-140.7089,41.20105],[-140.41437,41.11142],[-140.41437,41.11142],[-140.4144,41.11142],[-140.4144,41.11142],[-140.3562,41.09361],[-140.3562,41.09361],[-140.2565,41.06291],[-140.2565,41.06291],[-140.09656,41.013547],[-140.09656,41.013547],[-140.0966,41.01355],[-140.0966,41.01355],[-139.93469,40.963313],[-139.93469,40.963313],[-139.9347,40.96331],[-139.9347,40.96331],[-139.57561,40.850667],[-139.57561,40.850667],[-139.5756,40.85067],[-139.5756,40.85067],[-139.35237,40.779827],[-139.35237,40.779827],[-139.3524,40.77983],[-139.3524,40.77983],[-139.12417,40.706853],[-139.12417,40.706853],[-139.1242,40.70685],[-139.1242,40.70685],[-138.8366,40.61408],[-138.8366,40.61408],[-138.8366,40.61408],[-138.8366,40.61408],[-138.64429,40.551377],[-138.64429,40.551377],[-138.6443,40.55138],[-138.6443,40.55138],[-138.5853,40.5321],[-138.5853,40.5321],[-138.5449,40.51893],[-138.5449,40.51893],[-138.43893,40.48412],[-138.43893,40.48412],[-138.4389,40.48412],[-138.4389,40.48412],[-138.3568,40.45704],[-138.3568,40.45704],[-138.2592,40.424797],[-138.2592,40.424797],[-138.2592,40.4248],[-138.2592,40.4248],[-138.1096,40.37512],[-138.1096,40.37512],[-138.07035,40.36204],[-138.07035,40.36204],[-138.0703,40.36204],[-138.0703,40.36204],[-137.9398,40.3183],[-137.9398,40.3183],[-137.8879,40.30095],[-137.8879,40.30095],[-137.82959,40.281387],[-137.82959,40.281387],[-137.8296,40.28139],[-137.8296,40.28139],[-137.713,40.24205],[-137.713,40.24205],[-137.6772,40.22999],[-137.6772,40.22999],[-137.63483,40.215617],[-137.63483,40.215617],[-137.6348,40.21562],[-137.6348,40.21562],[-137.5844,40.19849],[-137.5844,40.19849],[-137.53,40.18003],[-137.53,40.18003],[-137.4948,40.16799],[-137.4948,40.16799],[-137.39812,40.135057],[-137.39812,40.135057],[-137.3981,40.13506],[-137.3981,40.13506],[-137.3703,40.12552],[-137.3703,40.12552],[-137.341,40.1157],[-137.341,40.1157],[-137.20565,40.069093],[-137.20565,40.069093],[-137.2057,40.06909],[-137.2057,40.06909],[-137.1748,40.05833],[-137.1748,40.05833],[-137.133,40.04407],[-137.133,40.04407],[-137.111,40.03648],[-137.111,40.03648],[-137.0766,40.02472],[-137.0766,40.02472],[-136.99924,39.997877],[-136.99924,39.997877],[-136.9992,39.99788],[-136.9992,39.99788],[-136.9718,39.98849],[-136.9718,39.98849],[-136.81479,39.933653],[-136.81479,39.933653],[-136.8148,39.93365],[-136.8148,39.93365],[-136.7789,39.92131],[-136.7789,39.92131],[-136.7224,39.90143],[-136.7224,39.90143],[-136.6842,39.88821],[-136.6842,39.88821],[-136.6456,39.87468],[-136.6456,39.87468],[-136.6308,39.86938],[-136.6308,39.86938],[-136.59869,39.858143],[-136.59869,39.858143],[-136.5987,39.85814],[-136.5987,39.85814],[-136.4502,39.80584],[-136.4502,39.80584],[-136.4235,39.7964],[-136.4235,39.7964],[-136.40883,39.791147],[-136.40883,39.791147],[-136.4009,39.78855],[-136.4009,39.78855],[-136.323,39.76071],[-136.323,39.76071],[-136.2844,39.74716],[-136.2844,39.74716],[-136.221,39.72457],[-136.221,39.72457],[-136.18263,39.710907],[-136.18263,39.710907],[-136.1826,39.71091],[-136.1826,39.71091],[-136.1364,39.69437],[-136.1364,39.69437],[-136.0932,39.67916],[-136.0932,39.67916],[-136.0727,39.67144],[-136.0727,39.67144],[-136.0354,39.65839],[-136.0354,39.65839],[-135.98873,39.64152],[-135.98873,39.64152],[-135.9887,39.64152],[-135.9887,39.64152],[-135.9526,39.62872],[-135.9526,39.62872],[-135.9208,39.61716],[-135.9208,39.61716],[-135.8754,39.6007],[-135.8754,39.6007],[-135.78832,39.569507],[-135.78832,39.569507],[-135.729,39.54794],[-135.729,39.54794],[-135.713,39.54217],[-135.713,39.54217],[-135.6638,39.52429],[-135.6638,39.52429],[-135.6042,39.50274],[-135.6042,39.50274],[-135.55559,39.485067],[-135.55559,39.485067],[-135.5556,39.48507],[-135.5556,39.48507],[-135.4256,39.43737],[-135.4256,39.43737],[-135.3888,39.42413],[-135.3888,39.42413],[-135.35016,39.40986],[-135.35016,39.40986],[-135.3502,39.40986],[-135.3502,39.40986],[-135.3195,39.39868],[-135.3195,39.39868],[-135.2208,39.36246],[-135.2208,39.36246],[-135.1798,39.34718],[-135.1798,39.34718],[-135.06547,39.30508],[-135.06547,39.30508],[-135.0132,39.28562],[-135.0132,39.28562],[-134.9901,39.27705],[-134.9901,39.27705],[-134.94971,39.262083],[-134.94971,39.262083],[-134.9497,39.26208],[-134.9497,39.26208],[-134.886,39.23841],[-134.886,39.23841],[-134.74405,39.185337],[-134.74405,39.185337],[-134.744,39.18534],[-134.744,39.18534],[-134.6111,39.13529],[-134.6111,39.13529],[-134.46524,39.080463],[-134.46524,39.080463],[-134.4652,39.08046],[-134.4652,39.08046],[-134.30867,39.021223],[-134.30867,39.021223],[-134.3087,39.02122],[-134.3087,39.02122],[-134.2749,39.00831],[-134.2749,39.00831],[-134.2089,38.98317],[-134.2089,38.98317],[-134.1574,38.96355],[-134.1574,38.96355],[-134.02905,38.914357],[-134.02905,38.914357],[-134.0291,38.91436],[-134.0291,38.91436],[-133.92867,38.875863],[-133.92867,38.875863],[-133.9287,38.87586],[-133.9287,38.87586],[-133.8933,38.86223],[-133.8933,38.86223],[-133.7532,38.8082],[-133.7532,38.8082],[-133.60997,38.75258],[-133.60997,38.75258],[-133.61,38.75258],[-133.61,38.75258],[-133.5701,38.73711],[-133.5701,38.73711],[-133.52469,38.719393],[-133.52469,38.719393],[-133.5247,38.71939],[-133.5247,38.71939],[-133.5043,38.7114],[-133.5043,38.7114],[-133.4619,38.69489],[-133.4619,38.69489],[-133.4244,38.68025],[-133.4244,38.68025],[-133.3537,38.65257],[-133.3537,38.65257],[-133.28833,38.62692],[-133.28833,38.62692],[-133.2883,38.62692],[-133.2883,38.62692],[-133.1722,38.58121],[-133.1722,38.58121],[-133.06244,38.537873],[-133.06244,38.537873],[-133.0624,38.53787],[-133.0624,38.53787],[-132.88907,38.469033],[-132.88907,38.469033],[-132.8891,38.46903],[-132.8891,38.46903],[-132.7455,38.41175],[-132.7455,38.41175],[-132.60379,38.354987],[-132.60379,38.354987],[-132.6038,38.35499],[-132.6038,38.35499],[-132.5691,38.34113],[-132.5691,38.34113],[-132.46353,38.298523],[-132.46353,38.298523],[-132.4635,38.29852],[-132.4635,38.29852],[-132.4247,38.28289],[-132.4247,38.28289],[-132.24108,38.208423],[-132.24108,38.208423],[-132.2411,38.20842],[-132.2411,38.20842],[-132.2236,38.20131],[-132.2236,38.20131],[-132.1678,38.17869],[-132.1678,38.17869],[-132.07424,38.140487],[-132.07424,38.140487],[-132.0742,38.14049],[-132.0742,38.14049],[-132.0406,38.12678],[-132.0406,38.12678],[-131.89128,38.065513],[-131.89128,38.065513],[-131.8913,38.06551],[-131.8913,38.06551],[-131.7871,38.0226],[-131.7871,38.0226],[-131.7484,38.00663],[-131.7484,38.00663],[-131.64412,37.963513],[-131.64412,37.963513],[-131.6126,37.95047],[-131.6126,37.95047],[-131.5951,37.94318],[-131.5951,37.94318],[-131.49317,37.900827],[-131.49317,37.900827],[-131.4932,37.90083],[-131.4932,37.90083],[-131.3534,37.84253],[-131.3534,37.84253],[-131.22175,37.787447],[-131.22175,37.787447],[-131.2217,37.78745],[-131.2217,37.78745],[-131.1819,37.77068],[-131.1819,37.77068],[-131.12571,37.747057],[-131.12571,37.747057],[-131.1257,37.74706],[-131.1257,37.74706],[-131.073,37.72475],[-131.073,37.72475],[-130.91276,37.657013],[-130.91276,37.657013],[-130.9128,37.65701],[-130.9128,37.65701],[-130.71841,37.57441],[-130.71841,37.57441],[-130.7184,37.57441],[-130.7184,37.57441],[-130.5703,37.51095],[-130.5703,37.51095],[-130.43008,37.450727],[-130.43008,37.450727],[-130.4301,37.45073],[-130.4301,37.45073],[-130.12251,37.31776],[-130.12251,37.31776],[-130.1225,37.31776],[-130.1225,37.31776],[-129.91925,37.229263],[-129.91925,37.229263],[-129.9193,37.22926],[-129.9193,37.22926],[-129.69881,37.132507],[-129.69881,37.132507],[-129.6988,37.13251],[-129.6988,37.13251],[-129.666,37.11798],[-129.666,37.11798],[-129.57709,37.078797],[-129.57709,37.078797],[-129.5771,37.0788],[-129.5771,37.0788],[-129.4483,37.02178],[-129.4483,37.02178],[-129.4146,37.00683],[-129.4146,37.00683],[-129.25705,36.93665],[-129.25705,36.93665],[-129.2336,36.92613],[-129.2336,36.92613],[-129.09509,36.864173],[-129.09509,36.864173],[-129.0951,36.86417],[-129.0951,36.86417],[-129.0618,36.8492],[-129.0618,36.8492],[-129.0416,36.84015],[-129.0416,36.84015],[-128.9955,36.81937],[-128.9955,36.81937],[-128.92977,36.789807],[-128.92977,36.789807],[-128.9298,36.78981],[-128.9298,36.78981],[-128.8904,36.77207],[-128.8904,36.77207],[-128.8172,36.73892],[-128.8172,36.73892],[-128.76915,36.717227],[-128.76915,36.717227],[-128.7691,36.71723],[-128.7691,36.71723],[-128.725,36.69713],[-128.725,36.69713],[-128.59743,36.639213],[-128.59743,36.639213],[-128.5974,36.63921],[-128.5974,36.63921],[-128.5601,36.62219],[-128.5601,36.62219],[-128.5452,36.61543],[-128.5452,36.61543],[-128.3996,36.548783],[-128.3996,36.548783],[-128.3996,36.54878],[-128.3996,36.54878],[-128.3664,36.53362],[-128.3664,36.53362],[-128.3241,36.51429],[-128.3241,36.51429],[-128.2679,36.4885],[-128.2679,36.4885],[-128.222,36.46743],[-128.222,36.46743],[-128.20968,36.461573],[-128.20968,36.461573],[-128.1073,36.41433],[-128.1073,36.41433],[-128.0575,36.39147],[-128.0575,36.39147],[-128.0213,36.37467],[-128.0213,36.37467],[-127.93108,36.332807],[-127.93108,36.332807],[-127.9311,36.33281],[-127.9311,36.33281],[-127.8914,36.31434],[-127.8914,36.31434],[-127.8553,36.29753],[-127.8553,36.29753],[-127.68195,36.216547],[-127.68195,36.216547],[-127.6819,36.21655],[-127.6819,36.21655],[-127.56839,36.163353],[-127.56839,36.163353],[-127.5321,36.14624],[-127.5321,36.14624],[-127.40475,36.08637],[-127.40475,36.08637],[-127.4047,36.08637],[-127.4047,36.08637],[-127.3693,36.06952],[-127.3693,36.06952],[-127.3423,36.05687],[-127.3423,36.05687],[-127.268,36.02165],[-127.268,36.02165],[-127.24576,36.011113],[-127.24576,36.011113],[-127.2458,36.01111],[-127.2458,36.01111],[-127.2071,35.99281],[-127.2071,35.99281],[-127.0853,35.93491],[-127.0853,35.93491],[-127.04,35.91324],[-127.04,35.91324],[-127.04,35.91324],[-127.04,35.91324],[-126.9231,35.85731],[-126.9231,35.85731],[-126.87903,35.83628],[-126.87903,35.83628],[-126.879,35.83628],[-126.879,35.83628],[-126.8301,35.81288],[-126.8301,35.81288],[-126.7566,35.77749],[-126.7566,35.77749],[-126.7386,35.76879],[-126.7386,35.76879],[-126.69732,35.748933],[-126.69732,35.748933],[-126.6792,35.74021],[-126.6792,35.74021],[-126.6558,35.72881],[-126.6558,35.72881],[-126.6122,35.70783],[-126.6122,35.70783],[-126.5693,35.68705],[-126.5693,35.68705],[-126.43309,35.62108],[-126.43309,35.62108],[-126.4331,35.62108],[-126.4331,35.62108],[-126.3785,35.59467],[-126.3785,35.59467],[-126.3126,35.562583],[-126.3126,35.562583],[-126.3126,35.56258],[-126.3126,35.56258],[-126.2637,35.53873],[-126.2637,35.53873],[-126.2479,35.53098],[-126.2479,35.53098],[-126.2172,35.51591],[-126.2172,35.51591],[-126.2041,35.50596],[-126.2041,35.50596],[-126.20232,35.498267],[-126.20232,35.498267],[-126.2023,35.49827],[-126.2023,35.49827],[-126.2049,35.48821],[-126.2049,35.48821],[-126.1045,35.47203],[-126.1045,35.47203],[-125.98669,35.442247],[-125.98669,35.442247],[-125.9867,35.44225],[-125.9867,35.44225],[-125.939,35.43017],[-125.939,35.43017],[-125.9032,35.42123],[-125.9032,35.42123],[-125.84744,35.406997],[-125.84744,35.406997],[-125.8474,35.407],[-125.8474,35.407],[-125.7937,35.39563],[-125.7937,35.39563],[-125.7084,35.38061],[-125.7084,35.38061],[-125.65196,35.369943],[-125.65196,35.369943],[-125.652,35.36994],[-125.652,35.36994],[-125.4646,35.331333],[-125.4646,35.331333],[-125.4646,35.33133],[-125.4646,35.33133],[-125.421,35.32285],[-125.421,35.32285],[-125.23605,35.285757],[-125.23605,35.285757],[-125.2361,35.28576],[-125.2361,35.28576],[-125.1149,35.26116],[-125.1149,35.26116],[-125.0556,35.24932],[-125.0556,35.24932],[-124.97204,35.23246],[-124.97204,35.23246],[-124.972,35.23246],[-124.972,35.23246],[-124.8752,35.21312],[-124.8752,35.21312],[-124.7748,35.19293],[-124.7748,35.19293],[-124.7092,35.17976],[-124.7092,35.17976],[-124.676,35.17308],[-124.676,35.17308],[-124.6147,35.16079],[-124.6147,35.16079],[-124.5759,35.15302],[-124.5759,35.15302],[-124.5119,35.1401],[-124.5119,35.1401],[-124.462,35.13011],[-124.462,35.13011],[-124.3412,35.10594],[-124.3412,35.10594],[-124.3029,35.09821],[-124.3029,35.09821],[-124.2164,35.08081],[-124.2164,35.08081],[-124.1639,35.0703],[-124.1639,35.0703],[-124.1391,35.06533],[-124.1391,35.06533],[-124.122,35.06183],[-124.122,35.06183],[-124.0997,35.05723],[-124.0997,35.05723],[-124.0791,35.05345],[-124.0791,35.05345],[-124.0677,35.05226],[-124.0677,35.05226],[-124.0606,35.05072],[-124.0606,35.05072],[-124.0438,35.04822],[-124.0438,35.04822],[-124.0391,35.04774],[-124.0391,35.04774],[-124.0335,35.04749],[-124.0335,35.04749],[-124.0241,35.04572],[-124.0241,35.04572],[-124.0124,35.0436],[-124.0124,35.0436],[-123.9902,35.03968],[-123.9902,35.03968],[-123.9751,35.03661],[-123.9751,35.03661],[-123.9465,35.02988],[-123.9465,35.02988],[-123.9226,35.02422],[-123.9226,35.02422],[-123.9039,35.01984],[-123.9039,35.01984],[-123.8696,35.01219],[-123.8696,35.01219],[-123.8488,35.0076],[-123.8488,35.0076],[-123.8225,35.00169],[-123.8225,35.00169],[-123.8071,34.99857],[-123.8071,34.99857],[-123.7833,34.99368],[-123.7833,34.99368],[-123.7667,34.99037],[-123.7667,34.99037],[-123.747,34.98636],[-123.747,34.98636],[-123.7275,34.98253],[-123.7275,34.98253],[-123.7109,34.97903],[-123.7109,34.97903],[-123.696,34.97608],[-123.696,34.97608],[-123.6811,34.97309],[-123.6811,34.97309],[-123.6648,34.9698],[-123.6648,34.9698],[-123.6416,34.96515],[-123.6416,34.96515],[-123.6255,34.96193],[-123.6255,34.96193],[-123.6129,34.9594],[-123.6129,34.9594],[-123.5945,34.95575],[-123.5945,34.95575],[-123.5783,34.95252],[-123.5783,34.95252],[-123.5521,34.9472],[-123.5521,34.9472],[-123.5324,34.94323],[-123.5324,34.94323],[-123.4999,34.93664],[-123.4999,34.93664],[-123.484,34.93351],[-123.484,34.93351],[-123.4678,34.93013],[-123.4678,34.93013],[-123.4509,34.92677],[-123.4509,34.92677],[-123.4341,34.92344],[-123.4341,34.92344],[-123.4105,34.91863],[-123.4105,34.91863],[-123.3953,34.91559],[-123.3953,34.91559],[-123.3792,34.91233],[-123.3792,34.91233],[-123.3652,34.90953],[-123.3652,34.90953],[-123.3491,34.90629],[-123.3491,34.90629],[-123.3253,34.90148],[-123.3253,34.90148],[-123.293,34.89497],[-123.293,34.89497],[-123.2762,34.89164],[-123.2762,34.89164],[-123.2606,34.88854],[-123.2606,34.88854],[-123.2445,34.88522],[-123.2445,34.88522],[-123.2214,34.8806],[-123.2214,34.8806],[-123.2061,34.87749],[-123.2061,34.87749],[-123.1887,34.87401],[-123.1887,34.87401],[-123.1721,34.87066],[-123.1721,34.87066],[-123.1554,34.86733],[-123.1554,34.86733],[-123.1372,34.86363],[-123.1372,34.86363],[-123.121,34.86037],[-123.121,34.86037],[-123.1021,34.8566],[-123.1021,34.8566],[-123.0861,34.85337],[-123.0861,34.85337],[-123.0702,34.85013],[-123.0702,34.85013],[-123.0479,34.84565],[-123.0479,34.84565],[-123.032,34.84248],[-123.032,34.84248],[-123.0161,34.83924],[-123.0161,34.83924],[-123.0008,34.83615],[-123.0008,34.83615],[-122.9806,34.83207],[-122.9806,34.83207],[-122.957,34.82732],[-122.957,34.82732],[-122.9396,34.82379],[-122.9396,34.82379],[-122.9236,34.82055],[-122.9236,34.82055],[-122.9069,34.81725],[-122.9069,34.81725],[-122.8887,34.81353],[-122.8887,34.81353],[-122.8717,34.8101],[-122.8717,34.8101],[-122.8549,34.80677],[-122.8549,34.80677],[-122.8366,34.803],[-122.8366,34.803],[-122.8197,34.79964],[-122.8197,34.79964],[-122.7942,34.7945],[-122.7942,34.7945],[-122.7646,34.78856],[-122.7646,34.78856],[-122.7449,34.78454],[-122.7449,34.78454],[-122.728,34.78114],[-122.728,34.78114],[-122.7056,34.77663],[-122.7056,34.77663],[-122.686,34.77267],[-122.686,34.77267],[-122.6637,34.7682],[-122.6637,34.7682],[-122.6468,34.76471],[-122.6468,34.76471],[-122.6316,34.76169],[-122.6316,34.76169],[-122.6162,34.75856],[-122.6162,34.75856],[-122.5968,34.75467],[-122.5968,34.75467],[-122.5814,34.75161],[-122.5814,34.75161],[-122.564,34.74812],[-122.564,34.74812],[-122.5474,34.74471],[-122.5474,34.74471],[-122.5319,34.74163],[-122.5319,34.74163],[-122.5081,34.73678],[-122.5081,34.73678],[-122.4851,34.73207],[-122.4851,34.73207],[-122.4696,34.72905],[-122.4696,34.72905],[-122.4508,34.72515],[-122.4508,34.72515],[-122.4306,34.72116],[-122.4306,34.72116],[-122.4138,34.71777],[-122.4138,34.71777],[-122.3901,34.71292],[-122.3901,34.71292],[-122.3747,34.70986],[-122.3747,34.70986],[-122.3593,34.7067],[-122.3593,34.7067],[-122.3439,34.70362],[-122.3439,34.70362],[-122.3194,34.69868],[-122.3194,34.69868],[-122.3034,34.69546],[-122.3034,34.69546],[-122.2874,34.6922],[-122.2874,34.6922],[-122.2642,34.68754],[-122.2642,34.68754],[-122.2467,34.68404],[-122.2467,34.68404],[-122.2299,34.68077],[-122.2299,34.68077],[-122.213,34.67713],[-122.213,34.67713],[-122.1968,34.67391],[-122.1968,34.67391],[-122.1714,34.66876],[-122.1714,34.66876],[-122.1561,34.66571],[-122.1561,34.66571],[-122.1394,34.66231],[-122.1394,34.66231],[-122.1151,34.65743],[-122.1151,34.65743],[-122.0987,34.65407],[-122.0987,34.65407],[-122.0801,34.65037],[-122.0801,34.65037],[-122.0628,34.64679],[-122.0628,34.64679],[-122.0462,34.64345],[-122.0462,34.64345],[-122.0253,34.63928],[-122.0253,34.63928],[-122.0003,34.63413],[-122.0003,34.63413],[-121.9791,34.62994],[-121.9791,34.62994],[-121.9637,34.62676],[-121.9637,34.62676],[-121.9478,34.62364],[-121.9478,34.62364],[-121.9292,34.61985],[-121.9292,34.61985],[-121.9141,34.61681],[-121.9141,34.61681],[-121.897,34.61337],[-121.897,34.61337],[-121.8813,34.6102],[-121.8813,34.6102],[-121.8656,34.60707],[-121.8656,34.60707],[-121.8459,34.60299],[-121.8459,34.60299],[-121.8344,34.60072],[-121.8344,34.60072],[-121.8187,34.59758],[-121.8187,34.59758],[-121.803,34.59444],[-121.803,34.59444],[-121.7866,34.59105],[-121.7866,34.59105],[-121.7702,34.58775],[-121.7702,34.58775],[-121.7464,34.58295],[-121.7464,34.58295],[-121.7307,34.57981],[-121.7307,34.57981],[-121.7136,34.57639],[-121.7136,34.57639],[-121.6966,34.57283],[-121.6966,34.57283],[-121.6816,34.56986],[-121.6816,34.56986],[-121.6588,34.56521],[-121.6588,34.56521],[-121.6429,34.56197],[-121.6429,34.56197],[-121.6278,34.5589],[-121.6278,34.5589],[-121.612,34.55578],[-121.612,34.55578],[-121.589,34.55108],[-121.589,34.55108],[-121.5717,34.54758],[-121.5717,34.54758],[-121.5536,34.54392],[-121.5536,34.54392],[-121.5348,34.5401],[-121.5348,34.5401],[-121.5104,34.53518],[-121.5104,34.53518],[-121.4909,34.5312],[-121.4909,34.5312],[-121.4728,34.52757],[-121.4728,34.52757],[-121.456,34.52417],[-121.456,34.52417],[-121.4378,34.52045],[-121.4378,34.52045],[-121.421,34.51707],[-121.421,34.51707],[-121.4063,34.51409],[-121.4063,34.51409],[-121.3901,34.51081],[-121.3901,34.51081],[-121.3733,34.50739],[-121.3733,34.50739],[-121.3563,34.50402],[-121.3563,34.50402],[-121.3423,34.50109],[-121.3423,34.50109],[-121.3268,34.49802],[-121.3268,34.49802],[-121.3106,34.4947],[-121.3106,34.4947],[-121.2938,34.49133],[-121.2938,34.49133],[-121.275,34.48757],[-121.275,34.48757],[-121.2547,34.48338],[-121.2547,34.48338],[-121.2315,34.47875],[-121.2315,34.47875],[-121.2141,34.47517],[-121.2141,34.47517],[-121.1812,34.46853],[-121.1812,34.46853],[-121.1632,34.46491],[-121.1632,34.46491],[-121.1474,34.46177],[-121.1474,34.46177],[-121.1301,34.45822],[-121.1301,34.45822],[-121.106,34.45329],[-121.106,34.45329],[-121.0901,34.45012],[-121.0901,34.45012],[-121.0661,34.44524],[-121.0661,34.44524],[-121.0491,34.44179],[-121.0491,34.44179],[-121.0303,34.43803],[-121.0303,34.43803],[-121.0081,34.43348],[-121.0081,34.43348],[-120.9842,34.42867],[-120.9842,34.42867],[-120.9692,34.4256],[-120.9692,34.4256],[-120.9497,34.42161],[-120.9497,34.42161],[-120.9324,34.41815],[-120.9324,34.41815],[-120.9183,34.41531],[-120.9183,34.41531],[-120.905,34.41257],[-120.905,34.41257],[-120.8894,34.40949],[-120.8894,34.40949],[-120.8712,34.40563],[-120.8712,34.40563],[-120.8564,34.40231],[-120.8564,34.40231],[-120.8429,34.39925],[-120.8429,34.39925],[-120.8257,34.39536],[-120.8257,34.39536],[-120.8085,34.39145],[-120.8085,34.39145],[-120.7896,34.38719],[-120.7896,34.38719],[-120.773,34.38343],[-120.773,34.38343],[-120.7547,34.37917],[-120.7547,34.37917],[-120.7406,34.37605],[-120.7406,34.37605],[-120.7253,34.37261],[-120.7253,34.37261],[-120.7096,34.36903],[-120.7096,34.36903],[-120.6938,34.36542],[-120.6938,34.36542],[-120.6762,34.36152],[-120.6762,34.36152],[-120.6606,34.35789],[-120.6606,34.35789],[-120.6396,34.35318],[-120.6396,34.35318],[-120.6229,34.34941],[-120.6229,34.34941],[-120.61,34.34642],[-120.61,34.34642],[-120.5965,34.34339],[-120.5965,34.34339],[-120.583,34.34033],[-120.583,34.34033],[-120.5636,34.33595],[-120.5636,34.33595],[-120.5512,34.33311],[-120.5512,34.33311],[-120.5383,34.33016],[-120.5383,34.33016],[-120.5253,34.32723],[-120.5253,34.32723],[-120.5117,34.32417],[-120.5117,34.32417],[-120.4975,34.32093],[-120.4975,34.32093],[-120.4845,34.31804],[-120.4845,34.31804],[-120.4709,34.31491],[-120.4709,34.31491],[-120.4568,34.31176],[-120.4568,34.31176],[-120.4437,34.30869],[-120.4437,34.30869],[-120.4313,34.30599],[-120.4313,34.30599],[-120.4177,34.30281],[-120.4177,34.30281],[-120.403,34.29948],[-120.403,34.29948],[-120.3906,34.29664],[-120.3906,34.29664],[-120.3766,34.29355],[-120.3766,34.29355],[-120.3628,34.2903],[-120.3628,34.2903],[-120.3491,34.28733],[-120.3491,34.28733],[-120.3359,34.28424],[-120.3359,34.28424],[-120.3221,34.28109],[-120.3221,34.28109],[-120.3094,34.27823],[-120.3094,34.27823],[-120.2967,34.27535],[-120.2967,34.27535],[-120.2758,34.2706],[-120.2758,34.2706],[-120.2625,34.26756],[-120.2625,34.26756],[-120.2486,34.26444],[-120.2486,34.26444],[-
View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment