Skip to content

Instantly share code, notes, and snippets.

@cimi
Last active December 10, 2015 20:08
Show Gist options
  • Save cimi/4486121 to your computer and use it in GitHub Desktop.
Save cimi/4486121 to your computer and use it in GitHub Desktop.
Demo for the Romania choropleth map generator.
<!DOCTYPE html>
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js"> <!--<![endif]-->
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title></title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width">
<!-- Place favicon.ico and apple-touch-icon.png in the root directory -->
<link rel="stylesheet" href="main.css">
<script src="//cdnjs.cloudflare.com/ajax/libs/modernizr/2.6.2/modernizr.min.js"></script>
</head>
<body>
<a href="https://github.com/cimi/romania-choropleth"><img style="position: absolute; top: 0; right: 0; border: 0;" src="https://s3.amazonaws.com/github/ribbons/forkme_right_red_aa0000.png" alt="Fork me on GitHub"></a>
<div id="demo" class="container" style="margin-top:50px">
<div id="infobox">
<p>Mutând cursorul peste oricare județ puteți vedea diferența de populație dintre 1956 și 2004.</p>
<p>Spectrul de culori reflectă cât de mult a scăzut (roșu) sau crescut (albastru).</p>
</div>
<div id="map"></div>
<table id="topThree">
<caption>Județele cu cea mai mare creștere în populație</caption>
<thead><tr><th>Nume</th><th>Diferență</th></tr></thead>
</table>
<table id="bottomThree">
<caption>Județele cu cea mai mare scădere în populație</caption>
<thead><tr><th>Nume</th><th>Diferență</th></tr></thead>
</table>
</div>
<script id="template" type="text/x-handlebars-template">
<h2>{{name}}</h2>
<p>Diferență ({{pop2004}} - {{pop1956}}): <strong>{{formulaResult}}</strong>
<br />Rang: {{diffIdx}} (diferență) {{popIdx}} (populație) </p>
</script>
<!--[if lt IE 7]>
<p class="chromeframe">You are using an outdated browser. <a href="http://browsehappy.com/">Upgrade your browser today</a> or <a href="http://www.google.com/chromeframe/?redirect=true">install Google Chrome Frame</a> to better experience this site.</p>
<![endif]-->
<!-- Add your site or application content here -->
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.8.0/jquery.min.js"></script>
<script>window.jQuery || document.write('<script src="scripts/vendor/jquery.min.js"><\/script>')</script>
<script src="https://raw.github.com/mbostock/queue/master/queue.js"></script>
<script src="https://raw.github.com/mbostock/topojson/master/topojson.js"></script>
<script src="http://cloud.github.com/downloads/wycats/handlebars.js/handlebars-1.0.rc.1.js"></script>
<script src="http://d3js.org/d3.v3.min.js"></script>
<script src="https://raw.github.com/cimi/romania-choropleth/master/app/scripts/romania.js"></script>
<script>
// callback that gets executed when the map and data is loaded
var mapLoaded = function (map) {
var data = map.getData()
, tmp = []
, three = { top: [], bottom: [] };
$.each(data, function (key, value) {
tmp.push({id: key, name: value.name, diff: value.formulaResult, pop2004: parseInt(value.pop2004)});
});
var setIndex = function (idxName) {
return function (val, idx) {
data[val.id][idxName] = 42 - idx;
}
}
tmp.sort(function (a, b) { return a.diff - b.diff });
tmp.forEach(setIndex('diffIdx'));
three.bottom = tmp.slice(0, 3);
three.top = tmp.slice(tmp.length - 3).reverse();
tmp.sort(function (a, b) { return a.pop2004 - b.pop2004 });
tmp.forEach(setIndex('popIdx'));
var tableRowTemplate = Handlebars.compile('<tr><td>{{name}}<td>{{diff}}');
['top', 'bottom'].forEach(function (set) {
three[set].forEach(function (county) {
$('#' + set + 'Three').append(tableRowTemplate(county));
});
});
};
var defaultInfoboxContents = $('#infobox').html();
var config = {
data: {
datafile: 'population.tsv',
domain: [-100 * 1000, 100 * 1000],
formula: 'data.pop2004 - data.pop1956',
range: ['red', 'steelblue']
},
topoJSON: 'romania-topo.json',
target: '#map',
infobox: {
target: '#infobox',
template: '#template'
},
interaction: {
hilight: {
callback: function (element, d) {
$('#infobox').css('background-color', d3.select(element).style('fill'));
}
}, unhilight: {
callback: function (element, d) {
$('#infobox').html(defaultInfoboxContents);
}
}
},
callback : mapLoaded
};
var map = new Romania(config);
</script>
</body>
</html>
article,aside,details,figcaption,figure,footer,header,hgroup,nav,section{display:block}audio,canvas,video{display:inline-block;*display:inline;*zoom:1}audio:not([controls]){display:none}html{font-size:100%;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%}a:focus{outline:thin dotted #333;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}a:hover,a:active{outline:0}sub,sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline}sup{top:-.5em}sub{bottom:-.25em}img{max-width:100%;height:auto;vertical-align:middle;border:0;-ms-interpolation-mode:bicubic}#mapCanvas label{width:auto;display:inline}#mapCanvas img{max-width:none}button,input,select,textarea{margin:0;font-size:100%;vertical-align:middle}button,input{*overflow:visible;line-height:normal}button::-moz-focus-inner,input::-moz-focus-inner{padding:0;border:0}button,input[type="button"],input[type="reset"],input[type="submit"]{cursor:pointer;-webkit-appearance:button}input[type="search"]{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;-webkit-appearance:textfield}input[type="search"]::-webkit-search-decoration,input[type="search"]::-webkit-search-cancel-button{-webkit-appearance:none}textarea{overflow:auto;vertical-align:top}body{margin:0;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:14px;line-height:20px;color:#333;background-color:#fff}a{color:#08c;text-decoration:none}a:hover{color:#005580;text-decoration:underline}.img-rounded{-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px}.img-polaroid{padding:4px;background-color:#fff;border:1px solid #ccc;border:1px solid rgba(0,0,0,.2);-webkit-box-shadow:0 1px 3px rgba(0,0,0,.1);-moz-box-shadow:0 1px 3px rgba(0,0,0,.1);box-shadow:0 1px 3px rgba(0,0,0,.1)}.img-circle{-webkit-border-radius:500px;-moz-border-radius:500px;border-radius:500px}.row{margin-left:-20px;*zoom:1}.row:before,.row:after{display:table;content:"";line-height:0}.row:after{clear:both}[class*="span"]{float:left;margin-left:20px}.container,.navbar-static-top .container,.navbar-fixed-top .container,.navbar-fixed-bottom .container{width:940px}.span12{width:940px}.span11{width:860px}.span10{width:780px}.span9{width:700px}.span8{width:620px}.span7{width:540px}.span6{width:460px}.span5{width:380px}.span4{width:300px}.span3{width:220px}.span2{width:140px}.span1{width:60px}.offset12{margin-left:980px}.offset11{margin-left:900px}.offset10{margin-left:820px}.offset9{margin-left:740px}.offset8{margin-left:660px}.offset7{margin-left:580px}.offset6{margin-left:500px}.offset5{margin-left:420px}.offset4{margin-left:340px}.offset3{margin-left:260px}.offset2{margin-left:180px}.offset1{margin-left:100px}.row-fluid{width:100%;*zoom:1}.row-fluid:before,.row-fluid:after{display:table;content:"";line-height:0}.row-fluid:after{clear:both}.row-fluid [class*="span"]{display:block;width:100%;min-height:30px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;float:left;margin-left:2.12766%;*margin-left:2.07447%}.row-fluid [class*="span"]:first-child{margin-left:0}.row-fluid .span12{width:100%;*width:99.94681%}.row-fluid .offset12{margin-left:104.25532%;*margin-left:104.14894%}.row-fluid .offset12:first-child{margin-left:102.12766%;*margin-left:102.02128%}.row-fluid .span11{width:91.48936%;*width:91.43617%}.row-fluid .offset11{margin-left:95.74468%;*margin-left:95.6383%}.row-fluid .offset11:first-child{margin-left:93.61702%;*margin-left:93.51064%}.row-fluid .span10{width:82.97872%;*width:82.92553%}.row-fluid .offset10{margin-left:87.23404%;*margin-left:87.12766%}.row-fluid .offset10:first-child{margin-left:85.10638%;*margin-left:85.0%}.row-fluid .span9{width:74.46809%;*width:74.41489%}.row-fluid .offset9{margin-left:78.7234%;*margin-left:78.61702%}.row-fluid .offset9:first-child{margin-left:76.59574%;*margin-left:76.48936%}.row-fluid .span8{width:65.95745%;*width:65.90426%}.row-fluid .offset8{margin-left:70.21277%;*margin-left:70.10638%}.row-fluid .offset8:first-child{margin-left:68.08511%;*margin-left:67.97872%}.row-fluid .span7{width:57.44681%;*width:57.39362%}.row-fluid .offset7{margin-left:61.70213%;*margin-left:61.59574%}.row-fluid .offset7:first-child{margin-left:59.57447%;*margin-left:59.46809%}.row-fluid .span6{width:48.93617%;*width:48.88298%}.row-fluid .offset6{margin-left:53.19149%;*margin-left:53.08511%}.row-fluid .offset6:first-child{margin-left:51.06383%;*margin-left:50.95745%}.row-fluid .span5{width:40.42553%;*width:40.37234%}.row-fluid .offset5{margin-left:44.68085%;*margin-left:44.57447%}.row-fluid .offset5:first-child{margin-left:42.55319%;*margin-left:42.44681%}.row-fluid .span4{width:31.91489%;*width:31.8617%}.row-fluid .offset4{margin-left:36.17021%;*margin-left:36.06383%}.row-fluid .offset4:first-child{margin-left:34.04255%;*margin-left:33.93617%}.row-fluid .span3{width:23.40426%;*width:23.35106%}.row-fluid .offset3{margin-left:27.65957%;*margin-left:27.55319%}.row-fluid .offset3:first-child{margin-left:25.53191%;*margin-left:25.42553%}.row-fluid .span2{width:14.89362%;*width:14.84043%}.row-fluid .offset2{margin-left:19.14894%;*margin-left:19.04255%}.row-fluid .offset2:first-child{margin-left:17.02128%;*margin-left:16.91489%}.row-fluid .span1{width:6.38298%;*width:6.32979%}.row-fluid .offset1{margin-left:10.6383%;*margin-left:10.53191%}.row-fluid .offset1:first-child{margin-left:8.51064%;*margin-left:8.40426%}[class*="span"].hide,.row-fluid [class*="span"].hide{display:none}[class*="span"].pull-right,.row-fluid [class*="span"].pull-right{float:right}.container{margin-right:auto;margin-left:auto;*zoom:1}.container:before,.container:after{display:table;content:"";line-height:0}.container:after{clear:both}.container-fluid{padding-right:20px;padding-left:20px;*zoom:1}.container-fluid:before,.container-fluid:after{display:table;content:"";line-height:0}.container-fluid:after{clear:both}p{margin:0 0 10px}.lead{margin-bottom:20px;font-size:20px;font-weight:200;line-height:30px}small{font-size:85%}strong{font-weight:700}em{font-style:italic}cite{font-style:normal}.muted{color:#999}h1,h2,h3,h4,h5,h6{margin:10px 0;font-family:inherit;font-weight:700;line-height:1;color:inherit;text-rendering:optimizelegibility}h1 small,h2 small,h3 small,h4 small,h5 small,h6 small{font-weight:400;line-height:1;color:#999}h1{font-size:36px;line-height:40px}h2{font-size:30px;line-height:40px}h3{font-size:24px;line-height:40px}h4{font-size:18px;line-height:20px}h5{font-size:14px;line-height:20px}h6{font-size:12px;line-height:20px}h1 small{font-size:24px}h2 small{font-size:18px}h3 small{font-size:14px}h4 small{font-size:14px}.page-header{padding-bottom:9px;margin:20px 0 30px;border-bottom:1px solid #eee}ul,ol{padding:0;margin:0 0 10px 25px}ul ul,ul ol,ol ol,ol ul{margin-bottom:0}li{line-height:20px}ul.unstyled,ol.unstyled{margin-left:0;list-style:none}dl{margin-bottom:20px}dt,dd{line-height:20px}dt{font-weight:700}dd{margin-left:10px}.dl-horizontal dt{float:left;width:120px;clear:left;text-align:right;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.dl-horizontal dd{margin-left:130px}hr{margin:20px 0;border:0;border-top:1px solid #eee;border-bottom:1px solid white}abbr[title]{cursor:help;border-bottom:1px dotted #999}abbr.initialism{font-size:90%;text-transform:uppercase}blockquote{padding:0 0 0 15px;margin:0 0 20px;border-left:5px solid #eee}blockquote p{margin-bottom:0;font-size:16px;font-weight:300;line-height:25px}blockquote small{display:block;line-height:20px;color:#999}blockquote small:before{content:'\2014 \00A0'}blockquote.pull-right{float:right;padding-right:15px;padding-left:0;border-right:5px solid #eee;border-left:0}blockquote.pull-right p,blockquote.pull-right small{text-align:right}blockquote.pull-right small:before{content:''}blockquote.pull-right small:after{content:'\00A0 \2014'}q:before,q:after,blockquote:before,blockquote:after{content:""}address{display:block;margin-bottom:20px;font-style:normal;line-height:20px}code,pre{padding:0 3px 2px;font-family:Monaco,Menlo,Consolas,"Courier New",monospace;font-size:12px;color:#333;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px}code{padding:2px 4px;color:#d14;background-color:#f7f7f9;border:1px solid #e1e1e8}pre{display:block;padding:9.5px;margin:0 0 10px;font-size:13px;line-height:20px;word-break:break-all;word-wrap:break-word;white-space:pre;white-space:pre-wrap;background-color:#f5f5f5;border:1px solid #ccc;border:1px solid rgba(0,0,0,.15);-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px}pre.prettyprint{margin-bottom:20px}pre code{padding:0;color:inherit;background-color:transparent;border:0}.pre-scrollable{max-height:340px;overflow-y:scroll}form{margin:0 0 20px}fieldset{padding:0;margin:0;border:0}legend{display:block;width:100%;padding:0;margin-bottom:20px;font-size:21px;line-height:40px;color:#333;border:0;border-bottom:1px solid #e5e5e5}legend small{font-size:15px;color:#999}label,input,button,select,textarea{font-size:14px;font-weight:400;line-height:20px}input,button,select,textarea{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif}label{display:block;margin-bottom:5px}select,textarea,input[type="text"],input[type="password"],input[type="datetime"],input[type="datetime-local"],input[type="date"],input[type="month"],input[type="time"],input[type="week"],input[type="number"],input[type="email"],input[type="url"],input[type="search"],input[type="tel"],input[type="color"],.uneditable-input{display:inline-block;height:20px;padding:4px 6px;margin-bottom:9px;font-size:14px;line-height:20px;color:#555;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px}input,textarea{width:210px}textarea{height:auto}textarea,input[type="text"],input[type="password"],input[type="datetime"],input[type="datetime-local"],input[type="date"],input[type="month"],input[type="time"],input[type="week"],input[type="number"],input[type="email"],input[type="url"],input[type="search"],input[type="tel"],input[type="color"],.uneditable-input{background-color:#fff;border:1px solid #ccc;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075);-webkit-transition:border linear .2s,box-shadow linear .2s;-moz-transition:border linear .2s,box-shadow linear .2s;-o-transition:border linear .2s,box-shadow linear .2s;transition:border linear .2s,box-shadow linear .2s}textarea:focus,input[type="text"]:focus,input[type="password"]:focus,input[type="datetime"]:focus,input[type="datetime-local"]:focus,input[type="date"]:focus,input[type="month"]:focus,input[type="time"]:focus,input[type="week"]:focus,input[type="number"]:focus,input[type="email"]:focus,input[type="url"]:focus,input[type="search"]:focus,input[type="tel"]:focus,input[type="color"]:focus,.uneditable-input:focus{border-color:rgba(82,168,236,.8);outline:0;outline:thin dotted \9;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(82,168,236,.6);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(82,168,236,.6);box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(82,168,236,.6)}input[type="radio"],input[type="checkbox"]{margin:4px 0 0;*margin-top:0;margin-top:1px \9;line-height:normal;cursor:pointer}input[type="file"],input[type="image"],input[type="submit"],input[type="reset"],input[type="button"],input[type="radio"],input[type="checkbox"]{width:auto}select,input[type="file"]{height:30px;*margin-top:4px;line-height:30px}select{width:220px;border:1px solid #bbb;background-color:#fff}select[multiple],select[size]{height:auto}select:focus,input[type="file"]:focus,input[type="radio"]:focus,input[type="checkbox"]:focus{outline:thin dotted #333;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}.uneditable-input,.uneditable-textarea{color:#999;background-color:#fcfcfc;border-color:#ccc;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.025);-moz-box-shadow:inset 0 1px 2px rgba(0,0,0,.025);box-shadow:inset 0 1px 2px rgba(0,0,0,.025);cursor:not-allowed}.uneditable-input{overflow:hidden;white-space:nowrap}.uneditable-textarea{width:auto;height:auto}input:-moz-placeholder,textarea:-moz-placeholder{color:#999}input:-ms-input-placeholder,textarea:-ms-input-placeholder{color:#999}input::-webkit-input-placeholder,textarea::-webkit-input-placeholder{color:#999}.radio,.checkbox{min-height:18px;padding-left:18px}.radio input[type="radio"],.checkbox input[type="checkbox"]{float:left;margin-left:-18px}.controls>.radio:first-child,.controls>.checkbox:first-child{padding-top:5px}.radio.inline,.checkbox.inline{display:inline-block;padding-top:5px;margin-bottom:0;vertical-align:middle}.radio.inline+.radio.inline,.checkbox.inline+.checkbox.inline{margin-left:10px}.input-mini{width:60px}.input-small{width:90px}.input-medium{width:150px}.input-large{width:210px}.input-xlarge{width:270px}.input-xxlarge{width:530px}input[class*="span"],select[class*="span"],textarea[class*="span"],.uneditable-input[class*="span"],.row-fluid input[class*="span"],.row-fluid select[class*="span"],.row-fluid textarea[class*="span"],.row-fluid .uneditable-input[class*="span"]{float:none;margin-left:0}.input-append input[class*="span"],.input-append .uneditable-input[class*="span"],.input-prepend input[class*="span"],.input-prepend .uneditable-input[class*="span"],.row-fluid input[class*="span"],.row-fluid select[class*="span"],.row-fluid textarea[class*="span"],.row-fluid .uneditable-input[class*="span"],.row-fluid .input-prepend [class*="span"],.row-fluid .input-append [class*="span"]{display:inline-block}input,textarea,.uneditable-input{margin-left:0}.controls-row [class*="span"]+[class*="span"]{margin-left:20px}input.span12,textarea.span12,.uneditable-input.span12{width:926px}input.span11,textarea.span11,.uneditable-input.span11{width:846px}input.span10,textarea.span10,.uneditable-input.span10{width:766px}input.span9,textarea.span9,.uneditable-input.span9{width:686px}input.span8,textarea.span8,.uneditable-input.span8{width:606px}input.span7,textarea.span7,.uneditable-input.span7{width:526px}input.span6,textarea.span6,.uneditable-input.span6{width:446px}input.span5,textarea.span5,.uneditable-input.span5{width:366px}input.span4,textarea.span4,.uneditable-input.span4{width:286px}input.span3,textarea.span3,.uneditable-input.span3{width:206px}input.span2,textarea.span2,.uneditable-input.span2{width:126px}input.span1,textarea.span1,.uneditable-input.span1{width:46px}.controls-row{*zoom:1}.controls-row:before,.controls-row:after{display:table;content:"";line-height:0}.controls-row:after{clear:both}.controls-row [class*="span"]{float:left}input[disabled],select[disabled],textarea[disabled],input[readonly],select[readonly],textarea[readonly]{cursor:not-allowed;background-color:#eee}input[type="radio"][disabled],input[type="checkbox"][disabled],input[type="radio"][readonly],input[type="checkbox"][readonly]{background-color:transparent}.control-group.warning>label,.control-group.warning .help-block,.control-group.warning .help-inline{color:#c09853}.control-group.warning .checkbox,.control-group.warning .radio,.control-group.warning input,.control-group.warning select,.control-group.warning textarea{color:#c09853;border-color:#c09853;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.control-group.warning .checkbox:focus,.control-group.warning .radio:focus,.control-group.warning input:focus,.control-group.warning select:focus,.control-group.warning textarea:focus{border-color:#a47e3c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #dbc59e;-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #dbc59e;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #dbc59e}.control-group.warning .input-prepend .add-on,.control-group.warning .input-append .add-on{color:#c09853;background-color:#fcf8e3;border-color:#c09853}.control-group.error>label,.control-group.error .help-block,.control-group.error .help-inline{color:#b94a48}.control-group.error .checkbox,.control-group.error .radio,.control-group.error input,.control-group.error select,.control-group.error textarea{color:#b94a48;border-color:#b94a48;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.control-group.error .checkbox:focus,.control-group.error .radio:focus,.control-group.error input:focus,.control-group.error select:focus,.control-group.error textarea:focus{border-color:#953b39;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #d59392;-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #d59392;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #d59392}.control-group.error .input-prepend .add-on,.control-group.error .input-append .add-on{color:#b94a48;background-color:#f2dede;border-color:#b94a48}.control-group.success>label,.control-group.success .help-block,.control-group.success .help-inline{color:#468847}.control-group.success .checkbox,.control-group.success .radio,.control-group.success input,.control-group.success select,.control-group.success textarea{color:#468847;border-color:#468847;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.control-group.success .checkbox:focus,.control-group.success .radio:focus,.control-group.success input:focus,.control-group.success select:focus,.control-group.success textarea:focus{border-color:#356635;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #7aba7b;-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #7aba7b;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #7aba7b}.control-group.success .input-prepend .add-on,.control-group.success .input-append .add-on{color:#468847;background-color:#dff0d8;border-color:#468847}input:focus:required:invalid,textarea:focus:required:invalid,select:focus:required:invalid{color:#b94a48;border-color:#ee5f5b}input:focus:required:invalid:focus,textarea:focus:required:invalid:focus,select:focus:required:invalid:focus{border-color:#e9322d;-webkit-box-shadow:0 0 6px #f8b9b7;-moz-box-shadow:0 0 6px #f8b9b7;box-shadow:0 0 6px #f8b9b7}.form-actions{padding:19px 20px 20px;margin-top:20px;margin-bottom:20px;background-color:whitesmoke;border-top:1px solid #e5e5e5;*zoom:1}.form-actions:before,.form-actions:after{display:table;content:"";line-height:0}.form-actions:after{clear:both}.help-block,.help-inline{color:#595959}.help-block{display:block;margin-bottom:10px}.help-inline{display:inline-block;*display:inline;*zoom:1;vertical-align:middle;padding-left:5px}.input-append,.input-prepend{margin-bottom:5px;font-size:0;white-space:nowrap}.input-append input,.input-append select,.input-append .uneditable-input,.input-prepend input,.input-prepend select,.input-prepend .uneditable-input{position:relative;margin-bottom:0;*margin-left:0;font-size:14px;vertical-align:top;-webkit-border-radius:0 3px 3px 0;-moz-border-radius:0 3px 3px 0;border-radius:0 3px 3px 0}.input-append input:focus,.input-append select:focus,.input-append .uneditable-input:focus,.input-prepend input:focus,.input-prepend select:focus,.input-prepend .uneditable-input:focus{z-index:2}.input-append .add-on,.input-prepend .add-on{display:inline-block;width:auto;height:20px;min-width:16px;padding:4px 5px;font-size:14px;font-weight:400;line-height:20px;text-align:center;text-shadow:0 1px 0 white;background-color:#eee;border:1px solid #ccc}.input-append .add-on,.input-append .btn,.input-prepend .add-on,.input-prepend .btn{margin-left:-1px;vertical-align:top;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0}.input-append .active,.input-prepend .active{background-color:#a9dba9;border-color:#46a546}.input-prepend .add-on,.input-prepend .btn{margin-right:-1px}.input-prepend .add-on:first-child,.input-prepend .btn:first-child{-webkit-border-radius:3px 0 0 3px;-moz-border-radius:3px 0 0 3px;border-radius:3px 0 0 3px}.input-append input,.input-append select,.input-append .uneditable-input{-webkit-border-radius:3px 0 0 3px;-moz-border-radius:3px 0 0 3px;border-radius:3px 0 0 3px}.input-append .add-on:last-child,.input-append .btn:last-child{-webkit-border-radius:0 3px 3px 0;-moz-border-radius:0 3px 3px 0;border-radius:0 3px 3px 0}.input-prepend.input-append input,.input-prepend.input-append select,.input-prepend.input-append .uneditable-input{-webkit-border-radius:0;-moz-border-radius:0;border-radius:0}.input-prepend.input-append .add-on:first-child,.input-prepend.input-append .btn:first-child{margin-right:-1px;-webkit-border-radius:3px 0 0 3px;-moz-border-radius:3px 0 0 3px;border-radius:3px 0 0 3px}.input-prepend.input-append .add-on:last-child,.input-prepend.input-append .btn:last-child{margin-left:-1px;-webkit-border-radius:0 3px 3px 0;-moz-border-radius:0 3px 3px 0;border-radius:0 3px 3px 0}input.search-query{padding-right:14px;padding-right:4px \9;padding-left:14px;padding-left:4px \9;margin-bottom:0;-webkit-border-radius:15px;-moz-border-radius:15px;border-radius:15px}.form-search .input-append .search-query,.form-search .input-prepend .search-query{-webkit-border-radius:0;-moz-border-radius:0;border-radius:0}.form-search .input-append .search-query{-webkit-border-radius:14px 0 0 14px;-moz-border-radius:14px 0 0 14px;border-radius:14px 0 0 14px}.form-search .input-append .btn{-webkit-border-radius:0 14px 14px 0;-moz-border-radius:0 14px 14px 0;border-radius:0 14px 14px 0}.form-search .input-prepend .search-query{-webkit-border-radius:0 14px 14px 0;-moz-border-radius:0 14px 14px 0;border-radius:0 14px 14px 0}.form-search .input-prepend .btn{-webkit-border-radius:14px 0 0 14px;-moz-border-radius:14px 0 0 14px;border-radius:14px 0 0 14px}.form-search input,.form-search textarea,.form-search select,.form-search .help-inline,.form-search .uneditable-input,.form-search .input-prepend,.form-search .input-append,.form-inline input,.form-inline textarea,.form-inline select,.form-inline .help-inline,.form-inline .uneditable-input,.form-inline .input-prepend,.form-inline .input-append,.form-horizontal input,.form-horizontal textarea,.form-horizontal select,.form-horizontal .help-inline,.form-horizontal .uneditable-input,.form-horizontal .input-prepend,.form-horizontal .input-append{display:inline-block;*display:inline;*zoom:1;margin-bottom:0;vertical-align:middle}.form-search .hide,.form-inline .hide,.form-horizontal .hide{display:none}.form-search label,.form-inline label,.form-search .btn-group,.form-inline .btn-group{display:inline-block}.form-search .input-append,.form-inline .input-append,.form-search .input-prepend,.form-inline .input-prepend{margin-bottom:0}.form-search .radio,.form-search .checkbox,.form-inline .radio,.form-inline .checkbox{padding-left:0;margin-bottom:0;vertical-align:middle}.form-search .radio input[type="radio"],.form-search .checkbox input[type="checkbox"],.form-inline .radio input[type="radio"],.form-inline .checkbox input[type="checkbox"]{float:left;margin-right:3px;margin-left:0}.control-group{margin-bottom:10px}legend+.control-group{margin-top:20px;-webkit-margin-top-collapse:separate}.form-horizontal .control-group{margin-bottom:20px;*zoom:1}.form-horizontal .control-group:before,.form-horizontal .control-group:after{display:table;content:"";line-height:0}.form-horizontal .control-group:after{clear:both}.form-horizontal .control-label{float:left;width:140px;padding-top:5px;text-align:right}.form-horizontal .controls{*display:inline-block;*padding-left:20px;margin-left:160px;*margin-left:0}.form-horizontal .controls:first-child{*padding-left:160px}.form-horizontal .help-block{margin-top:10px;margin-bottom:0}.form-horizontal .form-actions{padding-left:160px}table{max-width:100%;background-color:transparent;border-collapse:collapse;border-spacing:0}.table{width:100%;margin-bottom:20px}.table th,.table td{padding:8px;line-height:20px;text-align:left;vertical-align:top;border-top:1px solid #ddd}.table th{font-weight:700}.table thead th{vertical-align:bottom}.table caption+thead tr:first-child th,.table caption+thead tr:first-child td,.table colgroup+thead tr:first-child th,.table colgroup+thead tr:first-child td,.table thead:first-child tr:first-child th,.table thead:first-child tr:first-child td{border-top:0}.table tbody+tbody{border-top:2px solid #ddd}.table-condensed th,.table-condensed td{padding:4px 5px}.table-bordered,#topThree,#bottomThree{border:1px solid #ddd;border-collapse:separate;*border-collapse:collapse;border-left:0;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px}.table-bordered th,#topThree th,#bottomThree th,.table-bordered td,#topThree td,#bottomThree td{border-left:1px solid #ddd}.table-bordered caption+thead tr:first-child th,#topThree caption+thead tr:first-child th,#bottomThree caption+thead tr:first-child th,.table-bordered caption+tbody tr:first-child th,#topThree caption+tbody tr:first-child th,#bottomThree caption+tbody tr:first-child th,.table-bordered caption+tbody tr:first-child td,#topThree caption+tbody tr:first-child td,#bottomThree caption+tbody tr:first-child td,.table-bordered colgroup+thead tr:first-child th,#topThree colgroup+thead tr:first-child th,#bottomThree colgroup+thead tr:first-child th,.table-bordered colgroup+tbody tr:first-child th,#topThree colgroup+tbody tr:first-child th,#bottomThree colgroup+tbody tr:first-child th,.table-bordered colgroup+tbody tr:first-child td,#topThree colgroup+tbody tr:first-child td,#bottomThree colgroup+tbody tr:first-child td,.table-bordered thead:first-child tr:first-child th,#topThree thead:first-child tr:first-child th,#bottomThree thead:first-child tr:first-child th,.table-bordered tbody:first-child tr:first-child th,#topThree tbody:first-child tr:first-child th,#bottomThree tbody:first-child tr:first-child th,.table-bordered tbody:first-child tr:first-child td,#topThree tbody:first-child tr:first-child td,#bottomThree tbody:first-child tr:first-child td{border-top:0}.table-bordered thead:first-child tr:first-child th:first-child,#topThree thead:first-child tr:first-child th:first-child,#bottomThree thead:first-child tr:first-child th:first-child,.table-bordered tbody:first-child tr:first-child td:first-child,#topThree tbody:first-child tr:first-child td:first-child,#bottomThree tbody:first-child tr:first-child td:first-child{-webkit-border-top-left-radius:4px;border-top-left-radius:4px;-moz-border-radius-topleft:4px}.table-bordered thead:first-child tr:first-child th:last-child,#topThree thead:first-child tr:first-child th:last-child,#bottomThree thead:first-child tr:first-child th:last-child,.table-bordered tbody:first-child tr:first-child td:last-child,#topThree tbody:first-child tr:first-child td:last-child,#bottomThree tbody:first-child tr:first-child td:last-child{-webkit-border-top-right-radius:4px;border-top-right-radius:4px;-moz-border-radius-topright:4px}.table-bordered thead:last-child tr:last-child th:first-child,#topThree thead:last-child tr:last-child th:first-child,#bottomThree thead:last-child tr:last-child th:first-child,.table-bordered tbody:last-child tr:last-child td:first-child,#topThree tbody:last-child tr:last-child td:first-child,#bottomThree tbody:last-child tr:last-child td:first-child,.table-bordered tfoot:last-child tr:last-child td:first-child,#topThree tfoot:last-child tr:last-child td:first-child,#bottomThree tfoot:last-child tr:last-child td:first-child{-webkit-border-radius:0 0 0 4px;-moz-border-radius:0 0 0 4px;border-radius:0 0 0 4px;-webkit-border-bottom-left-radius:4px;border-bottom-left-radius:4px;-moz-border-radius-bottomleft:4px}.table-bordered thead:last-child tr:last-child th:last-child,#topThree thead:last-child tr:last-child th:last-child,#bottomThree thead:last-child tr:last-child th:last-child,.table-bordered tbody:last-child tr:last-child td:last-child,#topThree tbody:last-child tr:last-child td:last-child,#bottomThree tbody:last-child tr:last-child td:last-child,.table-bordered tfoot:last-child tr:last-child td:last-child,#topThree tfoot:last-child tr:last-child td:last-child,#bottomThree tfoot:last-child tr:last-child td:last-child{-webkit-border-bottom-right-radius:4px;border-bottom-right-radius:4px;-moz-border-radius-bottomright:4px}.table-bordered caption+thead tr:first-child th:first-child,#topThree caption+thead tr:first-child th:first-child,#bottomThree caption+thead tr:first-child th:first-child,.table-bordered caption+tbody tr:first-child td:first-child,#topThree caption+tbody tr:first-child td:first-child,#bottomThree caption+tbody tr:first-child td:first-child,.table-bordered colgroup+thead tr:first-child th:first-child,#topThree colgroup+thead tr:first-child th:first-child,#bottomThree colgroup+thead tr:first-child th:first-child,.table-bordered colgroup+tbody tr:first-child td:first-child,#topThree colgroup+tbody tr:first-child td:first-child,#bottomThree colgroup+tbody tr:first-child td:first-child{-webkit-border-top-left-radius:4px;border-top-left-radius:4px;-moz-border-radius-topleft:4px}.table-bordered caption+thead tr:first-child th:last-child,#topThree caption+thead tr:first-child th:last-child,#bottomThree caption+thead tr:first-child th:last-child,.table-bordered caption+tbody tr:first-child td:last-child,#topThree caption+tbody tr:first-child td:last-child,#bottomThree caption+tbody tr:first-child td:last-child,.table-bordered colgroup+thead tr:first-child th:last-child,#topThree colgroup+thead tr:first-child th:last-child,#bottomThree colgroup+thead tr:first-child th:last-child,.table-bordered colgroup+tbody tr:first-child td:last-child,#topThree colgroup+tbody tr:first-child td:last-child,#bottomThree colgroup+tbody tr:first-child td:last-child{-webkit-border-top-right-radius:4px;border-top-right-radius:4px;-moz-border-right-topleft:4px}.table-striped tbody tr:nth-child(odd) td,.table-striped tbody tr:nth-child(odd) th{background-color:#f9f9f9}.table-hover tbody tr:hover td,#topThree tbody tr:hover td,#bottomThree tbody tr:hover td,.table-hover tbody tr:hover th,#topThree tbody tr:hover th,#bottomThree tbody tr:hover th{background-color:whitesmoke}table [class*=span],.row-fluid table [class*=span]{display:table-cell;float:none;margin-left:0}table .span1{float:none;width:44px;margin-left:0}table .span2{float:none;width:124px;margin-left:0}table .span3{float:none;width:204px;margin-left:0}table .span4{float:none;width:284px;margin-left:0}table .span5{float:none;width:364px;margin-left:0}table .span6{float:none;width:444px;margin-left:0}table .span7{float:none;width:524px;margin-left:0}table .span8{float:none;width:604px;margin-left:0}table .span9{float:none;width:684px;margin-left:0}table .span10{float:none;width:764px;margin-left:0}table .span11{float:none;width:844px;margin-left:0}table .span12{float:none;width:924px;margin-left:0}table .span13{float:none;width:1004px;margin-left:0}table .span14{float:none;width:1084px;margin-left:0}table .span15{float:none;width:1164px;margin-left:0}table .span16{float:none;width:1244px;margin-left:0}table .span17{float:none;width:1324px;margin-left:0}table .span18{float:none;width:1404px;margin-left:0}table .span19{float:none;width:1484px;margin-left:0}table .span20{float:none;width:1564px;margin-left:0}table .span21{float:none;width:1644px;margin-left:0}table .span22{float:none;width:1724px;margin-left:0}table .span23{float:none;width:1804px;margin-left:0}table .span24{float:none;width:1884px;margin-left:0}.table tbody tr.success td{background-color:#dff0d8}.table tbody tr.error td{background-color:#f2dede}.table tbody tr.info td{background-color:#d9edf7}[class^="icon-"],[class*=" icon-"]{display:inline-block;width:14px;height:14px;*margin-right:.3em;line-height:14px;vertical-align:text-top;background-image:url('/app/images/glyphicons-halflings.png?1357918656');background-position:14px 14px;background-repeat:no-repeat;margin-top:1px}.icon-white,.nav>.active>a>[class^="icon-"],.nav>.active>a>[class*=" icon-"],.dropdown-menu>li>a:hover>[class^="icon-"],.dropdown-menu>li>a:hover>[class*=" icon-"],.dropdown-menu>.active>a>[class^="icon-"],.dropdown-menu>.active>a>[class*=" icon-"]{background-image:url('/app/images/glyphicons-halflings-white.png?1357918656')}.icon-glass{background-position:0 0}.icon-music{background-position:-24px 0}.icon-search{background-position:-48px 0}.icon-envelope{background-position:-72px 0}.icon-heart{background-position:-96px 0}.icon-star{background-position:-120px 0}.icon-star-empty{background-position:-144px 0}.icon-user{background-position:-168px 0}.icon-film{background-position:-192px 0}.icon-th-large{background-position:-216px 0}.icon-th{background-position:-240px 0}.icon-th-list{background-position:-264px 0}.icon-ok{background-position:-288px 0}.icon-remove{background-position:-312px 0}.icon-zoom-in{background-position:-336px 0}.icon-zoom-out{background-position:-360px 0}.icon-off{background-position:-384px 0}.icon-signal{background-position:-408px 0}.icon-cog{background-position:-432px 0}.icon-trash{background-position:-456px 0}.icon-home{background-position:0 -24px}.icon-file{background-position:-24px -24px}.icon-time{background-position:-48px -24px}.icon-road{background-position:-72px -24px}.icon-download-alt{background-position:-96px -24px}.icon-download{background-position:-120px -24px}.icon-upload{background-position:-144px -24px}.icon-inbox{background-position:-168px -24px}.icon-play-circle{background-position:-192px -24px}.icon-repeat{background-position:-216px -24px}.icon-refresh{background-position:-240px -24px}.icon-list-alt{background-position:-264px -24px}.icon-lock{background-position:-287px -24px}.icon-flag{background-position:-312px -24px}.icon-headphones{background-position:-336px -24px}.icon-volume-off{background-position:-360px -24px}.icon-volume-down{background-position:-384px -24px}.icon-volume-up{background-position:-408px -24px}.icon-qrcode{background-position:-432px -24px}.icon-barcode{background-position:-456px -24px}.icon-tag{background-position:0 -48px}.icon-tags{background-position:-25px -48px}.icon-book{background-position:-48px -48px}.icon-bookmark{background-position:-72px -48px}.icon-print{background-position:-96px -48px}.icon-camera{background-position:-120px -48px}.icon-font{background-position:-144px -48px}.icon-bold{background-position:-167px -48px}.icon-italic{background-position:-192px -48px}.icon-text-height{background-position:-216px -48px}.icon-text-width{background-position:-240px -48px}.icon-align-left{background-position:-264px -48px}.icon-align-center{background-position:-288px -48px}.icon-align-right{background-position:-312px -48px}.icon-align-justify{background-position:-336px -48px}.icon-list{background-position:-360px -48px}.icon-indent-left{background-position:-384px -48px}.icon-indent-right{background-position:-408px -48px}.icon-facetime-video{background-position:-432px -48px}.icon-picture{background-position:-456px -48px}.icon-pencil{background-position:0 -72px}.icon-map-marker{background-position:-24px -72px}.icon-adjust{background-position:-48px -72px}.icon-tint{background-position:-72px -72px}.icon-edit{background-position:-96px -72px}.icon-share{background-position:-120px -72px}.icon-check{background-position:-144px -72px}.icon-move{background-position:-168px -72px}.icon-step-backward{background-position:-192px -72px}.icon-fast-backward{background-position:-216px -72px}.icon-backward{background-position:-240px -72px}.icon-play{background-position:-264px -72px}.icon-pause{background-position:-288px -72px}.icon-stop{background-position:-312px -72px}.icon-forward{background-position:-336px -72px}.icon-fast-forward{background-position:-360px -72px}.icon-step-forward{background-position:-384px -72px}.icon-eject{background-position:-408px -72px}.icon-chevron-left{background-position:-432px -72px}.icon-chevron-right{background-position:-456px -72px}.icon-plus-sign{background-position:0 -96px}.icon-minus-sign{background-position:-24px -96px}.icon-remove-sign{background-position:-48px -96px}.icon-ok-sign{background-position:-72px -96px}.icon-question-sign{background-position:-96px -96px}.icon-info-sign{background-position:-120px -96px}.icon-screenshot{background-position:-144px -96px}.icon-remove-circle{background-position:-168px -96px}.icon-ok-circle{background-position:-192px -96px}.icon-ban-circle{background-position:-216px -96px}.icon-arrow-left{background-position:-240px -96px}.icon-arrow-right{background-position:-264px -96px}.icon-arrow-up{background-position:-289px -96px}.icon-arrow-down{background-position:-312px -96px}.icon-share-alt{background-position:-336px -96px}.icon-resize-full{background-position:-360px -96px}.icon-resize-small{background-position:-384px -96px}.icon-plus{background-position:-408px -96px}.icon-minus{background-position:-433px -96px}.icon-asterisk{background-position:-456px -96px}.icon-exclamation-sign{background-position:0 -120px}.icon-gift{background-position:-24px -120px}.icon-leaf{background-position:-48px -120px}.icon-fire{background-position:-72px -120px}.icon-eye-open{background-position:-96px -120px}.icon-eye-close{background-position:-120px -120px}.icon-warning-sign{background-position:-144px -120px}.icon-plane{background-position:-168px -120px}.icon-calendar{background-position:-192px -120px}.icon-random{background-position:-216px -120px;width:16px}.icon-comment{background-position:-240px -120px}.icon-magnet{background-position:-264px -120px}.icon-chevron-up{background-position:-288px -120px}.icon-chevron-down{background-position:-313px -119px}.icon-retweet{background-position:-336px -120px}.icon-shopping-cart{background-position:-360px -120px}.icon-folder-close{background-position:-384px -120px}.icon-folder-open{background-position:-408px -120px;width:16px}.icon-resize-vertical{background-position:-432px -119px}.icon-resize-horizontal{background-position:-456px -118px}.icon-hdd{background-position:0 -144px}.icon-bullhorn{background-position:-24px -144px}.icon-bell{background-position:-48px -144px}.icon-certificate{background-position:-72px -144px}.icon-thumbs-up{background-position:-96px -144px}.icon-thumbs-down{background-position:-120px -144px}.icon-hand-right{background-position:-144px -144px}.icon-hand-left{background-position:-168px -144px}.icon-hand-up{background-position:-192px -144px}.icon-hand-down{background-position:-216px -144px}.icon-circle-arrow-right{background-position:-240px -144px}.icon-circle-arrow-left{background-position:-264px -144px}.icon-circle-arrow-up{background-position:-288px -144px}.icon-circle-arrow-down{background-position:-312px -144px}.icon-globe{background-position:-336px -144px}.icon-wrench{background-position:-360px -144px}.icon-tasks{background-position:-384px -144px}.icon-filter{background-position:-408px -144px}.icon-briefcase{background-position:-432px -144px}.icon-fullscreen{background-position:-456px -144px}.dropup,.dropdown{position:relative}.dropdown-toggle{*margin-bottom:-3px}.dropdown-toggle:active,.open .dropdown-toggle{outline:0}.caret{display:inline-block;width:0;height:0;vertical-align:top;border-top:4px solid black;border-right:4px solid transparent;border-left:4px solid transparent;content:""}.dropdown .caret{margin-top:8px;margin-left:2px}.dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:160px;padding:5px 0;margin:2px 0 0;list-style:none;background-color:#fff;border:1px solid #ccc;border:1px solid rgba(0,0,0,.2);*border-right-width:2px;*border-bottom-width:2px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;-webkit-box-shadow:0 5px 10px rgba(0,0,0,.2);-moz-box-shadow:0 5px 10px rgba(0,0,0,.2);box-shadow:0 5px 10px rgba(0,0,0,.2);-webkit-background-clip:padding-box;-moz-background-clip:padding;background-clip:padding-box}.dropdown-menu.pull-right{right:0;left:auto}.dropdown-menu .divider{*width:100%;height:1px;margin:9px 1px;*margin:-5px 0 5px;overflow:hidden;background-color:#e5e5e5;border-bottom:1px solid white}.dropdown-menu a{display:block;padding:3px 20px;clear:both;font-weight:400;line-height:20px;color:#333;white-space:nowrap}.dropdown-menu li>a:hover,.dropdown-menu li>a:focus,.dropdown-submenu:hover>a{text-decoration:none;color:#fff;background-color:#08c;background-color:#0081c2;background-image:-moz-linear-gradient(top, #08c, #0077b3);background-image:-webkit-gradient(linear,0 0,0 100%,from( #08c),to( #0077b3));background-image:-webkit-linear-gradient(top, #08c, #0077b3);background-image:-o-linear-gradient(top, #08c, #0077b3);background-image:linear-gradient(to bottom, #08c, #0077b3);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#0085c7', endColorstr='#0074ad', GradientType=0)}.dropdown-menu .active>a,.dropdown-menu .active>a:hover{color:#fff;text-decoration:none;outline:0;background-color:#08c;background-color:#0081c2;background-image:-moz-linear-gradient(top, #08c, #0077b3);background-image:-webkit-gradient(linear,0 0,0 100%,from( #08c),to( #0077b3));background-image:-webkit-linear-gradient(top, #08c, #0077b3);background-image:-o-linear-gradient(top, #08c, #0077b3);background-image:linear-gradient(to bottom, #08c, #0077b3);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#0085c7', endColorstr='#0074ad', GradientType=0)}.dropdown-menu .disabled>a,.dropdown-menu .disabled>a:hover{color:#999}.dropdown-menu .disabled>a:hover{text-decoration:none;background-color:transparent;cursor:default}.open{*z-index:1000}.open>.dropdown-menu{display:block}.pull-right>.dropdown-menu{right:0;left:auto}.dropup .caret,.navbar-fixed-bottom .dropdown .caret{border-top:0;border-bottom:4px solid black;content:"\2191"}.dropup .dropdown-menu,.navbar-fixed-bottom .dropdown .dropdown-menu{top:auto;bottom:100%;margin-bottom:1px}.dropdown-submenu{position:relative}.dropdown-submenu>.dropdown-menu{top:0;left:100%;margin-top:-6px;margin-left:-1px;-webkit-border-radius:0 6px 6px 6px;-moz-border-radius:0 6px 6px 6px;border-radius:0 6px 6px 6px}.dropdown-submenu:hover .dropdown-menu{display:block}.dropdown-submenu>a:after{display:block;content:" ";float:right;width:0;height:0;border-color:transparent;border-style:solid;border-width:5px 0 5px 5px;border-left-color:#ccc;margin-top:5px;margin-right:-10px}.dropdown-submenu:hover>a:after{border-left-color:#fff}.dropdown .dropdown-menu .nav-header{padding-left:20px;padding-right:20px}.typeahead{margin-top:2px;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px}.well{min-height:20px;padding:19px;margin-bottom:20px;background-color:whitesmoke;border:1px solid #e3e3e3;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.05);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,.05);box-shadow:inset 0 1px 1px rgba(0,0,0,.05)}.well blockquote{border-color:#ddd;border-color:rgba(0,0,0,.15)}.well-large{padding:24px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px}.well-small{padding:9px;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px}.fade{opacity:0;filter:alpha(opacity=0);-webkit-transition:opacity .15s linear;-moz-transition:opacity .15s linear;-o-transition:opacity .15s linear;transition:opacity .15s linear}.fade.in{opacity:1;filter:alpha(opacity=100)}.collapse{position:relative;height:0;overflow:hidden;overflow:visible \9;-webkit-transition:height .35s ease;-moz-transition:height .35s ease;-o-transition:height .35s ease;transition:height .35s ease}.collapse.in{height:auto}.close{float:right;font-size:20px;font-weight:700;line-height:20px;color:#000;text-shadow:0 1px 0 white;opacity:.2;filter:alpha(opacity=20)}.close:hover{color:#000;text-decoration:none;cursor:pointer;opacity:.4;filter:alpha(opacity=40)}button.close{padding:0;cursor:pointer;background:transparent;border:0;-webkit-appearance:none}.btn{display:inline-block;*display:inline;*zoom:1;padding:4px 14px;margin-bottom:0;font-size:14px;line-height:20px;*line-height:20px;text-align:center;vertical-align:middle;cursor:pointer;color:#333;text-shadow:0 1px 1px rgba(255,255,255,.75);background-color:whitesmoke;background-image:-moz-linear-gradient(top,white, #e6e6e6);background-image:-webkit-gradient(linear,0 0,0 100%,from(white),to( #e6e6e6));background-image:-webkit-linear-gradient(top,white, #e6e6e6);background-image:-o-linear-gradient(top,white, #e6e6e6);background-image:linear-gradient(to bottom, #fff, #e6e6e6);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fcfcfc', endColorstr='#e3e3e3', GradientType=0);border-color:#e6e6e6 #e6e6e6 #bfbfbf;border-color:rgba(0,0,0,.1) rgba(0,0,0,.1) rgba(0,0,0,.25);*background-color:#e6e6e6;filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);border:1px solid #bbb;*border:0;border-bottom-color:#a2a2a2;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;*margin-left:.3em;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.2),0 1px 2px rgba(0,0,0,.05);-moz-box-shadow:inset 0 1px 0 rgba(255,255,255,.2),0 1px 2px rgba(0,0,0,.05);box-shadow:inset 0 1px 0 rgba(255,255,255,.2),0 1px 2px rgba(0,0,0,.05)}.btn:hover,.btn:active,.btn.active,.btn.disabled,.btn[disabled]{color:#333;background-color:#e6e6e6;*background-color:#d9d9d9}.btn:active,.btn.active{background-color:#ccc \9}.btn:first-child{*margin-left:0}.btn:hover{color:#333;text-decoration:none;background-color:#e6e6e6;*background-color:#d9d9d9;background-position:0 -15px;-webkit-transition:background-position .1s linear;-moz-transition:background-position .1s linear;-o-transition:background-position .1s linear;transition:background-position .1s linear}.btn:focus{outline:thin dotted #333;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}.btn.active,.btn:active{background-color:#e6e6e6;background-color:#d9d9d9 \9;background-image:none;outline:0;-webkit-box-shadow:inset 0 2px 4px rgba(0,0,0,.15),0 1px 2px rgba(0,0,0,.05);-moz-box-shadow:inset 0 2px 4px rgba(0,0,0,.15),0 1px 2px rgba(0,0,0,.05);box-shadow:inset 0 2px 4px rgba(0,0,0,.15),0 1px 2px rgba(0,0,0,.05)}.btn.disabled,.btn[disabled]{cursor:default;background-color:#e6e6e6;background-image:none;opacity:.65;filter:alpha(opacity=65);-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none}.btn-large{padding:9px 14px;font-size:16px;line-height:normal;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px}.btn-large [class^="icon-"]{margin-top:2px}.btn-small{padding:3px 9px;font-size:12px;line-height:18px}.btn-small [class^="icon-"]{margin-top:0}.btn-mini{padding:2px 6px;font-size:11px;line-height:16px}.btn-block{display:block;width:100%;padding-left:0;padding-right:0;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.btn-block+.btn-block{margin-top:5px}.btn-primary.active,.btn-warning.active,.btn-danger.active,.btn-success.active,.btn-info.active,.btn-inverse.active{color:rgba(255,255,255,.75)}.btn{border-color:#c5c5c5;border-color:rgba(0,0,0,.15) rgba(0,0,0,.15) rgba(0,0,0,.25)}.btn-primary{color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,.25);background-color:#006ecc;background-image:-moz-linear-gradient(top, #08c, #04c);background-image:-webkit-gradient(linear,0 0,0 100%,from( #08c),to( #04c));background-image:-webkit-linear-gradient(top, #08c, #04c);background-image:-o-linear-gradient(top, #08c, #04c);background-image:linear-gradient(to bottom, #08c, #04c);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#0085c7', endColorstr='#0042c7', GradientType=0);border-color:#04c #0044cc #002a80;border-color:rgba(0,0,0,.1) rgba(0,0,0,.1) rgba(0,0,0,.25);*background-color:#04c;filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.btn-primary:hover,.btn-primary:active,.btn-primary.active,.btn-primary.disabled,.btn-primary[disabled]{color:#fff;background-color:#04c;*background-color:#003bb3}.btn-primary:active,.btn-primary.active{background-color:#039 \9}.btn-warning{color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,.25);background-color:#f9a834;background-image:-moz-linear-gradient(top, #fbb450, #f89406);background-image:-webkit-gradient(linear,0 0,0 100%,from( #fbb450),to( #f89406));background-image:-webkit-linear-gradient(top, #fbb450, #f89406);background-image:-o-linear-gradient(top, #fbb450, #f89406);background-image:linear-gradient(to bottom, #fbb450, #f89406);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fbb24b', endColorstr='#f39106', GradientType=0);border-color:#f89406 #f89406 #ad6704;border-color:rgba(0,0,0,.1) rgba(0,0,0,.1) rgba(0,0,0,.25);*background-color:#f89406;filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.btn-warning:hover,.btn-warning:active,.btn-warning.active,.btn-warning.disabled,.btn-warning[disabled]{color:#fff;background-color:#f89406;*background-color:#df8505}.btn-warning:active,.btn-warning.active{background-color:#c67605 \9}.btn-danger{color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,.25);background-color:#db4f4a;background-image:-moz-linear-gradient(top, #ee5f5b, #bd362f);background-image:-webkit-gradient(linear,0 0,0 100%,from( #ee5f5b),to( #bd362f));background-image:-webkit-linear-gradient(top, #ee5f5b, #bd362f);background-image:-o-linear-gradient(top, #ee5f5b, #bd362f);background-image:linear-gradient(to bottom, #ee5f5b, #bd362f);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ee5a56', endColorstr='#b9352e', GradientType=0);border-color:#bd362f #bd362f #802420;border-color:rgba(0,0,0,.1) rgba(0,0,0,.1) rgba(0,0,0,.25);*background-color:#bd362f;filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.btn-danger:hover,.btn-danger:active,.btn-danger.active,.btn-danger.disabled,.btn-danger[disabled]{color:#fff;background-color:#bd362f;*background-color:#a9302a}.btn-danger:active,.btn-danger.active{background-color:#942a25 \9}.btn-success{color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,.25);background-color:#5bb75b;background-image:-moz-linear-gradient(top, #62c462, #51a351);background-image:-webkit-gradient(linear,0 0,0 100%,from( #62c462),to( #51a351));background-image:-webkit-linear-gradient(top, #62c462, #51a351);background-image:-o-linear-gradient(top, #62c462, #51a351);background-image:linear-gradient(to bottom, #62c462, #51a351);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#5ec35e', endColorstr='#4fa04f', GradientType=0);border-color:#51a351 #51a351 #387038;border-color:rgba(0,0,0,.1) rgba(0,0,0,.1) rgba(0,0,0,.25);*background-color:#51a351;filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.btn-success:hover,.btn-success:active,.btn-success.active,.btn-success.disabled,.btn-success[disabled]{color:#fff;background-color:#51a351;*background-color:#499249}.btn-success:active,.btn-success.active{background-color:#408140 \9}.btn-info{color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,.25);background-color:#4ab0ce;background-image:-moz-linear-gradient(top, #5bc0de, #2f96b4);background-image:-webkit-gradient(linear,0 0,0 100%,from( #5bc0de),to( #2f96b4));background-image:-webkit-linear-gradient(top, #5bc0de, #2f96b4);background-image:-o-linear-gradient(top, #5bc0de, #2f96b4);background-image:linear-gradient(to bottom, #5bc0de, #2f96b4);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#57bedd', endColorstr='#2e93b0', GradientType=0);border-color:#2f96b4 #2f96b4 #1f6377;border-color:rgba(0,0,0,.1) rgba(0,0,0,.1) rgba(0,0,0,.25);*background-color:#2f96b4;filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.btn-info:hover,.btn-info:active,.btn-info.active,.btn-info.disabled,.btn-info[disabled]{color:#fff;background-color:#2f96b4;*background-color:#2a85a0}.btn-info:active,.btn-info.active{background-color:#24748c \9}.btn-inverse{color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,.25);background-color:#373737;background-image:-moz-linear-gradient(top, #444, #222);background-image:-webkit-gradient(linear,0 0,0 100%,from( #444),to( #222));background-image:-webkit-linear-gradient(top, #444, #222);background-image:-o-linear-gradient(top, #444, #222);background-image:linear-gradient(to bottom, #444, #222);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#414141', endColorstr='#1f1f1f', GradientType=0);border-color:#222 #222222 black;border-color:rgba(0,0,0,.1) rgba(0,0,0,.1) rgba(0,0,0,.25);*background-color:#222;filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.btn-inverse:hover,.btn-inverse:active,.btn-inverse.active,.btn-inverse.disabled,.btn-inverse[disabled]{color:#fff;background-color:#222;*background-color:#151515}.btn-inverse:active,.btn-inverse.active{background-color:#090909 \9}button.btn,input[type="submit"].btn{*padding-top:3px;*padding-bottom:3px}button.btn::-moz-focus-inner,input[type="submit"].btn::-moz-focus-inner{padding:0;border:0}button.btn.btn-large,input[type="submit"].btn.btn-large{*padding-top:7px;*padding-bottom:7px}button.btn.btn-small,input[type="submit"].btn.btn-small{*padding-top:3px;*padding-bottom:3px}button.btn.btn-mini,input[type="submit"].btn.btn-mini{*padding-top:1px;*padding-bottom:1px}.btn-link,.btn-link:active{background-color:transparent;background-image:none;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none}.btn-link{border-color:transparent;cursor:pointer;color:#08c;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0}.btn-link:hover{color:#005580;text-decoration:underline;background-color:transparent}.btn-group{position:relative;font-size:0;white-space:nowrap;*margin-left:.3em}.btn-group:first-child{*margin-left:0}.btn-group+.btn-group{margin-left:5px}.btn-toolbar{font-size:0;margin-top:10px;margin-bottom:10px}.btn-toolbar .btn-group{display:inline-block;*display:inline;*zoom:1}.btn-toolbar .btn+.btn,.btn-toolbar .btn-group+.btn,.btn-toolbar .btn+.btn-group{margin-left:5px}.btn-group>.btn{position:relative;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0}.btn-group>.btn+.btn{margin-left:-1px}.btn-group>.btn,.btn-group>.dropdown-menu{font-size:14px}.btn-group>.btn-mini{font-size:11px}.btn-group>.btn-small{font-size:12px}.btn-group>.btn-large{font-size:16px}.btn-group>.btn:first-child{margin-left:0;-webkit-border-top-left-radius:4px;-moz-border-radius-topleft:4px;border-top-left-radius:4px;-webkit-border-bottom-left-radius:4px;-moz-border-radius-bottomleft:4px;border-bottom-left-radius:4px}.btn-group>.btn:last-child,.btn-group>.dropdown-toggle{-webkit-border-top-right-radius:4px;-moz-border-radius-topright:4px;border-top-right-radius:4px;-webkit-border-bottom-right-radius:4px;-moz-border-radius-bottomright:4px;border-bottom-right-radius:4px}.btn-group>.btn.large:first-child{margin-left:0;-webkit-border-top-left-radius:6px;-moz-border-radius-topleft:6px;border-top-left-radius:6px;-webkit-border-bottom-left-radius:6px;-moz-border-radius-bottomleft:6px;border-bottom-left-radius:6px}.btn-group>.btn.large:last-child,.btn-group>.large.dropdown-toggle{-webkit-border-top-right-radius:6px;-moz-border-radius-topright:6px;border-top-right-radius:6px;-webkit-border-bottom-right-radius:6px;-moz-border-radius-bottomright:6px;border-bottom-right-radius:6px}.btn-group>.btn:hover,.btn-group>.btn:focus,.btn-group>.btn:active,.btn-group>.btn.active{z-index:2}.btn-group .dropdown-toggle:active,.btn-group.open .dropdown-toggle{outline:0}.btn-group>.btn+.dropdown-toggle{padding-left:8px;padding-right:8px;-webkit-box-shadow:inset 1px 0 0 rgba(255,255,255,.125),inset 0 1px 0 rgba(255,255,255,.2),0 1px 2px rgba(0,0,0,.05);-moz-box-shadow:inset 1px 0 0 rgba(255,255,255,.125),inset 0 1px 0 rgba(255,255,255,.2),0 1px 2px rgba(0,0,0,.05);box-shadow:inset 1px 0 0 rgba(255,255,255,.125),inset 0 1px 0 rgba(255,255,255,.2),0 1px 2px rgba(0,0,0,.05);*padding-top:5px;*padding-bottom:5px}.btn-group>.btn-mini+.dropdown-toggle{*padding-left:2px;*padding-right:2px}.btn-group>.btn-small+.dropdown-toggle{*padding-top:5px;*padding-bottom:4px}.btn-group>.btn-large+.dropdown-toggle{*padding-left:7px;*padding-right:7px}.btn-group.open .dropdown-toggle{background-image:none;-webkit-box-shadow:inset 0 2px 4px rgba(0,0,0,.15),0 1px 2px rgba(0,0,0,.05);-moz-box-shadow:inset 0 2px 4px rgba(0,0,0,.15),0 1px 2px rgba(0,0,0,.05);box-shadow:inset 0 2px 4px rgba(0,0,0,.15),0 1px 2px rgba(0,0,0,.05)}.btn-group.open .btn.dropdown-toggle{background-color:#e6e6e6}.btn-group.open .btn-primary.dropdown-toggle{background-color:#04c}.btn-group.open .btn-warning.dropdown-toggle{background-color:#f89406}.btn-group.open .btn-danger.dropdown-toggle{background-color:#bd362f}.btn-group.open .btn-success.dropdown-toggle{background-color:#51a351}.btn-group.open .btn-info.dropdown-toggle{background-color:#2f96b4}.btn-group.open .btn-inverse.dropdown-toggle{background-color:#222}.btn .caret{margin-top:8px;margin-left:0}.btn-mini .caret,.btn-small .caret,.btn-large .caret{margin-top:6px}.btn-large .caret{border-left-width:5px;border-right-width:5px;border-top-width:5px}.dropup .btn-large .caret{border-bottom:5px solid black;border-top:0}.btn-primary .caret,.btn-warning .caret,.btn-danger .caret,.btn-info .caret,.btn-success .caret,.btn-inverse .caret{border-top-color:#fff;border-bottom-color:#fff}.btn-group-vertical{display:inline-block;*display:inline;*zoom:1}.btn-group-vertical .btn{display:block;float:none;width:100%;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0}.btn-group-vertical .btn+.btn{margin-left:0;margin-top:-1px}.btn-group-vertical .btn:first-child{-webkit-border-radius:4px 4px 0 0;-moz-border-radius:4px 4px 0 0;border-radius:4px 4px 0 0}.btn-group-vertical .btn:last-child{-webkit-border-radius:0 0 4px 4px;-moz-border-radius:0 0 4px 4px;border-radius:0 0 4px 4px}.btn-group-vertical .btn-large:first-child{-webkit-border-radius:6px 6px 0 0;-moz-border-radius:6px 6px 0 0;border-radius:6px 6px 0 0}.btn-group-vertical .btn-large:last-child{-webkit-border-radius:0 0 6px 6px;-moz-border-radius:0 0 6px 6px;border-radius:0 0 6px 6px}.alert{padding:8px 35px 8px 14px;margin-bottom:20px;text-shadow:0 1px 0 rgba(255,255,255,.5);background-color:#fcf8e3;border:1px solid #fbeed5;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;color:#c09853}.alert h4{margin:0}.alert .close{position:relative;top:-2px;right:-21px;line-height:20px}.alert-success{background-color:#dff0d8;border-color:#d6e9c6;color:#468847}.alert-danger,.alert-error{background-color:#f2dede;border-color:#eed3d7;color:#b94a48}.alert-info{background-color:#d9edf7;border-color:#bce8f1;color:#3a87ad}.alert-block{padding-top:14px;padding-bottom:14px}.alert-block>p,.alert-block>ul{margin-bottom:0}.alert-block p+p{margin-top:5px}.nav{margin-left:0;margin-bottom:20px;list-style:none}.nav>li>a{display:block}.nav>li>a:hover{text-decoration:none;background-color:#eee}.nav>.pull-right{float:right}.nav-header{display:block;padding:3px 15px;font-size:11px;font-weight:700;line-height:20px;color:#999;text-shadow:0 1px 0 rgba(255,255,255,.5);text-transform:uppercase}.nav li+.nav-header{margin-top:9px}.nav-list{padding-left:15px;padding-right:15px;margin-bottom:0}.nav-list>li>a,.nav-list .nav-header{margin-left:-15px;margin-right:-15px;text-shadow:0 1px 0 rgba(255,255,255,.5)}.nav-list>li>a{padding:3px 15px}.nav-list>.active>a,.nav-list>.active>a:hover{color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,.2);background-color:#08c}.nav-list [class^="icon-"]{margin-right:2px}.nav-list .divider{*width:100%;height:1px;margin:9px 1px;*margin:-5px 0 5px;overflow:hidden;background-color:#e5e5e5;border-bottom:1px solid white}.nav-tabs,.nav-pills{*zoom:1}.nav-tabs:before,.nav-tabs:after,.nav-pills:before,.nav-pills:after{display:table;content:"";line-height:0}.nav-tabs:after,.nav-pills:after{clear:both}.nav-tabs>li,.nav-pills>li{float:left}.nav-tabs>li>a,.nav-pills>li>a{padding-right:12px;padding-left:12px;margin-right:2px;line-height:14px}.nav-tabs{border-bottom:1px solid #ddd}.nav-tabs>li{margin-bottom:-1px}.nav-tabs>li>a{padding-top:8px;padding-bottom:8px;line-height:20px;border:1px solid transparent;-webkit-border-radius:4px 4px 0 0;-moz-border-radius:4px 4px 0 0;border-radius:4px 4px 0 0}.nav-tabs>li>a:hover{border-color:#eee #eeeeee #ddd}.nav-tabs>.active>a,.nav-tabs>.active>a:hover{color:#555;background-color:#fff;border:1px solid #ddd;border-bottom-color:transparent;cursor:default}.nav-pills>li>a{padding-top:8px;padding-bottom:8px;margin-top:2px;margin-bottom:2px;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px}.nav-pills>.active>a,.nav-pills>.active>a:hover{color:#fff;background-color:#08c}.nav-stacked>li{float:none}.nav-stacked>li>a{margin-right:0}.nav-tabs.nav-stacked{border-bottom:0}.nav-tabs.nav-stacked>li>a{border:1px solid #ddd;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0}.nav-tabs.nav-stacked>li:first-child>a{-webkit-border-top-right-radius:4px;-moz-border-radius-topright:4px;border-top-right-radius:4px;-webkit-border-top-left-radius:4px;-moz-border-radius-topleft:4px;border-top-left-radius:4px}.nav-tabs.nav-stacked>li:last-child>a{-webkit-border-bottom-right-radius:4px;-moz-border-radius-bottomright:4px;border-bottom-right-radius:4px;-webkit-border-bottom-left-radius:4px;-moz-border-radius-bottomleft:4px;border-bottom-left-radius:4px}.nav-tabs.nav-stacked>li>a:hover{border-color:#ddd;z-index:2}.nav-pills.nav-stacked>li>a{margin-bottom:3px}.nav-pills.nav-stacked>li:last-child>a{margin-bottom:1px}.nav-tabs .dropdown-menu{-webkit-border-radius:0 0 6px 6px;-moz-border-radius:0 0 6px 6px;border-radius:0 0 6px 6px}.nav-pills .dropdown-menu{-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px}.nav .dropdown-toggle .caret{border-top-color:#08c;border-bottom-color:#08c;margin-top:6px}.nav .dropdown-toggle:hover .caret{border-top-color:#005580;border-bottom-color:#005580}.nav-tabs .dropdown-toggle .caret{margin-top:8px}.nav .active .dropdown-toggle .caret{border-top-color:#333;border-bottom-color:#333}.nav-tabs .active .dropdown-toggle .caret{border-top-color:#555;border-bottom-color:#555}.nav>.dropdown.active>a:hover{cursor:pointer}.nav-tabs .open .dropdown-toggle,.nav-pills .open .dropdown-toggle,.nav>li.dropdown.open.active>a:hover{color:#fff;background-color:#999;border-color:#999}.nav li.dropdown.open .caret,.nav li.dropdown.open.active .caret,.nav li.dropdown.open a:hover .caret{border-top-color:#fff;border-bottom-color:#fff;opacity:1;filter:alpha(opacity=100)}.tabs-stacked .open>a:hover{border-color:#999}.tabbable{*zoom:1}.tabbable:before,.tabbable:after{display:table;content:"";line-height:0}.tabbable:after{clear:both}.tab-content{overflow:auto}.tabs-below>.nav-tabs,.tabs-right>.nav-tabs,.tabs-left>.nav-tabs{border-bottom:0}.tab-content>.tab-pane,.pill-content>.pill-pane{display:none}.tab-content>.active,.pill-content>.active{display:block}.tabs-below>.nav-tabs{border-top:1px solid #ddd}.tabs-below>.nav-tabs>li{margin-top:-1px;margin-bottom:0}.tabs-below>.nav-tabs>li>a{-webkit-border-radius:0 0 4px 4px;-moz-border-radius:0 0 4px 4px;border-radius:0 0 4px 4px}.tabs-below>.nav-tabs>li>a:hover{border-bottom-color:transparent;border-top-color:#ddd}.tabs-below>.nav-tabs>.active>a,.tabs-below>.nav-tabs>.active>a:hover{border-color:transparent #ddd #dddddd #ddd}.tabs-left>.nav-tabs>li,.tabs-right>.nav-tabs>li{float:none}.tabs-left>.nav-tabs>li>a,.tabs-right>.nav-tabs>li>a{min-width:74px;margin-right:0;margin-bottom:3px}.tabs-left>.nav-tabs{float:left;margin-right:19px;border-right:1px solid #ddd}.tabs-left>.nav-tabs>li>a{margin-right:-1px;-webkit-border-radius:4px 0 0 4px;-moz-border-radius:4px 0 0 4px;border-radius:4px 0 0 4px}.tabs-left>.nav-tabs>li>a:hover{border-color:#eee #dddddd #eee #eeeeee}.tabs-left>.nav-tabs .active>a,.tabs-left>.nav-tabs .active>a:hover{border-color:#ddd transparent #ddd #dddddd;*border-right-color:#fff}.tabs-right>.nav-tabs{float:right;margin-left:19px;border-left:1px solid #ddd}.tabs-right>.nav-tabs>li>a{margin-left:-1px;-webkit-border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0}.tabs-right>.nav-tabs>li>a:hover{border-color:#eee #eeeeee #eee #dddddd}.tabs-right>.nav-tabs .active>a,.tabs-right>.nav-tabs .active>a:hover{border-color:#ddd #dddddd #ddd transparent;*border-left-color:#fff}.nav>.disabled>a{color:#999}.nav>.disabled>a:hover{text-decoration:none;background-color:transparent;cursor:default}.navbar{overflow:visible;margin-bottom:20px;color:#555;*position:relative;*z-index:2}.navbar-inner{min-height:40px;padding-left:20px;padding-right:20px;background-color:#fafafa;background-image:-moz-linear-gradient(top,white, #f2f2f2);background-image:-webkit-gradient(linear,0 0,0 100%,from(white),to( #f2f2f2));background-image:-webkit-linear-gradient(top,white, #f2f2f2);background-image:-o-linear-gradient(top,white, #f2f2f2);background-image:linear-gradient(to bottom, #fff, #f2f2f2);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fcfcfc', endColorstr='#f0f0f0', GradientType=0);border:1px solid #d4d4d4;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-webkit-box-shadow:0 1px 4px rgba(0,0,0,.065);-moz-box-shadow:0 1px 4px rgba(0,0,0,.065);box-shadow:0 1px 4px rgba(0,0,0,.065)}.navbar .container{width:auto}.nav-collapse.collapse{height:auto}.navbar .brand{float:left;display:block;padding:10px 20px 10px;margin-left:-20px;font-size:20px;font-weight:200;color:#555;text-shadow:0 1px 0 white}.navbar .brand:hover{text-decoration:none}.navbar-text{margin-bottom:0;line-height:40px}.navbar-link{color:#555}.navbar-link:hover{color:#333}.navbar .divider-vertical{height:40px;margin:0 9px;border-left:1px solid #f2f2f2;border-right:1px solid white}.navbar .btn,.navbar .btn-group{margin-top:6px}.navbar .btn-group .btn{margin:0}.navbar-form{margin-bottom:0;*zoom:1}.navbar-form:before,.navbar-form:after{display:table;content:"";line-height:0}.navbar-form:after{clear:both}.navbar-form input,.navbar-form select,.navbar-form .radio,.navbar-form .checkbox{margin-top:5px}.navbar-form input,.navbar-form select,.navbar-form .btn{display:inline-block;margin-bottom:0}.navbar-form input[type="image"],.navbar-form input[type="checkbox"],.navbar-form input[type="radio"]{margin-top:3px}.navbar-form .input-append,.navbar-form .input-prepend{margin-top:6px;white-space:nowrap}.navbar-form .input-append input,.navbar-form .input-prepend input{margin-top:0}.navbar-search{position:relative;float:left;margin-top:5px;margin-bottom:0}.navbar-search .search-query{margin-bottom:0;padding:4px 14px;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:13px;font-weight:400;line-height:1;-webkit-border-radius:15px;-moz-border-radius:15px;border-radius:15px}.navbar-static-top{position:static;width:100%;margin-bottom:0}.navbar-static-top .navbar-inner{-webkit-border-radius:0;-moz-border-radius:0;border-radius:0}.navbar-fixed-top,.navbar-fixed-bottom{position:fixed;right:0;left:0;z-index:1030;margin-bottom:0}.navbar-fixed-top .navbar-inner,.navbar-fixed-bottom .navbar-inner,.navbar-static-top .navbar-inner{border:0}.navbar-fixed-top .navbar-inner,.navbar-fixed-bottom .navbar-inner{padding-left:0;padding-right:0;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0}.navbar-static-top .container,.navbar-fixed-top .container,.navbar-fixed-bottom .container{width:940px}.navbar-fixed-top{top:0}.navbar-fixed-top .navbar-inner,.navbar-static-top .navbar-inner{-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,.1),0 1px 10px rgba(0,0,0,.1);-moz-box-shadow:inset 0 -1px 0 rgba(0,0,0,.1),0 1px 10px rgba(0,0,0,.1);box-shadow:inset 0 -1px 0 rgba(0,0,0,.1),0 1px 10px rgba(0,0,0,.1)}.navbar-fixed-bottom{bottom:0}.navbar-fixed-bottom .navbar-inner{-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,.1),0 1px 10px rgba(0,0,0,.1);-moz-box-shadow:inset 0 -1px 0 rgba(0,0,0,.1),0 1px 10px rgba(0,0,0,.1);box-shadow:inset 0 -1px 0 rgba(0,0,0,.1),0 1px 10px rgba(0,0,0,.1)}.navbar .nav{position:relative;left:0;display:block;float:left;margin:0 10px 0 0}.navbar .nav.pull-right{float:right}.navbar .nav>li{float:left}.navbar .nav>li>a{float:none;padding:10px 15px 10px;color:#555;text-decoration:none;text-shadow:0 1px 0 white}.navbar .nav .dropdown-toggle .caret{margin-top:8px}.navbar .nav>li>a:focus,.navbar .nav>li>a:hover{background-color:transparent;color:#333;text-decoration:none}.navbar .nav>.active>a,.navbar .nav>.active>a:hover,.navbar .nav>.active>a:focus{color:#555;text-decoration:none;background-color:#e5e5e5;-webkit-box-shadow:inset 0 3px 8px rgba(0,0,0,.125);-moz-box-shadow:inset 0 3px 8px rgba(0,0,0,.125);box-shadow:inset 0 3px 8px rgba(0,0,0,.125)}.navbar .btn-navbar{display:none;float:right;padding:7px 10px;margin-left:5px;margin-right:5px;color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,.25);background-color:#ededed;background-image:-moz-linear-gradient(top, #f2f2f2, #e5e5e5);background-image:-webkit-gradient(linear,0 0,0 100%,from( #f2f2f2),to( #e5e5e5));background-image:-webkit-linear-gradient(top, #f2f2f2, #e5e5e5);background-image:-o-linear-gradient(top, #f2f2f2, #e5e5e5);background-image:linear-gradient(to bottom, #f2f2f2, #e5e5e5);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#f0f0f0', endColorstr='#e2e2e2', GradientType=0);border-color:#e5e5e5 #e5e5e5 #bfbfbf;border-color:rgba(0,0,0,.1) rgba(0,0,0,.1) rgba(0,0,0,.25);*background-color:#e5e5e5;filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.1),0 1px 0 rgba(255,255,255,.075);-moz-box-shadow:inset 0 1px 0 rgba(255,255,255,.1),0 1px 0 rgba(255,255,255,.075);box-shadow:inset 0 1px 0 rgba(255,255,255,.1),0 1px 0 rgba(255,255,255,.075)}.navbar .btn-navbar:hover,.navbar .btn-navbar:active,.navbar .btn-navbar.active,.navbar .btn-navbar.disabled,.navbar .btn-navbar[disabled]{color:#fff;background-color:#e5e5e5;*background-color:#d8d8d8}.navbar .btn-navbar:active,.navbar .btn-navbar.active{background-color:#cbcbcb \9}.navbar .btn-navbar .icon-bar{display:block;width:18px;height:2px;background-color:#f5f5f5;-webkit-border-radius:1px;-moz-border-radius:1px;border-radius:1px;-webkit-box-shadow:0 1px 0 rgba(0,0,0,.25);-moz-box-shadow:0 1px 0 rgba(0,0,0,.25);box-shadow:0 1px 0 rgba(0,0,0,.25)}.btn-navbar .icon-bar+.icon-bar{margin-top:3px}.navbar .nav>li>.dropdown-menu:before{content:'';display:inline-block;border-left:7px solid transparent;border-right:7px solid transparent;border-bottom:7px solid #ccc;border-bottom-color:rgba(0,0,0,.2);position:absolute;top:-7px;left:9px}.navbar .nav>li>.dropdown-menu:after{content:'';display:inline-block;border-left:6px solid transparent;border-right:6px solid transparent;border-bottom:6px solid white;position:absolute;top:-6px;left:10px}.navbar-fixed-bottom .dropdown-menu:before{border-top:7px solid #ccc;border-top-color:rgba(0,0,0,.2);border-bottom:0;bottom:-7px;top:auto}.navbar-fixed-bottom .dropdown-menu:after{border-top:6px solid white;border-bottom:0;bottom:-6px;top:auto}.navbar .nav li.dropdown.open>.dropdown-toggle,.navbar .nav li.dropdown.active>.dropdown-toggle,.navbar .nav li.dropdown.open.active>.dropdown-toggle{background-color:#e5e5e5;color:#555}.navbar .nav li.dropdown>.dropdown-toggle .caret{border-top-color:#555;border-bottom-color:#555}.navbar .nav li.dropdown.open>.dropdown-toggle .caret,.navbar .nav li.dropdown.active>.dropdown-toggle .caret,.navbar .nav li.dropdown.open.active>.dropdown-toggle .caret{border-top-color:#555;border-bottom-color:#555}.navbar .pull-right>li>.dropdown-menu,.navbar .nav>li>.dropdown-menu.pull-right{left:auto;right:0}.navbar .pull-right>li>.dropdown-menu:before,.navbar .nav>li>.dropdown-menu.pull-right:before{left:auto;right:12px}.navbar .pull-right>li>.dropdown-menu:after,.navbar .nav>li>.dropdown-menu.pull-right:after{left:auto;right:13px}.navbar .pull-right>li>.dropdown-menu .dropdown-menu,.navbar .nav>li>.dropdown-menu.pull-right .dropdown-menu{left:auto;right:100%;margin-left:0;margin-right:-1px;-webkit-border-radius:6px 0 6px 6px;-moz-border-radius:6px 0 6px 6px;border-radius:6px 0 6px 6px}.navbar-inverse{color:#999}.navbar-inverse .navbar-inner{background-color:#1b1b1b;background-image:-moz-linear-gradient(top, #222, #111);background-image:-webkit-gradient(linear,0 0,0 100%,from( #222),to( #111));background-image:-webkit-linear-gradient(top, #222, #111);background-image:-o-linear-gradient(top, #222, #111);background-image:linear-gradient(to bottom, #222, #111);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#1f1f1f', endColorstr='#0e0e0e', GradientType=0);border-color:#252525}.navbar-inverse .brand,.navbar-inverse .nav>li>a{color:#999;text-shadow:0 -1px 0 rgba(0,0,0,.25)}.navbar-inverse .brand:hover,.navbar-inverse .nav>li>a:hover{color:#fff}.navbar-inverse .nav>li>a:focus,.navbar-inverse .nav>li>a:hover{background-color:transparent;color:#fff}.navbar-inverse .nav .active>a,.navbar-inverse .nav .active>a:hover,.navbar-inverse .nav .active>a:focus{color:#fff;background-color:#111}.navbar-inverse .navbar-link{color:#999}.navbar-inverse .navbar-link:hover{color:#fff}.navbar-inverse .divider-vertical{border-left-color:#111;border-right-color:#222}.navbar-inverse .nav li.dropdown.open>.dropdown-toggle,.navbar-inverse .nav li.dropdown.active>.dropdown-toggle,.navbar-inverse .nav li.dropdown.open.active>.dropdown-toggle{background-color:#111;color:#fff}.navbar-inverse .nav li.dropdown>.dropdown-toggle .caret{border-top-color:#999;border-bottom-color:#999}.navbar-inverse .nav li.dropdown.open>.dropdown-toggle .caret,.navbar-inverse .nav li.dropdown.active>.dropdown-toggle .caret,.navbar-inverse .nav li.dropdown.open.active>.dropdown-toggle .caret{border-top-color:#fff;border-bottom-color:#fff}.navbar-inverse .navbar-search .search-query{color:#fff;background-color:#515151;border-color:#111;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.1),0 1px 0 rgba(255,255,255,.15);-moz-box-shadow:inset 0 1px 2px rgba(0,0,0,.1),0 1px 0 rgba(255,255,255,.15);box-shadow:inset 0 1px 2px rgba(0,0,0,.1),0 1px 0 rgba(255,255,255,.15);-webkit-transition:none;-moz-transition:none;-o-transition:none;transition:none}.navbar-inverse .navbar-search .search-query:-moz-placeholder{color:#ccc}.navbar-inverse .navbar-search .search-query:-ms-input-placeholder{color:#ccc}.navbar-inverse .navbar-search .search-query::-webkit-input-placeholder{color:#ccc}.navbar-inverse .navbar-search .search-query:focus,.navbar-inverse .navbar-search .search-query.focused{padding:5px 15px;color:#333;text-shadow:0 1px 0 white;background-color:#fff;border:0;-webkit-box-shadow:0 0 3px rgba(0,0,0,.15);-moz-box-shadow:0 0 3px rgba(0,0,0,.15);box-shadow:0 0 3px rgba(0,0,0,.15);outline:0}.navbar-inverse .btn-navbar{color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,.25);background-color:#0e0e0e;background-image:-moz-linear-gradient(top, #151515, #040404);background-image:-webkit-gradient(linear,0 0,0 100%,from( #151515),to( #040404));background-image:-webkit-linear-gradient(top, #151515, #040404);background-image:-o-linear-gradient(top, #151515, #040404);background-image:linear-gradient(to bottom, #151515, #040404);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#131313', endColorstr='#020202', GradientType=0);border-color:#040404 #040404 black;border-color:rgba(0,0,0,.1) rgba(0,0,0,.1) rgba(0,0,0,.25);*background-color:#040404;filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.navbar-inverse .btn-navbar:hover,.navbar-inverse .btn-navbar:active,.navbar-inverse .btn-navbar.active,.navbar-inverse .btn-navbar.disabled,.navbar-inverse .btn-navbar[disabled]{color:#fff;background-color:#040404;*background-color:#000}.navbar-inverse .btn-navbar:active,.navbar-inverse .btn-navbar.active{background-color:#000 \9}.breadcrumb{padding:8px 15px;margin:0 0 20px;list-style:none;background-color:#f5f5f5;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-webkit-box-shadow:inset 0 1px 0 white;-moz-box-shadow:inset 0 1px 0 white;box-shadow:inset 0 1px 0 white}.breadcrumb li{display:inline-block;*display:inline;*zoom:1;text-shadow:0 1px 0 white}.breadcrumb .divider{padding:0 5px;color:#ccc}.breadcrumb .active a{color:#999}.pagination{height:40px;margin:20px 0}.pagination ul{display:inline-block;*display:inline;*zoom:1;margin-left:0;margin-bottom:0;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;-webkit-box-shadow:0 1px 2px rgba(0,0,0,.05);-moz-box-shadow:0 1px 2px rgba(0,0,0,.05);box-shadow:0 1px 2px rgba(0,0,0,.05)}.pagination li{display:inline}.pagination a,.pagination span{float:left;padding:0 14px;line-height:38px;text-decoration:none;background-color:#fff;border:1px solid #ddd;border-left-width:0}.pagination a:hover,.pagination .active a,.pagination .active span{background-color:#f5f5f5}.pagination .active a,.pagination .active span{color:#999;cursor:default}.pagination .disabled span,.pagination .disabled a,.pagination .disabled a:hover{color:#999;background-color:transparent;cursor:default}.pagination li:first-child a,.pagination li:first-child span{border-left-width:1px;-webkit-border-radius:3px 0 0 3px;-moz-border-radius:3px 0 0 3px;border-radius:3px 0 0 3px}.pagination li:last-child a,.pagination li:last-child span{-webkit-border-radius:0 3px 3px 0;-moz-border-radius:0 3px 3px 0;border-radius:0 3px 3px 0}.pagination-centered{text-align:center}.pagination-right{text-align:right}.pager{margin:20px 0;list-style:none;text-align:center;*zoom:1}.pager:before,.pager:after{display:table;content:"";line-height:0}.pager:after{clear:both}.pager li{display:inline}.pager a{display:inline-block;padding:5px 14px;background-color:#fff;border:1px solid #ddd;-webkit-border-radius:15px;-moz-border-radius:15px;border-radius:15px}.pager a:hover{text-decoration:none;background-color:#f5f5f5}.pager .next a{float:right}.pager .previous a{float:left}.pager .disabled a,.pager .disabled a:hover{color:#999;background-color:#fff;cursor:default}.modal-open .dropdown-menu{z-index:2050}.modal-open .dropdown.open{*z-index:2050}.modal-open .popover{z-index:2060}.modal-open .tooltip{z-index:2080}.modal-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1040;background-color:#000}.modal-backdrop.fade{opacity:0}.modal-backdrop,.modal-backdrop.fade.in{opacity:.8;filter:alpha(opacity=80)}.modal{position:fixed;top:50%;left:50%;z-index:1050;overflow:auto;width:560px;margin:-250px 0 0 -280px;background-color:#fff;border:1px solid #999;border:1px solid rgba(0,0,0,.3);*border:1px solid #999;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;-webkit-box-shadow:0 3px 7px rgba(0,0,0,.3);-moz-box-shadow:0 3px 7px rgba(0,0,0,.3);box-shadow:0 3px 7px rgba(0,0,0,.3);-webkit-background-clip:padding-box;-moz-background-clip:padding-box;background-clip:padding-box}.modal.fade{-webkit-transition:opacity .3s linear,top .3s ease-out;-moz-transition:opacity .3s linear,top .3s ease-out;-o-transition:opacity .3s linear,top .3s ease-out;transition:opacity .3s linear,top .3s ease-out;top:-25%}.modal.fade.in{top:50%}.modal-header{padding:9px 15px;border-bottom:1px solid #eee}.modal-header .close{margin-top:2px}.modal-header h3{margin:0;line-height:30px}.modal-body{overflow-y:auto;max-height:400px;padding:15px}.modal-form{margin-bottom:0}.modal-footer{padding:14px 15px 15px;margin-bottom:0;text-align:right;background-color:#f5f5f5;border-top:1px solid #ddd;-webkit-border-radius:0 0 6px 6px;-moz-border-radius:0 0 6px 6px;border-radius:0 0 6px 6px;-webkit-box-shadow:inset 0 1px 0 white;-moz-box-shadow:inset 0 1px 0 white;box-shadow:inset 0 1px 0 white;*zoom:1}.modal-footer:before,.modal-footer:after{display:table;content:"";line-height:0}.modal-footer:after{clear:both}.modal-footer .btn+.btn{margin-left:5px;margin-bottom:0}.modal-footer .btn-group .btn+.btn{margin-left:-1px}.tooltip{position:absolute;z-index:1030;display:block;visibility:visible;padding:5px;font-size:11px;opacity:0;filter:alpha(opacity=0)}.tooltip.in{opacity:.8;filter:alpha(opacity=80)}.tooltip.top{margin-top:-3px}.tooltip.right{margin-left:3px}.tooltip.bottom{margin-top:3px}.tooltip.left{margin-left:-3px}.tooltip-inner{max-width:200px;padding:3px 8px;color:#fff;text-align:center;text-decoration:none;background-color:#000;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px}.tooltip-arrow{position:absolute;width:0;height:0;border-color:transparent;border-style:solid}.tooltip.top .tooltip-arrow{bottom:0;left:50%;margin-left:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.right .tooltip-arrow{top:50%;left:0;margin-top:-5px;border-width:5px 5px 5px 0;border-right-color:#000}.tooltip.left .tooltip-arrow{top:50%;right:0;margin-top:-5px;border-width:5px 0 5px 5px;border-left-color:#000}.tooltip.bottom .tooltip-arrow{top:0;left:50%;margin-left:-5px;border-width:0 5px 5px;border-bottom-color:#000}.popover{position:absolute;top:0;left:0;z-index:1010;display:none;width:236px;padding:1px;background-color:#fff;-webkit-background-clip:padding-box;-moz-background-clip:padding;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0,0,0,.2);-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;-webkit-box-shadow:0 5px 10px rgba(0,0,0,.2);-moz-box-shadow:0 5px 10px rgba(0,0,0,.2);box-shadow:0 5px 10px rgba(0,0,0,.2)}.popover.top{margin-bottom:10px}.popover.right{margin-left:10px}.popover.bottom{margin-top:10px}.popover.left{margin-right:10px}.popover-title{margin:0;padding:8px 14px;font-size:14px;font-weight:400;line-height:18px;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;-webkit-border-radius:5px 5px 0 0;-moz-border-radius:5px 5px 0 0;border-radius:5px 5px 0 0}.popover-content{padding:9px 14px}.popover-content p,.popover-content ul,.popover-content ol{margin-bottom:0}.popover .arrow,.popover .arrow:after{position:absolute;display:inline-block;width:0;height:0;border-color:transparent;border-style:solid}.popover .arrow:after{content:"";z-index:-1}.popover.top .arrow{bottom:-10px;left:50%;margin-left:-10px;border-width:10px 10px 0;border-top-color:#fff}.popover.top .arrow:after{border-width:11px 11px 0;border-top-color:rgba(0,0,0,.25);bottom:-1px;left:-11px}.popover.right .arrow{top:50%;left:-10px;margin-top:-10px;border-width:10px 10px 10px 0;border-right-color:#fff}.popover.right .arrow:after{border-width:11px 11px 11px 0;border-right-color:rgba(0,0,0,.25);bottom:-11px;left:-1px}.popover.bottom .arrow{top:-10px;left:50%;margin-left:-10px;border-width:0 10px 10px;border-bottom-color:#fff}.popover.bottom .arrow:after{border-width:0 11px 11px;border-bottom-color:rgba(0,0,0,.25);top:-1px;left:-11px}.popover.left .arrow{top:50%;right:-10px;margin-top:-10px;border-width:10px 0 10px 10px;border-left-color:#fff}.popover.left .arrow:after{border-width:11px 0 11px 11px;border-left-color:rgba(0,0,0,.25);bottom:-11px;right:-1px}.thumbnails{margin-left:-20px;list-style:none;*zoom:1}.thumbnails:before,.thumbnails:after{display:table;content:"";line-height:0}.thumbnails:after{clear:both}.row-fluid .thumbnails{margin-left:0}.thumbnails>li{float:left;margin-bottom:20px;margin-left:20px}.thumbnail{display:block;padding:4px;line-height:20px;border:1px solid #ddd;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-webkit-box-shadow:0 1px 1px rgba(0,0,0,.055);-moz-box-shadow:0 1px 1px rgba(0,0,0,.055);box-shadow:0 1px 1px rgba(0,0,0,.055);-webkit-transition:all .2s ease-in-out;-moz-transition:all .2s ease-in-out;-o-transition:all .2s ease-in-out;transition:all .2s ease-in-out}a.thumbnail:hover{border-color:#08c;-webkit-box-shadow:0 1px 4px rgba(0,105,214,.25);-moz-box-shadow:0 1px 4px rgba(0,105,214,.25);box-shadow:0 1px 4px rgba(0,105,214,.25)}.thumbnail>img{display:block;max-width:100%;margin-left:auto;margin-right:auto}.thumbnail .caption{padding:9px;color:#555}.label,.badge{font-size:11.844px;font-weight:700;line-height:14px;color:#fff;vertical-align:baseline;white-space:nowrap;text-shadow:0 -1px 0 rgba(0,0,0,.25);background-color:#999}.label{padding:1px 4px 2px;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px}.badge{padding:1px 9px 2px;-webkit-border-radius:9px;-moz-border-radius:9px;border-radius:9px}a.label:hover,a.badge:hover{color:#fff;text-decoration:none;cursor:pointer}.label-important,.badge-important{background-color:#b94a48}.label-important[href],.badge-important[href]{background-color:#953b39}.label-warning,.badge-warning{background-color:#f89406}.label-warning[href],.badge-warning[href]{background-color:#c67605}.label-success,.badge-success{background-color:#468847}.label-success[href],.badge-success[href]{background-color:#356635}.label-info,.badge-info{background-color:#3a87ad}.label-info[href],.badge-info[href]{background-color:#2d6987}.label-inverse,.badge-inverse{background-color:#333}.label-inverse[href],.badge-inverse[href]{background-color:#1a1a1a}.btn .label,.btn .badge{position:relative;top:-1px}.btn-mini .label,.btn-mini .badge{top:0}@-webkit-keyframes progress-bar-stripes{from{ background-position:40px 0}to{background-position:0 0}}@-moz-keyframes progress-bar-stripes{from{ background-position:40px 0}to{background-position:0 0}}@-ms-keyframes progress-bar-stripes{from{ background-position:40px 0}to{background-position:0 0}}@-o-keyframes progress-bar-stripes{from{ background-position:0 0}to{background-position:40px 0}}@keyframes progress-bar-stripes{from{ background-position:40px 0}to{background-position:0 0}}.progress{overflow:hidden;height:20px;margin-bottom:20px;background-color:#f6f6f6;background-image:-moz-linear-gradient(top,whitesmoke, #f9f9f9);background-image:-webkit-gradient(linear,0 0,0 100%,from(whitesmoke),to( #f9f9f9));background-image:-webkit-linear-gradient(top,whitesmoke, #f9f9f9);background-image:-o-linear-gradient(top,whitesmoke, #f9f9f9);background-image:linear-gradient(to bottom, #f5f5f5, #f9f9f9);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#f2f2f2', endColorstr='#f6f6f6', GradientType=0);-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.1);-moz-box-shadow:inset 0 1px 2px rgba(0,0,0,.1);box-shadow:inset 0 1px 2px rgba(0,0,0,.1);-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px}.progress .bar{width:0;height:100%;color:#fff;float:left;font-size:12px;text-align:center;text-shadow:0 -1px 0 rgba(0,0,0,.25);background-color:#0e90d2;background-image:-moz-linear-gradient(top, #149bdf, #0480be);background-image:-webkit-gradient(linear,0 0,0 100%,from( #149bdf),to( #0480be));background-image:-webkit-linear-gradient(top, #149bdf, #0480be);background-image:-o-linear-gradient(top, #149bdf, #0480be);background-image:linear-gradient(to bottom, #149bdf, #0480be);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#1498da', endColorstr='#047db9', GradientType=0);-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,.15);-moz-box-shadow:inset 0 -1px 0 rgba(0,0,0,.15);box-shadow:inset 0 -1px 0 rgba(0,0,0,.15);-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;-webkit-transition:width .6s ease;-moz-transition:width .6s ease;-o-transition:width .6s ease;transition:width .6s ease}.progress .bar+.bar{-webkit-box-shadow:inset 1px 0 0 rgba(0,0,0,.15),inset 0 -1px 0 rgba(0,0,0,.15);-moz-box-shadow:inset 1px 0 0 rgba(0,0,0,.15),inset 0 -1px 0 rgba(0,0,0,.15);box-shadow:inset 1px 0 0 rgba(0,0,0,.15),inset 0 -1px 0 rgba(0,0,0,.15)}.progress-striped .bar{background-color:#149bdf;background-image:-webkit-gradient(linear,0 100%,100% 0,color-stop(0.25,rgba(255,255,255,.15)),color-stop(0.25,transparent),color-stop(0.5,transparent),color-stop(0.5,rgba(255,255,255,.15)),color-stop(0.75,rgba(255,255,255,.15)),color-stop(0.75,transparent),to(transparent));background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-moz-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);-webkit-background-size:40px 40px;-moz-background-size:40px 40px;-o-background-size:40px 40px;background-size:40px 40px}.progress.active .bar{-webkit-animation:progress-bar-stripes 2s linear infinite;-moz-animation:progress-bar-stripes 2s linear infinite;-ms-animation:progress-bar-stripes 2s linear infinite;-o-animation:progress-bar-stripes 2s linear infinite;animation:progress-bar-stripes 2s linear infinite}.progress-danger .bar,.progress .bar-danger{background-color:#de514c;background-image:-moz-linear-gradient(top, #ee5f5b, #c43c35);background-image:-webkit-gradient(linear,0 0,0 100%,from( #ee5f5b),to( #c43c35));background-image:-webkit-linear-gradient(top, #ee5f5b, #c43c35);background-image:-o-linear-gradient(top, #ee5f5b, #c43c35);background-image:linear-gradient(to bottom, #ee5f5b, #c43c35);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ee5a56', endColorstr='#c03b34', GradientType=0)}.progress-danger.progress-striped .bar,.progress-striped .bar-danger{background-color:#ee5f5b;background-image:-webkit-gradient(linear,0 100%,100% 0,color-stop(0.25,rgba(255,255,255,.15)),color-stop(0.25,transparent),color-stop(0.5,transparent),color-stop(0.5,rgba(255,255,255,.15)),color-stop(0.75,rgba(255,255,255,.15)),color-stop(0.75,transparent),to(transparent));background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-moz-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.progress-success .bar,.progress .bar-success{background-color:#5db95d;background-image:-moz-linear-gradient(top, #62c462, #57a957);background-image:-webkit-gradient(linear,0 0,0 100%,from( #62c462),to( #57a957));background-image:-webkit-linear-gradient(top, #62c462, #57a957);background-image:-o-linear-gradient(top, #62c462, #57a957);background-image:linear-gradient(to bottom, #62c462, #57a957);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#5ec35e', endColorstr='#55a655', GradientType=0)}.progress-success.progress-striped .bar,.progress-striped .bar-success{background-color:#62c462;background-image:-webkit-gradient(linear,0 100%,100% 0,color-stop(0.25,rgba(255,255,255,.15)),color-stop(0.25,transparent),color-stop(0.5,transparent),color-stop(0.5,rgba(255,255,255,.15)),color-stop(0.75,rgba(255,255,255,.15)),color-stop(0.75,transparent),to(transparent));background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-moz-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.progress-info .bar,.progress .bar-info{background-color:#4cb2d0;background-image:-moz-linear-gradient(top, #5bc0de, #339bb9);background-image:-webkit-gradient(linear,0 0,0 100%,from( #5bc0de),to( #339bb9));background-image:-webkit-linear-gradient(top, #5bc0de, #339bb9);background-image:-o-linear-gradient(top, #5bc0de, #339bb9);background-image:linear-gradient(to bottom, #5bc0de, #339bb9);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#57bedd', endColorstr='#3298b5', GradientType=0)}.progress-info.progress-striped .bar,.progress-striped .bar-info{background-color:#5bc0de;background-image:-webkit-gradient(linear,0 100%,100% 0,color-stop(0.25,rgba(255,255,255,.15)),color-stop(0.25,transparent),color-stop(0.5,transparent),color-stop(0.5,rgba(255,255,255,.15)),color-stop(0.75,rgba(255,255,255,.15)),color-stop(0.75,transparent),to(transparent));background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-moz-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.progress-warning .bar,.progress .bar-warning{background-color:#f9a834;background-image:-moz-linear-gradient(top, #fbb450, #f89406);background-image:-webkit-gradient(linear,0 0,0 100%,from( #fbb450),to( #f89406));background-image:-webkit-linear-gradient(top, #fbb450, #f89406);background-image:-o-linear-gradient(top, #fbb450, #f89406);background-image:linear-gradient(to bottom, #fbb450, #f89406);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fbb24b', endColorstr='#f39106', GradientType=0)}.progress-warning.progress-striped .bar,.progress-striped .bar-warning{background-color:#fbb450;background-image:-webkit-gradient(linear,0 100%,100% 0,color-stop(0.25,rgba(255,255,255,.15)),color-stop(0.25,transparent),color-stop(0.5,transparent),color-stop(0.5,rgba(255,255,255,.15)),color-stop(0.75,rgba(255,255,255,.15)),color-stop(0.75,transparent),to(transparent));background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-moz-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.accordion{margin-bottom:20px}.accordion-group{margin-bottom:2px;border:1px solid #e5e5e5;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px}.accordion-heading{border-bottom:0}.accordion-heading .accordion-toggle{display:block;padding:8px 15px}.accordion-toggle{cursor:pointer}.accordion-inner{padding:9px 15px;border-top:1px solid #e5e5e5}.carousel{position:relative;margin-bottom:20px;line-height:1}.carousel-inner{overflow:hidden;width:100%;position:relative}.carousel .item{display:none;position:relative;-webkit-transition:.6s ease-in-out left;-moz-transition:.6s ease-in-out left;-o-transition:.6s ease-in-out left;transition:.6s ease-in-out left}.carousel .item>img{display:block;line-height:1}.carousel .active,.carousel .next,.carousel .prev{display:block}.carousel .active{left:0}.carousel .next,.carousel .prev{position:absolute;top:0;width:100%}.carousel .next{left:100%}.carousel .prev{left:-100%}.carousel .next.left,.carousel .prev.right{left:0}.carousel .active.left{left:-100%}.carousel .active.right{left:100%}.carousel-control{position:absolute;top:40%;left:15px;width:40px;height:40px;margin-top:-20px;font-size:60px;font-weight:100;line-height:30px;color:#fff;text-align:center;background:#222;border:3px solid white;-webkit-border-radius:23px;-moz-border-radius:23px;border-radius:23px;opacity:.5;filter:alpha(opacity=50)}.carousel-control.right{left:auto;right:15px}.carousel-control:hover{color:#fff;text-decoration:none;opacity:.9;filter:alpha(opacity=90)}.carousel-caption{position:absolute;left:0;right:0;bottom:0;padding:15px;background:#333;background:rgba(0,0,0,.75)}.carousel-caption h4,.carousel-caption p{color:#fff;line-height:20px}.carousel-caption h4{margin:0 0 5px}.carousel-caption p{margin-bottom:0}.hero-unit{padding:60px;margin-bottom:30px;background-color:#eee;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px}.hero-unit h1{margin-bottom:0;font-size:60px;line-height:1;color:inherit;letter-spacing:-1px}.hero-unit p{font-size:18px;font-weight:200;line-height:30px;color:inherit}.pull-right{float:right}.pull-left{float:left}.hide{display:none}.show{display:block}.invisible{visibility:hidden}.affix{position:fixed}.clearfix{*zoom:1}.clearfix:before,.clearfix:after{display:table;content:"";line-height:0}.clearfix:after{clear:both}.hide-text{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.input-block-level{display:block;width:100%;min-height:30px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.container{width:960px;margin:auto}.container #map svg{width:960px;height:600px}.container #license{text-align:center;margin:30px auto}path{fill-opacity:.7;-webkit-transition-duration:.5s;-moz-transition-duration:.5s;-o-transition-duration:.5s;transition-duration:.5s;-webkit-transition-property:fill-opacity;-moz-transition-property:fill-opacity;-o-transition-property:fill-opacity;transition-property:fill-opacity}path.hilight{fill-opacity:1}.container{width:960px;margin:auto}.container h1{text-align:center}#infobox{background:#bada55;clear:both;-webkit-border-radius:25px;-moz-border-radius:25px;border-radius:25px;max-width:300px;min-height:120px;padding:10px;margin:auto;text-align:center}#topThree,#bottomThree{float:left;margin:20px;width:400px;text-align:center}
id pop1948 pop1956 pop1966 pop1977 pop1992 pop2002 pop2004
TR 487394 510488 516222 518943 483840 436025 427745
B 1025180 1177661 1366684 1807239 2067545 1926334 1927559
GR 313793 325045 320120 327494 313352 297859 288018
CL 287722 318573 337261 338807 338804 324617 318588
DJ 615301 642028 691116 750328 762142 734231 720554
IF 167533 196265 229773 287738 286965 300123 280037
CT 311062 369940 465752 608817 748769 715151 713825
IL 244750 274655 291373 295965 306145 296572 293102
OT 442442 458982 476513 518804 523291 489274 488176
MH 304788 304091 310021 322371 332673 306732 305901
GJ 280524 293031 298382 348521 401021 387308 386097
DB 409272 438985 453241 527620 562041 541763 538126
PH 557776 623817 701057 817168 874349 829945 829026
BR 271251 297276 339954 377954 392031 373174 371749
TL 192228 223719 236709 254531 270997 256492 253419
VL 413247 438388 414241 368779 362356 341590 416908
AG 448964 483741 529833 631918 681206 652625 647437
CS 302254 327787 358726 385577 376347 333219 332688
BZ 430225 465829 480951 508424 516961 496214 495878
BV 300836 373941 442692 582863 643261 589028 596140
GL 341797 396138 474279 581561 641011 619556 621161
VN 290183 326532 351292 369740 393408 387632 394286
TM 588936 568881 607596 696884 700033 677926 661593
SB 335116 372687 414756 481645 452873 421724 423535
CV 157166 172509 176858 199017 233256 222449 223878
HD 306955 381902 474602 514436 547950 485712 484767
AB 361062 370800 382786 409634 413919 382747 382971
AR 476207 475620 481248 512020 487617 461791 460466
BC 414996 507937 598321 667791 737512 706623 722961
VS 344917 401626 431555 437251 461374 455049 459255
MS 461403 513261 561598 605345 610053 580851 584089
HR 258495 273964 282392 326310 348335 326222 328547
NT 357348 419949 470206 532096 578420 554516 570367
CJ 520073 580344 629746 715507 736301 702755 686825
SJ 262580 271989 263103 264569 266797 248015 247796
BN 233650 255789 269954 286628 326820 311657 318558
IS 431586 516635 619027 729243 811342 816910 821621
BH 536323 574488 586460 633094 638863 600246 596961
SV 439751 507674 572781 633899 701830 688435 705202
MM 321287 367114 427645 492860 540099 510110 516562
SM 312672 337351 359393 393840 400789 367281 371759
BT 385236 428050 452406 451217 461305 452834 459195
Display the source blob
Display the rendered blob
Raw
{"type":"Topology","transform":{"scale":[0.0009458587030253588,0.0004646055131870291],"translate":[20.262419802867125,43.6192583399312]},"objects":{"romania-counties-geojson":{"type":"GeometryCollection","geometries":[{"type":"Polygon","id":"TR","arcs":[[0,1,2,3,4]],"properties":{"name":"Teleorman"}},{"type":"Polygon","id":"B","arcs":[[5]],"properties":{"name":"Municipiul București"}},{"type":"Polygon","id":"GR","arcs":[[6,7,-4,8,9]],"properties":{"name":"Giurgiu"}},{"type":"Polygon","id":"CL","arcs":[[-7,10,11,12,13]],"properties":{"name":"Călărași"}},{"type":"Polygon","id":"DJ","arcs":[[14,15,16,17,18]],"properties":{"name":"Dolj"}},{"type":"Polygon","id":"IF","arcs":[[-11,-10,19,20,21],[-6]],"properties":{"name":"Ilfov"}},{"type":"Polygon","id":"CT","arcs":[[-13,22,23,24,25]],"properties":{"name":"Constanța"}},{"type":"Polygon","id":"IL","arcs":[[-23,-12,-22,26,27,28]],"properties":{"name":"Ialomița"}},{"type":"Polygon","id":"OT","arcs":[[-1,29,-15,30,31]],"properties":{"name":"Olt"}},{"type":"Polygon","id":"MH","arcs":[[32,33,-17,34]],"properties":{"name":"Mehedinți"}},{"type":"Polygon","id":"GJ","arcs":[[-18,-34,35,36,37]],"properties":{"name":"Gorj"}},{"type":"Polygon","id":"DB","arcs":[[-9,-3,38,39,40,-20]],"properties":{"name":"Dâmbovița"}},{"type":"Polygon","id":"PH","arcs":[[-27,-21,-41,41,42]],"properties":{"name":"Prahova"}},{"type":"Polygon","id":"BR","arcs":[[-24,-29,43,44,45,46]],"properties":{"name":"Brăila"}},{"type":"Polygon","id":"TL","arcs":[[-25,-47,47,48]],"properties":{"name":"Tulcea"}},{"type":"Polygon","id":"VL","arcs":[[-31,-19,-38,49,50,51,52]],"properties":{"name":"Vâlcea"}},{"type":"Polygon","id":"AG","arcs":[[-2,-32,-53,53,54,-39]],"properties":{"name":"Argeș"}},{"type":"Polygon","id":"CS","arcs":[[-33,55,56,57,-36]],"properties":{"name":"Caraș-Severin"}},{"type":"Polygon","id":"BZ","arcs":[[-28,-43,58,59,60,-44]],"properties":{"name":"Buzău"}},{"type":"Polygon","id":"BV","arcs":[[-59,-42,-40,-55,61,62,63,64]],"properties":{"name":"Brașov"}},{"type":"Polygon","id":"GL","arcs":[[-48,-46,65,66,67]],"properties":{"name":"Galați"}},{"type":"Polygon","id":"VN","arcs":[[-66,-45,-61,68,69,70]],"properties":{"name":"Vrancea"}},{"type":"Polygon","id":"TM","arcs":[[71,-57,72,73]],"properties":{"name":"Timiș"}},{"type":"Polygon","id":"SB","arcs":[[-54,-52,74,75,-62]],"properties":{"name":"Sibiu"}},{"type":"Polygon","id":"CV","arcs":[[-69,-60,-65,76,77]],"properties":{"name":"Covasna"}},{"type":"Polygon","id":"HD","arcs":[[-37,-58,-72,78,79,-50]],"properties":{"name":"Hunedoara"}},{"type":"Polygon","id":"AB","arcs":[[80,-75,-51,-80,81,82,83]],"properties":{"name":"Alba"}},{"type":"Polygon","id":"AR","arcs":[[-79,-74,84,85,-82]],"properties":{"name":"Arad"}},{"type":"Polygon","id":"BC","arcs":[[-70,-78,86,87,88]],"properties":{"name":"Bacău"}},{"type":"Polygon","id":"VS","arcs":[[-67,-71,-89,89,90,91]],"properties":{"name":"Vaslui"}},{"type":"Polygon","id":"MS","arcs":[[-63,-76,-81,92,93,94,95]],"properties":{"name":"Mureș"}},{"type":"Polygon","id":"HR","arcs":[[-87,-77,-64,-96,96,97]],"properties":{"name":"Harghita"}},{"type":"Polygon","id":"NT","arcs":[[-90,-88,-98,98,99]],"properties":{"name":"Neamț"}},{"type":"Polygon","id":"CJ","arcs":[[-93,-84,100,101,102,103]],"properties":{"name":"Cluj"}},{"type":"Polygon","id":"SJ","arcs":[[104,105,106,-102]],"properties":{"name":"Sălaj"}},{"type":"Polygon","id":"BN","arcs":[[-94,-104,107,108]],"properties":{"name":"Bistrița-Năsăud"}},{"type":"Polygon","id":"IS","arcs":[[-91,-100,109,110,111]],"properties":{"name":"Iași"}},{"type":"Polygon","id":"BH","arcs":[[-101,-83,-86,112,113,-105]],"properties":{"name":"Bihor"}},{"type":"Polygon","id":"SV","arcs":[[-110,-99,-97,-95,-109,114,115,116]],"properties":{"name":"Suceava"}},{"type":"Polygon","id":"MM","arcs":[[-108,-103,-107,117,118,-115]],"properties":{"name":"Maramureș"}},{"type":"Polygon","id":"SM","arcs":[[-106,-114,119,-118]],"properties":{"name":"Satu Mare"}},{"type":"Polygon","id":"BT","arcs":[[-111,-117,120]],"properties":{"name":"Botoșani"}}]}},"arcs":[[[4642,229],[8,11],[-2,23],[-9,10],[6,16],[18,-3],[1,13],[13,4],[-2,26],[11,4],[-1,17],[16,6],[-2,7],[22,1],[2,24],[-7,15],[36,24],[-13,3],[-20,15],[-28,1],[-9,-16],[-4,14],[8,12],[11,-5],[19,7],[0,9],[-21,30],[-3,24],[-7,-3],[0,19],[-14,-1],[1,21],[-18,14],[-10,37],[3,22],[-9,23],[-8,5],[-9,19],[14,18],[-14,7],[-1,9],[-26,36],[-3,24],[-8,10],[9,3],[-1,20],[-15,-2],[-6,24],[46,40],[4,-4],[34,21],[56,17],[16,2],[-17,48],[45,17],[0,10],[46,11],[-3,13],[45,11],[12,12],[0,27],[-10,36],[-1,19],[-30,36],[-12,20],[2,22],[-13,46],[9,21],[37,55],[-21,15],[11,8],[-3,15],[5,59],[-7,24],[1,35],[13,8],[-6,16],[10,3],[8,15],[-9,9],[-12,25],[2,7],[-17,53],[-5,38]],[[4806,1636],[34,15],[11,-9],[2,-16],[34,3],[0,13],[80,-7],[13,16],[-3,11],[18,13],[9,13],[18,-11],[7,18],[28,-21],[7,21],[17,-14],[27,30],[34,24],[4,-13],[59,48],[6,-13],[23,21],[21,-47]],[[5255,1731],[10,-5],[8,-21],[8,8],[20,-2],[28,20],[-7,13],[12,16],[4,-6],[16,23],[-5,3],[22,40],[11,-16],[13,35],[-9,11],[13,38],[21,32],[6,14],[22,-20],[14,-8],[8,9],[18,-19],[-18,-40],[24,-22]],[[5494,1834],[20,-21],[-9,-15],[11,-9],[-15,-31],[6,-3],[-8,-19],[16,-8],[11,-12],[-2,-20],[15,0],[11,-14],[-31,-51],[11,-16],[-19,-32],[-7,-64],[38,-22],[21,-2],[32,9],[12,-6],[4,-16],[11,17],[5,-10],[10,0],[9,20],[19,-11],[10,-18],[-13,-34],[34,-35],[5,46],[15,-8],[-4,-30],[3,-18],[23,-18],[6,-26],[-4,-17],[-8,-8],[-6,-32],[-12,-20],[-6,-25],[4,-6],[-12,-75],[5,0],[24,-23],[20,-27],[14,-29],[-8,-7],[-2,-31],[4,-20],[-12,9],[-6,33],[-8,-3],[3,-21],[-12,5],[-3,-17],[8,-15],[-5,-16],[-16,28],[-3,30],[-12,-27],[-10,-12],[-3,-18],[-20,-37],[2,-30],[14,-12],[-6,-11],[-20,-8],[1,-15],[-9,-3],[0,-43],[-5,-8],[8,-26],[4,-54],[8,-5],[6,-18],[-14,-11],[20,-47],[-9,-11],[-3,-60],[6,-25],[-5,-30],[-16,-13],[14,-23],[12,-35],[-3,-32],[9,-23],[26,2],[8,-112],[4,-94],[7,-42],[2,-33]],[[5719,154],[-13,-6],[-29,-28],[-25,-18],[-38,-41],[-13,-8],[-31,0],[-30,4],[-27,-10],[-26,-22],[-33,-17],[-24,-8],[-34,5],[-23,15],[-22,30],[-14,13],[-25,16],[-32,51],[-11,9],[-47,14],[-26,17],[-30,-3],[-22,-18],[-19,-9],[-16,1],[-48,22],[-13,20],[-21,22],[-8,17],[-13,12],[-40,4],[-23,-6],[-11,-15],[-23,-18],[-34,-12],[-14,0],[-24,13],[-12,2],[-32,-9],[-2,-8],[-27,-26],[-21,-15],[-15,-3],[-23,12],[-33,33],[-4,13],[-26,30]],[[6168,1978],[5,7],[4,-36],[-4,-35],[14,-46],[72,-18],[-7,-7],[-22,-43],[13,-9],[10,5],[0,-21],[22,-5],[15,-13],[16,-1],[-10,-37],[0,-21],[-7,-6],[1,-23],[-37,-3],[-17,10],[-20,-62],[10,-27],[-7,-11],[-7,8],[-6,-12],[-3,12],[-19,14],[1,8],[-35,9],[-36,16],[-17,23],[-21,39],[-15,-9],[-6,13],[-15,-3],[-10,33],[-2,40],[51,5],[5,7],[-7,26],[-29,19],[-12,-8],[9,19],[6,40],[-3,16],[13,-5],[11,7],[3,29],[16,16],[0,16],[10,-8],[37,24],[5,8],[25,0]],[[6333,1459],[35,-36],[10,-43],[15,-19],[11,4],[16,-26],[26,1],[1,-41],[42,2],[3,-39],[12,-8],[0,-15],[-16,-2],[1,-17],[12,6],[0,-29],[7,-28],[4,7],[6,-21],[1,-21],[-8,-27],[-18,-18],[-18,-8],[-40,-41],[0,-8],[19,-127]],[[6454,905],[-3,-7],[-22,-5],[-37,-16],[-47,-45],[-21,-11],[-39,-28],[-13,-6],[-26,2],[-23,-3],[-40,-27],[-31,-57],[-3,-25],[-28,-59],[-8,-10],[-48,-38],[-25,-32],[-23,-19],[-30,-51],[-12,-42],[-29,-49],[-3,-25],[-33,-50],[-35,-19],[-20,-31],[-8,-31],[-15,-25],[-38,-33],[-13,-7],[-62,-2]],[[5494,1834],[7,10],[7,31],[8,13],[22,51],[17,0],[12,28],[18,-8],[21,19],[14,-9],[11,-19],[13,9],[16,42],[20,20],[6,-18],[8,2],[1,-19],[12,-4],[0,-10],[11,-7],[12,-18],[29,45],[13,2],[4,-18],[22,5],[31,-19],[8,14],[9,-8],[35,22],[22,-35],[7,21],[24,-8],[15,14]],[[5949,1982],[33,-51],[-10,-36],[-15,-38],[19,-5],[-18,-60],[-17,16],[-12,1],[-7,39],[-15,-22],[8,-6],[7,-50],[-8,-11],[7,-10],[-10,-9],[15,-22],[-31,-26],[-12,-14],[-2,-19],[11,1],[13,-9],[8,7],[1,-35],[13,-15],[-8,-13],[14,-11],[17,4],[4,-14],[-5,-9],[9,-4],[12,-23],[20,5],[16,-16],[10,0],[-2,-27],[15,-1],[3,22],[29,-28],[1,-18],[-8,-35],[-17,-39],[3,-3],[22,53],[1,11],[12,4],[12,-17],[13,-1],[1,-20],[10,-6],[19,-30],[28,2],[5,-32],[21,-15],[14,-3],[19,-20],[20,6],[11,28],[9,-12],[25,54],[8,-21],[22,37],[21,43]],[[6333,1459],[25,42],[-25,28],[29,41],[7,-7],[15,19],[5,-8],[18,21],[-10,3],[17,23],[-16,1],[-5,43],[9,3],[2,-19],[15,9],[-13,18],[17,14],[6,-11],[6,22],[28,26],[5,-5],[12,11],[12,-15],[5,10],[21,21],[40,35],[-4,14],[-11,1],[8,9],[-9,9],[-2,-15],[-12,13],[-12,-13],[-33,2],[0,19],[-12,-2],[-7,25],[-17,19],[41,55],[7,-9],[10,29]],[[6505,1940],[9,5],[46,53],[-35,2],[26,43],[24,33],[38,-36],[0,-16],[29,-56],[25,-14],[32,-8],[-12,-25],[10,8],[12,-17],[-12,-14],[18,-31],[-5,-32],[15,5],[9,-12],[-1,-26],[15,-7],[13,5],[11,-16],[17,-5],[19,3],[7,30],[8,17],[23,15],[6,11],[3,-38],[11,15],[27,51],[8,30],[16,15],[6,13],[7,-13],[11,29],[19,-5],[-5,-19],[22,9],[10,-6],[7,20],[21,-9],[-5,-17],[57,20],[5,8],[33,3],[46,0],[-1,-48],[63,0],[2,-49],[47,-4],[6,41],[54,-24],[0,-6],[18,-6],[5,34],[-5,2],[8,25],[14,-4],[4,-9],[-5,-33],[39,-11],[11,56],[20,-6],[-4,-45],[26,-7],[1,5],[40,-8],[8,67],[12,-1],[-1,-22],[22,0],[-2,-21],[32,3],[0,-6],[45,0],[61,7],[6,99],[22,-4],[1,43],[26,-7],[6,-71],[-1,-20],[2,-89],[54,-1],[0,-16],[24,0],[-3,-61],[10,0],[-4,-39],[78,-3],[1,-13],[13,-1],[31,-39],[-27,-27],[15,-30],[-10,-13],[14,-33],[10,-6],[18,23],[11,-36],[4,7],[11,-14],[16,14],[9,20],[7,43],[12,20],[37,-16],[104,-52],[31,-18]],[[8199,1551],[-7,-39],[-15,-36],[-18,-30],[-13,-37],[-19,-34],[-16,-18],[-12,-7],[-45,9],[-15,-11],[-35,3],[-15,-3],[-28,-18],[-18,-16],[-19,-30],[-27,-35],[-9,-6],[-32,2],[-10,7],[-57,10],[-37,-19],[-34,-25],[-50,-48],[-13,-26],[-22,-17],[-18,-26],[-21,-13],[-25,4],[-18,9],[-25,2],[-14,-7],[-22,4],[-15,18],[-27,4],[-17,-10],[-22,-21]],[[7409,1091],[-19,-13],[-27,-9],[-41,6],[-44,39],[-23,7],[-40,-13],[-23,7],[-18,10],[-22,1],[-35,-18],[-28,4],[-31,-4],[-26,1],[-38,-26],[-19,-10],[-26,-20],[-4,-8],[-69,-57],[-34,-10],[-29,5],[-21,-5],[-35,-27],[-26,-5],[-30,-14],[-33,3],[-38,0],[-19,-6],[-21,-13],[-62,-24],[-64,19],[-10,-6]],[[3875,1960],[-19,-35],[-21,-12],[9,-1],[5,-20],[-12,-24],[-27,-33],[-3,-8],[28,-18],[7,-18],[-11,-32],[30,-23],[-3,-5],[42,-17],[9,-10],[15,-5],[-6,-24],[-9,-13],[-1,-17],[41,-24],[3,17],[27,-14],[19,-21],[-11,-32],[8,1],[19,-32],[9,-33],[10,-2],[15,-44],[12,-13],[1,-45],[48,-19],[1,-14],[11,-4],[-8,-27],[16,-13],[18,-5],[22,5],[12,-51],[12,2],[-16,-84],[23,-5],[-9,-47],[-5,1],[-10,-77],[-8,-75],[3,-1],[-11,-100],[-5,-32],[17,-4],[-4,-29],[24,1],[-2,-19],[6,-1],[-9,-42],[14,-7],[-4,-16],[-18,9],[-8,-32],[18,-10],[10,-13],[-5,-20],[-7,-6],[11,-5],[-20,-129],[-8,-20],[-8,-34],[-11,3],[-4,-19],[-10,3],[-12,-35],[-21,-50],[-8,-35],[-7,2],[-9,-91],[-8,-61],[26,-25],[3,-16]],[[4101,156],[-32,17],[-19,3],[-23,19],[-14,20],[-42,21],[-35,24],[-23,10],[-46,1],[-55,17],[-23,13],[-18,17],[-24,16],[-24,9],[-23,19],[-12,27],[-27,7],[-38,-1],[-28,-8],[-36,-19],[-18,1],[-35,14],[-33,26],[-30,43],[-16,13],[-24,4],[-21,8],[-27,19],[-22,5],[-41,-10],[-52,5],[-60,-6],[-31,-20],[-28,-10],[-32,-20],[-55,-39],[-77,-21],[-18,3],[-29,16],[-47,13],[-43,28],[-36,9],[-27,18],[-15,23],[-9,24],[-7,33],[-2,31],[12,46],[10,26],[1,29],[8,29],[4,33],[12,45],[16,16],[29,18],[44,17],[3,-5],[30,9],[12,11],[3,13],[20,35],[13,46],[1,15],[-13,38],[-15,15],[-30,14],[-26,3]],[[2858,1031],[16,51],[14,20],[46,81],[16,-10],[46,-39],[6,3],[6,87],[11,98],[-41,28],[3,29],[27,7],[1,17],[8,33],[3,35],[12,27],[3,17],[43,15],[5,-3],[13,38],[-3,35],[5,13],[14,-3],[11,16],[22,-5],[4,28],[-24,27],[-70,48],[7,24],[11,-7],[3,14],[15,-8],[9,45],[3,39],[33,22],[10,13],[-1,21],[17,2],[24,10],[-1,21],[-20,8],[-4,23],[25,2],[13,7],[38,-3],[12,-8],[7,5],[11,23],[15,-1],[11,-12],[18,19],[16,-17],[19,0],[22,40],[7,41]],[[3375,2047],[15,15],[12,-5],[21,17],[6,34],[17,-1],[15,19],[30,1],[26,15],[12,-19],[-2,-13],[7,-13],[21,-9],[6,8],[20,9],[3,9],[32,-5],[16,5],[-1,-8],[11,-26],[7,22],[-5,29],[8,24],[3,28],[-9,20],[3,21],[-6,12],[12,31],[7,29],[-5,15],[0,40],[7,-5],[10,20],[10,-9],[20,-1]],[[3704,2356],[-4,-30],[12,-15],[2,-20],[-7,-15],[-2,-29],[13,-4],[1,-23],[12,-37],[5,36],[12,-9],[4,-12],[18,-10],[14,5],[23,-26],[22,7],[19,-12],[-6,-8],[1,-28],[-7,-7],[1,-29],[7,-31],[13,7],[12,-38],[-1,-22],[7,-46]],[[5949,1982],[-17,29],[14,11],[-26,32],[14,26],[9,-9],[22,-39],[33,25],[16,19],[41,65],[-7,25],[-48,43],[4,27],[19,-2],[13,7],[6,16],[-8,39],[19,15],[-5,12],[-9,1],[-8,45],[-15,5],[-20,-57],[-6,6],[-2,22],[-7,5],[-9,23],[-4,26],[15,2],[2,19],[12,9],[16,-20],[5,15]],[[6018,2424],[1,-10],[16,-9],[17,19],[13,-20],[10,12],[14,6],[11,-6],[10,4],[9,-10],[12,4],[2,20],[10,2],[14,-21],[13,-2],[-13,50],[13,-2],[5,7],[9,-24],[20,-11],[24,19],[8,-12],[18,-5],[0,13],[9,1],[7,-12],[26,-3],[22,-13],[1,-10],[14,-6],[12,34],[16,28],[7,6],[16,-3]],[[6384,2470],[16,-14],[3,-10],[21,-25],[11,-23],[7,-32],[12,-23],[0,-37],[-24,-7],[-8,-25],[11,-12],[18,-52],[12,-55],[49,19],[-1,7],[34,19],[5,-20],[-10,-12],[8,-9],[-8,-7],[7,-11],[-29,-32],[-20,37],[-42,-58],[10,-14],[-24,-40],[5,-7],[-14,-21],[15,-26],[-6,-7],[8,-18],[27,10],[6,-34],[9,29],[13,-20]],[[8199,1551],[5,43],[9,25],[15,29],[20,30],[6,29],[25,22],[10,14],[6,27],[-13,43],[-1,23],[-8,41],[-33,33],[-9,26],[-6,31],[-10,34],[-16,29],[-6,29],[2,22],[18,46],[1,32],[-19,60],[-15,14],[-28,41],[-11,7],[-23,-2],[-14,12],[-14,24],[-26,17],[-17,29],[-3,40],[6,48],[4,12]],[[8054,2461],[16,19],[55,19],[26,-17],[22,-26],[15,-7],[22,14],[8,-7],[9,26],[19,19],[11,44]],[[8257,2545],[42,-18],[9,11],[7,-4],[14,13],[12,-5],[31,-32],[0,-52],[13,-16],[23,1],[6,21],[43,3],[0,-30],[-9,-17],[0,-20],[15,-6],[-10,-30],[18,-9],[-20,-24],[19,-11],[19,24],[27,-16],[-4,-10],[18,-6],[-12,-20],[20,-3],[0,-9],[37,-3],[5,-8],[28,-2],[-19,-45],[37,-12],[5,19],[29,-9],[3,24],[26,3],[-8,-17],[19,-8],[-8,-17],[10,-5],[-4,-14],[18,18],[38,-1],[2,42],[45,-11],[70,18],[28,0],[27,6],[-4,39],[44,7],[6,-11],[1,-25],[11,-7],[16,10],[-2,-25],[5,-29],[13,-30],[13,7],[9,-12],[-8,-22],[8,-5],[24,46],[31,45],[28,27],[50,44],[27,-7],[23,-28],[9,-1]],[[9230,2281],[-19,-33],[-33,-73],[-73,-211],[-24,-57],[-19,-38],[-59,-103],[-37,-68],[-24,-52],[-11,-16],[-20,-59],[-3,-28],[-3,12],[-21,-2],[-7,-27],[-28,-3],[7,-7],[-11,-39],[-7,-60],[0,-54],[7,-49],[8,-22],[9,-2],[7,-14],[4,-32],[0,-33],[5,-17],[-2,-29],[-2,22],[-7,-11],[5,-27],[-12,-5],[3,-12],[13,6],[10,-6],[-21,-10],[4,-18],[-8,-9],[-2,-56],[-5,-7],[8,-13],[3,12],[12,2],[6,18],[0,-21],[5,-21],[-27,-9],[-5,-13],[0,-20],[6,-48],[7,-17],[14,-65],[-2,-21],[5,-26],[-13,-24],[-1,-20],[-13,-19],[-3,-34],[-6,-17],[3,-22],[-6,-22],[-9,-10],[-9,-23],[-8,-43],[2,-58],[-19,-30],[3,-15],[-5,-15],[-1,-29],[-14,-22],[8,-21],[-3,-48],[-5,-21],[6,-40],[-143,-11],[-101,39],[-119,14],[-91,59],[-72,53],[-19,17],[-55,42],[-19,11],[-19,124],[-24,90],[-10,91],[-29,51],[-78,-90],[-94,-17],[-17,-11],[-30,13],[-38,151],[-32,39],[-33,-76],[-88,12],[-32,6],[-34,3],[-71,-21],[-29,54],[-16,45],[-57,28],[-12,8],[-1,16],[-13,28],[0,25],[6,4],[-9,15],[-5,22]],[[6384,2470],[7,20],[-6,7],[5,20],[30,-8],[-1,15],[7,-1],[-2,-28],[28,11],[16,-17],[19,-11],[12,22],[50,66],[37,-38],[16,7],[20,37],[15,-13],[10,17],[-3,10],[8,7],[3,16],[15,23],[41,37]],[[6711,2669],[0,-18],[8,-22],[3,-25],[11,-33],[12,12],[10,-20],[31,1],[16,9],[10,-12],[11,10],[2,-10],[54,12],[13,-8],[-5,-9],[16,-21],[-4,-8],[20,-18],[4,4],[17,-9],[11,23],[17,18],[10,-9],[3,18],[13,30],[32,-32],[2,5],[66,-41],[2,3],[24,-22],[4,22],[-5,3],[13,35],[12,22],[39,-45],[58,-34],[-15,-78],[38,-19],[4,15],[46,-26],[13,46],[-25,9],[2,7],[-26,12],[9,51],[50,-6]],[[7337,2511],[16,-10],[-3,-15],[16,-11],[13,-23],[28,-31],[49,133],[48,-8],[-7,-20],[41,-34],[7,-1],[13,26],[19,2],[1,-21],[6,2],[64,0],[0,-17],[26,-3],[-1,26],[18,-5],[58,7],[3,-11],[42,-9],[16,-1],[38,-12],[26,-11],[16,2],[82,17],[36,10],[36,-6],[10,-26]],[[4642,229],[-27,32],[-12,9],[-39,18],[-31,6],[-45,15],[-10,-2],[-55,-46],[-2,4],[-31,-11],[-18,-17],[-16,-22],[-9,-22],[-32,-28],[-13,-1],[-23,8],[-23,-4],[-38,-14],[-23,-4],[-14,-8],[-35,-7],[-27,7],[-18,14]],[[3875,1960],[12,9],[23,-6],[21,11],[21,-2],[14,-11],[17,-6],[-4,-23],[16,16],[2,-21],[-6,-15],[12,-3],[9,-26],[14,4],[6,-10],[14,5],[14,24],[-3,21],[17,21],[0,28],[15,11],[12,26],[-3,15],[16,-3],[17,12],[14,-3],[15,-24],[4,5],[22,-2],[21,10],[-1,39],[19,-3],[0,53],[13,-2],[11,6],[6,-42],[-6,-6],[2,-23],[11,-10],[7,8],[17,3],[12,8],[3,24],[-9,33],[3,14],[-7,15],[10,8],[-8,43],[-9,22],[-9,9],[0,26],[7,11],[-12,2],[6,18],[-9,19],[-13,6],[2,25],[-7,4],[-3,35],[6,22],[-5,15],[6,31],[-2,7],[12,23],[1,31],[22,2],[-4,41],[6,27],[-6,31],[4,17],[32,37],[-12,28],[2,15],[23,11],[3,9],[16,2],[8,13],[12,-4],[11,28],[21,-16],[4,-24],[-9,-16],[6,-7],[-3,-30],[18,-22]],[[4415,2639],[4,-9],[-15,-30],[-1,-10],[19,-24],[15,12],[16,3],[6,15],[14,-1],[2,33],[-6,21],[12,9],[3,24],[8,4],[1,20],[6,11],[5,29],[9,-9],[11,1],[2,-20],[0,-51],[8,-12],[0,-18],[7,-35],[14,-23],[3,-32],[15,-10],[-7,-52],[7,-1],[6,-40],[14,-2],[8,-13],[6,-35],[25,7],[43,2],[25,-3],[-9,-21],[7,-13],[-2,-22],[-21,-23],[19,-55],[-1,-36],[3,-17],[8,-11],[2,-25],[10,-21],[8,-39],[-16,-17],[0,-31],[5,-1],[9,-24],[1,-22],[-7,-32],[11,-27],[-2,-38],[-13,-25],[1,-19],[12,-26],[-6,-36],[9,-8],[-7,-24],[1,-27],[10,-38],[-8,-18],[14,-23],[0,-12],[12,-5],[-2,-8],[17,-1],[17,7],[18,-8],[6,-18]],[[1839,2145],[41,-31],[7,-8],[17,27],[2,12],[16,15],[9,-8],[20,-51],[16,-9],[11,16],[12,-29],[14,14],[-1,16],[11,18],[-1,17],[9,21],[-3,21],[4,12],[-7,19],[-17,1],[-15,20],[6,43],[4,6],[-8,22],[13,40],[4,61],[29,2],[9,12],[-1,14],[12,18],[-8,13],[-3,48],[10,11],[6,37],[8,11],[32,-24],[23,-52],[19,-5],[12,3],[12,-10],[21,7],[15,-7],[18,21],[9,1],[5,-12],[25,-12],[7,24],[8,11],[4,26],[12,-3],[6,18],[15,26],[-1,24],[16,22],[-2,17],[13,21],[8,37],[9,10],[2,28],[-7,21],[7,17],[8,35],[-6,27],[6,24],[21,19],[-25,20],[6,19],[33,35],[28,47],[9,34],[11,18],[10,2],[17,23],[1,12],[15,29],[17,23],[10,26],[17,18],[0,6]],[[2531,3202],[15,-11],[13,9],[10,-29],[12,-23],[6,-25],[22,-10],[14,-17],[27,7],[18,-37],[12,-2],[22,-18],[13,-22],[2,-18],[14,-23],[9,-5],[-2,-25],[24,-2],[19,-28],[3,-22],[-6,-30],[-20,-12],[11,-73],[8,-15],[-2,-24],[9,-21],[-4,-43],[7,-35],[1,-37],[27,-36],[15,-24],[-16,-23],[4,-11],[21,-19],[13,32],[12,-8],[25,-31],[-5,-8],[4,-24],[10,-13],[1,-23],[10,-13],[17,-11],[18,0],[6,-18],[7,9],[6,-13],[-3,-24],[12,-8],[3,-14],[14,-14],[15,-2],[6,-18],[29,0],[4,7],[27,-18],[13,1],[13,-10],[11,3],[18,-7],[9,4],[12,-14],[35,-13],[18,-16],[26,-14],[25,-26],[9,-3],[13,-17],[11,-5],[44,-35],[2,-20],[-13,-22],[28,-6],[8,-21],[23,-18]],[[2858,1031],[-34,2],[-13,8],[-25,26],[-27,37],[-38,33],[-34,24],[-28,34],[-26,45],[-13,10],[-48,8],[-20,20],[-6,14],[2,25],[13,44],[0,31],[-8,29],[-14,18],[-26,12],[-23,-1],[-35,13],[-22,13],[-7,9],[-13,33],[-20,30],[-18,74],[-6,15],[-4,33],[-1,36],[3,12],[-31,40],[-7,13],[-9,37],[-1,27],[11,18],[14,-1],[44,-17],[21,12],[15,24],[5,34],[0,37],[3,26],[15,29],[10,7],[29,4],[29,-16],[37,-46],[17,-15],[8,0],[63,44],[4,9],[-6,42],[-14,27],[-40,66],[-25,9],[-8,20],[-8,4],[-29,-10],[-19,-1],[-22,17],[-20,21],[-12,5],[-8,27],[-13,11],[-8,18],[-34,52],[-3,12],[-15,17],[-11,20],[-24,17],[-45,-20],[-16,-36],[-19,-26],[-16,-5],[-29,8],[-14,-8],[-28,-44],[-5,-35],[-25,-24],[-10,-59],[-26,-60],[-13,-24],[-26,-87],[-10,-22],[-14,-60],[-9,-11],[-20,-11],[-13,0],[-25,13],[-40,56],[-13,50],[-12,14],[-22,17],[-11,53],[2,17],[-2,36],[-22,35],[-3,20]],[[2531,3202],[0,18],[-6,26],[-12,1],[-12,16],[-4,-4],[-22,9],[-9,-8],[-17,8],[-15,25],[-5,27],[16,42],[28,53],[14,8],[14,-1],[19,23],[3,19],[-8,9]],[[2515,3473],[23,6],[9,9],[4,17],[21,11],[10,11],[19,-8],[13,5],[4,16],[19,3],[2,8],[19,-2],[5,-9],[34,18],[12,22],[20,-24],[7,-1],[13,-20],[6,0],[30,26],[19,10],[19,-1],[10,-11],[16,0],[29,49],[1,-37],[11,-22],[-1,-18],[18,-11],[7,-19],[9,-3],[-8,-25],[3,-15],[18,-5],[18,19],[8,18],[19,24],[-2,32],[6,13],[0,28],[6,10],[23,-4],[14,-14],[28,-12],[13,-16],[24,29],[20,-13],[11,36],[9,11],[28,19],[19,-4],[19,5],[20,-16],[10,2],[12,14],[1,29],[18,29],[23,-8],[11,15],[17,-41],[33,-31],[12,-3],[4,-14],[13,0],[20,10],[9,25],[29,20],[6,11],[16,2],[11,23],[12,-1],[20,25],[20,5]],[[3516,3730],[18,-25],[10,-2],[6,-12],[9,2],[12,31],[9,0],[20,-16],[21,-29],[8,7],[23,-1],[10,-9],[10,11],[28,14],[14,20],[22,4],[22,-12],[10,-21],[16,-2],[3,-36],[-18,-35],[-15,-41],[-12,-26],[-6,-3],[7,-62],[6,-8],[3,-35],[11,-37],[17,-19],[16,-68],[4,-31],[-11,-3],[-29,-22],[-4,-15],[9,-19],[2,-29],[-9,-46],[0,-24],[-13,-15],[0,-42],[-8,-11],[-3,-22],[-19,-49],[-17,-10],[-7,-20],[8,-19],[1,-44],[6,-10],[3,-23],[-5,-59],[3,-43],[-7,-7],[2,-20],[-10,-47],[8,4],[15,-6],[9,-39],[-1,-17],[14,-19],[-16,-12],[-5,-32],[2,-31],[-11,-40],[5,-30],[7,-12],[-3,-17],[6,-15],[-11,-50],[-2,-30],[-5,12]],[[5255,1731],[40,55],[1,23],[-4,25],[13,7],[-14,55],[-2,15],[-8,10],[17,26],[-15,18],[9,13],[6,-12],[7,11],[-18,39],[-15,21],[-32,78],[-13,0],[-8,11],[-6,28],[12,24],[-9,7],[-5,15],[-29,38],[12,13],[11,-13],[11,13],[30,47],[5,32],[-19,13],[-22,7],[-13,13],[10,33],[6,6],[7,31],[13,24],[4,28],[-9,9],[3,10],[-10,23],[-8,47],[2,25],[-3,25],[12,32],[-12,42],[-1,21],[5,40],[-23,34],[-11,33],[5,18],[-2,21],[4,13],[-1,41],[7,30],[16,6],[8,19],[-2,34],[-10,30],[-17,1],[1,15],[-9,13],[-17,-6],[-8,19],[-13,18],[1,39],[12,13],[3,13],[11,-7],[2,-17],[11,4],[10,32],[0,24],[-10,10],[-11,39],[5,18],[-15,8],[5,21],[-6,19],[11,27],[-1,27],[3,24],[-25,6],[-6,19],[2,21],[9,7],[15,28],[7,-22],[13,-13],[11,-24],[-1,-31],[6,-23],[15,-33],[7,-2],[5,13],[30,12],[11,11],[-2,49],[-4,20],[7,8],[28,2],[13,14],[2,20],[-8,15],[0,30],[-7,32],[7,8],[10,26],[11,16],[-1,26],[12,38],[-7,25],[15,23],[2,24],[-6,7],[-4,26],[7,27]],[[5349,3797],[14,0],[28,17],[16,-6],[12,3],[15,-8],[8,15],[-2,61],[6,14],[17,20],[2,-4],[21,12]],[[5486,3921],[14,-25],[6,-22],[-1,-17],[8,-35],[-1,-17],[-10,-29],[4,-12],[-7,-11],[-2,-23],[5,-27],[-6,0],[0,-17],[11,-21],[17,-9],[10,13],[8,-18],[21,-19],[1,-13],[26,-54],[2,-19],[-16,-20],[-8,-25],[-3,-25],[-8,-29],[9,-36],[5,-33],[14,-6],[15,5],[5,-57],[10,1],[20,-20],[6,-31],[5,-7],[3,-27],[11,-31],[8,-5],[16,-26],[18,-9],[11,-23],[8,-2],[6,-42],[-4,-10],[11,-54],[0,-18],[-11,-22],[1,-41],[16,-7],[-15,-35],[0,-15],[8,-26],[8,4],[-6,17],[12,7],[6,-17],[20,13],[12,-3],[14,-42],[31,13],[4,-20],[8,4],[13,-39],[10,5],[4,-27],[7,0],[-2,-23],[-17,-6],[12,-55],[-17,-21],[-9,-20],[15,-50],[17,1],[19,-20],[14,-5],[19,24],[17,-29],[-2,-12],[9,-25],[17,-11],[-3,-10],[14,-25],[-3,-17],[8,2],[18,-42],[7,-1],[9,-16]],[[5486,3921],[10,29],[14,-1],[25,28],[5,16],[31,-31],[35,8],[25,-4],[3,11],[15,8],[1,14],[18,16],[47,4],[24,13],[7,-2],[10,-28],[-1,-13],[13,-3],[7,-12],[43,2],[14,22],[11,4],[8,-15],[11,-6],[13,-30],[-1,-12],[9,-18],[-1,-23],[28,-7],[12,-12],[7,33],[14,17],[-1,25],[4,22],[8,12],[2,17],[-5,20],[18,34],[9,6],[2,16],[29,-4],[23,-13],[6,8],[23,5],[10,-16],[8,-30],[20,-15],[12,-15]],[[6111,4001],[11,-11],[-3,-25],[4,-26],[-9,-24],[34,-40],[17,-7],[2,-12],[12,-6],[15,-29],[1,-17],[7,-8],[14,-40],[18,-6],[11,3],[26,-24],[11,-23],[6,-31],[12,0],[12,-25],[-7,-26],[-18,-11],[7,-23],[-7,-22],[17,-1],[0,-17],[6,-21],[-8,-46],[5,-17],[-4,-11],[4,-24],[13,-13],[5,-17],[16,6],[15,12],[38,-11],[11,22],[10,9],[20,-10],[8,5],[-11,-31],[-1,-23],[6,-10],[2,-46],[9,0],[15,-12],[20,42],[15,-9],[13,4],[15,24],[6,2],[35,-76],[1,-13],[-8,-8],[-4,-34],[-11,-2],[3,-29],[-6,-3],[9,-14],[-9,-8],[3,-17],[-6,-7],[-1,-35],[14,-5],[18,-24],[0,-55],[10,-30],[0,-34],[16,-32],[16,16],[-1,7],[19,6],[12,-11],[19,-47],[-7,-9],[5,-11],[16,16],[4,-58],[-51,-27],[-15,-25],[6,-15],[15,-12],[4,4],[15,-24],[4,-25],[15,-26],[11,10],[28,-49]],[[7337,2511],[5,23],[-10,18],[-14,9],[4,8],[23,-12],[18,92],[-1,21],[-23,13],[5,18],[26,-11],[26,133],[-24,7],[8,49],[17,-13],[1,12],[15,0],[4,8],[0,49],[-8,3],[3,21],[-36,1],[8,70],[-53,1],[2,44],[6,48],[1,50],[-9,4],[-20,-3],[-11,13],[-20,152],[-15,-12],[3,-5],[-49,-36],[-23,33],[16,40],[16,20],[21,47],[48,67],[12,-20],[6,7],[26,-36],[4,10],[30,-31],[4,22],[43,-44],[11,32],[14,-6],[11,24],[20,-10],[16,28],[-17,12],[12,28],[-16,13],[4,11],[14,-10],[9,29],[12,-5],[8,7],[-3,26],[17,9],[0,57],[-10,32],[14,7],[-1,13],[18,11],[-2,21],[-9,19],[9,0],[36,31],[-7,40]],[[7582,3820],[-5,23],[15,2],[27,20],[22,22],[-5,12],[14,14],[-6,14],[9,18],[20,21],[34,48]],[[7707,4014],[11,17],[11,-1],[16,-14],[12,-3],[14,-29],[-2,-16],[22,8],[-4,9],[8,17],[20,2],[-2,22],[12,-1],[-5,-36],[14,4],[12,14],[9,0],[2,-16],[-14,-19],[35,-7],[5,-9],[-7,-22],[21,7],[-2,-17],[16,12],[-1,-44],[-6,-17],[6,-13],[35,18],[6,-4],[2,-28],[31,-13],[2,-15],[8,8],[23,4],[14,-8],[9,6],[-11,5],[10,9],[7,25],[11,-8],[-1,14],[21,-9],[22,-22],[21,1],[20,-11],[25,-22],[9,22],[9,-11],[12,11],[16,3]],[[8211,3837],[-4,-33],[2,-45],[-19,-95],[-14,-36],[-2,-39],[24,-36],[12,-13],[35,-22],[21,-9],[19,2],[11,16],[8,-4],[4,-30],[10,-20],[-27,-61],[-14,-26],[1,-8],[44,-38],[17,-18],[28,-38],[17,-7],[5,-10],[-23,-20],[-7,-16],[11,-29],[-6,-13],[-10,-2],[-28,8],[-3,-5],[-1,-43],[8,-52],[10,-48],[-11,-5],[-12,-27],[0,-20],[5,-32],[10,-39],[8,-9],[-4,-19],[-17,-41],[-7,-49],[2,-46],[17,-23],[-6,-19],[-30,-26],[-11,-24],[-1,-27],[-16,-35],[-8,-26],[-2,-35]],[[8211,3837],[11,31],[22,25],[22,19],[29,8],[19,-4],[22,-18],[30,-34],[18,0],[-1,45],[5,35],[16,32]],[[8404,3976],[10,-1],[49,-28],[14,-20],[6,-23],[-3,-56],[8,-36],[12,-25],[18,-59],[23,-57],[8,-10],[76,-49],[24,-17],[11,-3],[82,-55],[31,-27],[19,-7],[54,-5],[42,-17],[28,-23],[24,-4],[27,19],[47,14],[4,21],[-8,17],[-23,15],[-10,25],[-2,18],[14,15],[19,-1],[11,5],[13,36],[-3,8],[-19,13],[-4,17],[26,20],[18,-6],[9,-17],[19,-21],[26,0],[37,-55],[11,-12],[24,-10],[11,13],[2,22],[-6,31],[11,31],[11,14],[13,-1],[16,11],[12,17],[19,13],[16,20],[18,0],[16,14],[10,15],[23,2],[17,17],[31,13],[19,13],[12,14],[6,21],[41,26],[15,22],[17,1],[20,-13],[25,4],[28,41],[16,-5],[10,-15],[26,-2],[12,4],[9,-8],[34,15],[17,-20],[23,-11],[19,-15],[15,-2],[27,-14],[26,-9],[24,-20],[26,-26],[28,-52],[42,-69],[3,-25],[8,-24],[2,-35],[9,-54],[-16,-19],[-4,-17],[2,-26],[9,-40],[13,-37],[-19,7],[-10,10],[-23,1],[-4,-10],[3,-30],[9,-49],[11,-16],[24,-2],[32,9],[17,-2],[-15,-9],[-15,-18],[1,-6],[-15,-23],[-16,-44],[-8,-34],[-6,-43],[-6,-76],[-2,-43],[-12,-163],[-1,-31],[-8,-82],[-1,-38],[-5,-13],[0,-25],[-9,-37],[-10,-26],[-29,2],[-16,-24],[-20,0],[-28,-8],[-78,-11],[-45,-10],[-43,-4],[-42,-9],[-67,-17],[-31,-12],[-86,-42],[-27,-18],[-35,-35],[-30,-40],[-29,-44],[-35,-64]],[[3516,3730],[-2,23],[16,32],[-4,31],[-8,16],[-1,23],[4,20],[-18,7],[-1,9],[21,53],[-2,19],[4,14]],[[3525,3977],[23,-3],[9,13],[5,-13]],[[3562,3974],[-2,-15],[23,0],[25,18],[15,23],[0,8],[19,38],[34,4],[25,25],[13,5],[10,26],[8,8],[24,-7],[18,10],[32,0],[7,-19],[9,-2],[14,11],[33,11],[48,-4],[7,6],[23,-4],[9,-7],[21,3],[5,-9],[19,-14],[9,1],[26,-16],[32,-1],[11,23],[14,-4],[11,8],[26,-7],[39,6],[6,17],[14,18],[2,15],[31,-9],[11,13],[-1,12],[27,37],[13,-9],[11,5],[25,29],[17,6],[41,-8],[22,3],[20,-5],[14,20],[14,-21],[16,0],[21,-8]],[[4473,4214],[-6,-7],[8,-36],[1,-25],[-5,-10],[1,-18],[-7,-21],[-16,-11],[-7,-47],[-14,-42],[-16,-10],[20,-44],[-2,-20],[5,-19],[-9,-8],[8,-11],[-5,-9],[0,-21],[13,-19],[4,-43],[-3,-17],[13,5],[19,-17],[-10,-18],[2,-48],[-16,-14],[10,-1],[7,-17],[2,-34],[7,-21],[-9,-16],[8,-17],[-10,-22],[-7,-5],[3,-25],[-17,-54],[9,-32],[21,-21],[9,-18],[-5,-14],[4,-14],[15,2],[6,-20],[-6,-31],[-17,-13],[11,-19],[8,-25],[-8,-62],[-14,15],[-12,-28],[2,-14],[21,5],[1,-30],[-17,-14],[-9,-17],[5,-17],[10,-5],[14,-22],[-9,-26],[-1,-31],[-16,-22],[20,-30],[-12,-17],[-19,-43],[-4,-22],[-6,-7],[-2,-19],[9,7],[17,-4],[-11,-43],[-11,-15],[-7,-21],[1,-19],[12,-11],[-3,-28],[-9,-25],[5,-5],[-8,-26],[-19,-19],[-5,-13]],[[4473,4214],[20,18],[17,-11],[9,10],[20,4],[12,-15],[42,40],[14,1],[6,9],[19,2],[13,-13],[18,-7],[14,19]],[[4677,4271],[14,-1],[31,8],[7,-8],[12,8],[26,8],[23,-17],[19,15],[21,-9],[5,-29],[18,-3],[18,7],[21,2],[30,-3],[17,-22],[20,18],[13,4],[17,-3],[14,-12],[28,1],[13,12],[20,-16],[16,1],[11,-8],[25,7],[13,-25],[13,-4],[4,-17],[17,-14],[8,-29],[22,-17],[14,-27],[9,-3],[9,16],[29,-32],[9,-28],[-5,-43],[2,-19],[7,-7],[14,-31],[-3,-17],[11,-19],[-14,-23],[5,-13],[10,6],[15,-6],[7,-11],[15,11],[6,-15],[1,-24],[5,-15],[-5,-14],[15,-14]],[[1839,2145],[-4,27],[-6,9],[-45,5],[-28,23],[-12,4],[-11,-7],[-13,1],[-24,12],[-31,8],[-9,-7],[-23,4],[-13,22],[-31,-6],[-25,-12],[-26,-2],[-22,21],[-24,3],[-28,-12],[-15,3],[-11,12],[-12,40],[-1,31],[5,36],[-4,24],[-18,54],[-12,17],[-30,20],[-23,7],[-33,-4],[-44,13],[-45,-7],[-24,15],[-6,18],[-3,29],[-8,22],[-23,29],[7,13],[-9,3],[-1,19],[12,47],[19,3],[3,9],[12,-7],[16,6],[5,9],[24,-13],[6,15],[18,-14],[10,6],[14,-5],[22,16],[4,9],[22,5],[30,14],[-1,24],[-10,42],[4,8],[-6,15],[-21,19],[-8,-2],[-53,44],[-26,8],[-8,-3],[-33,38],[9,18],[-9,12],[-25,19],[-23,40],[6,11],[37,10],[7,12],[18,0],[33,10],[-9,30],[12,40],[25,40],[-11,23],[-1,17],[7,24],[19,8],[33,30],[2,19],[-15,52],[-23,3],[-10,38]],[[1291,3381],[9,15],[8,-10],[20,19],[-8,27],[7,25],[10,16],[-5,27],[11,6],[2,34],[21,16],[-7,32],[8,15],[-9,18],[-24,30],[0,32],[-16,21],[-22,13],[-33,49],[9,8],[-22,38],[-4,47],[19,6],[1,8],[33,11],[2,-9],[16,3],[-8,18],[-9,0],[-2,13],[-15,-8],[-11,6],[-6,72],[0,18],[28,22],[51,10],[19,38],[10,-12],[14,26],[-11,17],[16,60],[8,23],[12,19],[30,-6],[22,25],[26,13],[14,-8],[8,-18],[9,2],[-3,-20],[11,-12],[14,6],[9,-16],[9,-2],[16,-50],[23,3],[35,-2],[20,-7],[10,16],[35,-2],[6,11],[-5,14],[0,27],[14,8],[4,-9],[0,-43],[9,-22],[9,7],[19,0],[9,9],[10,-6],[13,-22],[-17,-54],[22,-19],[5,7],[10,-14],[8,10],[12,-4],[12,7],[24,-9],[5,30],[10,12],[12,4],[2,43],[-9,25],[-2,45],[5,4],[-4,18],[18,19],[12,-18],[34,48],[6,-6],[7,12],[21,-2],[7,33],[17,42],[24,-9],[14,-46],[24,-7],[18,5],[19,-36],[14,-3],[25,42],[6,66],[12,32],[15,28],[10,-6],[11,-18],[31,1],[13,17],[12,-2],[10,-17],[8,8],[15,29]],[[2287,4413],[19,-18],[12,-6],[-1,-21],[13,-34],[9,-14],[22,-23],[3,-19],[10,-29],[4,-26],[10,-13],[24,11],[23,0],[17,8],[13,-20],[-1,-25],[16,1],[27,17],[7,-10],[4,-28],[-18,-24],[0,-16],[20,11],[5,-24],[20,-27],[-2,-14],[8,-32],[8,-4],[7,-16],[2,-29],[7,-29],[-12,-17],[9,-25],[6,-43],[8,-12],[-9,-30],[-22,-33],[-17,-14],[-7,-13],[11,-27],[3,-31],[-9,-5],[-23,-31],[-11,-7],[-37,-54],[8,-63],[-2,-27],[-9,-18],[-1,-16],[44,-1],[10,-20]],[[6111,4001],[16,14],[10,18],[-1,18],[16,29],[10,4]],[[6162,4084],[15,-5],[5,10],[27,5],[6,8],[14,37],[4,3],[7,32],[15,30],[-4,16],[3,28],[6,8],[2,24],[22,19],[4,11],[24,2],[11,-9],[11,-41],[28,-28],[27,42],[14,37],[10,14],[2,18],[-6,27],[8,38],[-1,37],[18,36],[5,23],[-3,21],[11,4],[10,20],[13,2],[-2,31],[9,37],[-6,35],[3,26],[6,15]],[[6480,4697],[17,-22],[33,-13],[-7,-8],[11,-20],[1,-45],[-8,-25],[7,-19],[18,-14],[7,-13],[1,-31],[15,-8],[7,-18],[0,-20],[20,-33],[5,-21],[17,-34],[13,0],[5,-21],[18,-8],[11,12],[7,-4],[9,-20],[13,-4],[22,19],[2,9],[15,0],[8,-24],[-3,-22],[14,-20],[10,-33],[7,-7],[19,-1],[14,11],[14,-32],[16,-21],[13,-30],[21,-4],[3,5],[18,-7],[10,10],[17,-13],[12,-47],[11,-9],[19,5],[24,-1],[12,-6],[16,7],[11,27],[21,-2],[27,-19],[13,16],[8,0],[13,-24],[2,-29],[6,-8],[0,-21],[12,-26],[2,-17],[14,-7],[6,-23],[16,-17],[31,-11],[32,32],[4,16],[21,-13],[-19,-55],[15,9],[36,-42],[5,-14],[32,35],[1,6],[24,10],[12,-29],[15,12],[4,-6],[7,26],[9,16],[24,9],[2,-43],[-18,-28],[8,-94],[36,-22],[2,15],[25,-6],[22,0],[29,9],[15,17],[8,-13],[35,37]],[[4677,4271],[0,24],[-10,11],[6,44],[7,20],[-6,40],[3,22],[-10,26],[5,40],[-8,19],[-12,52],[-26,73],[2,14],[-9,26],[-1,21],[34,42],[18,11],[12,15],[22,4],[14,9],[17,-5],[16,4],[17,-2],[4,19],[-5,22],[5,3],[-8,16],[-8,1],[-6,15],[-16,11],[-16,22],[-9,4],[-5,18],[0,20],[-7,18],[1,16],[-7,15],[3,13],[20,14],[28,-22],[10,7],[-2,20],[18,32],[0,24],[21,-3],[6,6],[23,-3],[16,7],[2,18],[-7,12],[7,12],[-1,18],[20,10],[11,-1],[11,44],[11,6],[7,28],[34,19],[8,21],[15,2],[-6,17],[3,12]],[[4949,5294],[9,21],[-6,18],[2,13],[11,21],[21,19],[11,5],[9,24],[10,7],[8,18],[6,-11],[29,-19],[30,32],[27,4],[12,-18],[23,-11],[12,3],[-1,27],[5,16],[13,5],[12,13]],[[5192,5481],[7,-4],[10,14],[12,-17],[24,-25],[6,-11],[25,-16],[6,10],[5,49],[6,8],[21,11],[13,15],[24,-24],[18,5],[21,-32],[3,-17],[7,4],[-7,-22],[4,-12],[20,-3],[38,-14],[17,2],[11,-8],[6,-20]],[[5489,5374],[-2,-29],[4,-7],[-3,-26],[-9,-10],[9,-28],[16,-11],[13,-17],[13,-26],[1,-18],[19,22],[15,10],[11,-6],[17,15],[0,-15],[8,11],[-1,-38],[12,-10],[1,-15],[9,4],[5,-16],[-14,-6],[2,-28],[-16,-3],[-1,-12],[-13,1],[8,-19],[-8,6],[-7,-43],[1,-33],[12,-16],[-16,-9],[5,-7],[-1,-21],[14,4],[-6,-12],[17,-26],[-9,-6],[-7,-16],[5,-7],[-11,-11],[10,-4],[28,8],[22,-11],[-5,-32],[-18,-6],[-21,6],[4,-31],[10,6],[-8,-15],[5,-12],[-10,2],[8,-16],[-3,-11],[6,-13],[17,-18],[14,-2],[8,9],[13,-13],[-4,-19],[7,-13],[21,-1],[6,-10],[-8,-7],[5,-9],[6,11],[3,-16],[16,-19],[-4,-7],[6,-16],[8,-3],[-6,-25],[8,-8],[19,6],[10,32],[13,-9],[9,14],[21,-14],[1,-18],[20,-15],[24,16],[15,-15],[-1,-12],[22,-6],[-3,-22],[13,-6],[22,-30],[8,-33],[46,10],[9,-7],[26,-34],[29,-11],[1,-15],[12,-14],[0,-19],[-11,-13],[-4,-24],[34,-5],[26,-18],[-8,-29],[1,-12],[45,-1],[-1,-13],[26,-27],[10,-16],[5,-25],[-2,-49],[9,-24],[-8,-25],[-2,-38]],[[7707,4014],[-12,20],[-17,10],[8,15],[7,-1],[2,14],[-18,16],[-2,22],[8,36],[-8,20],[-17,11],[-2,17],[10,20],[20,3],[3,10],[-18,15],[-3,31],[-20,9],[18,15],[-6,19],[-19,-1],[10,24],[-13,8],[-22,-5],[1,14],[-16,25],[8,12],[-12,11],[-1,30],[-15,-8],[-10,-15],[-11,22],[-11,8],[-11,34],[-17,27],[-9,32],[-6,7],[-7,27],[4,21],[-7,39],[-7,16],[0,20],[-16,17],[0,30],[-9,9],[3,37],[-15,22],[2,9],[-11,27],[-20,-1],[-23,18],[-14,21],[32,6],[17,-8],[-6,11],[-3,30],[-10,14],[-13,5],[-7,45],[2,36],[-9,1],[-2,27],[-8,41],[-7,6],[-10,28],[5,36],[-3,24],[7,18],[14,11],[9,19],[10,-1],[23,20],[-8,22],[11,14],[-7,17],[14,7],[2,12],[57,4],[17,-2],[31,16],[28,6],[3,16],[-4,12],[0,41],[-7,20],[10,18],[46,-55],[11,22],[-1,19]],[[7630,5411],[29,-3],[21,-46],[9,-31],[-12,-10],[-6,-19],[14,-34],[-18,-24],[9,-15],[16,-54],[38,-42],[12,5],[20,28],[3,30],[-9,13],[5,34],[25,14],[-20,41],[-3,21],[-14,29],[2,13],[-6,22],[12,7],[-18,22],[0,18],[6,17],[20,-5],[7,-20],[13,-8],[5,12],[16,-22],[2,5],[20,-13],[10,6],[9,16],[10,-10],[5,12],[13,-18],[31,-1],[15,7],[9,-16],[-1,-18],[19,-16],[6,-38],[11,17],[19,14],[-9,20],[13,12],[13,-2],[-1,17],[14,3],[9,23],[-8,37],[20,4],[10,14],[-1,-46],[7,-3],[34,24],[7,-11],[9,6],[16,-34],[25,13],[10,-45],[-1,-18],[7,-10],[22,16],[10,0],[5,-17],[8,-7],[18,5],[21,15],[21,9],[34,-2],[1,-23],[12,-1]],[[8310,5350],[-14,-4],[-5,-27],[6,-6],[-3,-22],[-16,4],[-4,-23],[12,-11],[-12,-9],[3,-13],[12,1],[-13,-38],[-3,-35],[8,-11],[-11,-15],[8,-10],[7,-27],[7,-5],[-8,-22],[9,-2],[-5,-11],[3,-16],[11,-25],[3,-24],[-4,-14],[8,-10],[3,-20],[-9,-25],[4,-14],[-8,-8],[6,-26],[-6,-6],[19,-4],[-3,-41],[-23,-10],[8,-20],[-8,-14],[6,-21],[1,-26],[-5,-10],[11,-4],[4,-39],[-9,-1],[22,-38],[19,10],[-3,-42],[-6,-8],[8,-12],[0,-22],[16,-19],[-6,-23],[6,-1],[-3,-17],[6,-18],[-10,-10],[2,-21],[9,-30],[-8,-45],[9,-23],[1,-15],[-15,-10],[-16,-33],[-3,8],[-18,-8],[-10,11],[-26,-37],[5,-26],[29,-41],[-4,-7],[19,-8],[4,12],[6,-24],[10,19],[1,-21],[-7,-6],[11,-5],[-4,-11],[11,-21],[-3,-24],[3,-30],[-4,-19],[2,-25],[9,2],[6,-32],[13,-27],[23,-13]],[[6480,4697],[-6,9],[-13,37],[4,27],[-7,15],[2,32],[13,24],[0,30],[-8,15],[-2,39],[8,23],[11,6],[-2,26],[-6,19],[6,13],[-3,17],[8,21],[20,18],[22,31],[-3,30],[13,32],[-5,13],[-3,38]],[[6529,5212],[19,-14],[25,16],[22,-5],[15,-26],[21,-2],[8,-9],[13,5],[23,0],[-1,10],[15,28],[18,6],[28,28],[6,28],[16,17],[17,-5],[13,6],[0,9],[23,20],[14,-10],[16,14],[7,-16],[24,-2],[10,5],[-2,-12],[9,-8],[22,-7],[21,-14],[27,2],[28,30],[24,-8],[17,-19],[21,-17],[6,2],[4,27],[14,16],[0,21],[-7,13],[15,9],[6,13],[10,-1],[11,13],[17,-15],[14,-19],[18,-3],[33,-13],[14,-15],[12,17],[-6,40],[7,7],[21,-12],[25,-20],[10,23],[7,6],[-12,7],[8,29],[-23,6],[5,9],[-6,18],[7,4],[44,45],[0,19],[7,8],[8,-19],[16,0],[-1,16],[10,19],[6,1],[21,-22],[10,-2],[15,11],[13,-1],[-8,31],[1,19],[7,-9],[19,0],[7,-10],[22,13],[6,-27],[7,-8],[-8,-18],[4,-14],[13,2],[16,-8],[-3,-25],[6,-7],[26,10],[-2,38],[3,24],[13,0],[-1,10],[31,1],[-2,-6],[32,-16],[10,-50],[15,-9],[-1,-12],[14,-3]],[[7634,5445],[1,-17],[-5,-17]],[[2270,4948],[0,-22],[5,-5],[-28,-17],[-13,-24],[11,-8],[4,-15],[29,-45],[21,1],[12,-17],[17,-2],[-5,-17],[9,-9],[8,8],[2,-65],[-9,-9],[11,-22],[1,-14],[23,-3],[22,24],[21,-28],[3,-13],[-8,-33],[-8,-5],[-26,-35],[-13,-4],[-7,-12],[-15,-9],[-8,-16],[-1,-30],[4,-10],[0,-29],[-20,-25],[-14,-5],[-11,-20]],[[1291,3381],[-5,6],[-45,22],[-5,19],[-22,19],[-9,17],[-8,-23],[-27,16],[-10,-9],[-17,22],[-55,23],[-17,-28],[-26,28],[-29,22],[-5,-5],[-17,32],[6,22],[-18,24],[-2,21],[-9,25],[2,28],[-8,9],[-10,-12],[-5,12],[-13,-20],[5,-8],[-10,-16],[-17,0],[-34,-19],[-16,47],[-11,-8],[-10,4],[3,35],[-50,-17],[-8,37],[-11,1],[-17,33],[-23,21],[-10,17],[-3,23],[-18,3],[5,12],[-5,21],[-8,11],[-3,21],[-21,-1],[-23,16],[-15,16],[11,16],[-3,14],[9,2],[-3,18],[-6,-1],[-7,22],[-35,33],[-65,0],[0,17],[6,6],[-9,20],[40,33],[23,40],[5,4],[-14,31],[3,4],[-12,30],[3,5],[-20,42],[-25,-11],[-6,65],[14,21],[10,48],[17,27],[-5,31],[3,22],[-7,11],[5,20],[1,89],[6,23],[9,2],[7,55],[-42,24],[-10,-68],[-44,3],[-21,-10],[-13,-1],[-3,21],[-17,80],[-20,-8],[-5,31],[-8,8],[11,37],[-51,75],[-14,-5],[-5,22],[-14,-5],[-7,31],[4,2],[-9,55],[-24,-9],[3,-13],[-36,-17],[-15,39],[-19,92],[-38,37],[-44,-11],[-57,70],[6,21],[-18,62],[6,25],[-39,53],[-7,30],[-31,25],[-9,23],[20,20],[-17,-3],[-3,21],[34,56],[13,10],[4,-15],[45,42],[14,-36],[9,12],[18,-12],[4,11],[30,-27],[19,-7],[15,2],[15,20],[22,36],[3,18],[-5,7],[10,20],[22,-18],[28,-10],[48,-58],[14,-7],[27,-43],[9,1],[7,12],[5,32],[14,7],[22,-12],[17,32]],[[465,5469],[14,1],[2,-23],[14,-12],[35,4],[13,-12],[1,-24],[5,-11],[16,-6],[6,-30],[31,-37],[29,-3],[5,-12],[23,2],[28,-26],[6,4],[3,-26],[7,-22],[15,-31],[37,1],[5,10],[34,-27],[2,14],[9,-17],[26,24],[21,-2],[1,-29],[4,1],[0,-30],[9,0],[1,-27],[28,-47],[11,10],[15,27],[7,-4],[5,13],[-8,9],[12,32],[15,-12],[-2,-19],[20,-27],[23,-22],[36,-20],[13,-2],[8,15],[6,43],[18,15],[15,5],[11,-5],[13,4],[17,-11],[9,-34],[8,-19],[15,0],[3,38],[15,23],[33,5],[17,14],[16,42],[9,10],[5,18],[13,20],[19,5],[13,20],[19,-1],[15,-50],[4,-38],[-9,-15],[-4,-18],[28,-11],[5,-22],[8,13],[33,-15],[0,-9],[28,-17],[-2,-10],[9,-11],[10,3],[4,-10],[-9,-16],[8,-8],[-4,-24],[17,-1],[18,-35],[-3,-33],[5,-18],[26,21],[-2,34],[25,49],[-1,13],[12,16],[5,-28],[9,-18],[15,6],[24,-11],[-6,-15],[5,-11],[31,-1],[5,7],[0,29],[22,22],[10,-7],[6,-16],[7,-2],[21,32],[16,-24],[9,0],[26,31],[8,41],[13,6],[18,-4],[16,25],[20,-16],[14,13],[5,-24],[-6,-12],[4,-18],[30,-10],[5,4],[8,-14],[22,-3],[16,-12],[3,-12],[19,-15],[14,-2],[12,-12],[-1,-17],[5,-23],[13,20],[12,-10],[7,11],[12,3],[9,-11],[22,-3],[8,-18],[30,50],[-8,22],[12,11],[7,-9],[21,-5],[10,-15],[24,-11],[13,31],[6,50],[27,3],[4,-17],[-2,-38],[15,-5],[6,-14],[28,-28],[19,-14]],[[3562,3974],[17,1],[17,17],[0,21],[-10,15],[-5,40],[2,24],[-15,32],[-1,17],[-27,43],[5,7],[3,27],[12,22],[14,-3],[10,29],[-17,25],[-4,32],[13,8],[-1,18],[-18,36],[-14,16],[-19,14],[-5,11],[8,18],[12,13],[-18,15],[16,55],[10,25],[12,-5],[11,10],[2,14],[20,37],[5,-8],[4,29],[-15,4],[-7,18],[-9,0],[-10,16],[10,14],[3,22],[10,13],[21,8],[7,12],[23,17],[21,-9],[5,-8],[14,31],[-5,25],[6,18],[0,37],[12,25],[-3,15],[-17,14],[9,26],[-9,23],[28,-2],[34,21],[16,0],[11,-9],[12,31],[9,9],[3,21],[29,19],[-7,45],[12,14],[-8,16],[7,12],[-9,3],[-10,19],[22,42],[11,7],[11,19],[21,-10],[5,12],[26,-8],[25,4],[-2,-18],[14,-7],[18,-29],[-1,-12],[7,-22],[8,7],[-4,19],[23,23],[-3,15],[-12,15],[18,5],[11,-4],[5,11],[-6,22],[15,37],[13,13],[-4,24],[12,11],[2,11],[18,5],[6,33],[14,29],[21,19],[24,-7],[23,17],[17,20],[21,7],[7,10],[-1,15],[-8,17],[-14,4],[-7,11],[3,33],[15,23],[-9,23],[17,19],[45,33]],[[4221,5647],[2,16],[18,11],[33,0],[7,-7],[29,-1],[15,4],[26,-22],[14,20],[10,2],[10,15],[20,7],[6,-8],[25,4],[35,-8],[7,-20],[12,12],[14,-9],[13,3],[3,19],[24,-7],[6,12],[11,-15],[12,-1],[7,-13],[27,8],[4,16],[9,4],[0,14],[8,17],[29,7],[-1,-17],[5,-19],[-2,-16],[6,-18],[-13,-20],[8,-21],[7,-3],[10,-25],[-7,-7],[-1,-22],[5,-12],[-2,-30],[-7,-25],[6,-31],[-1,-24],[-6,-12],[4,-27],[-6,-12],[4,-9],[-4,-34],[26,-43],[20,-11],[6,16],[27,13],[6,-12],[15,4],[10,19],[-3,12],[27,-10],[4,-7],[17,4],[5,11],[18,15],[27,8],[29,-5],[7,-10],[-1,-23],[24,-28],[23,-2]],[[5489,5374],[32,17],[4,22],[18,50],[-4,25],[8,19],[-3,10],[10,11],[25,11],[-2,20],[13,12],[20,4],[6,7],[19,51],[11,12],[21,0],[52,42],[18,49],[15,-7],[11,5],[17,-30],[13,-15],[-16,-26],[19,-22],[5,-27],[15,-9],[-4,-10],[10,-11],[22,-45],[7,-22],[-8,-10],[10,-10],[6,-20],[10,-9],[12,-27],[10,-6],[3,-27],[6,-19],[21,-8],[12,10],[12,-9],[28,14],[3,8],[13,1],[14,-7],[42,15],[8,-18],[15,8],[15,-2],[13,21],[2,38],[6,16],[17,-9],[17,1],[22,-7],[-3,7],[10,11],[21,-7],[9,19],[12,2],[24,-20],[14,-7],[5,22],[-1,30],[11,5],[14,-12],[12,6],[7,42],[11,10],[20,1],[15,19],[-3,32],[-7,11],[12,6],[0,19]],[[6343,5657],[33,-9],[12,-9],[19,-4],[7,-31],[9,-19],[3,-30],[-9,-12],[-2,-28],[17,-42],[1,-24],[-10,-54],[9,-25],[9,-2],[12,-20],[15,-16],[10,-4],[18,11],[17,-5],[13,-37],[-7,-7],[-4,-22],[17,-35],[-3,-21]],[[2270,4948],[9,33],[15,27],[-7,17],[-23,6],[-8,-9],[-30,9],[-11,26],[-21,23],[0,30],[7,9],[42,-5],[6,29],[6,2],[11,-14],[16,23],[16,-3],[3,36],[-13,12],[1,20],[8,10],[-7,33],[2,23],[-7,10],[5,21],[-13,17],[-7,1],[4,18],[20,1],[13,22],[3,16],[10,13],[5,32],[27,4],[8,14],[-6,17],[-12,13],[-18,8],[-11,24],[-2,19],[-12,36],[9,19],[11,7],[14,28],[18,7],[3,12],[24,-49],[9,-3],[8,12],[19,-6],[13,7],[1,15],[17,4],[8,-9],[21,-4],[17,7],[16,-8],[24,12],[4,11],[2,36],[-5,29],[17,40],[-3,6],[10,19],[2,26],[-6,26],[20,5],[7,8],[23,12],[5,14],[15,15],[4,15]],[[2626,5884],[30,-6],[14,-24],[14,-4],[10,-24],[42,8],[13,-12],[18,13],[46,3],[13,-19],[-1,-10],[7,-35],[23,-37],[0,-10],[-16,-33],[8,-29],[11,-9],[5,-25],[9,-12],[3,-26],[9,1],[10,-14],[11,5],[23,-11],[20,5],[8,-6],[15,-25],[-1,-18],[8,4],[12,-11],[4,-13],[-5,-12],[10,-66],[-6,-6],[-18,17],[-19,-12],[15,-20],[-4,-13],[6,-33],[7,-7],[8,-25],[-3,-19],[-9,-12],[9,-7],[0,-39],[16,-18],[0,-17],[8,3],[10,-10],[28,6],[15,-13],[0,-12],[17,-4],[-1,-11],[13,-1],[17,23],[20,-6],[-10,-35],[4,-15],[18,-22],[-1,-29],[17,-22],[4,-36],[18,-64],[16,-7],[7,-14],[12,3],[33,-76],[-1,-37],[-5,-6],[-3,-30],[3,-15],[-4,-36],[18,-18],[1,-42],[11,-16],[-5,-11],[8,-24],[23,-11],[4,-35],[-7,-14],[-5,-47],[-8,-24],[10,-29],[21,-15],[19,-20],[13,-28],[-16,-16],[-9,-23],[-1,-14],[-13,-16],[10,-12],[0,-11],[16,0],[20,-15],[-7,-21],[4,-12],[-7,-20],[6,-22],[20,-6],[10,-13],[25,1],[8,-12],[9,7],[12,-5],[0,-24],[11,-33],[21,3],[17,-26],[11,-24],[14,-7],[4,-38],[11,-8],[10,-24],[-5,-11],[6,-13],[-1,-29]],[[3926,6067],[0,-9],[18,4],[6,-5],[16,17],[10,20],[-5,9],[8,11],[15,-6],[0,-28],[-7,-9],[2,-20],[-14,-14],[-3,-35],[5,-10],[-27,-38],[1,-11],[12,-7],[-3,-13],[8,-6],[7,-19],[19,-17],[11,-16],[11,-2],[13,-16],[11,-3],[18,6],[13,-8],[17,6],[7,-8],[2,-19],[11,-22],[-4,-19],[3,-20],[14,-9],[4,-14],[19,-11],[4,7],[18,-26],[-4,-18],[20,4],[9,-7],[15,-27],[15,-12]],[[2626,5884],[-23,23],[-14,-1],[-13,12],[0,16],[-17,18]],[[2559,5952],[-7,21],[0,23],[-7,16],[-3,37],[4,14],[16,11],[7,18],[-14,41],[0,16],[-7,15],[6,21],[-3,22],[2,31],[-3,8],[16,24],[10,-4],[16,27],[5,-13],[7,20],[-5,8],[-18,0],[-9,11],[-1,29],[24,25],[15,24],[15,0],[5,-18],[25,-16],[18,9],[5,-21],[14,-18]],[[2692,6333],[1,-11],[19,-27],[29,0],[10,-14],[34,-2],[19,16],[15,19],[26,0],[9,-12],[19,0],[6,9],[14,2],[25,-24],[8,-22],[3,-38],[6,-33],[18,-11],[-9,-40],[6,-9],[24,-4],[25,6],[-1,17],[6,25],[18,-4],[14,8],[8,16],[18,14],[15,0],[14,7],[4,-34],[30,-8],[8,-6],[15,2],[7,17],[3,-8],[19,6],[5,17],[19,21],[16,1],[8,16],[19,3],[11,20],[20,26],[14,8],[22,-8],[8,-12],[23,-6],[27,-37],[8,-2],[4,-19],[13,-10],[14,-27],[20,8],[16,-19],[12,-8],[18,2],[15,19],[13,9],[17,-4],[4,-13],[16,-12],[6,-24],[-8,-25],[-16,-12],[-8,-26],[2,-25],[-7,-28],[12,-18],[20,5],[25,-23],[15,1],[10,-6],[19,18],[-1,19],[-11,-8],[-11,12],[-3,24],[25,-7],[-9,27],[11,24],[26,17],[24,-11],[16,5],[6,9],[14,-1],[9,8],[10,-7],[15,2],[10,10],[14,4],[15,-8],[5,-30],[28,-12],[25,12],[16,-5],[10,7],[45,1],[16,13],[12,-38]],[[465,5469],[11,12],[10,47],[11,10],[-8,9],[2,24],[37,-6],[-14,99],[28,54],[15,-6],[88,31],[18,-34],[35,-21],[2,32],[23,6],[6,-31],[9,-6],[31,-6],[22,5],[14,10],[13,-40],[31,-11],[5,23],[9,-4],[3,10],[23,18],[12,79],[32,7],[2,-12],[24,-3],[11,13],[-8,31],[5,11],[-1,26],[14,7],[11,19],[-3,50],[9,70],[11,-4],[3,20],[7,6],[53,-15],[8,-8],[14,8],[-7,14],[9,28],[14,29],[7,24],[-23,54],[-23,1],[-15,55],[17,71],[-3,12],[17,8],[4,17],[12,18],[-2,8],[19,41],[-15,6],[-6,10],[14,58],[16,29],[24,-2],[14,17],[14,-11],[2,-9],[31,-15],[7,44],[5,9],[22,11]],[[1247,6526],[20,3],[27,-3],[7,8],[16,-1],[5,-21],[-3,-16],[30,-21],[14,17],[10,-17],[1,21],[11,26],[42,-13],[19,11],[15,32],[48,2],[7,-11],[15,-1],[5,-8],[37,17],[9,-1],[25,-19],[27,4],[19,13],[14,15],[13,0],[12,8],[6,16],[26,-14],[13,-14],[4,-19],[-17,-27],[-13,-30],[31,-2],[3,-12],[33,-8],[9,-9],[14,9],[23,2],[13,7],[7,21],[11,14],[4,25],[5,0],[0,-22],[25,-16],[5,5],[1,-26],[35,-5],[7,-20],[16,2],[4,-25],[18,-3],[27,6],[10,-2],[8,-12],[-1,-22],[-8,-21],[-1,-17],[10,-24],[6,-29],[-3,-23],[5,-15],[17,-26],[15,-33],[7,-28],[9,13],[26,-21],[26,7],[9,-9],[10,-25],[12,9],[8,18],[8,-5],[16,3],[20,-4],[16,-12],[4,-31],[1,-49],[22,-38],[13,-17],[7,-21],[14,-16],[47,5],[12,-21],[15,-11],[6,5],[2,28],[5,16],[17,-2],[30,-21],[30,5],[17,-4],[23,-12],[30,1],[10,-15],[27,2]],[[6343,5657],[3,20],[-13,22],[1,20],[10,8],[11,37],[6,6],[5,45],[10,30],[-22,21],[-31,-6],[-10,-17],[-2,-17],[-11,-25],[-22,-8],[-46,9],[-9,31],[7,25],[8,14],[0,27],[6,27],[13,18],[-9,11],[0,14],[13,21],[-25,6],[-11,-5],[-19,18],[-16,9],[-19,-2],[-9,-10],[-21,-4],[-16,13],[-57,25],[-16,31],[19,14],[5,27],[13,5],[-12,12],[6,21],[-11,11],[15,22],[21,-2],[32,9],[4,35],[-9,24],[-20,21],[-12,25],[1,21],[-5,14],[0,26],[-19,38],[-17,25],[-7,29],[4,34],[14,14],[1,18],[-6,12],[3,14],[-17,39],[-10,10],[-4,17]],[[6041,6606],[7,13],[17,16],[7,-13],[15,3],[29,-3],[17,13],[10,-16],[-1,-29],[8,-16],[-1,-35],[23,-23],[19,21],[26,4],[8,-28],[9,-8],[8,11],[26,14],[13,-3],[12,9],[-2,14],[6,41],[13,6],[12,27],[10,1],[12,12],[-1,-15],[22,-33],[9,-33],[1,-21],[9,-27],[17,11],[18,0],[16,-7],[-1,16],[34,-12],[11,5],[10,23],[19,26],[48,-1],[-2,14],[22,3],[9,18],[17,14],[19,0],[12,-13],[11,-27],[14,-15],[7,6],[3,18],[17,17],[16,35],[16,10],[2,8],[23,10],[12,17],[15,10],[11,19],[-1,42],[-5,16],[18,9],[49,-11],[3,37],[5,1],[13,-26],[6,-23],[9,-17],[14,-51],[11,3],[10,14],[9,0],[11,20],[-8,22],[12,8],[-6,13],[10,7],[-6,11],[12,13],[10,-7],[8,11],[-1,51],[14,2],[9,16],[0,36],[41,-5],[-5,-13],[10,-1],[1,-22],[-8,-8],[1,-16],[-16,2],[2,-10],[19,-5],[-6,-12],[6,-11],[10,0],[2,-17],[4,17],[8,4],[12,-31],[-2,-30],[19,-4],[19,18],[22,6],[5,7],[36,3],[4,6],[8,-29],[9,0],[12,13],[32,6],[15,-42],[13,-3],[18,11],[-4,-25],[11,-10],[13,14],[-1,12],[22,3],[2,21],[10,5]],[[7330,6764],[5,-16],[19,-20],[12,-7],[13,-22],[55,-40],[18,-28],[1,-31],[-7,-14],[-12,-7],[20,-29],[2,-21],[-7,-14],[-18,-17],[-16,-28],[12,-16],[7,-18],[17,-23],[6,-23],[12,-5],[4,-25],[10,-34],[4,-1],[17,-49],[8,-8],[2,-20],[15,-32],[-2,-20],[23,-78],[10,-21],[10,-62],[10,-22],[11,-8],[7,-18],[2,-56],[9,-32],[4,-26],[7,-13],[6,-26],[-19,-25],[1,-20],[6,-9],[-5,-24],[4,-28],[8,-22],[-3,-13],[18,-145],[18,-1],[3,-17],[-4,-27],[-19,-58]],[[7330,6764],[4,10],[14,9],[-5,65],[3,24],[13,0],[-13,52],[2,33],[-4,14],[-25,37],[11,20]],[[7330,7028],[25,-29],[26,8],[8,8],[7,-10],[27,-1],[13,4],[5,-21],[8,-9],[22,17],[-1,22],[34,16],[2,-3],[27,12],[16,-18],[5,-18],[29,10],[6,-17],[26,11],[12,-31],[15,-2],[1,13],[-6,26],[11,1],[22,-8],[16,13],[-11,20],[1,30],[-4,19],[5,10],[10,-12],[20,-50],[7,-29],[14,16],[17,7],[4,8],[25,6],[28,23],[-15,41],[-14,8],[3,28],[-7,10],[-6,28],[10,20],[2,21],[11,21],[11,-20],[18,-2],[35,-58],[16,-19],[16,-47],[9,4],[15,-38],[7,-26],[16,-7],[6,9],[-2,19],[-7,13],[1,48],[7,11],[43,-11],[7,-14],[-5,-6],[1,-44],[4,-7],[-5,-22],[12,-12],[-3,-24],[13,-1],[2,-9],[11,1],[20,-14],[2,-10],[29,-20],[14,-22],[18,-10],[8,-20],[16,4],[-15,33],[6,13],[-19,26],[22,11],[3,-12],[19,5],[22,0],[11,-40],[13,9],[12,-11],[14,-1],[14,12],[28,6],[13,-10],[6,12],[16,-4],[16,5]],[[8302,6947],[-1,-54],[12,1],[-1,-19],[11,-25],[19,-6],[-5,-10],[13,-22],[17,-14],[-17,0],[7,-13],[13,-9],[2,-27],[-9,-6],[12,-39],[8,4],[3,-14],[-8,-12],[15,-4],[0,-12],[10,-20],[-8,-13],[12,-15],[-7,-15],[7,-9],[7,13],[3,-28],[8,-4],[-2,17],[7,-7],[4,-22],[-6,-3],[3,-36],[9,-11],[-5,-38],[7,0],[4,-36],[-7,-5],[6,-10],[-8,-5],[-2,-20],[-10,-16],[7,-11],[-16,1],[10,-36],[3,-27],[-9,5],[-12,-37],[16,-19],[-5,-15],[-13,4],[10,-23],[-7,2],[-7,-17],[14,-21],[6,1],[3,-23],[-8,-10],[12,-9],[5,8],[4,-18],[9,-8],[-8,-6],[12,-4],[0,-9],[-17,-12],[3,-13],[14,1],[5,-18],[-6,-12],[4,-12],[-9,-26],[-19,1],[3,-33],[8,-13],[-7,-11],[-13,4],[-15,-30],[-13,-17],[7,-28],[-14,-4],[6,-11],[-15,6],[13,-22],[3,-17],[-10,6],[-4,-9],[10,-21],[16,-8],[-12,-31],[-21,-14],[10,-12],[-15,-7],[4,12],[-8,1],[1,-27],[-14,6],[-8,12],[2,-29],[-8,4],[4,12],[-11,-8],[-2,-40],[-9,-5],[4,-11],[10,3],[7,-11],[-12,-3],[-19,-26],[-7,12],[2,-28],[-6,-22],[8,-20],[-5,-11],[8,-5],[-1,14],[10,-6],[-9,-27],[3,-9],[14,9],[9,-10],[-4,-32],[-11,2],[16,-28],[-11,-21],[-7,1],[-2,-16],[6,-10],[-5,-9],[0,-57],[-10,-8],[8,-7]],[[3926,6067],[7,7],[-4,11],[2,27],[-7,12],[-9,-4],[-3,28],[6,7],[-5,13],[6,8],[-5,23],[3,16],[-9,18],[11,15],[6,28],[12,10],[12,-1],[18,-14],[14,1],[9,19],[-8,29],[13,4],[2,32],[14,19],[13,55],[-22,6],[-23,12],[-7,24],[8,7],[6,33],[27,14],[4,11],[43,6],[3,27],[18,55],[-8,21],[-23,17],[-13,0],[-11,34],[-9,13],[13,17],[26,10],[8,19],[19,2],[8,11],[1,22],[23,15],[14,0],[3,10],[11,3],[7,14],[-6,18]],[[4144,6851],[15,-6],[24,-26],[18,-10],[6,-18],[20,-6],[5,-9],[5,12],[10,-6],[-3,-24],[25,-13],[6,10],[16,-9],[19,9],[8,-5],[8,12],[2,-12],[15,-10],[14,18],[19,1],[2,19],[19,7],[3,11],[10,0],[10,-20],[9,-3],[18,35],[-1,14],[-8,8],[2,28],[15,25],[-6,18],[3,10],[15,10],[4,11],[14,-1],[-1,29],[14,-5],[11,10],[8,42],[-10,16],[-2,36],[10,1],[0,17],[17,-6],[12,4],[-8,15],[16,-1],[17,7],[-4,22],[18,40],[23,-4],[1,23],[7,-2],[18,-33],[0,-13],[9,-13],[-3,-18],[12,-10],[-3,-6],[25,-5],[14,2],[5,-13],[21,3],[8,8],[-3,11],[6,14],[10,1],[-5,15],[-15,13],[12,22],[9,57],[-2,23],[16,33],[15,6],[5,24],[11,18],[-3,20],[11,41],[29,41],[3,15],[12,11],[21,37],[26,25],[20,6],[23,-8],[7,-7],[12,5],[18,32],[27,-5],[9,5],[11,-17],[26,5],[12,15],[0,9],[12,17],[25,8]],[[5080,7569],[15,-12],[14,-21],[23,1],[8,5],[21,-14],[4,13],[9,3],[6,17],[14,6],[27,-20],[7,-25],[11,-7],[6,-16],[15,-19],[0,-9]],[[5260,7471],[-5,-38],[0,-22],[6,-19],[35,-45],[-3,-37],[7,-38],[-6,-10],[2,-58],[10,-8],[-4,-34],[5,-15],[1,-23],[-10,-18],[-2,-14],[6,-16],[-1,-26],[-5,0],[-2,-32],[-4,-5],[-10,-54],[-2,-21],[17,-14],[11,-2],[5,-15],[-6,-5],[-1,-29],[6,-33],[26,-22],[-8,-5],[4,-10],[-11,-18],[4,-35],[-2,-34],[-16,-73],[12,-36],[-7,-27],[-23,-20],[-8,-12],[-25,-20],[-11,-28],[-30,-37],[-17,-43],[-18,-25],[-2,-20],[-7,-15],[-16,-9],[-32,1],[-18,9],[-14,-12],[-8,-27],[-20,-9],[-28,-25],[-9,-24],[-4,-32],[-31,-41],[8,-1],[7,-21],[9,20],[17,-4],[9,-15],[-16,-22],[-13,-48],[-8,-1],[-7,-16],[-41,-24],[-13,-29],[8,-8],[8,-29],[12,-7],[14,-31],[7,-8],[-5,-13],[-14,1],[-33,-21],[-21,31],[-12,1],[-11,-13],[-28,8],[-10,8],[-10,-3],[-8,-20],[3,-17],[11,-15],[-1,-20],[8,-28],[24,-2],[-18,-46],[-11,-8],[0,-13],[19,-38],[11,11],[11,0],[12,-19],[26,-26],[2,-39],[20,-8],[18,-2],[14,8],[18,-17],[15,11],[26,-18],[16,12],[19,-1],[8,-7],[-3,-16],[30,-3],[10,-52],[17,-45],[11,-13],[20,-13],[16,-21]],[[5260,7471],[11,5],[12,20],[13,-1],[25,25],[3,15],[16,1],[43,-37],[11,2],[31,-26],[10,13],[-3,16],[12,15],[7,34],[18,1],[10,10],[21,4],[21,-5],[15,-27],[18,-4],[15,-21],[3,-20],[-1,-27],[9,-11],[28,5],[38,-16],[13,15],[9,23],[17,-2],[19,-11]],[[5704,7467],[19,2],[31,-22],[7,3],[28,-24],[5,-33],[32,-50],[2,-18],[-7,-9],[13,-22],[11,-32],[1,-27],[12,-34],[14,19],[30,6],[5,-8],[-1,-23],[11,-2],[7,-24],[-12,-3],[-10,9],[-1,-34],[-20,-30],[-25,8],[0,-23],[-24,-37],[-8,-23],[-11,-10],[20,-34],[-6,-38],[-12,-7],[0,-13],[11,-14],[18,-4],[20,-21],[9,4],[21,-14],[-5,-24],[-13,-11],[-12,-2],[-4,-11],[11,-31],[2,-22],[-5,-16],[4,-28],[-17,-26],[4,-17],[-16,-11],[-3,-9],[13,-19],[-4,-15],[8,-2],[33,-46],[-1,-8],[23,-32],[13,-32],[4,3],[31,-5],[9,13],[-6,30],[-18,30],[-2,13],[7,19],[9,-9],[8,13],[23,3],[24,-11],[25,0],[2,-16]],[[5704,7467],[6,12],[1,22],[5,3],[-5,27],[10,10],[0,13],[25,31],[-7,32],[9,25],[15,4],[6,19],[-3,42],[15,10],[-2,14],[8,16],[10,6],[20,-5],[30,5],[10,-5],[16,29],[4,21],[8,14],[-4,17],[-18,19],[-8,32],[-13,16],[-5,25],[-8,20],[-13,20],[7,5],[41,-10],[13,-11],[16,2],[21,-35],[16,-11],[11,-15],[5,-27],[15,-19],[23,-7],[8,22],[2,18],[14,7],[24,4],[9,13],[32,-13],[11,13],[12,1],[12,-22],[13,-11],[24,12],[23,19],[8,0],[21,23],[13,-21],[24,17],[24,-13],[7,29],[16,-9],[13,-16],[12,-4],[15,-19],[11,-3],[8,14],[3,18],[10,10],[4,-6],[22,-4],[23,12],[11,25],[66,43],[13,15],[11,-14],[26,-13],[5,-22],[14,-20],[1,-9],[26,-17],[-2,-14],[31,-41],[7,-21],[7,-1]],[[6618,7835],[7,-14],[12,-1],[8,-18],[17,-22],[-1,-13],[10,-6],[0,-11],[25,-22],[3,-14],[11,-12],[8,-21],[4,-30],[-3,-46],[10,-21],[-5,-5],[8,-15],[2,-29],[-6,-12],[0,-19],[10,-29],[10,6],[39,39],[26,-45],[21,25],[18,6],[9,-4],[15,-28],[42,-54],[11,-31],[3,-23],[14,-9],[4,12],[19,-3],[7,-23],[23,-8],[17,8],[40,28],[11,-6],[15,10],[1,40],[7,1],[1,25],[15,3],[6,-19],[12,-66],[13,-9],[9,16],[15,-2],[0,28],[11,17],[10,48],[23,10],[10,-2],[11,8],[21,-6],[16,-20],[11,-1],[21,12],[7,-8],[0,-28],[15,-17],[0,-32],[-8,-13],[11,-19],[21,-6],[14,-23],[22,-15],[-3,-26],[-22,-17],[-15,-2],[-21,27],[-3,-22],[-13,-25],[-20,-15],[2,-23],[-21,2],[-14,-15],[1,-16],[28,-17],[37,-48],[8,-40],[6,-10],[3,-22]],[[2692,6333],[9,47],[-10,10],[2,43],[-9,25],[5,23],[-22,-11],[-3,33],[-11,7],[-28,31],[-8,-7],[-20,15],[-11,-3],[-18,-31],[-25,-12],[-8,19],[-4,23],[-13,16],[28,0],[10,20],[8,2],[19,-16],[12,-1],[17,21],[11,4],[7,16],[-7,43],[-11,29],[-24,26],[-3,11],[10,32],[-5,17],[-22,10],[-7,-5],[-15,5],[-10,10],[-6,17],[5,28],[7,19],[26,8],[13,0],[9,18],[13,3],[10,41],[13,33],[8,56],[7,5],[16,31],[-1,35],[-28,7],[-17,15],[-17,30],[-17,12],[-13,0],[-18,26],[6,9],[-1,34],[15,14],[15,29],[10,9],[15,28]],[[2606,7292],[22,6],[11,-6],[17,2],[-2,-12],[24,5],[3,6],[15,-4],[19,9],[12,-11],[10,11],[13,-16],[8,7],[4,-25],[6,-12],[26,3],[15,-16],[-8,-21],[-12,2],[-3,-33],[4,-41],[8,-8],[8,5],[20,-17],[2,-37],[16,-3],[3,-13],[12,-10],[13,7],[9,-5],[17,8],[14,-10],[-8,-17],[6,-9],[15,25],[8,-10],[-6,-15],[4,-15],[9,0],[5,19],[18,20],[16,-5],[13,-17],[-10,-32],[1,-15],[-11,-13],[24,-9],[5,-11],[26,12],[18,4],[11,22],[20,9],[25,-10],[17,44],[9,8],[-11,16],[-3,51],[9,12],[5,21],[-12,21],[22,13],[-5,18],[11,-14],[-2,-26],[14,-5],[13,-20],[-6,-16],[2,-22],[9,-14],[22,4],[3,-16],[18,-5],[22,24],[12,-11],[17,19],[9,19],[-7,6],[9,7],[9,22],[12,14],[-3,18],[-9,17],[12,-1],[-1,22],[18,3],[13,10],[-14,8],[3,18],[29,-11],[5,10],[11,-5],[10,22],[9,4],[0,14],[14,13],[-7,15],[5,10],[13,2],[2,16],[-16,19],[3,27],[-18,8],[1,17],[-16,20],[-15,25],[5,8],[13,-9],[6,17],[16,-13],[19,2],[2,18],[-11,8],[4,15],[23,4],[-3,32],[-10,9],[-4,17],[2,25],[7,10],[29,1],[11,10],[17,-5],[-6,12],[15,37],[13,2],[22,-17],[11,-17],[12,15],[13,6],[9,12],[-6,26],[11,23],[-2,11],[9,9],[9,23],[14,4],[17,25],[23,16],[9,18],[11,3],[1,-16],[13,-1],[18,-10],[2,18],[-5,22],[3,24],[8,1],[16,-16],[13,-6],[26,-42],[7,0],[1,18],[-8,36],[-15,27],[12,25],[-4,10],[7,9],[-1,14],[13,4],[4,25],[13,13],[2,19]],[[3784,7998],[-1,13],[-10,11],[23,47],[19,6],[13,-4],[13,-31],[22,5],[11,-6],[16,12],[11,-2],[26,14],[25,2],[25,-11]],[[3977,8054],[-7,-30],[10,-47],[-3,-12],[-33,-29],[-4,-15],[-12,-7],[-34,30],[-21,-27],[-3,-123],[7,-25],[-1,-17],[8,-16],[-3,-20],[5,-34],[35,-47],[25,5],[11,-5],[0,21],[13,2],[19,-49],[-4,-3],[0,-27],[13,-8],[3,-20],[7,-9],[14,12],[10,-7],[19,10],[11,-4],[5,-13],[1,-23],[13,-17],[12,-28],[3,-16],[-5,-25],[-17,-30],[-3,-25],[3,-11],[-6,-15],[-13,-13],[20,-17],[-2,-19],[-11,-19],[3,-39],[9,-16],[2,-15],[-5,-21],[20,12],[1,-8],[26,-23],[-1,-19],[-17,-6],[-1,-9],[10,-12],[15,-1],[19,10],[14,-8],[0,-28],[24,-18],[4,-30],[21,-12],[-8,-8],[-20,1],[4,-15],[-6,-30],[-8,-12],[3,-50],[-21,-14],[4,-8],[-1,-23],[-11,-11],[2,-18]],[[2606,7292],[-8,6],[-3,42],[6,33],[-25,-15],[-9,8],[0,13],[-9,9],[-24,-2],[-11,13],[-27,10],[-15,15],[3,21],[-5,14],[-19,4],[-12,-9],[-19,22],[5,10],[-14,37],[14,13],[-2,11],[-18,28],[-15,9],[3,26],[-5,3],[3,20],[-4,19],[-28,1],[-10,23],[18,19],[-3,29],[11,28],[0,22],[20,4],[-3,23],[19,16],[4,10],[-6,10],[3,17],[-3,59],[-5,8],[8,36],[6,8],[24,-10],[27,27],[5,9],[-4,36]],[[2479,8027],[26,5],[10,23],[1,22],[16,5],[10,11],[13,-4],[22,30],[3,15],[10,12],[18,5],[19,-3],[8,4],[21,-2],[17,14],[18,-10],[6,-19],[7,6],[11,33],[13,10],[31,-12],[20,-17],[5,-10],[10,12],[21,-4],[-9,-45],[22,0],[-1,-22],[24,-39],[19,-12],[13,19],[11,2],[8,-10],[6,14],[12,-2],[28,-17],[7,1],[8,22],[29,31],[2,20],[15,14],[3,31],[-3,18],[-11,16]],[[2998,8194],[18,24],[26,14],[18,-7],[25,35],[0,-9],[14,0],[20,-14],[7,1],[0,-22],[27,-3],[14,-11],[27,1],[14,-16],[13,7],[17,-35],[8,-3],[11,12],[5,-7],[1,-27],[18,2],[37,-11],[18,-9],[18,-21],[20,-4],[40,1],[1,-14],[18,-10],[7,8],[22,4],[21,-6],[4,-11],[26,16],[35,8],[9,10],[17,7],[27,-15],[18,-53],[13,4],[13,-4],[11,-20],[-11,-15],[-1,-11],[19,-3],[11,4],[1,-14],[8,-6],[6,14],[9,2],[6,15],[21,-1],[17,15],[15,-3],[11,-12],[16,-3]],[[3977,8054],[11,27],[27,9],[15,45],[-2,22],[12,2],[17,19],[9,17],[10,47],[7,17],[-12,27],[4,25],[-3,19],[12,21],[20,0],[7,7],[30,12],[20,-3],[31,-13],[16,3],[8,33],[19,1],[11,28],[-1,25],[10,8],[6,20],[9,7],[2,38],[38,-19],[20,13],[13,45],[14,25],[23,-8],[8,-11],[28,-11],[13,7],[26,-20],[38,-11],[25,-11],[12,-20],[21,-8],[17,17],[33,-7],[8,8],[23,0],[7,-6],[5,-24],[38,4],[25,29],[11,6],[6,-6],[24,-4],[36,9],[8,-7],[13,4],[4,9],[-5,20],[8,16],[14,14],[17,6],[2,12],[15,-9],[0,-14],[11,-10],[28,18],[20,-9],[32,-3]],[[4951,8561],[15,-1],[33,-24],[2,-16],[13,-19],[23,-13],[-9,-25],[-10,-12],[12,-9],[7,6],[12,-45],[16,-40],[8,-4],[22,3],[9,-21],[-11,-15],[-5,-16],[-27,-21],[18,-44],[14,8],[11,-13],[-15,-21],[-14,-3],[-19,-19],[-14,2],[-1,11],[-16,0],[-8,-20],[-3,-25],[31,-43],[-1,-14],[16,-19],[14,5],[6,-16],[-8,-40],[2,-11],[15,-15],[-5,-25],[8,-32],[-3,-7],[-19,-8],[-24,-29],[8,-37],[21,-32],[16,-7],[-4,-28],[-14,-22],[-8,-24],[-9,-7],[-6,-30],[3,-18],[17,-1],[-2,-19],[10,-38],[5,-9],[-13,-35],[11,-23],[-1,-12]],[[6618,7835],[15,22],[13,4],[1,25],[12,18],[24,-4],[3,11],[-18,4],[2,27],[-5,8],[-8,-8],[-21,40],[-8,-5],[-10,19],[-12,-6],[-11,48],[5,19],[-5,27],[-10,22],[3,15],[24,15],[12,-2],[10,-43],[29,-9],[4,7],[32,-24],[13,-24],[26,-1],[5,9],[38,0],[-13,15],[0,8],[14,7],[-3,15],[-8,4],[-6,19],[-8,7],[-9,-5],[-3,17],[24,13],[14,20],[-11,32],[1,15],[11,8],[0,64]],[[6784,8288],[22,22],[-4,20],[25,-5],[11,7],[10,16],[-2,16],[-12,16],[11,6],[10,15],[8,-14],[25,-10],[20,-18],[18,11],[14,-14],[24,-14],[13,5],[18,-12],[46,3],[10,11],[33,-13],[5,12],[17,-14],[14,-1],[4,-20],[14,-35],[9,-8],[4,-18],[15,-32],[9,36],[16,2],[-2,23],[19,-7],[0,71],[-5,2],[-2,35],[7,26],[18,52],[18,2],[15,-15],[16,-37],[15,16],[8,-21],[29,-12],[28,3],[22,15],[13,19],[11,0],[-12,25],[1,22],[-6,6],[18,24],[20,-8],[6,-9],[25,23],[16,4],[34,17],[15,-2],[18,14]],[[7536,8546],[15,-16],[23,3],[2,-9],[-12,-16],[1,-16],[15,-6],[-9,-15],[15,-9],[-6,-17],[11,-15],[11,3],[1,-10],[-10,-7],[12,-16],[1,-40],[11,-8],[8,-31],[18,8],[-1,-11],[8,-12],[9,-1],[6,24],[5,-2],[-5,-25],[10,11],[13,-9],[0,22],[7,-2],[5,-27],[13,-12],[0,-9],[16,-1],[2,-11],[-6,-22],[-12,-4],[4,-16],[-9,-15],[12,-22],[4,6],[7,-15],[3,-23],[8,-2],[-4,-18],[-13,-9],[0,-43],[15,2],[-9,-16],[27,0],[-6,-41],[13,0],[-2,-20],[11,-2],[-16,-20],[-18,5],[-1,-9],[13,1],[0,-20],[12,23],[5,-9],[-7,-13],[7,-2],[10,18],[6,-10],[1,-22],[9,4],[-1,-23],[12,-5],[-1,15],[21,0],[9,-15],[1,21],[5,-1],[0,-22],[5,-5],[0,-26],[6,14],[16,-4],[-3,17],[7,6],[11,-13],[10,2],[8,-16],[1,-24],[9,3],[-2,-27],[13,-11],[1,-9],[-15,4],[14,-11],[0,-13],[-12,-5],[6,-14],[9,4],[-3,-21],[20,2],[-3,-22],[14,-2],[-8,-26],[14,-4],[-5,-32],[17,-1],[-7,-41],[16,-18],[-10,-14],[0,-10],[-16,2],[0,-13],[10,4],[5,-15],[-21,5],[3,-7],[18,-7],[16,1],[16,-9],[11,4],[11,-14],[-4,-15],[-9,17],[-14,-15],[5,-13],[28,-12],[-3,-10],[20,3],[0,-10],[11,-11],[-4,-14],[14,-11],[7,-30],[6,8],[11,-20],[7,2],[12,-14],[5,9],[23,-22],[-17,-9],[5,-9],[15,5],[-4,-17],[15,6],[11,-22],[8,8],[4,-20],[29,-12],[5,16],[10,-3],[5,-19],[6,10],[5,-25],[-14,11],[-7,-15],[18,-21],[34,-24],[15,-23],[-11,-17],[-4,-29],[13,-6],[-3,-19],[8,0],[-9,-24],[17,-12],[-10,-4],[17,-15],[-9,-24],[-18,-5],[-4,-9],[13,-23],[9,6],[9,-29],[6,-6],[-20,-21],[12,1],[-3,-9],[20,-30],[-12,-11]],[[1247,6526],[13,20],[2,11],[-14,-1],[-15,32],[-2,20],[7,13],[17,-15],[20,15],[14,-7],[8,-14],[19,26],[3,29],[20,20],[-3,40],[-15,13],[-20,26],[-9,2],[-2,14],[7,23],[19,15],[8,25],[8,43],[-4,32],[1,17],[15,6],[4,16],[20,15],[13,0],[16,13],[13,3],[7,16],[1,35],[11,3],[-7,32],[-9,17],[-1,39],[6,11],[36,1],[3,13],[10,10],[8,27],[16,-6],[9,29],[-14,7],[2,22],[8,19],[1,17],[9,5],[-10,27],[0,14],[-17,3],[-13,29],[-2,15],[37,11],[0,13],[23,25],[-4,11],[16,14],[-3,18],[13,33],[49,23],[22,-6],[-2,37],[11,15],[-1,15],[13,61],[6,14],[21,9],[10,17],[11,5],[2,46],[-2,26],[-11,6],[5,35],[5,7],[16,45],[9,3],[8,15],[-1,16],[-7,7],[12,40],[3,25],[28,62],[4,26],[15,30],[-2,12],[16,5],[9,13],[14,-7],[19,8],[7,-10],[14,-3],[13,37],[12,44],[-6,20],[6,10],[-10,32],[7,19],[-12,7],[-15,62],[7,41],[11,38],[23,43],[16,-23],[11,19],[-18,19],[26,33],[12,-10],[9,9],[8,25],[7,3],[17,31],[-1,19],[12,0],[11,-9],[20,-4],[8,6],[10,30]],[[2033,8586],[8,-11],[11,0],[22,-13],[1,-20],[8,-29],[17,-24],[13,0],[-5,-13],[6,-7],[-8,-33],[24,5],[13,-6],[5,-41],[-8,-7],[1,-20],[22,-13],[20,-4],[23,-27],[-16,-12],[9,-29],[-1,-25],[9,-39],[5,4],[6,-25],[17,9],[17,-6],[15,11],[0,-7],[18,-6],[6,-14],[13,14],[9,0],[20,16],[18,-4],[7,-10],[9,9],[18,-23],[-3,-16],[4,-20],[8,-1],[6,-14],[18,5],[16,-20],[7,-43],[16,-25],[-1,-11],[15,-21],[8,7]],[[4951,8561],[26,36],[10,7],[34,36],[13,0],[8,8],[21,7],[4,14],[-4,24],[-16,13],[-14,3],[-9,21],[-21,19],[-21,33],[-23,15],[0,15],[-9,11],[2,22]],[[4952,8845],[38,1],[13,-9],[13,19],[19,-5],[16,-14],[16,45],[8,-12],[56,32],[1,29],[34,50],[17,-3],[6,12],[-5,27],[12,11],[4,29],[22,26],[-2,18],[7,13],[15,11],[4,29],[-3,11],[7,31],[9,8],[16,1],[6,-8],[15,2],[41,45],[16,-2],[78,17],[101,24],[102,13],[36,22],[37,1],[26,-11],[14,4],[11,-9],[26,9],[5,-9],[39,-5],[46,31],[8,21],[12,8],[25,7],[20,-16],[12,-4],[16,7],[9,28],[27,-3],[12,-11],[19,7],[96,30],[42,-21]],[[6172,9382],[19,-12],[-9,-17],[20,-22],[-6,-30],[3,-20],[19,-6],[4,-11],[11,9],[8,-16],[20,-4],[-2,-20],[9,-5],[-10,-16],[2,-16],[13,-3],[2,-17],[28,24],[5,12],[21,-31],[11,1],[4,-14],[10,-8],[-2,-13],[13,-28],[8,17],[4,-17],[10,-3],[7,-13],[-12,-26],[19,-22],[1,-25],[13,-18],[12,-28],[6,0],[31,-53],[13,-10],[6,6],[13,-17],[0,-10],[-17,-24],[7,-22],[7,-1],[3,-17],[14,2],[-2,-13],[20,6],[3,-15],[9,7],[8,-15],[-3,-19],[8,-14],[8,4],[19,-36],[-7,-17],[10,-16],[-3,-6],[19,-8],[-2,-11],[19,-6],[-2,-10],[22,2],[7,-15],[-12,-2],[8,-19],[-7,-25],[12,-4],[5,-22],[-3,-15],[-13,-3],[9,-23],[-3,-15],[18,-9],[-4,-6],[9,-18],[-1,-23],[15,-28],[0,-16],[28,-6],[0,-26],[-18,-9],[-23,-5],[-16,-14],[12,-26],[10,10],[20,-21],[-2,-30],[5,-13],[-6,-10],[4,-16],[8,-3],[7,11],[17,1],[28,18],[17,-16],[9,-2],[8,17]],[[2998,8194],[-1,16],[-22,19],[-19,-12],[-12,-1],[-6,-12],[-16,-5],[-6,-9],[-13,0],[-16,18],[-28,13],[-4,32],[2,18],[11,15],[-10,34],[7,5],[26,-16],[14,24],[23,-12],[15,7],[-3,8],[0,51],[7,14],[-1,35],[5,13],[0,23],[12,33],[23,24],[28,44],[8,23],[22,24],[9,-28],[22,-46],[8,-12],[23,-18],[21,2],[30,-48],[13,-3],[19,5],[12,14],[-2,22],[-8,9],[5,8],[3,47],[-7,22],[6,22],[0,18],[9,31],[9,0],[15,13],[3,-10],[12,3],[3,16],[15,7],[6,21],[17,3],[2,11],[15,21],[-9,11],[-14,-10],[-3,27],[-28,32],[-13,-9],[-18,8],[-14,13],[2,13],[-7,7],[-14,-11],[-12,8],[-15,-6],[-10,4],[-2,31],[-8,18],[16,26],[-4,7],[18,27],[0,38],[21,8],[13,-23],[27,-3],[32,-16],[14,-2],[19,11],[13,-11],[19,-4],[7,-15],[15,5],[14,-5],[7,-11],[12,7],[17,33],[33,15],[10,16],[18,2],[3,12],[21,4],[3,24],[14,25],[-1,18],[13,8],[10,23],[12,4],[1,-13],[23,17],[16,31],[-8,9],[-8,31],[-15,26],[-21,0],[-14,35],[-1,24],[-7,4],[-9,30],[-13,-6],[-10,4],[-45,43],[-2,17]],[[3422,9361],[5,25],[18,32],[8,52],[14,-22],[9,0],[18,-14],[19,2],[7,10],[9,-4],[17,4],[6,-10],[11,0],[11,-12],[2,-12],[20,-16],[28,7],[21,13],[4,-12],[8,12],[33,6],[9,-8],[14,4],[17,-20],[29,-7],[0,-13],[16,-19],[-1,-22],[10,-17],[1,-15],[22,-23],[17,23],[10,-1],[26,11],[9,-4],[19,5],[7,12],[2,18],[8,7],[8,-6],[10,12],[6,-17],[17,3],[14,14],[15,-17],[9,-22],[16,8],[19,0],[6,-12],[29,-22],[1,-15],[14,-33],[20,1],[8,-7],[12,10],[13,-4],[4,11],[14,-10],[18,0],[18,-20],[7,-20],[9,-2],[35,24],[19,-3],[21,14],[5,10],[23,19],[10,-17],[16,-6],[31,23],[4,30],[9,28],[19,15],[6,-1],[21,24],[16,-16],[21,0],[33,-24],[12,-1],[15,21],[27,-6],[11,21],[21,-7],[20,-43],[9,14],[14,0],[9,-25],[-3,-12],[7,-21],[17,-12],[1,-18],[8,-4],[14,-27],[-9,-42],[8,-29],[15,-15],[17,-9],[3,-26],[15,-2],[14,11],[22,-31],[5,16],[21,0],[6,-30],[11,4],[35,-10],[-6,-31],[15,-26],[2,-32],[14,-9],[4,-20],[24,-28],[5,-35],[4,-5],[-4,-21],[27,2],[41,8]],[[2033,8586],[10,51],[4,8],[4,41],[9,-3],[12,18],[3,40],[-3,5],[9,23],[24,3],[7,19],[-1,29],[5,30],[23,-3],[22,25],[11,4],[4,25],[-4,23],[7,3],[12,-10],[12,-20],[11,-9],[31,-8],[10,6],[16,-3],[1,-9],[20,-2],[-4,28],[6,16],[8,61],[8,28],[20,4],[15,13],[8,-11],[54,-51],[11,-20],[65,-1],[4,11],[13,-2],[11,9],[9,-3],[19,9],[7,10],[16,7],[15,58],[9,12],[3,23],[12,9],[28,-9],[17,17],[12,2],[1,19],[-5,23],[-11,9],[6,25],[-11,15],[7,16],[20,2],[10,-6],[42,40],[17,-2],[10,25],[9,10],[8,29],[12,14],[1,13],[26,14],[21,4],[15,19],[-5,51],[-5,17],[-13,5],[-2,23],[6,13],[18,-5],[19,-19],[0,8],[16,-3],[-1,-7],[20,-12],[19,-24],[11,3],[7,18],[27,6],[10,10],[27,-5],[4,18],[-5,6],[16,30],[5,17],[-12,14],[15,20],[-6,27],[7,5],[10,27],[-10,9],[17,21],[18,9],[3,25],[17,8],[1,11],[11,0],[10,-19],[3,-29],[10,-5],[50,-8],[6,19],[17,-1],[3,-34],[11,-5],[12,-20],[-17,-30],[12,-26],[16,-10],[13,5],[12,-19],[8,6],[-5,-31],[11,-13],[10,6],[8,-14],[49,-32],[1,-15],[14,-12],[16,7],[4,-15],[25,-19],[20,-1],[15,-13],[7,2]],[[6172,9382],[18,8],[9,12],[11,-8],[35,14],[15,9],[16,28],[9,46],[7,51],[43,42],[14,11],[8,19],[7,31],[5,38],[12,33],[20,32],[12,9],[7,15],[-7,36],[5,16],[17,-1],[2,17],[9,-13],[9,10],[4,17],[14,-4],[-7,-15],[9,-5],[17,5],[20,26],[12,-17],[7,8],[-5,16],[13,-2],[13,9],[-3,14],[15,12],[13,-11],[17,6],[13,-13],[14,4],[2,-8],[24,15],[0,19],[23,-13],[-3,21],[3,20],[17,18],[8,-17],[26,1],[-6,23],[17,-3],[-1,22],[10,4],[5,-17],[7,0],[12,24],[5,-13],[-2,-22],[16,1],[13,13],[4,19],[9,1],[3,-21],[21,-18],[5,11],[-4,16],[16,-10],[-10,-18],[37,6],[13,-10],[6,15],[10,-3],[13,13],[7,-15],[13,-9],[2,-30],[11,-6],[8,14],[10,-5],[4,-26],[27,-37],[25,-1],[-7,-14],[-9,-1],[0,-15],[15,-16],[13,8],[-8,30],[17,6],[15,-9],[7,-25],[-19,-35],[16,-17],[21,4],[19,-10],[5,-23],[-16,-5],[-18,17],[-7,-16],[6,-22],[12,-11],[13,0],[20,-16],[8,5],[10,26],[12,3],[-5,-27],[13,11],[4,-6],[-6,-27],[8,-21],[-2,-12],[-13,-24],[17,-17],[4,-27],[17,-13],[19,-25],[3,-30],[24,-6],[3,-7],[-16,-21],[-2,-27],[12,-1],[13,16],[16,-7],[-10,-18],[1,-18],[13,-8],[33,8],[-7,-17],[-6,-34],[-13,-10],[21,-20],[18,-23],[-29,-55],[52,-42],[9,-112],[17,-19],[25,-14],[-1,-10],[-13,-10],[-12,14],[-9,-17],[7,-19],[14,4],[7,-9],[-11,-12],[0,-17],[20,-14],[2,-28],[13,-6],[4,-37],[13,9],[5,-20],[-7,-6],[10,-7],[7,10],[3,-12],[-13,-8],[-4,-24],[14,-9],[-3,-13],[-14,13],[-11,-5],[-1,14],[-8,-4],[-10,-26],[14,-11],[10,-31],[8,4],[-8,-25],[8,-13],[15,-5],[0,-39],[13,-3],[7,-18],[1,-17],[23,-40],[22,-10],[6,-10],[9,-41],[21,-18]]]}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment