made with requirebin
Created
April 18, 2014 04:26
-
-
Save ahdinosaur/11024795 to your computer and use it in GitHub Desktop.
requirebin sketch
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var d3 = require('d3'); | |
var nodes = d3.range(200).map(function () { | |
return { | |
radius: Math.random() * 12 + 4 | |
}; | |
}); | |
var root = nodes[0]; | |
root.radius = 0; | |
root.fixed = true; | |
var force = d3.layout.force() | |
.gravity(0.05) | |
.charge(function(d, i) { return i ? 0 : -2000; }) | |
; | |
canvas = d3.select('body').insert('canvas', ":first-child"); | |
var resize = function (e) { | |
console.log("resize", e); | |
width = window.innerWidth; | |
height = window.innerHeight; | |
canvas | |
.attr('height', height) | |
.attr('width', width) | |
; | |
context = canvas.node().getContext("2d"); | |
force | |
.size([width, height]) | |
.start() | |
; | |
} | |
resize(); | |
d3.select(window).on('resize', resize); | |
force.on("tick", function(e) { | |
console.log("tick", e, context); | |
var q = d3.geom.quadtree(nodes), | |
i, | |
d, | |
n = nodes.length; | |
for (i = 1; i < n; ++i) q.visit(collide(nodes[i])); | |
context.clearRect(0, 0, width, height); | |
context.fillStyle = "red"; | |
context.beginPath(); | |
for (i = 1; i < n; ++i) { | |
d = nodes[i]; | |
context.moveTo(d.x, d.y); | |
context.arc(d.x, d.y, d.radius, 0, 2 * Math.PI); | |
} | |
context.fill(); | |
}); | |
canvas.on("mousemove", function() { | |
var p1 = d3.mouse(this); | |
root.px = p1[0]; | |
root.py = p1[1]; | |
force.resume(); | |
}); | |
function collide(node) { | |
var r = node.radius + 16, | |
nx1 = node.x - r, | |
nx2 = node.x + r, | |
ny1 = node.y - r, | |
ny2 = node.y + r; | |
return function(quad, x1, y1, x2, y2) { | |
if (quad.point && (quad.point !== node)) { | |
var x = node.x - quad.point.x, | |
y = node.y - quad.point.y, | |
l = Math.sqrt(x * x + y * y), | |
r = node.radius + quad.point.radius; | |
if (l < r) { | |
l = (l - r) / l * .5; | |
node.x -= x *= l; | |
node.y -= y *= l; | |
quad.point.x += x; | |
quad.point.y += y; | |
} | |
} | |
return x1 > nx2 || x2 < nx1 || y1 > ny2 || y2 < ny1; | |
}; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function collide(n){var t=n.radius+16,e=n.x-t,r=n.x+t,u=n.y-t,i=n.y+t;return function(t,o,a,c,s){if(t.point&&t.point!==n){var l=n.x-t.point.x,f=n.y-t.point.y,h=Math.sqrt(l*l+f*f),g=n.radius+t.point.radius;g>h&&(h=.5*((h-g)/h),n.x-=l*=h,n.y-=f*=h,t.point.x+=l,t.point.y+=f)}return o>r||e>c||a>i||u>s}}require=function e(n,t,r){function u(o,a){if(!t[o]){if(!n[o]){var c="function"==typeof require&&require;if(!a&&c)return c(o,!0);if(i)return i(o,!0);throw Error("Cannot find module '"+o+"'")}var s=t[o]={exports:{}};n[o][0].call(s.exports,function(t){var e=n[o][1][t];return u(e?e:t)},s,s.exports,e,n,t,r)}return t[o].exports}for(var i="function"==typeof require&&require,o=0;r.length>o;o++)u(r[o]);return u}({"1iv++k":[function(n,t){!function(){function n(n,t){return t>n?-1:n>t?1:n>=t?0:0/0}function e(n){return null!=n&&!isNaN(n)}function r(n){return{left:function(t,e,r,u){for(3>arguments.length&&(r=0),4>arguments.length&&(u=t.length);u>r;){var i=r+u>>>1;0>n(t[i],e)?r=i+1:u=i}return r},right:function(t,e,r,u){for(3>arguments.length&&(r=0),4>arguments.length&&(u=t.length);u>r;){var i=r+u>>>1;n(t[i],e)>0?u=i:r=i+1}return r}}}function u(n){return n.length}function i(n){for(var t=1;n*t%1;)t*=10;return t}function o(n,t){try{for(var e in t)Object.defineProperty(n.prototype,e,{value:t[e],enumerable:!1})}catch(r){n.prototype=t}}function a(){}function c(n){return ga+n in this}function s(n){return n=ga+n,n in this&&delete this[n]}function l(){var n=[];return this.forEach(function(t){n.push(t)}),n}function f(){var n=0;for(var t in this)t.charCodeAt(0)===pa&&++n;return n}function h(){for(var n in this)if(n.charCodeAt(0)===pa)return!1;return!0}function g(){}function p(n,t,e){return function(){var r=e.apply(t,arguments);return r===t?n:r}}function v(n,t){if(t in n)return t;t=t.charAt(0).toUpperCase()+t.substring(1);for(var e=0,r=va.length;r>e;++e){var u=va[e]+t;if(u in n)return u}}function d(){}function m(){}function y(n){function t(){for(var t,r=e,u=-1,i=r.length;i>++u;)(t=r[u].on)&&t.apply(this,arguments);return n}var e=[],r=new a;return t.on=function(t,u){var i,o=r.get(t);return 2>arguments.length?o&&o.on:(o&&(o.on=null,e=e.slice(0,i=e.indexOf(o)).concat(e.slice(i+1)),r.remove(t)),u&&e.push(r.set(t,{on:u})),n)},t}function x(){Ko.event.preventDefault()}function M(){for(var n,t=Ko.event;n=t.sourceEvent;)t=n;return t}function _(n){for(var t=new m,e=0,r=arguments.length;r>++e;)t[arguments[e]]=y(t);return t.of=function(e,r){return function(u){try{var i=u.sourceEvent=Ko.event;u.target=n,Ko.event=u,t[u.type].apply(e,r)}finally{Ko.event=i}}},t}function b(n){return ma(n,ba),n}function w(n){return"function"==typeof n?n:function(){return ya(n,this)}}function S(n){return"function"==typeof n?n:function(){return xa(n,this)}}function k(n,t){function e(){this.removeAttribute(n)}function r(){this.removeAttributeNS(n.space,n.local)}function u(){this.setAttribute(n,t)}function i(){this.setAttributeNS(n.space,n.local,t)}function o(){var e=t.apply(this,arguments);null==e?this.removeAttribute(n):this.setAttribute(n,e)}function a(){var e=t.apply(this,arguments);null==e?this.removeAttributeNS(n.space,n.local):this.setAttributeNS(n.space,n.local,e)}return n=Ko.ns.qualify(n),null==t?n.local?r:e:"function"==typeof t?n.local?a:o:n.local?i:u}function E(n){return n.trim().replace(/\s+/g," ")}function C(n){return RegExp("(?:^|\\s+)"+Ko.requote(n)+"(?:\\s+|$)","g")}function N(n){return n.trim().split(/^|\s+/)}function A(n,t){function e(){for(var e=-1;u>++e;)n[e](this,t)}function r(){for(var e=-1,r=t.apply(this,arguments);u>++e;)n[e](this,r)}n=N(n).map(q);var u=n.length;return"function"==typeof t?r:e}function q(n){var t=C(n);return function(e,r){if(u=e.classList)return r?u.add(n):u.remove(n);var u=e.getAttribute("class")||"";r?(t.lastIndex=0,t.test(u)||e.setAttribute("class",E(u+" "+n))):e.setAttribute("class",E(u.replace(t," ")))}}function z(n,t,e){function r(){this.style.removeProperty(n)}function u(){this.style.setProperty(n,t,e)}function i(){var r=t.apply(this,arguments);null==r?this.style.removeProperty(n):this.style.setProperty(n,r,e)}return null==t?r:"function"==typeof t?i:u}function L(n,t){function e(){delete this[n]}function r(){this[n]=t}function u(){var e=t.apply(this,arguments);null==e?delete this[n]:this[n]=e}return null==t?e:"function"==typeof t?u:r}function T(n){return"function"==typeof n?n:(n=Ko.ns.qualify(n)).local?function(){return this.ownerDocument.createElementNS(n.space,n.local)}:function(){return this.ownerDocument.createElementNS(this.namespaceURI,n)}}function R(n){return{__data__:n}}function D(n){return function(){return _a(this,n)}}function P(t){return arguments.length||(t=n),function(n,e){return n&&e?t(n.__data__,e.__data__):!n-!e}}function U(n,t){for(var e=0,r=n.length;r>e;e++)for(var u,i=n[e],o=0,a=i.length;a>o;o++)(u=i[o])&&t(u,o,e);return n}function j(n){return ma(n,Sa),n}function H(n){var t,e;return function(r,u,i){var o,a=n[i].update,c=a.length;for(i!=e&&(e=i,t=0),u>=t&&(t=u+1);!(o=a[t])&&c>++t;);return o}}function F(){var n=this.__transition__;n&&++n.active}function O(n,t,e){function r(){var t=this[o];t&&(this.removeEventListener(n,t,t.$),delete this[o])}function u(){var u=c(t,na(arguments));r.call(this),this.addEventListener(n,this[o]=u,u.$=e),u._=t}function i(){var t,e=RegExp("^__on([^.]+)"+Ko.requote(n)+"$");for(var r in this)if(t=r.match(e)){var u=this[r];this.removeEventListener(t[1],u,u.$),delete this[r]}}var o="__on"+n,a=n.indexOf("."),c=I;a>0&&(n=n.substring(0,a));var s=Ea.get(n);return s&&(n=s,c=Y),a?t?u:r:t?d:i}function I(n,t){return function(e){var r=Ko.event;Ko.event=e,t[0]=this.__data__;try{n.apply(this,t)}finally{Ko.event=r}}}function Y(n,t){var e=I(n,t);return function(n){var t=this,r=n.relatedTarget;r&&(r===t||8&r.compareDocumentPosition(t))||e.call(t,n)}}function Z(){var n=".dragsuppress-"+ ++Na,t="click"+n,e=Ko.select(ra).on("touchmove"+n,x).on("dragstart"+n,x).on("selectstart"+n,x);if(Ca){var r=ea.style,u=r[Ca];r[Ca]="none"}return function(i){function o(){e.on(t,null)}e.on(n,null),Ca&&(r[Ca]=u),i&&(e.on(t,function(){x(),o()},!0),setTimeout(o,0))}}function V(n,t){t.changedTouches&&(t=t.changedTouches[0]);var e=n.ownerSVGElement||n;if(e.createSVGPoint){var r=e.createSVGPoint();return r.x=t.clientX,r.y=t.clientY,r=r.matrixTransform(n.getScreenCTM().inverse()),[r.x,r.y]}var u=n.getBoundingClientRect();return[t.clientX-u.left-n.clientLeft,t.clientY-u.top-n.clientTop]}function $(){return Ko.event.changedTouches[0].identifier}function X(){return Ko.event.target}function B(){return ra}function W(n){return n>0?1:0>n?-1:0}function J(n,t,e){return(t[0]-n[0])*(e[1]-n[1])-(t[1]-n[1])*(e[0]-n[0])}function G(n){return n>1?0:-1>n?Aa:Math.acos(n)}function K(n){return n>1?za:-1>n?-za:Math.asin(n)}function Q(n){return((n=Math.exp(n))-1/n)/2}function nt(n){return((n=Math.exp(n))+1/n)/2}function tt(n){return((n=Math.exp(2*n))-1)/(n+1)}function et(n){return(n=Math.sin(n/2))*n}function rt(){}function ut(n,t,e){return new it(n,t,e)}function it(n,t,e){this.h=n,this.s=t,this.l=e}function ot(n,t,e){function r(n){return n>360?n-=360:0>n&&(n+=360),60>n?i+(o-i)*n/60:180>n?o:240>n?i+(o-i)*(240-n)/60:i}function u(n){return Math.round(255*r(n))}var i,o;return n=isNaN(n)?0:0>(n%=360)?n+360:n,t=isNaN(t)?0:0>t?0:t>1?1:t,e=0>e?0:e>1?1:e,o=.5>=e?e*(1+t):e+t-e*t,i=2*e-o,xt(u(n+120),u(n),u(n-120))}function at(n,t,e){return new ct(n,t,e)}function ct(n,t,e){this.h=n,this.c=t,this.l=e}function st(n,t,e){return isNaN(n)&&(n=0),isNaN(t)&&(t=0),lt(e,Math.cos(n*=Ra)*t,Math.sin(n)*t)}function lt(n,t,e){return new ft(n,t,e)}function ft(n,t,e){this.l=n,this.a=t,this.b=e}function ht(n,t,e){var r=(n+16)/116,u=r+t/500,i=r-e/200;return u=pt(u)*Va,r=pt(r)*$a,i=pt(i)*Xa,xt(dt(3.2404542*u-1.5371385*r-.4985314*i),dt(-.969266*u+1.8760108*r+.041556*i),dt(.0556434*u-.2040259*r+1.0572252*i))}function gt(n,t,e){return n>0?at(Math.atan2(e,t)*Da,Math.sqrt(t*t+e*e),n):at(0/0,0/0,n)}function pt(n){return n>.206893034?n*n*n:(n-4/29)/7.787037}function vt(n){return n>.008856?Math.pow(n,1/3):7.787037*n+4/29}function dt(n){return Math.round(255*(.00304>=n?12.92*n:1.055*Math.pow(n,1/2.4)-.055))}function mt(n){return xt(n>>16,255&n>>8,255&n)}function yt(n){return mt(n)+""}function xt(n,t,e){return new Mt(n,t,e)}function Mt(n,t,e){this.r=n,this.g=t,this.b=e}function _t(n){return 16>n?"0"+Math.max(0,n).toString(16):Math.min(255,n).toString(16)}function bt(n,t,e){var r,u,i,o=0,a=0,c=0;if(r=/([a-z]+)\((.*)\)/i.exec(n))switch(u=r[2].split(","),r[1]){case"hsl":return e(parseFloat(u[0]),parseFloat(u[1])/100,parseFloat(u[2])/100);case"rgb":return t(Et(u[0]),Et(u[1]),Et(u[2]))}return(i=Ja.get(n))?t(i.r,i.g,i.b):(null==n||"#"!==n.charAt(0)||isNaN(i=parseInt(n.substring(1),16))||(4===n.length?(o=(3840&i)>>4,o=o>>4|o,a=240&i,a=a>>4|a,c=15&i,c=c<<4|c):7===n.length&&(o=(16711680&i)>>16,a=(65280&i)>>8,c=255&i)),t(o,a,c))}function wt(n,t,e){var r,u,i=Math.min(n/=255,t/=255,e/=255),o=Math.max(n,t,e),a=o-i,c=(o+i)/2;return a?(u=.5>c?a/(o+i):a/(2-o-i),r=n==o?(t-e)/a+(e>t?6:0):t==o?(e-n)/a+2:(n-t)/a+4,r*=60):(r=0/0,u=c>0&&1>c?0:r),ut(r,u,c)}function St(n,t,e){n=kt(n),t=kt(t),e=kt(e);var r=vt((.4124564*n+.3575761*t+.1804375*e)/Va),u=vt((.2126729*n+.7151522*t+.072175*e)/$a),i=vt((.0193339*n+.119192*t+.9503041*e)/Xa);return lt(116*u-16,500*(r-u),200*(u-i))}function kt(n){return.04045>=(n/=255)?n/12.92:Math.pow((n+.055)/1.055,2.4)}function Et(n){var t=parseFloat(n);return"%"===n.charAt(n.length-1)?Math.round(2.55*t):t}function Ct(n){return"function"==typeof n?n:function(){return n}}function Nt(n){return n}function At(n){return function(t,e,r){return 2===arguments.length&&"function"==typeof e&&(r=e,e=null),qt(t,e,n,r)}}function qt(n,t,e,r){function u(){var n,t=c.status;if(!t&&c.responseText||t>=200&&300>t||304===t){try{n=e.call(i,c)}catch(r){return o.error.call(i,r),void 0}o.load.call(i,n)}else o.error.call(i,c)}var i={},o=Ko.dispatch("beforesend","progress","load","error"),a={},c=new XMLHttpRequest,s=null;return!ra.XDomainRequest||"withCredentials"in c||!/^(http(s)?:)?\/\//.test(n)||(c=new XDomainRequest),"onload"in c?c.onload=c.onerror=u:c.onreadystatechange=function(){c.readyState>3&&u()},c.onprogress=function(n){var t=Ko.event;Ko.event=n;try{o.progress.call(i,c)}finally{Ko.event=t}},i.header=function(n,t){return n=(n+"").toLowerCase(),2>arguments.length?a[n]:(null==t?delete a[n]:a[n]=t+"",i)},i.mimeType=function(n){return arguments.length?(t=null==n?null:n+"",i):t},i.responseType=function(n){return arguments.length?(s=n,i):s},i.response=function(n){return e=n,i},["get","post"].forEach(function(n){i[n]=function(){return i.send.apply(i,[n].concat(na(arguments)))}}),i.send=function(e,r,u){if(2===arguments.length&&"function"==typeof r&&(u=r,r=null),c.open(e,n,!0),null==t||"accept"in a||(a.accept=t+",*/*"),c.setRequestHeader)for(var l in a)c.setRequestHeader(l,a[l]);return null!=t&&c.overrideMimeType&&c.overrideMimeType(t),null!=s&&(c.responseType=s),null!=u&&i.on("error",u).on("load",function(n){u(null,n)}),o.beforesend.call(i,c),c.send(null==r?null:r),i},i.abort=function(){return c.abort(),i},Ko.rebind(i,o,"on"),null==r?i:i.get(zt(r))}function zt(n){return 1===n.length?function(t,e){n(null==t?e:null)}:n}function Lt(){var n=Tt(),t=Rt()-n;t>24?(isFinite(t)&&(clearTimeout(nc),nc=setTimeout(Lt,t)),Qa=0):(Qa=1,ec(Lt))}function Tt(){var n=Date.now();for(tc=Ga;tc;)n>=tc.t&&(tc.f=tc.c(n-tc.t)),tc=tc.n;return n}function Rt(){for(var n,t=Ga,e=1/0;t;)t.f?t=n?n.n=t.n:Ga=t.n:(e>t.t&&(e=t.t),t=(n=t).n);return Ka=n,e}function Dt(n,t){return t-(n?Math.ceil(Math.log(n)/Math.LN10):1)}function Pt(n,t){var e=Math.pow(10,3*ha(8-t));return{scale:t>8?function(n){return n/e}:function(n){return n*e},symbol:n}}function Ut(n){var t=n.decimal,e=n.thousands,r=n.grouping,u=n.currency,i=r?function(n){for(var t=n.length,u=[],i=0,o=r[0];t>0&&o>0;)u.push(n.substring(t-=o,t+o)),o=r[i=(i+1)%r.length];return u.reverse().join(e)}:Nt;return function(n){var e=uc.exec(n),r=e[1]||" ",o=e[2]||">",a=e[3]||"",c=e[4]||"",s=e[5],l=+e[6],f=e[7],h=e[8],g=e[9],p=1,v="",d="",m=!1;switch(h&&(h=+h.substring(1)),(s||"0"===r&&"="===o)&&(s=r="0",o="=",f&&(l-=Math.floor((l-1)/4))),g){case"n":f=!0,g="g";break;case"%":p=100,d="%",g="f";break;case"p":p=100,d="%",g="r";break;case"b":case"o":case"x":case"X":"#"===c&&(v="0"+g.toLowerCase());case"c":case"d":m=!0,h=0;break;case"s":p=-1,g="r"}"$"===c&&(v=u[0],d=u[1]),"r"!=g||h||(g="g"),null!=h&&("g"==g?h=Math.max(1,Math.min(21,h)):("e"==g||"f"==g)&&(h=Math.max(0,Math.min(20,h)))),g=ic.get(g)||jt;var y=s&&f;return function(n){var e=d;if(m&&n%1)return"";var u=0>n||0===n&&0>1/n?(n=-n,"-"):a;if(0>p){var c=Ko.formatPrefix(n,h);n=c.scale(n),e=c.symbol+d}else n*=p;n=g(n,h);var x=n.lastIndexOf("."),M=0>x?n:n.substring(0,x),_=0>x?"":t+n.substring(x+1);!s&&f&&(M=i(M));var b=v.length+M.length+_.length+(y?0:u.length),w=l>b?Array(b=l-b+1).join(r):"";return y&&(M=i(w+M)),u+=v,n=M+_,("<"===o?u+n+w:">"===o?w+u+n:"^"===o?w.substring(0,b>>=1)+u+n+w.substring(b):u+(y?n:w+n))+e}}}function jt(n){return n+""}function Ht(){this._=new Date(arguments.length>1?Date.UTC.apply(this,arguments):arguments[0])}function Ft(n,t,e){function r(t){var e=n(t),r=i(e,1);return r-t>t-e?e:r}function u(e){return t(e=n(new ac(e-1)),1),e}function i(n,e){return t(n=new ac(+n),e),n}function o(n,r,i){var o=u(n),a=[];if(i>1)for(;r>o;)e(o)%i||a.push(new Date(+o)),t(o,1);else for(;r>o;)a.push(new Date(+o)),t(o,1);return a}function a(n,t,e){try{ac=Ht;var r=new Ht;return r._=n,o(r,t,e)}finally{ac=Date}}n.floor=n,n.round=r,n.ceil=u,n.offset=i,n.range=o;var c=n.utc=Ot(n);return c.floor=c,c.round=Ot(r),c.ceil=Ot(u),c.offset=Ot(i),c.range=a,n}function Ot(n){return function(t,e){try{ac=Ht;var r=new Ht;return r._=t,n(r,e)._}finally{ac=Date}}}function It(n){function t(n){function t(t){for(var e,u,i,o=[],a=-1,c=0;r>++a;)37===n.charCodeAt(a)&&(o.push(n.substring(c,a)),null!=(u=sc[e=n.charAt(++a)])&&(e=n.charAt(++a)),(i=N[e])&&(e=i(t,null==u?"e"===e?" ":"0":u)),o.push(e),c=a+1);return o.push(n.substring(c,a)),o.join("")}var r=n.length;return t.parse=function(t){var r={y:1900,m:0,d:1,H:0,M:0,S:0,L:0,Z:null},u=e(r,n,t,0);if(u!=t.length)return null;"p"in r&&(r.H=r.H%12+12*r.p);var i=null!=r.Z&&ac!==Ht,o=new(i?Ht:ac);return"j"in r?o.setFullYear(r.y,0,r.j):"w"in r&&("W"in r||"U"in r)?(o.setFullYear(r.y,0,1),o.setFullYear(r.y,0,"W"in r?(r.w+6)%7+7*r.W-(o.getDay()+5)%7:r.w+7*r.U-(o.getDay()+6)%7)):o.setFullYear(r.y,r.m,r.d),o.setHours(r.H+Math.floor(r.Z/100),r.M+r.Z%100,r.S,r.L),i?o._:o},t.toString=function(){return n},t}function e(n,t,e,r){for(var u,i,o,a=0,c=t.length,s=e.length;c>a;){if(r>=s)return-1;if(u=t.charCodeAt(a++),37===u){if(o=t.charAt(a++),i=A[o in sc?t.charAt(a++):o],!i||0>(r=i(n,e,r)))return-1}else if(u!=e.charCodeAt(r++))return-1}return r}function r(n,t,e){b.lastIndex=0;var r=b.exec(t.substring(e));return r?(n.w=w.get(r[0].toLowerCase()),e+r[0].length):-1}function u(n,t,e){M.lastIndex=0;var r=M.exec(t.substring(e));return r?(n.w=_.get(r[0].toLowerCase()),e+r[0].length):-1}function i(n,t,e){E.lastIndex=0;var r=E.exec(t.substring(e));return r?(n.m=C.get(r[0].toLowerCase()),e+r[0].length):-1}function o(n,t,e){S.lastIndex=0;var r=S.exec(t.substring(e));return r?(n.m=k.get(r[0].toLowerCase()),e+r[0].length):-1}function a(n,t,r){return e(n,""+N.c,t,r)}function c(n,t,r){return e(n,""+N.x,t,r)}function s(n,t,r){return e(n,""+N.X,t,r)}function l(n,t,e){var r=x.get(t.substring(e,e+=2).toLowerCase());return null==r?-1:(n.p=r,e)}var f=n.dateTime,h=n.date,g=n.time,p=n.periods,v=n.days,d=n.shortDays,m=n.months,y=n.shortMonths;t.utc=function(n){function e(n){try{ac=Ht;var t=new ac;return t._=n,r(t)}finally{ac=Date}}var r=t(n);return e.parse=function(n){try{ac=Ht;var t=r.parse(n);return t&&t._}finally{ac=Date}},e.toString=r.toString,e},t.multi=t.utc.multi=ce;var x=Ko.map(),M=Zt(v),_=Vt(v),b=Zt(d),w=Vt(d),S=Zt(m),k=Vt(m),E=Zt(y),C=Vt(y);p.forEach(function(n,t){x.set(n.toLowerCase(),t)});var N={a:function(n){return d[n.getDay()]},A:function(n){return v[n.getDay()]},b:function(n){return y[n.getMonth()]},B:function(n){return m[n.getMonth()]},c:t(f),d:function(n,t){return Yt(n.getDate(),t,2)},e:function(n,t){return Yt(n.getDate(),t,2)},H:function(n,t){return Yt(n.getHours(),t,2)},I:function(n,t){return Yt(n.getHours()%12||12,t,2)},j:function(n,t){return Yt(1+oc.dayOfYear(n),t,3)},L:function(n,t){return Yt(n.getMilliseconds(),t,3)},m:function(n,t){return Yt(n.getMonth()+1,t,2)},M:function(n,t){return Yt(n.getMinutes(),t,2)},p:function(n){return p[+(n.getHours()>=12)]},S:function(n,t){return Yt(n.getSeconds(),t,2)},U:function(n,t){return Yt(oc.sundayOfYear(n),t,2)},w:function(n){return n.getDay()},W:function(n,t){return Yt(oc.mondayOfYear(n),t,2)},x:t(h),X:t(g),y:function(n,t){return Yt(n.getFullYear()%100,t,2)},Y:function(n,t){return Yt(n.getFullYear()%1e4,t,4)},Z:oe,"%":function(){return"%"}},A={a:r,A:u,b:i,B:o,c:a,d:ne,e:ne,H:ee,I:ee,j:te,L:ie,m:Qt,M:re,p:l,S:ue,U:Xt,w:$t,W:Bt,x:c,X:s,y:Jt,Y:Wt,Z:Gt,"%":ae};return t}function Yt(n,t,e){var r=0>n?"-":"",u=(r?-n:n)+"",i=u.length;return r+(e>i?Array(e-i+1).join(t)+u:u)}function Zt(n){return RegExp("^(?:"+n.map(Ko.requote).join("|")+")","i")}function Vt(n){for(var t=new a,e=-1,r=n.length;r>++e;)t.set(n[e].toLowerCase(),e);return t}function $t(n,t,e){lc.lastIndex=0;var r=lc.exec(t.substring(e,e+1));return r?(n.w=+r[0],e+r[0].length):-1}function Xt(n,t,e){lc.lastIndex=0;var r=lc.exec(t.substring(e));return r?(n.U=+r[0],e+r[0].length):-1}function Bt(n,t,e){lc.lastIndex=0;var r=lc.exec(t.substring(e));return r?(n.W=+r[0],e+r[0].length):-1}function Wt(n,t,e){lc.lastIndex=0;var r=lc.exec(t.substring(e,e+4));return r?(n.y=+r[0],e+r[0].length):-1}function Jt(n,t,e){lc.lastIndex=0;var r=lc.exec(t.substring(e,e+2));return r?(n.y=Kt(+r[0]),e+r[0].length):-1}function Gt(n,t,e){return/^[+-]\d{4}$/.test(t=t.substring(e,e+5))?(n.Z=+t,e+5):-1}function Kt(n){return n+(n>68?1900:2e3)}function Qt(n,t,e){lc.lastIndex=0;var r=lc.exec(t.substring(e,e+2));return r?(n.m=r[0]-1,e+r[0].length):-1}function ne(n,t,e){lc.lastIndex=0;var r=lc.exec(t.substring(e,e+2));return r?(n.d=+r[0],e+r[0].length):-1}function te(n,t,e){lc.lastIndex=0;var r=lc.exec(t.substring(e,e+3));return r?(n.j=+r[0],e+r[0].length):-1}function ee(n,t,e){lc.lastIndex=0;var r=lc.exec(t.substring(e,e+2));return r?(n.H=+r[0],e+r[0].length):-1}function re(n,t,e){lc.lastIndex=0;var r=lc.exec(t.substring(e,e+2));return r?(n.M=+r[0],e+r[0].length):-1}function ue(n,t,e){lc.lastIndex=0;var r=lc.exec(t.substring(e,e+2));return r?(n.S=+r[0],e+r[0].length):-1}function ie(n,t,e){lc.lastIndex=0;var r=lc.exec(t.substring(e,e+3));return r?(n.L=+r[0],e+r[0].length):-1}function oe(n){var t=n.getTimezoneOffset(),e=t>0?"-":"+",r=~~(ha(t)/60),u=ha(t)%60;return e+Yt(r,"0",2)+Yt(u,"0",2)}function ae(n,t,e){fc.lastIndex=0;var r=fc.exec(t.substring(e,e+1));return r?e+r[0].length:-1}function ce(n){for(var t=n.length,e=-1;t>++e;)n[e][0]=this(n[e][0]);return function(t){for(var e=0,r=n[e];!r[1](t);)r=n[++e];return r[0](t)}}function se(){}function le(n,t,e){var r=e.s=n+t,u=r-n,i=r-u;e.t=n-i+(t-u)}function fe(n,t){n&&vc.hasOwnProperty(n.type)&&vc[n.type](n,t)}function he(n,t,e){var r,u=-1,i=n.length-e;for(t.lineStart();i>++u;)r=n[u],t.point(r[0],r[1],r[2]);t.lineEnd()}function ge(n,t){var e=-1,r=n.length;for(t.polygonStart();r>++e;)he(n[e],t,1);t.polygonEnd()}function pe(){function n(n,t){n*=Ra,t=t*Ra/2+Aa/4;var e=n-r,o=e>=0?1:-1,a=o*e,c=Math.cos(t),s=Math.sin(t),l=i*s,f=u*c+l*Math.cos(a),h=l*o*Math.sin(a);mc.add(Math.atan2(h,f)),r=n,u=c,i=s}var t,e,r,u,i;yc.point=function(o,a){yc.point=n,r=(t=o)*Ra,u=Math.cos(a=(e=a)*Ra/2+Aa/4),i=Math.sin(a)},yc.lineEnd=function(){n(t,e)}}function ve(n){var t=n[0],e=n[1],r=Math.cos(e);return[r*Math.cos(t),r*Math.sin(t),Math.sin(e)]}function de(n,t){return n[0]*t[0]+n[1]*t[1]+n[2]*t[2]}function me(n,t){return[n[1]*t[2]-n[2]*t[1],n[2]*t[0]-n[0]*t[2],n[0]*t[1]-n[1]*t[0]]}function ye(n,t){n[0]+=t[0],n[1]+=t[1],n[2]+=t[2]}function xe(n,t){return[n[0]*t,n[1]*t,n[2]*t]}function Me(n){var t=Math.sqrt(n[0]*n[0]+n[1]*n[1]+n[2]*n[2]);n[0]/=t,n[1]/=t,n[2]/=t}function _e(n){return[Math.atan2(n[1],n[0]),K(n[2])]}function be(n,t){return La>ha(n[0]-t[0])&&La>ha(n[1]-t[1])}function we(n,t){n*=Ra;var e=Math.cos(t*=Ra);Se(e*Math.cos(n),e*Math.sin(n),Math.sin(t))}function Se(n,t,e){++xc,_c+=(n-_c)/xc,bc+=(t-bc)/xc,wc+=(e-wc)/xc}function ke(){function n(n,u){n*=Ra;var i=Math.cos(u*=Ra),o=i*Math.cos(n),a=i*Math.sin(n),c=Math.sin(u),s=Math.atan2(Math.sqrt((s=e*c-r*a)*s+(s=r*o-t*c)*s+(s=t*a-e*o)*s),t*o+e*a+r*c);Mc+=s,Sc+=s*(t+(t=o)),kc+=s*(e+(e=a)),Ec+=s*(r+(r=c)),Se(t,e,r)}var t,e,r;qc.point=function(u,i){u*=Ra;var o=Math.cos(i*=Ra);t=o*Math.cos(u),e=o*Math.sin(u),r=Math.sin(i),qc.point=n,Se(t,e,r)}}function Ee(){qc.point=we}function Ce(){function n(n,t){n*=Ra;var e=Math.cos(t*=Ra),o=e*Math.cos(n),a=e*Math.sin(n),c=Math.sin(t),s=u*c-i*a,l=i*o-r*c,f=r*a-u*o,h=Math.sqrt(s*s+l*l+f*f),g=r*o+u*a+i*c,p=h&&-G(g)/h,v=Math.atan2(h,g);Cc+=p*s,Nc+=p*l,Ac+=p*f,Mc+=v,Sc+=v*(r+(r=o)),kc+=v*(u+(u=a)),Ec+=v*(i+(i=c)),Se(r,u,i)}var t,e,r,u,i;qc.point=function(o,a){t=o,e=a,qc.point=n,o*=Ra;var c=Math.cos(a*=Ra);r=c*Math.cos(o),u=c*Math.sin(o),i=Math.sin(a),Se(r,u,i)},qc.lineEnd=function(){n(t,e),qc.lineEnd=Ee,qc.point=we}}function Ne(){return!0}function Ae(n,t,e,r,u){var i=[],o=[];if(n.forEach(function(n){if(!(0>=(t=n.length-1))){var t,e=n[0],r=n[t];if(be(e,r)){u.lineStart();for(var a=0;t>a;++a)u.point((e=n[a])[0],e[1]);return u.lineEnd(),void 0}var c=new ze(e,n,null,!0),s=new ze(e,null,c,!1);c.o=s,i.push(c),o.push(s),c=new ze(r,n,null,!1),s=new ze(r,null,c,!0),c.o=s,i.push(c),o.push(s)}}),o.sort(t),qe(i),qe(o),i.length){for(var a=0,c=e,s=o.length;s>a;++a)o[a].e=c=!c;for(var l,f,h=i[0];;){for(var g=h,p=!0;g.v;)if((g=g.n)===h)return;l=g.z,u.lineStart();do{if(g.v=g.o.v=!0,g.e){if(p)for(var a=0,s=l.length;s>a;++a)u.point((f=l[a])[0],f[1]);else r(g.x,g.n.x,1,u);g=g.n}else{if(p){l=g.p.z;for(var a=l.length-1;a>=0;--a)u.point((f=l[a])[0],f[1])}else r(g.x,g.p.x,-1,u);g=g.p}g=g.o,l=g.z,p=!p}while(!g.v);u.lineEnd()}}}function qe(n){if(t=n.length){for(var t,e,r=0,u=n[0];t>++r;)u.n=e=n[r],e.p=u,u=e;u.n=e=n[0],e.p=u}}function ze(n,t,e,r){this.x=n,this.z=t,this.o=e,this.e=r,this.v=!1,this.n=this.p=null}function Le(n,t,e,r){return function(u,i){function o(t,e){var r=u(t,e);n(t=r[0],e=r[1])&&i.point(t,e)}function a(n,t){var e=u(n,t);d.point(e[0],e[1])}function c(){y.point=a,d.lineStart()}function s(){y.point=o,d.lineEnd()}function l(n,t){v.push([n,t]);var e=u(n,t);M.point(e[0],e[1])}function f(){M.lineStart(),v=[]}function h(){l(v[0][0],v[0][1]),M.lineEnd();var n,t=M.clean(),e=x.buffer(),r=e.length;if(v.pop(),p.push(v),v=null,r){if(1&t){n=e[0];var u,r=n.length-1,o=-1;for(i.lineStart();r>++o;)i.point((u=n[o])[0],u[1]);return i.lineEnd(),void 0}r>1&&2&t&&e.push(e.pop().concat(e.shift())),g.push(e.filter(Te))}}var g,p,v,d=t(i),m=u.invert(r[0],r[1]),y={point:o,lineStart:c,lineEnd:s,polygonStart:function(){y.point=l,y.lineStart=f,y.lineEnd=h,g=[],p=[],i.polygonStart()},polygonEnd:function(){y.point=o,y.lineStart=c,y.lineEnd=s,g=Ko.merge(g);var n=Pe(m,p);g.length?Ae(g,De,n,e,i):n&&(i.lineStart(),e(null,null,1,i),i.lineEnd()),i.polygonEnd(),g=p=null},sphere:function(){i.polygonStart(),i.lineStart(),e(null,null,1,i),i.lineEnd(),i.polygonEnd()}},x=Re(),M=t(x);return y}}function Te(n){return n.length>1}function Re(){var n,t=[];return{lineStart:function(){t.push(n=[])},point:function(t,e){n.push([t,e])},lineEnd:d,buffer:function(){var e=t;return t=[],n=null,e},rejoin:function(){t.length>1&&t.push(t.pop().concat(t.shift()))}}}function De(n,t){return(0>(n=n.x)[0]?n[1]-za-La:za-n[1])-(0>(t=t.x)[0]?t[1]-za-La:za-t[1])}function Pe(n,t){var e=n[0],r=n[1],u=[Math.sin(e),-Math.cos(e),0],i=0,o=0;mc.reset();for(var a=0,c=t.length;c>a;++a){var s=t[a],l=s.length;if(l)for(var f=s[0],h=f[0],g=f[1]/2+Aa/4,p=Math.sin(g),v=Math.cos(g),d=1;;){d===l&&(d=0),n=s[d];var m=n[0],y=n[1]/2+Aa/4,x=Math.sin(y),M=Math.cos(y),_=m-h,b=_>=0?1:-1,w=b*_,S=w>Aa,k=p*x;if(mc.add(Math.atan2(k*b*Math.sin(w),v*M+k*Math.cos(w))),i+=S?_+b*qa:_,S^h>=e^m>=e){var E=me(ve(f),ve(n));Me(E);var C=me(u,E);Me(C);var N=(S^_>=0?-1:1)*K(C[2]);(r>N||r===N&&(E[0]||E[1]))&&(o+=S^_>=0?1:-1)}if(!d++)break;h=m,p=x,v=M,f=n}}return(-La>i||La>i&&0>mc)^1&o}function Ue(n){var t,e=0/0,r=0/0,u=0/0;return{lineStart:function(){n.lineStart(),t=1},point:function(i,o){var a=i>0?Aa:-Aa,c=ha(i-e);La>ha(c-Aa)?(n.point(e,r=(r+o)/2>0?za:-za),n.point(u,r),n.lineEnd(),n.lineStart(),n.point(a,r),n.point(i,r),t=0):u!==a&&c>=Aa&&(La>ha(e-u)&&(e-=u*La),La>ha(i-a)&&(i-=a*La),r=je(e,r,i,o),n.point(u,r),n.lineEnd(),n.lineStart(),n.point(a,r),t=0),n.point(e=i,r=o),u=a},lineEnd:function(){n.lineEnd(),e=r=0/0},clean:function(){return 2-t}}}function je(n,t,e,r){var u,i,o=Math.sin(n-e);return ha(o)>La?Math.atan((Math.sin(t)*(i=Math.cos(r))*Math.sin(e)-Math.sin(r)*(u=Math.cos(t))*Math.sin(n))/(u*i*o)):(t+r)/2}function He(n,t,e,r){var u;if(null==n)u=e*za,r.point(-Aa,u),r.point(0,u),r.point(Aa,u),r.point(Aa,0),r.point(Aa,-u),r.point(0,-u),r.point(-Aa,-u),r.point(-Aa,0),r.point(-Aa,u);else if(ha(n[0]-t[0])>La){var i=n[0]<t[0]?Aa:-Aa;u=e*i/2,r.point(-i,u),r.point(0,u),r.point(i,u)}else r.point(t[0],t[1])}function Fe(n){function t(n,t){return Math.cos(n)*Math.cos(t)>i}function e(n){var e,i,c,s,l;return{lineStart:function(){s=c=!1,l=1},point:function(f,h){var g,p=[f,h],v=t(f,h),d=o?v?0:u(f,h):v?u(f+(0>f?Aa:-Aa),h):0;if(!e&&(s=c=v)&&n.lineStart(),v!==c&&(g=r(e,p),(be(e,g)||be(p,g))&&(p[0]+=La,p[1]+=La,v=t(p[0],p[1]))),v!==c)l=0,v?(n.lineStart(),g=r(p,e),n.point(g[0],g[1])):(g=r(e,p),n.point(g[0],g[1]),n.lineEnd()),e=g;else if(a&&e&&o^v){var m;d&i||!(m=r(p,e,!0))||(l=0,o?(n.lineStart(),n.point(m[0][0],m[0][1]),n.point(m[1][0],m[1][1]),n.lineEnd()):(n.point(m[1][0],m[1][1]),n.lineEnd(),n.lineStart(),n.point(m[0][0],m[0][1])))}!v||e&&be(e,p)||n.point(p[0],p[1]),e=p,c=v,i=d},lineEnd:function(){c&&n.lineEnd(),e=null},clean:function(){return l|(s&&c)<<1}}}function r(n,t,e){var r=ve(n),u=ve(t),o=[1,0,0],a=me(r,u),c=de(a,a),s=a[0],l=c-s*s;if(!l)return!e&&n;var f=i*c/l,h=-i*s/l,g=me(o,a),p=xe(o,f),v=xe(a,h);ye(p,v);var d=g,m=de(p,d),y=de(d,d),x=m*m-y*(de(p,p)-1);if(!(0>x)){var M=Math.sqrt(x),_=xe(d,(-m-M)/y);if(ye(_,p),_=_e(_),!e)return _;var b,w=n[0],S=t[0],k=n[1],E=t[1];w>S&&(b=w,w=S,S=b);var C=S-w,N=La>ha(C-Aa),A=N||La>C;if(!N&&k>E&&(b=k,k=E,E=b),A?N?k+E>0^_[1]<(La>ha(_[0]-w)?k:E):_[1]>=k&&E>=_[1]:C>Aa^(_[0]>=w&&S>=_[0])){var q=xe(d,(-m+M)/y);return ye(q,p),[_,_e(q)]}}}function u(t,e){var r=o?n:Aa-n,u=0;return-r>t?u|=1:t>r&&(u|=2),-r>e?u|=4:e>r&&(u|=8),u}var i=Math.cos(n),o=i>0,a=ha(i)>La,c=pr(n,6*Ra);return Le(t,e,c,o?[0,-n]:[-Aa,n-Aa])}function Oe(n,t,e,r){return function(u){var i,o=u.a,a=u.b,c=o.x,s=o.y,l=a.x,f=a.y,h=0,g=1,p=l-c,v=f-s;if(i=n-c,p||!(i>0)){if(i/=p,0>p){if(h>i)return;g>i&&(g=i)}else if(p>0){if(i>g)return;i>h&&(h=i)}if(i=e-c,p||!(0>i)){if(i/=p,0>p){if(i>g)return;i>h&&(h=i)}else if(p>0){if(h>i)return;g>i&&(g=i)}if(i=t-s,v||!(i>0)){if(i/=v,0>v){if(h>i)return;g>i&&(g=i)}else if(v>0){if(i>g)return;i>h&&(h=i)}if(i=r-s,v||!(0>i)){if(i/=v,0>v){if(i>g)return;i>h&&(h=i)}else if(v>0){if(h>i)return;g>i&&(g=i)}return h>0&&(u.a={x:c+h*p,y:s+h*v}),1>g&&(u.b={x:c+g*p,y:s+g*v}),u}}}}}}function Ie(n,t,e,r){function u(r,u){return La>ha(r[0]-n)?u>0?0:3:La>ha(r[0]-e)?u>0?2:1:La>ha(r[1]-t)?u>0?1:0:u>0?3:2}function i(n,t){return o(n.x,t.x)}function o(n,t){var e=u(n,1),r=u(t,1);return e!==r?e-r:0===e?t[1]-n[1]:1===e?n[0]-t[0]:2===e?n[1]-t[1]:t[0]-n[0]}return function(a){function c(n){for(var t=0,e=d.length,r=n[1],u=0;e>u;++u)for(var i,o=1,a=d[u],c=a.length,s=a[0];c>o;++o)i=a[o],r>=s[1]?i[1]>r&&J(s,i,n)>0&&++t:r>=i[1]&&0>J(s,i,n)&&--t,s=i;return 0!==t}function s(i,a,c,s){var l=0,f=0;if(null==i||(l=u(i,c))!==(f=u(a,c))||0>o(i,a)^c>0){do s.point(0===l||3===l?n:e,l>1?r:t);while((l=(l+c+4)%4)!==f)}else s.point(a[0],a[1])}function l(u,i){return u>=n&&e>=u&&i>=t&&r>=i}function f(n,t){l(n,t)&&a.point(n,t)}function h(){A.point=p,d&&d.push(m=[]),S=!0,w=!1,_=b=0/0}function g(){v&&(p(y,x),M&&w&&C.rejoin(),v.push(C.buffer())),A.point=f,w&&a.lineEnd()}function p(n,t){n=Math.max(-Lc,Math.min(Lc,n)),t=Math.max(-Lc,Math.min(Lc,t));var e=l(n,t);if(d&&m.push([n,t]),S)y=n,x=t,M=e,S=!1,e&&(a.lineStart(),a.point(n,t));else if(e&&w)a.point(n,t);else{var r={a:{x:_,y:b},b:{x:n,y:t}};N(r)?(w||(a.lineStart(),a.point(r.a.x,r.a.y)),a.point(r.b.x,r.b.y),e||a.lineEnd(),k=!1):e&&(a.lineStart(),a.point(n,t),k=!1)}_=n,b=t,w=e}var v,d,m,y,x,M,_,b,w,S,k,E=a,C=Re(),N=Oe(n,t,e,r),A={point:f,lineStart:h,lineEnd:g,polygonStart:function(){a=C,v=[],d=[],k=!0},polygonEnd:function(){a=E,v=Ko.merge(v);var t=c([n,r]),e=k&&t,u=v.length;(e||u)&&(a.polygonStart(),e&&(a.lineStart(),s(null,null,1,a),a.lineEnd()),u&&Ae(v,i,t,s,a),a.polygonEnd()),v=d=m=null}};return A}}function Ye(n,t){function e(e,r){return e=n(e,r),t(e[0],e[1])}return n.invert&&t.invert&&(e.invert=function(e,r){return e=t.invert(e,r),e&&n.invert(e[0],e[1])}),e}function Ze(n){var t=0,e=Aa/3,r=or(n),u=r(t,e);return u.parallels=function(n){return arguments.length?r(t=n[0]*Aa/180,e=n[1]*Aa/180):[180*(t/Aa),180*(e/Aa)]},u}function Ve(n,t){function e(n,t){var e=Math.sqrt(i-2*u*Math.sin(t))/u;return[e*Math.sin(n*=u),o-e*Math.cos(n)]}var r=Math.sin(n),u=(r+Math.sin(t))/2,i=1+r*(2*u-r),o=Math.sqrt(i)/u;return e.invert=function(n,t){var e=o-t;return[Math.atan2(n,e)/u,K((i-(n*n+e*e)*u*u)/(2*u))]},e}function $e(){function n(n,t){Rc+=u*n-r*t,r=n,u=t}var t,e,r,u;Hc.point=function(i,o){Hc.point=n,t=r=i,e=u=o},Hc.lineEnd=function(){n(t,e)}}function Xe(n,t){Dc>n&&(Dc=n),n>Uc&&(Uc=n),Pc>t&&(Pc=t),t>jc&&(jc=t)}function Be(){function n(n,t){o.push("M",n,",",t,i)}function t(n,t){o.push("M",n,",",t),a.point=e}function e(n,t){o.push("L",n,",",t)}function r(){a.point=n}function u(){o.push("Z")}var i=We(4.5),o=[],a={point:n,lineStart:function(){a.point=t},lineEnd:r,polygonStart:function(){a.lineEnd=u},polygonEnd:function(){a.lineEnd=r,a.point=n},pointRadius:function(n){return i=We(n),a},result:function(){if(o.length){var n=o.join("");return o=[],n}}};return a}function We(n){return"m0,"+n+"a"+n+","+n+" 0 1,1 0,"+-2*n+"a"+n+","+n+" 0 1,1 0,"+2*n+"z"}function Je(n,t){_c+=n,bc+=t,++wc}function Ge(){function n(n,r){var u=n-t,i=r-e,o=Math.sqrt(u*u+i*i);Sc+=o*(t+n)/2,kc+=o*(e+r)/2,Ec+=o,Je(t=n,e=r)}var t,e;Oc.point=function(r,u){Oc.point=n,Je(t=r,e=u)}}function Ke(){Oc.point=Je}function Qe(){function n(n,t){var e=n-r,i=t-u,o=Math.sqrt(e*e+i*i);Sc+=o*(r+n)/2,kc+=o*(u+t)/2,Ec+=o,o=u*n-r*t,Cc+=o*(r+n),Nc+=o*(u+t),Ac+=3*o,Je(r=n,u=t)}var t,e,r,u;Oc.point=function(i,o){Oc.point=n,Je(t=r=i,e=u=o)},Oc.lineEnd=function(){n(t,e)}}function nr(n){function t(t,e){n.moveTo(t,e),n.arc(t,e,o,0,qa)}function e(t,e){n.moveTo(t,e),a.point=r}function r(t,e){n.lineTo(t,e)}function u(){a.point=t}function i(){n.closePath()}var o=4.5,a={point:t,lineStart:function(){a.point=e},lineEnd:u,polygonStart:function(){a.lineEnd=i},polygonEnd:function(){a.lineEnd=u,a.point=t},pointRadius:function(n){return o=n,a},result:d};return a}function tr(n){function t(n){return(a?r:e)(n)}function e(t){return ur(t,function(e,r){e=n(e,r),t.point(e[0],e[1])})}function r(t){function e(e,r){e=n(e,r),t.point(e[0],e[1])}function r(){x=0/0,S.point=i,t.lineStart()}function i(e,r){var i=ve([e,r]),o=n(e,r);u(x,M,y,_,b,w,x=o[0],M=o[1],y=e,_=i[0],b=i[1],w=i[2],a,t),t.point(x,M)}function o(){S.point=e,t.lineEnd()}function c(){r(),S.point=s,S.lineEnd=l}function s(n,t){i(f=n,h=t),g=x,p=M,v=_,d=b,m=w,S.point=i}function l(){u(x,M,y,_,b,w,g,p,f,v,d,m,a,t),S.lineEnd=o,o()}var f,h,g,p,v,d,m,y,x,M,_,b,w,S={point:e,lineStart:r,lineEnd:o,polygonStart:function(){t.polygonStart(),S.lineStart=c},polygonEnd:function(){t.polygonEnd(),S.lineStart=r}};return S}function u(t,e,r,a,c,s,l,f,h,g,p,v,d,m){var y=l-t,x=f-e,M=y*y+x*x;if(M>4*i&&d--){var _=a+g,b=c+p,w=s+v,S=Math.sqrt(_*_+b*b+w*w),k=Math.asin(w/=S),E=La>ha(ha(w)-1)||La>ha(r-h)?(r+h)/2:Math.atan2(b,_),C=n(E,k),N=C[0],A=C[1],q=N-t,z=A-e,L=x*q-y*z;(L*L/M>i||ha((y*q+x*z)/M-.5)>.3||o>a*g+c*p+s*v)&&(u(t,e,r,a,c,s,N,A,E,_/=S,b/=S,w,d,m),m.point(N,A),u(N,A,E,_,b,w,l,f,h,g,p,v,d,m))}}var i=.5,o=Math.cos(30*Ra),a=16;return t.precision=function(n){return arguments.length?(a=(i=n*n)>0&&16,t):Math.sqrt(i) | |
},t}function er(n){var t=tr(function(t,e){return n([t*Da,e*Da])});return function(n){return ar(t(n))}}function rr(n){this.stream=n}function ur(n,t){return{point:t,sphere:function(){n.sphere()},lineStart:function(){n.lineStart()},lineEnd:function(){n.lineEnd()},polygonStart:function(){n.polygonStart()},polygonEnd:function(){n.polygonEnd()}}}function ir(n){return or(function(){return n})()}function or(n){function t(n){return n=a(n[0]*Ra,n[1]*Ra),[n[0]*h+c,s-n[1]*h]}function e(n){return n=a.invert((n[0]-c)/h,(s-n[1])/h),n&&[n[0]*Da,n[1]*Da]}function r(){a=Ye(o=lr(m,y,x),i);var n=i(v,d);return c=g-n[0]*h,s=p+n[1]*h,u()}function u(){return l&&(l.valid=!1,l=null),t}var i,o,a,c,s,l,f=tr(function(n,t){return n=i(n,t),[n[0]*h+c,s-n[1]*h]}),h=150,g=480,p=250,v=0,d=0,m=0,y=0,x=0,M=zc,_=Nt,b=null,w=null;return t.stream=function(n){return l&&(l.valid=!1),l=ar(M(o,f(_(n)))),l.valid=!0,l},t.clipAngle=function(n){return arguments.length?(M=null==n?(b=n,zc):Fe((b=+n)*Ra),u()):b},t.clipExtent=function(n){return arguments.length?(w=n,_=n?Ie(n[0][0],n[0][1],n[1][0],n[1][1]):Nt,u()):w},t.scale=function(n){return arguments.length?(h=+n,r()):h},t.translate=function(n){return arguments.length?(g=+n[0],p=+n[1],r()):[g,p]},t.center=function(n){return arguments.length?(v=n[0]%360*Ra,d=n[1]%360*Ra,r()):[v*Da,d*Da]},t.rotate=function(n){return arguments.length?(m=n[0]%360*Ra,y=n[1]%360*Ra,x=n.length>2?n[2]%360*Ra:0,r()):[m*Da,y*Da,x*Da]},Ko.rebind(t,f,"precision"),function(){return i=n.apply(this,arguments),t.invert=i.invert&&e,r()}}function ar(n){return ur(n,function(t,e){n.point(t*Ra,e*Ra)})}function cr(n,t){return[n,t]}function sr(n,t){return[n>Aa?n-qa:-Aa>n?n+qa:n,t]}function lr(n,t,e){return n?t||e?Ye(hr(n),gr(t,e)):hr(n):t||e?gr(t,e):sr}function fr(n){return function(t,e){return t+=n,[t>Aa?t-qa:-Aa>t?t+qa:t,e]}}function hr(n){var t=fr(n);return t.invert=fr(-n),t}function gr(n,t){function e(n,t){var e=Math.cos(t),a=Math.cos(n)*e,c=Math.sin(n)*e,s=Math.sin(t),l=s*r+a*u;return[Math.atan2(c*i-l*o,a*r-s*u),K(l*i+c*o)]}var r=Math.cos(n),u=Math.sin(n),i=Math.cos(t),o=Math.sin(t);return e.invert=function(n,t){var e=Math.cos(t),a=Math.cos(n)*e,c=Math.sin(n)*e,s=Math.sin(t),l=s*i-c*o;return[Math.atan2(c*i+s*o,a*r+l*u),K(l*r-a*u)]},e}function pr(n,t){var e=Math.cos(n),r=Math.sin(n);return function(u,i,o,a){var c=o*t;null!=u?(u=vr(e,u),i=vr(e,i),(o>0?i>u:u>i)&&(u+=o*qa)):(u=n+o*qa,i=n-.5*c);for(var s,l=u;o>0?l>i:i>l;l-=c)a.point((s=_e([e,-r*Math.cos(l),-r*Math.sin(l)]))[0],s[1])}}function vr(n,t){var e=ve(t);e[0]-=n,Me(e);var r=G(-e[1]);return((0>-e[2]?-r:r)+2*Math.PI-La)%(2*Math.PI)}function dr(n,t,e){var r=Ko.range(n,t-La,e).concat(t);return function(n){return r.map(function(t){return[n,t]})}}function mr(n,t,e){var r=Ko.range(n,t-La,e).concat(t);return function(n){return r.map(function(t){return[t,n]})}}function yr(n){return n.source}function xr(n){return n.target}function Mr(n,t,e,r){var u=Math.cos(t),i=Math.sin(t),o=Math.cos(r),a=Math.sin(r),c=u*Math.cos(n),s=u*Math.sin(n),l=o*Math.cos(e),f=o*Math.sin(e),h=2*Math.asin(Math.sqrt(et(r-t)+u*o*et(e-n))),g=1/Math.sin(h),p=h?function(n){var t=Math.sin(n*=h)*g,e=Math.sin(h-n)*g,r=e*c+t*l,u=e*s+t*f,o=e*i+t*a;return[Math.atan2(u,r)*Da,Math.atan2(o,Math.sqrt(r*r+u*u))*Da]}:function(){return[n*Da,t*Da]};return p.distance=h,p}function _r(){function n(n,u){var i=Math.sin(u*=Ra),o=Math.cos(u),a=ha((n*=Ra)-t),c=Math.cos(a);Ic+=Math.atan2(Math.sqrt((a=o*Math.sin(a))*a+(a=r*i-e*o*c)*a),e*i+r*o*c),t=n,e=i,r=o}var t,e,r;Yc.point=function(u,i){t=u*Ra,e=Math.sin(i*=Ra),r=Math.cos(i),Yc.point=n},Yc.lineEnd=function(){Yc.point=Yc.lineEnd=d}}function br(n,t){function e(t,e){var r=Math.cos(t),u=Math.cos(e),i=n(r*u);return[i*u*Math.sin(t),i*Math.sin(e)]}return e.invert=function(n,e){var r=Math.sqrt(n*n+e*e),u=t(r),i=Math.sin(u),o=Math.cos(u);return[Math.atan2(n*i,r*o),Math.asin(r&&e*i/r)]},e}function wr(n,t){function e(n,t){o>0?-za+La>t&&(t=-za+La):t>za-La&&(t=za-La);var e=o/Math.pow(u(t),i);return[e*Math.sin(i*n),o-e*Math.cos(i*n)]}var r=Math.cos(n),u=function(n){return Math.tan(Aa/4+n/2)},i=n===t?Math.sin(n):Math.log(r/Math.cos(t))/Math.log(u(t)/u(n)),o=r*Math.pow(u(n),i)/i;return i?(e.invert=function(n,t){var e=o-t,r=W(i)*Math.sqrt(n*n+e*e);return[Math.atan2(n,e)/i,2*Math.atan(Math.pow(o/r,1/i))-za]},e):kr}function Sr(n,t){function e(n,t){var e=i-t;return[e*Math.sin(u*n),i-e*Math.cos(u*n)]}var r=Math.cos(n),u=n===t?Math.sin(n):(r-Math.cos(t))/(t-n),i=r/u+n;return La>ha(u)?cr:(e.invert=function(n,t){var e=i-t;return[Math.atan2(n,e)/u,i-W(u)*Math.sqrt(n*n+e*e)]},e)}function kr(n,t){return[n,Math.log(Math.tan(Aa/4+t/2))]}function Er(n){var t,e=ir(n),r=e.scale,u=e.translate,i=e.clipExtent;return e.scale=function(){var n=r.apply(e,arguments);return n===e?t?e.clipExtent(null):e:n},e.translate=function(){var n=u.apply(e,arguments);return n===e?t?e.clipExtent(null):e:n},e.clipExtent=function(n){var o=i.apply(e,arguments);if(o===e){if(t=null==n){var a=Aa*r(),c=u();i([[c[0]-a,c[1]-a],[c[0]+a,c[1]+a]])}}else t&&(o=null);return o},e.clipExtent(null)}function Cr(n,t){return[Math.log(Math.tan(Aa/4+t/2)),-n]}function Nr(n){return n[0]}function Ar(n){return n[1]}function qr(n){for(var t=n.length,e=[0,1],r=2,u=2;t>u;u++){for(;r>1&&0>=J(n[e[r-2]],n[e[r-1]],n[u]);)--r;e[r++]=u}return e.slice(0,r)}function zr(n,t){return n[0]-t[0]||n[1]-t[1]}function Lr(n,t,e){return(e[0]-t[0])*(n[1]-t[1])<(e[1]-t[1])*(n[0]-t[0])}function Tr(n,t,e,r){var u=n[0],i=e[0],o=t[0]-u,a=r[0]-i,c=n[1],s=e[1],l=t[1]-c,f=r[1]-s,h=(a*(c-s)-f*(u-i))/(f*o-a*l);return[u+h*o,c+h*l]}function Rr(n){var t=n[0],e=n[n.length-1];return!(t[0]-e[0]||t[1]-e[1])}function Dr(){eu(this),this.edge=this.site=this.circle=null}function Pr(n){var t=ts.pop()||new Dr;return t.site=n,t}function Ur(n){Xr(n),Kc.remove(n),ts.push(n),eu(n)}function jr(n){var t=n.circle,e=t.x,r=t.cy,u={x:e,y:r},i=n.P,o=n.N,a=[n];Ur(n);for(var c=i;c.circle&&La>ha(e-c.circle.x)&&La>ha(r-c.circle.cy);)i=c.P,a.unshift(c),Ur(c),c=i;a.unshift(c),Xr(c);for(var s=o;s.circle&&La>ha(e-s.circle.x)&&La>ha(r-s.circle.cy);)o=s.N,a.push(s),Ur(s),s=o;a.push(s),Xr(s);var l,f=a.length;for(l=1;f>l;++l)s=a[l],c=a[l-1],Qr(s.edge,c.site,s.site,u);c=a[0],s=a[f-1],s.edge=Gr(c.site,s.site,null,u),$r(c),$r(s)}function Hr(n){for(var t,e,r,u,i=n.x,o=n.y,a=Kc._;a;)if(r=Fr(a,o)-i,r>La)a=a.L;else{if(u=i-Or(a,o),!(u>La)){r>-La?(t=a.P,e=a):u>-La?(t=a,e=a.N):t=e=a;break}if(!a.R){t=a;break}a=a.R}var c=Pr(n);if(Kc.insert(t,c),t||e){if(t===e)return Xr(t),e=Pr(t.site),Kc.insert(c,e),c.edge=e.edge=Gr(t.site,c.site),$r(t),$r(e),void 0;if(!e)return c.edge=Gr(t.site,c.site),void 0;Xr(t),Xr(e);var s=t.site,l=s.x,f=s.y,h=n.x-l,g=n.y-f,p=e.site,v=p.x-l,d=p.y-f,m=2*(h*d-g*v),y=h*h+g*g,x=v*v+d*d,M={x:(d*y-g*x)/m+l,y:(h*x-v*y)/m+f};Qr(e.edge,s,p,M),c.edge=Gr(s,n,null,M),e.edge=Gr(n,p,null,M),$r(t),$r(e)}}function Fr(n,t){var e=n.site,r=e.x,u=e.y,i=u-t;if(!i)return r;var o=n.P;if(!o)return-1/0;e=o.site;var a=e.x,c=e.y,s=c-t;if(!s)return a;var l=a-r,f=1/i-1/s,h=l/s;return f?(-h+Math.sqrt(h*h-2*f*(l*l/(-2*s)-c+s/2+u-i/2)))/f+r:(r+a)/2}function Or(n,t){var e=n.N;if(e)return Fr(e,t);var r=n.site;return r.y===t?r.x:1/0}function Ir(n){this.site=n,this.edges=[]}function Yr(n){for(var t,e,r,u,i,o,a,c,s,l,f=n[0][0],h=n[1][0],g=n[0][1],p=n[1][1],v=Gc,d=v.length;d--;)if(i=v[d],i&&i.prepare())for(a=i.edges,c=a.length,o=0;c>o;)l=a[o].end(),r=l.x,u=l.y,s=a[++o%c].start(),t=s.x,e=s.y,(ha(r-t)>La||ha(u-e)>La)&&(a.splice(o,0,new nu(Kr(i.site,l,La>ha(r-f)&&p-u>La?{x:f,y:La>ha(t-f)?e:p}:La>ha(u-p)&&h-r>La?{x:La>ha(e-p)?t:h,y:p}:La>ha(r-h)&&u-g>La?{x:h,y:La>ha(t-h)?e:g}:La>ha(u-g)&&r-f>La?{x:La>ha(e-g)?t:f,y:g}:null),i.site,null)),++c)}function Zr(n,t){return t.angle-n.angle}function Vr(){eu(this),this.x=this.y=this.arc=this.site=this.cy=null}function $r(n){var t=n.P,e=n.N;if(t&&e){var r=t.site,u=n.site,i=e.site;if(r!==i){var o=u.x,a=u.y,c=r.x-o,s=r.y-a,l=i.x-o,f=i.y-a,h=2*(c*f-s*l);if(!(h>=-Ta)){var g=c*c+s*s,p=l*l+f*f,v=(f*g-s*p)/h,d=(c*p-l*g)/h,f=d+a,m=es.pop()||new Vr;m.arc=n,m.site=u,m.x=v+o,m.y=f+Math.sqrt(v*v+d*d),m.cy=f,n.circle=m;for(var y=null,x=ns._;x;)if(m.y<x.y||m.y===x.y&&m.x<=x.x){if(!x.L){y=x.P;break}x=x.L}else{if(!x.R){y=x;break}x=x.R}ns.insert(y,m),y||(Qc=m)}}}}function Xr(n){var t=n.circle;t&&(t.P||(Qc=t.N),ns.remove(t),es.push(t),eu(t),n.circle=null)}function Br(n){for(var t,e=Jc,r=Oe(n[0][0],n[0][1],n[1][0],n[1][1]),u=e.length;u--;)t=e[u],(!Wr(t,n)||!r(t)||La>ha(t.a.x-t.b.x)&&La>ha(t.a.y-t.b.y))&&(t.a=t.b=null,e.splice(u,1))}function Wr(n,t){var e=n.b;if(e)return!0;var r,u,i=n.a,o=t[0][0],a=t[1][0],c=t[0][1],s=t[1][1],l=n.l,f=n.r,h=l.x,g=l.y,p=f.x,v=f.y,d=(h+p)/2,m=(g+v)/2;if(v===g){if(o>d||d>=a)return;if(h>p){if(i){if(i.y>=s)return}else i={x:d,y:c};e={x:d,y:s}}else{if(i){if(c>i.y)return}else i={x:d,y:s};e={x:d,y:c}}}else if(r=(h-p)/(v-g),u=m-r*d,-1>r||r>1)if(h>p){if(i){if(i.y>=s)return}else i={x:(c-u)/r,y:c};e={x:(s-u)/r,y:s}}else{if(i){if(c>i.y)return}else i={x:(s-u)/r,y:s};e={x:(c-u)/r,y:c}}else if(v>g){if(i){if(i.x>=a)return}else i={x:o,y:r*o+u};e={x:a,y:r*a+u}}else{if(i){if(o>i.x)return}else i={x:a,y:r*a+u};e={x:o,y:r*o+u}}return n.a=i,n.b=e,!0}function Jr(n,t){this.l=n,this.r=t,this.a=this.b=null}function Gr(n,t,e,r){var u=new Jr(n,t);return Jc.push(u),e&&Qr(u,n,t,e),r&&Qr(u,t,n,r),Gc[n.i].edges.push(new nu(u,n,t)),Gc[t.i].edges.push(new nu(u,t,n)),u}function Kr(n,t,e){var r=new Jr(n,null);return r.a=t,r.b=e,Jc.push(r),r}function Qr(n,t,e,r){n.a||n.b?n.l===e?n.b=r:n.a=r:(n.a=r,n.l=t,n.r=e)}function nu(n,t,e){var r=n.a,u=n.b;this.edge=n,this.site=t,this.angle=e?Math.atan2(e.y-t.y,e.x-t.x):n.l===t?Math.atan2(u.x-r.x,r.y-u.y):Math.atan2(r.x-u.x,u.y-r.y)}function tu(){this._=null}function eu(n){n.U=n.C=n.L=n.R=n.P=n.N=null}function ru(n,t){var e=t,r=t.R,u=e.U;u?u.L===e?u.L=r:u.R=r:n._=r,r.U=u,e.U=r,e.R=r.L,e.R&&(e.R.U=e),r.L=e}function uu(n,t){var e=t,r=t.L,u=e.U;u?u.L===e?u.L=r:u.R=r:n._=r,r.U=u,e.U=r,e.L=r.R,e.L&&(e.L.U=e),r.R=e}function iu(n){for(;n.L;)n=n.L;return n}function ou(n,t){var e,r,u,i=n.sort(au).pop();for(Jc=[],Gc=Array(n.length),Kc=new tu,ns=new tu;;)if(u=Qc,i&&(!u||i.y<u.y||i.y===u.y&&i.x<u.x))(i.x!==e||i.y!==r)&&(Gc[i.i]=new Ir(i),Hr(i),e=i.x,r=i.y),i=n.pop();else{if(!u)break;jr(u.arc)}t&&(Br(t),Yr(t));var o={cells:Gc,edges:Jc};return Kc=ns=Jc=Gc=null,o}function au(n,t){return t.y-n.y||t.x-n.x}function cu(n,t,e){return(n.x-e.x)*(t.y-n.y)-(n.x-t.x)*(e.y-n.y)}function su(n){return n.x}function lu(n){return n.y}function fu(){return{leaf:!0,nodes:[],point:null,x:null,y:null}}function hu(n,t,e,r,u,i){if(!n(t,e,r,u,i)){var o=.5*(e+u),a=.5*(r+i),c=t.nodes;c[0]&&hu(n,c[0],e,r,o,a),c[1]&&hu(n,c[1],o,r,u,a),c[2]&&hu(n,c[2],e,a,o,i),c[3]&&hu(n,c[3],o,a,u,i)}}function gu(n,t){n=Ko.rgb(n),t=Ko.rgb(t);var e=n.r,r=n.g,u=n.b,i=t.r-e,o=t.g-r,a=t.b-u;return function(n){return"#"+_t(Math.round(e+i*n))+_t(Math.round(r+o*n))+_t(Math.round(u+a*n))}}function pu(n,t){var e,r={},u={};for(e in n)e in t?r[e]=mu(n[e],t[e]):u[e]=n[e];for(e in t)e in n||(u[e]=t[e]);return function(n){for(e in r)u[e]=r[e](n);return u}}function vu(n,t){return t-=n=+n,function(e){return n+t*e}}function du(n,t){var e,r,u,i,o,a=0,c=0,s=[],l=[];for(n+="",t+="",us.lastIndex=0,r=0;e=us.exec(t);++r)e.index&&s.push(t.substring(a,c=e.index)),l.push({i:s.length,x:e[0]}),s.push(null),a=us.lastIndex;for(t.length>a&&s.push(t.substring(a)),r=0,i=l.length;(e=us.exec(n))&&i>r;++r)if(o=l[r],o.x==e[0]){if(o.i)if(null==s[o.i+1])for(s[o.i-1]+=o.x,s.splice(o.i,1),u=r+1;i>u;++u)l[u].i--;else for(s[o.i-1]+=o.x+s[o.i+1],s.splice(o.i,2),u=r+1;i>u;++u)l[u].i-=2;else if(null==s[o.i+1])s[o.i]=o.x;else for(s[o.i]=o.x+s[o.i+1],s.splice(o.i+1,1),u=r+1;i>u;++u)l[u].i--;l.splice(r,1),i--,r--}else o.x=vu(parseFloat(e[0]),parseFloat(o.x));for(;i>r;)o=l.pop(),null==s[o.i+1]?s[o.i]=o.x:(s[o.i]=o.x+s[o.i+1],s.splice(o.i+1,1)),i--;return 1===s.length?null==s[0]?(o=l[0].x,function(n){return o(n)+""}):function(){return t}:function(n){for(r=0;i>r;++r)s[(o=l[r]).i]=o.x(n);return s.join("")}}function mu(n,t){for(var e,r=Ko.interpolators.length;--r>=0&&!(e=Ko.interpolators[r](n,t)););return e}function yu(n,t){var e,r=[],u=[],i=n.length,o=t.length,a=Math.min(n.length,t.length);for(e=0;a>e;++e)r.push(mu(n[e],t[e]));for(;i>e;++e)u[e]=n[e];for(;o>e;++e)u[e]=t[e];return function(n){for(e=0;a>e;++e)u[e]=r[e](n);return u}}function xu(n){return function(t){return 0>=t?0:t>=1?1:n(t)}}function Mu(n){return function(t){return 1-n(1-t)}}function _u(n){return function(t){return.5*(.5>t?n(2*t):2-n(2-2*t))}}function bu(n){return n*n}function wu(n){return n*n*n}function Su(n){if(0>=n)return 0;if(n>=1)return 1;var t=n*n,e=t*n;return 4*(.5>n?e:3*(n-t)+e-.75)}function ku(n){return function(t){return Math.pow(t,n)}}function Eu(n){return 1-Math.cos(n*za)}function Cu(n){return Math.pow(2,10*(n-1))}function Nu(n){return 1-Math.sqrt(1-n*n)}function Au(n,t){var e;return 2>arguments.length&&(t=.45),arguments.length?e=t/qa*Math.asin(1/n):(n=1,e=t/4),function(r){return 1+n*Math.pow(2,-10*r)*Math.sin((r-e)*qa/t)}}function qu(n){return n||(n=1.70158),function(t){return t*t*((n+1)*t-n)}}function zu(n){return 1/2.75>n?7.5625*n*n:2/2.75>n?7.5625*(n-=1.5/2.75)*n+.75:2.5/2.75>n?7.5625*(n-=2.25/2.75)*n+.9375:7.5625*(n-=2.625/2.75)*n+.984375}function Lu(n,t){n=Ko.hcl(n),t=Ko.hcl(t);var e=n.h,r=n.c,u=n.l,i=t.h-e,o=t.c-r,a=t.l-u;return isNaN(o)&&(o=0,r=isNaN(r)?t.c:r),isNaN(i)?(i=0,e=isNaN(e)?t.h:e):i>180?i-=360:-180>i&&(i+=360),function(n){return st(e+i*n,r+o*n,u+a*n)+""}}function Tu(n,t){n=Ko.hsl(n),t=Ko.hsl(t);var e=n.h,r=n.s,u=n.l,i=t.h-e,o=t.s-r,a=t.l-u;return isNaN(o)&&(o=0,r=isNaN(r)?t.s:r),isNaN(i)?(i=0,e=isNaN(e)?t.h:e):i>180?i-=360:-180>i&&(i+=360),function(n){return ot(e+i*n,r+o*n,u+a*n)+""}}function Ru(n,t){n=Ko.lab(n),t=Ko.lab(t);var e=n.l,r=n.a,u=n.b,i=t.l-e,o=t.a-r,a=t.b-u;return function(n){return ht(e+i*n,r+o*n,u+a*n)+""}}function Du(n,t){return t-=n,function(e){return Math.round(n+t*e)}}function Pu(n){var t=[n.a,n.b],e=[n.c,n.d],r=ju(t),u=Uu(t,e),i=ju(Hu(e,t,-u))||0;t[0]*e[1]<e[0]*t[1]&&(t[0]*=-1,t[1]*=-1,r*=-1,u*=-1),this.rotate=(r?Math.atan2(t[1],t[0]):Math.atan2(-e[0],e[1]))*Da,this.translate=[n.e,n.f],this.scale=[r,i],this.skew=i?Math.atan2(u,i)*Da:0}function Uu(n,t){return n[0]*t[0]+n[1]*t[1]}function ju(n){var t=Math.sqrt(Uu(n,n));return t&&(n[0]/=t,n[1]/=t),t}function Hu(n,t,e){return n[0]+=e*t[0],n[1]+=e*t[1],n}function Fu(n,t){var e,r=[],u=[],i=Ko.transform(n),o=Ko.transform(t),a=i.translate,c=o.translate,s=i.rotate,l=o.rotate,f=i.skew,h=o.skew,g=i.scale,p=o.scale;return a[0]!=c[0]||a[1]!=c[1]?(r.push("translate(",null,",",null,")"),u.push({i:1,x:vu(a[0],c[0])},{i:3,x:vu(a[1],c[1])})):c[0]||c[1]?r.push("translate("+c+")"):r.push(""),s!=l?(s-l>180?l+=360:l-s>180&&(s+=360),u.push({i:r.push(r.pop()+"rotate(",null,")")-2,x:vu(s,l)})):l&&r.push(r.pop()+"rotate("+l+")"),f!=h?u.push({i:r.push(r.pop()+"skewX(",null,")")-2,x:vu(f,h)}):h&&r.push(r.pop()+"skewX("+h+")"),g[0]!=p[0]||g[1]!=p[1]?(e=r.push(r.pop()+"scale(",null,",",null,")"),u.push({i:e-4,x:vu(g[0],p[0])},{i:e-2,x:vu(g[1],p[1])})):(1!=p[0]||1!=p[1])&&r.push(r.pop()+"scale("+p+")"),e=u.length,function(n){for(var t,i=-1;e>++i;)r[(t=u[i]).i]=t.x(n);return r.join("")}}function Ou(n,t){return t=t-(n=+n)?1/(t-n):0,function(e){return(e-n)*t}}function Iu(n,t){return t=t-(n=+n)?1/(t-n):0,function(e){return Math.max(0,Math.min(1,(e-n)*t))}}function Yu(n){for(var t=n.source,e=n.target,r=Vu(t,e),u=[t];t!==r;)t=t.parent,u.push(t);for(var i=u.length;e!==r;)u.splice(i,0,e),e=e.parent;return u}function Zu(n){for(var t=[],e=n.parent;null!=e;)t.push(n),n=e,e=e.parent;return t.push(n),t}function Vu(n,t){if(n===t)return n;for(var e=Zu(n),r=Zu(t),u=e.pop(),i=r.pop(),o=null;u===i;)o=u,u=e.pop(),i=r.pop();return o}function $u(n){n.fixed|=2}function Xu(n){n.fixed&=-7}function Bu(n){n.fixed|=4,n.px=n.x,n.py=n.y}function Wu(n){n.fixed&=-5}function Ju(n,t,e){var r=0,u=0;if(n.charge=0,!n.leaf)for(var i,o=n.nodes,a=o.length,c=-1;a>++c;)i=o[c],null!=i&&(Ju(i,t,e),n.charge+=i.charge,r+=i.charge*i.cx,u+=i.charge*i.cy);if(n.point){n.leaf||(n.point.x+=Math.random()-.5,n.point.y+=Math.random()-.5);var s=t*e[n.point.index];n.charge+=n.pointCharge=s,r+=s*n.point.x,u+=s*n.point.y}n.cx=r/n.charge,n.cy=u/n.charge}function Gu(n,t){return Ko.rebind(n,t,"sort","children","value"),n.nodes=n,n.links=ti,n}function Ku(n){return n.children}function Qu(n){return n.value}function ni(n,t){return t.value-n.value}function ti(n){return Ko.merge(n.map(function(n){return(n.children||[]).map(function(t){return{source:n,target:t}})}))}function ei(n){return n.x}function ri(n){return n.y}function ui(n,t,e){n.y0=t,n.y=e}function ii(n){return Ko.range(n.length)}function oi(n){for(var t=-1,e=n[0].length,r=[];e>++t;)r[t]=0;return r}function ai(n){for(var t,e=1,r=0,u=n[0][1],i=n.length;i>e;++e)(t=n[e][1])>u&&(r=e,u=t);return r}function ci(n){return n.reduce(si,0)}function si(n,t){return n+t[1]}function li(n,t){return fi(n,Math.ceil(Math.log(t.length)/Math.LN2+1))}function fi(n,t){for(var e=-1,r=+n[0],u=(n[1]-r)/t,i=[];t>=++e;)i[e]=u*e+r;return i}function hi(n){return[Ko.min(n),Ko.max(n)]}function gi(n,t){return n.parent==t.parent?1:2}function pi(n){var t=n.children;return t&&t.length?t[0]:n._tree.thread}function vi(n){var t,e=n.children;return e&&(t=e.length)?e[t-1]:n._tree.thread}function di(n,t){var e=n.children;if(e&&(u=e.length))for(var r,u,i=-1;u>++i;)t(r=di(e[i],t),n)>0&&(n=r);return n}function mi(n,t){return n.x-t.x}function yi(n,t){return t.x-n.x}function xi(n,t){return n.depth-t.depth}function Mi(n,t){function e(n,r){var u=n.children;if(u&&(o=u.length))for(var i,o,a=null,c=-1;o>++c;)i=u[c],e(i,a),a=i;t(n,r)}e(n,null)}function _i(n){for(var t,e=0,r=0,u=n.children,i=u.length;--i>=0;)t=u[i]._tree,t.prelim+=e,t.mod+=e,e+=t.shift+(r+=t.change)}function bi(n,t,e){n=n._tree,t=t._tree;var r=e/(t.number-n.number);n.change+=r,t.change-=r,t.shift+=e,t.prelim+=e,t.mod+=e}function wi(n,t,e){return n._tree.ancestor.parent==t.parent?n._tree.ancestor:e}function Si(n,t){return n.value-t.value}function ki(n,t){var e=n._pack_next;n._pack_next=t,t._pack_prev=n,t._pack_next=e,e._pack_prev=t}function Ei(n,t){n._pack_next=t,t._pack_prev=n}function Ci(n,t){var e=t.x-n.x,r=t.y-n.y,u=n.r+t.r;return.999*u*u>e*e+r*r}function Ni(n){function t(n){l=Math.min(n.x-n.r,l),f=Math.max(n.x+n.r,f),h=Math.min(n.y-n.r,h),g=Math.max(n.y+n.r,g)}if((e=n.children)&&(s=e.length)){var e,r,u,i,o,a,c,s,l=1/0,f=-1/0,h=1/0,g=-1/0;if(e.forEach(Ai),r=e[0],r.x=-r.r,r.y=0,t(r),s>1&&(u=e[1],u.x=u.r,u.y=0,t(u),s>2))for(i=e[2],Li(r,u,i),t(i),ki(r,i),r._pack_prev=i,ki(i,u),u=r._pack_next,o=3;s>o;o++){Li(r,u,i=e[o]);var p=0,v=1,d=1;for(a=u._pack_next;a!==u;a=a._pack_next,v++)if(Ci(a,i)){p=1;break}if(1==p)for(c=r._pack_prev;c!==a._pack_prev&&!Ci(c,i);c=c._pack_prev,d++);p?(d>v||v==d&&u.r<r.r?Ei(r,u=a):Ei(r=c,u),o--):(ki(r,i),u=i,t(i))}var m=(l+f)/2,y=(h+g)/2,x=0;for(o=0;s>o;o++)i=e[o],i.x-=m,i.y-=y,x=Math.max(x,i.r+Math.sqrt(i.x*i.x+i.y*i.y));n.r=x,e.forEach(qi)}}function Ai(n){n._pack_next=n._pack_prev=n}function qi(n){delete n._pack_next,delete n._pack_prev}function zi(n,t,e,r){var u=n.children;if(n.x=t+=r*n.x,n.y=e+=r*n.y,n.r*=r,u)for(var i=-1,o=u.length;o>++i;)zi(u[i],t,e,r)}function Li(n,t,e){var r=n.r+e.r,u=t.x-n.x,i=t.y-n.y;if(r&&(u||i)){var o=t.r+e.r,a=u*u+i*i;o*=o,r*=r;var c=.5+(r-o)/(2*a),s=Math.sqrt(Math.max(0,2*o*(r+a)-(r-=a)*r-o*o))/(2*a);e.x=n.x+c*u+s*i,e.y=n.y+c*i-s*u}else e.x=n.x+r,e.y=n.y}function Ti(n){return 1+Ko.max(n,function(n){return n.y})}function Ri(n){return n.reduce(function(n,t){return n+t.x},0)/n.length}function Di(n){var t=n.children;return t&&t.length?Di(t[0]):n}function Pi(n){var t,e=n.children;return e&&(t=e.length)?Pi(e[t-1]):n}function Ui(n){return{x:n.x,y:n.y,dx:n.dx,dy:n.dy}}function ji(n,t){var e=n.x+t[3],r=n.y+t[0],u=n.dx-t[1]-t[3],i=n.dy-t[0]-t[2];return 0>u&&(e+=u/2,u=0),0>i&&(r+=i/2,i=0),{x:e,y:r,dx:u,dy:i}}function Hi(n){var t=n[0],e=n[n.length-1];return e>t?[t,e]:[e,t]}function Fi(n){return n.rangeExtent?n.rangeExtent():Hi(n.range())}function Oi(n,t,e,r){var u=e(n[0],n[1]),i=r(t[0],t[1]);return function(n){return i(u(n))}}function Ii(n,t){var e,r=0,u=n.length-1,i=n[r],o=n[u];return i>o&&(e=r,r=u,u=e,e=i,i=o,o=e),n[r]=t.floor(i),n[u]=t.ceil(o),n}function Yi(n){return n?{floor:function(t){return Math.floor(t/n)*n},ceil:function(t){return Math.ceil(t/n)*n}}:vs}function Zi(n,t,e,r){var u=[],i=[],o=0,a=Math.min(n.length,t.length)-1;for(n[a]<n[0]&&(n=n.slice().reverse(),t=t.slice().reverse());a>=++o;)u.push(e(n[o-1],n[o])),i.push(r(t[o-1],t[o]));return function(t){var e=Ko.bisect(n,t,1,a)-1;return i[e](u[e](t))}}function Vi(n,t,e,r){function u(){var u=Math.min(n.length,t.length)>2?Zi:Oi,c=r?Iu:Ou;return o=u(n,t,c,e),a=u(t,n,c,mu),i}function i(n){return o(n)}var o,a;return i.invert=function(n){return a(n)},i.domain=function(t){return arguments.length?(n=t.map(Number),u()):n},i.range=function(n){return arguments.length?(t=n,u()):t},i.rangeRound=function(n){return i.range(n).interpolate(Du)},i.clamp=function(n){return arguments.length?(r=n,u()):r},i.interpolate=function(n){return arguments.length?(e=n,u()):e},i.ticks=function(t){return Wi(n,t)},i.tickFormat=function(t,e){return Ji(n,t,e)},i.nice=function(t){return Xi(n,t),u()},i.copy=function(){return Vi(n,t,e,r)},u()}function $i(n,t){return Ko.rebind(n,t,"range","rangeRound","interpolate","clamp")}function Xi(n,t){return Ii(n,Yi(Bi(n,t)[2]))}function Bi(n,t){null==t&&(t=10);var e=Hi(n),r=e[1]-e[0],u=Math.pow(10,Math.floor(Math.log(r/t)/Math.LN10)),i=t/r*u;return.15>=i?u*=10:.35>=i?u*=5:.75>=i&&(u*=2),e[0]=Math.ceil(e[0]/u)*u,e[1]=Math.floor(e[1]/u)*u+.5*u,e[2]=u,e}function Wi(n,t){return Ko.range.apply(Ko,Bi(n,t))}function Ji(n,t,e){var r=Bi(n,t);if(e){var u=uc.exec(e);if(u.shift(),"s"===u[8]){var i=Ko.formatPrefix(Math.max(ha(r[0]),ha(r[1])));return u[7]||(u[7]="."+Gi(i.scale(r[2]))),u[8]="f",e=Ko.format(u.join("")),function(n){return e(i.scale(n))+i.symbol}}u[7]||(u[7]="."+Ki(u[8],r)),e=u.join("")}else e=",."+Gi(r[2])+"f";return Ko.format(e)}function Gi(n){return-Math.floor(Math.log(n)/Math.LN10+.01)}function Ki(n,t){var e=Gi(t[2]);return n in ds?Math.abs(e-Gi(Math.max(ha(t[0]),ha(t[1]))))+ +("e"!==n):e-2*("%"===n)}function Qi(n,t,e,r){function u(n){return(e?Math.log(0>n?0:n):-Math.log(n>0?0:-n))/Math.log(t)}function i(n){return e?Math.pow(t,n):-Math.pow(t,-n)}function o(t){return n(u(t))}return o.invert=function(t){return i(n.invert(t))},o.domain=function(t){return arguments.length?(e=t[0]>=0,n.domain((r=t.map(Number)).map(u)),o):r},o.base=function(e){return arguments.length?(t=+e,n.domain(r.map(u)),o):t},o.nice=function(){var t=Ii(r.map(u),e?Math:ys);return n.domain(t),r=t.map(i),o},o.ticks=function(){var n=Hi(r),o=[],a=n[0],c=n[1],s=Math.floor(u(a)),l=Math.ceil(u(c)),f=t%1?2:t;if(isFinite(l-s)){if(e){for(;l>s;s++)for(var h=1;f>h;h++)o.push(i(s)*h);o.push(i(s))}else for(o.push(i(s));l>s++;)for(var h=f-1;h>0;h--)o.push(i(s)*h);for(s=0;a>o[s];s++);for(l=o.length;o[l-1]>c;l--);o=o.slice(s,l)}return o},o.tickFormat=function(n,t){if(!arguments.length)return ms;2>arguments.length?t=ms:"function"!=typeof t&&(t=Ko.format(t));var r,a=Math.max(.1,n/o.ticks().length),c=e?(r=1e-12,Math.ceil):(r=-1e-12,Math.floor);return function(n){return a>=n/i(c(u(n)+r))?t(n):""}},o.copy=function(){return Qi(n.copy(),t,e,r)},$i(o,n)}function no(n,t,e){function r(t){return n(u(t))}var u=to(t),i=to(1/t);return r.invert=function(t){return i(n.invert(t))},r.domain=function(t){return arguments.length?(n.domain((e=t.map(Number)).map(u)),r):e},r.ticks=function(n){return Wi(e,n)},r.tickFormat=function(n,t){return Ji(e,n,t)},r.nice=function(n){return r.domain(Xi(e,n))},r.exponent=function(o){return arguments.length?(u=to(t=o),i=to(1/t),n.domain(e.map(u)),r):t},r.copy=function(){return no(n.copy(),t,e)},$i(r,n)}function to(n){return function(t){return 0>t?-Math.pow(-t,n):Math.pow(t,n)}}function eo(n,t){function e(e){return i[((u.get(e)||("range"===t.t?u.set(e,n.push(e)):0/0))-1)%i.length]}function r(t,e){return Ko.range(n.length).map(function(n){return t+e*n})}var u,i,o;return e.domain=function(r){if(!arguments.length)return n;n=[],u=new a;for(var i,o=-1,c=r.length;c>++o;)u.has(i=r[o])||u.set(i,n.push(i));return e[t.t].apply(e,t.a)},e.range=function(n){return arguments.length?(i=n,o=0,t={t:"range",a:arguments},e):i},e.rangePoints=function(u,a){2>arguments.length&&(a=0);var c=u[0],s=u[1],l=(s-c)/(Math.max(1,n.length-1)+a);return i=r(2>n.length?(c+s)/2:c+l*a/2,l),o=0,t={t:"rangePoints",a:arguments},e},e.rangeBands=function(u,a,c){2>arguments.length&&(a=0),3>arguments.length&&(c=a);var s=u[1]<u[0],l=u[s-0],f=u[1-s],h=(f-l)/(n.length-a+2*c);return i=r(l+h*c,h),s&&i.reverse(),o=h*(1-a),t={t:"rangeBands",a:arguments},e},e.rangeRoundBands=function(u,a,c){2>arguments.length&&(a=0),3>arguments.length&&(c=a);var s=u[1]<u[0],l=u[s-0],f=u[1-s],h=Math.floor((f-l)/(n.length-a+2*c)),g=f-l-(n.length-a)*h;return i=r(l+Math.round(g/2),h),s&&i.reverse(),o=Math.round(h*(1-a)),t={t:"rangeRoundBands",a:arguments},e},e.rangeBand=function(){return o},e.rangeExtent=function(){return Hi(t.a[0])},e.copy=function(){return eo(n,t)},e.domain(n)}function ro(t,e){function r(){var n=0,r=e.length;for(i=[];r>++n;)i[n-1]=Ko.quantile(t,n/r);return u}function u(n){return isNaN(n=+n)?void 0:e[Ko.bisect(i,n)]}var i;return u.domain=function(e){return arguments.length?(t=e.filter(function(n){return!isNaN(n)}).sort(n),r()):t},u.range=function(n){return arguments.length?(e=n,r()):e},u.quantiles=function(){return i},u.invertExtent=function(n){return n=e.indexOf(n),0>n?[0/0,0/0]:[n>0?i[n-1]:t[0],i.length>n?i[n]:t[t.length-1]]},u.copy=function(){return ro(t,e)},r()}function uo(n,t,e){function r(t){return e[Math.max(0,Math.min(o,Math.floor(i*(t-n))))]}function u(){return i=e.length/(t-n),o=e.length-1,r}var i,o;return r.domain=function(e){return arguments.length?(n=+e[0],t=+e[e.length-1],u()):[n,t]},r.range=function(n){return arguments.length?(e=n,u()):e},r.invertExtent=function(t){return t=e.indexOf(t),t=0>t?0/0:t/i+n,[t,t+1/i]},r.copy=function(){return uo(n,t,e)},u()}function io(n,t){function e(e){return e>=e?t[Ko.bisect(n,e)]:void 0}return e.domain=function(t){return arguments.length?(n=t,e):n},e.range=function(n){return arguments.length?(t=n,e):t},e.invertExtent=function(e){return e=t.indexOf(e),[n[e-1],n[e]]},e.copy=function(){return io(n,t)},e}function oo(n){function t(n){return+n}return t.invert=t,t.domain=t.range=function(e){return arguments.length?(n=e.map(t),t):n},t.ticks=function(t){return Wi(n,t)},t.tickFormat=function(t,e){return Ji(n,t,e)},t.copy=function(){return oo(n)},t}function ao(n){return n.innerRadius}function co(n){return n.outerRadius}function so(n){return n.startAngle}function lo(n){return n.endAngle}function fo(n){function t(t){function o(){s.push("M",i(n(l),a))}for(var c,s=[],l=[],f=-1,h=t.length,g=Ct(e),p=Ct(r);h>++f;)u.call(this,c=t[f],f)?l.push([+g.call(this,c,f),+p.call(this,c,f)]):l.length&&(o(),l=[]);return l.length&&o(),s.length?s.join(""):null}var e=Nr,r=Ar,u=Ne,i=ho,o=i.key,a=.7;return t.x=function(n){return arguments.length?(e=n,t):e},t.y=function(n){return arguments.length?(r=n,t):r},t.defined=function(n){return arguments.length?(u=n,t):u},t.interpolate=function(n){return arguments.length?(o="function"==typeof n?i=n:(i=ks.get(n)||ho).key,t):o},t.tension=function(n){return arguments.length?(a=n,t):a},t}function ho(n){return n.join("L")}function go(n){return ho(n)+"Z"}function po(n){for(var t=0,e=n.length,r=n[0],u=[r[0],",",r[1]];e>++t;)u.push("H",(r[0]+(r=n[t])[0])/2,"V",r[1]);return e>1&&u.push("H",r[0]),u.join("")}function vo(n){for(var t=0,e=n.length,r=n[0],u=[r[0],",",r[1]];e>++t;)u.push("V",(r=n[t])[1],"H",r[0]);return u.join("")}function mo(n){for(var t=0,e=n.length,r=n[0],u=[r[0],",",r[1]];e>++t;)u.push("H",(r=n[t])[0],"V",r[1]);return u.join("")}function yo(n,t){return 4>n.length?ho(n):n[1]+_o(n.slice(1,n.length-1),bo(n,t))}function xo(n,t){return 3>n.length?ho(n):n[0]+_o((n.push(n[0]),n),bo([n[n.length-2]].concat(n,[n[1]]),t))}function Mo(n,t){return 3>n.length?ho(n):n[0]+_o(n,bo(n,t))}function _o(n,t){if(1>t.length||n.length!=t.length&&n.length!=t.length+2)return ho(n);var e=n.length!=t.length,r="",u=n[0],i=n[1],o=t[0],a=o,c=1;if(e&&(r+="Q"+(i[0]-2*o[0]/3)+","+(i[1]-2*o[1]/3)+","+i[0]+","+i[1],u=n[1],c=2),t.length>1){a=t[1],i=n[c],c++,r+="C"+(u[0]+o[0])+","+(u[1]+o[1])+","+(i[0]-a[0])+","+(i[1]-a[1])+","+i[0]+","+i[1];for(var s=2;t.length>s;s++,c++)i=n[c],a=t[s],r+="S"+(i[0]-a[0])+","+(i[1]-a[1])+","+i[0]+","+i[1]}if(e){var l=n[c];r+="Q"+(i[0]+2*a[0]/3)+","+(i[1]+2*a[1]/3)+","+l[0]+","+l[1]}return r}function bo(n,t){for(var e,r=[],u=(1-t)/2,i=n[0],o=n[1],a=1,c=n.length;c>++a;)e=i,i=o,o=n[a],r.push([u*(o[0]-e[0]),u*(o[1]-e[1])]);return r}function wo(n){if(3>n.length)return ho(n);var t=1,e=n.length,r=n[0],u=r[0],i=r[1],o=[u,u,u,(r=n[1])[0]],a=[i,i,i,r[1]],c=[u,",",i,"L",Co(Ns,o),",",Co(Ns,a)];for(n.push(n[e-1]);e>=++t;)r=n[t],o.shift(),o.push(r[0]),a.shift(),a.push(r[1]),No(c,o,a);return n.pop(),c.push("L",r),c.join("")}function So(n){if(4>n.length)return ho(n);for(var t,e=[],r=-1,u=n.length,i=[0],o=[0];3>++r;)t=n[r],i.push(t[0]),o.push(t[1]);for(e.push(Co(Ns,i)+","+Co(Ns,o)),--r;u>++r;)t=n[r],i.shift(),i.push(t[0]),o.shift(),o.push(t[1]),No(e,i,o);return e.join("")}function ko(n){for(var t,e,r=-1,u=n.length,i=u+4,o=[],a=[];4>++r;)e=n[r%u],o.push(e[0]),a.push(e[1]);for(t=[Co(Ns,o),",",Co(Ns,a)],--r;i>++r;)e=n[r%u],o.shift(),o.push(e[0]),a.shift(),a.push(e[1]),No(t,o,a);return t.join("")}function Eo(n,t){var e=n.length-1;if(e)for(var r,u,i=n[0][0],o=n[0][1],a=n[e][0]-i,c=n[e][1]-o,s=-1;e>=++s;)r=n[s],u=s/e,r[0]=t*r[0]+(1-t)*(i+u*a),r[1]=t*r[1]+(1-t)*(o+u*c);return wo(n)}function Co(n,t){return n[0]*t[0]+n[1]*t[1]+n[2]*t[2]+n[3]*t[3]}function No(n,t,e){n.push("C",Co(Es,t),",",Co(Es,e),",",Co(Cs,t),",",Co(Cs,e),",",Co(Ns,t),",",Co(Ns,e))}function Ao(n,t){return(t[1]-n[1])/(t[0]-n[0])}function qo(n){for(var t=0,e=n.length-1,r=[],u=n[0],i=n[1],o=r[0]=Ao(u,i);e>++t;)r[t]=(o+(o=Ao(u=i,i=n[t+1])))/2;return r[t]=o,r}function zo(n){for(var t,e,r,u,i=[],o=qo(n),a=-1,c=n.length-1;c>++a;)t=Ao(n[a],n[a+1]),La>ha(t)?o[a]=o[a+1]=0:(e=o[a]/t,r=o[a+1]/t,u=e*e+r*r,u>9&&(u=3*t/Math.sqrt(u),o[a]=u*e,o[a+1]=u*r));for(a=-1;c>=++a;)u=(n[Math.min(c,a+1)][0]-n[Math.max(0,a-1)][0])/(6*(1+o[a]*o[a])),i.push([u||0,o[a]*u||0]);return i}function Lo(n){return 3>n.length?ho(n):n[0]+_o(n,zo(n))}function To(n){for(var t,e,r,u=-1,i=n.length;i>++u;)t=n[u],e=t[0],r=t[1]+ws,t[0]=e*Math.cos(r),t[1]=e*Math.sin(r);return n}function Ro(n){function t(t){function c(){v.push("M",a(n(m),f),l,s(n(d.reverse()),f),"Z")}for(var h,g,p,v=[],d=[],m=[],y=-1,x=t.length,M=Ct(e),_=Ct(u),b=e===r?function(){return g}:Ct(r),w=u===i?function(){return p}:Ct(i);x>++y;)o.call(this,h=t[y],y)?(d.push([g=+M.call(this,h,y),p=+_.call(this,h,y)]),m.push([+b.call(this,h,y),+w.call(this,h,y)])):d.length&&(c(),d=[],m=[]);return d.length&&c(),v.length?v.join(""):null}var e=Nr,r=Nr,u=0,i=Ar,o=Ne,a=ho,c=a.key,s=a,l="L",f=.7;return t.x=function(n){return arguments.length?(e=r=n,t):r},t.x0=function(n){return arguments.length?(e=n,t):e},t.x1=function(n){return arguments.length?(r=n,t):r},t.y=function(n){return arguments.length?(u=i=n,t):i},t.y0=function(n){return arguments.length?(u=n,t):u},t.y1=function(n){return arguments.length?(i=n,t):i},t.defined=function(n){return arguments.length?(o=n,t):o},t.interpolate=function(n){return arguments.length?(c="function"==typeof n?a=n:(a=ks.get(n)||ho).key,s=a.reverse||a,l=a.closed?"M":"L",t):c},t.tension=function(n){return arguments.length?(f=n,t):f},t}function Do(n){return n.radius}function Po(n){return[n.x,n.y]}function Uo(n){return function(){var t=n.apply(this,arguments),e=t[0],r=t[1]+ws;return[e*Math.cos(r),e*Math.sin(r)]}}function jo(){return 64}function Ho(){return"circle"}function Fo(n){var t=Math.sqrt(n/Aa);return"M0,"+t+"A"+t+","+t+" 0 1,1 0,"+-t+"A"+t+","+t+" 0 1,1 0,"+t+"Z"}function Oo(n,t){return ma(n,Rs),n.id=t,n}function Io(n,t,e,r){var u=n.id;return U(n,"function"==typeof e?function(n,i,o){n.__transition__[u].tween.set(t,r(e.call(n,n.__data__,i,o)))}:(e=r(e),function(n){n.__transition__[u].tween.set(t,e)}))}function Yo(n){return null==n&&(n=""),function(){this.textContent=n | |
}}function Zo(n,t,e,r){var u=n.__transition__||(n.__transition__={active:0,count:0}),i=u[e];if(!i){var o=r.time;i=u[e]={tween:new a,time:o,ease:r.ease,delay:r.delay,duration:r.duration},++u.count,Ko.timer(function(r){function a(r){return u.active>e?s():(u.active=e,i.event&&i.event.start.call(n,l,t),i.tween.forEach(function(e,r){(r=r.call(n,l,t))&&v.push(r)}),Ko.timer(function(){return p.c=c(r||1)?Ne:c,1},0,o),void 0)}function c(r){if(u.active!==e)return s();for(var o=r/g,a=f(o),c=v.length;c>0;)v[--c].call(n,a);return o>=1?(i.event&&i.event.end.call(n,l,t),s()):void 0}function s(){return--u.count?delete u[e]:delete n.__transition__,1}var l=n.__data__,f=i.ease,h=i.delay,g=i.duration,p=tc,v=[];return p.t=h+o,r>=h?a(r-h):(p.c=a,void 0)},0,o)}}function Vo(n,t){n.attr("transform",function(n){return"translate("+t(n)+",0)"})}function $o(n,t){n.attr("transform",function(n){return"translate(0,"+t(n)+")"})}function Xo(n){return n.toISOString()}function Bo(n,t,e){function r(t){return n(t)}function u(n,e){var r=n[1]-n[0],u=r/e,i=Ko.bisect(Ys,u);return i==Ys.length?[t.year,Bi(n.map(function(n){return n/31536e6}),e)[2]]:i?t[u/Ys[i-1]<Ys[i]/u?i-1:i]:[$s,Bi(n,e)[2]]}return r.invert=function(t){return Wo(n.invert(t))},r.domain=function(t){return arguments.length?(n.domain(t),r):n.domain().map(Wo)},r.nice=function(n,t){function e(e){return!isNaN(e)&&!n.range(e,Wo(+e+1),t).length}var i=r.domain(),o=Hi(i),a=null==n?u(o,10):"number"==typeof n&&u(o,n);return a&&(n=a[0],t=a[1]),r.domain(Ii(i,t>1?{floor:function(t){for(;e(t=n.floor(t));)t=Wo(t-1);return t},ceil:function(t){for(;e(t=n.ceil(t));)t=Wo(+t+1);return t}}:n))},r.ticks=function(n,t){var e=Hi(r.domain()),i=null==n?u(e,10):"number"==typeof n?u(e,n):!n.range&&[{range:n},t];return i&&(n=i[0],t=i[1]),n.range(e[0],Wo(+e[1]+1),1>t?1:t)},r.tickFormat=function(){return e},r.copy=function(){return Bo(n.copy(),t,e)},$i(r,n)}function Wo(n){return new Date(n)}function Jo(n){return JSON.parse(n.responseText)}function Go(n){var t=ta.createRange();return t.selectNode(ta.body),t.createContextualFragment(n.responseText)}var Ko={version:"3.4.4"};Date.now||(Date.now=function(){return+new Date});var Qo=[].slice,na=function(n){return Qo.call(n)},ta=document,ea=ta.documentElement,ra=window;try{na(ea.childNodes)[0].nodeType}catch(ua){na=function(n){for(var t=n.length,e=Array(t);t--;)e[t]=n[t];return e}}try{ta.createElement("div").style.setProperty("opacity",0,"")}catch(ia){var oa=ra.Element.prototype,aa=oa.setAttribute,ca=oa.setAttributeNS,sa=ra.CSSStyleDeclaration.prototype,la=sa.setProperty;oa.setAttribute=function(n,t){aa.call(this,n,t+"")},oa.setAttributeNS=function(n,t,e){ca.call(this,n,t,e+"")},sa.setProperty=function(n,t,e){la.call(this,n,t+"",e)}}Ko.ascending=n,Ko.descending=function(n,t){return n>t?-1:t>n?1:t>=n?0:0/0},Ko.min=function(n,t){var e,r,u=-1,i=n.length;if(1===arguments.length){for(;i>++u&&!(null!=(e=n[u])&&e>=e);)e=void 0;for(;i>++u;)null!=(r=n[u])&&e>r&&(e=r)}else{for(;i>++u&&!(null!=(e=t.call(n,n[u],u))&&e>=e);)e=void 0;for(;i>++u;)null!=(r=t.call(n,n[u],u))&&e>r&&(e=r)}return e},Ko.max=function(n,t){var e,r,u=-1,i=n.length;if(1===arguments.length){for(;i>++u&&!(null!=(e=n[u])&&e>=e);)e=void 0;for(;i>++u;)null!=(r=n[u])&&r>e&&(e=r)}else{for(;i>++u&&!(null!=(e=t.call(n,n[u],u))&&e>=e);)e=void 0;for(;i>++u;)null!=(r=t.call(n,n[u],u))&&r>e&&(e=r)}return e},Ko.extent=function(n,t){var e,r,u,i=-1,o=n.length;if(1===arguments.length){for(;o>++i&&!(null!=(e=u=n[i])&&e>=e);)e=u=void 0;for(;o>++i;)null!=(r=n[i])&&(e>r&&(e=r),r>u&&(u=r))}else{for(;o>++i&&!(null!=(e=u=t.call(n,n[i],i))&&e>=e);)e=void 0;for(;o>++i;)null!=(r=t.call(n,n[i],i))&&(e>r&&(e=r),r>u&&(u=r))}return[e,u]},Ko.sum=function(n,t){var e,r=0,u=n.length,i=-1;if(1===arguments.length)for(;u>++i;)isNaN(e=+n[i])||(r+=e);else for(;u>++i;)isNaN(e=+t.call(n,n[i],i))||(r+=e);return r},Ko.mean=function(n,t){var r,u=n.length,i=0,o=-1,a=0;if(1===arguments.length)for(;u>++o;)e(r=n[o])&&(i+=(r-i)/++a);else for(;u>++o;)e(r=t.call(n,n[o],o))&&(i+=(r-i)/++a);return a?i:void 0},Ko.quantile=function(n,t){var e=(n.length-1)*t+1,r=Math.floor(e),u=+n[r-1],i=e-r;return i?u+i*(n[r]-u):u},Ko.median=function(t,r){return arguments.length>1&&(t=t.map(r)),t=t.filter(e),t.length?Ko.quantile(t.sort(n),.5):void 0};var fa=r(n);Ko.bisectLeft=fa.left,Ko.bisect=Ko.bisectRight=fa.right,Ko.bisector=function(t){return r(1===t.length?function(e,r){return n(t(e),r)}:t)},Ko.shuffle=function(n){for(var t,e,r=n.length;r;)e=0|Math.random()*r--,t=n[r],n[r]=n[e],n[e]=t;return n},Ko.permute=function(n,t){for(var e=t.length,r=Array(e);e--;)r[e]=n[t[e]];return r},Ko.pairs=function(n){for(var t,e=0,r=n.length-1,u=n[0],i=Array(0>r?0:r);r>e;)i[e]=[t=u,u=n[++e]];return i},Ko.zip=function(){if(!(r=arguments.length))return[];for(var n=-1,t=Ko.min(arguments,u),e=Array(t);t>++n;)for(var r,i=-1,o=e[n]=Array(r);r>++i;)o[i]=arguments[i][n];return e},Ko.transpose=function(n){return Ko.zip.apply(Ko,n)},Ko.keys=function(n){var t=[];for(var e in n)t.push(e);return t},Ko.values=function(n){var t=[];for(var e in n)t.push(n[e]);return t},Ko.entries=function(n){var t=[];for(var e in n)t.push({key:e,value:n[e]});return t},Ko.merge=function(n){for(var t,e,r,u=n.length,i=-1,o=0;u>++i;)o+=n[i].length;for(e=Array(o);--u>=0;)for(r=n[u],t=r.length;--t>=0;)e[--o]=r[t];return e};var ha=Math.abs;Ko.range=function(n,t,e){if(3>arguments.length&&(e=1,2>arguments.length&&(t=n,n=0)),1/0===(t-n)/e)throw Error("infinite range");var r,u=[],o=i(ha(e)),a=-1;if(n*=o,t*=o,e*=o,0>e)for(;(r=n+e*++a)>t;)u.push(r/o);else for(;t>(r=n+e*++a);)u.push(r/o);return u},Ko.map=function(n){var t=new a;if(n instanceof a)n.forEach(function(n,e){t.set(n,e)});else for(var e in n)t.set(e,n[e]);return t},o(a,{has:c,get:function(n){return this[ga+n]},set:function(n,t){return this[ga+n]=t},remove:s,keys:l,values:function(){var n=[];return this.forEach(function(t,e){n.push(e)}),n},entries:function(){var n=[];return this.forEach(function(t,e){n.push({key:t,value:e})}),n},size:f,empty:h,forEach:function(n){for(var t in this)t.charCodeAt(0)===pa&&n.call(this,t.substring(1),this[t])}});var ga="\0",pa=ga.charCodeAt(0);Ko.nest=function(){function n(t,o,c){if(c>=i.length)return r?r.call(u,o):e?o.sort(e):o;for(var s,l,f,h,g=-1,p=o.length,v=i[c++],d=new a;p>++g;)(h=d.get(s=v(l=o[g])))?h.push(l):d.set(s,[l]);return t?(l=t(),f=function(e,r){l.set(e,n(t,r,c))}):(l={},f=function(e,r){l[e]=n(t,r,c)}),d.forEach(f),l}function t(n,e){if(e>=i.length)return n;var r=[],u=o[e++];return n.forEach(function(n,u){r.push({key:n,values:t(u,e)})}),u?r.sort(function(n,t){return u(n.key,t.key)}):r}var e,r,u={},i=[],o=[];return u.map=function(t,e){return n(e,t,0)},u.entries=function(e){return t(n(Ko.map,e,0),0)},u.key=function(n){return i.push(n),u},u.sortKeys=function(n){return o[i.length-1]=n,u},u.sortValues=function(n){return e=n,u},u.rollup=function(n){return r=n,u},u},Ko.set=function(n){var t=new g;if(n)for(var e=0,r=n.length;r>e;++e)t.add(n[e]);return t},o(g,{has:c,add:function(n){return this[ga+n]=!0,n},remove:function(n){return n=ga+n,n in this&&delete this[n]},values:l,size:f,empty:h,forEach:function(n){for(var t in this)t.charCodeAt(0)===pa&&n.call(this,t.substring(1))}}),Ko.behavior={},Ko.rebind=function(n,t){for(var e,r=1,u=arguments.length;u>++r;)n[e=arguments[r]]=p(n,t,t[e]);return n};var va=["webkit","ms","moz","Moz","o","O"];Ko.dispatch=function(){for(var n=new m,t=-1,e=arguments.length;e>++t;)n[arguments[t]]=y(n);return n},m.prototype.on=function(n,t){var e=n.indexOf("."),r="";if(e>=0&&(r=n.substring(e+1),n=n.substring(0,e)),n)return 2>arguments.length?this[n].on(r):this[n].on(r,t);if(2===arguments.length){if(null==t)for(n in this)this.hasOwnProperty(n)&&this[n].on(r,null);return this}},Ko.event=null,Ko.requote=function(n){return n.replace(da,"\\$&")};var da=/[\\\^\$\*\+\?\|\[\]\(\)\.\{\}]/g,ma={}.__proto__?function(n,t){n.__proto__=t}:function(n,t){for(var e in t)n[e]=t[e]},ya=function(n,t){return t.querySelector(n)},xa=function(n,t){return t.querySelectorAll(n)},Ma=ea[v(ea,"matchesSelector")],_a=function(n,t){return Ma.call(n,t)};"function"==typeof Sizzle&&(ya=function(n,t){return Sizzle(n,t)[0]||null},xa=Sizzle,_a=Sizzle.matchesSelector),Ko.selection=function(){return ka};var ba=Ko.selection.prototype=[];ba.select=function(n){var t,e,r,u,i=[];n=w(n);for(var o=-1,a=this.length;a>++o;){i.push(t=[]),t.parentNode=(r=this[o]).parentNode;for(var c=-1,s=r.length;s>++c;)(u=r[c])?(t.push(e=n.call(u,u.__data__,c,o)),e&&"__data__"in u&&(e.__data__=u.__data__)):t.push(null)}return b(i)},ba.selectAll=function(n){var t,e,r=[];n=S(n);for(var u=-1,i=this.length;i>++u;)for(var o=this[u],a=-1,c=o.length;c>++a;)(e=o[a])&&(r.push(t=na(n.call(e,e.__data__,a,u))),t.parentNode=e);return b(r)};var wa={svg:"http://www.w3.org/2000/svg",xhtml:"http://www.w3.org/1999/xhtml",xlink:"http://www.w3.org/1999/xlink",xml:"http://www.w3.org/XML/1998/namespace",xmlns:"http://www.w3.org/2000/xmlns/"};Ko.ns={prefix:wa,qualify:function(n){var t=n.indexOf(":"),e=n;return t>=0&&(e=n.substring(0,t),n=n.substring(t+1)),wa.hasOwnProperty(e)?{space:wa[e],local:n}:n}},ba.attr=function(n,t){if(2>arguments.length){if("string"==typeof n){var e=this.node();return n=Ko.ns.qualify(n),n.local?e.getAttributeNS(n.space,n.local):e.getAttribute(n)}for(t in n)this.each(k(t,n[t]));return this}return this.each(k(n,t))},ba.classed=function(n,t){if(2>arguments.length){if("string"==typeof n){var e=this.node(),r=(n=N(n)).length,u=-1;if(t=e.classList){for(;r>++u;)if(!t.contains(n[u]))return!1}else for(t=e.getAttribute("class");r>++u;)if(!C(n[u]).test(t))return!1;return!0}for(t in n)this.each(A(t,n[t]));return this}return this.each(A(n,t))},ba.style=function(n,t,e){var r=arguments.length;if(3>r){if("string"!=typeof n){2>r&&(t="");for(e in n)this.each(z(e,n[e],t));return this}if(2>r)return ra.getComputedStyle(this.node(),null).getPropertyValue(n);e=""}return this.each(z(n,t,e))},ba.property=function(n,t){if(2>arguments.length){if("string"==typeof n)return this.node()[n];for(t in n)this.each(L(t,n[t]));return this}return this.each(L(n,t))},ba.text=function(n){return arguments.length?this.each("function"==typeof n?function(){var t=n.apply(this,arguments);this.textContent=null==t?"":t}:null==n?function(){this.textContent=""}:function(){this.textContent=n}):this.node().textContent},ba.html=function(n){return arguments.length?this.each("function"==typeof n?function(){var t=n.apply(this,arguments);this.innerHTML=null==t?"":t}:null==n?function(){this.innerHTML=""}:function(){this.innerHTML=n}):this.node().innerHTML},ba.append=function(n){return n=T(n),this.select(function(){return this.appendChild(n.apply(this,arguments))})},ba.insert=function(n,t){return n=T(n),t=w(t),this.select(function(){return this.insertBefore(n.apply(this,arguments),t.apply(this,arguments)||null)})},ba.remove=function(){return this.each(function(){var n=this.parentNode;n&&n.removeChild(this)})},ba.data=function(n,t){function e(n,e){var r,u,i,o=n.length,f=e.length,h=Math.min(o,f),g=Array(f),p=Array(f),v=Array(o);if(t){var d,m=new a,y=new a,x=[];for(r=-1;o>++r;)d=t.call(u=n[r],u.__data__,r),m.has(d)?v[r]=u:m.set(d,u),x.push(d);for(r=-1;f>++r;)d=t.call(e,i=e[r],r),(u=m.get(d))?(g[r]=u,u.__data__=i):y.has(d)||(p[r]=R(i)),y.set(d,i),m.remove(d);for(r=-1;o>++r;)m.has(x[r])&&(v[r]=n[r])}else{for(r=-1;h>++r;)u=n[r],i=e[r],u?(u.__data__=i,g[r]=u):p[r]=R(i);for(;f>r;++r)p[r]=R(e[r]);for(;o>r;++r)v[r]=n[r]}p.update=g,p.parentNode=g.parentNode=v.parentNode=n.parentNode,c.push(p),s.push(g),l.push(v)}var r,u,i=-1,o=this.length;if(!arguments.length){for(n=Array(o=(r=this[0]).length);o>++i;)(u=r[i])&&(n[i]=u.__data__);return n}var c=j([]),s=b([]),l=b([]);if("function"==typeof n)for(;o>++i;)e(r=this[i],n.call(r,r.parentNode.__data__,i));else for(;o>++i;)e(r=this[i],n);return s.enter=function(){return c},s.exit=function(){return l},s},ba.datum=function(n){return arguments.length?this.property("__data__",n):this.property("__data__")},ba.filter=function(n){var t,e,r,u=[];"function"!=typeof n&&(n=D(n));for(var i=0,o=this.length;o>i;i++){u.push(t=[]),t.parentNode=(e=this[i]).parentNode;for(var a=0,c=e.length;c>a;a++)(r=e[a])&&n.call(r,r.__data__,a,i)&&t.push(r)}return b(u)},ba.order=function(){for(var n=-1,t=this.length;t>++n;)for(var e,r=this[n],u=r.length-1,i=r[u];--u>=0;)(e=r[u])&&(i&&i!==e.nextSibling&&i.parentNode.insertBefore(e,i),i=e);return this},ba.sort=function(n){n=P.apply(this,arguments);for(var t=-1,e=this.length;e>++t;)this[t].sort(n);return this.order()},ba.each=function(n){return U(this,function(t,e,r){n.call(t,t.__data__,e,r)})},ba.call=function(n){var t=na(arguments);return n.apply(t[0]=this,t),this},ba.empty=function(){return!this.node()},ba.node=function(){for(var n=0,t=this.length;t>n;n++)for(var e=this[n],r=0,u=e.length;u>r;r++){var i=e[r];if(i)return i}return null},ba.size=function(){var n=0;return this.each(function(){++n}),n};var Sa=[];Ko.selection.enter=j,Ko.selection.enter.prototype=Sa,Sa.append=ba.append,Sa.empty=ba.empty,Sa.node=ba.node,Sa.call=ba.call,Sa.size=ba.size,Sa.select=function(n){for(var t,e,r,u,i,o=[],a=-1,c=this.length;c>++a;){r=(u=this[a]).update,o.push(t=[]),t.parentNode=u.parentNode;for(var s=-1,l=u.length;l>++s;)(i=u[s])?(t.push(r[s]=e=n.call(u.parentNode,i.__data__,s,a)),e.__data__=i.__data__):t.push(null)}return b(o)},Sa.insert=function(n,t){return 2>arguments.length&&(t=H(this)),ba.insert.call(this,n,t)},ba.transition=function(){for(var n,t,e=qs||++Ds,r=[],u=zs||{time:Date.now(),ease:Su,delay:0,duration:250},i=-1,o=this.length;o>++i;){r.push(n=[]);for(var a=this[i],c=-1,s=a.length;s>++c;)(t=a[c])&&Zo(t,c,e,u),n.push(t)}return Oo(r,e)},ba.interrupt=function(){return this.each(F)},Ko.select=function(n){var t=["string"==typeof n?ya(n,ta):n];return t.parentNode=ea,b([t])},Ko.selectAll=function(n){var t=na("string"==typeof n?xa(n,ta):n);return t.parentNode=ea,b([t])};var ka=Ko.select(ea);ba.on=function(n,t,e){var r=arguments.length;if(3>r){if("string"!=typeof n){2>r&&(t=!1);for(e in n)this.each(O(e,n[e],t));return this}if(2>r)return(r=this.node()["__on"+n])&&r._;e=!1}return this.each(O(n,t,e))};var Ea=Ko.map({mouseenter:"mouseover",mouseleave:"mouseout"});Ea.forEach(function(n){"on"+n in ta&&Ea.remove(n)});var Ca="onselectstart"in ta?null:v(ea.style,"userSelect"),Na=0;Ko.mouse=function(n){return V(n,M())},Ko.touches=function(n,t){return 2>arguments.length&&(t=M().touches),t?na(t).map(function(t){var e=V(n,t);return e.identifier=t.identifier,e}):[]},Ko.behavior.drag=function(){function n(){this.on("mousedown.drag",u).on("touchstart.drag",i)}function t(n,t,u,i,o){return function(){function a(){var n,e,r=t(h,v);r&&(n=r[0]-x[0],e=r[1]-x[1],p|=n|e,x=r,g({type:"drag",x:r[0]+s[0],y:r[1]+s[1],dx:n,dy:e}))}function c(){t(h,v)&&(m.on(i+d,null).on(o+d,null),y(p&&Ko.event.target===f),g({type:"dragend"}))}var s,l=this,f=Ko.event.target,h=l.parentNode,g=e.of(l,arguments),p=0,v=n(),d=".drag"+(null==v?"":"-"+v),m=Ko.select(u()).on(i+d,a).on(o+d,c),y=Z(),x=t(h,v);r?(s=r.apply(l,arguments),s=[s.x-x[0],s.y-x[1]]):s=[0,0],g({type:"dragstart"})}}var e=_(n,"drag","dragstart","dragend"),r=null,u=t(d,Ko.mouse,B,"mousemove","mouseup"),i=t($,Ko.touch,X,"touchmove","touchend");return n.origin=function(t){return arguments.length?(r=t,n):r},Ko.rebind(n,e,"on")};var Aa=Math.PI,qa=2*Aa,za=Aa/2,La=1e-6,Ta=La*La,Ra=Aa/180,Da=180/Aa,Pa=Math.SQRT2,Ua=2,ja=4;Ko.interpolateZoom=function(n,t){function e(n){var t=n*y;if(m){var e=nt(v),o=i/(Ua*h)*(e*tt(Pa*t+v)-Q(v));return[r+o*s,u+o*l,i*e/nt(Pa*t+v)]}return[r+n*s,u+n*l,i*Math.exp(Pa*t)]}var r=n[0],u=n[1],i=n[2],o=t[0],a=t[1],c=t[2],s=o-r,l=a-u,f=s*s+l*l,h=Math.sqrt(f),g=(c*c-i*i+ja*f)/(2*i*Ua*h),p=(c*c-i*i-ja*f)/(2*c*Ua*h),v=Math.log(Math.sqrt(g*g+1)-g),d=Math.log(Math.sqrt(p*p+1)-p),m=d-v,y=(m||Math.log(c/i))/Pa;return e.duration=1e3*y,e},Ko.behavior.zoom=function(){function n(n){n.on(C,s).on(Oa+".zoom",f).on(N,h).on("dblclick.zoom",g).on(q,l)}function t(n){return[(n[0]-S.x)/S.k,(n[1]-S.y)/S.k]}function e(n){return[n[0]*S.k+S.x,n[1]*S.k+S.y]}function r(n){S.k=Math.max(E[0],Math.min(E[1],n))}function u(n,t){t=e(t),S.x+=n[0]-t[0],S.y+=n[1]-t[1]}function i(){M&&M.domain(y.range().map(function(n){return(n-S.x)/S.k}).map(y.invert)),w&&w.domain(b.range().map(function(n){return(n-S.y)/S.k}).map(b.invert))}function o(n){n({type:"zoomstart"})}function a(n){i(),n({type:"zoom",scale:S.k,translate:[S.x,S.y]})}function c(n){n({type:"zoomend"})}function s(){function n(){l=1,u(Ko.mouse(r),g),a(s)}function e(){f.on(N,ra===r?h:null).on(A,null),p(l&&Ko.event.target===i),c(s)}var r=this,i=Ko.event.target,s=z.of(r,arguments),l=0,f=Ko.select(ra).on(N,n).on(A,e),g=t(Ko.mouse(r)),p=Z();F.call(r),o(s)}function l(){function n(){var n=Ko.touches(g);return h=S.k,n.forEach(function(n){n.identifier in v&&(v[n.identifier]=t(n))}),n}function e(){for(var t=Ko.event.changedTouches,e=0,i=t.length;i>e;++e)v[t[e].identifier]=null;var o=n(),c=Date.now();if(1===o.length){if(500>c-m){var s=o[0],l=v[s.identifier];r(2*S.k),u(s,l),x(),a(p)}m=c}else if(o.length>1){var s=o[0],f=o[1],h=s[0]-f[0],g=s[1]-f[1];d=h*h+g*g}}function i(){for(var n,t,e,i,o=Ko.touches(g),c=0,s=o.length;s>c;++c,i=null)if(e=o[c],i=v[e.identifier]){if(t)break;n=e,t=i}if(i){var l=(l=e[0]-n[0])*l+(l=e[1]-n[1])*l,f=d&&Math.sqrt(l/d);n=[(n[0]+e[0])/2,(n[1]+e[1])/2],t=[(t[0]+i[0])/2,(t[1]+i[1])/2],r(f*h)}m=null,u(n,t),a(p)}function f(){if(Ko.event.touches.length){for(var t=Ko.event.changedTouches,e=0,r=t.length;r>e;++e)delete v[t[e].identifier];for(var u in v)return void n()}b.on(y,null),w.on(C,s).on(q,l),k(),c(p)}var h,g=this,p=z.of(g,arguments),v={},d=0,y=".zoom-"+Ko.event.changedTouches[0].identifier,M="touchmove"+y,_="touchend"+y,b=Ko.select(Ko.event.target).on(M,i).on(_,f),w=Ko.select(g).on(C,null).on(q,e),k=Z();F.call(g),e(),o(p)}function f(){var n=z.of(this,arguments);d?clearTimeout(d):(F.call(this),o(n)),d=setTimeout(function(){d=null,c(n)},50),x();var e=v||Ko.mouse(this);p||(p=t(e)),r(Math.pow(2,.002*Ha())*S.k),u(e,p),a(n)}function h(){p=null}function g(){var n=z.of(this,arguments),e=Ko.mouse(this),i=t(e),s=Math.log(S.k)/Math.LN2;o(n),r(Math.pow(2,Ko.event.shiftKey?Math.ceil(s)-1:Math.floor(s)+1)),u(e,i),a(n),c(n)}var p,v,d,m,y,M,b,w,S={x:0,y:0,k:1},k=[960,500],E=Fa,C="mousedown.zoom",N="mousemove.zoom",A="mouseup.zoom",q="touchstart.zoom",z=_(n,"zoomstart","zoom","zoomend");return n.event=function(n){n.each(function(){var n=z.of(this,arguments),t=S;qs?Ko.select(this).transition().each("start.zoom",function(){S=this.__chart__||{x:0,y:0,k:1},o(n)}).tween("zoom:zoom",function(){var e=k[0],r=k[1],u=e/2,i=r/2,o=Ko.interpolateZoom([(u-S.x)/S.k,(i-S.y)/S.k,e/S.k],[(u-t.x)/t.k,(i-t.y)/t.k,e/t.k]);return function(t){var r=o(t),c=e/r[2];this.__chart__=S={x:u-r[0]*c,y:i-r[1]*c,k:c},a(n)}}).each("end.zoom",function(){c(n)}):(this.__chart__=S,o(n),a(n),c(n))})},n.translate=function(t){return arguments.length?(S={x:+t[0],y:+t[1],k:S.k},i(),n):[S.x,S.y]},n.scale=function(t){return arguments.length?(S={x:S.x,y:S.y,k:+t},i(),n):S.k},n.scaleExtent=function(t){return arguments.length?(E=null==t?Fa:[+t[0],+t[1]],n):E},n.center=function(t){return arguments.length?(v=t&&[+t[0],+t[1]],n):v},n.size=function(t){return arguments.length?(k=t&&[+t[0],+t[1]],n):k},n.x=function(t){return arguments.length?(M=t,y=t.copy(),S={x:0,y:0,k:1},n):M},n.y=function(t){return arguments.length?(w=t,b=t.copy(),S={x:0,y:0,k:1},n):w},Ko.rebind(n,z,"on")};var Ha,Fa=[0,1/0],Oa="onwheel"in ta?(Ha=function(){return-Ko.event.deltaY*(Ko.event.deltaMode?120:1)},"wheel"):"onmousewheel"in ta?(Ha=function(){return Ko.event.wheelDelta},"mousewheel"):(Ha=function(){return-Ko.event.detail},"MozMousePixelScroll");rt.prototype.toString=function(){return this.rgb()+""},Ko.hsl=function(n,t,e){return 1===arguments.length?n instanceof it?ut(n.h,n.s,n.l):bt(""+n,wt,ut):ut(+n,+t,+e)};var Ia=it.prototype=new rt;Ia.brighter=function(n){return n=Math.pow(.7,arguments.length?n:1),ut(this.h,this.s,this.l/n)},Ia.darker=function(n){return n=Math.pow(.7,arguments.length?n:1),ut(this.h,this.s,n*this.l)},Ia.rgb=function(){return ot(this.h,this.s,this.l)},Ko.hcl=function(n,t,e){return 1===arguments.length?n instanceof ct?at(n.h,n.c,n.l):n instanceof ft?gt(n.l,n.a,n.b):gt((n=St((n=Ko.rgb(n)).r,n.g,n.b)).l,n.a,n.b):at(+n,+t,+e)};var Ya=ct.prototype=new rt;Ya.brighter=function(n){return at(this.h,this.c,Math.min(100,this.l+Za*(arguments.length?n:1)))},Ya.darker=function(n){return at(this.h,this.c,Math.max(0,this.l-Za*(arguments.length?n:1)))},Ya.rgb=function(){return st(this.h,this.c,this.l).rgb()},Ko.lab=function(n,t,e){return 1===arguments.length?n instanceof ft?lt(n.l,n.a,n.b):n instanceof ct?st(n.l,n.c,n.h):St((n=Ko.rgb(n)).r,n.g,n.b):lt(+n,+t,+e)};var Za=18,Va=.95047,$a=1,Xa=1.08883,Ba=ft.prototype=new rt;Ba.brighter=function(n){return lt(Math.min(100,this.l+Za*(arguments.length?n:1)),this.a,this.b)},Ba.darker=function(n){return lt(Math.max(0,this.l-Za*(arguments.length?n:1)),this.a,this.b)},Ba.rgb=function(){return ht(this.l,this.a,this.b)},Ko.rgb=function(n,t,e){return 1===arguments.length?n instanceof Mt?xt(n.r,n.g,n.b):bt(""+n,xt,ot):xt(~~n,~~t,~~e)};var Wa=Mt.prototype=new rt;Wa.brighter=function(n){n=Math.pow(.7,arguments.length?n:1);var t=this.r,e=this.g,r=this.b,u=30;return t||e||r?(t&&u>t&&(t=u),e&&u>e&&(e=u),r&&u>r&&(r=u),xt(Math.min(255,~~(t/n)),Math.min(255,~~(e/n)),Math.min(255,~~(r/n)))):xt(u,u,u)},Wa.darker=function(n){return n=Math.pow(.7,arguments.length?n:1),xt(~~(n*this.r),~~(n*this.g),~~(n*this.b))},Wa.hsl=function(){return wt(this.r,this.g,this.b)},Wa.toString=function(){return"#"+_t(this.r)+_t(this.g)+_t(this.b)};var Ja=Ko.map({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,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});Ja.forEach(function(n,t){Ja.set(n,mt(t))}),Ko.functor=Ct,Ko.xhr=At(Nt),Ko.dsv=function(n,t){function e(n,e,i){3>arguments.length&&(i=e,e=null);var o=qt(n,t,null==e?r:u(e),i);return o.row=function(n){return arguments.length?o.response(null==(e=n)?r:u(n)):e},o}function r(n){return e.parse(n.responseText)}function u(n){return function(t){return e.parse(t.responseText,n)}}function i(t){return t.map(o).join(n)}function o(n){return a.test(n)?'"'+n.replace(/\"/g,'""')+'"':n}var a=RegExp('["'+n+"\n]"),c=n.charCodeAt(0);return e.parse=function(n,t){var r;return e.parseRows(n,function(n,e){if(r)return r(n,e-1);var u=Function("d","return {"+n.map(function(n,t){return JSON.stringify(n)+": d["+t+"]"}).join(",")+"}");r=t?function(n,e){return t(u(n),e)}:u})},e.parseRows=function(n,t){function e(){if(l>=s)return o;if(u)return u=!1,i;var t=l;if(34===n.charCodeAt(t)){for(var e=t;s>e++;)if(34===n.charCodeAt(e)){if(34!==n.charCodeAt(e+1))break;++e}l=e+2;var r=n.charCodeAt(e+1);return 13===r?(u=!0,10===n.charCodeAt(e+2)&&++l):10===r&&(u=!0),n.substring(t+1,e).replace(/""/g,'"')}for(;s>l;){var r=n.charCodeAt(l++),a=1;if(10===r)u=!0;else if(13===r)u=!0,10===n.charCodeAt(l)&&(++l,++a);else if(r!==c)continue;return n.substring(t,l-a)}return n.substring(t)}for(var r,u,i={},o={},a=[],s=n.length,l=0,f=0;(r=e())!==o;){for(var h=[];r!==i&&r!==o;)h.push(r),r=e();(!t||(h=t(h,f++)))&&a.push(h)}return a},e.format=function(t){if(Array.isArray(t[0]))return e.formatRows(t);var r=new g,u=[];return t.forEach(function(n){for(var t in n)r.has(t)||u.push(r.add(t))}),[u.map(o).join(n)].concat(t.map(function(t){return u.map(function(n){return o(t[n])}).join(n)})).join("\n")},e.formatRows=function(n){return n.map(i).join("\n")},e},Ko.csv=Ko.dsv(",","text/csv"),Ko.tsv=Ko.dsv(" ","text/tab-separated-values"),Ko.touch=function(n,t,e){if(3>arguments.length&&(e=t,t=M().changedTouches),t)for(var r,u=0,i=t.length;i>u;++u)if((r=t[u]).identifier===e)return V(n,r)};var Ga,Ka,Qa,nc,tc,ec=ra[v(ra,"requestAnimationFrame")]||function(n){setTimeout(n,17)};Ko.timer=function(n,t,e){var r=arguments.length;2>r&&(t=0),3>r&&(e=Date.now());var u=e+t,i={c:n,t:u,f:!1,n:null};Ka?Ka.n=i:Ga=i,Ka=i,Qa||(nc=clearTimeout(nc),Qa=1,ec(Lt))},Ko.timer.flush=function(){Tt(),Rt()},Ko.round=function(n,t){return t?Math.round(n*(t=Math.pow(10,t)))/t:Math.round(n)};var rc=["y","z","a","f","p","n","µ","m","","k","M","G","T","P","E","Z","Y"].map(Pt);Ko.formatPrefix=function(n,t){var e=0;return n&&(0>n&&(n*=-1),t&&(n=Ko.round(n,Dt(n,t))),e=1+Math.floor(1e-12+Math.log(n)/Math.LN10),e=Math.max(-24,Math.min(24,3*Math.floor((e-1)/3)))),rc[8+e/3]};var uc=/(?:([^{])?([<>=^]))?([+\- ])?([$#])?(0)?(\d+)?(,)?(\.-?\d+)?([a-z%])?/i,ic=Ko.map({b:function(n){return n.toString(2)},c:function(n){return String.fromCharCode(n)},o:function(n){return n.toString(8)},x:function(n){return n.toString(16)},X:function(n){return n.toString(16).toUpperCase()},g:function(n,t){return n.toPrecision(t)},e:function(n,t){return n.toExponential(t)},f:function(n,t){return n.toFixed(t)},r:function(n,t){return(n=Ko.round(n,Dt(n,t))).toFixed(Math.max(0,Math.min(20,Dt(n*(1+1e-15),t))))}}),oc=Ko.time={},ac=Date;Ht.prototype={getDate:function(){return this._.getUTCDate()},getDay:function(){return this._.getUTCDay()},getFullYear:function(){return this._.getUTCFullYear()},getHours:function(){return this._.getUTCHours()},getMilliseconds:function(){return this._.getUTCMilliseconds()},getMinutes:function(){return this._.getUTCMinutes()},getMonth:function(){return this._.getUTCMonth()},getSeconds:function(){return this._.getUTCSeconds()},getTime:function(){return this._.getTime()},getTimezoneOffset:function(){return 0},valueOf:function(){return this._.valueOf()},setDate:function(){cc.setUTCDate.apply(this._,arguments)},setDay:function(){cc.setUTCDay.apply(this._,arguments)},setFullYear:function(){cc.setUTCFullYear.apply(this._,arguments)},setHours:function(){cc.setUTCHours.apply(this._,arguments)},setMilliseconds:function(){cc.setUTCMilliseconds.apply(this._,arguments)},setMinutes:function(){cc.setUTCMinutes.apply(this._,arguments)},setMonth:function(){cc.setUTCMonth.apply(this._,arguments)},setSeconds:function(){cc.setUTCSeconds.apply(this._,arguments)},setTime:function(){cc.setTime.apply(this._,arguments)}};var cc=Date.prototype;oc.year=Ft(function(n){return n=oc.day(n),n.setMonth(0,1),n},function(n,t){n.setFullYear(n.getFullYear()+t)},function(n){return n.getFullYear()}),oc.years=oc.year.range,oc.years.utc=oc.year.utc.range,oc.day=Ft(function(n){var t=new ac(2e3,0);return t.setFullYear(n.getFullYear(),n.getMonth(),n.getDate()),t},function(n,t){n.setDate(n.getDate()+t)},function(n){return n.getDate()-1}),oc.days=oc.day.range,oc.days.utc=oc.day.utc.range,oc.dayOfYear=function(n){var t=oc.year(n);return Math.floor((n-t-6e4*(n.getTimezoneOffset()-t.getTimezoneOffset()))/864e5)},["sunday","monday","tuesday","wednesday","thursday","friday","saturday"].forEach(function(n,t){t=7-t;var e=oc[n]=Ft(function(n){return(n=oc.day(n)).setDate(n.getDate()-(n.getDay()+t)%7),n},function(n,t){n.setDate(n.getDate()+7*Math.floor(t))},function(n){var e=oc.year(n).getDay();return Math.floor((oc.dayOfYear(n)+(e+t)%7)/7)-(e!==t)});oc[n+"s"]=e.range,oc[n+"s"].utc=e.utc.range,oc[n+"OfYear"]=function(n){var e=oc.year(n).getDay();return Math.floor((oc.dayOfYear(n)+(e+t)%7)/7)}}),oc.week=oc.sunday,oc.weeks=oc.sunday.range,oc.weeks.utc=oc.sunday.utc.range,oc.weekOfYear=oc.sundayOfYear;var sc={"-":"",_:" ",0:"0"},lc=/^\s*\d+/,fc=/^%/;Ko.locale=function(n){return{numberFormat:Ut(n),timeFormat:It(n)}};var hc=Ko.locale({decimal:".",thousands:",",grouping:[3],currency:["$",""],dateTime:"%a %b %e %X %Y",date:"%m/%d/%Y",time:"%H:%M:%S",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"]});Ko.format=hc.numberFormat,Ko.geo={},se.prototype={s:0,t:0,add:function(n){le(n,this.t,gc),le(gc.s,this.s,this),this.s?this.t+=gc.t:this.s=gc.t},reset:function(){this.s=this.t=0},valueOf:function(){return this.s}};var gc=new se;Ko.geo.stream=function(n,t){n&&pc.hasOwnProperty(n.type)?pc[n.type](n,t):fe(n,t)};var pc={Feature:function(n,t){fe(n.geometry,t)},FeatureCollection:function(n,t){for(var e=n.features,r=-1,u=e.length;u>++r;)fe(e[r].geometry,t)}},vc={Sphere:function(n,t){t.sphere()},Point:function(n,t){n=n.coordinates,t.point(n[0],n[1],n[2])},MultiPoint:function(n,t){for(var e=n.coordinates,r=-1,u=e.length;u>++r;)n=e[r],t.point(n[0],n[1],n[2])},LineString:function(n,t){he(n.coordinates,t,0)},MultiLineString:function(n,t){for(var e=n.coordinates,r=-1,u=e.length;u>++r;)he(e[r],t,0)},Polygon:function(n,t){ge(n.coordinates,t)},MultiPolygon:function(n,t){for(var e=n.coordinates,r=-1,u=e.length;u>++r;)ge(e[r],t)},GeometryCollection:function(n,t){for(var e=n.geometries,r=-1,u=e.length;u>++r;)fe(e[r],t)}};Ko.geo.area=function(n){return dc=0,Ko.geo.stream(n,yc),dc};var dc,mc=new se,yc={sphere:function(){dc+=4*Aa},point:d,lineStart:d,lineEnd:d,polygonStart:function(){mc.reset(),yc.lineStart=pe},polygonEnd:function(){var n=2*mc;dc+=0>n?4*Aa+n:n,yc.lineStart=yc.lineEnd=yc.point=d}};Ko.geo.bounds=function(){function n(n,t){x.push(M=[l=n,h=n]),f>t&&(f=t),t>g&&(g=t)}function t(t,e){var r=ve([t*Ra,e*Ra]);if(m){var u=me(m,r),i=[u[1],-u[0],0],o=me(i,u);Me(o),o=_e(o);var c=t-p,s=c>0?1:-1,v=o[0]*Da*s,d=ha(c)>180;if(d^(v>s*p&&s*t>v)){var y=o[1]*Da;y>g&&(g=y)}else if(v=(v+360)%360-180,d^(v>s*p&&s*t>v)){var y=-o[1]*Da;f>y&&(f=y)}else f>e&&(f=e),e>g&&(g=e);d?p>t?a(l,t)>a(l,h)&&(h=t):a(t,h)>a(l,h)&&(l=t):h>=l?(l>t&&(l=t),t>h&&(h=t)):t>p?a(l,t)>a(l,h)&&(h=t):a(t,h)>a(l,h)&&(l=t) | |
}else n(t,e);m=r,p=t}function e(){_.point=t}function r(){M[0]=l,M[1]=h,_.point=n,m=null}function u(n,e){if(m){var r=n-p;y+=ha(r)>180?r+(r>0?360:-360):r}else v=n,d=e;yc.point(n,e),t(n,e)}function i(){yc.lineStart()}function o(){u(v,d),yc.lineEnd(),ha(y)>La&&(l=-(h=180)),M[0]=l,M[1]=h,m=null}function a(n,t){return 0>(t-=n)?t+360:t}function c(n,t){return n[0]-t[0]}function s(n,t){return t[0]<=t[1]?n>=t[0]&&t[1]>=n:t[0]>n||n>t[1]}var l,f,h,g,p,v,d,m,y,x,M,_={point:n,lineStart:e,lineEnd:r,polygonStart:function(){_.point=u,_.lineStart=i,_.lineEnd=o,y=0,yc.polygonStart()},polygonEnd:function(){yc.polygonEnd(),_.point=n,_.lineStart=e,_.lineEnd=r,0>mc?(l=-(h=180),f=-(g=90)):y>La?g=90:-La>y&&(f=-90),M[0]=l,M[1]=h}};return function(n){g=h=-(l=f=1/0),x=[],Ko.geo.stream(n,_);var t=x.length;if(t){x.sort(c);for(var e,r=1,u=x[0],i=[u];t>r;++r)e=x[r],s(e[0],u)||s(e[1],u)?(a(u[0],e[1])>a(u[0],u[1])&&(u[1]=e[1]),a(e[0],u[1])>a(u[0],u[1])&&(u[0]=e[0])):i.push(u=e);for(var o,e,p=-1/0,t=i.length-1,r=0,u=i[t];t>=r;u=e,++r)e=i[r],(o=a(u[1],e[0]))>p&&(p=o,l=e[0],h=u[1])}return x=M=null,1/0===l||1/0===f?[[0/0,0/0],[0/0,0/0]]:[[l,f],[h,g]]}}(),Ko.geo.centroid=function(n){xc=Mc=_c=bc=wc=Sc=kc=Ec=Cc=Nc=Ac=0,Ko.geo.stream(n,qc);var t=Cc,e=Nc,r=Ac,u=t*t+e*e+r*r;return Ta>u&&(t=Sc,e=kc,r=Ec,La>Mc&&(t=_c,e=bc,r=wc),u=t*t+e*e+r*r,Ta>u)?[0/0,0/0]:[Math.atan2(e,t)*Da,K(r/Math.sqrt(u))*Da]};var xc,Mc,_c,bc,wc,Sc,kc,Ec,Cc,Nc,Ac,qc={sphere:d,point:we,lineStart:ke,lineEnd:Ee,polygonStart:function(){qc.lineStart=Ce},polygonEnd:function(){qc.lineStart=ke}},zc=Le(Ne,Ue,He,[-Aa,-Aa/2]),Lc=1e9;Ko.geo.clipExtent=function(){var n,t,e,r,u,i,o={stream:function(n){return u&&(u.valid=!1),u=i(n),u.valid=!0,u},extent:function(a){return arguments.length?(i=Ie(n=+a[0][0],t=+a[0][1],e=+a[1][0],r=+a[1][1]),u&&(u.valid=!1,u=null),o):[[n,t],[e,r]]}};return o.extent([[0,0],[960,500]])},(Ko.geo.conicEqualArea=function(){return Ze(Ve)}).raw=Ve,Ko.geo.albers=function(){return Ko.geo.conicEqualArea().rotate([96,0]).center([-.6,38.7]).parallels([29.5,45.5]).scale(1070)},Ko.geo.albersUsa=function(){function n(n){var i=n[0],o=n[1];return t=null,e(i,o),t||(r(i,o),t)||u(i,o),t}var t,e,r,u,i=Ko.geo.albers(),o=Ko.geo.conicEqualArea().rotate([154,0]).center([-2,58.5]).parallels([55,65]),a=Ko.geo.conicEqualArea().rotate([157,0]).center([-3,19.9]).parallels([8,18]),c={point:function(n,e){t=[n,e]}};return n.invert=function(n){var t=i.scale(),e=i.translate(),r=(n[0]-e[0])/t,u=(n[1]-e[1])/t;return(u>=.12&&.234>u&&r>=-.425&&-.214>r?o:u>=.166&&.234>u&&r>=-.214&&-.115>r?a:i).invert(n)},n.stream=function(n){var t=i.stream(n),e=o.stream(n),r=a.stream(n);return{point:function(n,u){t.point(n,u),e.point(n,u),r.point(n,u)},sphere:function(){t.sphere(),e.sphere(),r.sphere()},lineStart:function(){t.lineStart(),e.lineStart(),r.lineStart()},lineEnd:function(){t.lineEnd(),e.lineEnd(),r.lineEnd()},polygonStart:function(){t.polygonStart(),e.polygonStart(),r.polygonStart()},polygonEnd:function(){t.polygonEnd(),e.polygonEnd(),r.polygonEnd()}}},n.precision=function(t){return arguments.length?(i.precision(t),o.precision(t),a.precision(t),n):i.precision()},n.scale=function(t){return arguments.length?(i.scale(t),o.scale(.35*t),a.scale(t),n.translate(i.translate())):i.scale()},n.translate=function(t){if(!arguments.length)return i.translate();var s=i.scale(),l=+t[0],f=+t[1];return e=i.translate(t).clipExtent([[l-.455*s,f-.238*s],[l+.455*s,f+.238*s]]).stream(c).point,r=o.translate([l-.307*s,f+.201*s]).clipExtent([[l-.425*s+La,f+.12*s+La],[l-.214*s-La,f+.234*s-La]]).stream(c).point,u=a.translate([l-.205*s,f+.212*s]).clipExtent([[l-.214*s+La,f+.166*s+La],[l-.115*s-La,f+.234*s-La]]).stream(c).point,n},n.scale(1070)};var Tc,Rc,Dc,Pc,Uc,jc,Hc={point:d,lineStart:d,lineEnd:d,polygonStart:function(){Rc=0,Hc.lineStart=$e},polygonEnd:function(){Hc.lineStart=Hc.lineEnd=Hc.point=d,Tc+=ha(Rc/2)}},Fc={point:Xe,lineStart:d,lineEnd:d,polygonStart:d,polygonEnd:d},Oc={point:Je,lineStart:Ge,lineEnd:Ke,polygonStart:function(){Oc.lineStart=Qe},polygonEnd:function(){Oc.point=Je,Oc.lineStart=Ge,Oc.lineEnd=Ke}};Ko.geo.path=function(){function n(n){return n&&("function"==typeof a&&i.pointRadius(+a.apply(this,arguments)),o&&o.valid||(o=u(i)),Ko.geo.stream(n,o)),i.result()}function t(){return o=null,n}var e,r,u,i,o,a=4.5;return n.area=function(n){return Tc=0,Ko.geo.stream(n,u(Hc)),Tc},n.centroid=function(n){return _c=bc=wc=Sc=kc=Ec=Cc=Nc=Ac=0,Ko.geo.stream(n,u(Oc)),Ac?[Cc/Ac,Nc/Ac]:Ec?[Sc/Ec,kc/Ec]:wc?[_c/wc,bc/wc]:[0/0,0/0]},n.bounds=function(n){return Uc=jc=-(Dc=Pc=1/0),Ko.geo.stream(n,u(Fc)),[[Dc,Pc],[Uc,jc]]},n.projection=function(n){return arguments.length?(u=(e=n)?n.stream||er(n):Nt,t()):e},n.context=function(n){return arguments.length?(i=null==(r=n)?new Be:new nr(n),"function"!=typeof a&&i.pointRadius(a),t()):r},n.pointRadius=function(t){return arguments.length?(a="function"==typeof t?t:(i.pointRadius(+t),+t),n):a},n.projection(Ko.geo.albersUsa()).context(null)},Ko.geo.transform=function(n){return{stream:function(t){var e=new rr(t);for(var r in n)e[r]=n[r];return e}}},rr.prototype={point:function(n,t){this.stream.point(n,t)},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()}},Ko.geo.projection=ir,Ko.geo.projectionMutator=or,(Ko.geo.equirectangular=function(){return ir(cr)}).raw=cr.invert=cr,Ko.geo.rotation=function(n){function t(t){return t=n(t[0]*Ra,t[1]*Ra),t[0]*=Da,t[1]*=Da,t}return n=lr(n[0]%360*Ra,n[1]*Ra,n.length>2?n[2]*Ra:0),t.invert=function(t){return t=n.invert(t[0]*Ra,t[1]*Ra),t[0]*=Da,t[1]*=Da,t},t},sr.invert=cr,Ko.geo.circle=function(){function n(){var n="function"==typeof r?r.apply(this,arguments):r,t=lr(-n[0]*Ra,-n[1]*Ra,0).invert,u=[];return e(null,null,1,{point:function(n,e){u.push(n=t(n,e)),n[0]*=Da,n[1]*=Da}}),{type:"Polygon",coordinates:[u]}}var t,e,r=[0,0],u=6;return n.origin=function(t){return arguments.length?(r=t,n):r},n.angle=function(r){return arguments.length?(e=pr((t=+r)*Ra,u*Ra),n):t},n.precision=function(r){return arguments.length?(e=pr(t*Ra,(u=+r)*Ra),n):u},n.angle(90)},Ko.geo.distance=function(n,t){var e,r=(t[0]-n[0])*Ra,u=n[1]*Ra,i=t[1]*Ra,o=Math.sin(r),a=Math.cos(r),c=Math.sin(u),s=Math.cos(u),l=Math.sin(i),f=Math.cos(i);return Math.atan2(Math.sqrt((e=f*o)*e+(e=s*l-c*f*a)*e),c*l+s*f*a)},Ko.geo.graticule=function(){function n(){return{type:"MultiLineString",coordinates:t()}}function t(){return Ko.range(Math.ceil(i/d)*d,u,d).map(h).concat(Ko.range(Math.ceil(s/m)*m,c,m).map(g)).concat(Ko.range(Math.ceil(r/p)*p,e,p).filter(function(n){return ha(n%d)>La}).map(l)).concat(Ko.range(Math.ceil(a/v)*v,o,v).filter(function(n){return ha(n%m)>La}).map(f))}var e,r,u,i,o,a,c,s,l,f,h,g,p=10,v=p,d=90,m=360,y=2.5;return n.lines=function(){return t().map(function(n){return{type:"LineString",coordinates:n}})},n.outline=function(){return{type:"Polygon",coordinates:[h(i).concat(g(c).slice(1),h(u).reverse().slice(1),g(s).reverse().slice(1))]}},n.extent=function(t){return arguments.length?n.majorExtent(t).minorExtent(t):n.minorExtent()},n.majorExtent=function(t){return arguments.length?(i=+t[0][0],u=+t[1][0],s=+t[0][1],c=+t[1][1],i>u&&(t=i,i=u,u=t),s>c&&(t=s,s=c,c=t),n.precision(y)):[[i,s],[u,c]]},n.minorExtent=function(t){return arguments.length?(r=+t[0][0],e=+t[1][0],a=+t[0][1],o=+t[1][1],r>e&&(t=r,r=e,e=t),a>o&&(t=a,a=o,o=t),n.precision(y)):[[r,a],[e,o]]},n.step=function(t){return arguments.length?n.majorStep(t).minorStep(t):n.minorStep()},n.majorStep=function(t){return arguments.length?(d=+t[0],m=+t[1],n):[d,m]},n.minorStep=function(t){return arguments.length?(p=+t[0],v=+t[1],n):[p,v]},n.precision=function(t){return arguments.length?(y=+t,l=dr(a,o,90),f=mr(r,e,y),h=dr(s,c,90),g=mr(i,u,y),n):y},n.majorExtent([[-180,-90+La],[180,90-La]]).minorExtent([[-180,-80-La],[180,80+La]])},Ko.geo.greatArc=function(){function n(){return{type:"LineString",coordinates:[t||r.apply(this,arguments),e||u.apply(this,arguments)]}}var t,e,r=yr,u=xr;return n.distance=function(){return Ko.geo.distance(t||r.apply(this,arguments),e||u.apply(this,arguments))},n.source=function(e){return arguments.length?(r=e,t="function"==typeof e?null:e,n):r},n.target=function(t){return arguments.length?(u=t,e="function"==typeof t?null:t,n):u},n.precision=function(){return arguments.length?n:0},n},Ko.geo.interpolate=function(n,t){return Mr(n[0]*Ra,n[1]*Ra,t[0]*Ra,t[1]*Ra)},Ko.geo.length=function(n){return Ic=0,Ko.geo.stream(n,Yc),Ic};var Ic,Yc={sphere:d,point:d,lineStart:_r,lineEnd:d,polygonStart:d,polygonEnd:d},Zc=br(function(n){return Math.sqrt(2/(1+n))},function(n){return 2*Math.asin(n/2)});(Ko.geo.azimuthalEqualArea=function(){return ir(Zc)}).raw=Zc;var Vc=br(function(n){var t=Math.acos(n);return t&&t/Math.sin(t)},Nt);(Ko.geo.azimuthalEquidistant=function(){return ir(Vc)}).raw=Vc,(Ko.geo.conicConformal=function(){return Ze(wr)}).raw=wr,(Ko.geo.conicEquidistant=function(){return Ze(Sr)}).raw=Sr;var $c=br(function(n){return 1/n},Math.atan);(Ko.geo.gnomonic=function(){return ir($c)}).raw=$c,kr.invert=function(n,t){return[n,2*Math.atan(Math.exp(t))-za]},(Ko.geo.mercator=function(){return Er(kr)}).raw=kr;var Xc=br(function(){return 1},Math.asin);(Ko.geo.orthographic=function(){return ir(Xc)}).raw=Xc;var Bc=br(function(n){return 1/(1+n)},function(n){return 2*Math.atan(n)});(Ko.geo.stereographic=function(){return ir(Bc)}).raw=Bc,Cr.invert=function(n,t){return[-t,2*Math.atan(Math.exp(n))-za]},(Ko.geo.transverseMercator=function(){var n=Er(Cr),t=n.center,e=n.rotate;return n.center=function(n){return n?t([-n[1],n[0]]):(n=t(),[-n[1],n[0]])},n.rotate=function(n){return n?e([n[0],n[1],n.length>2?n[2]+90:90]):(n=e(),[n[0],n[1],n[2]-90])},n.rotate([0,0])}).raw=Cr,Ko.geom={},Ko.geom.hull=function(n){function t(n){if(3>n.length)return[];var t,u=Ct(e),i=Ct(r),o=n.length,a=[],c=[];for(t=0;o>t;t++)a.push([+u.call(this,n[t],t),+i.call(this,n[t],t),t]);for(a.sort(zr),t=0;o>t;t++)c.push([a[t][0],-a[t][1]]);var s=qr(a),l=qr(c),f=l[0]===s[0],h=l[l.length-1]===s[s.length-1],g=[];for(t=s.length-1;t>=0;--t)g.push(n[a[s[t]][2]]);for(t=+f;l.length-h>t;++t)g.push(n[a[l[t]][2]]);return g}var e=Nr,r=Ar;return arguments.length?t(n):(t.x=function(n){return arguments.length?(e=n,t):e},t.y=function(n){return arguments.length?(r=n,t):r},t)},Ko.geom.polygon=function(n){return ma(n,Wc),n};var Wc=Ko.geom.polygon.prototype=[];Wc.area=function(){for(var n,t=-1,e=this.length,r=this[e-1],u=0;e>++t;)n=r,r=this[t],u+=n[1]*r[0]-n[0]*r[1];return.5*u},Wc.centroid=function(n){var t,e,r=-1,u=this.length,i=0,o=0,a=this[u-1];for(arguments.length||(n=-1/(6*this.area()));u>++r;)t=a,a=this[r],e=t[0]*a[1]-a[0]*t[1],i+=(t[0]+a[0])*e,o+=(t[1]+a[1])*e;return[i*n,o*n]},Wc.clip=function(n){for(var t,e,r,u,i,o,a=Rr(n),c=-1,s=this.length-Rr(this),l=this[s-1];s>++c;){for(t=n.slice(),n.length=0,u=this[c],i=t[(r=t.length-a)-1],e=-1;r>++e;)o=t[e],Lr(o,l,u)?(Lr(i,l,u)||n.push(Tr(i,o,l,u)),n.push(o)):Lr(i,l,u)&&n.push(Tr(i,o,l,u)),i=o;a&&n.push(n[0]),l=u}return n};var Jc,Gc,Kc,Qc,ns,ts=[],es=[];Ir.prototype.prepare=function(){for(var n,t=this.edges,e=t.length;e--;)n=t[e].edge,n.b&&n.a||t.splice(e,1);return t.sort(Zr),t.length},nu.prototype={start:function(){return this.edge.l===this.site?this.edge.a:this.edge.b},end:function(){return this.edge.l===this.site?this.edge.b:this.edge.a}},tu.prototype={insert:function(n,t){var e,r,u;if(n){if(t.P=n,t.N=n.N,n.N&&(n.N.P=t),n.N=t,n.R){for(n=n.R;n.L;)n=n.L;n.L=t}else n.R=t;e=n}else this._?(n=iu(this._),t.P=null,t.N=n,n.P=n.L=t,e=n):(t.P=t.N=null,this._=t,e=null);for(t.L=t.R=null,t.U=e,t.C=!0,n=t;e&&e.C;)r=e.U,e===r.L?(u=r.R,u&&u.C?(e.C=u.C=!1,r.C=!0,n=r):(n===e.R&&(ru(this,e),n=e,e=n.U),e.C=!1,r.C=!0,uu(this,r))):(u=r.L,u&&u.C?(e.C=u.C=!1,r.C=!0,n=r):(n===e.L&&(uu(this,e),n=e,e=n.U),e.C=!1,r.C=!0,ru(this,r))),e=n.U;this._.C=!1},remove:function(n){n.N&&(n.N.P=n.P),n.P&&(n.P.N=n.N),n.N=n.P=null;var t,e,r,u=n.U,i=n.L,o=n.R;if(e=i?o?iu(o):i:o,u?u.L===n?u.L=e:u.R=e:this._=e,i&&o?(r=e.C,e.C=n.C,e.L=i,i.U=e,e!==o?(u=e.U,e.U=n.U,n=e.R,u.L=n,e.R=o,o.U=e):(e.U=u,u=e,n=e.R)):(r=n.C,n=e),n&&(n.U=u),!r){if(n&&n.C)return n.C=!1,void 0;do{if(n===this._)break;if(n===u.L){if(t=u.R,t.C&&(t.C=!1,u.C=!0,ru(this,u),t=u.R),t.L&&t.L.C||t.R&&t.R.C){t.R&&t.R.C||(t.L.C=!1,t.C=!0,uu(this,t),t=u.R),t.C=u.C,u.C=t.R.C=!1,ru(this,u),n=this._;break}}else if(t=u.L,t.C&&(t.C=!1,u.C=!0,uu(this,u),t=u.L),t.L&&t.L.C||t.R&&t.R.C){t.L&&t.L.C||(t.R.C=!1,t.C=!0,ru(this,t),t=u.L),t.C=u.C,u.C=t.L.C=!1,uu(this,u),n=this._;break}t.C=!0,n=u,u=u.U}while(!n.C);n&&(n.C=!1)}}},Ko.geom.voronoi=function(n){function t(n){var t=Array(n.length),r=a[0][0],u=a[0][1],i=a[1][0],o=a[1][1];return ou(e(n),a).cells.forEach(function(e,a){var c=e.edges,s=e.site,l=t[a]=c.length?c.map(function(n){var t=n.start();return[t.x,t.y]}):s.x>=r&&i>=s.x&&s.y>=u&&o>=s.y?[[r,o],[i,o],[i,u],[r,u]]:[];l.point=n[a]}),t}function e(n){return n.map(function(n,t){return{x:Math.round(i(n,t)/La)*La,y:Math.round(o(n,t)/La)*La,i:t}})}var r=Nr,u=Ar,i=r,o=u,a=rs;return n?t(n):(t.links=function(n){return ou(e(n)).edges.filter(function(n){return n.l&&n.r}).map(function(t){return{source:n[t.l.i],target:n[t.r.i]}})},t.triangles=function(n){var t=[];return ou(e(n)).cells.forEach(function(e,r){for(var u,i,o=e.site,a=e.edges.sort(Zr),c=-1,s=a.length,l=a[s-1].edge,f=l.l===o?l.r:l.l;s>++c;)u=l,i=f,l=a[c].edge,f=l.l===o?l.r:l.l,i.i>r&&f.i>r&&0>cu(o,i,f)&&t.push([n[r],n[i.i],n[f.i]])}),t},t.x=function(n){return arguments.length?(i=Ct(r=n),t):r},t.y=function(n){return arguments.length?(o=Ct(u=n),t):u},t.clipExtent=function(n){return arguments.length?(a=null==n?rs:n,t):a===rs?null:a},t.size=function(n){return arguments.length?t.clipExtent(n&&[[0,0],n]):a===rs?null:a&&a[1]},t)};var rs=[[-1e6,-1e6],[1e6,1e6]];Ko.geom.delaunay=function(n){return Ko.geom.voronoi().triangles(n)},Ko.geom.quadtree=function(n,t,e,r,u){function i(n){function i(n,t,e,r,u,i,o,a){if(!isNaN(e)&&!isNaN(r))if(n.leaf){var c=n.x,l=n.y;if(null!=c)if(.01>ha(c-e)+ha(l-r))s(n,t,e,r,u,i,o,a);else{var f=n.point;n.x=n.y=n.point=null,s(n,f,c,l,u,i,o,a),s(n,t,e,r,u,i,o,a)}else n.x=e,n.y=r,n.point=t}else s(n,t,e,r,u,i,o,a)}function s(n,t,e,r,u,o,a,c){var s=.5*(u+a),l=.5*(o+c),f=e>=s,h=r>=l,g=(h<<1)+f;n.leaf=!1,n=n.nodes[g]||(n.nodes[g]=fu()),f?u=s:a=s,h?o=l:c=l,i(n,t,e,r,u,o,a,c)}var l,f,h,g,p,v,d,m,y,x=Ct(a),M=Ct(c);if(null!=t)v=t,d=e,m=r,y=u;else if(m=y=-(v=d=1/0),f=[],h=[],p=n.length,o)for(g=0;p>g;++g)l=n[g],v>l.x&&(v=l.x),d>l.y&&(d=l.y),l.x>m&&(m=l.x),l.y>y&&(y=l.y),f.push(l.x),h.push(l.y);else for(g=0;p>g;++g){var _=+x(l=n[g],g),b=+M(l,g);v>_&&(v=_),d>b&&(d=b),_>m&&(m=_),b>y&&(y=b),f.push(_),h.push(b)}var w=m-v,S=y-d;w>S?y=d+w:m=v+S;var k=fu();if(k.add=function(n){i(k,n,+x(n,++g),+M(n,g),v,d,m,y)},k.visit=function(n){hu(n,k,v,d,m,y)},g=-1,null==t){for(;p>++g;)i(k,n[g],f[g],h[g],v,d,m,y);--g}else n.forEach(k.add);return f=h=n=l=null,k}var o,a=Nr,c=Ar;return(o=arguments.length)?(a=su,c=lu,3===o&&(u=e,r=t,e=t=0),i(n)):(i.x=function(n){return arguments.length?(a=n,i):a},i.y=function(n){return arguments.length?(c=n,i):c},i.extent=function(n){return arguments.length?(null==n?t=e=r=u=null:(t=+n[0][0],e=+n[0][1],r=+n[1][0],u=+n[1][1]),i):null==t?null:[[t,e],[r,u]]},i.size=function(n){return arguments.length?(null==n?t=e=r=u=null:(t=e=0,r=+n[0],u=+n[1]),i):null==t?null:[r-t,u-e]},i)},Ko.interpolateRgb=gu,Ko.interpolateObject=pu,Ko.interpolateNumber=vu,Ko.interpolateString=du;var us=/[-+]?(?:\d+\.?\d*|\.?\d+)(?:[eE][-+]?\d+)?/g;Ko.interpolate=mu,Ko.interpolators=[function(n,t){var e=typeof t;return("string"===e?Ja.has(t)||/^(#|rgb\(|hsl\()/.test(t)?gu:du:t instanceof rt?gu:Array.isArray(t)?yu:"object"===e&&isNaN(t)?pu:vu)(n,t)}],Ko.interpolateArray=yu;var is=function(){return Nt},os=Ko.map({linear:is,poly:ku,quad:function(){return bu},cubic:function(){return wu},sin:function(){return Eu},exp:function(){return Cu},circle:function(){return Nu},elastic:Au,back:qu,bounce:function(){return zu}}),as=Ko.map({"in":Nt,out:Mu,"in-out":_u,"out-in":function(n){return _u(Mu(n))}});Ko.ease=function(n){var t=n.indexOf("-"),e=t>=0?n.substring(0,t):n,r=t>=0?n.substring(t+1):"in";return e=os.get(e)||is,r=as.get(r)||Nt,xu(r(e.apply(null,Qo.call(arguments,1))))},Ko.interpolateHcl=Lu,Ko.interpolateHsl=Tu,Ko.interpolateLab=Ru,Ko.interpolateRound=Du,Ko.transform=function(n){var t=ta.createElementNS(Ko.ns.prefix.svg,"g");return(Ko.transform=function(n){if(null!=n){t.setAttribute("transform",n);var e=t.transform.baseVal.consolidate()}return new Pu(e?e.matrix:cs)})(n)},Pu.prototype.toString=function(){return"translate("+this.translate+")rotate("+this.rotate+")skewX("+this.skew+")scale("+this.scale+")"};var cs={a:1,b:0,c:0,d:1,e:0,f:0};Ko.interpolateTransform=Fu,Ko.layout={},Ko.layout.bundle=function(){return function(n){for(var t=[],e=-1,r=n.length;r>++e;)t.push(Yu(n[e]));return t}},Ko.layout.chord=function(){function n(){var n,s,f,h,g,p={},v=[],d=Ko.range(i),m=[];for(e=[],r=[],n=0,h=-1;i>++h;){for(s=0,g=-1;i>++g;)s+=u[h][g];v.push(s),m.push(Ko.range(i)),n+=s}for(o&&d.sort(function(n,t){return o(v[n],v[t])}),a&&m.forEach(function(n,t){n.sort(function(n,e){return a(u[t][n],u[t][e])})}),n=(qa-l*i)/n,s=0,h=-1;i>++h;){for(f=s,g=-1;i>++g;){var y=d[h],x=m[y][g],M=u[y][x],_=s,b=s+=M*n;p[y+"-"+x]={index:y,subindex:x,startAngle:_,endAngle:b,value:M}}r[y]={index:y,startAngle:f,endAngle:s,value:(s-f)/n},s+=l}for(h=-1;i>++h;)for(g=h-1;i>++g;){var w=p[h+"-"+g],S=p[g+"-"+h];(w.value||S.value)&&e.push(w.value<S.value?{source:S,target:w}:{source:w,target:S})}c&&t()}function t(){e.sort(function(n,t){return c((n.source.value+n.target.value)/2,(t.source.value+t.target.value)/2)})}var e,r,u,i,o,a,c,s={},l=0;return s.matrix=function(n){return arguments.length?(i=(u=n)&&u.length,e=r=null,s):u},s.padding=function(n){return arguments.length?(l=n,e=r=null,s):l},s.sortGroups=function(n){return arguments.length?(o=n,e=r=null,s):o},s.sortSubgroups=function(n){return arguments.length?(a=n,e=null,s):a},s.sortChords=function(n){return arguments.length?(c=n,e&&t(),s):c},s.chords=function(){return e||n(),e},s.groups=function(){return r||n(),r},s},Ko.layout.force=function(){function n(n){return function(t,e,r,u){if(t.point!==n){var i=t.cx-n.x,o=t.cy-n.y,a=u-e,c=i*i+o*o;if(c>a*a/d){if(p>c){var s=t.charge/c;n.px-=i*s,n.py-=o*s}return!0}if(t.point&&c&&p>c){var s=t.pointCharge/c;n.px-=i*s,n.py-=o*s}}return!t.charge}}function t(n){n.px=Ko.event.x,n.py=Ko.event.y,a.resume()}var e,r,u,i,o,a={},c=Ko.dispatch("start","tick","end"),s=[1,1],l=.9,f=ss,h=ls,g=-30,p=fs,v=.1,d=.64,m=[],y=[];return a.tick=function(){if(.005>(r*=.99))return c.end({type:"end",alpha:r=0}),!0;var t,e,a,f,h,p,d,x,M,_=m.length,b=y.length;for(e=0;b>e;++e)a=y[e],f=a.source,h=a.target,x=h.x-f.x,M=h.y-f.y,(p=x*x+M*M)&&(p=r*i[e]*((p=Math.sqrt(p))-u[e])/p,x*=p,M*=p,h.x-=x*(d=f.weight/(h.weight+f.weight)),h.y-=M*d,f.x+=x*(d=1-d),f.y+=M*d);if((d=r*v)&&(x=s[0]/2,M=s[1]/2,e=-1,d))for(;_>++e;)a=m[e],a.x+=(x-a.x)*d,a.y+=(M-a.y)*d;if(g)for(Ju(t=Ko.geom.quadtree(m),r,o),e=-1;_>++e;)(a=m[e]).fixed||t.visit(n(a));for(e=-1;_>++e;)a=m[e],a.fixed?(a.x=a.px,a.y=a.py):(a.x-=(a.px-(a.px=a.x))*l,a.y-=(a.py-(a.py=a.y))*l);c.tick({type:"tick",alpha:r})},a.nodes=function(n){return arguments.length?(m=n,a):m},a.links=function(n){return arguments.length?(y=n,a):y},a.size=function(n){return arguments.length?(s=n,a):s},a.linkDistance=function(n){return arguments.length?(f="function"==typeof n?n:+n,a):f},a.distance=a.linkDistance,a.linkStrength=function(n){return arguments.length?(h="function"==typeof n?n:+n,a):h},a.friction=function(n){return arguments.length?(l=+n,a):l},a.charge=function(n){return arguments.length?(g="function"==typeof n?n:+n,a):g},a.chargeDistance=function(n){return arguments.length?(p=n*n,a):Math.sqrt(p)},a.gravity=function(n){return arguments.length?(v=+n,a):v},a.theta=function(n){return arguments.length?(d=n*n,a):Math.sqrt(d)},a.alpha=function(n){return arguments.length?(n=+n,r?r=n>0?n:0:n>0&&(c.start({type:"start",alpha:r=n}),Ko.timer(a.tick)),a):r},a.start=function(){function n(n,r){if(!e){for(e=Array(c),a=0;c>a;++a)e[a]=[];for(a=0;s>a;++a){var u=y[a];e[u.source.index].push(u.target),e[u.target.index].push(u.source)}}for(var i,o=e[t],a=-1,s=o.length;s>++a;)if(!isNaN(i=o[a][n]))return i;return Math.random()*r}var t,e,r,c=m.length,l=y.length,p=s[0],v=s[1];for(t=0;c>t;++t)(r=m[t]).index=t,r.weight=0;for(t=0;l>t;++t)r=y[t],"number"==typeof r.source&&(r.source=m[r.source]),"number"==typeof r.target&&(r.target=m[r.target]),++r.source.weight,++r.target.weight;for(t=0;c>t;++t)r=m[t],isNaN(r.x)&&(r.x=n("x",p)),isNaN(r.y)&&(r.y=n("y",v)),isNaN(r.px)&&(r.px=r.x),isNaN(r.py)&&(r.py=r.y);if(u=[],"function"==typeof f)for(t=0;l>t;++t)u[t]=+f.call(this,y[t],t);else for(t=0;l>t;++t)u[t]=f;if(i=[],"function"==typeof h)for(t=0;l>t;++t)i[t]=+h.call(this,y[t],t);else for(t=0;l>t;++t)i[t]=h;if(o=[],"function"==typeof g)for(t=0;c>t;++t)o[t]=+g.call(this,m[t],t);else for(t=0;c>t;++t)o[t]=g;return a.resume()},a.resume=function(){return a.alpha(.1)},a.stop=function(){return a.alpha(0)},a.drag=function(){return e||(e=Ko.behavior.drag().origin(Nt).on("dragstart.force",$u).on("drag.force",t).on("dragend.force",Xu)),arguments.length?(this.on("mouseover.force",Bu).on("mouseout.force",Wu).call(e),void 0):e},Ko.rebind(a,c,"on")};var ss=20,ls=1,fs=1/0;Ko.layout.hierarchy=function(){function n(t,o,a){var c=u.call(e,t,o);if(t.depth=o,a.push(t),c&&(s=c.length)){for(var s,l,f=-1,h=t.children=Array(s),g=0,p=o+1;s>++f;)l=h[f]=n(c[f],p,a),l.parent=t,g+=l.value;r&&h.sort(r),i&&(t.value=g)}else delete t.children,i&&(t.value=+i.call(e,t,o)||0);return t}function t(n,r){var u=n.children,o=0;if(u&&(a=u.length))for(var a,c=-1,s=r+1;a>++c;)o+=t(u[c],s);else i&&(o=+i.call(e,n,r)||0);return i&&(n.value=o),o}function e(t){var e=[];return n(t,0,e),e}var r=ni,u=Ku,i=Qu;return e.sort=function(n){return arguments.length?(r=n,e):r},e.children=function(n){return arguments.length?(u=n,e):u},e.value=function(n){return arguments.length?(i=n,e):i},e.revalue=function(n){return t(n,0),n},e},Ko.layout.partition=function(){function n(t,e,r,u){var i=t.children;if(t.x=e,t.y=t.depth*u,t.dx=r,t.dy=u,i&&(o=i.length)){var o,a,c,s=-1;for(r=t.value?r/t.value:0;o>++s;)n(a=i[s],e,c=a.value*r,u),e+=c}}function t(n){var e=n.children,r=0;if(e&&(u=e.length))for(var u,i=-1;u>++i;)r=Math.max(r,t(e[i]));return 1+r}function e(e,i){var o=r.call(this,e,i);return n(o[0],0,u[0],u[1]/t(o[0])),o}var r=Ko.layout.hierarchy(),u=[1,1];return e.size=function(n){return arguments.length?(u=n,e):u},Gu(e,r)},Ko.layout.pie=function(){function n(i){var o=i.map(function(e,r){return+t.call(n,e,r)}),a=+("function"==typeof r?r.apply(this,arguments):r),c=(("function"==typeof u?u.apply(this,arguments):u)-a)/Ko.sum(o),s=Ko.range(i.length);null!=e&&s.sort(e===hs?function(n,t){return o[t]-o[n]}:function(n,t){return e(i[n],i[t])});var l=[];return s.forEach(function(n){var t;l[n]={data:i[n],value:t=o[n],startAngle:a,endAngle:a+=t*c}}),l}var t=Number,e=hs,r=0,u=qa;return n.value=function(e){return arguments.length?(t=e,n):t},n.sort=function(t){return arguments.length?(e=t,n):e},n.startAngle=function(t){return arguments.length?(r=t,n):r},n.endAngle=function(t){return arguments.length?(u=t,n):u},n};var hs={};Ko.layout.stack=function(){function n(a,c){var s=a.map(function(e,r){return t.call(n,e,r)}),l=s.map(function(t){return t.map(function(t,e){return[i.call(n,t,e),o.call(n,t,e)]})}),f=e.call(n,l,c);s=Ko.permute(s,f),l=Ko.permute(l,f);var h,g,p,v=r.call(n,l,c),d=s.length,m=s[0].length;for(g=0;m>g;++g)for(u.call(n,s[0][g],p=v[g],l[0][g][1]),h=1;d>h;++h)u.call(n,s[h][g],p+=l[h-1][g][1],l[h][g][1]);return a}var t=Nt,e=ii,r=oi,u=ui,i=ei,o=ri;return n.values=function(e){return arguments.length?(t=e,n):t},n.order=function(t){return arguments.length?(e="function"==typeof t?t:gs.get(t)||ii,n):e},n.offset=function(t){return arguments.length?(r="function"==typeof t?t:ps.get(t)||oi,n):r},n.x=function(t){return arguments.length?(i=t,n):i},n.y=function(t){return arguments.length?(o=t,n):o},n.out=function(t){return arguments.length?(u=t,n):u},n};var gs=Ko.map({"inside-out":function(n){var t,e,r=n.length,u=n.map(ai),i=n.map(ci),o=Ko.range(r).sort(function(n,t){return u[n]-u[t]}),a=0,c=0,s=[],l=[];for(t=0;r>t;++t)e=o[t],c>a?(a+=i[e],s.push(e)):(c+=i[e],l.push(e));return l.reverse().concat(s)},reverse:function(n){return Ko.range(n.length).reverse()},"default":ii}),ps=Ko.map({silhouette:function(n){var t,e,r,u=n.length,i=n[0].length,o=[],a=0,c=[];for(e=0;i>e;++e){for(t=0,r=0;u>t;t++)r+=n[t][e][1];r>a&&(a=r),o.push(r)}for(e=0;i>e;++e)c[e]=(a-o[e])/2;return c},wiggle:function(n){var t,e,r,u,i,o,a,c,s,l=n.length,f=n[0],h=f.length,g=[];for(g[0]=c=s=0,e=1;h>e;++e){for(t=0,u=0;l>t;++t)u+=n[t][e][1];for(t=0,i=0,a=f[e][0]-f[e-1][0];l>t;++t){for(r=0,o=(n[t][e][1]-n[t][e-1][1])/(2*a);t>r;++r)o+=(n[r][e][1]-n[r][e-1][1])/a;i+=o*n[t][e][1]}g[e]=c-=u?i/u*a:0,s>c&&(s=c)}for(e=0;h>e;++e)g[e]-=s;return g},expand:function(n){var t,e,r,u=n.length,i=n[0].length,o=1/u,a=[];for(e=0;i>e;++e){for(t=0,r=0;u>t;t++)r+=n[t][e][1];if(r)for(t=0;u>t;t++)n[t][e][1]/=r;else for(t=0;u>t;t++)n[t][e][1]=o}for(e=0;i>e;++e)a[e]=0;return a},zero:oi});Ko.layout.histogram=function(){function n(n,i){for(var o,a,c=[],s=n.map(e,this),l=r.call(this,s,i),f=u.call(this,l,s,i),i=-1,h=s.length,g=f.length-1,p=t?1:1/h;g>++i;)o=c[i]=[],o.dx=f[i+1]-(o.x=f[i]),o.y=0;if(g>0)for(i=-1;h>++i;)a=s[i],a>=l[0]&&l[1]>=a&&(o=c[Ko.bisect(f,a,1,g)-1],o.y+=p,o.push(n[i]));return c}var t=!0,e=Number,r=hi,u=li;return n.value=function(t){return arguments.length?(e=t,n):e},n.range=function(t){return arguments.length?(r=Ct(t),n):r},n.bins=function(t){return arguments.length?(u="number"==typeof t?function(n){return fi(n,t)}:Ct(t),n):u},n.frequency=function(e){return arguments.length?(t=!!e,n):t},n},Ko.layout.tree=function(){function n(n,i){function o(n,t){var r=n.children,u=n._tree;if(r&&(i=r.length)){for(var i,a,s,l=r[0],f=l,h=-1;i>++h;)s=r[h],o(s,a),f=c(s,a,f),a=s;_i(n);var g=.5*(l._tree.prelim+s._tree.prelim);t?(u.prelim=t._tree.prelim+e(n,t),u.mod=u.prelim-g):u.prelim=g}else t&&(u.prelim=t._tree.prelim+e(n,t))}function a(n,t){n.x=n._tree.prelim+t;var e=n.children;if(e&&(r=e.length)){var r,u=-1;for(t+=n._tree.mod;r>++u;)a(e[u],t)}}function c(n,t,r){if(t){for(var u,i=n,o=n,a=t,c=n.parent.children[0],s=i._tree.mod,l=o._tree.mod,f=a._tree.mod,h=c._tree.mod;a=vi(a),i=pi(i),a&&i;)c=pi(c),o=vi(o),o._tree.ancestor=n,u=a._tree.prelim+f-i._tree.prelim-s+e(a,i),u>0&&(bi(wi(a,n,r),n,u),s+=u,l+=u),f+=a._tree.mod,s+=i._tree.mod,h+=c._tree.mod,l+=o._tree.mod;a&&!vi(o)&&(o._tree.thread=a,o._tree.mod+=f-l),i&&!pi(c)&&(c._tree.thread=i,c._tree.mod+=s-h,r=n)}return r}var s=t.call(this,n,i),l=s[0];Mi(l,function(n,t){n._tree={ancestor:n,prelim:0,mod:0,change:0,shift:0,number:t?t._tree.number+1:0}}),o(l),a(l,-l._tree.prelim);var f=di(l,yi),h=di(l,mi),g=di(l,xi),p=f.x-e(f,h)/2,v=h.x+e(h,f)/2,d=g.depth||1;return Mi(l,u?function(n){n.x*=r[0],n.y=n.depth*r[1],delete n._tree}:function(n){n.x=(n.x-p)/(v-p)*r[0],n.y=n.depth/d*r[1],delete n._tree}),s}var t=Ko.layout.hierarchy().sort(null).value(null),e=gi,r=[1,1],u=!1;return n.separation=function(t){return arguments.length?(e=t,n):e},n.size=function(t){return arguments.length?(u=null==(r=t),n):u?null:r},n.nodeSize=function(t){return arguments.length?(u=null!=(r=t),n):u?r:null},Gu(n,t)},Ko.layout.pack=function(){function n(n,i){var o=e.call(this,n,i),a=o[0],c=u[0],s=u[1],l=null==t?Math.sqrt:"function"==typeof t?t:function(){return t};if(a.x=a.y=0,Mi(a,function(n){n.r=+l(n.value)}),Mi(a,Ni),r){var f=r*(t?1:Math.max(2*a.r/c,2*a.r/s))/2;Mi(a,function(n){n.r+=f}),Mi(a,Ni),Mi(a,function(n){n.r-=f})}return zi(a,c/2,s/2,t?1:1/Math.max(2*a.r/c,2*a.r/s)),o}var t,e=Ko.layout.hierarchy().sort(Si),r=0,u=[1,1];return n.size=function(t){return arguments.length?(u=t,n):u},n.radius=function(e){return arguments.length?(t=null==e||"function"==typeof e?e:+e,n):t},n.padding=function(t){return arguments.length?(r=+t,n):r},Gu(n,e)},Ko.layout.cluster=function(){function n(n,i){var o,a=t.call(this,n,i),c=a[0],s=0;Mi(c,function(n){var t=n.children;t&&t.length?(n.x=Ri(t),n.y=Ti(t)):(n.x=o?s+=e(n,o):0,n.y=0,o=n)});var l=Di(c),f=Pi(c),h=l.x-e(l,f)/2,g=f.x+e(f,l)/2;return Mi(c,u?function(n){n.x=(n.x-c.x)*r[0],n.y=(c.y-n.y)*r[1]}:function(n){n.x=(n.x-h)/(g-h)*r[0],n.y=(1-(c.y?n.y/c.y:1))*r[1]}),a}var t=Ko.layout.hierarchy().sort(null).value(null),e=gi,r=[1,1],u=!1;return n.separation=function(t){return arguments.length?(e=t,n):e},n.size=function(t){return arguments.length?(u=null==(r=t),n):u?null:r},n.nodeSize=function(t){return arguments.length?(u=null!=(r=t),n):u?r:null},Gu(n,t)},Ko.layout.treemap=function(){function n(n,t){for(var e,r,u=-1,i=n.length;i>++u;)r=(e=n[u]).value*(0>t?0:t),e.area=isNaN(r)||0>=r?0:r}function t(e){var i=e.children;if(i&&i.length){var o,a,c,s=f(e),l=[],h=i.slice(),p=1/0,v="slice"===g?s.dx:"dice"===g?s.dy:"slice-dice"===g?1&e.depth?s.dy:s.dx:Math.min(s.dx,s.dy);for(n(h,s.dx*s.dy/e.value),l.area=0;(c=h.length)>0;)l.push(o=h[c-1]),l.area+=o.area,"squarify"!==g||p>=(a=r(l,v))?(h.pop(),p=a):(l.area-=l.pop().area,u(l,v,s,!1),v=Math.min(s.dx,s.dy),l.length=l.area=0,p=1/0);l.length&&(u(l,v,s,!0),l.length=l.area=0),i.forEach(t)}}function e(t){var r=t.children;if(r&&r.length){var i,o=f(t),a=r.slice(),c=[];for(n(a,o.dx*o.dy/t.value),c.area=0;i=a.pop();)c.push(i),c.area+=i.area,null!=i.z&&(u(c,i.z?o.dx:o.dy,o,!a.length),c.length=c.area=0);r.forEach(e)}}function r(n,t){for(var e,r=n.area,u=0,i=1/0,o=-1,a=n.length;a>++o;)(e=n[o].area)&&(i>e&&(i=e),e>u&&(u=e));return r*=r,t*=t,r?Math.max(t*u*p/r,r/(t*i*p)):1/0}function u(n,t,e,r){var u,i=-1,o=n.length,a=e.x,s=e.y,l=t?c(n.area/t):0;if(t==e.dx){for((r||l>e.dy)&&(l=e.dy);o>++i;)u=n[i],u.x=a,u.y=s,u.dy=l,a+=u.dx=Math.min(e.x+e.dx-a,l?c(u.area/l):0);u.z=!0,u.dx+=e.x+e.dx-a,e.y+=l,e.dy-=l}else{for((r||l>e.dx)&&(l=e.dx);o>++i;)u=n[i],u.x=a,u.y=s,u.dx=l,s+=u.dy=Math.min(e.y+e.dy-s,l?c(u.area/l):0);u.z=!1,u.dy+=e.y+e.dy-s,e.x+=l,e.dx-=l}}function i(r){var u=o||a(r),i=u[0];return i.x=0,i.y=0,i.dx=s[0],i.dy=s[1],o&&a.revalue(i),n([i],i.dx*i.dy/i.value),(o?e:t)(i),h&&(o=u),u}var o,a=Ko.layout.hierarchy(),c=Math.round,s=[1,1],l=null,f=Ui,h=!1,g="squarify",p=.5*(1+Math.sqrt(5));return i.size=function(n){return arguments.length?(s=n,i):s},i.padding=function(n){function t(t){var e=n.call(i,t,t.depth);return null==e?Ui(t):ji(t,"number"==typeof e?[e,e,e,e]:e)}function e(t){return ji(t,n)}if(!arguments.length)return l;var r;return f=null==(l=n)?Ui:"function"==(r=typeof n)?t:"number"===r?(n=[n,n,n,n],e):e,i},i.round=function(n){return arguments.length?(c=n?Math.round:Number,i):c!=Number},i.sticky=function(n){return arguments.length?(h=n,o=null,i):h},i.ratio=function(n){return arguments.length?(p=n,i):p},i.mode=function(n){return arguments.length?(g=n+"",i):g},Gu(i,a)},Ko.random={normal:function(n,t){var e=arguments.length;return 2>e&&(t=1),1>e&&(n=0),function(){var e,r,u;do e=2*Math.random()-1,r=2*Math.random()-1,u=e*e+r*r;while(!u||u>1);return n+t*e*Math.sqrt(-2*Math.log(u)/u)}},logNormal:function(){var n=Ko.random.normal.apply(Ko,arguments);return function(){return Math.exp(n())}},bates:function(n){var t=Ko.random.irwinHall(n);return function(){return t()/n}},irwinHall:function(n){return function(){for(var t=0,e=0;n>e;e++)t+=Math.random();return t}}},Ko.scale={};var vs={floor:Nt,ceil:Nt};Ko.scale.linear=function(){return Vi([0,1],[0,1],mu,!1)};var ds={s:1,g:1,p:1,r:1,e:1};Ko.scale.log=function(){return Qi(Ko.scale.linear().domain([0,1]),10,!0,[1,10])};var ms=Ko.format(".0e"),ys={floor:function(n){return-Math.ceil(-n)},ceil:function(n){return-Math.floor(-n)}};Ko.scale.pow=function(){return no(Ko.scale.linear(),1,[0,1])},Ko.scale.sqrt=function(){return Ko.scale.pow().exponent(.5)},Ko.scale.ordinal=function(){return eo([],{t:"range",a:[[]]})},Ko.scale.category10=function(){return Ko.scale.ordinal().range(xs)},Ko.scale.category20=function(){return Ko.scale.ordinal().range(Ms)},Ko.scale.category20b=function(){return Ko.scale.ordinal().range(_s)},Ko.scale.category20c=function(){return Ko.scale.ordinal().range(bs) | |
};var xs=[2062260,16744206,2924588,14034728,9725885,9197131,14907330,8355711,12369186,1556175].map(yt),Ms=[2062260,11454440,16744206,16759672,2924588,10018698,14034728,16750742,9725885,12955861,9197131,12885140,14907330,16234194,8355711,13092807,12369186,14408589,1556175,10410725].map(yt),_s=[3750777,5395619,7040719,10264286,6519097,9216594,11915115,13556636,9202993,12426809,15186514,15190932,8666169,11356490,14049643,15177372,8077683,10834324,13528509,14589654].map(yt),bs=[3244733,7057110,10406625,13032431,15095053,16616764,16625259,16634018,3253076,7652470,10607003,13101504,7695281,10394312,12369372,14342891,6513507,9868950,12434877,14277081].map(yt);Ko.scale.quantile=function(){return ro([],[])},Ko.scale.quantize=function(){return uo(0,1,[0,1])},Ko.scale.threshold=function(){return io([.5],[0,1])},Ko.scale.identity=function(){return oo([0,1])},Ko.svg={},Ko.svg.arc=function(){function n(){var n=t.apply(this,arguments),i=e.apply(this,arguments),o=r.apply(this,arguments)+ws,a=u.apply(this,arguments)+ws,c=(o>a&&(c=o,o=a,a=c),a-o),s=Aa>c?"0":"1",l=Math.cos(o),f=Math.sin(o),h=Math.cos(a),g=Math.sin(a);return c>=Ss?n?"M0,"+i+"A"+i+","+i+" 0 1,1 0,"+-i+"A"+i+","+i+" 0 1,1 0,"+i+"M0,"+n+"A"+n+","+n+" 0 1,0 0,"+-n+"A"+n+","+n+" 0 1,0 0,"+n+"Z":"M0,"+i+"A"+i+","+i+" 0 1,1 0,"+-i+"A"+i+","+i+" 0 1,1 0,"+i+"Z":n?"M"+i*l+","+i*f+"A"+i+","+i+" 0 "+s+",1 "+i*h+","+i*g+"L"+n*h+","+n*g+"A"+n+","+n+" 0 "+s+",0 "+n*l+","+n*f+"Z":"M"+i*l+","+i*f+"A"+i+","+i+" 0 "+s+",1 "+i*h+","+i*g+"L0,0"+"Z"}var t=ao,e=co,r=so,u=lo;return n.innerRadius=function(e){return arguments.length?(t=Ct(e),n):t},n.outerRadius=function(t){return arguments.length?(e=Ct(t),n):e},n.startAngle=function(t){return arguments.length?(r=Ct(t),n):r},n.endAngle=function(t){return arguments.length?(u=Ct(t),n):u},n.centroid=function(){var n=(t.apply(this,arguments)+e.apply(this,arguments))/2,i=(r.apply(this,arguments)+u.apply(this,arguments))/2+ws;return[Math.cos(i)*n,Math.sin(i)*n]},n};var ws=-za,Ss=qa-La;Ko.svg.line=function(){return fo(Nt)};var ks=Ko.map({linear:ho,"linear-closed":go,step:po,"step-before":vo,"step-after":mo,basis:wo,"basis-open":So,"basis-closed":ko,bundle:Eo,cardinal:Mo,"cardinal-open":yo,"cardinal-closed":xo,monotone:Lo});ks.forEach(function(n,t){t.key=n,t.closed=/-closed$/.test(n)});var Es=[0,2/3,1/3,0],Cs=[0,1/3,2/3,0],Ns=[0,1/6,2/3,1/6];Ko.svg.line.radial=function(){var n=fo(To);return n.radius=n.x,delete n.x,n.angle=n.y,delete n.y,n},vo.reverse=mo,mo.reverse=vo,Ko.svg.area=function(){return Ro(Nt)},Ko.svg.area.radial=function(){var n=Ro(To);return n.radius=n.x,delete n.x,n.innerRadius=n.x0,delete n.x0,n.outerRadius=n.x1,delete n.x1,n.angle=n.y,delete n.y,n.startAngle=n.y0,delete n.y0,n.endAngle=n.y1,delete n.y1,n},Ko.svg.chord=function(){function n(n,a){var c=t(this,i,n,a),s=t(this,o,n,a);return"M"+c.p0+r(c.r,c.p1,c.a1-c.a0)+(e(c,s)?u(c.r,c.p1,c.r,c.p0):u(c.r,c.p1,s.r,s.p0)+r(s.r,s.p1,s.a1-s.a0)+u(s.r,s.p1,c.r,c.p0))+"Z"}function t(n,t,e,r){var u=t.call(n,e,r),i=a.call(n,u,r),o=c.call(n,u,r)+ws,l=s.call(n,u,r)+ws;return{r:i,a0:o,a1:l,p0:[i*Math.cos(o),i*Math.sin(o)],p1:[i*Math.cos(l),i*Math.sin(l)]}}function e(n,t){return n.a0==t.a0&&n.a1==t.a1}function r(n,t,e){return"A"+n+","+n+" 0 "+ +(e>Aa)+",1 "+t}function u(n,t,e,r){return"Q 0,0 "+r}var i=yr,o=xr,a=Do,c=so,s=lo;return n.radius=function(t){return arguments.length?(a=Ct(t),n):a},n.source=function(t){return arguments.length?(i=Ct(t),n):i},n.target=function(t){return arguments.length?(o=Ct(t),n):o},n.startAngle=function(t){return arguments.length?(c=Ct(t),n):c},n.endAngle=function(t){return arguments.length?(s=Ct(t),n):s},n},Ko.svg.diagonal=function(){function n(n,u){var i=t.call(this,n,u),o=e.call(this,n,u),a=(i.y+o.y)/2,c=[i,{x:i.x,y:a},{x:o.x,y:a},o];return c=c.map(r),"M"+c[0]+"C"+c[1]+" "+c[2]+" "+c[3]}var t=yr,e=xr,r=Po;return n.source=function(e){return arguments.length?(t=Ct(e),n):t},n.target=function(t){return arguments.length?(e=Ct(t),n):e},n.projection=function(t){return arguments.length?(r=t,n):r},n},Ko.svg.diagonal.radial=function(){var n=Ko.svg.diagonal(),t=Po,e=n.projection;return n.projection=function(n){return arguments.length?e(Uo(t=n)):t},n},Ko.svg.symbol=function(){function n(n,r){return(As.get(t.call(this,n,r))||Fo)(e.call(this,n,r))}var t=Ho,e=jo;return n.type=function(e){return arguments.length?(t=Ct(e),n):t},n.size=function(t){return arguments.length?(e=Ct(t),n):e},n};var As=Ko.map({circle:Fo,cross:function(n){var t=Math.sqrt(n/5)/2;return"M"+-3*t+","+-t+"H"+-t+"V"+-3*t+"H"+t+"V"+-t+"H"+3*t+"V"+t+"H"+t+"V"+3*t+"H"+-t+"V"+t+"H"+-3*t+"Z"},diamond:function(n){var t=Math.sqrt(n/(2*Ts)),e=t*Ts;return"M0,"+-t+"L"+e+",0"+" 0,"+t+" "+-e+",0"+"Z"},square:function(n){var t=Math.sqrt(n)/2;return"M"+-t+","+-t+"L"+t+","+-t+" "+t+","+t+" "+-t+","+t+"Z"},"triangle-down":function(n){var t=Math.sqrt(n/Ls),e=t*Ls/2;return"M0,"+e+"L"+t+","+-e+" "+-t+","+-e+"Z"},"triangle-up":function(n){var t=Math.sqrt(n/Ls),e=t*Ls/2;return"M0,"+-e+"L"+t+","+e+" "+-t+","+e+"Z"}});Ko.svg.symbolTypes=As.keys();var qs,zs,Ls=Math.sqrt(3),Ts=Math.tan(30*Ra),Rs=[],Ds=0;Rs.call=ba.call,Rs.empty=ba.empty,Rs.node=ba.node,Rs.size=ba.size,Ko.transition=function(n){return arguments.length?qs?n.transition():n:ka.transition()},Ko.transition.prototype=Rs,Rs.select=function(n){var t,e,r,u=this.id,i=[];n=w(n);for(var o=-1,a=this.length;a>++o;){i.push(t=[]);for(var c=this[o],s=-1,l=c.length;l>++s;)(r=c[s])&&(e=n.call(r,r.__data__,s,o))?("__data__"in r&&(e.__data__=r.__data__),Zo(e,s,u,r.__transition__[u]),t.push(e)):t.push(null)}return Oo(i,u)},Rs.selectAll=function(n){var t,e,r,u,i,o=this.id,a=[];n=S(n);for(var c=-1,s=this.length;s>++c;)for(var l=this[c],f=-1,h=l.length;h>++f;)if(r=l[f]){i=r.__transition__[o],e=n.call(r,r.__data__,f,c),a.push(t=[]);for(var g=-1,p=e.length;p>++g;)(u=e[g])&&Zo(u,g,o,i),t.push(u)}return Oo(a,o)},Rs.filter=function(n){var t,e,r,u=[];"function"!=typeof n&&(n=D(n));for(var i=0,o=this.length;o>i;i++){u.push(t=[]);for(var e=this[i],a=0,c=e.length;c>a;a++)(r=e[a])&&n.call(r,r.__data__,a,i)&&t.push(r)}return Oo(u,this.id)},Rs.tween=function(n,t){var e=this.id;return 2>arguments.length?this.node().__transition__[e].tween.get(n):U(this,null==t?function(t){t.__transition__[e].tween.remove(n)}:function(r){r.__transition__[e].tween.set(n,t)})},Rs.attr=function(n,t){function e(){this.removeAttribute(a)}function r(){this.removeAttributeNS(a.space,a.local)}function u(n){return null==n?e:(n+="",function(){var t,e=this.getAttribute(a);return e!==n&&(t=o(e,n),function(n){this.setAttribute(a,t(n))})})}function i(n){return null==n?r:(n+="",function(){var t,e=this.getAttributeNS(a.space,a.local);return e!==n&&(t=o(e,n),function(n){this.setAttributeNS(a.space,a.local,t(n))})})}if(2>arguments.length){for(t in n)this.attr(t,n[t]);return this}var o="transform"==n?Fu:mu,a=Ko.ns.qualify(n);return Io(this,"attr."+n,t,a.local?i:u)},Rs.attrTween=function(n,t){function e(n,e){var r=t.call(this,n,e,this.getAttribute(u));return r&&function(n){this.setAttribute(u,r(n))}}function r(n,e){var r=t.call(this,n,e,this.getAttributeNS(u.space,u.local));return r&&function(n){this.setAttributeNS(u.space,u.local,r(n))}}var u=Ko.ns.qualify(n);return this.tween("attr."+n,u.local?r:e)},Rs.style=function(n,t,e){function r(){this.style.removeProperty(n)}function u(t){return null==t?r:(t+="",function(){var r,u=ra.getComputedStyle(this,null).getPropertyValue(n);return u!==t&&(r=mu(u,t),function(t){this.style.setProperty(n,r(t),e)})})}var i=arguments.length;if(3>i){if("string"!=typeof n){2>i&&(t="");for(e in n)this.style(e,n[e],t);return this}e=""}return Io(this,"style."+n,t,u)},Rs.styleTween=function(n,t,e){function r(r,u){var i=t.call(this,r,u,ra.getComputedStyle(this,null).getPropertyValue(n));return i&&function(t){this.style.setProperty(n,i(t),e)}}return 3>arguments.length&&(e=""),this.tween("style."+n,r)},Rs.text=function(n){return Io(this,"text",n,Yo)},Rs.remove=function(){return this.each("end.transition",function(){var n;2>this.__transition__.count&&(n=this.parentNode)&&n.removeChild(this)})},Rs.ease=function(n){var t=this.id;return 1>arguments.length?this.node().__transition__[t].ease:("function"!=typeof n&&(n=Ko.ease.apply(Ko,arguments)),U(this,function(e){e.__transition__[t].ease=n}))},Rs.delay=function(n){var t=this.id;return 1>arguments.length?this.node().__transition__[t].delay:U(this,"function"==typeof n?function(e,r,u){e.__transition__[t].delay=+n.call(e,e.__data__,r,u)}:(n=+n,function(e){e.__transition__[t].delay=n}))},Rs.duration=function(n){var t=this.id;return 1>arguments.length?this.node().__transition__[t].duration:U(this,"function"==typeof n?function(e,r,u){e.__transition__[t].duration=Math.max(1,n.call(e,e.__data__,r,u))}:(n=Math.max(1,n),function(e){e.__transition__[t].duration=n}))},Rs.each=function(n,t){var e=this.id;if(2>arguments.length){var r=zs,u=qs;qs=e,U(this,function(t,r,u){zs=t.__transition__[e],n.call(t,t.__data__,r,u)}),zs=r,qs=u}else U(this,function(r){var u=r.__transition__[e];(u.event||(u.event=Ko.dispatch("start","end"))).on(n,t)});return this},Rs.transition=function(){for(var n,t,e,r,u=this.id,i=++Ds,o=[],a=0,c=this.length;c>a;a++){o.push(n=[]);for(var t=this[a],s=0,l=t.length;l>s;s++)(e=t[s])&&(r=Object.create(e.__transition__[u]),r.delay+=r.duration,Zo(e,s,i,r)),n.push(e)}return Oo(o,i)},Ko.svg.axis=function(){function n(n){n.each(function(){var n,s=Ko.select(this),l=this.__chart__||e,f=this.__chart__=e.copy(),h=null==c?f.ticks?f.ticks.apply(f,a):f.domain():c,g=null==t?f.tickFormat?f.tickFormat.apply(f,a):Nt:t,p=s.selectAll(".tick").data(h,f),v=p.enter().insert("g",".domain").attr("class","tick").style("opacity",La),d=Ko.transition(p.exit()).style("opacity",La).remove(),m=Ko.transition(p.order()).style("opacity",1),y=Fi(f),x=s.selectAll(".domain").data([0]),M=(x.enter().append("path").attr("class","domain"),Ko.transition(x));v.append("line"),v.append("text");var _=v.select("line"),b=m.select("line"),w=p.select("text").text(g),S=v.select("text"),k=m.select("text");switch(r){case"bottom":n=Vo,_.attr("y2",u),S.attr("y",Math.max(u,0)+o),b.attr("x2",0).attr("y2",u),k.attr("x",0).attr("y",Math.max(u,0)+o),w.attr("dy",".71em").style("text-anchor","middle"),M.attr("d","M"+y[0]+","+i+"V0H"+y[1]+"V"+i);break;case"top":n=Vo,_.attr("y2",-u),S.attr("y",-(Math.max(u,0)+o)),b.attr("x2",0).attr("y2",-u),k.attr("x",0).attr("y",-(Math.max(u,0)+o)),w.attr("dy","0em").style("text-anchor","middle"),M.attr("d","M"+y[0]+","+-i+"V0H"+y[1]+"V"+-i);break;case"left":n=$o,_.attr("x2",-u),S.attr("x",-(Math.max(u,0)+o)),b.attr("x2",-u).attr("y2",0),k.attr("x",-(Math.max(u,0)+o)).attr("y",0),w.attr("dy",".32em").style("text-anchor","end"),M.attr("d","M"+-i+","+y[0]+"H0V"+y[1]+"H"+-i);break;case"right":n=$o,_.attr("x2",u),S.attr("x",Math.max(u,0)+o),b.attr("x2",u).attr("y2",0),k.attr("x",Math.max(u,0)+o).attr("y",0),w.attr("dy",".32em").style("text-anchor","start"),M.attr("d","M"+i+","+y[0]+"H0V"+y[1]+"H"+i)}if(f.rangeBand){var E=f,C=E.rangeBand()/2;l=f=function(n){return E(n)+C}}else l.rangeBand?l=f:d.call(n,f);v.call(n,l),m.call(n,f)})}var t,e=Ko.scale.linear(),r=Ps,u=6,i=6,o=3,a=[10],c=null;return n.scale=function(t){return arguments.length?(e=t,n):e},n.orient=function(t){return arguments.length?(r=t in Us?t+"":Ps,n):r},n.ticks=function(){return arguments.length?(a=arguments,n):a},n.tickValues=function(t){return arguments.length?(c=t,n):c},n.tickFormat=function(e){return arguments.length?(t=e,n):t},n.tickSize=function(t){var e=arguments.length;return e?(u=+t,i=+arguments[e-1],n):u},n.innerTickSize=function(t){return arguments.length?(u=+t,n):u},n.outerTickSize=function(t){return arguments.length?(i=+t,n):i},n.tickPadding=function(t){return arguments.length?(o=+t,n):o},n.tickSubdivide=function(){return arguments.length&&n},n};var Ps="bottom",Us={top:1,right:1,bottom:1,left:1};Ko.svg.brush=function(){function n(i){i.each(function(){var i=Ko.select(this).style("pointer-events","all").style("-webkit-tap-highlight-color","rgba(0,0,0,0)").on("mousedown.brush",u).on("touchstart.brush",u),o=i.selectAll(".background").data([0]);o.enter().append("rect").attr("class","background").style("visibility","hidden").style("cursor","crosshair"),i.selectAll(".extent").data([0]).enter().append("rect").attr("class","extent").style("cursor","move");var a=i.selectAll(".resize").data(p,Nt);a.exit().remove(),a.enter().append("g").attr("class",function(n){return"resize "+n}).style("cursor",function(n){return js[n]}).append("rect").attr("x",function(n){return/[ew]$/.test(n)?-3:null}).attr("y",function(n){return/^[ns]/.test(n)?-3:null}).attr("width",6).attr("height",6).style("visibility","hidden"),a.style("display",n.empty()?"none":null);var l,f=Ko.transition(i),h=Ko.transition(o);c&&(l=Fi(c),h.attr("x",l[0]).attr("width",l[1]-l[0]),e(f)),s&&(l=Fi(s),h.attr("y",l[0]).attr("height",l[1]-l[0]),r(f)),t(f)})}function t(n){n.selectAll(".resize").attr("transform",function(n){return"translate("+l[+/e$/.test(n)]+","+f[+/^s/.test(n)]+")"})}function e(n){n.select(".extent").attr("x",l[0]),n.selectAll(".extent,.n>rect,.s>rect").attr("width",l[1]-l[0])}function r(n){n.select(".extent").attr("y",f[0]),n.selectAll(".extent,.e>rect,.w>rect").attr("height",f[1]-f[0])}function u(){function u(){32==Ko.event.keyCode&&(N||(y=null,q[0]-=l[1],q[1]-=f[1],N=2),x())}function p(){32==Ko.event.keyCode&&2==N&&(q[0]+=l[1],q[1]+=f[1],N=0,x())}function v(){var n=Ko.mouse(_),u=!1;M&&(n[0]+=M[0],n[1]+=M[1]),N||(Ko.event.altKey?(y||(y=[(l[0]+l[1])/2,(f[0]+f[1])/2]),q[0]=l[+(n[0]<y[0])],q[1]=f[+(n[1]<y[1])]):y=null),E&&d(n,c,0)&&(e(S),u=!0),C&&d(n,s,1)&&(r(S),u=!0),u&&(t(S),w({type:"brush",mode:N?"move":"resize"}))}function d(n,t,e){var r,u,a=Fi(t),c=a[0],s=a[1],p=q[e],v=e?f:l,d=v[1]-v[0];return N&&(c-=p,s-=d+p),r=(e?g:h)?Math.max(c,Math.min(s,n[e])):n[e],N?u=(r+=p)+d:(y&&(p=Math.max(c,Math.min(s,2*y[e]-r))),r>p?(u=r,r=p):u=p),v[0]!=r||v[1]!=u?(e?o=null:i=null,v[0]=r,v[1]=u,!0):void 0}function m(){v(),S.style("pointer-events","all").selectAll(".resize").style("display",n.empty()?"none":null),Ko.select("body").style("cursor",null),z.on("mousemove.brush",null).on("mouseup.brush",null).on("touchmove.brush",null).on("touchend.brush",null).on("keydown.brush",null).on("keyup.brush",null),A(),w({type:"brushend"})}var y,M,_=this,b=Ko.select(Ko.event.target),w=a.of(_,arguments),S=Ko.select(_),k=b.datum(),E=!/^(n|s)$/.test(k)&&c,C=!/^(e|w)$/.test(k)&&s,N=b.classed("extent"),A=Z(),q=Ko.mouse(_),z=Ko.select(ra).on("keydown.brush",u).on("keyup.brush",p);if(Ko.event.changedTouches?z.on("touchmove.brush",v).on("touchend.brush",m):z.on("mousemove.brush",v).on("mouseup.brush",m),S.interrupt().selectAll("*").interrupt(),N)q[0]=l[0]-q[0],q[1]=f[0]-q[1];else if(k){var L=+/w$/.test(k),T=+/^n/.test(k);M=[l[1-L]-q[0],f[1-T]-q[1]],q[0]=l[L],q[1]=f[T]}else Ko.event.altKey&&(y=q.slice());S.style("pointer-events","none").selectAll(".resize").style("display",null),Ko.select("body").style("cursor",b.style("cursor")),w({type:"brushstart"}),v()}var i,o,a=_(n,"brushstart","brush","brushend"),c=null,s=null,l=[0,0],f=[0,0],h=!0,g=!0,p=Hs[0];return n.event=function(n){n.each(function(){var n=a.of(this,arguments),t={x:l,y:f,i:i,j:o},e=this.__chart__||t;this.__chart__=t,qs?Ko.select(this).transition().each("start.brush",function(){i=e.i,o=e.j,l=e.x,f=e.y,n({type:"brushstart"})}).tween("brush:brush",function(){var e=yu(l,t.x),r=yu(f,t.y);return i=o=null,function(u){l=t.x=e(u),f=t.y=r(u),n({type:"brush",mode:"resize"})}}).each("end.brush",function(){i=t.i,o=t.j,n({type:"brush",mode:"resize"}),n({type:"brushend"})}):(n({type:"brushstart"}),n({type:"brush",mode:"resize"}),n({type:"brushend"}))})},n.x=function(t){return arguments.length?(c=t,p=Hs[!c<<1|!s],n):c},n.y=function(t){return arguments.length?(s=t,p=Hs[!c<<1|!s],n):s},n.clamp=function(t){return arguments.length?(c&&s?(h=!!t[0],g=!!t[1]):c?h=!!t:s&&(g=!!t),n):c&&s?[h,g]:c?h:s?g:null},n.extent=function(t){var e,r,u,a,h;return arguments.length?(c&&(e=t[0],r=t[1],s&&(e=e[0],r=r[0]),i=[e,r],c.invert&&(e=c(e),r=c(r)),e>r&&(h=e,e=r,r=h),(e!=l[0]||r!=l[1])&&(l=[e,r])),s&&(u=t[0],a=t[1],c&&(u=u[1],a=a[1]),o=[u,a],s.invert&&(u=s(u),a=s(a)),u>a&&(h=u,u=a,a=h),(u!=f[0]||a!=f[1])&&(f=[u,a])),n):(c&&(i?(e=i[0],r=i[1]):(e=l[0],r=l[1],c.invert&&(e=c.invert(e),r=c.invert(r)),e>r&&(h=e,e=r,r=h))),s&&(o?(u=o[0],a=o[1]):(u=f[0],a=f[1],s.invert&&(u=s.invert(u),a=s.invert(a)),u>a&&(h=u,u=a,a=h))),c&&s?[[e,u],[r,a]]:c?[e,r]:s&&[u,a])},n.clear=function(){return n.empty()||(l=[0,0],f=[0,0],i=o=null),n},n.empty=function(){return!!c&&l[0]==l[1]||!!s&&f[0]==f[1]},Ko.rebind(n,a,"on")};var js={n:"ns-resize",e:"ew-resize",s:"ns-resize",w:"ew-resize",nw:"nwse-resize",ne:"nesw-resize",se:"nwse-resize",sw:"nesw-resize"},Hs=[["n","e","s","w","nw","ne","se","sw"],["e","w"],["n","s"],[]],Fs=oc.format=hc.timeFormat,Os=Fs.utc,Is=Os("%Y-%m-%dT%H:%M:%S.%LZ");Fs.iso=Date.prototype.toISOString&&+new Date("2000-01-01T00:00:00.000Z")?Xo:Is,Xo.parse=function(n){var t=new Date(n);return isNaN(t)?null:t},Xo.toString=Is.toString,oc.second=Ft(function(n){return new ac(1e3*Math.floor(n/1e3))},function(n,t){n.setTime(n.getTime()+1e3*Math.floor(t))},function(n){return n.getSeconds()}),oc.seconds=oc.second.range,oc.seconds.utc=oc.second.utc.range,oc.minute=Ft(function(n){return new ac(6e4*Math.floor(n/6e4))},function(n,t){n.setTime(n.getTime()+6e4*Math.floor(t))},function(n){return n.getMinutes()}),oc.minutes=oc.minute.range,oc.minutes.utc=oc.minute.utc.range,oc.hour=Ft(function(n){var t=n.getTimezoneOffset()/60;return new ac(36e5*(Math.floor(n/36e5-t)+t))},function(n,t){n.setTime(n.getTime()+36e5*Math.floor(t))},function(n){return n.getHours()}),oc.hours=oc.hour.range,oc.hours.utc=oc.hour.utc.range,oc.month=Ft(function(n){return n=oc.day(n),n.setDate(1),n},function(n,t){n.setMonth(n.getMonth()+t)},function(n){return n.getMonth()}),oc.months=oc.month.range,oc.months.utc=oc.month.utc.range;var Ys=[1e3,5e3,15e3,3e4,6e4,3e5,9e5,18e5,36e5,108e5,216e5,432e5,864e5,1728e5,6048e5,2592e6,7776e6,31536e6],Zs=[[oc.second,1],[oc.second,5],[oc.second,15],[oc.second,30],[oc.minute,1],[oc.minute,5],[oc.minute,15],[oc.minute,30],[oc.hour,1],[oc.hour,3],[oc.hour,6],[oc.hour,12],[oc.day,1],[oc.day,2],[oc.week,1],[oc.month,1],[oc.month,3],[oc.year,1]],Vs=Fs.multi([[".%L",function(n){return n.getMilliseconds()}],[":%S",function(n){return n.getSeconds()}],["%I:%M",function(n){return n.getMinutes()}],["%I %p",function(n){return n.getHours()}],["%a %d",function(n){return n.getDay()&&1!=n.getDate()}],["%b %d",function(n){return 1!=n.getDate()}],["%B",function(n){return n.getMonth()}],["%Y",Ne]]),$s={range:function(n,t,e){return Ko.range(Math.ceil(n/e)*e,+t,e).map(Wo)},floor:Nt,ceil:Nt};Zs.year=oc.year,oc.scale=function(){return Bo(Ko.scale.linear(),Zs,Vs)};var Xs=Zs.map(function(n){return[n[0].utc,n[1]]}),Bs=Os.multi([[".%L",function(n){return n.getUTCMilliseconds()}],[":%S",function(n){return n.getUTCSeconds()}],["%I:%M",function(n){return n.getUTCMinutes()}],["%I %p",function(n){return n.getUTCHours()}],["%a %d",function(n){return n.getUTCDay()&&1!=n.getUTCDate()}],["%b %d",function(n){return 1!=n.getUTCDate()}],["%B",function(n){return n.getUTCMonth()}],["%Y",Ne]]);Xs.year=oc.year.utc,oc.scale.utc=function(){return Bo(Ko.scale.linear(),Xs,Bs)},Ko.text=At(function(n){return n.responseText}),Ko.json=function(n,t){return qt(n,"application/json",Jo,t)},Ko.html=function(n,t){return qt(n,"text/html",Go,t)},Ko.xml=At(function(n){return n.responseXML}),"function"==typeof define&&define.amd?define(Ko):"object"==typeof t&&t.exports?t.exports=Ko:this.d3=Ko}()},{}],d3:[function(n,t){t.exports=n("1iv++k")},{}]},{},[]);var d3=require("d3"),nodes=d3.range(200).map(function(){return{radius:12*Math.random()+4}}),root=nodes[0];root.radius=0,root.fixed=!0;var force=d3.layout.force().gravity(.05).charge(function(n,t){return t?0:-2e3});canvas=d3.select("body").insert("canvas",":first-child");var resize=function(n){console.log("resize",n),width=window.innerWidth,height=window.innerHeight,canvas.attr("height",height).attr("width",width),context=canvas.node().getContext("2d"),force.size([width,height]).start()};resize(),d3.select(window).on("resize",resize),force.on("tick",function(n){console.log("tick",n,context);var t,e,r=d3.geom.quadtree(nodes),u=nodes.length;for(t=1;u>t;++t)r.visit(collide(nodes[t]));for(context.clearRect(0,0,width,height),context.fillStyle="red",context.beginPath(),t=1;u>t;++t)e=nodes[t],context.moveTo(e.x,e.y),context.arc(e.x,e.y,e.radius,0,2*Math.PI);context.fill()}),canvas.on("mousemove",function(){var n=d3.mouse(this);root.px=n[0],root.py=n[1],force.resume()}); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "requirebin-sketch", | |
"version": "1.0.0", | |
"dependencies": { | |
"d3": "3.4.4" | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<style type='text/css'>html, body { margin: 0; padding: 0; border: 0; } | |
body, html { height: 100%; width: 100%; }</style> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment