Skip to content

Instantly share code, notes, and snippets.

@alexrutherford
Last active September 24, 2015 15:36
Show Gist options
  • Select an option

  • Save alexrutherford/16868f77e86706e1ddd9 to your computer and use it in GitHub Desktop.

Select an option

Save alexrutherford/16868f77e86706e1ddd9 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<meta charset="utf-8">
<style>
.node {
stroke-width: 0.5px;
}
.node:not(:hover) .nodetext {
display: none;
}
.link {
stroke: #999;
stroke-opacity: 0.1;
}
#titleDiv {
font-family: 'Lucida Casual';
/* background:orange; */
font:#5d6263;
font-size: 2.0em;
z-index:10000;
position:absolute;
left:50px;
top:1900px
}
</style>
<center>
<div id="titleDiv" class="bubble"></div>
</center>
<body>
<script src="//code.jquery.com/jquery-1.11.2.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.5/d3.min.js"></script>
<script>
$("#titleDiv").css("top",""+40+"px").html("@IStandWithAhmed").show();
var width = 2000,
height = 2000;
var color = d3.scale.category20c();
var force = d3.layout.force()
.charge(-120)
.linkDistance(140)
.size([width, height]);
var svg = d3.select("body").append("svg")
.attr("width", width)
.attr("height", height);
d3.json("network.json", function(error, graph) {
if (error) throw error;
console.log(graph.nodes)
console.log(graph.links)
force.nodes(graph.nodes)
.links(graph.links)
.start();
var link = svg.selectAll(".link")
.data(graph.links)
.enter().append("line")
.attr("class", "link")
.style("stroke-width", function(d) { return 4; });
var node = svg.selectAll(".node")
.data(graph.nodes)
.enter().append("circle")
.attr("class", "node")
.attr("r", function(d){return d.size})
.style("fill", function(d) { return color(d.country); })
.call(force.drag);
//color(d.country)
node.append("svg:text")
.attr("class", "nodetext")
.attr("dx", 12)
.attr("dy", ".35em")
.text(function(d) { return d.id });
force.on("tick", function() {
link.attr("x1", function(d) { return d.source.x; })
.attr("y1", function(d) { return d.source.y; })
.attr("x2", function(d) { return d.target.x; })
.attr("y2", function(d) { return d.target.y; });
node.attr("cx", function(d) { return d.x; })
.attr("cy", function(d) { return d.y; });
});
});
</script>
{"directed": false, "nodes": [{"country": 0, "id": 0, "size": 0.0}, {"country": 60, "id": 1, "size": 6.6167710976665717}, {"country": 53, "id": 2, "size": 7.2595814640649232}, {"country": 65, "id": 3, "size": 5.4659081186545837}, {"country": 53, "id": 4, "size": 7.7165947735209777}, {"country": 21, "id": 5, "size": 5.5747109785033828}, {"country": 53, "id": 6, "size": 8.4109518755836366}, {"country": 77, "id": 7, "size": 8.3708601665367155}, {"country": 29, "id": 8, "size": 6.9322451874480109}, {"country": 53, "id": 9, "size": 5.9972122737641147}, {"country": 53, "id": 10, "size": 4.9702919135521224}, {"country": 53, "id": 11, "size": 5.4543472962535073}, {"country": 53, "id": 12, "size": 6.0562458053483077}, {"country": 53, "id": 13, "size": 6.2678581590633282}, {"country": 53, "id": 14, "size": 6.1119877883565437}, {"country": 42, "id": 15, "size": 3.7080502011022101}, {"country": 53, "id": 16, "size": 7.1180971980413483}, {"country": 53, "id": 17, "size": 6.9242557974145322}, {"country": 53, "id": 18, "size": 9.4652681185513181}, {"country": 53, "id": 19, "size": 5.4659081186545837}, {"country": 53, "id": 20, "size": 6.0498560072495371}, {"country": 77, "id": 21, "size": 6.2470240721604862}, {"country": 53, "id": 22, "size": 6.6835797673386814}, {"country": 53, "id": 23, "size": 6.0562458053483077}, {"country": 53, "id": 24, "size": 9.1086232683545951}, {"country": 53, "id": 25, "size": 5.3040650932041702}, {"country": 53, "id": 26, "size": 4.6888794541139358}, {"country": 53, "id": 27, "size": 6.4638318050256105}, {"country": 53, "id": 28, "size": 5.9836066217083363}, {"country": 129, "id": 29, "size": 5.4543472962535073}, {"country": 53, "id": 30, "size": 7.4738906963522744}, {"country": 118, "id": 31, "size": 4.8286413964890951}, {"country": 53, "id": 32, "size": 8.5543348237257479}, {"country": 93, "id": 33, "size": 8.0501225202690598}, {"country": 93, "id": 34, "size": 7.4997870406558542}, {"country": 53, "id": 35, "size": 5.8121843553724171}, {"country": 53, "id": 36, "size": 7.6694980898578793}, {"country": 53, "id": 37, "size": 6.7960577507653719}, {"country": 53, "id": 38, "size": 7.5638555265321274}, {"country": 0, "id": 39, "size": 4.7612001156935619}, {"country": 93, "id": 40, "size": 6.7651911027848444}, {"country": 21, "id": 41, "size": 7.1548580940164177}, {"country": 53, "id": 42, "size": 8.0483864087218819}, {"country": 53, "id": 43, "size": 5.3174881135363101}, {"country": 77, "id": 44, "size": 5.4188406077965983}, {"country": 53, "id": 45, "size": 7.7604146910834277}, {"country": 47, "id": 46, "size": 9.8485093008880789}, {"country": 53, "id": 47, "size": 6.8664680569332965}, {"country": 127, "id": 48, "size": 6.2257466737132017}, {"country": 21, "id": 49, "size": 7.4409465406329209}, {"country": 53, "id": 50, "size": 6.1929568508902104}, {"country": 93, "id": 51, "size": 7.6758232216348476}, {"country": 53, "id": 52, "size": 5.1431347263915326}, {"country": 53, "id": 53, "size": 7.8916258970522533}, {"country": 53, "id": 54, "size": 6.7589017738772803}, {"country": 53, "id": 55, "size": 4.8286413964890951}, {"country": 37, "id": 56, "size": 4.5835189384561099}, {"country": 53, "id": 57, "size": 7.3801225368997647}, {"country": 53, "id": 58, "size": 6.5053315359323625}, {"country": 53, "id": 59, "size": 6.4930614433405482}, {"country": 53, "id": 60, "size": 7.0844994130751715}, {"country": 118, "id": 61, "size": 8.0299729117063858}, {"country": 129, "id": 62, "size": 3.4849066497880004}, {"country": 57, "id": 63, "size": 5.7361984483944957}, {"country": 77, "id": 64, "size": 7.3421214187211516}, {"country": 53, "id": 65, "size": 8.4354380198145513}, {"country": 127, "id": 66, "size": 10.911207675551266}, {"country": 132, "id": 67, "size": 8.5766097669730375}, {"country": 53, "id": 68, "size": 7.4118182677098972}, {"country": 77, "id": 69, "size": 3.6390573296152584}, {"country": 53, "id": 70, "size": 3.6390573296152584}, {"country": 77, "id": 71, "size": 5.6913478822291435}, {"country": 53, "id": 72, "size": 6.857933154483459}, {"country": 53, "id": 73, "size": 7.2915691395583204}, {"country": 53, "id": 74, "size": 4.0910424533583161}, {"country": 53, "id": 75, "size": 10.611931318535747}, {"country": 53, "id": 76, "size": 6.9939614273065693}, {"country": 53, "id": 77, "size": 6.3033049080590757}, {"country": 53, "id": 78, "size": 5.219507705176107}, {"country": 77, "id": 79, "size": 6.8833223884882786}, {"country": 60, "id": 80, "size": 6.7776523232226564}, {"country": 53, "id": 81, "size": 6.0434251169192468}, {"country": 53, "id": 82, "size": 4.1354942159291497}, {"country": 53, "id": 83, "size": 7.9603477291013078}, {"country": 53, "id": 84, "size": 7.3985949345352076}, {"country": 53, "id": 85, "size": 6.7071102647488754}, {"country": 53, "id": 86, "size": 6.7776523232226564}, {"country": 92, "id": 87, "size": 6.6869753563398202}, {"country": 21, "id": 88, "size": 8.4809921628695246}, {"country": 53, "id": 89, "size": 4.7841896339182615}, {"country": 53, "id": 90, "size": 3.5649493574615367}, {"country": 53, "id": 91, "size": 7.9966814881765389}, {"country": 31, "id": 92, "size": 3.1972245773362196}, {"country": 53, "id": 93, "size": 6.4205349992722862}, {"country": 53, "id": 94, "size": 6.2781146592305168}, {"country": 53, "id": 95, "size": 7.5567783561580422}, {"country": 53, "id": 96, "size": 6.9635793436184459}, {"country": 93, "id": 97, "size": 6.8522024797744745}, {"country": 53, "id": 98, "size": 7.6933236682699491}, {"country": 53, "id": 99, "size": 5.4543472962535073}, {"country": 21, "id": 100, "size": 7.0330862217988015}, {"country": 77, "id": 101, "size": 6.4638318050256105}, {"country": 53, "id": 102, "size": 5.0775374439057197}, {"country": 37, "id": 103, "size": 6.7930136083841441}, {"country": 53, "id": 104, "size": 7.752270376141742}, {"country": 77, "id": 105, "size": 6.4638318050256105}, {"country": 53, "id": 106, "size": 6.3278761687895813}, {"country": 21, "id": 107, "size": 5.4773368144782069}, {"country": 53, "id": 108, "size": 8.8640356590724494}, {"country": 53, "id": 109, "size": 7.0958245624322247}, {"country": 53, "id": 110, "size": 6.8861040314501558}, {"country": 53, "id": 111, "size": 7.0378709199221374}, {"country": 37, "id": 112, "size": 5.8040210447332568}, {"country": 53, "id": 113, "size": 5.7095302013123339}, {"country": 93, "id": 114, "size": 6.521460917862246}, {"country": 129, "id": 115, "size": 4.8501476017100584}, {"country": 21, "id": 116, "size": 6.6204008657171496}, {"country": 53, "id": 117, "size": 5.7361984483944957}, {"country": 53, "id": 118, "size": 7.9137373506596846}, {"country": 37, "id": 119, "size": 6.3659760150218512}, {"country": 53, "id": 120, "size": 7.4982821494764336}, {"country": 53, "id": 121, "size": 5.7361984483944957}, {"country": 53, "id": 122, "size": 6.8230458954830189}, {"country": 53, "id": 123, "size": 8.8359745817215654}, {"country": 53, "id": 124, "size": 7.8855096700348177}, {"country": 53, "id": 125, "size": 7.3062752869480159}, {"country": 53, "id": 126, "size": 6.9215784196438159}, {"country": 53, "id": 127, "size": 5.5849674786705723}, {"country": 53, "id": 128, "size": 8.7655690810973166}, {"country": 131, "id": 129, "size": 9.3359110941969448}, {"country": 53, "id": 130, "size": 7.1675164908883415}, {"country": 77, "id": 131, "size": 3.9444389791664403}, {"country": 53, "id": 132, "size": 6.6698809229805196}, {"country": 53, "id": 133, "size": 7.1923624894748723}, {"country": 53, "id": 134, "size": 8.9247959139564355}, {"country": 53, "id": 135, "size": 5.7957905455967413}, {"country": 129, "id": 136, "size": 6.9635793436184459}, {"country": 84, "id": 137, "size": 7.8731638342125176}, {"country": 129, "id": 138, "size": 3.7725887222397811}, {"country": 129, "id": 139, "size": 8.0621916322865559}, {"country": 53, "id": 140, "size": 7.1268691841141854}, {"country": 77, "id": 141, "size": 5.9767337424205742}, {"country": 53, "id": 142, "size": 7.0282785202306979}, {"country": 53, "id": 143, "size": 8.4247617618232091}, {"country": 53, "id": 144, "size": 5.4886363697321396}, {"country": 53, "id": 145, "size": 6.1298987149230735}, {"country": 53, "id": 146, "size": 4.8066624897703196}, {"country": 53, "id": 147, "size": 6.9738096118692612}, {"country": 53, "id": 148, "size": 11.226114382335288}, {"country": 53, "id": 149, "size": 8.1396603359649191}, {"country": 53, "id": 150, "size": 5.5325994931532563}, {"country": 77, "id": 151, "size": 8.9741886692860113}, {"country": 53, "id": 152, "size": 4.8918202981106269}, {"country": 53, "id": 153, "size": 3.0794415416798357}, {"country": 53, "id": 154, "size": 7.1944053911046719}, {"country": 99, "id": 155, "size": 6.0625950330269669}, {"country": 21, "id": 156, "size": 7.6039438246004725}, {"country": 21, "id": 157, "size": 7.2878585601617845}, {"country": 93, "id": 158, "size": 6.9026333334013659}, {"country": 53, "id": 159, "size": 8.5903469456025654}, {"country": 53, "id": 160, "size": 8.0326242610280065}, {"country": 53, "id": 161, "size": 10.971379818579047}, {"country": 77, "id": 162, "size": 8.8410997654221184}, {"country": 53, "id": 163, "size": 6.4249500174814029}, {"country": 53, "id": 164, "size": 5.9199809258281251}, {"country": 53, "id": 165, "size": 6.3659760150218512}, {"country": 37, "id": 166, "size": 5.0430512678345503}, {"country": 53, "id": 167, "size": 4.8066624897703196}, {"country": 53, "id": 168, "size": 6.7170277014062219}, {"country": 129, "id": 169, "size": 3.7725887222397811}, {"country": 95, "id": 170, "size": 8.0621916322865559}, {"country": 129, "id": 171, "size": 9.1001614469366068}, {"country": 77, "id": 172, "size": 5.1271343850450917}, {"country": 129, "id": 173, "size": 4.4011973816621559}, {"country": 53, "id": 174, "size": 7.3117348091529148}, {"country": 21, "id": 175, "size": 5.0775374439057197}, {"country": 53, "id": 176, "size": 5.6913478822291435}, {"country": 53, "id": 177, "size": 6.7899601708972535}, {"country": 53, "id": 178, "size": 6.9242557974145322}, {"country": 53, "id": 179, "size": 5.8828019225863706}, {"country": 21, "id": 180, "size": 7.1136821798322316}, {"country": 77, "id": 181, "size": 7.3952615981154493}, {"country": 53, "id": 182, "size": 6.476463551931511}, {"country": 53, "id": 183, "size": 7.444131256700441}, {"country": 42, "id": 184, "size": 5.0430512678345503}, {"country": 53, "id": 185, "size": 6.0238805208462765}, {"country": 53, "id": 186, "size": 7.3818160174060985}, {"country": 53, "id": 187, "size": 6.3132059790417872}, {"country": 40, "id": 188, "size": 3.4849066497880004}, {"country": 60, "id": 189, "size": 5.4308167988433134}, {"country": 35, "id": 190, "size": 7.5861716548546747}, {"country": 53, "id": 191, "size": 7.0935697700451357}, {"country": 53, "id": 192, "size": 8.5224002313871239}, {"country": 53, "id": 193, "size": 9.0401246644483795}, {"country": 53, "id": 194, "size": 6.5412635451584258}, {"country": 53, "id": 195, "size": 6.4205349992722862}, {"country": 53, "id": 196, "size": 2.9459101490553135}, {"country": 53, "id": 197, "size": 7.866933284461882}, {"country": 77, "id": 198, "size": 10.212637731024866}, {"country": 53, "id": 199, "size": 6.5872486584002496}, {"country": 77, "id": 200, "size": 7.0637852086876078}, {"country": 53, "id": 201, "size": 6.9242557974145322}, {"country": 37, "id": 202, "size": 4.3672958299864746}, {"country": 53, "id": 203, "size": 8.4933172488621445}, {"country": 53, "id": 204, "size": 7.6147256002037604}, {"country": 53, "id": 205, "size": 6.6419070709381138}, {"country": 53, "id": 206, "size": 8.2889276945212558}, {"country": 21, "id": 207, "size": 7.1158921254830343}, {"country": 53, "id": 208, "size": 7.2225762680713688}, {"country": 53, "id": 209, "size": 8.040536390215955}, {"country": 53, "id": 210, "size": 7.7369669580018554}, {"country": 21, "id": 211, "size": 5.7621739347977563}, {"country": 48, "id": 212, "size": 6.5529595849216173}, {"country": 100, "id": 213, "size": 5.6728288344619058}, {"country": 96, "id": 214, "size": 6.8692969131337742}, {"country": 129, "id": 215, "size": 4.3672958299864746}, {"country": 53, "id": 216, "size": 7.674561391814426}, {"country": 53, "id": 217, "size": 7.6463905148477291}, {"country": 3, "id": 218, "size": 1.0}, {"country": 21, "id": 219, "size": 5.5643481914678361}, {"country": 117, "id": 220, "size": 5.6913478822291435}, {"country": 53, "id": 221, "size": 8.1196356380176358}, {"country": 53, "id": 222, "size": 3.9957322735539909}, {"country": 53, "id": 223, "size": 8.4910875935348749}, {"country": 84, "id": 224, "size": 6.8861040314501558}, {"country": 53, "id": 225, "size": 5.9487598903781684}, {"country": 53, "id": 226, "size": 8.2262090101006713}, {"country": 53, "id": 227, "size": 5.8675344504555822}, {"country": 53, "id": 228, "size": 4.8286413964890951}, {"country": 53, "id": 229, "size": 7.90975328164481}, {"country": 53, "id": 230, "size": 6.3798973535404597}, {"country": 53, "id": 231, "size": 5.8520302639196169}, {"country": 53, "id": 232, "size": 5.4308167988433134}, {"country": 53, "id": 233, "size": 1.6931471805599454}, {"country": 53, "id": 234, "size": 6.7137328055093688}, {"country": 84, "id": 235, "size": 3.1972245773362196}, {"country": 65, "id": 236, "size": 6.6559918108198524}, {"country": 118, "id": 237, "size": 3.8332133440562162}, {"country": 55, "id": 238, "size": 6.7990926544605257}, {"country": 21, "id": 239, "size": 7.0913098820776979}, {"country": 53, "id": 240, "size": 10.818419740146064}, {"country": 21, "id": 241, "size": 6.9839362806871907}, {"country": 93, "id": 242, "size": 4.737669618283368}, {"country": 53, "id": 243, "size": 6.0238805208462765}, {"country": 53, "id": 244, "size": 3.3025850929940459}, {"country": 76, "id": 245, "size": 6.1179938124167554}, {"country": 53, "id": 246, "size": 3.4849066497880004}, {"country": 30, "id": 247, "size": 7.9966814881765389}, {"country": 53, "id": 248, "size": 5.3438054218536841}, {"country": 53, "id": 249, "size": 5.0775374439057197}, {"country": 21, "id": 250, "size": 5.9272536851572051}, {"country": 77, "id": 251, "size": 8.1098794630722715}, {"country": 93, "id": 252, "size": 8.0587581525186636}, {"country": 127, "id": 253, "size": 7.1612073216950769}, {"country": 53, "id": 254, "size": 7.3332796281396906}, {"country": 77, "id": 255, "size": 4.3322045101752042}, {"country": 77, "id": 256, "size": 3.3978952727983707}, {"country": 53, "id": 257, "size": 5.0943445622221004}, {"country": 53, "id": 258, "size": 5.9199809258281251}, {"country": 53, "id": 259, "size": 9.5741404718579872}, {"country": 53, "id": 260, "size": 5.4308167988433134}, {"country": 53, "id": 261, "size": 7.5820251388928259}, {"country": 53, "id": 262, "size": 7.9735430195201404}, {"country": 53, "id": 263, "size": 5.3820266346738812}, {"country": 127, "id": 264, "size": 9.5167931113948985}, {"country": 53, "id": 265, "size": 8.2240248082858294}, {"country": 53, "id": 266, "size": 4.713572066704308}, {"country": 53, "id": 267, "size": 8.0299729117063858}, {"country": 21, "id": 268, "size": 5.6634390941120669}, {"country": 77, "id": 269, "size": 6.768320995793772}, {"country": 129, "id": 270, "size": 6.3082676974012051}, {"country": 53, "id": 271, "size": 4.4011973816621559}, {"country": 53, "id": 272, "size": 6.3230099791384085}, {"country": 53, "id": 273, "size": 6.579729825986222}, {"country": 53, "id": 274, "size": 3.9957322735539909}, {"country": 53, "id": 275, "size": 6.4205349992722862}, {"country": 53, "id": 276, "size": 6.1532915944977793}, {"country": 21, "id": 277, "size": 5.1743872698956368}, {"country": 21, "id": 278, "size": 8.7066129139641966}, {"country": 53, "id": 279, "size": 3.8332133440562162}, {"country": 53, "id": 280, "size": 5.290459441148391}, {"country": 53, "id": 281, "size": 7.8254600362553068}, {"country": 77, "id": 282, "size": 6.3798973535404597}, {"country": 21, "id": 283, "size": 5.7273878187123408}, {"country": 58, "id": 284, "size": 6.5012582105447274}, {"country": 132, "id": 285, "size": 7.8834625864130921}, {"country": 53, "id": 286, "size": 7.694562058521095}, {"country": 53, "id": 287, "size": 8.4127640174265625}, {"country": 8, "id": 288, "size": 9.6425916008105705}, {"country": 105, "id": 289, "size": 6.4680601411351315}, {"country": 53, "id": 290, "size": 6.8318824772835169}, {"country": 21, "id": 291, "size": 7.156978985585555}, {"country": 53, "id": 292, "size": 6.9080829381689313}, {"country": 21, "id": 293, "size": 5.4067192472642533}, {"country": 129, "id": 294, "size": 6.4930614433405482}, {"country": 77, "id": 295, "size": 6.8377304471659395}, {"country": 53, "id": 296, "size": 10.189218875354072}, {"country": 125, "id": 297, "size": 6.6167710976665717}, {"country": 53, "id": 298, "size": 7.1675164908883415}, {"country": 53, "id": 299, "size": 7.5027900459156234}, {"country": 53, "id": 300, "size": 7.4068799860693142}, {"country": 104, "id": 301, "size": 11.010816130288653}, {"country": 53, "id": 302, "size": 6.8833223884882786}, {"country": 129, "id": 303, "size": 2.791759469228055}, {"country": 53, "id": 304, "size": 8.1172055031643442}, {"country": 53, "id": 305, "size": 5.962844630259907}, {"country": 21, "id": 306, "size": 6.3375380797013179}, {"country": 53, "id": 307, "size": 6.1532915944977793}, {"country": 53, "id": 308, "size": 5.4659081186545837}, {"country": 53, "id": 309, "size": 9.0261701949464257}, {"country": 21, "id": 310, "size": 5.3820266346738812}, {"country": 77, "id": 311, "size": 5.8202815656050371}, {"country": 77, "id": 312, "size": 7.6080006252960866}, {"country": 53, "id": 313, "size": 8.6192334162268054}, {"country": 53, "id": 314, "size": 13.620897150848702}, {"country": 67, "id": 315, "size": 7.7475865268293154}, {"country": 53, "id": 316, "size": 6.9814142112544806}, {"country": 53, "id": 317, "size": 7.0014148779611505}, {"country": 53, "id": 318, "size": 8.1546153569136628}, {"country": 15, "id": 319, "size": 5.5643481914678361}, {"country": 53, "id": 320, "size": 8.0817085861055737}, {"country": 100, "id": 321, "size": 6.0998664278241987}, {"country": 60, "id": 322, "size": 6.6594822157596214}, {"country": 53, "id": 323, "size": 7.7810576259361799}, {"country": 53, "id": 324, "size": 4.7612001156935619}, {"country": 53, "id": 325, "size": 6.7525726388256331}, {"country": 53, "id": 326, "size": 8.1252830915107115}, {"country": 21, "id": 327, "size": 7.1246833908942051}, {"country": 125, "id": 328, "size": 5.1431347263915326}, {"country": 53, "id": 329, "size": 11.098231629328639}, {"country": 21, "id": 330, "size": 7.2225762680713688}, {"country": 53, "id": 331, "size": 7.5971457018866513}, {"country": 53, "id": 332, "size": 7.7357800142423265}, {"country": 53, "id": 333, "size": 5.3174881135363101}, {"country": 21, "id": 334, "size": 3.1972245773362196}, {"country": 77, "id": 335, "size": 5.2341065045972597}, {"country": 53, "id": 336, "size": 8.3708601665367155}, {"country": 53, "id": 337, "size": 5.1743872698956368}, {"country": 53, "id": 338, "size": 3.7725887222397811}, {"country": 53, "id": 339, "size": 9.355379895253634}, {"country": 21, "id": 340, "size": 5.8828019225863706}, {"country": 67, "id": 341, "size": 3.3025850929940459}, {"country": 53, "id": 342, "size": 4.6375861597263857}, {"country": 53, "id": 343, "size": 6.4026773818722793}, {"country": 53, "id": 344, "size": 6.0625950330269669}, {"country": 53, "id": 345, "size": 4.1354942159291497}, {"country": 129, "id": 346, "size": 5.7273878187123408}, {"country": 53, "id": 347, "size": 6.857933154483459}, {"country": 53, "id": 348, "size": 5.8751973232011512}, {"country": 43, "id": 349, "size": 8.6299757070277892}, {"country": 53, "id": 350, "size": 7.0591231955817966}, {"country": 53, "id": 351, "size": 10.910264536815152}, {"country": 53, "id": 352, "size": 5.990432586778736}, {"country": 129, "id": 353, "size": 5.0253516907351496}, {"country": 53, "id": 354, "size": 6.3278761687895813}, {"country": 53, "id": 355, "size": 7.9411900550683745}, {"country": 53, "id": 356, "size": 5.2341065045972597}, {"country": 8, "id": 357, "size": 6.7776523232226564}, {"country": 129, "id": 358, "size": 6.3981627015177525}, {"country": 53, "id": 359, "size": 7.826545223556594}, {"country": 55, "id": 360, "size": 5.0604430105464191}, {"country": 57, "id": 361, "size": 7.826545223556594}, {"country": 53, "id": 362, "size": 7.131226489483141}, {"country": 53, "id": 363, "size": 3.4849066497880004}, {"country": 77, "id": 364, "size": 6.2832037287379885}, {"country": 53, "id": 365, "size": 10.040263541598666}, {"country": 53, "id": 366, "size": 7.7627295069318789}, {"country": 21, "id": 367, "size": 7.2841341610708019}, {"country": 127, "id": 368, "size": 6.3659760150218512}, {"country": 21, "id": 369, "size": 7.4473058625412127}, {"country": 53, "id": 370, "size": 7.1654178542314204}, {"country": 53, "id": 371, "size": 8.0535857271936777}, {"country": 53, "id": 372, "size": 6.7990926544605257}, {"country": 21, "id": 373, "size": 4.9318256327243262}, {"country": 21, "id": 374, "size": 5.990432586778736}, {"country": 53, "id": 375, "size": 6.0039463059454592}, {"country": 53, "id": 376, "size": 6.4595855141441589}, {"country": 53, "id": 377, "size": 5.4188406077965983}, {"country": 19, "id": 378, "size": 8.6216849987246107}, {"country": 53, "id": 379, "size": 8.0909098220799827}, {"country": 53, "id": 380, "size": 7.3543700407973507}, {"country": 53, "id": 381, "size": 5.7706846244656651}, {"country": 42, "id": 382, "size": 6.2040066870767951}, {"country": 53, "id": 383, "size": 7.329720905522696}, {"country": 99, "id": 384, "size": 4.4011973816621559}, {"country": 21, "id": 385, "size": 7.6795991858443831}, {"country": 21, "id": 386, "size": 6.5053315359323625}, {"country": 53, "id": 387, "size": 4.4965075614664798}, {"country": 53, "id": 388, "size": 7.5467854107605241}, {"country": 53, "id": 389, "size": 7.9177056098353047}, {"country": 93, "id": 390, "size": 8.0048819897128602}, {"country": 53, "id": 391, "size": 10.426338455129521}, {"country": 53, "id": 392, "size": 7.8469431395853793}, {"country": 53, "id": 393, "size": 7.2441669006637364}, {"country": 8, "id": 394, "size": 6.6835797673386814}, {"country": 77, "id": 395, "size": 6.1704839950381514}, {"country": 53, "id": 396, "size": 6.8406416573733981}, {"country": 53, "id": 397, "size": 4.1354942159291497}, {"country": 53, "id": 398, "size": 7.9810057407217299}, {"country": 53, "id": 399, "size": 7.6821085974498091}, {"country": 96, "id": 400, "size": 6.2149357576089859}, {"country": 53, "id": 401, "size": 7.7546040994879624}, {"country": 53, "id": 402, "size": 5.1108738641733114}, {"country": 37, "id": 403, "size": 8.6568100914803772}, {"country": 0, "id": 404, "size": 6.9107966440405271}, {"country": 53, "id": 405, "size": 5.4659081186545837}, {"country": 53, "id": 406, "size": 7.3243589623813108}, {"country": 53, "id": 407, "size": 6.7203117766074119}, {"country": 100, "id": 408, "size": 6.8522024797744745}, {"country": 21, "id": 409, "size": 4.6888794541139358}, {"country": 53, "id": 410, "size": 5.4308167988433134}, {"country": 53, "id": 411, "size": 4.5263605246161616}, {"country": 53, "id": 412, "size": 6.9989365619466826}, {"country": 53, "id": 413, "size": 9.0687161927147812}, {"country": 53, "id": 414, "size": 9.2313760455739686}, {"country": 53, "id": 415, "size": 5.6249728132842707}, {"country": 53, "id": 416, "size": 5.8441870864585912}, {"country": 53, "id": 417, "size": 3.9444389791664403}, {"country": 53, "id": 418, "size": 3.7725887222397811}, {"country": 53, "id": 419, "size": 6.3181199938442161}, {"country": 57, "id": 420, "size": 5.9344739331306915}, {"country": 53, "id": 421, "size": 8.2619270927027522}, {"country": 53, "id": 422, "size": 5.3944491546724391}, {"country": 53, "id": 423, "size": 4.4965075614664798}, {"country": 53, "id": 424, "size": 5.9416424226093039}, {"country": 53, "id": 425, "size": 4.0910424533583161}, {"country": 129, "id": 426, "size": 1.0}, {"country": 53, "id": 427, "size": 5.6913478822291435}, {"country": 129, "id": 428, "size": 5.4659081186545837}, {"country": 53, "id": 429, "size": 6.8777357817796387}, {"country": 53, "id": 430, "size": 7.0088131854425946}, {"country": 96, "id": 431, "size": 4.8286413964890951}, {"country": 53, "id": 432, "size": 6.1059454739005803}, {"country": 53, "id": 433, "size": 7.4216222678065176}, {"country": 21, "id": 434, "size": 3.6390573296152584}, {"country": 53, "id": 435, "size": 3.7080502011022101}, {"country": 53, "id": 436, "size": 7.1224928095143865}, {"country": 53, "id": 437, "size": 6.1873858058407549}, {"country": 53, "id": 438, "size": 8.3178761986264966}, {"country": 53, "id": 439, "size": 7.6970342476664841}, {"country": 53, "id": 440, "size": 6.916202062607435}, {"country": 53, "id": 441, "size": 2.09861228866811}, {"country": 53, "id": 442, "size": 6.1474944768134527}, {"country": 53, "id": 443, "size": 6.4380793089231956}, {"country": 53, "id": 444, "size": 7.0063531596017325}, {"country": 53, "id": 445, "size": 8.2640301428995286}, {"country": 84, "id": 446, "size": 4.713572066704308}, {"country": 53, "id": 447, "size": 7.9612960459101672}, {"country": 53, "id": 448, "size": 4.8501476017100584}, {"country": 53, "id": 449, "size": 7.7464121285733745}, {"country": 53, "id": 450, "size": 6.3230099791384085}, {"country": 53, "id": 451, "size": 7.3578422665080998}, {"country": 53, "id": 452, "size": 7.2422232654551655}, {"country": 53, "id": 453, "size": 8.0039741367226789}, {"country": 30, "id": 454, "size": 6.4638318050256105}, {"country": 93, "id": 455, "size": 6.0434251169192468}, {"country": 92, "id": 456, "size": 6.575949103146316}, {"country": 53, "id": 457, "size": 7.3062752869480159}, {"country": 67, "id": 458, "size": 7.0776422433490342}, {"country": 53, "id": 459, "size": 8.5908521236885811}, {"country": 53, "id": 460, "size": 6.2983173665480363}, {"country": 53, "id": 461, "size": 5.4308167988433134}, {"country": 53, "id": 462, "size": 5.4426512564903167}, {"country": 53, "id": 463, "size": 2.9459101490553135}, {"country": 53, "id": 464, "size": 7.0497334552319577}, {"country": 53, "id": 465, "size": 7.1114673395026786}, {"country": 77, "id": 466, "size": 3.8332133440562162}, {"country": 53, "id": 467, "size": 3.9444389791664403}, {"country": 53, "id": 468, "size": 6.4553211153577017}, {"country": 53, "id": 469, "size": 5.7957905455967413}, {"country": 77, "id": 470, "size": 4.6109179126442239}, {"country": 132, "id": 471, "size": 7.5722825426940075}, {"country": 6, "id": 472, "size": 5.2766661190160553}, {"country": 53, "id": 473, "size": 9.7376130368088507}, {"country": 21, "id": 474, "size": 7.2205901700997392}, {"country": 92, "id": 475, "size": 7.2672005485413624}, {"country": 53, "id": 476, "size": 6.476463551931511}, {"country": 65, "id": 477, "size": 6.4806389233419912}, {"country": 53, "id": 478, "size": 8.4787348255678747}, {"country": 53, "id": 479, "size": 4.218875824868201}, {"country": 53, "id": 480, "size": 5.7791234931115296}, {"country": 53, "id": 481, "size": 6.9610053396232736}, {"country": 53, "id": 482, "size": 5.3307333402863311}, {"country": 53, "id": 483, "size": 10.352100317014015}, {"country": 30, "id": 484, "size": 7.5352412710136587}, {"country": 53, "id": 485, "size": 6.7268477475871968}, {"country": 53, "id": 486, "size": 6.4205349992722862}, {"country": 126, "id": 487, "size": 6.6629604801359461}, {"country": 53, "id": 488, "size": 3.0794415416798357}, {"country": 53, "id": 489, "size": 8.1785454837636991}, {"country": 53, "id": 490, "size": 10.128479345495862}, {"country": 53, "id": 491, "size": 8.7323692222843867}, {"country": 0, "id": 492, "size": 6.2522734280466299}, {"country": 53, "id": 493, "size": 7.9930151229329605}, {"country": 53, "id": 494, "size": 5.4773368144782069}, {"country": 118, "id": 495, "size": 6.3423342519648109}, {"country": 43, "id": 496, "size": 6.5909869805108565}, {"country": 127, "id": 497, "size": 8.7257714415879519}, {"country": 53, "id": 498, "size": 5.3944491546724391}, {"country": 92, "id": 499, "size": 6.2203558250783244}, {"country": 96, "id": 500, "size": 6.4071717714601188}, {"country": 77, "id": 501, "size": 6.9454206086065753}, {"country": 53, "id": 502, "size": 8.3696007205264102}, {"country": 21, "id": 503, "size": 7.9939329752231894}, {"country": 110, "id": 504, "size": 11.357552330480354}, {"country": 21, "id": 505, "size": 7.1633148040346413}, {"country": 53, "id": 506, "size": 4.737669618283368}, {"country": 53, "id": 507, "size": 7.6293632534374485}, {"country": 53, "id": 508, "size": 7.1758672701057611}, {"country": 131, "id": 509, "size": 7.1841488909374833}, {"country": 53, "id": 510, "size": 8.8883345007386545}, {"country": 77, "id": 511, "size": 5.7535901911063645}, {"country": 53, "id": 512, "size": 9.058960017769417}, {"country": 93, "id": 513, "size": 6.4971682252932021}, {"country": 109, "id": 514, "size": 6.4510384535657002}, {"country": 132, "id": 515, "size": 6.521460917862246}, {"country": 95, "id": 516, "size": 9.1772348855101935}, {"country": 53, "id": 517, "size": 5.7957905455967413}, {"country": 53, "id": 518, "size": 6.3423342519648109}, {"country": 21, "id": 519, "size": 6.7430031878094825}, {"country": 100, "id": 520, "size": 6.3798973535404597}, {"country": 21, "id": 521, "size": 6.0172798368149243}, {"country": 77, "id": 522, "size": 7.5722825426940075}, {"country": 96, "id": 523, "size": 4.8712010109078907}, {"country": 53, "id": 524, "size": 8.526178913346147}, {"country": 53, "id": 525, "size": 6.7930136083841441}, {"country": 53, "id": 526, "size": 4.9702919135521224}, {"country": 60, "id": 527, "size": 6.598421958998375}, {"country": 53, "id": 528, "size": 6.0039463059454592}, {"country": 53, "id": 529, "size": 7.9744789110250451}, {"country": 96, "id": 530, "size": 8.2137683081186417}, {"country": 53, "id": 531, "size": 6.2882670306945352}, {"country": 53, "id": 532, "size": 5.9558270576012609}, {"country": 131, "id": 533, "size": 6.1059454739005803}, {"country": 53, "id": 534, "size": 7.7957057751735137}, {"country": 93, "id": 535, "size": 7.4520489544372257}, {"country": 53, "id": 536, "size": 10.191972714617998}, {"country": 53, "id": 537, "size": 13.591280623071192}, {"country": 53, "id": 538, "size": 5.9972122737641147}, {"country": 53, "id": 539, "size": 7.5264948595707901}, {"country": 53, "id": 540, "size": 8.0012456220694759}, {"country": 53, "id": 541, "size": 6.6869753563398202}, {"country": 53, "id": 542, "size": 6.4293456289544411}, {"country": 53, "id": 543, "size": 5.3307333402863311}, {"country": 77, "id": 544, "size": 5.8283137373023015}, {"country": 53, "id": 545, "size": 6.7235851019523807}, {"country": 53, "id": 546, "size": 4.6635616461296463}, {"country": 53, "id": 547, "size": 6.5294290875114234}, {"country": 129, "id": 548, "size": 4.713572066704308}, {"country": 53, "id": 549, "size": 6.9712618397904622}, {"country": 38, "id": 550, "size": 7.1654178542314204}, {"country": 94, "id": 551, "size": 7.156978985585555}, {"country": 53, "id": 552, "size": 4.3672958299864746}, {"country": 21, "id": 553, "size": 6.9322451874480109}, {"country": 53, "id": 554, "size": 5.1108738641733114}, {"country": 53, "id": 555, "size": 6.476463551931511}, {"country": 23, "id": 556, "size": 6.598421958998375}, {"country": 53, "id": 557, "size": 7.1003189520200642}, {"country": 53, "id": 558, "size": 7.3438804341263308}, {"country": 53, "id": 559, "size": 8.2100796281707886}, {"country": 78, "id": 560, "size": 6.1119877883565437}, {"country": 129, "id": 561, "size": 7.7855876450079293}, {"country": 53, "id": 562, "size": 6.2311086168545868}, {"country": 53, "id": 563, "size": 6.0689042022202315}, {"country": 21, "id": 564, "size": 6.2574953720277815}, {"country": 53, "id": 565, "size": 6.872117789475416}, {"country": 53, "id": 566, "size": 6.4930614433405482}, {"country": 42, "id": 567, "size": 6.0106352940962555}, {"country": 84, "id": 568, "size": 5.0073331852324712}, {"country": 125, "id": 569, "size": 4.8712010109078907}, {"country": 53, "id": 570, "size": 6.2417470150596426}, {"country": 53, "id": 571, "size": 7.4313310819334788}, {"country": 53, "id": 572, "size": 5.1431347263915326}, {"country": 53, "id": 573, "size": 7.7322107064672059}, {"country": 21, "id": 574, "size": 5.6539603501575231}, {"country": 53, "id": 575, "size": 8.1507014575925254}, {"country": 61, "id": 576, "size": 3.9444389791664403}, {"country": 53, "id": 577, "size": 6.5529595849216173}, {"country": 53, "id": 578, "size": 6.3132059790417872}, {"country": 53, "id": 579, "size": 4.6635616461296463}, {"country": 53, "id": 580, "size": 4.1780538303479453}, {"country": 53, "id": 581, "size": 5.0604430105464191}, {"country": 53, "id": 582, "size": 6.3327187932653688}, {"country": 53, "id": 583, "size": 10.172638504792172}, {"country": 53, "id": 584, "size": 4.9120230054281464}, {"country": 53, "id": 585, "size": 3.3025850929940459}, {"country": 53, "id": 586, "size": 5.8202815656050371}, {"country": 21, "id": 587, "size": 9.493105395887147}, {"country": 43, "id": 588, "size": 9.9287729005242564}, {"country": 129, "id": 589, "size": 4.465735902799727}, {"country": 53, "id": 590, "size": 6.2257466737132017}, {"country": 129, "id": 591, "size": 4.4011973816621559}, {"country": 53, "id": 592, "size": 6.6698809229805196}, {"country": 53, "id": 593, "size": 7.6012301187288767}, {"country": 53, "id": 594, "size": 10.98686316145718}, {"country": 37, "id": 595, "size": 5.1896547420264252}, {"country": 53, "id": 596, "size": 7.75343791859778}, {"country": 53, "id": 597, "size": 3.7725887222397811}, {"country": 77, "id": 598, "size": 5.2484952420493594}, {"country": 53, "id": 599, "size": 7.7440591863113477}, {"country": 77, "id": 600, "size": 7.0038870671065387}, {"country": 53, "id": 601, "size": 8.3485875309275919}, {"country": 53, "id": 602, "size": 6.1357984370502621}, {"country": 53, "id": 603, "size": 6.0434251169192468}, {"country": 53, "id": 604, "size": 9.2041249325740413}, {"country": 53, "id": 605, "size": 9.5525603352535295}, {"country": 53, "id": 606, "size": 6.6489742381612063}, {"country": 53, "id": 607, "size": 9.2875284231117625}, {"country": 53, "id": 608, "size": 2.791759469228055}, {"country": 53, "id": 609, "size": 6.5834963087816991}, {"country": 77, "id": 610, "size": 4.6109179126442239}, {"country": 21, "id": 611, "size": 7.0567840132286248}, {"country": 53, "id": 612, "size": 8.2312870043276156}, {"country": 53, "id": 613, "size": 6.7960577507653719}, {"country": 77, "id": 614, "size": 3.4849066497880004}, {"country": 53, "id": 615, "size": 6.7930136083841441}, {"country": 53, "id": 616, "size": 5.6443908991413725}, {"country": 53, "id": 617, "size": 7.6187389835172192}, {"country": 53, "id": 618, "size": 4.5553480614894131}, {"country": 77, "id": 619, "size": 7.654152520183219}, {"country": 53, "id": 620, "size": 7.4488893941468577}, {"country": 118, "id": 621, "size": 6.3798973535404597}, {"country": 127, "id": 622, "size": 11.220849779089319}, {"country": 104, "id": 623, "size": 6.0562458053483077}, {"country": 21, "id": 624, "size": 5.8121843553724171}, {"country": 67, "id": 625, "size": 3.5649493574615367}, {"country": 53, "id": 626, "size": 5.5432947822700038}, {"country": 53, "id": 627, "size": 6.8081424899804439}, {"country": 53, "id": 628, "size": 10.546169544733285}, {"country": 53, "id": 629, "size": 6.8230458954830189}, {"country": 53, "id": 630, "size": 8.638679823876112}, {"country": 53, "id": 631, "size": 5.3944491546724391}, {"country": 53, "id": 632, "size": 6.3278761687895813}, {"country": 53, "id": 633, "size": 5.290459441148391}, {"country": 53, "id": 634, "size": 4.3672958299864746}, {"country": 53, "id": 635, "size": 5.9972122737641147}, {"country": 53, "id": 636, "size": 9.6515492439153157}, {"country": 93, "id": 637, "size": 6.3844950627890888}, {"country": 53, "id": 638, "size": 7.2205901700997392}, {"country": 53, "id": 639, "size": 4.0910424533583161}, {"country": 53, "id": 640, "size": 5.6249728132842707}, {"country": 53, "id": 641, "size": 4.713572066704308}, {"country": 53, "id": 642, "size": 6.5721540321777647}, {"country": 53, "id": 643, "size": 5.1108738641733114}, {"country": 77, "id": 644, "size": 9.7001811927533534}, {"country": 93, "id": 645, "size": 5.4426512564903167}, {"country": 53, "id": 646, "size": 5.6821312271242199}, {"country": 53, "id": 647, "size": 5.2341065045972597}, {"country": 128, "id": 648, "size": 7.6320017773956303}, {"country": 21, "id": 649, "size": 6.1873858058407549}, {"country": 53, "id": 650, "size": 7.6147256002037604}, {"country": 127, "id": 651, "size": 9.1755475960210262}, {"country": 53, "id": 652, "size": 4.1780538303479453}, {"country": 53, "id": 653, "size": 5.7095302013123339}, {"country": 53, "id": 654, "size": 6.3518581334760666}, {"country": 53, "id": 655, "size": 9.8583686363080183}, {"country": 29, "id": 656, "size": 4.218875824868201}, {"country": 21, "id": 657, "size": 5.1271343850450917}, {"country": 77, "id": 658, "size": 5.4659081186545837}, {"country": 43, "id": 659, "size": 5.4188406077965983}, {"country": 53, "id": 660, "size": 5.9836066217083363}, {"country": 53, "id": 661, "size": 3.0794415416798357}, {"country": 57, "id": 662, "size": 7.315358001522335}, {"country": 93, "id": 663, "size": 7.6982680541154132}, {"country": 53, "id": 664, "size": 3.7080502011022101}, {"country": 53, "id": 665, "size": 7.6669567924292066}, {"country": 53, "id": 666, "size": 7.4536249988926917}, {"country": 53, "id": 667, "size": 6.0562458053483077}, {"country": 96, "id": 668, "size": 6.9814142112544806}, {"country": 53, "id": 669, "size": 7.837332814685591}, {"country": 53, "id": 670, "size": 10.818256408173468}, {"country": 93, "id": 671, "size": 6.3230099791384085}, {"country": 77, "id": 672, "size": 6.2678581590633282}, {"country": 53, "id": 673, "size": 7.2025355171879228}, {"country": 53, "id": 674, "size": 3.5649493574615367}, {"country": 21, "id": 675, "size": 6.181783550292085}, {"country": 42, "id": 676, "size": 3.1972245773362196}, {"country": 53, "id": 677, "size": 5.0604430105464191}, {"country": 53, "id": 678, "size": 6.2257466737132017}, {"country": 95, "id": 679, "size": 5.0073331852324712}, {"country": 53, "id": 680, "size": 6.1590552992145291}, {"country": 53, "id": 681, "size": 7.2422232654551655}, {"country": 53, "id": 682, "size": 6.8141305318250662}, {"country": 53, "id": 683, "size": 6.3423342519648109}, {"country": 53, "id": 684, "size": 7.2989492468559423}, {"country": 21, "id": 685, "size": 6.0238805208462765}, {"country": 53, "id": 686, "size": 4.2580965380214817}, {"country": 67, "id": 687, "size": 5.219507705176107}, {"country": 53, "id": 688, "size": 8.0308574761161218}, {"country": 53, "id": 689, "size": 7.0591231955817966}, {"country": 93, "id": 690, "size": 6.3844950627890888}, {"country": 21, "id": 691, "size": 8.7052624748663252}, {"country": 53, "id": 692, "size": 7.4707995037826018}, {"country": 53, "id": 693, "size": 6.3844950627890888}, {"country": 53, "id": 694, "size": 10.008958312443486}, {"country": 53, "id": 695, "size": 4.5835189384561099}, {"country": 53, "id": 696, "size": 5.2046926193909657}, {"country": 53, "id": 697, "size": 8.3401868353201145}, {"country": 53, "id": 698, "size": 7.2841341610708019}, {"country": 53, "id": 699, "size": 8.0501225202690598}, {"country": 53, "id": 700, "size": 5.4773368144782069}, {"country": 53, "id": 701, "size": 8.9229859587111946}, {"country": 60, "id": 702, "size": 7.4876840184846101}, {"country": 53, "id": 703, "size": 4.3322045101752042}, {"country": 118, "id": 704, "size": 3.9444389791664403}, {"country": 53, "id": 705, "size": 4.2580965380214817}, {"country": 37, "id": 706, "size": 6.8664680569332965}, {"country": 53, "id": 707, "size": 7.3332796281396906}, {"country": 93, "id": 708, "size": 5.7535901911063645}, {"country": 53, "id": 709, "size": 8.0370276146862771}, {"country": 53, "id": 710, "size": 4.6109179126442239}, {"country": 53, "id": 711, "size": 12.89234087339508}, {"country": 53, "id": 712, "size": 7.3595738686723777}, {"country": 132, "id": 713, "size": 5.4773368144782069}, {"country": 53, "id": 714, "size": 7.1136821798322316}, {"country": 20, "id": 715, "size": 8.2612250919719212}, {"country": 21, "id": 716, "size": 11.782263315647524}, {"country": 53, "id": 717, "size": 8.0379059634471819}, {"country": 53, "id": 718, "size": 10.368881400104733}, {"country": 53, "id": 719, "size": 5.8283137373023015}, {"country": 77, "id": 720, "size": 7.8243736700430864}, {"country": 53, "id": 721, "size": 6.3327187932653688}, {"country": 77, "id": 722, "size": 6.6454468976432377}, {"country": 53, "id": 723, "size": 9.6869359660033325}, {"country": 127, "id": 724, "size": 6.7104270173748697}, {"country": 129, "id": 725, "size": 4.6109179126442239}, {"country": 129, "id": 726, "size": 5.499809670330265}, {"country": 53, "id": 727, "size": 7.2934192788464811}, {"country": 42, "id": 728, "size": 4.9120230054281464}, {"country": 129, "id": 729, "size": 4.1354942159291497}, {"country": 84, "id": 730, "size": 6.4116460518550396}, {"country": 53, "id": 731, "size": 6.579729825986222}, {"country": 53, "id": 732, "size": 7.6385677891665207}, {"country": 129, "id": 733, "size": 5.9487598903781684}, {"country": 53, "id": 734, "size": 5.4773368144782069}, {"country": 53, "id": 735, "size": 6.472270673671475}, {"country": 53, "id": 736, "size": 7.0402547112774139}, {"country": 53, "id": 737, "size": 6.2257466737132017}, {"country": 53, "id": 738, "size": 6.8692969131337742}, {"country": 53, "id": 739, "size": 5.9972122737641147}, {"country": 53, "id": 740, "size": 7.1290502100605453}, {"country": 77, "id": 741, "size": 3.6390573296152584}, {"country": 53, "id": 742, "size": 3.8332133440562162}, {"country": 21, "id": 743, "size": 7.253828811575473}, {"country": 53, "id": 744, "size": 6.7004435733906869}, {"country": 77, "id": 745, "size": 7.131226489483141}, {"country": 53, "id": 746, "size": 7.2025355171879228}, {"country": 21, "id": 747, "size": 5.5849674786705723}, {"country": 53, "id": 748, "size": 5.5217885770490405}, {"country": 53, "id": 749, "size": 5.6347289882296359}, {"country": 53, "id": 750, "size": 4.8712010109078907}, {"country": 21, "id": 751, "size": 6.2470240721604862}, {"country": 53, "id": 752, "size": 6.4424177105217932}, {"country": 53, "id": 753, "size": 6.8289456176102075}, {"country": 23, "id": 754, "size": 7.0473721790462776}, {"country": 53, "id": 755, "size": 5.8675344504555822}, {"country": 53, "id": 756, "size": 4.3322045101752042}, {"country": 53, "id": 757, "size": 7.4661447242376191}, {"country": 134, "id": 758, "size": 5.5538768916005408}, {"country": 53, "id": 759, "size": 7.1758672701057611}, {"country": 53, "id": 760, "size": 3.6390573296152584}, {"country": 57, "id": 761, "size": 5.0073331852324712}, {"country": 53, "id": 762, "size": 6.3278761687895813}, {"country": 12, "id": 763, "size": 7.4134589571673573}, {"country": 21, "id": 764, "size": 5.9767337424205742}, {"country": 53, "id": 765, "size": 7.0402547112774139}, {"country": 53, "id": 766, "size": 7.543911845564792}, {"country": 105, "id": 767, "size": 6.3278761687895813}, {"country": 53, "id": 768, "size": 7.1377270540862341}, {"country": 53, "id": 769, "size": 6.1179938124167554}, {"country": 132, "id": 770, "size": 4.9889840465642745}, {"country": 53, "id": 771, "size": 7.2595814640649232}, {"country": 53, "id": 772, "size": 9.6726572940403095}, {"country": 53, "id": 773, "size": 4.8066624897703196}, {"country": 53, "id": 774, "size": 8.3085427975391895}, {"country": 53, "id": 775, "size": 6.916202062607435}, {"country": 53, "id": 776, "size": 10.110188490025742}, {"country": 21, "id": 777, "size": 8.6718267978787811}, {"country": 53, "id": 778, "size": 6.6835797673386814}, {"country": 53, "id": 779, "size": 6.978885764901122}, {"country": 53, "id": 780, "size": 5.7791234931115296}, {"country": 77, "id": 781, "size": 6.0814043649844631}, {"country": 21, "id": 782, "size": 8.1123274447109104}, {"country": 77, "id": 783, "size": 8.1300985101255776}, {"country": 77, "id": 784, "size": 5.6443908991413725}, {"country": 53, "id": 785, "size": 3.6390573296152584}, {"country": 53, "id": 786, "size": 5.8040210447332568}, {"country": 53, "id": 787, "size": 7.0378709199221374}, {"country": 53, "id": 788, "size": 7.1590953884919326}, {"country": 53, "id": 789, "size": 5.8675344504555822}, {"country": 53, "id": 790, "size": 6.43372200355424}, {"country": 53, "id": 791, "size": 6.2781146592305168}, {"country": 53, "id": 792, "size": 6.3798973535404597}, {"country": 21, "id": 793, "size": 7.4167322825123261}, {"country": 53, "id": 794, "size": 6.9269260259704106}, {"country": 60, "id": 795, "size": 6.4680601411351315}, {"country": 69, "id": 796, "size": 4.1780538303479453}, {"country": 53, "id": 797, "size": 4.2958368660043291}, {"country": 53, "id": 798, "size": 6.2832037287379885}, {"country": 57, "id": 799, "size": 5.3040650932041702}, {"country": 96, "id": 800, "size": 5.2766661190160553}, {"country": 21, "id": 801, "size": 5.3174881135363101}, {"country": 94, "id": 802, "size": 5.1588830833596715}, {"country": 77, "id": 803, "size": 6.5490760848952201}, {"country": 129, "id": 804, "size": 10.068200604815059}, {"country": 53, "id": 805, "size": 8.2943772992888221}, {"country": 21, "id": 806, "size": 6.7268477475871968}, {"country": 53, "id": 807, "size": 9.0712185399698626}, {"country": 53, "id": 808, "size": 7.4118182677098972}, {"country": 100, "id": 809, "size": 6.5093883366279774}, {"country": 53, "id": 810, "size": 8.2855065485227861}, {"country": 53, "id": 811, "size": 7.230481447578482}, {"country": 53, "id": 812, "size": 7.4068799860693142}, {"country": 53, "id": 813, "size": 8.937731775260108}, {"country": 129, "id": 814, "size": 5.0253516907351496}, {"country": 53, "id": 815, "size": 8.0210839642891401}, {"country": 53, "id": 816, "size": 10.206131527202128}, {"country": 68, "id": 817, "size": 3.0794415416798357}, {"country": 131, "id": 818, "size": 9.5149907678610379}, {"country": 60, "id": 819, "size": 6.8692969131337742}, {"country": 77, "id": 820, "size": 6.7899601708972535}, {"country": 53, "id": 821, "size": 8.7341213033283047}, {"country": 53, "id": 822, "size": 6.3181199938442161}, {"country": 53, "id": 823, "size": 6.2574953720277815}, {"country": 53, "id": 824, "size": 7.5624440936937196}, {"country": 53, "id": 825, "size": 5.6151205168412597}, {"country": 53, "id": 826, "size": 4.7612001156935619}, {"country": 60, "id": 827, "size": 7.0913098820776979}, {"country": 53, "id": 828, "size": 5.3040650932041702}, {"country": 21, "id": 829, "size": 6.1929568508902104}, {"country": 53, "id": 830, "size": 7.2205901700997392}, {"country": 53, "id": 831, "size": 6.8971538676367405}, {"country": 53, "id": 832, "size": 6.6594822157596214}, {"country": 53, "id": 833, "size": 6.5053315359323625}, {"country": 43, "id": 834, "size": 5.6249728132842707}, {"country": 37, "id": 835, "size": 7.3099182782265162}, {"country": 53, "id": 836, "size": 7.4922398350204711}, {"country": 1, "id": 837, "size": 7.0867747269123065}, {"country": 93, "id": 838, "size": 7.4645883036899612}, {"country": 96, "id": 839, "size": 8.4972072232033184}, {"country": 118, "id": 840, "size": 6.2832037287379885}, {"country": 10, "id": 841, "size": 3.3025850929940459}, {"country": 53, "id": 842, "size": 5.6821312271242199}, {"country": 77, "id": 843, "size": 4.713572066704308}, {"country": 53, "id": 844, "size": 10.754581429281577}, {"country": 53, "id": 845, "size": 6.8318824772835169}, {"country": 53, "id": 846, "size": 6.0238805208462765}, {"country": 53, "id": 847, "size": 6.8522024797744745}, {"country": 53, "id": 848, "size": 6.2781146592305168}, {"country": 53, "id": 849, "size": 6.7071102647488754}, {"country": 53, "id": 850, "size": 4.3322045101752042}, {"country": 53, "id": 851, "size": 7.6398758338265358}, {"country": 21, "id": 852, "size": 5.2626798770413155}, {"country": 21, "id": 853, "size": 7.9985096422506015}, {"country": 53, "id": 854, "size": 1.0}, {"country": 53, "id": 855, "size": 4.5835189384561099}, {"country": 12, "id": 856, "size": 8.4175804024145435}, {"country": 53, "id": 857, "size": 7.280395838960195}, {"country": 53, "id": 858, "size": 6.521460917862246}, {"country": 21, "id": 859, "size": 6.5373342670185366}, {"country": 132, "id": 860, "size": 6.7745515455444085}, {"country": 53, "id": 861, "size": 6.768320995793772}, {"country": 53, "id": 862, "size": 8.0741168161973622}, {"country": 77, "id": 863, "size": 13.835664821141902}, {"country": 77, "id": 864, "size": 5.4659081186545837}, {"country": 60, "id": 865, "size": 5.0775374439057197}, {"country": 21, "id": 866, "size": 7.3919171133926023}, {"country": 30, "id": 867, "size": 8.2534703826845277}, {"country": 53, "id": 868, "size": 6.8607862234658654}, {"country": 77, "id": 869, "size": 4.8918202981106269}, {"country": 53, "id": 870, "size": 6.6058020662959978}, {"country": 53, "id": 871, "size": 7.4068799860693142}, {"country": 53, "id": 872, "size": 5.219507705176107}, {"country": 53, "id": 873, "size": 7.1862086239004936}, {"country": 21, "id": 874, "size": 6.7960577507653719}, {"country": 53, "id": 875, "size": 5.0430512678345503}, {"country": 53, "id": 876, "size": 6.7589017738772803}, {"country": 77, "id": 877, "size": 7.5957805139613113}, {"country": 53, "id": 878, "size": 6.3844950627890888}, {"country": 93, "id": 879, "size": 7.3699009828282271}, {"country": 53, "id": 880, "size": 6.1357984370502621}, {"country": 53, "id": 881, "size": 6.6312117818213654}, {"country": 4, "id": 882, "size": 6.5294290875114234}, {"country": 94, "id": 883, "size": 7.1003189520200642}, {"country": 21, "id": 884, "size": 6.9989365619466826}, {"country": 53, "id": 885, "size": 4.4965075614664798}, {"country": 53, "id": 886, "size": 8.0492548412558378}, {"country": 21, "id": 887, "size": 7.0730445341004051}, {"country": 53, "id": 888, "size": 8.4301141385618017}, {"country": 53, "id": 889, "size": 7.3044488024219811}, {"country": 96, "id": 890, "size": 3.4849066497880004}, {"country": 53, "id": 891, "size": 7.5323342922223491}, {"country": 53, "id": 892, "size": 6.6312117818213654}, {"country": 53, "id": 893, "size": 3.5649493574615367}, {"country": 53, "id": 894, "size": 7.2595814640649232}, {"country": 53, "id": 895, "size": 6.389071729816501}, {"country": 53, "id": 896, "size": 8.0290875641496626}, {"country": 53, "id": 897, "size": 9.0777575637369203}, {"country": 77, "id": 898, "size": 4.737669618283368}, {"country": 53, "id": 899, "size": 8.9871847482334726}, {"country": 53, "id": 900, "size": 7.5680779114119758}, {"country": 53, "id": 901, "size": 10.015055148790369}, {"country": 134, "id": 902, "size": 8.9533183465604314}, {"country": 1, "id": 903, "size": 5.4659081186545837}, {"country": 53, "id": 904, "size": 6.0625950330269669}, {"country": 53, "id": 905, "size": 6.1298987149230735}, {"country": 67, "id": 906, "size": 5.7621739347977563}, {"country": 100, "id": 907, "size": 6.0172798368149243}, {"country": 21, "id": 908, "size": 5.6347289882296359}, {"country": 53, "id": 909, "size": 3.7725887222397811}, {"country": 53, "id": 910, "size": 6.2149357576089859}, {"country": 21, "id": 911, "size": 12.935096908538576}, {"country": 77, "id": 912, "size": 6.6664266881124323}, {"country": 21, "id": 913, "size": 6.6167710976665717}, {"country": 37, "id": 914, "size": 6.9480349891806457}, {"country": 21, "id": 915, "size": 6.1357984370502621}, {"country": 53, "id": 916, "size": 13.719339287585377}, {"country": 53, "id": 917, "size": 7.6957989170584913}, {"country": 53, "id": 918, "size": 5.4426512564903167}, {"country": 53, "id": 919, "size": 6.2983173665480363}, {"country": 17, "id": 920, "size": 6.1929568508902104}, {"country": 53, "id": 921, "size": 7.0913098820776979}, {"country": 53, "id": 922, "size": 7.0378709199221374}, {"country": 77, "id": 923, "size": 5.4886363697321396}, {"country": 53, "id": 924, "size": 5.9126548857360524}, {"country": 129, "id": 925, "size": 4.1780538303479453}, {"country": 21, "id": 926, "size": 6.0304379213924353}, {"country": 60, "id": 927, "size": 6.4116460518550396}, {"country": 77, "id": 928, "size": 7.5206211275586963}, {"country": 53, "id": 929, "size": 7.2265366692874657}, {"country": 21, "id": 930, "size": 7.7417006946520548}, {"country": 93, "id": 931, "size": 8.2570027070920737}, {"country": 53, "id": 932, "size": 6.9635793436184459}, {"country": 53, "id": 933, "size": 6.5568280616995374}, {"country": 58, "id": 934, "size": 6.476463551931511}, {"country": 53, "id": 935, "size": 5.9487598903781684}, {"country": 82, "id": 936, "size": 5.7273878187123408}, {"country": 77, "id": 937, "size": 5.4308167988433134}, {"country": 53, "id": 938, "size": 6.4971682252932021}, {"country": 21, "id": 939, "size": 3.7080502011022101}, {"country": 53, "id": 940, "size": 9.8112051875628872}, {"country": 53, "id": 941, "size": 6.2678581590633282}, {"country": 21, "id": 942, "size": 8.126890808898807}, {"country": 53, "id": 943, "size": 6.2470240721604862}, {"country": 53, "id": 944, "size": 4.4339872044851463}, {"country": 53, "id": 945, "size": 5.8520302639196169}, {"country": 126, "id": 946, "size": 7.4785096422085688}, {"country": 53, "id": 947, "size": 5.5325994931532563}, {"country": 60, "id": 948, "size": 5.6821312271242199}, {"country": 53, "id": 949, "size": 7.577861357721047}, {"country": 51, "id": 950, "size": 4.465735902799727}, {"country": 77, "id": 951, "size": 11.110948776448231}, {"country": 53, "id": 952, "size": 5.6443908991413725}, {"country": 53, "id": 953, "size": 4.6109179126442239}, {"country": 129, "id": 954, "size": 5.7004803657924166}, {"country": 21, "id": 955, "size": 2.9459101490553135}, {"country": 53, "id": 956, "size": 6.6240175061873385}, {"country": 53, "id": 957, "size": 8.7510451179718025}, {"country": 53, "id": 958, "size": 6.6629604801359461}, {"country": 93, "id": 959, "size": 4.1780538303479453}, {"country": 53, "id": 960, "size": 7.5294188382622256}, {"country": 21, "id": 961, "size": 7.4457198193855785}, {"country": 53, "id": 962, "size": 7.8458798752640497}, {"country": 37, "id": 963, "size": 4.6375861597263857}, {"country": 93, "id": 964, "size": 5.9126548857360524}, {"country": 53, "id": 965, "size": 7.8079349436999257}, {"country": 77, "id": 966, "size": 5.1896547420264252}, {"country": 53, "id": 967, "size": 5.7621739347977563}, {"country": 131, "id": 968, "size": 5.8675344504555822}, {"country": 21, "id": 969, "size": 5.7273878187123408}, {"country": 53, "id": 970, "size": 4.4965075614664798}, {"country": 53, "id": 971, "size": 7.5206211275586963}, {"country": 53, "id": 972, "size": 6.4249500174814029}, {"country": 53, "id": 973, "size": 6.7838251823297373}, {"country": 129, "id": 974, "size": 3.3978952727983707}, {"country": 67, "id": 975, "size": 5.6443908991413725}, {"country": 82, "id": 976, "size": 8.7647205447714782}, {"country": 77, "id": 977, "size": 8.2420823592569619}, {"country": 53, "id": 978, "size": 4.1780538303479453}, {"country": 93, "id": 979, "size": 8.6246189861593976}, {"country": 53, "id": 980, "size": 6.8493247799468593}, {"country": 53, "id": 981, "size": 4.8501476017100584}, {"country": 53, "id": 982, "size": 6.3659760150218512}, {"country": 60, "id": 983, "size": 3.6390573296152584}, {"country": 53, "id": 984, "size": 8.3058600326840093}, {"country": 53, "id": 985, "size": 7.1047932324149849}, {"country": 53, "id": 986, "size": 7.5875500148247959}, {"country": 53, "id": 987, "size": 6.7620513827801769}, {"country": 53, "id": 988, "size": 10.522593098362169}, {"country": 53, "id": 989, "size": 6.5053315359323625}, {"country": 77, "id": 990, "size": 7.4800445619266531}, {"country": 77, "id": 991, "size": 7.3647507568519108}, {"country": 53, "id": 992, "size": 8.8099470864767895}, {"country": 53, "id": 993, "size": 7.0935697700451357}, {"country": 53, "id": 994, "size": 5.8202815656050371}, {"country": 21, "id": 995, "size": 7.3613024775729956}, {"country": 53, "id": 996, "size": 9.181160858023409}, {"country": 57, "id": 997, "size": 7.1114673395026786}, {"country": 29, "id": 998, "size": 6.3659760150218512}, {"country": 53, "id": 999, "size": 5.8121843553724171}, {"country": 53, "id": 1000, "size": 4.737669618283368}, {"country": 53, "id": 1001, "size": 4.4011973816621559}, {"country": 53, "id": 1002, "size": 4.0445224377234226}, {"country": 132, "id": 1003, "size": 6.6594822157596214}, {"country": 53, "id": 1004, "size": 5.8283137373023015}, {"country": 134, "id": 1005, "size": 7.2186001196917289}, {"country": 21, "id": 1006, "size": 7.8585650347913649}, {"country": 53, "id": 1007, "size": 6.521460917862246}, {"country": 53, "id": 1008, "size": 6.0998664278241987}, {"country": 53, "id": 1009, "size": 5.8828019225863706}, {"country": 73, "id": 1010, "size": 6.1761497325738288}, {"country": 77, "id": 1011, "size": 7.0822189103764464}, {"country": 53, "id": 1012, "size": 7.3099182782265162}, {"country": 53, "id": 1013, "size": 6.4806389233419912}, {"country": 53, "id": 1014, "size": 6.7899601708972535}, {"country": 53, "id": 1015, "size": 5.7449321283632502}, {"country": 53, "id": 1016, "size": 5.7706846244656651}, {"country": 53, "id": 1017, "size": 7.6025878921893364}, {"country": 53, "id": 1018, "size": 5.3307333402863311}, {"country": 53, "id": 1019, "size": 8.3581937527330332}, {"country": 53, "id": 1020, "size": 5.1896547420264252}, {"country": 53, "id": 1021, "size": 5.9052747784384296}, {"country": 8, "id": 1022, "size": 9.6280187465051217}, {"country": 89, "id": 1023, "size": 6.730099782973574}, {"country": 96, "id": 1024, "size": 6.7137328055093688}, {"country": 100, "id": 1025, "size": 6.0751738152338266}, {"country": 53, "id": 1026, "size": 9.2651356299373848}, {"country": 21, "id": 1027, "size": 5.6051701859880918}, {"country": 96, "id": 1028, "size": 8.2348984203148312}, {"country": 129, "id": 1029, "size": 5.8903491282217537}, {"country": 129, "id": 1030, "size": 4.8501476017100584}, {"country": 53, "id": 1031, "size": 6.6629604801359461}, {"country": 60, "id": 1032, "size": 5.0253516907351496}, {"country": 53, "id": 1033, "size": 6.8607862234658654}, {"country": 131, "id": 1034, "size": 7.9782137426306985}, {"country": 53, "id": 1035, "size": 8.229838778151251}, {"country": 21, "id": 1036, "size": 7.2499752422594828}, {"country": 53, "id": 1037, "size": 4.9889840465642745}, {"country": 21, "id": 1038, "size": 6.0498560072495371}, {"country": 53, "id": 1039, "size": 6.0814043649844631}, {"country": 53, "id": 1040, "size": 7.2952660014396464}, {"country": 115, "id": 1041, "size": 4.9512437185814271}, {"country": 53, "id": 1042, "size": 6.6312117818213654}, {"country": 53, "id": 1043, "size": 7.3117348091529148}, {"country": 53, "id": 1044, "size": 6.8749307308520304}, {"country": 53, "id": 1045, "size": 5.7095302013123339}, {"country": 118, "id": 1046, "size": 6.4424177105217932}, {"country": 77, "id": 1047, "size": 5.4426512564903167}, {"country": 53, "id": 1048, "size": 7.3385940782031831}, {"country": 92, "id": 1049, "size": 1.6931471805599454}, {"country": 53, "id": 1050, "size": 5.219507705176107}, {"country": 129, "id": 1051, "size": 5.9558270576012609}, {"country": 53, "id": 1052, "size": 5.990432586778736}, {"country": 53, "id": 1053, "size": 5.6051701859880918}, {"country": 53, "id": 1054, "size": 5.7004803657924166}, {"country": 53, "id": 1055, "size": 4.9120230054281464}, {"country": 53, "id": 1056, "size": 4.8066624897703196}, {"country": 92, "id": 1057, "size": 5.8828019225863706}, {"country": 21, "id": 1058, "size": 6.8171111599632042}, {"country": 53, "id": 1059, "size": 10.371182897093012}, {"country": 53, "id": 1060, "size": 10.582317635923358}, {"country": 122, "id": 1061, "size": 5.6913478822291435}, {"country": 53, "id": 1062, "size": 6.3659760150218512}, {"country": 21, "id": 1063, "size": 11.573673121458727}, {"country": 53, "id": 1064, "size": 7.9087547793152204}, {"country": 53, "id": 1065, "size": 6.6869753563398202}, {"country": 53, "id": 1066, "size": 7.061456918928017}, {"country": 53, "id": 1067, "size": 5.9698132995760007}, {"country": 34, "id": 1068, "size": 6.0751738152338266}, {"country": 21, "id": 1069, "size": 5.3307333402863311}, {"country": 23, "id": 1070, "size": 6.6454468976432377}, {"country": 93, "id": 1071, "size": 7.4052284580308418}, {"country": 53, "id": 1072, "size": 5.6443908991413725}, {"country": 129, "id": 1073, "size": 6.9914645471079817}, {"country": 53, "id": 1074, "size": 8.2056351764103646}, {"country": 53, "id": 1075, "size": 5.8978397999509111}, {"country": 53, "id": 1076, "size": 7.156978985585555}, {"country": 53, "id": 1077, "size": 5.0430512678345503}, {"country": 53, "id": 1078, "size": 7.2915691395583204}, {"country": 53, "id": 1079, "size": 4.6375861597263857}, {"country": 21, "id": 1080, "size": 7.253828811575473}, {"country": 132, "id": 1081, "size": 5.0073331852324712}, {"country": 18, "id": 1082, "size": 2.9459101490553135}, {"country": 53, "id": 1083, "size": 8.819234453859071}, {"country": 129, "id": 1084, "size": 5.219507705176107}, {"country": 53, "id": 1085, "size": 2.9459101490553135}, {"country": 53, "id": 1086, "size": 6.9107966440405271}, {"country": 21, "id": 1087, "size": 6.7462031905401529}, {"country": 53, "id": 1088, "size": 4.6635616461296463}, {"country": 21, "id": 1089, "size": 9.7142391436085749}, {"country": 129, "id": 1090, "size": 5.0253516907351496}, {"country": 53, "id": 1091, "size": 6.2832037287379885}, {"country": 38, "id": 1092, "size": 3.9957322735539909}, {"country": 53, "id": 1093, "size": 6.8464387750577247}, {"country": 53, "id": 1094, "size": 8.7021043400510507}, {"country": 53, "id": 1095, "size": 6.8081424899804439}, {"country": 53, "id": 1096, "size": 9.0989467489433391}, {"country": 53, "id": 1097, "size": 9.7122664321353547}, {"country": 53, "id": 1098, "size": 6.2781146592305168}, {"country": 53, "id": 1099, "size": 6.3844950627890888}, {"country": 77, "id": 1100, "size": 5.4886363697321396}, {"country": 53, "id": 1101, "size": 4.8066624897703196}, {"country": 127, "id": 1102, "size": 9.589885876809678}, {"country": 53, "id": 1103, "size": 5.0604430105464191}, {"country": 42, "id": 1104, "size": 6.2203558250783244}, {"country": 53, "id": 1105, "size": 5.6347289882296359}, {"country": 53, "id": 1106, "size": 6.1984970312658261}, {"country": 53, "id": 1107, "size": 7.5525078870345901}, {"country": 53, "id": 1108, "size": 5.6539603501575231}, {"country": 53, "id": 1109, "size": 6.6454468976432377}, {"country": 21, "id": 1110, "size": 5.1431347263915326}, {"country": 53, "id": 1111, "size": 11.262559621074582}, {"country": 53, "id": 1112, "size": 7.0234475929610332}, {"country": 129, "id": 1113, "size": 3.3025850929940459}, {"country": 53, "id": 1114, "size": 7.4614681763537174}, {"country": 21, "id": 1115, "size": 4.465735902799727}, {"country": 53, "id": 1116, "size": 8.7531942698843412}, {"country": 77, "id": 1117, "size": 4.6109179126442239}, {"country": 21, "id": 1118, "size": 7.2344107257183712}, {"country": 53, "id": 1119, "size": 5.990432586778736}, {"country": 53, "id": 1120, "size": 6.7868973813667077}, {"country": 53, "id": 1121, "size": 10.176680170483548}, {"country": 53, "id": 1122, "size": 5.962844630259907}, {"country": 53, "id": 1123, "size": 3.5649493574615367}, {"country": 53, "id": 1124, "size": 5.8283137373023015}, {"country": 101, "id": 1125, "size": 6.9295891433898946}, {"country": 53, "id": 1126, "size": 8.6103576183128379}, {"country": 53, "id": 1127, "size": 7.2915691395583204}, {"country": 53, "id": 1128, "size": 7.1202974189509503}, {"country": 53, "id": 1129, "size": 5.9836066217083363}, {"country": 53, "id": 1130, "size": 7.1841488909374833}, {"country": 53, "id": 1131, "size": 6.2729995585637468}, {"country": 21, "id": 1132, "size": 7.7707894239089796}, {"country": 129, "id": 1133, "size": 3.4849066497880004}, {"country": 53, "id": 1134, "size": 2.09861228866811}, {"country": 53, "id": 1135, "size": 6.1984970312658261}, {"country": 96, "id": 1136, "size": 5.1108738641733114}, {"country": 53, "id": 1137, "size": 4.1354942159291497}, {"country": 43, "id": 1138, "size": 6.7868973813667077}, {"country": 92, "id": 1139, "size": 5.499809670330265}, {"country": 77, "id": 1140, "size": 8.410347097821024}, {"country": 37, "id": 1141, "size": 5.6347289882296359}, {"country": 53, "id": 1142, "size": 6.1179938124167554}, {"country": 53, "id": 1143, "size": 8.4277388405328928}, {"country": 53, "id": 1144, "size": 4.0910424533583161}, {"country": 53, "id": 1145, "size": 7.4281052726845962}, {"country": 129, "id": 1146, "size": 3.5649493574615367}, {"country": 105, "id": 1147, "size": 7.508769136971682}, {"country": 53, "id": 1148, "size": 7.2106000770246528}, {"country": 53, "id": 1149, "size": 7.6450909695056444}, {"country": 53, "id": 1150, "size": 4.0910424533583161}, {"country": 53, "id": 1151, "size": 8.2633296174768365}, {"country": 53, "id": 1152, "size": 6.5093883366279774}, {"country": 53, "id": 1153, "size": 5.7706846244656651}, {"country": 84, "id": 1154, "size": 8.6058900010531225}, {"country": 53, "id": 1155, "size": 5.1431347263915326}, {"country": 53, "id": 1156, "size": 5.7621739347977563}, {"country": 53, "id": 1157, "size": 6.0689042022202315}, {"country": 127, "id": 1158, "size": 7.6066501861982152}, {"country": 53, "id": 1159, "size": 5.9972122737641147}, {"country": 129, "id": 1160, "size": 2.09861228866811}, {"country": 53, "id": 1161, "size": 9.1884113080790311}, {"country": 53, "id": 1162, "size": 6.5909869805108565}, {"country": 53, "id": 1163, "size": 5.2626798770413155}, {"country": 0, "id": 1164, "size": 3.7725887222397811}, {"country": 53, "id": 1165, "size": 8.3632795869630385}, {"country": 21, "id": 1166, "size": 7.7334018918373593}, {"country": 127, "id": 1167, "size": 7.3473892096560105}, {"country": 53, "id": 1168, "size": 5.0775374439057197}, {"country": 53, "id": 1169, "size": 6.0875963352323836}, {"country": 118, "id": 1170, "size": 5.7361984483944957}, {"country": 53, "id": 1171, "size": 8.3864708488298945}, {"country": 53, "id": 1172, "size": 7.828712071641684}, {"country": 126, "id": 1173, "size": 5.6249728132842707}, {"country": 53, "id": 1174, "size": 4.737669618283368}, {"country": 53, "id": 1175, "size": 3.4849066497880004}, {"country": 53, "id": 1176, "size": 7.9669671386139829}, {"country": 53, "id": 1177, "size": 4.465735902799727}, {"country": 53, "id": 1178, "size": 5.4773368144782069}, {"country": 21, "id": 1179, "size": 6.5606816310155276}, {"country": 53, "id": 1180, "size": 10.452501929126154}, {"country": 53, "id": 1181, "size": 5.1431347263915326}, {"country": 77, "id": 1182, "size": 3.6390573296152584}, {"country": 53, "id": 1183, "size": 4.8712010109078907}, {"country": 53, "id": 1184, "size": 5.9344739331306915}, {"country": 53, "id": 1185, "size": 8.3639135014058184}, {"country": 60, "id": 1186, "size": 4.8066624897703196}, {"country": 84, "id": 1187, "size": 5.4773368144782069}, {"country": 53, "id": 1188, "size": 6.2364419628299492}, {"country": 53, "id": 1189, "size": 5.1431347263915326}, {"country": 60, "id": 1190, "size": 4.2958368660043291}, {"country": 60, "id": 1191, "size": 8.0370276146862771}, {"country": 93, "id": 1192, "size": 7.4457198193855785}, {"country": 57, "id": 1193, "size": 6.8111409929767008}, {"country": 53, "id": 1194, "size": 6.8406416573733981}, {"country": 53, "id": 1195, "size": 11.173667349851767}, {"country": 53, "id": 1196, "size": 7.7080840838530698}, {"country": 53, "id": 1197, "size": 8.2269360184932889}, {"country": 60, "id": 1198, "size": 10.292381082312392}, {"country": 53, "id": 1199, "size": 5.7095302013123339}, {"country": 53, "id": 1200, "size": 4.465735902799727}, {"country": 53, "id": 1201, "size": 5.3307333402863311}, {"country": 53, "id": 1202, "size": 8.5196924041165403}, {"country": 129, "id": 1203, "size": 5.2046926193909657}, {"country": 53, "id": 1204, "size": 7.80128303447162}, {"country": 53, "id": 1205, "size": 5.9272536851572051}, {"country": 53, "id": 1206, "size": 10.592605086913911}, {"country": 84, "id": 1207, "size": 7.0161571596983539}, {"country": 38, "id": 1208, "size": 5.3040650932041702}, {"country": 110, "id": 1209, "size": 7.6618547405453112}, {"country": 65, "id": 1210, "size": 6.2094861528414214}, {"country": 53, "id": 1211, "size": 8.5164333029156332}, {"country": 53, "id": 1212, "size": 3.0794415416798357}, {"country": 53, "id": 1213, "size": 7.0707377280024897}, {"country": 77, "id": 1214, "size": 6.2729995585637468}, {"country": 53, "id": 1215, "size": 8.4042791180372678}, {"country": 53, "id": 1216, "size": 7.0330862217988015}, {"country": 53, "id": 1217, "size": 7.2841341610708019}, {"country": 37, "id": 1218, "size": 5.5951198501345898}, {"country": 109, "id": 1219, "size": 5.3438054218536841}, {"country": 53, "id": 1220, "size": 6.7990926544605257}, {"country": 53, "id": 1221, "size": 10.025214887849494}, {"country": 53, "id": 1222, "size": 5.9344739331306915}, {"country": 53, "id": 1223, "size": 7.1047932324149849}, {"country": 67, "id": 1224, "size": 6.3706380281276624}, {"country": 60, "id": 1225, "size": 7.3919171133926023}, {"country": 53, "id": 1226, "size": 6.7960577507653719}, {"country": 0, "id": 1227, "size": 6.1761497325738288}, {"country": 77, "id": 1228, "size": 6.6489742381612063}, {"country": 53, "id": 1229, "size": 6.1298987149230735}, {"country": 77, "id": 1230, "size": 7.0038870671065387}, {"country": 53, "id": 1231, "size": 7.8658910748834385}, {"country": 77, "id": 1232, "size": 7.7298240704894754}, {"country": 65, "id": 1233, "size": 9.8841946330722728}, {"country": 53, "id": 1234, "size": 7.230481447578482}, {"country": 53, "id": 1235, "size": 6.7137328055093688}, {"country": 53, "id": 1236, "size": 6.7203117766074119}, {"country": 53, "id": 1237, "size": 6.4847969334906548}, {"country": 53, "id": 1238, "size": 7.0210233493495267}, {"country": 53, "id": 1239, "size": 4.1354942159291497}, {"country": 53, "id": 1240, "size": 6.7493929859082531}, {"country": 53, "id": 1241, "size": 7.6871086078665147}, {"country": 60, "id": 1242, "size": 6.7620513827801769}, {"country": 53, "id": 1243, "size": 8.8367647832640657}, {"country": 53, "id": 1244, "size": 6.7268477475871968}, {"country": 100, "id": 1245, "size": 7.1633148040346413}, {"country": 77, "id": 1246, "size": 6.1984970312658261}, {"country": 53, "id": 1247, "size": 13.288978941525922}, {"country": 53, "id": 1248, "size": 7.7202201551352951}, {"country": 53, "id": 1249, "size": 8.0012456220694759}, {"country": 53, "id": 1250, "size": 7.2205901700997392}, {"country": 53, "id": 1251, "size": 5.4067192472642533}, {"country": 16, "id": 1252, "size": 6.9964520886190211}, {"country": 53, "id": 1253, "size": 5.8828019225863706}, {"country": 91, "id": 1254, "size": 5.5747109785033828}, {"country": 53, "id": 1255, "size": 8.2984451015081468}, {"country": 77, "id": 1256, "size": 8.3821243657375124}, {"country": 53, "id": 1257, "size": 6.0625950330269669}, {"country": 53, "id": 1258, "size": 6.4553211153577017}, {"country": 53, "id": 1259, "size": 10.164296433474776}, {"country": 53, "id": 1260, "size": 8.3284373528951612}, {"country": 77, "id": 1261, "size": 5.5643481914678361}, {"country": 96, "id": 1262, "size": 5.1588830833596715}, {"country": 53, "id": 1263, "size": 6.0625950330269669}, {"country": 129, "id": 1264, "size": 5.836281906951478}, {"country": 53, "id": 1265, "size": 5.9698132995760007}, {"country": 58, "id": 1266, "size": 6.0369526024136295}, {"country": 53, "id": 1267, "size": 9.4200212796639633}, {"country": 68, "id": 1268, "size": 3.5649493574615367}, {"country": 53, "id": 1269, "size": 6.6454468976432377}, {"country": 53, "id": 1270, "size": 8.4145728813505887}, {"country": 53, "id": 1271, "size": 10.133891199812776}, {"country": 96, "id": 1272, "size": 7.7615727688040552}, {"country": 53, "id": 1273, "size": 5.219507705176107}, {"country": 53, "id": 1274, "size": 5.5538768916005408}, {"country": 53, "id": 1275, "size": 5.1271343850450917}, {"country": 21, "id": 1276, "size": 5.8978397999509111}, {"country": 53, "id": 1277, "size": 4.2958368660043291}, {"country": 123, "id": 1278, "size": 10.454775637424682}, {"country": 53, "id": 1279, "size": 7.5191472879403953}, {"country": 53, "id": 1280, "size": 8.0518556229558946}, {"country": 129, "id": 1281, "size": 4.737669618283368}, {"country": 53, "id": 1282, "size": 5.7791234931115296}, {"country": 53, "id": 1283, "size": 7.6160651851328174}, {"country": 53, "id": 1284, "size": 6.9964520886190211}, {"country": 53, "id": 1285, "size": 5.5538768916005408}, {"country": 127, "id": 1286, "size": 4.3322045101752042}, {"country": 53, "id": 1287, "size": 7.4800445619266531}, {"country": 53, "id": 1288, "size": 5.3307333402863311}, {"country": 53, "id": 1289, "size": 7.1984787164923079}, {"country": 53, "id": 1290, "size": 5.2046926193909657}, {"country": 127, "id": 1291, "size": 6.9269260259704106}, {"country": 53, "id": 1292, "size": 7.1003189520200642}, {"country": 21, "id": 1293, "size": 7.7056390948600031}, {"country": 53, "id": 1294, "size": 5.3040650932041702}, {"country": 21, "id": 1295, "size": 8.451241684987675}, {"country": 53, "id": 1296, "size": 8.1974353540965907}, {"country": 53, "id": 1297, "size": 4.5263605246161616}, {"country": 77, "id": 1298, "size": 6.476463551931511}, {"country": 53, "id": 1299, "size": 6.3181199938442161}, {"country": 21, "id": 1300, "size": 6.4467373716663099}, {"country": 53, "id": 1301, "size": 5.7957905455967413}, {"country": 21, "id": 1302, "size": 7.6463905148477291}, {"country": 115, "id": 1303, "size": 5.8978397999509111}, {"country": 96, "id": 1304, "size": 7.2065759267249279}, {"country": 53, "id": 1305, "size": 4.6375861597263857}, {"country": 53, "id": 1306, "size": 5.5432947822700038}, {"country": 53, "id": 1307, "size": 6.0751738152338266}, {"country": 53, "id": 1308, "size": 5.9972122737641147}, {"country": 53, "id": 1309, "size": 5.3307333402863311}, {"country": 68, "id": 1310, "size": 5.8441870864585912}, {"country": 53, "id": 1311, "size": 7.0137151560428022}, {"country": 126, "id": 1312, "size": 7.0258659738253142}, {"country": 59, "id": 1313, "size": 5.1896547420264252}, {"country": 53, "id": 1314, "size": 6.6524891802686508}, {"country": 53, "id": 1315, "size": 6.5947113796018391}, {"country": 53, "id": 1316, "size": 4.465735902799727}, {"country": 77, "id": 1317, "size": 5.7957905455967413}, {"country": 118, "id": 1318, "size": 6.2311086168545868}, {"country": 77, "id": 1319, "size": 8.2463680801024601}, {"country": 53, "id": 1320, "size": 3.3978952727983707}, {"country": 53, "id": 1321, "size": 7.7250336421668431}, {"country": 117, "id": 1322, "size": 8.789040401657477}, {"country": 53, "id": 1323, "size": 6.389071729816501}, {"country": 53, "id": 1324, "size": 7.2025355171879228}, {"country": 53, "id": 1325, "size": 6.1357984370502621}, {"country": 53, "id": 1326, "size": 6.393627546352362}, {"country": 134, "id": 1327, "size": 7.3332796281396906}, {"country": 53, "id": 1328, "size": 6.8692969131337742}, {"country": 53, "id": 1329, "size": 8.9515593311552522}, {"country": 21, "id": 1330, "size": 6.0369526024136295}, {"country": 53, "id": 1331, "size": 7.5834092221587648}, {"country": 53, "id": 1332, "size": 7.9517721643989114}, {"country": 60, "id": 1333, "size": 4.6888794541139358}, {"country": 53, "id": 1334, "size": 6.4553211153577017}, {"country": 53, "id": 1335, "size": 7.828712071641684}, {"country": 53, "id": 1336, "size": 8.9002660367677002}, {"country": 77, "id": 1337, "size": 6.2832037287379885}, {"country": 53, "id": 1338, "size": 10.692581318886397}, {"country": 53, "id": 1339, "size": 5.6539603501575231}, {"country": 129, "id": 1340, "size": 5.990432586778736}, {"country": 60, "id": 1341, "size": 8.0758088639783878}, {"country": 53, "id": 1342, "size": 6.4161004022044201}, {"country": 53, "id": 1343, "size": 5.8283137373023015}, {"country": 53, "id": 1344, "size": 7.5694814204142959}, {"country": 60, "id": 1345, "size": 4.9318256327243262}, {"country": 53, "id": 1346, "size": 5.9272536851572051}, {"country": 53, "id": 1347, "size": 5.7004803657924166}, {"country": 53, "id": 1348, "size": 6.2311086168545868}, {"country": 53, "id": 1349, "size": 6.7745515455444085}, {"country": 53, "id": 1350, "size": 5.6821312271242199}, {"country": 53, "id": 1351, "size": 4.9318256327243262}, {"country": 53, "id": 1352, "size": 5.1588830833596715}, {"country": 21, "id": 1353, "size": 5.5108595065168497}, {"country": 53, "id": 1354, "size": 7.7345916599729483}, {"country": 129, "id": 1355, "size": 6.2678581590633282}, {"country": 53, "id": 1356, "size": 5.6051701859880918}, {"country": 53, "id": 1357, "size": 6.3752784076841653}, {"country": 53, "id": 1358, "size": 5.2341065045972597}, {"country": 53, "id": 1359, "size": 6.5093883366279774}, {"country": 84, "id": 1360, "size": 6.1929568508902104}, {"country": 53, "id": 1361, "size": 7.2205901700997392}, {"country": 53, "id": 1362, "size": 2.3862943611198908}, {"country": 105, "id": 1363, "size": 4.465735902799727}, {"country": 53, "id": 1364, "size": 5.7791234931115296}, {"country": 53, "id": 1365, "size": 7.8564619845945867}, {"country": 108, "id": 1366, "size": 6.2257466737132017}, {"country": 43, "id": 1367, "size": 5.3040650932041702}, {"country": 53, "id": 1368, "size": 4.3322045101752042}, {"country": 77, "id": 1369, "size": 7.2363695902037044}, {"country": 53, "id": 1370, "size": 7.1224928095143865}, {"country": 53, "id": 1371, "size": 5.8978397999509111}, {"country": 77, "id": 1372, "size": 6.3798973535404597}, {"country": 53, "id": 1373, "size": 6.5012582105447274}, {"country": 77, "id": 1374, "size": 6.4595855141441589}, {"country": 129, "id": 1375, "size": 7.0426328336823811}, {"country": 93, "id": 1376, "size": 6.7268477475871968}, {"country": 53, "id": 1377, "size": 5.1431347263915326}, {"country": 118, "id": 1378, "size": 8.0139154748105277}, {"country": 53, "id": 1379, "size": 6.7620513827801769}, {"country": 77, "id": 1380, "size": 7.9206715042486833}, {"country": 53, "id": 1381, "size": 8.5652752818989306}, {"country": 53, "id": 1382, "size": 6.4847969334906548}, {"country": 67, "id": 1383, "size": 6.8171111599632042}, {"country": 129, "id": 1384, "size": 5.0604430105464191}, {"country": 94, "id": 1385, "size": 5.7004803657924166}, {"country": 21, "id": 1386, "size": 4.7612001156935619}, {"country": 53, "id": 1387, "size": 5.2484952420493594}, {"country": 53, "id": 1388, "size": 6.0369526024136295}, {"country": 53, "id": 1389, "size": 8.9575274022307738}, {"country": 60, "id": 1390, "size": 7.7638849085624351}, {"country": 53, "id": 1391, "size": 6.7071102647488754}, {"country": 129, "id": 1392, "size": 4.9512437185814271}, {"country": 0, "id": 1393, "size": 1.0}, {"country": 53, "id": 1394, "size": 5.6151205168412597}, {"country": 53, "id": 1395, "size": 4.2958368660043291}, {"country": 77, "id": 1396, "size": 7.2822667468960063}, {"country": 53, "id": 1397, "size": 6.5909869805108565}, {"country": 53, "id": 1398, "size": 9.3466420902211986}, {"country": 53, "id": 1399, "size": 3.8903717578961645}, {"country": 53, "id": 1400, "size": 8.566311014772463}, {"country": 53, "id": 1401, "size": 6.9864520052844377}, {"country": 53, "id": 1402, "size": 6.5606816310155276}, {"country": 132, "id": 1403, "size": 6.0875963352323836}, {"country": 53, "id": 1404, "size": 6.5093883366279774}, {"country": 21, "id": 1405, "size": 7.6160651851328174}, {"country": 127, "id": 1406, "size": 5.219507705176107}, {"country": 21, "id": 1407, "size": 6.1179938124167554}, {"country": 53, "id": 1408, "size": 8.1276936993473985}, {"country": 53, "id": 1409, "size": 7.7357800142423265}, {"country": 44, "id": 1410, "size": 3.0794415416798357}, {"country": 53, "id": 1411, "size": 4.5263605246161616}, {"country": 21, "id": 1412, "size": 7.5395859556176692}, {"country": 23, "id": 1413, "size": 5.4188406077965983}, {"country": 108, "id": 1414, "size": 6.0172798368149243}, {"country": 53, "id": 1415, "size": 5.6728288344619058}, {"country": 96, "id": 1416, "size": 3.6390573296152584}, {"country": 53, "id": 1417, "size": 4.1780538303479453}, {"country": 53, "id": 1418, "size": 4.2580965380214817}, {"country": 77, "id": 1419, "size": 9.4158246970279489}, {"country": 53, "id": 1420, "size": 4.6888794541139358}, {"country": 53, "id": 1421, "size": 7.8480052745763631}, {"country": 21, "id": 1422, "size": 5.3307333402863311}, {"country": 73, "id": 1423, "size": 6.4680601411351315}, {"country": 53, "id": 1424, "size": 7.1548580940164177}, {"country": 96, "id": 1425, "size": 3.3978952727983707}, {"country": 53, "id": 1426, "size": 6.4026773818722793}, {"country": 53, "id": 1427, "size": 7.7141705299094721}, {"country": 53, "id": 1428, "size": 8.7848892956550984}, {"country": 53, "id": 1429, "size": 8.0290875641496626}, {"country": 96, "id": 1430, "size": 8.6406038263936331}, {"country": 53, "id": 1431, "size": 8.9603236291488386}, {"country": 53, "id": 1432, "size": 4.6635616461296463}, {"country": 53, "id": 1433, "size": 6.3423342519648109}, {"country": 53, "id": 1434, "size": 6.43372200355424}, {"country": 60, "id": 1435, "size": 4.9318256327243262}, {"country": 53, "id": 1436, "size": 9.0649508917491435}, {"country": 77, "id": 1437, "size": 6.1119877883565437}, {"country": 21, "id": 1438, "size": 7.0038870671065387}, {"country": 21, "id": 1439, "size": 6.2729995585637468}, {"country": 21, "id": 1440, "size": 8.1090621356871715}, {"country": 53, "id": 1441, "size": 7.1737861039019366}, {"country": 53, "id": 1442, "size": 8.3271232922592926}, {"country": 21, "id": 1443, "size": 7.816735880594968}, {"country": 67, "id": 1444, "size": 5.3174881135363101}, {"country": 118, "id": 1445, "size": 6.2470240721604862}, {"country": 61, "id": 1446, "size": 5.4886363697321396}, {"country": 100, "id": 1447, "size": 4.465735902799727}, {"country": 21, "id": 1448, "size": 6.0238805208462765}, {"country": 77, "id": 1449, "size": 6.389071729816501}, {"country": 53, "id": 1450, "size": 4.6109179126442239}, {"country": 53, "id": 1451, "size": 6.5568280616995374}, {"country": 53, "id": 1452, "size": 7.4785096422085688}, {"country": 21, "id": 1453, "size": 6.2149357576089859}, {"country": 53, "id": 1454, "size": 6.6312117818213654}, {"country": 21, "id": 1455, "size": 5.2046926193909657}, {"country": 53, "id": 1456, "size": 7.5308776277258849}, {"country": 53, "id": 1457, "size": 4.5263605246161616}, {"country": 53, "id": 1458, "size": 7.956545443151569}, {"country": 53, "id": 1459, "size": 4.9318256327243262}, {"country": 53, "id": 1460, "size": 7.089044875446846}, {"country": 53, "id": 1461, "size": 6.9687075599853658}, {"country": 56, "id": 1462, "size": 4.8918202981106269}, {"country": 43, "id": 1463, "size": 4.3322045101752042}, {"country": 53, "id": 1464, "size": 7.8101424501151362}, {"country": 53, "id": 1465, "size": 5.0775374439057197}, {"country": 53, "id": 1466, "size": 6.0562458053483077}, {"country": 53, "id": 1467, "size": 6.6131281063880705}, {"country": 68, "id": 1468, "size": 4.1780538303479453}, {"country": 53, "id": 1469, "size": 4.0445224377234226}, {"country": 23, "id": 1470, "size": 3.9957322735539909}, {"country": 53, "id": 1471, "size": 4.9512437185814271}, {"country": 53, "id": 1472, "size": 3.7080502011022101}, {"country": 129, "id": 1473, "size": 7.7369669580018554}, {"country": 53, "id": 1474, "size": 8.0326242610280065}, {"country": 94, "id": 1475, "size": 6.7493929859082531}, {"country": 53, "id": 1476, "size": 9.3475904070300579}, {"country": 53, "id": 1477, "size": 5.2766661190160553}, {"country": 43, "id": 1478, "size": 6.8888779583328805}, {"country": 129, "id": 1479, "size": 5.7004803657924166}, {"country": 53, "id": 1480, "size": 5.8675344504555822}, {"country": 53, "id": 1481, "size": 9.3248212987687822}, {"country": 53, "id": 1482, "size": 6.872117789475416}, {"country": 53, "id": 1483, "size": 7.2897155709089976}, {"country": 43, "id": 1484, "size": 6.8664680569332965}, {"country": 105, "id": 1485, "size": 5.0775374439057197}, {"country": 53, "id": 1486, "size": 8.0850642939525486}, {"country": 53, "id": 1487, "size": 6.6970934865054046}, {"country": 77, "id": 1488, "size": 7.0378709199221374}, {"country": 53, "id": 1489, "size": 7.3664704477314382}, {"country": 53, "id": 1490, "size": 9.8079206220539792}, {"country": 53, "id": 1491, "size": 7.7580945044277305}, {"country": 77, "id": 1492, "size": 8.3277805384216315}, {"country": 53, "id": 1493, "size": 6.8200829303523616}, {"country": 53, "id": 1494, "size": 6.8021183753770629}, {"country": 53, "id": 1495, "size": 6.2882670306945352}, {"country": 53, "id": 1496, "size": 6.6524891802686508}, {"country": 53, "id": 1497, "size": 7.2971093199339352}, {"country": 77, "id": 1498, "size": 5.6913478822291435}, {"country": 6, "id": 1499, "size": 6.0434251169192468}, {"country": 53, "id": 1500, "size": 6.7071102647488754}, {"country": 53, "id": 1501, "size": 8.0570369816978911}, {"country": 53, "id": 1502, "size": 5.7957905455967413}, {"country": 77, "id": 1503, "size": 6.2364419628299492}, {"country": 132, "id": 1504, "size": 5.9272536851572051}, {"country": 53, "id": 1505, "size": 8.410347097821024}, {"country": 0, "id": 1506, "size": 6.8664680569332965}, {"country": 53, "id": 1507, "size": 7.0112671744041615}, {"country": 21, "id": 1508, "size": 7.6515718735897273}, {"country": 131, "id": 1509, "size": 5.1588830833596715}, {"country": 53, "id": 1510, "size": 5.4773368144782069}, {"country": 53, "id": 1511, "size": 6.0039463059454592}, {"country": 53, "id": 1512, "size": 8.0273145140397766}, {"country": 53, "id": 1513, "size": 6.4553211153577017}, {"country": 53, "id": 1514, "size": 6.2311086168545868}, {"country": 53, "id": 1515, "size": 6.0562458053483077}, {"country": 53, "id": 1516, "size": 5.1431347263915326}, {"country": 53, "id": 1517, "size": 5.3820266346738812}, {"country": 53, "id": 1518, "size": 8.1212524532445407}, {"country": 53, "id": 1519, "size": 7.5889264775335192}, {"country": 21, "id": 1520, "size": 6.9635793436184459}, {"country": 95, "id": 1521, "size": 8.3362856600212965}, {"country": 21, "id": 1522, "size": 4.6375861597263857}, {"country": 53, "id": 1523, "size": 9.0258433441509034}, {"country": 53, "id": 1524, "size": 7.1779441140506002}, {"country": 53, "id": 1525, "size": 7.9206715042486833}, {"country": 53, "id": 1526, "size": 5.9558270576012609}, {"country": 53, "id": 1527, "size": 7.3595738686723777}, {"country": 53, "id": 1528, "size": 6.3181199938442161}, {"country": 131, "id": 1529, "size": 8.2435129746654816}, {"country": 53, "id": 1530, "size": 5.3567088266895917}, {"country": 53, "id": 1531, "size": 7.4473058625412127}, {"country": 53, "id": 1532, "size": 3.5649493574615367}, {"country": 53, "id": 1533, "size": 6.4161004022044201}, {"country": 53, "id": 1534, "size": 5.4886363697321396}, {"country": 53, "id": 1535, "size": 7.7934661325800096}, {"country": 53, "id": 1536, "size": 6.2983173665480363}, {"country": 53, "id": 1537, "size": 7.678342114654332}, {"country": 53, "id": 1538, "size": 6.7620513827801769}, {"country": 53, "id": 1539, "size": 6.1590552992145291}, {"country": 77, "id": 1540, "size": 5.1896547420264252}, {"country": 53, "id": 1541, "size": 6.7397929121792339}, {"country": 131, "id": 1542, "size": 6.7620513827801769}, {"country": 53, "id": 1543, "size": 4.5835189384561099}, {"country": 53, "id": 1544, "size": 6.2729995585637468}, {"country": 53, "id": 1545, "size": 5.5951198501345898}, {"country": 53, "id": 1546, "size": 7.3716118472318568}, {"country": 53, "id": 1547, "size": 5.499809670330265}, {"country": 21, "id": 1548, "size": 6.7930136083841441}, {"country": 53, "id": 1549, "size": 4.3672958299864746}, {"country": 53, "id": 1550, "size": 9.3537326422632017}, {"country": 77, "id": 1551, "size": 7.2065759267249279}, {"country": 53, "id": 1552, "size": 6.0625950330269669}, {"country": 127, "id": 1553, "size": 6.7137328055093688}, {"country": 77, "id": 1554, "size": 6.3327187932653688}, {"country": 38, "id": 1555, "size": 6.2678581590633282}, {"country": 53, "id": 1556, "size": 6.4930614433405482}, {"country": 29, "id": 1557, "size": 6.7930136083841441}, {"country": 53, "id": 1558, "size": 11.747207591575448}, {"country": 21, "id": 1559, "size": 6.4510384535657002}, {"country": 53, "id": 1560, "size": 5.1271343850450917}, {"country": 21, "id": 1561, "size": 5.2484952420493594}, {"country": 53, "id": 1562, "size": 7.5250296578434623}, {"country": 53, "id": 1563, "size": 7.1355648910817386}, {"country": 21, "id": 1564, "size": 3.9444389791664403}, {"country": 53, "id": 1565, "size": 4.0445224377234226}, {"country": 96, "id": 1566, "size": 7.0473721790462776}, {"country": 53, "id": 1567, "size": 7.1092475827643655}, {"country": 53, "id": 1568, "size": 6.4930614433405482}, {"country": 53, "id": 1569, "size": 5.3438054218536841}, {"country": 12, "id": 1570, "size": 5.9416424226093039}, {"country": 53, "id": 1571, "size": 7.8710912946105456}, {"country": 53, "id": 1572, "size": 5.6347289882296359}, {"country": 53, "id": 1573, "size": 8.3158835045097845}, {"country": 118, "id": 1574, "size": 4.4011973816621559}, {"country": 37, "id": 1575, "size": 7.3784261836515865}, {"country": 109, "id": 1576, "size": 6.7620513827801769}, {"country": 1, "id": 1577, "size": 6.8111409929767008}, {"country": 53, "id": 1578, "size": 9.5397371558511317}, {"country": 53, "id": 1579, "size": 8.8026180634426723}, {"country": 53, "id": 1580, "size": 10.706072662294519}, {"country": 53, "id": 1581, "size": 6.9738096118692612}, {"country": 21, "id": 1582, "size": 6.7365722974791922}, {"country": 53, "id": 1583, "size": 7.3647507568519108}, {"country": 53, "id": 1584, "size": 7.4457198193855785}, {"country": 53, "id": 1585, "size": 7.8308742346461795}, {"country": 53, "id": 1586, "size": 6.1929568508902104}, {"country": 53, "id": 1587, "size": 4.218875824868201}, {"country": 53, "id": 1588, "size": 5.6821312271242199}, {"country": 53, "id": 1589, "size": 5.0943445622221004}, {"country": 53, "id": 1590, "size": 6.1059454739005803}, {"country": 53, "id": 1591, "size": 7.2822667468960063}, {"country": 53, "id": 1592, "size": 4.3322045101752042}, {"country": 53, "id": 1593, "size": 6.5333894887275203}, {"country": 53, "id": 1594, "size": 8.8276395463664219}, {"country": 53, "id": 1595, "size": 6.7557422135869123}, {"country": 53, "id": 1596, "size": 9.999001866111735}, {"country": 53, "id": 1597, "size": 7.4248690239053881}, {"country": 129, "id": 1598, "size": 5.2626798770413155}, {"country": 53, "id": 1599, "size": 2.791759469228055}, {"country": 53, "id": 1600, "size": 7.9810057407217299}, {"country": 53, "id": 1601, "size": 6.1873858058407549}, {"country": 53, "id": 1602, "size": 8.1731917424865976}, {"country": 53, "id": 1603, "size": 8.6410842491749129}, {"country": 21, "id": 1604, "size": 7.2766434893416445}, {"country": 77, "id": 1605, "size": 6.598421958998375}, {"country": 53, "id": 1606, "size": 5.836281906951478}, {"country": 53, "id": 1607, "size": 5.7957905455967413}, {"country": 53, "id": 1608, "size": 4.2958368660043291}, {"country": 53, "id": 1609, "size": 8.8244459308776193}, {"country": 21, "id": 1610, "size": 4.0445224377234226}, {"country": 53, "id": 1611, "size": 4.8286413964890951}, {"country": 53, "id": 1612, "size": 5.8121843553724171}, {"country": 53, "id": 1613, "size": 8.7882115578470756}, {"country": 39, "id": 1614, "size": 6.393627546352362}, {"country": 53, "id": 1615, "size": 5.1896547420264252}, {"country": 131, "id": 1616, "size": 5.7449321283632502}, {"country": 21, "id": 1617, "size": 7.1355648910817386}, {"country": 47, "id": 1618, "size": 6.8692969131337742}, {"country": 53, "id": 1619, "size": 7.5496507422338102}, {"country": 53, "id": 1620, "size": 8.5994013334158161}, {"country": 53, "id": 1621, "size": 6.3981627015177525}, {"country": 53, "id": 1622, "size": 7.061456918928017}, {"country": 53, "id": 1623, "size": 6.1984970312658261}, {"country": 53, "id": 1624, "size": 3.3978952727983707}, {"country": 53, "id": 1625, "size": 7.6214056517641344}, {"country": 132, "id": 1626, "size": 5.0943445622221004}, {"country": 53, "id": 1627, "size": 8.0950643772871302}, {"country": 53, "id": 1628, "size": 7.2897155709089976}, {"country": 60, "id": 1629, "size": 4.737669618283368}, {"country": 53, "id": 1630, "size": 6.6240175061873385}, {"country": 59, "id": 1631, "size": 8.1212524532445407}, {"country": 64, "id": 1632, "size": 5.5747109785033828}, {"country": 53, "id": 1633, "size": 7.1355648910817386}, {"country": 53, "id": 1634, "size": 6.3844950627890888}, {"country": 53, "id": 1635, "size": 6.5721540321777647}, {"country": 53, "id": 1636, "size": 6.5872486584002496}, {"country": 53, "id": 1637, "size": 4.218875824868201}, {"country": 41, "id": 1638, "size": 5.5108595065168497}, {"country": 121, "id": 1639, "size": 7.9966814881765389}, {"country": 77, "id": 1640, "size": 5.7791234931115296}, {"country": 77, "id": 1641, "size": 6.7397929121792339}, {"country": 53, "id": 1642, "size": 5.5108595065168497}, {"country": 53, "id": 1643, "size": 10.239996256883693}, {"country": 21, "id": 1644, "size": 6.6489742381612063}, {"country": 93, "id": 1645, "size": 6.857933154483459}, {"country": 100, "id": 1646, "size": 4.9702919135521224}, {"country": 43, "id": 1647, "size": 7.6372580312844569}, {"country": 67, "id": 1648, "size": 5.0073331852324712}, {"country": 118, "id": 1649, "size": 7.0776422433490342}, {"country": 73, "id": 1650, "size": 8.0335064842876971}, {"country": 53, "id": 1651, "size": 7.3801225368997647}, {"country": 53, "id": 1652, "size": 3.3978952727983707}, {"country": 53, "id": 1653, "size": 7.8543545022550214}, {"country": 53, "id": 1654, "size": 5.9272536851572051}, {"country": 84, "id": 1655, "size": 4.0445224377234226}, {"country": 53, "id": 1656, "size": 4.8918202981106269}, {"country": 53, "id": 1657, "size": 7.7753660909363917}, {"country": 53, "id": 1658, "size": 8.0157124204872297}, {"country": 53, "id": 1659, "size": 11.752270024627522}, {"country": 53, "id": 1660, "size": 8.9487384548136113}, {"country": 134, "id": 1661, "size": 5.6913478822291435}, {"country": 53, "id": 1662, "size": 4.2580965380214817}, {"country": 53, "id": 1663, "size": 7.1484682959176471}, {"country": 21, "id": 1664, "size": 8.0370276146862771}, {"country": 21, "id": 1665, "size": 8.8216431262399819}, {"country": 53, "id": 1666, "size": 6.6970934865054046}, {"country": 53, "id": 1667, "size": 6.7333412768977459}, {"country": 53, "id": 1668, "size": 5.6821312271242199}, {"country": 77, "id": 1669, "size": 8.2041492920359396}, {"country": 53, "id": 1670, "size": 4.3672958299864746}, {"country": 77, "id": 1671, "size": 8.0210839642891401}, {"country": 53, "id": 1672, "size": 6.6131281063880705}, {"country": 53, "id": 1673, "size": 7.7546040994879624}, {"country": 53, "id": 1674, "size": 5.0943445622221004}, {"country": 53, "id": 1675, "size": 5.1108738641733114}, {"country": 53, "id": 1676, "size": 7.1180971980413483}, {"country": 77, "id": 1677, "size": 6.7838251823297373}, {"country": 77, "id": 1678, "size": 7.2595814640649232}, {"country": 53, "id": 1679, "size": 6.3518581334760666}, {"country": 96, "id": 1680, "size": 6.0434251169192468}, {"country": 53, "id": 1681, "size": 6.5012582105447274}, {"country": 53, "id": 1682, "size": 7.4281052726845962}, {"country": 77, "id": 1683, "size": 7.9363427358340495}, {"country": 37, "id": 1684, "size": 5.6634390941120669}, {"country": 53, "id": 1685, "size": 5.2484952420493594}, {"country": 53, "id": 1686, "size": 7.313548046277095}, {"country": 53, "id": 1687, "size": 5.7791234931115296}, {"country": 53, "id": 1688, "size": 7.4997870406558542}, {"country": 53, "id": 1689, "size": 8.1996783456911722}, {"country": 53, "id": 1690, "size": 7.776506992372183}, {"country": 53, "id": 1691, "size": 8.6231530684769027}, {"country": 53, "id": 1692, "size": 5.0775374439057197}, {"country": 53, "id": 1693, "size": 6.6131281063880705}, {"country": 53, "id": 1694, "size": 5.4188406077965983}, {"country": 53, "id": 1695, "size": 6.4116460518550396}, {"country": 21, "id": 1696, "size": 5.7449321283632502}, {"country": 53, "id": 1697, "size": 6.4380793089231956}, {"country": 53, "id": 1698, "size": 7.2557500417533669}, {"country": 53, "id": 1699, "size": 6.4553211153577017}, {"country": 53, "id": 1700, "size": 5.9416424226093039}, {"country": 53, "id": 1701, "size": 6.5333894887275203}, {"country": 118, "id": 1702, "size": 5.2626798770413155}, {"country": 21, "id": 1703, "size": 4.2958368660043291}, {"country": 53, "id": 1704, "size": 7.0980742821662401}, {"country": 53, "id": 1705, "size": 6.9322451874480109}, {"country": 53, "id": 1706, "size": 4.5553480614894131}, {"country": 21, "id": 1707, "size": 7.2595814640649232}, {"country": 76, "id": 1708, "size": 7.4738906963522744}, {"country": 53, "id": 1709, "size": 4.9702919135521224}, {"country": 53, "id": 1710, "size": 5.6443908991413725}, {"country": 53, "id": 1711, "size": 7.2025355171879228}, {"country": 11, "id": 1712, "size": 6.2203558250783244}, {"country": 53, "id": 1713, "size": 7.9295167707636498}, {"country": 53, "id": 1714, "size": 5.5325994931532563}, {"country": 53, "id": 1715, "size": 4.6109179126442239}, {"country": 53, "id": 1716, "size": 6.4161004022044201}, {"country": 131, "id": 1717, "size": 7.8437499490062246}, {"country": 53, "id": 1718, "size": 5.836281906951478}, {"country": 77, "id": 1719, "size": 4.6635616461296463}, {"country": 53, "id": 1720, "size": 5.4188406077965983}, {"country": 53, "id": 1721, "size": 5.1108738641733114}, {"country": 77, "id": 1722, "size": 5.9558270576012609}, {"country": 53, "id": 1723, "size": 6.1357984370502621}, {"country": 53, "id": 1724, "size": 5.1743872698956368}, {"country": 53, "id": 1725, "size": 7.4488893941468577}, {"country": 53, "id": 1726, "size": 8.2868764117507006}, {"country": 129, "id": 1727, "size": 4.6888794541139358}, {"country": 53, "id": 1728, "size": 4.2580965380214817}, {"country": 77, "id": 1729, "size": 6.5490760848952201}, {"country": 129, "id": 1730, "size": 4.2958368660043291}, {"country": 53, "id": 1731, "size": 6.7525726388256331}, {"country": 53, "id": 1732, "size": 3.6390573296152584}, {"country": 126, "id": 1733, "size": 7.6385677891665207}, {"country": 95, "id": 1734, "size": 6.5872486584002496}, {"country": 53, "id": 1735, "size": 8.2541778464565176}, {"country": 53, "id": 1736, "size": 4.1780538303479453}, {"country": 53, "id": 1737, "size": 3.5649493574615367}, {"country": 53, "id": 1738, "size": 5.0430512678345503}, {"country": 60, "id": 1739, "size": 7.0707377280024897}, {"country": 53, "id": 1740, "size": 6.8051349689164882}, {"country": 53, "id": 1741, "size": 5.6347289882296359}, {"country": 94, "id": 1742, "size": 7.3044488024219811}, {"country": 41, "id": 1743, "size": 4.9889840465642745}, {"country": 53, "id": 1744, "size": 7.1377270540862341}, {"country": 53, "id": 1745, "size": 6.7930136083841441}, {"country": 53, "id": 1746, "size": 5.3438054218536841}, {"country": 74, "id": 1747, "size": 7.6656837177824082}, {"country": 77, "id": 1748, "size": 3.3978952727983707}, {"country": 53, "id": 1749, "size": 10.061492275239766}, {"country": 53, "id": 1750, "size": 8.0825485693552999}, {"country": 53, "id": 1751, "size": 7.3189681137464344}, {"country": 53, "id": 1752, "size": 8.5740450053721986}, {"country": 53, "id": 1753, "size": 9.7657705439872569}, {"country": 129, "id": 1754, "size": 6.1059454739005803}, {"country": 53, "id": 1755, "size": 7.2822667468960063}, {"country": 53, "id": 1756, "size": 5.9272536851572051}, {"country": 53, "id": 1757, "size": 2.9459101490553135}, {"country": 37, "id": 1758, "size": 7.2519038831658884}, {"country": 96, "id": 1759, "size": 5.8040210447332568}, {"country": 118, "id": 1760, "size": 4.2958368660043291}, {"country": 53, "id": 1761, "size": 6.8021183753770629}, {"country": 53, "id": 1762, "size": 10.992368015030003}, {"country": 21, "id": 1763, "size": 4.0445224377234226}, {"country": 53, "id": 1764, "size": 6.579729825986222}, {"country": 53, "id": 1765, "size": 4.8066624897703196}, {"country": 53, "id": 1766, "size": 5.3307333402863311}, {"country": 53, "id": 1767, "size": 8.3395376954076745}, {"country": 53, "id": 1768, "size": 4.1780538303479453}, {"country": 53, "id": 1769, "size": 6.8692969131337742}, {"country": 53, "id": 1770, "size": 5.9272536851572051}, {"country": 53, "id": 1771, "size": 5.8121843553724171}, {"country": 129, "id": 1772, "size": 7.0014148779611505}, {"country": 53, "id": 1773, "size": 7.3473892096560105}, {"country": 43, "id": 1774, "size": 6.7137328055093688}, {"country": 53, "id": 1775, "size": 7.2952660014396464}, {"country": 53, "id": 1776, "size": 5.5747109785033828}, {"country": 95, "id": 1777, "size": 6.1590552992145291}, {"country": 64, "id": 1778, "size": 6.7333412768977459}, {"country": 53, "id": 1779, "size": 4.3322045101752042}, {"country": 53, "id": 1780, "size": 7.7833252006039597}, {"country": 68, "id": 1781, "size": 6.181783550292085}, {"country": 53, "id": 1782, "size": 8.1974353540965907}, {"country": 104, "id": 1783, "size": 1.0}, {"country": 49, "id": 1784, "size": 5.1271343850450917}, {"country": 53, "id": 1785, "size": 7.2166061010848646}, {"country": 53, "id": 1786, "size": 6.7838251823297373}, {"country": 53, "id": 1787, "size": 5.0604430105464191}, {"country": 21, "id": 1788, "size": 5.1896547420264252}, {"country": 53, "id": 1789, "size": 4.3672958299864746}, {"country": 53, "id": 1790, "size": 7.4861607889440887}, {"country": 53, "id": 1791, "size": 6.8522024797744745}, {"country": 53, "id": 1792, "size": 5.3694478524670215}, {"country": 81, "id": 1793, "size": 5.0430512678345503}, {"country": 53, "id": 1794, "size": 9.0368967726850702}, {"country": 53, "id": 1795, "size": 5.2626798770413155}, {"country": 21, "id": 1796, "size": 7.4199949281471422}, {"country": 53, "id": 1797, "size": 9.3072126266283082}, {"country": 53, "id": 1798, "size": 6.4249500174814029}, {"country": 53, "id": 1799, "size": 7.7557689219842549}, {"country": 53, "id": 1800, "size": 7.0185932144962342}, {"country": 53, "id": 1801, "size": 6.1873858058407549}, {"country": 53, "id": 1802, "size": 3.8903717578961645}, {"country": 53, "id": 1803, "size": 5.6728288344619058}, {"country": 53, "id": 1804, "size": 6.7037824746562009}, {"country": 53, "id": 1805, "size": 6.4680601411351315}, {"country": 77, "id": 1806, "size": 5.4886363697321396}, {"country": 107, "id": 1807, "size": 5.4067192472642533}, {"country": 53, "id": 1808, "size": 7.7322107064672059}, {"country": 129, "id": 1809, "size": 6.4467373716663099}, {"country": 96, "id": 1810, "size": 5.2484952420493594}, {"country": 1, "id": 1811, "size": 6.0751738152338266}, {"country": 21, "id": 1812, "size": 5.3438054218536841}, {"country": 93, "id": 1813, "size": 6.8777357817796387}, {"country": 87, "id": 1814, "size": 6.0937502008067623}, {"country": 134, "id": 1815, "size": 4.465735902799727}, {"country": 77, "id": 1816, "size": 5.6821312271242199}, {"country": 53, "id": 1817, "size": 5.4308167988433134}, {"country": 53, "id": 1818, "size": 6.7776523232226564}, {"country": 53, "id": 1819, "size": 6.3132059790417872}, {"country": 53, "id": 1820, "size": 7.7569323892475532}, {"country": 53, "id": 1821, "size": 7.3491389913797978}, {"country": 53, "id": 1822, "size": 3.3025850929940459}, {"country": 53, "id": 1823, "size": 5.8598124043616719}, {"country": 53, "id": 1824, "size": 6.768320995793772}, {"country": 53, "id": 1825, "size": 7.0497334552319577}, {"country": 53, "id": 1826, "size": 5.3307333402863311}, {"country": 60, "id": 1827, "size": 4.8712010109078907}, {"country": 53, "id": 1828, "size": 7.5042881735366453}, {"country": 53, "id": 1829, "size": 7.4232469635335194}, {"country": 84, "id": 1830, "size": 6.1873858058407549}, {"country": 53, "id": 1831, "size": 6.8522024797744745}, {"country": 53, "id": 1832, "size": 6.3518581334760666}, {"country": 21, "id": 1833, "size": 5.7361984483944957}, {"country": 53, "id": 1834, "size": 6.6835797673386814}, {"country": 101, "id": 1835, "size": 6.8141305318250662}, {"country": 53, "id": 1836, "size": 8.0483864087218819}, {"country": 53, "id": 1837, "size": 4.8712010109078907}, {"country": 77, "id": 1838, "size": 5.8978397999509111}, {"country": 53, "id": 1839, "size": 6.9188938542731462}, {"country": 77, "id": 1840, "size": 6.3423342519648109}, {"country": 60, "id": 1841, "size": 4.9120230054281464}, {"country": 53, "id": 1842, "size": 5.1271343850450917}, {"country": 93, "id": 1843, "size": 5.3567088266895917}, {"country": 53, "id": 1844, "size": 7.1224928095143865}, {"country": 53, "id": 1845, "size": 9.4015578478173136}, {"country": 53, "id": 1846, "size": 4.4965075614664798}, {"country": 53, "id": 1847, "size": 7.3699009828282271}, {"country": 53, "id": 1848, "size": 6.2203558250783244}, {"country": 129, "id": 1849, "size": 4.8501476017100584}, {"country": 53, "id": 1850, "size": 6.857933154483459}, {"country": 53, "id": 1851, "size": 13.42525235117791}, {"country": 21, "id": 1852, "size": 5.7004803657924166}, {"country": 77, "id": 1853, "size": 7.0088131854425946}, {"country": 53, "id": 1854, "size": 7.5596152374932419}, {"country": 37, "id": 1855, "size": 6.0498560072495371}, {"country": 53, "id": 1856, "size": 6.6240175061873385}, {"country": 32, "id": 1857, "size": 5.0775374439057197}, {"country": 21, "id": 1858, "size": 8.3192024587678493}, {"country": 47, "id": 1859, "size": 6.579729825986222}, {"country": 53, "id": 1860, "size": 5.5108595065168497}, {"country": 37, "id": 1861, "size": 5.3694478524670215}, {"country": 37, "id": 1862, "size": 6.4847969334906548}, {"country": 21, "id": 1863, "size": 7.7405193596062229}, {"country": 21, "id": 1864, "size": 9.8196653493406529}, {"country": 42, "id": 1865, "size": 6.1416635565026603}, {"country": 53, "id": 1866, "size": 6.4806389233419912}, {"country": 53, "id": 1867, "size": 9.2612681505776475}, {"country": 53, "id": 1868, "size": 8.0774980535692311}, {"country": 21, "id": 1869, "size": 7.3099182782265162}, {"country": 53, "id": 1870, "size": 6.2574953720277815}, {"country": 53, "id": 1871, "size": 4.0445224377234226}, {"country": 53, "id": 1872, "size": 3.3978952727983707}, {"country": 60, "id": 1873, "size": 6.0369526024136295}, {"country": 53, "id": 1874, "size": 6.2781146592305168}, {"country": 53, "id": 1875, "size": 6.8289456176102075}, {"country": 77, "id": 1876, "size": 7.8638033914529544}, {"country": 53, "id": 1877, "size": 5.0775374439057197}, {"country": 92, "id": 1878, "size": 6.6869753563398202}, {"country": 96, "id": 1879, "size": 5.6821312271242199}, {"country": 21, "id": 1880, "size": 5.4308167988433134}, {"country": 129, "id": 1881, "size": 7.5308776277258849}, {"country": 30, "id": 1882, "size": 6.6204008657171496}, {"country": 53, "id": 1883, "size": 5.3174881135363101}, {"country": 53, "id": 1884, "size": 7.0282785202306979}, {"country": 125, "id": 1885, "size": 10.14686794902061}, {"country": 53, "id": 1886, "size": 4.1354942159291497}, {"country": 53, "id": 1887, "size": 4.0445224377234226}, {"country": 127, "id": 1888, "size": 8.3369369137076177}, {"country": 43, "id": 1889, "size": 7.0354814325247563}, {"country": 60, "id": 1890, "size": 5.3694478524670215}, {"country": 129, "id": 1891, "size": 5.4308167988433134}, {"country": 37, "id": 1892, "size": 6.9964520886190211}, {"country": 100, "id": 1893, "size": 4.9702919135521224}, {"country": 53, "id": 1894, "size": 7.4754327167040904}, {"country": 21, "id": 1895, "size": 8.7323692222843867}, {"country": 131, "id": 1896, "size": 6.0751738152338266}, {"country": 53, "id": 1897, "size": 7.2441669006637364}, {"country": 53, "id": 1898, "size": 7.6669567924292066}, {"country": 53, "id": 1899, "size": 5.6634390941120669}, {"country": 53, "id": 1900, "size": 6.4553211153577017}, {"country": 53, "id": 1901, "size": 8.1959372264755679}, {"country": 53, "id": 1902, "size": 7.831953565565855}, {"country": 77, "id": 1903, "size": 3.9444389791664403}, {"country": 53, "id": 1904, "size": 6.0875963352323836}, {"country": 53, "id": 1905, "size": 9.5087577125951359}, {"country": 53, "id": 1906, "size": 7.1841488909374833}, {"country": 92, "id": 1907, "size": 3.1972245773362196}, {"country": 129, "id": 1908, "size": 3.8332133440562162}, {"country": 53, "id": 1909, "size": 7.4676987261043539}, {"country": 53, "id": 1910, "size": 7.1654178542314204}, {"country": 21, "id": 1911, "size": 6.1590552992145291}, {"country": 77, "id": 1912, "size": 6.9053618480545707}, {"country": 53, "id": 1913, "size": 6.7137328055093688}, {"country": 77, "id": 1914, "size": 8.5600804650218265}, {"country": 53, "id": 1915, "size": 6.3659760150218512}, {"country": 53, "id": 1916, "size": 7.3561076606958915}, {"country": 53, "id": 1917, "size": 4.7841896339182615}, {"country": 53, "id": 1918, "size": 6.2094861528414214}, {"country": 53, "id": 1919, "size": 7.4134589571673573}, {"country": 53, "id": 1920, "size": 5.5951198501345898}, {"country": 53, "id": 1921, "size": 7.932447891572509}, {"country": 53, "id": 1922, "size": 6.4424177105217932}, {"country": 127, "id": 1923, "size": 6.5254529391317835}, {"country": 53, "id": 1924, "size": 6.9242557974145322}, {"country": 53, "id": 1925, "size": 3.9444389791664403}, {"country": 53, "id": 1926, "size": 6.0039463059454592}, {"country": 53, "id": 1927, "size": 6.6733232671714928}, {"country": 0, "id": 1928, "size": 7.6320017773956303}, {"country": 53, "id": 1929, "size": 7.1944053911046719}, {"country": 53, "id": 1930, "size": 8.155396301896733}, {"country": 21, "id": 1931, "size": 5.9698132995760007}, {"country": 53, "id": 1932, "size": 4.6109179126442239}, {"country": 53, "id": 1933, "size": 6.7620513827801769}, {"country": 53, "id": 1934, "size": 7.6133842183795597}, {"country": 53, "id": 1935, "size": 4.9889840465642745}, {"country": 53, "id": 1936, "size": 10.112617283447568}, {"country": 53, "id": 1937, "size": 6.7268477475871968}, {"country": 53, "id": 1938, "size": 7.6267177492490248}, {"country": 110, "id": 1939, "size": 4.465735902799727}, {"country": 53, "id": 1940, "size": 7.2166061010848646}, {"country": 53, "id": 1941, "size": 7.6080006252960866}, {"country": 53, "id": 1942, "size": 9.5322788288342775}, {"country": 53, "id": 1943, "size": 6.4161004022044201}, {"country": 82, "id": 1944, "size": 5.1431347263915326}, {"country": 53, "id": 1945, "size": 6.43372200355424}, {"country": 53, "id": 1946, "size": 7.7464121285733745}, {"country": 53, "id": 1947, "size": 6.5451774444795623}, {"country": 92, "id": 1948, "size": 6.6454468976432377}, {"country": 100, "id": 1949, "size": 7.2728770065461674}, {"country": 53, "id": 1950, "size": 5.9416424226093039}, {"country": 60, "id": 1951, "size": 5.8121843553724171}, {"country": 21, "id": 1952, "size": 5.1431347263915326}, {"country": 53, "id": 1953, "size": 6.3230099791384085}, {"country": 21, "id": 1954, "size": 4.9702919135521224}, {"country": 53, "id": 1955, "size": 6.1984970312658261}, {"country": 53, "id": 1956, "size": 7.5510803350434044}, {"country": 53, "id": 1957, "size": 5.4067192472642533}, {"country": 53, "id": 1958, "size": 8.229838778151251}, {"country": 53, "id": 1959, "size": 7.0258659738253142}, {"country": 53, "id": 1960, "size": 7.8090393060429797}, {"country": 53, "id": 1961, "size": 6.7430031878094825}, {"country": 53, "id": 1962, "size": 7.1246833908942051}, {"country": 53, "id": 1963, "size": 4.737669618283368}, {"country": 47, "id": 1964, "size": 6.6058020662959978}, {"country": 42, "id": 1965, "size": 5.5108595065168497}, {"country": 53, "id": 1966, "size": 7.2245584292753602}, {"country": 60, "id": 1967, "size": 5.2341065045972597}, {"country": 53, "id": 1968, "size": 7.1737861039019366}, {"country": 21, "id": 1969, "size": 6.6524891802686508}, {"country": 21, "id": 1970, "size": 5.7273878187123408}, {"country": 77, "id": 1971, "size": 7.1290502100605453}, {"country": 132, "id": 1972, "size": 7.799055862058796}, {"country": 77, "id": 1973, "size": 7.7153833863346808}, {"country": 53, "id": 1974, "size": 5.9126548857360524}, {"country": 21, "id": 1975, "size": 5.6634390941120669}, {"country": 53, "id": 1976, "size": 7.2126060957515188}, {"country": 53, "id": 1977, "size": 6.2094861528414214}, {"country": 53, "id": 1978, "size": 5.2046926193909657}, {"country": 53, "id": 1979, "size": 4.4339872044851463}, {"country": 53, "id": 1980, "size": 5.0253516907351496}, {"country": 53, "id": 1981, "size": 6.5053315359323625}, {"country": 53, "id": 1982, "size": 6.5012582105447274}, {"country": 84, "id": 1983, "size": 3.5649493574615367}, {"country": 53, "id": 1984, "size": 3.4849066497880004}, {"country": 53, "id": 1985, "size": 7.6908422774185636}, {"country": 53, "id": 1986, "size": 8.3078727807637058}, {"country": 93, "id": 1987, "size": 8.3211885567394788}, {"country": 53, "id": 1988, "size": 6.0998664278241987}, {"country": 53, "id": 1989, "size": 8.5918617148899337}, {"country": 92, "id": 1990, "size": 4.5263605246161616}, {"country": 53, "id": 1991, "size": 7.1841488909374833}, {"country": 53, "id": 1992, "size": 8.0630481633881725}, {"country": 53, "id": 1993, "size": 6.1416635565026603}, {"country": 118, "id": 1994, "size": 3.0794415416798357}, {"country": 53, "id": 1995, "size": 4.8066624897703196}, {"country": 53, "id": 1996, "size": 5.2766661190160553}, {"country": 53, "id": 1997, "size": 6.7714411231300158}, {"country": 21, "id": 1998, "size": 6.8377304471659395}, {"country": 53, "id": 1999, "size": 6.5012582105447274}, {"country": 0, "id": 2000, "size": 3.7080502011022101}, {"country": 129, "id": 2001, "size": 3.9444389791664403}, {"country": 127, "id": 2002, "size": 4.0910424533583161}, {"country": 53, "id": 2003, "size": 7.8134445995108956}, {"country": 53, "id": 2004, "size": 5.6347289882296359}, {"country": 21, "id": 2005, "size": 7.2126060957515188}, {"country": 77, "id": 2006, "size": 5.1588830833596715}, {"country": 53, "id": 2007, "size": 4.4011973816621559}, {"country": 21, "id": 2008, "size": 8.0630481633881725}, {"country": 53, "id": 2009, "size": 6.2626901889048856}, {"country": 53, "id": 2010, "size": 6.8230458954830189}, {"country": 53, "id": 2011, "size": 5.4543472962535073}, {"country": 92, "id": 2012, "size": 8.7292956743104817}, {"country": 63, "id": 2013, "size": 5.2046926193909657}, {"country": 53, "id": 2014, "size": 7.5191472879403953}, {"country": 53, "id": 2015, "size": 6.2678581590633282}, {"country": 77, "id": 2016, "size": 8.2991214627108008}, {"country": 53, "id": 2017, "size": 5.4426512564903167}, {"country": 53, "id": 2018, "size": 5.2341065045972597}, {"country": 37, "id": 2019, "size": 4.218875824868201}, {"country": 53, "id": 2020, "size": 5.5432947822700038}, {"country": 53, "id": 2021, "size": 10.360569085222874}, {"country": 53, "id": 2022, "size": 5.0775374439057197}, {"country": 37, "id": 2023, "size": 4.9889840465642745}, {"country": 96, "id": 2024, "size": 7.1820849067166321}, {"country": 53, "id": 2025, "size": 7.508769136971682}, {"country": 21, "id": 2026, "size": 7.0844994130751715}, {"country": 53, "id": 2027, "size": 7.1398845522262553}, {"country": 53, "id": 2028, "size": 6.4467373716663099}, {"country": 109, "id": 2029, "size": 7.5610306658965731}, {"country": 53, "id": 2030, "size": 5.8598124043616719}, {"country": 77, "id": 2031, "size": 6.8493247799468593}, {"country": 53, "id": 2032, "size": 3.9957322735539909}, {"country": 53, "id": 2033, "size": 8.7380522976893147}, {"country": 67, "id": 2034, "size": 5.7791234931115296}, {"country": 132, "id": 2035, "size": 4.737669618283368}, {"country": 53, "id": 2036, "size": 7.1484682959176471}, {"country": 132, "id": 2037, "size": 8.8958083770831831}, {"country": 129, "id": 2038, "size": 7.1025585946135692}, {"country": 60, "id": 2039, "size": 6.2417470150596426}, {"country": 53, "id": 2040, "size": 7.584791392385716}, {"country": 40, "id": 2041, "size": 5.8441870864585912}, {"country": 77, "id": 2042, "size": 5.5643481914678361}, {"country": 53, "id": 2043, "size": 7.5875500148247959}, {"country": 53, "id": 2044, "size": 7.5652649700353614}, {"country": 53, "id": 2045, "size": 7.5903010481966859}, {"country": 53, "id": 2046, "size": 8.091742115095153}, {"country": 53, "id": 2047, "size": 8.6902860206767691}, {"country": 53, "id": 2048, "size": 7.1202974189509503}, {"country": 53, "id": 2049, "size": 8.715569534520208}, {"country": 21, "id": 2050, "size": 5.990432586778736}, {"country": 127, "id": 2051, "size": 7.6567265241783913}, {"country": 53, "id": 2052, "size": 9.6531217086404819}, {"country": 109, "id": 2053, "size": 5.3820266346738812}, {"country": 53, "id": 2054, "size": 8.4529823294654598}, {"country": 53, "id": 2055, "size": 5.7095302013123339}, {"country": 53, "id": 2056, "size": 6.4638318050256105}, {"country": 53, "id": 2057, "size": 8.7815559592353409}, {"country": 53, "id": 2058, "size": 4.465735902799727}, {"country": 53, "id": 2059, "size": 6.4161004022044201}, {"country": 53, "id": 2060, "size": 6.5645204073226937}, {"country": 53, "id": 2061, "size": 6.8348107370626048}, {"country": 21, "id": 2062, "size": 9.8671455895941431}, {"country": 53, "id": 2063, "size": 9.753213480544126}, {"country": 53, "id": 2064, "size": 6.2626901889048856}, {"country": 53, "id": 2065, "size": 8.0255383146385206}, {"country": 53, "id": 2066, "size": 5.5325994931532563}, {"country": 96, "id": 2067, "size": 4.1780538303479453}, {"country": 53, "id": 2068, "size": 5.8751973232011512}, {"country": 53, "id": 2069, "size": 6.3327187932653688}, {"country": 53, "id": 2070, "size": 5.8283137373023015}, {"country": 21, "id": 2071, "size": 4.8501476017100584}, {"country": 95, "id": 2072, "size": 9.4926955598158376}, {"country": 94, "id": 2073, "size": 5.8598124043616719}, {"country": 132, "id": 2074, "size": 2.6094379124341005}, {"country": 53, "id": 2075, "size": 4.2958368660043291}, {"country": 53, "id": 2076, "size": 7.4645883036899612}, {"country": 21, "id": 2077, "size": 10.671807670199632}, {"country": 96, "id": 2078, "size": 7.0402547112774139}, {"country": 21, "id": 2079, "size": 7.8690144506657065}, {"country": 53, "id": 2080, "size": 8.7952349290021736}, {"country": 53, "id": 2081, "size": 6.8464387750577247}, {"country": 53, "id": 2082, "size": 4.4339872044851463}, {"country": 53, "id": 2083, "size": 7.3332796281396906}, {"country": 53, "id": 2084, "size": 7.6267177492490248}, {"country": 84, "id": 2085, "size": 6.598421958998375}, {"country": 53, "id": 2086, "size": 5.4659081186545837}, {"country": 53, "id": 2087, "size": 7.6147256002037604}, {"country": 53, "id": 2088, "size": 8.265429723253952}, {"country": 53, "id": 2089, "size": 6.6801726090170677}, {"country": 21, "id": 2090, "size": 5.7184988712950942}, {"country": 53, "id": 2091, "size": 7.1903154058531475}, {"country": 53, "id": 2092, "size": 7.4281052726845962}, {"country": 53, "id": 2093, "size": 4.5835189384561099}, {"country": 53, "id": 2094, "size": 6.3327187932653688}, {"country": 55, "id": 2095, "size": 7.0426328336823811}, {"country": 53, "id": 2096, "size": 5.3567088266895917}, {"country": 53, "id": 2097, "size": 6.916202062607435}, {"country": 96, "id": 2098, "size": 3.5649493574615367}, {"country": 53, "id": 2099, "size": 7.4052284580308418}, {"country": 53, "id": 2100, "size": 6.7203117766074119}, {"country": 53, "id": 2101, "size": 4.6888794541139358}, {"country": 129, "id": 2102, "size": 4.737669618283368}, {"country": 53, "id": 2103, "size": 7.0210233493495267}, {"country": 53, "id": 2104, "size": 6.8522024797744745}, {"country": 53, "id": 2105, "size": 6.9269260259704106}, {"country": 53, "id": 2106, "size": 6.2040066870767951}, {"country": 94, "id": 2107, "size": 5.3174881135363101}, {"country": 53, "id": 2108, "size": 10.744491821045671}, {"country": 53, "id": 2109, "size": 8.6634076648934801}, {"country": 84, "id": 2110, "size": 5.6913478822291435}, {"country": 53, "id": 2111, "size": 6.6204008657171496}, {"country": 53, "id": 2112, "size": 5.6634390941120669}, {"country": 53, "id": 2113, "size": 7.0038870671065387}, {"country": 125, "id": 2114, "size": 5.3694478524670215}, {"country": 42, "id": 2115, "size": 6.602118820879701}, {"country": 53, "id": 2116, "size": 5.5108595065168497}, {"country": 53, "id": 2117, "size": 4.0910424533583161}, {"country": 21, "id": 2118, "size": 7.1964441277945204}, {"country": 53, "id": 2119, "size": 5.3438054218536841}, {"country": 53, "id": 2120, "size": 7.6528630293533473}, {"country": 53, "id": 2121, "size": 6.3230099791384085}, {"country": 53, "id": 2122, "size": 8.1739583197567942}, {"country": 53, "id": 2123, "size": 4.8712010109078907}, {"country": 53, "id": 2124, "size": 4.8501476017100584}, {"country": 21, "id": 2125, "size": 7.0844994130751715}, {"country": 46, "id": 2126, "size": 9.0630629113267922}, {"country": 77, "id": 2127, "size": 6.4026773818722793}, {"country": 60, "id": 2128, "size": 6.6698809229805196}, {"country": 53, "id": 2129, "size": 4.2958368660043291}, {"country": 67, "id": 2130, "size": 7.7684932116486296}, {"country": 77, "id": 2131, "size": 8.668093709082406}, {"country": 31, "id": 2132, "size": 7.7742238863576141}, {"country": 53, "id": 2133, "size": 6.2832037287379885}, {"country": 53, "id": 2134, "size": 5.6249728132842707}, {"country": 129, "id": 2135, "size": 3.3025850929940459}, {"country": 53, "id": 2136, "size": 8.2570027070920737}, {"country": 53, "id": 2137, "size": 6.2522734280466299}, {"country": 93, "id": 2138, "size": 10.230633075243945}, {"country": 53, "id": 2139, "size": 7.2915691395583204}, {"country": 53, "id": 2140, "size": 4.0910424533583161}, {"country": 21, "id": 2141, "size": 5.4659081186545837}, {"country": 53, "id": 2142, "size": 5.7361984483944957}, {"country": 53, "id": 2143, "size": 5.1271343850450917}, {"country": 53, "id": 2144, "size": 5.9126548857360524}, {"country": 53, "id": 2145, "size": 7.1246833908942051}, {"country": 21, "id": 2146, "size": 3.3025850929940459}, {"country": 53, "id": 2147, "size": 7.5366915975913047}, {"country": 53, "id": 2148, "size": 6.8141305318250662}, {"country": 53, "id": 2149, "size": 9.1596607370633762}, {"country": 129, "id": 2150, "size": 6.0172798368149243}, {"country": 53, "id": 2151, "size": 7.2285110035911835}, {"country": 2, "id": 2152, "size": 7.831953565565855}, {"country": 96, "id": 2153, "size": 4.0910424533583161}, {"country": 11, "id": 2154, "size": 7.0637852086876078}, {"country": 53, "id": 2155, "size": 6.3981627015177525}, {"country": 53, "id": 2156, "size": 6.8888779583328805}, {"country": 37, "id": 2157, "size": 5.5643481914678361}, {"country": 53, "id": 2158, "size": 7.5042881735366453}, {"country": 53, "id": 2159, "size": 6.6869753563398202}, {"country": 125, "id": 2160, "size": 3.4849066497880004}, {"country": 129, "id": 2161, "size": 5.6539603501575231}, {"country": 53, "id": 2162, "size": 6.0498560072495371}, {"country": 21, "id": 2163, "size": 7.4997870406558542}, {"country": 53, "id": 2164, "size": 9.596558746796978}, {"country": 53, "id": 2165, "size": 6.181783550292085}, {"country": 0, "id": 2166, "size": 5.5643481914678361}, {"country": 0, "id": 2167, "size": 3.5649493574615367}, {"country": 77, "id": 2168, "size": 6.9889614168898637}, {"country": 53, "id": 2169, "size": 10.800956363888462}, {"country": 37, "id": 2170, "size": 4.8918202981106269}, {"country": 53, "id": 2171, "size": 8.3550019211052557}, {"country": 53, "id": 2172, "size": 7.4707995037826018}, {"country": 53, "id": 2173, "size": 8.5448610686584576}, {"country": 53, "id": 2174, "size": 6.7714411231300158}, {"country": 21, "id": 2175, "size": 5.7449321283632502}, {"country": 37, "id": 2176, "size": 6.1179938124167554}, {"country": 53, "id": 2177, "size": 6.6524891802686508}, {"country": 12, "id": 2178, "size": 5.2766661190160553}, {"country": 21, "id": 2179, "size": 7.6385677891665207}, {"country": 53, "id": 2180, "size": 5.2484952420493594}, {"country": 77, "id": 2181, "size": 4.5553480614894131}, {"country": 53, "id": 2182, "size": 7.3851943989977258}, {"country": 93, "id": 2183, "size": 7.6502790485874224}, {"country": 53, "id": 2184, "size": 7.6052979209482015}, {"country": 53, "id": 2185, "size": 7.3080984415095305}, {"country": 53, "id": 2186, "size": 6.5568280616995374}, {"country": 77, "id": 2187, "size": 7.2065759267249279}, {"country": 53, "id": 2188, "size": 4.1354942159291497}, {"country": 42, "id": 2189, "size": 5.1588830833596715}, {"country": 53, "id": 2190, "size": 3.3025850929940459}, {"country": 53, "id": 2191, "size": 6.7868973813667077}, {"country": 53, "id": 2192, "size": 5.3567088266895917}, {"country": 53, "id": 2193, "size": 4.6888794541139358}, {"country": 53, "id": 2194, "size": 1.6931471805599454}, {"country": 53, "id": 2195, "size": 4.2580965380214817}, {"country": 60, "id": 2196, "size": 5.6151205168412597}, {"country": 21, "id": 2197, "size": 8.3702306418070798}, {"country": 109, "id": 2198, "size": 4.0445224377234226}, {"country": 129, "id": 2199, "size": 4.0445224377234226}, {"country": 21, "id": 2200, "size": 7.045005314036012}, {"country": 53, "id": 2201, "size": 5.7184988712950942}, {"country": 53, "id": 2202, "size": 6.5294290875114234}, {"country": 53, "id": 2203, "size": 4.1354942159291497}, {"country": 93, "id": 2204, "size": 7.7452363494843626}, {"country": 53, "id": 2205, "size": 5.3567088266895917}, {"country": 13, "id": 2206, "size": 7.1025585946135692}, {"country": 53, "id": 2207, "size": 2.9459101490553135}, {"country": 53, "id": 2208, "size": 4.7841896339182615}, {"country": 53, "id": 2209, "size": 8.564238475170491}, {"country": 53, "id": 2210, "size": 9.0633778223670269}, {"country": 53, "id": 2211, "size": 3.5649493574615367}, {"country": 53, "id": 2212, "size": 6.5490760848952201}, {"country": 53, "id": 2213, "size": 11.368604260208469}, {"country": 53, "id": 2214, "size": 6.4161004022044201}, {"country": 53, "id": 2215, "size": 5.5538768916005408}, {"country": 129, "id": 2216, "size": 5.0253516907351496}, {"country": 96, "id": 2217, "size": 6.1474944768134527}, {"country": 72, "id": 2218, "size": 5.8675344504555822}, {"country": 77, "id": 2219, "size": 9.2451219664786048}, {"country": 64, "id": 2220, "size": 6.2257466737132017}, {"country": 21, "id": 2221, "size": 6.598421958998375}, {"country": 21, "id": 2222, "size": 5.0073331852324712}, {"country": 53, "id": 2223, "size": 7.5027900459156234}, {"country": 53, "id": 2224, "size": 7.7569323892475532}, {"country": 53, "id": 2225, "size": 6.8998973535824915}, {"country": 134, "id": 2226, "size": 3.8332133440562162}, {"country": 53, "id": 2227, "size": 8.3198649298089702}, {"country": 13, "id": 2228, "size": 7.2106000770246528}, {"country": 21, "id": 2229, "size": 10.551018039079908}, {"country": 53, "id": 2230, "size": 5.8520302639196169}, {"country": 56, "id": 2231, "size": 3.3025850929940459}, {"country": 53, "id": 2232, "size": 8.9741886692860113}, {"country": 53, "id": 2233, "size": 7.5736801669606457}, {"country": 53, "id": 2234, "size": 6.1179938124167554}, {"country": 53, "id": 2235, "size": 6.0304379213924353}, {"country": 53, "id": 2236, "size": 5.1108738641733114}, {"country": 53, "id": 2237, "size": 6.6276211136906369}, {"country": 109, "id": 2238, "size": 7.5930445341424369}, {"country": 53, "id": 2239, "size": 4.9318256327243262}, {"country": 53, "id": 2240, "size": 7.5264948595707901}, {"country": 53, "id": 2241, "size": 9.3187422526923989}, {"country": 53, "id": 2242, "size": 6.6058020662959978}, {"country": 60, "id": 2243, "size": 4.3672958299864746}, {"country": 131, "id": 2244, "size": 4.7612001156935619}, {"country": 77, "id": 2245, "size": 5.1896547420264252}, {"country": 53, "id": 2246, "size": 8.9748769005588755}, {"country": 53, "id": 2247, "size": 7.0497334552319577}, {"country": 53, "id": 2248, "size": 7.776506992372183}, {"country": 60, "id": 2249, "size": 6.8636311755980968}, {"country": 53, "id": 2250, "size": 6.3327187932653688}, {"country": 53, "id": 2251, "size": 5.2341065045972597}, {"country": 16, "id": 2252, "size": 8.6912000975228629}, {"country": 11, "id": 2253, "size": 5.6913478822291435}, {"country": 53, "id": 2254, "size": 5.5325994931532563}, {"country": 53, "id": 2255, "size": 6.6276211136906369}, {"country": 77, "id": 2256, "size": 7.5903010481966859}, {"country": 96, "id": 2257, "size": 5.3820266346738812}, {"country": 53, "id": 2258, "size": 6.7170277014062219}, {"country": 53, "id": 2259, "size": 5.5217885770490405}, {"country": 91, "id": 2260, "size": 8.0587581525186636}, {"country": 53, "id": 2261, "size": 8.5600804650218265}, {"country": 21, "id": 2262, "size": 6.3612921657094255}, {"country": 132, "id": 2263, "size": 5.5538768916005408}, {"country": 53, "id": 2264, "size": 5.836281906951478}, {"country": 67, "id": 2265, "size": 5.0943445622221004}, {"country": 53, "id": 2266, "size": 6.6167710976665717}, {"country": 93, "id": 2267, "size": 6.2933048247244923}, {"country": 100, "id": 2268, "size": 5.7184988712950942}, {"country": 53, "id": 2269, "size": 3.0794415416798357}, {"country": 53, "id": 2270, "size": 11.219246747559799}, {"country": 53, "id": 2271, "size": 4.5263605246161616}, {"country": 53, "id": 2272, "size": 4.9702919135521224}, {"country": 21, "id": 2273, "size": 6.5012582105447274}, {"country": 53, "id": 2274, "size": 3.7080502011022101}, {"country": 53, "id": 2275, "size": 11.398762894953803}, {"country": 53, "id": 2276, "size": 4.4011973816621559}, {"country": 53, "id": 2277, "size": 5.3040650932041702}, {"country": 53, "id": 2278, "size": 8.3297496890415132}, {"country": 96, "id": 2279, "size": 7.543911845564792}, {"country": 57, "id": 2280, "size": 5.6728288344619058}, {"country": 53, "id": 2281, "size": 9.8872383542931406}, {"country": 53, "id": 2282, "size": 6.5174528964647074}, {"country": 53, "id": 2283, "size": 4.6375861597263857}, {"country": 53, "id": 2284, "size": 6.7557422135869123}, {"country": 53, "id": 2285, "size": 7.5279579176225502}, {"country": 53, "id": 2286, "size": 8.8640356590724494}, {"country": 11, "id": 2287, "size": 3.9957322735539909}, {"country": 53, "id": 2288, "size": 4.4965075614664798}, {"country": 53, "id": 2289, "size": 7.6133842183795597}, {"country": 53, "id": 2290, "size": 5.6151205168412597}, {"country": 0, "id": 2291, "size": 5.3694478524670215}, {"country": 53, "id": 2292, "size": 8.179307969504034}, {"country": 105, "id": 2293, "size": 5.4188406077965983}, {"country": 53, "id": 2294, "size": 7.0137151560428022}, {"country": 53, "id": 2295, "size": 6.3423342519648109}, {"country": 93, "id": 2296, "size": 6.2882670306945352}, {"country": 11, "id": 2297, "size": 4.2958368660043291}, {"country": 67, "id": 2298, "size": 5.6443908991413725}, {"country": 53, "id": 2299, "size": 3.7080502011022101}, {"country": 53, "id": 2300, "size": 6.7589017738772803}, {"country": 53, "id": 2301, "size": 6.9188938542731462}, {"country": 53, "id": 2302, "size": 7.7031881132408628}, {"country": 53, "id": 2303, "size": 6.0937502008067623}, {"country": 21, "id": 2304, "size": 5.7273878187123408}, {"country": 53, "id": 2305, "size": 6.7004435733906869}, {"country": 53, "id": 2306, "size": 5.6443908991413725}, {"country": 53, "id": 2307, "size": 1.6931471805599454}, {"country": 53, "id": 2308, "size": 7.6253923680079563}, {"country": 21, "id": 2309, "size": 5.7621739347977563}, {"country": 53, "id": 2310, "size": 5.1271343850450917}, {"country": 53, "id": 2311, "size": 7.4754327167040904}, {"country": 53, "id": 2312, "size": 5.0430512678345503}, {"country": 104, "id": 2313, "size": 6.2149357576089859}, {"country": 96, "id": 2314, "size": 6.2040066870767951}, {"country": 53, "id": 2315, "size": 6.9864520052844377}, {"country": 53, "id": 2316, "size": 6.2364419628299492}, {"country": 53, "id": 2317, "size": 6.43372200355424}, {"country": 53, "id": 2318, "size": 6.9080829381689313}, {"country": 53, "id": 2319, "size": 4.2958368660043291}, {"country": 53, "id": 2320, "size": 3.6390573296152584}, {"country": 89, "id": 2321, "size": 9.0407689943675784}, {"country": 21, "id": 2322, "size": 6.8916442118257715}, {"country": 105, "id": 2323, "size": 9.2738469327845081}, {"country": 53, "id": 2324, "size": 6.5529595849216173}, {"country": 53, "id": 2325, "size": 7.3952615981154493}, {"country": 53, "id": 2326, "size": 6.1590552992145291}, {"country": 96, "id": 2327, "size": 7.7007311095478101}, {"country": 53, "id": 2328, "size": 8.2115567333138024}, {"country": 67, "id": 2329, "size": 4.9889840465642745}, {"country": 53, "id": 2330, "size": 5.0943445622221004}, {"country": 53, "id": 2331, "size": 5.7706846244656651}, {"country": 94, "id": 2332, "size": 8.511524648390866}, {"country": 53, "id": 2333, "size": 6.6937321388026998}, {"country": 39, "id": 2334, "size": 6.4205349992722862}, {"country": 53, "id": 2335, "size": 4.5835189384561099}, {"country": 53, "id": 2336, "size": 5.2484952420493594}, {"country": 53, "id": 2337, "size": 5.0430512678345503}, {"country": 53, "id": 2338, "size": 5.2046926193909657}, {"country": 21, "id": 2339, "size": 8.8034350569521678}, {"country": 67, "id": 2340, "size": 6.8141305318250662}, {"country": 53, "id": 2341, "size": 5.4308167988433134}, {"country": 53, "id": 2342, "size": 4.218875824868201}, {"country": 96, "id": 2343, "size": 6.5645204073226937}, {"country": 57, "id": 2344, "size": 7.7719355558396019}, {"country": 132, "id": 2345, "size": 6.4595855141441589}, {"country": 53, "id": 2346, "size": 5.836281906951478}, {"country": 53, "id": 2347, "size": 9.4955608912891236}, {"country": 53, "id": 2348, "size": 6.4205349992722862}, {"country": 53, "id": 2349, "size": 7.3868793193626452}, {"country": 53, "id": 2350, "size": 7.9865664594064265}, {"country": 53, "id": 2351, "size": 7.694562058521095}, {"country": 53, "id": 2352, "size": 2.791759469228055}, {"country": 37, "id": 2353, "size": 6.7589017738772803}, {"country": 53, "id": 2354, "size": 7.1527326947041043}, {"country": 53, "id": 2355, "size": 5.3944491546724391}, {"country": 21, "id": 2356, "size": 3.4849066497880004}, {"country": 53, "id": 2357, "size": 9.1408984606078523}, {"country": 53, "id": 2358, "size": 6.857933154483459}, {"country": 53, "id": 2359, "size": 5.0604430105464191}, {"country": 53, "id": 2360, "size": 6.7462031905401529}, {"country": 53, "id": 2361, "size": 6.5683445037610966}, {"country": 53, "id": 2362, "size": 5.3567088266895917}, {"country": 53, "id": 2363, "size": 5.1431347263915326}, {"country": 53, "id": 2364, "size": 6.4161004022044201}, {"country": 53, "id": 2365, "size": 6.1416635565026603}, {"country": 129, "id": 2366, "size": 6.872117789475416}, {"country": 53, "id": 2367, "size": 4.7841896339182615}, {"country": 21, "id": 2368, "size": 4.8918202981106269}, {"country": 53, "id": 2369, "size": 6.1119877883565437}, {"country": 53, "id": 2370, "size": 6.8971538676367405}, {"country": 53, "id": 2371, "size": 8.45529848568329}, {"country": 37, "id": 2372, "size": 5.2766661190160553}, {"country": 53, "id": 2373, "size": 6.1179938124167554}, {"country": 53, "id": 2374, "size": 6.4026773818722793}, {"country": 60, "id": 2375, "size": 5.0604430105464191}, {"country": 53, "id": 2376, "size": 7.1964441277945204}, {"country": 118, "id": 2377, "size": 3.3978952727983707}, {"country": 53, "id": 2378, "size": 4.9702919135521224}, {"country": 53, "id": 2379, "size": 7.2576675878826391}, {"country": 21, "id": 2380, "size": 9.2241635126378618}, {"country": 37, "id": 2381, "size": 5.9698132995760007}, {"country": 53, "id": 2382, "size": 8.4966524381682831}, {"country": 53, "id": 2383, "size": 7.7945865808764987}, {"country": 21, "id": 2384, "size": 6.9427993751267012}, {"country": 53, "id": 2385, "size": 5.8598124043616719}, {"country": 53, "id": 2386, "size": 6.2149357576089859}, {"country": 53, "id": 2387, "size": 3.0794415416798357}, {"country": 0, "id": 2388, "size": 7.2728770065461674}, {"country": 93, "id": 2389, "size": 3.3978952727983707}, {"country": 127, "id": 2390, "size": 4.0910424533583161}, {"country": 53, "id": 2391, "size": 8.8713112033234065}, {"country": 53, "id": 2392, "size": 7.80128303447162}, {"country": 53, "id": 2393, "size": 3.5649493574615367}, {"country": 53, "id": 2394, "size": 5.3944491546724391}, {"country": 129, "id": 2395, "size": 3.9444389791664403}, {"country": 53, "id": 2396, "size": 5.2766661190160553}, {"country": 2, "id": 2397, "size": 6.6835797673386814}, {"country": 77, "id": 2398, "size": 3.6390573296152584}, {"country": 53, "id": 2399, "size": 5.0775374439057197}, {"country": 129, "id": 2400, "size": 4.4965075614664798}, {"country": 21, "id": 2401, "size": 10.726392314713754}, {"country": 129, "id": 2402, "size": 4.5835189384561099}, {"country": 0, "id": 2403, "size": 5.6151205168412597}, {"country": 109, "id": 2404, "size": 5.7361984483944957}, {"country": 53, "id": 2405, "size": 8.5438028675015083}, {"country": 60, "id": 2406, "size": 6.5174528964647074}, {"country": 53, "id": 2407, "size": 4.218875824868201}, {"country": 95, "id": 2408, "size": 2.791759469228055}, {"country": 53, "id": 2409, "size": 4.5553480614894131}, {"country": 77, "id": 2410, "size": 5.3040650932041702}, {"country": 53, "id": 2411, "size": 7.1377270540862341}, {"country": 64, "id": 2412, "size": 6.1474944768134527}, {"country": 53, "id": 2413, "size": 6.7137328055093688}, {"country": 53, "id": 2414, "size": 7.9226438914758877}, {"country": 53, "id": 2415, "size": 4.465735902799727}, {"country": 53, "id": 2416, "size": 3.6390573296152584}, {"country": 53, "id": 2417, "size": 7.892641641172089}, {"country": 53, "id": 2418, "size": 6.7235851019523807}, {"country": 53, "id": 2419, "size": 6.1119877883565437}, {"country": 53, "id": 2420, "size": 4.4965075614664798}, {"country": 53, "id": 2421, "size": 4.5553480614894131}, {"country": 53, "id": 2422, "size": 3.6390573296152584}, {"country": 118, "id": 2423, "size": 3.1972245773362196}, {"country": 53, "id": 2424, "size": 6.4930614433405482}, {"country": 37, "id": 2425, "size": 7.3664704477314382}, {"country": 21, "id": 2426, "size": 7.9669671386139829}, {"country": 53, "id": 2427, "size": 6.8607862234658654}, {"country": 53, "id": 2428, "size": 5.3820266346738812}, {"country": 53, "id": 2429, "size": 4.9702919135521224}, {"country": 110, "id": 2430, "size": 5.499809670330265}, {"country": 129, "id": 2431, "size": 4.8712010109078907}, {"country": 53, "id": 2432, "size": 4.0910424533583161}, {"country": 53, "id": 2433, "size": 9.1146238864200981}, {"country": 53, "id": 2434, "size": 10.893790689557264}, {"country": 60, "id": 2435, "size": 5.2341065045972597}, {"country": 53, "id": 2436, "size": 6.3082676974012051}, {"country": 53, "id": 2437, "size": 6.8406416573733981}, {"country": 53, "id": 2438, "size": 5.290459441148391}, {"country": 53, "id": 2439, "size": 4.5835189384561099}, {"country": 53, "id": 2440, "size": 7.8200163646741299}, {"country": 53, "id": 2441, "size": 8.0201907083119259}, {"country": 37, "id": 2442, "size": 5.3944491546724391}, {"country": 109, "id": 2443, "size": 6.7071102647488754}, {"country": 129, "id": 2444, "size": 2.3862943611198908}, {"country": 53, "id": 2445, "size": 7.7238324408212087}, {"country": 53, "id": 2446, "size": 9.5328696708012455}, {"country": 53, "id": 2447, "size": 7.5366915975913047}, {"country": 53, "id": 2448, "size": 8.9519113818541882}, {"country": 53, "id": 2449, "size": 6.2417470150596426}, {"country": 94, "id": 2450, "size": 5.8121843553724171}, {"country": 77, "id": 2451, "size": 7.7957057751735137}, {"country": 117, "id": 2452, "size": 5.0604430105464191}, {"country": 129, "id": 2453, "size": 5.0073331852324712}, {"country": 58, "id": 2454, "size": 9.9370870361765231}, {"country": 53, "id": 2455, "size": 5.0604430105464191}, {"country": 53, "id": 2456, "size": 6.5451774444795623}, {"country": 53, "id": 2457, "size": 6.2149357576089859}, {"country": 53, "id": 2458, "size": 3.0794415416798357}, {"country": 100, "id": 2459, "size": 4.6109179126442239}, {"country": 53, "id": 2460, "size": 6.6347896031692493}, {"country": 21, "id": 2461, "size": 8.3944931072190379}, {"country": 77, "id": 2462, "size": 6.0498560072495371}, {"country": 53, "id": 2463, "size": 3.6390573296152584}, {"country": 53, "id": 2464, "size": 3.0794415416798357}, {"country": 77, "id": 2465, "size": 7.3261494731550991}, {"country": 21, "id": 2466, "size": 6.8230458954830189}, {"country": 53, "id": 2467, "size": 5.499809670330265}, {"country": 53, "id": 2468, "size": 7.0913098820776979}, {"country": 53, "id": 2469, "size": 9.4790758693031094}, {"country": 104, "id": 2470, "size": 5.6821312271242199}, {"country": 53, "id": 2471, "size": 7.0378709199221374}, {"country": 53, "id": 2472, "size": 6.7462031905401529}, {"country": 53, "id": 2473, "size": 7.253828811575473}, {"country": 110, "id": 2474, "size": 6.0106352940962555}, {"country": 53, "id": 2475, "size": 5.5217885770490405}, {"country": 53, "id": 2476, "size": 8.8005726546706491}, {"country": 53, "id": 2477, "size": 7.1590953884919326}, {"country": 53, "id": 2478, "size": 6.3132059790417872}, {"country": 55, "id": 2479, "size": 7.5666724298032406}, {"country": 132, "id": 2480, "size": 7.1862086239004936}, {"country": 126, "id": 2481, "size": 7.7968237182748554}, {"country": 77, "id": 2482, "size": 5.5849674786705723}, {"country": 53, "id": 2483, "size": 7.2225762680713688}, {"country": 77, "id": 2484, "size": 5.0604430105464191}, {"country": 53, "id": 2485, "size": 5.5849674786705723}, {"country": 53, "id": 2486, "size": 7.8200163646741299}, {"country": 53, "id": 2487, "size": 7.5250296578434623}, {"country": 53, "id": 2488, "size": 7.2519038831658884}, {"country": 53, "id": 2489, "size": 8.1483457439000677}, {"country": 53, "id": 2490, "size": 7.0185932144962342}, {"country": 118, "id": 2491, "size": 6.0238805208462765}, {"country": 131, "id": 2492, "size": 6.7651911027848444}, {"country": 53, "id": 2493, "size": 6.4071717714601188}, {"country": 53, "id": 2494, "size": 3.8903717578961645}, {"country": 53, "id": 2495, "size": 7.2519038831658884}, {"country": 77, "id": 2496, "size": 7.4377516497364011}, {"country": 53, "id": 2497, "size": 5.4886363697321396}, {"country": 37, "id": 2498, "size": 5.2484952420493594}, {"country": 53, "id": 2499, "size": 5.1896547420264252}, {"country": 132, "id": 2500, "size": 5.5849674786705723}, {"country": 90, "id": 2501, "size": 7.5191472879403953}, {"country": 129, "id": 2502, "size": 8.6172678136283469}, {"country": 53, "id": 2503, "size": 4.8066624897703196}, {"country": 53, "id": 2504, "size": 6.2781146592305168}, {"country": 94, "id": 2505, "size": 7.2245584292753602}, {"country": 129, "id": 2506, "size": 4.1780538303479453}, {"country": 21, "id": 2507, "size": 9.8212898051361126}, {"country": 53, "id": 2508, "size": 7.4052284580308418}, {"country": 129, "id": 2509, "size": 3.3025850929940459}, {"country": 53, "id": 2510, "size": 6.8377304471659395}, {"country": 96, "id": 2511, "size": 6.2094861528414214}, {"country": 53, "id": 2512, "size": 6.6131281063880705}, {"country": 53, "id": 2513, "size": 6.1298987149230735}, {"country": 132, "id": 2514, "size": 8.1869010204116321}, {"country": 53, "id": 2515, "size": 6.8021183753770629}, {"country": 53, "id": 2516, "size": 6.4847969334906548}, {"country": 77, "id": 2517, "size": 7.7298240704894754}, {"country": 127, "id": 2518, "size": 5.5643481914678361}, {"country": 134, "id": 2519, "size": 4.8066624897703196}, {"country": 53, "id": 2520, "size": 9.1721644521119039}, {"country": 53, "id": 2521, "size": 7.8416154764775916}, {"country": 53, "id": 2522, "size": 7.2225762680713688}, {"country": 53, "id": 2523, "size": 7.2402758451707694}, {"country": 53, "id": 2524, "size": 7.045005314036012}, {"country": 53, "id": 2525, "size": 6.3518581334760666}, {"country": 77, "id": 2526, "size": 8.155396301896733}, {"country": 21, "id": 2527, "size": 6.3230099791384085}, {"country": 53, "id": 2528, "size": 8.3932630947638387}, {"country": 53, "id": 2529, "size": 3.7725887222397811}, {"country": 53, "id": 2530, "size": 6.9242557974145322}, {"country": 53, "id": 2531, "size": 10.139488631004232}, {"country": 53, "id": 2532, "size": 4.1354942159291497}, {"country": 127, "id": 2533, "size": 6.8111409929767008}, {"country": 53, "id": 2534, "size": 6.5451774444795623}, {"country": 53, "id": 2535, "size": 6.9864520052844377}, {"country": 53, "id": 2536, "size": 7.517671272912275}, {"country": 21, "id": 2537, "size": 5.6151205168412597}, {"country": 53, "id": 2538, "size": 6.1357984370502621}, {"country": 21, "id": 2539, "size": 5.2341065045972597}, {"country": 53, "id": 2540, "size": 8.3689704021947939}, {"country": 53, "id": 2541, "size": 7.0753460310886842}, {"country": 127, "id": 2542, "size": 7.2915691395583204}, {"country": 53, "id": 2543, "size": 4.5553480614894131}, {"country": 53, "id": 2544, "size": 5.5325994931532563}, {"country": 53, "id": 2545, "size": 7.2344107257183712}, {"country": 53, "id": 2546, "size": 4.713572066704308}, {"country": 53, "id": 2547, "size": 8.5310163320779147}, {"country": 53, "id": 2548, "size": 5.4773368144782069}, {"country": 53, "id": 2549, "size": 6.0998664278241987}, {"country": 43, "id": 2550, "size": 3.4849066497880004}, {"country": 93, "id": 2551, "size": 5.6443908991413725}, {"country": 53, "id": 2552, "size": 7.1548580940164177}, {"country": 53, "id": 2553, "size": 6.7430031878094825}, {"country": 93, "id": 2554, "size": 3.3978952727983707}, {"country": 96, "id": 2555, "size": 6.6903594543240601}, {"country": 53, "id": 2556, "size": 6.6383546693337454}, {"country": 53, "id": 2557, "size": 10.362546304865514}, {"country": 53, "id": 2558, "size": 5.7535901911063645}, {"country": 53, "id": 2559, "size": 5.9767337424205742}, {"country": 0, "id": 2560, "size": 6.9864520052844377}, {"country": 53, "id": 2561, "size": 8.122866658599083}, {"country": 53, "id": 2562, "size": 6.1239639794032588}, {"country": 132, "id": 2563, "size": 6.7868973813667077}, {"country": 21, "id": 2564, "size": 3.1972245773362196}, {"country": 53, "id": 2565, "size": 7.4068799860693142}, {"country": 53, "id": 2566, "size": 7.739336627357174}, {"country": 129, "id": 2567, "size": 4.8918202981106269}, {"country": 93, "id": 2568, "size": 6.2983173665480363}, {"country": 37, "id": 2569, "size": 4.218875824868201}, {"country": 53, "id": 2570, "size": 5.8903491282217537}, {"country": 53, "id": 2571, "size": 5.9199809258281251}, {"country": 57, "id": 2572, "size": 6.3471075307174685}, {"country": 53, "id": 2573, "size": 6.6058020662959978}, {"country": 53, "id": 2574, "size": 6.0434251169192468}, {"country": 53, "id": 2575, "size": 10.979012377622373}, {"country": 53, "id": 2576, "size": 4.6635616461296463}, {"country": 129, "id": 2577, "size": 6.3752784076841653}, {"country": 53, "id": 2578, "size": 6.6419070709381138}, {"country": 53, "id": 2579, "size": 8.0774980535692311}, {"country": 53, "id": 2580, "size": 7.444131256700441}, {"country": 53, "id": 2581, "size": 5.3438054218536841}, {"country": 53, "id": 2582, "size": 8.5943812425518171}, {"country": 53, "id": 2583, "size": 6.3981627015177525}, {"country": 53, "id": 2584, "size": 6.8493247799468593}, {"country": 53, "id": 2585, "size": 6.5909869805108565}, {"country": 53, "id": 2586, "size": 5.0943445622221004}, {"country": 53, "id": 2587, "size": 6.5254529391317835}, {"country": 53, "id": 2588, "size": 6.0625950330269669}, {"country": 57, "id": 2589, "size": 5.9344739331306915}, {"country": 53, "id": 2590, "size": 6.5568280616995374}, {"country": 30, "id": 2591, "size": 6.5134287461649825}, {"country": 77, "id": 2592, "size": 7.5834092221587648}, {"country": 53, "id": 2593, "size": 5.4886363697321396}, {"country": 53, "id": 2594, "size": 8.3382381500655889}, {"country": 53, "id": 2595, "size": 6.3375380797013179}, {"country": 53, "id": 2596, "size": 7.7080840838530698}, {"country": 53, "id": 2597, "size": 7.1463292576688975}, {"country": 53, "id": 2598, "size": 7.517671272912275}, {"country": 53, "id": 2599, "size": 5.6539603501575231}, {"country": 131, "id": 2600, "size": 5.1588830833596715}, {"country": 53, "id": 2601, "size": 4.9889840465642745}, {"country": 53, "id": 2602, "size": 6.6698809229805196}, {"country": 53, "id": 2603, "size": 7.3750248198280968}, {"country": 53, "id": 2604, "size": 8.7164608001763551}, {"country": 21, "id": 2605, "size": 8.0475172213572961}, {"country": 21, "id": 2606, "size": 7.7878449823095792}, {"country": 53, "id": 2607, "size": 8.3601039729891511}, {"country": 53, "id": 2608, "size": 6.2983173665480363}, {"country": 129, "id": 2609, "size": 5.1588830833596715}, {"country": 53, "id": 2610, "size": 8.7823903355874595}, {"country": 53, "id": 2611, "size": 7.4861607889440887}, {"country": 53, "id": 2612, "size": 6.7397929121792339}, {"country": 53, "id": 2613, "size": 5.7449321283632502}, {"country": 53, "id": 2614, "size": 9.007034012193408}, {"country": 129, "id": 2615, "size": 5.5849674786705723}, {"country": 53, "id": 2616, "size": 5.8520302639196169}, {"country": 53, "id": 2617, "size": 6.2470240721604862}, {"country": 53, "id": 2618, "size": 7.2265366692874657}, {"country": 53, "id": 2619, "size": 6.2983173665480363}, {"country": 53, "id": 2620, "size": 8.8339963417094598}, {"country": 53, "id": 2621, "size": 7.0520891689244172}, {"country": 109, "id": 2622, "size": 6.9687075599853658}, {"country": 53, "id": 2623, "size": 9.6960086088809039}, {"country": 29, "id": 2624, "size": 8.1106961229788261}, {"country": 21, "id": 2625, "size": 7.3062752869480159}, {"country": 53, "id": 2626, "size": 7.7286286130847017}, {"country": 53, "id": 2627, "size": 9.3631091760335217}, {"country": 53, "id": 2628, "size": 11.547785817200792}, {"country": 53, "id": 2629, "size": 6.5568280616995374}, {"country": 53, "id": 2630, "size": 7.1984787164923079}, {"country": 53, "id": 2631, "size": 6.6903594543240601}, {"country": 53, "id": 2632, "size": 5.2046926193909657}, {"country": 77, "id": 2633, "size": 5.9487598903781684}, {"country": 53, "id": 2634, "size": 7.1268691841141854}, {"country": 53, "id": 2635, "size": 7.3647507568519108}, {"country": 53, "id": 2636, "size": 7.2897155709089976}, {"country": 21, "id": 2637, "size": 7.8308742346461795}, {"country": 53, "id": 2638, "size": 7.3491389913797978}, {"country": 53, "id": 2639, "size": 5.8978397999509111}, {"country": 53, "id": 2640, "size": 6.2933048247244923}, {"country": 53, "id": 2641, "size": 6.2574953720277815}, {"country": 53, "id": 2642, "size": 5.8675344504555822}, {"country": 53, "id": 2643, "size": 8.6797136399663728}, {"country": 53, "id": 2644, "size": 10.875242387095826}, {"country": 53, "id": 2645, "size": 5.4308167988433134}, {"country": 53, "id": 2646, "size": 5.5747109785033828}, {"country": 53, "id": 2647, "size": 4.8918202981106269}, {"country": 53, "id": 2648, "size": 8.4342573821331364}, {"country": 53, "id": 2649, "size": 5.5849674786705723}, {"country": 77, "id": 2650, "size": 4.1354942159291497}, {"country": 53, "id": 2651, "size": 8.1467721794526362}, {"country": 53, "id": 2652, "size": 5.4773368144782069}, {"country": 53, "id": 2653, "size": 6.7235851019523807}, {"country": 53, "id": 2654, "size": 6.0998664278241987}, {"country": 53, "id": 2655, "size": 7.0161571596983539}, {"country": 53, "id": 2656, "size": 7.654152520183219}, {"country": 53, "id": 2657, "size": 5.3694478524670215}, {"country": 53, "id": 2658, "size": 5.9416424226093039}, {"country": 53, "id": 2659, "size": 5.7361984483944957}, {"country": 53, "id": 2660, "size": 9.4329416389686465}, {"country": 53, "id": 2661, "size": 7.2971093199339352}, {"country": 1, "id": 2662, "size": 6.7776523232226564}, {"country": 58, "id": 2663, "size": 7.7707894239089796}, {"country": 93, "id": 2664, "size": 7.815639990074331}, {"country": 77, "id": 2665, "size": 7.7105231094524278}, {"country": 118, "id": 2666, "size": 4.8918202981106269}, {"country": 53, "id": 2667, "size": 8.3401868353201145}, {"country": 43, "id": 2668, "size": 6.955837369464831}, {"country": 53, "id": 2669, "size": 5.8441870864585912}, {"country": 53, "id": 2670, "size": 5.9052747784384296}, {"country": 53, "id": 2671, "size": 5.5432947822700038}, {"country": 53, "id": 2672, "size": 5.3438054218536841}, {"country": 53, "id": 2673, "size": 6.1761497325738288}, {"country": 53, "id": 2674, "size": 6.7004435733906869}, {"country": 105, "id": 2675, "size": 6.0434251169192468}, {"country": 53, "id": 2676, "size": 6.0434251169192468}, {"country": 53, "id": 2677, "size": 11.569879995787254}, {"country": 53, "id": 2678, "size": 6.3033049080590757}, {"country": 53, "id": 2679, "size": 7.1675164908883415}, {"country": 53, "id": 2680, "size": 4.9120230054281464}, {"country": 53, "id": 2681, "size": 3.8332133440562162}, {"country": 77, "id": 2682, "size": 6.1929568508902104}, {"country": 21, "id": 2683, "size": 1.0}, {"country": 53, "id": 2684, "size": 3.9957322735539909}, {"country": 21, "id": 2685, "size": 6.5529595849216173}, {"country": 53, "id": 2686, "size": 10.852352140421358}, {"country": 53, "id": 2687, "size": 8.009408932708638}, {"country": 53, "id": 2688, "size": 6.4424177105217932}, {"country": 53, "id": 2689, "size": 5.9126548857360524}, {"country": 53, "id": 2690, "size": 6.0937502008067623}, {"country": 53, "id": 2691, "size": 8.9734999640246293}, {"country": 93, "id": 2692, "size": 7.5510803350434044}, {"country": 53, "id": 2693, "size": 5.9767337424205742}, {"country": 53, "id": 2694, "size": 6.5053315359323625}, {"country": 53, "id": 2695, "size": 6.4889377261566867}, {"country": 53, "id": 2696, "size": 9.4433313428177819}, {"country": 53, "id": 2697, "size": 7.9488972223133123}, {"country": 77, "id": 2698, "size": 7.2557500417533669}, {"country": 53, "id": 2699, "size": 7.5424719605068047}, {"country": 77, "id": 2700, "size": 6.780743515792329}, {"country": 53, "id": 2701, "size": 6.2832037287379885}, {"country": 53, "id": 2702, "size": 5.6634390941120669}, {"country": 118, "id": 2703, "size": 8.2882444010201244}, {"country": 82, "id": 2704, "size": 6.916202062607435}, {"country": 77, "id": 2705, "size": 8.6921133395954655}, {"country": 53, "id": 2706, "size": 5.8283137373023015}, {"country": 53, "id": 2707, "size": 5.7621739347977563}, {"country": 105, "id": 2708, "size": 5.499809670330265}, {"country": 53, "id": 2709, "size": 7.4473058625412127}, {"country": 53, "id": 2710, "size": 10.053920452704881}, {"country": 53, "id": 2711, "size": 7.8710912946105456}, {"country": 53, "id": 2712, "size": 5.2046926193909657}, {"country": 53, "id": 2713, "size": 6.1647859739235145}, {"country": 53, "id": 2714, "size": 7.7274317248508551}, {"country": 127, "id": 2715, "size": 8.187657164114956}, {"country": 53, "id": 2716, "size": 4.6635616461296463}, {"country": 53, "id": 2717, "size": 5.9836066217083363}, {"country": 53, "id": 2718, "size": 9.2558284272818305}, {"country": 53, "id": 2719, "size": 6.6489742381612063}, {"country": 53, "id": 2720, "size": 7.6147256002037604}, {"country": 127, "id": 2721, "size": 6.1704839950381514}, {"country": 53, "id": 2722, "size": 7.6808546787902152}, {"country": 53, "id": 2723, "size": 7.4199949281471422}, {"country": 53, "id": 2724, "size": 6.7990926544605257}, {"country": 0, "id": 2725, "size": 4.6375861597263857}, {"country": 53, "id": 2726, "size": 5.4067192472642533}, {"country": 53, "id": 2727, "size": 5.6443908991413725}, {"country": 53, "id": 2728, "size": 8.3427791893318464}, {"country": 53, "id": 2729, "size": 7.3664704477314382}, {"country": 53, "id": 2730, "size": 6.7037824746562009}, {"country": 53, "id": 2731, "size": 6.4467373716663099}, {"country": 53, "id": 2732, "size": 8.8442407181418119}, {"country": 53, "id": 2733, "size": 6.5683445037610966}, {"country": 53, "id": 2734, "size": 7.6982680541154132}, {"country": 77, "id": 2735, "size": 7.9007306640451729}, {"country": 53, "id": 2736, "size": 6.8749307308520304}, {"country": 77, "id": 2737, "size": 8.6948480723846089}, {"country": 53, "id": 2738, "size": 3.6390573296152584}, {"country": 53, "id": 2739, "size": 9.4031282351282641}, {"country": 53, "id": 2740, "size": 5.6051701859880918}, {"country": 53, "id": 2741, "size": 9.8706630044060208}, {"country": 53, "id": 2742, "size": 8.0414116637948112}, {"country": 53, "id": 2743, "size": 7.0234475929610332}, {"country": 53, "id": 2744, "size": 9.5642675988021661}, {"country": 77, "id": 2745, "size": 6.8171111599632042}, {"country": 53, "id": 2746, "size": 7.1202974189509503}, {"country": 53, "id": 2747, "size": 5.7874917427820458}, {"country": 53, "id": 2748, "size": 4.6375861597263857}, {"country": 53, "id": 2749, "size": 7.1355648910817386}, {"country": 53, "id": 2750, "size": 5.4659081186545837}, {"country": 53, "id": 2751, "size": 7.253828811575473}, {"country": 22, "id": 2752, "size": 5.9199809258281251}, {"country": 53, "id": 2753, "size": 9.0796180293898399}, {"country": 53, "id": 2754, "size": 9.1585162448068314}, {"country": 53, "id": 2755, "size": 8.4529823294654598}, {"country": 53, "id": 2756, "size": 7.3716118472318568}, {"country": 53, "id": 2757, "size": 9.2620428439669418}, {"country": 53, "id": 2758, "size": 6.8289456176102075}, {"country": 53, "id": 2759, "size": 5.7095302013123339}, {"country": 21, "id": 2760, "size": 5.5849674786705723}, {"country": 77, "id": 2761, "size": 6.5174528964647074}, {"country": 53, "id": 2762, "size": 6.934894195619588}, {"country": 77, "id": 2763, "size": 7.6450909695056444}, {"country": 53, "id": 2764, "size": 4.1780538303479453}, {"country": 126, "id": 2765, "size": 5.8520302639196169}, {"country": 53, "id": 2766, "size": 7.3261494731550991}, {"country": 53, "id": 2767, "size": 6.521460917862246}, {"country": 53, "id": 2768, "size": 7.522092798170152}, {"country": 53, "id": 2769, "size": 4.3322045101752042}, {"country": 53, "id": 2770, "size": 6.1474944768134527}, {"country": 21, "id": 2771, "size": 6.2094861528414214}, {"country": 53, "id": 2772, "size": 6.6903594543240601}, {"country": 77, "id": 2773, "size": 13.405857494200433}, {"country": 53, "id": 2774, "size": 6.1873858058407549}, {"country": 53, "id": 2775, "size": 7.8090393060429797}, {"country": 53, "id": 2776, "size": 8.2527624180531873}, {"country": 53, "id": 2777, "size": 6.6524891802686508}, {"country": 53, "id": 2778, "size": 6.7493929859082531}, {"country": 53, "id": 2779, "size": 6.3612921657094255}, {"country": 53, "id": 2780, "size": 11.610907392382792}, {"country": 53, "id": 2781, "size": 6.9269260259704106}, {"country": 53, "id": 2782, "size": 7.0234475929610332}, {"country": 53, "id": 2783, "size": 6.2781146592305168}, {"country": 37, "id": 2784, "size": 4.3672958299864746}, {"country": 53, "id": 2785, "size": 3.6390573296152584}, {"country": 53, "id": 2786, "size": 8.1747243098363764}, {"country": 53, "id": 2787, "size": 10.618069581737414}, {"country": 53, "id": 2788, "size": 5.2046926193909657}, {"country": 77, "id": 2789, "size": 6.2470240721604862}, {"country": 53, "id": 2790, "size": 6.2203558250783244}, {"country": 53, "id": 2791, "size": 8.8058820402286209}, {"country": 53, "id": 2792, "size": 10.822440173682805}, {"country": 77, "id": 2793, "size": 7.1355648910817386}, {"country": 38, "id": 2794, "size": 7.0234475929610332}, {"country": 21, "id": 2795, "size": 8.0396603498620749}, {"country": 37, "id": 2796, "size": 6.0434251169192468}, {"country": 77, "id": 2797, "size": 8.4030610910900911}, {"country": 53, "id": 2798, "size": 5.3567088266895917}, {"country": 53, "id": 2799, "size": 8.2984451015081468}, {"country": 37, "id": 2800, "size": 6.5174528964647074}, {"country": 61, "id": 2801, "size": 4.4011973816621559}, {"country": 53, "id": 2802, "size": 7.1398845522262553}, {"country": 53, "id": 2803, "size": 4.0910424533583161}, {"country": 53, "id": 2804, "size": 7.0473721790462776}, {"country": 21, "id": 2805, "size": 11.431701125903345}, {"country": 53, "id": 2806, "size": 5.1108738641733114}, {"country": 53, "id": 2807, "size": 8.0527210492323231}, {"country": 53, "id": 2808, "size": 5.5217885770490405}, {"country": 53, "id": 2809, "size": 6.872117789475416}, {"country": 53, "id": 2810, "size": 7.9087547793152204}, {"country": 53, "id": 2811, "size": 6.0106352940962555}, {"country": 53, "id": 2812, "size": 8.6241305856612893}, {"country": 53, "id": 2813, "size": 9.6728284829476863}, {"country": 53, "id": 2814, "size": 7.0661080901037474}, {"country": 53, "id": 2815, "size": 5.5325994931532563}, {"country": 53, "id": 2816, "size": 5.0073331852324712}, {"country": 53, "id": 2817, "size": 6.43372200355424}, {"country": 127, "id": 2818, "size": 5.8441870864585912}, {"country": 53, "id": 2819, "size": 7.694562058521095}, {"country": 53, "id": 2820, "size": 10.039789270781144}, {"country": 53, "id": 2821, "size": 7.6515718735897273}, {"country": 53, "id": 2822, "size": 9.3877676439757796}, {"country": 53, "id": 2823, "size": 5.0604430105464191}, {"country": 77, "id": 2824, "size": 6.181783550292085}, {"country": 53, "id": 2825, "size": 4.7841896339182615}, {"country": 53, "id": 2826, "size": 7.1025585946135692}, {"country": 53, "id": 2827, "size": 9.1417722046564496}, {"country": 21, "id": 2828, "size": 5.5325994931532563}, {"country": 53, "id": 2829, "size": 7.2085900260966289}, {"country": 37, "id": 2830, "size": 6.8916442118257715}, {"country": 53, "id": 2831, "size": 5.1431347263915326}, {"country": 77, "id": 2832, "size": 7.5985090286145152}, {"country": 53, "id": 2833, "size": 5.990432586778736}, {"country": 53, "id": 2834, "size": 7.5264948595707901}, {"country": 53, "id": 2835, "size": 7.6592939196836376}, {"country": 21, "id": 2836, "size": 6.4424177105217932}, {"country": 127, "id": 2837, "size": 9.3586662831880005}, {"country": 53, "id": 2838, "size": 7.9007306640451729}, {"country": 53, "id": 2839, "size": 6.0434251169192468}, {"country": 21, "id": 2840, "size": 7.5581978028122689}, {"country": 53, "id": 2841, "size": 6.5909869805108565}, {"country": 53, "id": 2842, "size": 8.2555912742536641}, {"country": 53, "id": 2843, "size": 7.5161930760429643}, {"country": 53, "id": 2844, "size": 10.265775078864284}, {"country": 53, "id": 2845, "size": 8.6473088323562379}, {"country": 21, "id": 2846, "size": 7.8648477779708603}, {"country": 53, "id": 2847, "size": 6.7493929859082531}, {"country": 77, "id": 2848, "size": 4.9702919135521224}, {"country": 53, "id": 2849, "size": 7.3421214187211516}, {"country": 53, "id": 2850, "size": 9.5699753768552061}, {"country": 53, "id": 2851, "size": 8.6415644412609716}, {"country": 53, "id": 2852, "size": 7.1527326947041043}, {"country": 53, "id": 2853, "size": 6.1761497325738288}, {"country": 53, "id": 2854, "size": 7.5539334040258108}, {"country": 53, "id": 2855, "size": 6.9839362806871907}, {"country": 77, "id": 2856, "size": 5.4067192472642533}, {"country": 53, "id": 2857, "size": 5.9052747784384296}, {"country": 53, "id": 2858, "size": 7.1779441140506002}, {"country": 53, "id": 2859, "size": 3.3025850929940459}, {"country": 77, "id": 2860, "size": 5.9836066217083363}, {"country": 53, "id": 2861, "size": 7.9782137426306985}, {"country": 129, "id": 2862, "size": 4.5553480614894131}, {"country": 21, "id": 2863, "size": 7.1527326947041043}, {"country": 53, "id": 2864, "size": 9.0721553081882504}, {"country": 53, "id": 2865, "size": 8.9603236291488386}, {"country": 53, "id": 2866, "size": 5.4308167988433134}, {"country": 53, "id": 2867, "size": 8.2626286009742422}, {"country": 129, "id": 2868, "size": 3.3978952727983707}, {"country": 53, "id": 2869, "size": 6.1474944768134527}, {"country": 53, "id": 2870, "size": 8.3588308983423545}, {"country": 77, "id": 2871, "size": 7.2461067654815627}, {"country": 53, "id": 2872, "size": 10.933580192843298}, {"country": 53, "id": 2873, "size": 7.2653012127377101}, {"country": 53, "id": 2874, "size": 10.244065241377804}, {"country": 53, "id": 2875, "size": 6.0875963352323836}, {"country": 53, "id": 2876, "size": 8.1123274447109104}, {"country": 53, "id": 2877, "size": 6.3659760150218512}, {"country": 53, "id": 2878, "size": 7.6106960447177592}, {"country": 53, "id": 2879, "size": 9.3631091760335217}, {"country": 53, "id": 2880, "size": 5.0775374439057197}, {"country": 94, "id": 2881, "size": 6.476463551931511}, {"country": 53, "id": 2882, "size": 9.9128772876692963}, {"country": 53, "id": 2883, "size": 6.521460917862246}, {"country": 53, "id": 2884, "size": 7.0591231955817966}, {"country": 53, "id": 2885, "size": 4.5553480614894131}, {"country": 53, "id": 2886, "size": 10.341544057591527}, {"country": 109, "id": 2887, "size": 6.6903594543240601}, {"country": 129, "id": 2888, "size": 5.8598124043616719}, {"country": 53, "id": 2889, "size": 6.2094861528414214}, {"country": 53, "id": 2890, "size": 8.1252830915107115}, {"country": 53, "id": 2891, "size": 8.7625960485400682}, {"country": 53, "id": 2892, "size": 6.9427993751267012}, {"country": 53, "id": 2893, "size": 8.9469713576935916}, {"country": 53, "id": 2894, "size": 6.6937321388026998}, {"country": 95, "id": 2895, "size": 5.2766661190160553}, {"country": 53, "id": 2896, "size": 6.6454468976432377}, {"country": 53, "id": 2897, "size": 6.8171111599632042}, {"country": 53, "id": 2898, "size": 7.5944134597497781}, {"country": 53, "id": 2899, "size": 5.9558270576012609}, {"country": 53, "id": 2900, "size": 6.7071102647488754}, {"country": 38, "id": 2901, "size": 7.7889717429921701}, {"country": 77, "id": 2902, "size": 5.8598124043616719}, {"country": 53, "id": 2903, "size": 5.9416424226093039}, {"country": 53, "id": 2904, "size": 6.916202062607435}, {"country": 53, "id": 2905, "size": 5.7449321283632502}, {"country": 53, "id": 2906, "size": 7.0591231955817966}, {"country": 53, "id": 2907, "size": 8.9363026932019594}, {"country": 53, "id": 2908, "size": 5.6913478822291435}, {"country": 53, "id": 2909, "size": 6.8171111599632042}, {"country": 53, "id": 2910, "size": 7.62273632394984}, {"country": 68, "id": 2911, "size": 3.7080502011022101}, {"country": 53, "id": 2912, "size": 5.3944491546724391}, {"country": 96, "id": 2913, "size": 4.6109179126442239}, {"country": 21, "id": 2914, "size": 4.9120230054281464}, {"country": 53, "id": 2915, "size": 5.8598124043616719}, {"country": 21, "id": 2916, "size": 9.0611713596909205}, {"country": 37, "id": 2917, "size": 3.3025850929940459}, {"country": 129, "id": 2918, "size": 5.8978397999509111}, {"country": 53, "id": 2919, "size": 8.3588308983423545}, {"country": 53, "id": 2920, "size": 13.106937158558743}, {"country": 53, "id": 2921, "size": 4.2580965380214817}, {"country": 53, "id": 2922, "size": 10.931054080253933}, {"country": 53, "id": 2923, "size": 8.8555446779156632}, {"country": 53, "id": 2924, "size": 7.8772960714974287}, {"country": 73, "id": 2925, "size": 6.1590552992145291}, {"country": 21, "id": 2926, "size": 10.476313501265748}, {"country": 53, "id": 2927, "size": 6.1059454739005803}, {"country": 53, "id": 2928, "size": 7.0567840132286248}, {"country": 53, "id": 2929, "size": 7.1355648910817386}, {"country": 53, "id": 2930, "size": 6.7525726388256331}, {"country": 53, "id": 2931, "size": 7.7129562006770698}, {"country": 53, "id": 2932, "size": 7.0707377280024897}, {"country": 95, "id": 2933, "size": 4.8066624897703196}, {"country": 53, "id": 2934, "size": 3.1972245773362196}, {"country": 77, "id": 2935, "size": 4.5835189384561099}, {"country": 53, "id": 2936, "size": 5.0943445622221004}, {"country": 53, "id": 2937, "size": 6.6276211136906369}, {"country": 53, "id": 2938, "size": 8.4477512800479069}, {"country": 53, "id": 2939, "size": 7.8134445995108956}, {"country": 53, "id": 2940, "size": 6.8777357817796387}, {"country": 53, "id": 2941, "size": 6.2983173665480363}, {"country": 53, "id": 2942, "size": 7.3385940782031831}, {"country": 53, "id": 2943, "size": 3.3025850929940459}, {"country": 37, "id": 2944, "size": 6.2311086168545868}, {"country": 53, "id": 2945, "size": 8.1785454837636991}, {"country": 77, "id": 2946, "size": 5.5747109785033828}, {"country": 53, "id": 2947, "size": 7.3716118472318568}, {"country": 53, "id": 2948, "size": 6.0751738152338266}, {"country": 53, "id": 2949, "size": 9.2897905831816434}, {"country": 105, "id": 2950, "size": 5.8675344504555822}, {"country": 53, "id": 2951, "size": 6.5373342670185366}, {"country": 53, "id": 2952, "size": 8.1300985101255776}, {"country": 53, "id": 2953, "size": 6.0625950330269669}, {"country": 53, "id": 2954, "size": 6.4971682252932021}, {"country": 127, "id": 2955, "size": 7.3438804341263308}, {"country": 53, "id": 2956, "size": 4.6375861597263857}, {"country": 60, "id": 2957, "size": 7.4661447242376191}, {"country": 53, "id": 2958, "size": 9.4465561118167969}, {"country": 53, "id": 2959, "size": 6.1416635565026603}, {"country": 53, "id": 2960, "size": 7.7093043402582984}, {"country": 53, "id": 2961, "size": 7.1114673395026786}, {"country": 53, "id": 2962, "size": 6.3981627015177525}, {"country": 53, "id": 2963, "size": 6.8260001073804499}, {"country": 53, "id": 2964, "size": 7.6476883735633292}, {"country": 53, "id": 2965, "size": 11.955881367402624}, {"country": 53, "id": 2966, "size": 3.9444389791664403}, {"country": 53, "id": 2967, "size": 9.2532276455817719}, {"country": 129, "id": 2968, "size": 5.9199809258281251}, {"country": 53, "id": 2969, "size": 7.3403593037277517}, {"country": 77, "id": 2970, "size": 5.962844630259907}, {"country": 53, "id": 2971, "size": 4.7612001156935619}, {"country": 53, "id": 2972, "size": 4.713572066704308}, {"country": 1, "id": 2973, "size": 6.3181199938442161}, {"country": 53, "id": 2974, "size": 7.0661080901037474}, {"country": 53, "id": 2975, "size": 7.8276292345028518}, {"country": 53, "id": 2976, "size": 7.5027900459156234}, {"country": 53, "id": 2977, "size": 6.9914645471079817}, {"country": 53, "id": 2978, "size": 5.6443908991413725}, {"country": 53, "id": 2979, "size": 7.7889717429921701}, {"country": 53, "id": 2980, "size": 5.7706846244656651}, {"country": 53, "id": 2981, "size": 7.2324480165505225}, {"country": 53, "id": 2982, "size": 7.5337888379333435}, {"country": 53, "id": 2983, "size": 6.9914645471079817}, {"country": 53, "id": 2984, "size": 5.2484952420493594}, {"country": 57, "id": 2985, "size": 5.9199809258281251}, {"country": 53, "id": 2986, "size": 10.65419251248905}, {"country": 129, "id": 2987, "size": 6.9427993751267012}, {"country": 53, "id": 2988, "size": 7.9631899858702377}, {"country": 109, "id": 2989, "size": 9.0452677166078033}, {"country": 53, "id": 2990, "size": 6.9053618480545707}, {"country": 53, "id": 2991, "size": 6.2626901889048856}, {"country": 129, "id": 2992, "size": 7.752270376141742}, {"country": 53, "id": 2993, "size": 8.5928702878448178}, {"country": 53, "id": 2994, "size": 6.5294290875114234}, {"country": 87, "id": 2995, "size": 6.6559918108198524}, {"country": 94, "id": 2996, "size": 5.2046926193909657}, {"country": 53, "id": 2997, "size": 11.467550579684536}, {"country": 53, "id": 2998, "size": 10.868689046993433}, {"country": 53, "id": 2999, "size": 8.0085051820822812}, {"country": 53, "id": 3000, "size": 7.3171646867472839}, {"country": 53, "id": 3001, "size": 8.9936199948277444}, {"country": 93, "id": 3002, "size": 4.9318256327243262}, {"country": 53, "id": 3003, "size": 5.2766661190160553}, {"country": 53, "id": 3004, "size": 5.2626798770413155}, {"country": 53, "id": 3005, "size": 6.1239639794032588}, {"country": 96, "id": 3006, "size": 8.0361484937505363}, {"country": 53, "id": 3007, "size": 6.3706380281276624}, {"country": 53, "id": 3008, "size": 5.7957905455967413}, {"country": 53, "id": 3009, "size": 6.1357984370502621}, {"country": 53, "id": 3010, "size": 7.6970342476664841}, {"country": 53, "id": 3011, "size": 8.2710085382809915}, {"country": 53, "id": 3012, "size": 4.8501476017100584}, {"country": 53, "id": 3013, "size": 7.5834092221587648}, {"country": 53, "id": 3014, "size": 6.3518581334760666}, {"country": 132, "id": 3015, "size": 6.3844950627890888}, {"country": 53, "id": 3016, "size": 9.314587291319576}, {"country": 21, "id": 3017, "size": 8.2896105214511664}, {"country": 53, "id": 3018, "size": 9.034631032923107}, {"country": 53, "id": 3019, "size": 9.6929935312199262}, {"country": 53, "id": 3020, "size": 6.2729995585637468}, {"country": 53, "id": 3021, "size": 8.2723983925700466}, {"country": 53, "id": 3022, "size": 7.7165947735209777}, {"country": 53, "id": 3023, "size": 6.3981627015177525}, {"country": 53, "id": 3024, "size": 7.8112443786012937}, {"country": 53, "id": 3025, "size": 8.582738488914412}, {"country": 53, "id": 3026, "size": 9.0378662347096181}, {"country": 53, "id": 3027, "size": 6.389071729816501}, {"country": 53, "id": 3028, "size": 5.1431347263915326}, {"country": 53, "id": 3029, "size": 5.5108595065168497}, {"country": 53, "id": 3030, "size": 4.6635616461296463}, {"country": 53, "id": 3031, "size": 6.5606816310155276}, {"country": 22, "id": 3032, "size": 5.1271343850450917}, {"country": 21, "id": 3033, "size": 8.1196356380176358}, {"country": 53, "id": 3034, "size": 6.8141305318250662}, {"country": 53, "id": 3035, "size": 6.4424177105217932}, {"country": 53, "id": 3036, "size": 4.8501476017100584}, {"country": 53, "id": 3037, "size": 6.2832037287379885}, {"country": 53, "id": 3038, "size": 5.7621739347977563}, {"country": 43, "id": 3039, "size": 4.1780538303479453}, {"country": 53, "id": 3040, "size": 7.3315018498936908}, {"country": 53, "id": 3041, "size": 9.4327240347897874}, {"country": 93, "id": 3042, "size": 3.9957322735539909}, {"country": 12, "id": 3043, "size": 9.7086396559871933}, {"country": 53, "id": 3044, "size": 7.0637852086876078}, {"country": 53, "id": 3045, "size": 6.3518581334760666}, {"country": 93, "id": 3046, "size": 6.0875963352323836}, {"country": 21, "id": 3047, "size": 8.014814351275545}, {"country": 21, "id": 3048, "size": 9.0870254706677009}, {"country": 10, "id": 3049, "size": 6.2470240721604862}, {"country": 77, "id": 3050, "size": 8.0228680860826422}, {"country": 53, "id": 3051, "size": 5.1108738641733114}, {"country": 53, "id": 3052, "size": 8.7402295247631816}, {"country": 53, "id": 3053, "size": 5.8520302639196169}, {"country": 53, "id": 3054, "size": 8.44716835960004}, {"country": 53, "id": 3055, "size": 6.2311086168545868}, {"country": 53, "id": 3056, "size": 7.70196036600254}, {"country": 53, "id": 3057, "size": 8.8022093162471187}, {"country": 53, "id": 3058, "size": 9.2774119989490043}, {"country": 53, "id": 3059, "size": 8.7702232041587855}, {"country": 112, "id": 3060, "size": 4.465735902799727}, {"country": 53, "id": 3061, "size": 7.6682282484174031}, {"country": 53, "id": 3062, "size": 7.2265366692874657}, {"country": 21, "id": 3063, "size": 5.5747109785033828}, {"country": 53, "id": 3064, "size": 4.737669618283368}, {"country": 53, "id": 3065, "size": 10.143238568435446}, {"country": 53, "id": 3066, "size": 8.6362696033793735}, {"country": 53, "id": 3067, "size": 6.4161004022044201}, {"country": 53, "id": 3068, "size": 9.2812176612866502}, {"country": 53, "id": 3069, "size": 5.8520302639196169}, {"country": 53, "id": 3070, "size": 9.7263189509622432}, {"country": 77, "id": 3071, "size": 6.2626901889048856}, {"country": 53, "id": 3072, "size": 2.3862943611198908}, {"country": 53, "id": 3073, "size": 4.3672958299864746}, {"country": 53, "id": 3074, "size": 7.9810057407217299}, {"country": 53, "id": 3075, "size": 6.7620513827801769}, {"country": 120, "id": 3076, "size": 8.2902928824465967}, {"country": 100, "id": 3077, "size": 7.230481447578482}, {"country": 53, "id": 3078, "size": 8.3852309230665725}, {"country": 53, "id": 3079, "size": 2.9459101490553135}, {"country": 53, "id": 3080, "size": 5.8978397999509111}, {"country": 53, "id": 3081, "size": 7.315358001522335}, {"country": 64, "id": 3082, "size": 8.040536390215955}, {"country": 67, "id": 3083, "size": 1.6931471805599454}, {"country": 53, "id": 3084, "size": 7.4473058625412127}, {"country": 53, "id": 3085, "size": 7.7511014689367599}, {"country": 77, "id": 3086, "size": 8.9665866976384017}, {"country": 53, "id": 3087, "size": 7.3647507568519108}, {"country": 77, "id": 3088, "size": 7.4567696555721632}, {"country": 57, "id": 3089, "size": 4.713572066704308}, {"country": 53, "id": 3090, "size": 10.764397884134175}, {"country": 53, "id": 3091, "size": 8.1066061377273027}, {"country": 53, "id": 3092, "size": 10.676398728859633}, {"country": 29, "id": 3093, "size": 7.9707300781435251}, {"country": 53, "id": 3094, "size": 7.9196838498474111}, {"country": 60, "id": 3095, "size": 6.5947113796018391}, {"country": 53, "id": 3096, "size": 8.1853870155804174}, {"country": 53, "id": 3097, "size": 5.7184988712950942}, {"country": 53, "id": 3098, "size": 5.4308167988433134}, {"country": 53, "id": 3099, "size": 8.3562798765507473}, {"country": 72, "id": 3100, "size": 7.0161571596983539}, {"country": 53, "id": 3101, "size": 6.0998664278241987}, {"country": 53, "id": 3102, "size": 5.6821312271242199}, {"country": 53, "id": 3103, "size": 4.8712010109078907}, {"country": 53, "id": 3104, "size": 7.6720329454610674}, {"country": 53, "id": 3105, "size": 5.0604430105464191}, {"country": 93, "id": 3106, "size": 6.8289456176102075}, {"country": 53, "id": 3107, "size": 6.9763509092979339}, {"country": 53, "id": 3108, "size": 7.543911845564792}, {"country": 53, "id": 3109, "size": 6.1416635565026603}, {"country": 53, "id": 3110, "size": 6.4161004022044201}, {"country": 53, "id": 3111, "size": 8.6063873897726531}, {"country": 53, "id": 3112, "size": 7.8966943316227125}, {"country": 53, "id": 3113, "size": 6.6312117818213654}, {"country": 53, "id": 3114, "size": 8.4764723811639051}, {"country": 129, "id": 3115, "size": 8.6226639513235952}, {"country": 21, "id": 3116, "size": 8.2026611965232377}, {"country": 127, "id": 3117, "size": 5.1431347263915326}, {"country": 21, "id": 3118, "size": 5.3040650932041702}, {"country": 53, "id": 3119, "size": 7.3561076606958915}, {"country": 53, "id": 3120, "size": 7.4035741979348151}, {"country": 77, "id": 3121, "size": 8.5310163320779147}, {"country": 53, "id": 3122, "size": 6.9914645471079817}, {"country": 67, "id": 3123, "size": 5.7535901911063645}, {"country": 53, "id": 3124, "size": 10.046762057999363}, {"country": 53, "id": 3125, "size": 9.4226627075700033}, {"country": 53, "id": 3126, "size": 6.7714411231300158}, {"country": 53, "id": 3127, "size": 6.472270673671475}, {"country": 53, "id": 3128, "size": 7.0137151560428022}, {"country": 53, "id": 3129, "size": 8.2115567333138024}, {"country": 53, "id": 3130, "size": 10.568574100378909}, {"country": 53, "id": 3131, "size": 4.2958368660043291}, {"country": 53, "id": 3132, "size": 6.5451774444795623}, {"country": 21, "id": 3133, "size": 8.0553128433397525}, {"country": 53, "id": 3134, "size": 4.9120230054281464}, {"country": 21, "id": 3135, "size": 6.3230099791384085}, {"country": 53, "id": 3136, "size": 8.5928702878448178}, {"country": 53, "id": 3137, "size": 3.9957322735539909}, {"country": 53, "id": 3138, "size": 8.8636512654486523}, {"country": 53, "id": 3139, "size": 5.0430512678345503}, {"country": 21, "id": 3140, "size": 7.8617113404807304}, {"country": 53, "id": 3141, "size": 5.5108595065168497}, {"country": 53, "id": 3142, "size": 6.5645204073226937}, {"country": 115, "id": 3143, "size": 5.7874917427820458}, {"country": 53, "id": 3144, "size": 7.9255951971104679}, {"country": 53, "id": 3145, "size": 12.5245872018195}, {"country": 115, "id": 3146, "size": 8.6783263565068864}, {"country": 53, "id": 3147, "size": 6.2203558250783244}, {"country": 53, "id": 3148, "size": 7.4361503683694279}, {"country": 53, "id": 3149, "size": 5.1896547420264252}, {"country": 53, "id": 3150, "size": 8.007600613951853}, {"country": 53, "id": 3151, "size": 7.8721281013389861}, {"country": 77, "id": 3152, "size": 7.2690962837062614}, {"country": 53, "id": 3153, "size": 6.7071102647488754}, {"country": 21, "id": 3154, "size": 5.7957905455967413}, {"country": 53, "id": 3155, "size": 5.7449321283632502}, {"country": 53, "id": 3156, "size": 6.7170277014062219}, {"country": 53, "id": 3157, "size": 10.855924135604518}, {"country": 53, "id": 3158, "size": 7.0799331950955899}, {"country": 53, "id": 3159, "size": 7.061456918928017}, {"country": 53, "id": 3160, "size": 9.1867427871135181}, {"country": 53, "id": 3161, "size": 8.5750716995075607}, {"country": 53, "id": 3162, "size": 6.9242557974145322}, {"country": 77, "id": 3163, "size": 6.8692969131337742}, {"country": 21, "id": 3164, "size": 5.5951198501345898}, {"country": 53, "id": 3165, "size": 9.711607995897575}, {"country": 53, "id": 3166, "size": 6.4380793089231956}, {"country": 53, "id": 3167, "size": 3.8903717578961645}, {"country": 53, "id": 3168, "size": 6.8636311755980968}, {"country": 53, "id": 3169, "size": 7.39024066706535}, {"country": 53, "id": 3170, "size": 4.5553480614894131}, {"country": 53, "id": 3171, "size": 6.7333412768977459}, {"country": 53, "id": 3172, "size": 5.5951198501345898}, {"country": 53, "id": 3173, "size": 6.6970934865054046}, {"country": 105, "id": 3174, "size": 7.8936563546026353}, {"country": 53, "id": 3175, "size": 8.6482630309019193}, {"country": 53, "id": 3176, "size": 5.6728288344619058}, {"country": 21, "id": 3177, "size": 5.2626798770413155}, {"country": 53, "id": 3178, "size": 9.8522358352278552}, {"country": 53, "id": 3179, "size": 8.1139561095660344}, {"country": 53, "id": 3180, "size": 5.7535901911063645}, {"country": 2, "id": 3181, "size": 6.6559918108198524}, {"country": 21, "id": 3182, "size": 8.9391588179567965}, {"country": 53, "id": 3183, "size": 10.092569836241674}, {"country": 115, "id": 3184, "size": 8.5490827108122858}, {"country": 53, "id": 3185, "size": 10.502786080276985}, {"country": 53, "id": 3186, "size": 4.8066624897703196}, {"country": 53, "id": 3187, "size": 6.8971538676367405}, {"country": 53, "id": 3188, "size": 5.1743872698956368}, {"country": 53, "id": 3189, "size": 8.508238774678663}, {"country": 53, "id": 3190, "size": 7.6846117276679271}, {"country": 77, "id": 3191, "size": 7.2106000770246528}, {"country": 53, "id": 3192, "size": 8.2063772914722524}, {"country": 77, "id": 3193, "size": 7.0354814325247563}, {"country": 53, "id": 3194, "size": 8.7191298409067315}, {"country": 105, "id": 3195, "size": 7.6385677891665207}, {"country": 53, "id": 3196, "size": 7.8145428972599582}, {"country": 53, "id": 3197, "size": 9.6644055710966246}, {"country": 53, "id": 3198, "size": 5.5747109785033828}, {"country": 53, "id": 3199, "size": 6.7170277014062219}, {"country": 53, "id": 3200, "size": 7.1463292576688975}, {"country": 53, "id": 3201, "size": 8.3839894579785081}, {"country": 53, "id": 3202, "size": 8.1561766374806162}, {"country": 53, "id": 3203, "size": 8.0983756385907864}, {"country": 53, "id": 3204, "size": 7.0958245624322247}, {"country": 53, "id": 3205, "size": 8.3537223303996306}, {"country": 53, "id": 3206, "size": 9.0940731480693522}, {"country": 53, "id": 3207, "size": 5.3694478524670215}, {"country": 53, "id": 3208, "size": 3.4849066497880004}, {"country": 21, "id": 3209, "size": 5.3944491546724391}, {"country": 53, "id": 3210, "size": 5.2341065045972597}, {"country": 53, "id": 3211, "size": 4.6635616461296463}, {"country": 129, "id": 3212, "size": 4.218875824868201}, {"country": 53, "id": 3213, "size": 6.1179938124167554}, {"country": 53, "id": 3214, "size": 5.2484952420493594}, {"country": 77, "id": 3215, "size": 8.0791843946096691}, {"country": 53, "id": 3216, "size": 6.1179938124167554}, {"country": 53, "id": 3217, "size": 7.3044488024219811}, {"country": 53, "id": 3218, "size": 7.7068623366027467}, {"country": 53, "id": 3219, "size": 6.3082676974012051}, {"country": 131, "id": 3220, "size": 6.6094717951849598}, {"country": 53, "id": 3221, "size": 6.7203117766074119}, {"country": 53, "id": 3222, "size": 7.5610306658965731}, {"country": 53, "id": 3223, "size": 4.9318256327243262}, {"country": 53, "id": 3224, "size": 7.045005314036012}, {"country": 1, "id": 3225, "size": 6.3981627015177525}, {"country": 53, "id": 3226, "size": 5.9836066217083363}, {"country": 53, "id": 3227, "size": 5.6821312271242199}, {"country": 77, "id": 3228, "size": 6.7333412768977459}, {"country": 125, "id": 3229, "size": 4.6888794541139358}, {"country": 53, "id": 3230, "size": 8.7719102564357634}, {"country": 53, "id": 3231, "size": 8.5098830611549126}, {"country": 53, "id": 3232, "size": 6.1059454739005803}, {"country": 21, "id": 3233, "size": 6.6664266881124323}, {"country": 53, "id": 3234, "size": 4.8501476017100584}, {"country": 53, "id": 3235, "size": 7.1420374055873559}, {"country": 94, "id": 3236, "size": 8.2984451015081468}, {"country": 58, "id": 3237, "size": 7.7007311095478101}, {"country": 53, "id": 3238, "size": 7.831953565565855}, {"country": 53, "id": 3239, "size": 6.0434251169192468}, {"country": 53, "id": 3240, "size": 7.1202974189509503}, {"country": 77, "id": 3241, "size": 6.2522734280466299}, {"country": 53, "id": 3242, "size": 6.8664680569332965}, {"country": 53, "id": 3243, "size": 3.1972245773362196}, {"country": 43, "id": 3244, "size": 8.3714892952142783}, {"country": 53, "id": 3245, "size": 6.5254529391317835}, {"country": 73, "id": 3246, "size": 6.0814043649844631}, {"country": 53, "id": 3247, "size": 4.5553480614894131}, {"country": 53, "id": 3248, "size": 8.1324975516600446}, {"country": 53, "id": 3249, "size": 4.465735902799727}, {"country": 53, "id": 3250, "size": 6.5412635451584258}, {"country": 53, "id": 3251, "size": 7.1333980429966486}, {"country": 53, "id": 3252, "size": 7.4134589571673573}, {"country": 53, "id": 3253, "size": 7.3543700407973507}, {"country": 53, "id": 3254, "size": 7.3767269478986268}, {"country": 53, "id": 3255, "size": 7.1506027684462792}, {"country": 131, "id": 3256, "size": 5.8598124043616719}, {"country": 53, "id": 3257, "size": 9.746716349694486}, {"country": 60, "id": 3258, "size": 8.4454175567016883}, {"country": 115, "id": 3259, "size": 6.6594822157596214}, {"country": 53, "id": 3260, "size": 9.4978064776160469}, {"country": 53, "id": 3261, "size": 6.4595855141441589}, {"country": 57, "id": 3262, "size": 5.0253516907351496}, {"country": 53, "id": 3263, "size": 6.855071922202427}, {"country": 53, "id": 3264, "size": 5.9836066217083363}, {"country": 21, "id": 3265, "size": 5.8828019225863706}, {"country": 132, "id": 3266, "size": 8.8671055003167396}, {"country": 53, "id": 3267, "size": 8.2696167496081685}, {"country": 53, "id": 3268, "size": 7.4520489544372257}, {"country": 53, "id": 3269, "size": 6.0689042022202315}, {"country": 53, "id": 3270, "size": 8.4336665401661683}, {"country": 53, "id": 3271, "size": 10.299175085676673}, {"country": 127, "id": 3272, "size": 5.6249728132842707}, {"country": 53, "id": 3273, "size": 7.1092475827643655}, {"country": 77, "id": 3274, "size": 4.8712010109078907}, {"country": 37, "id": 3275, "size": 5.7361984483944957}, {"country": 53, "id": 3276, "size": 5.8598124043616719}, {"country": 53, "id": 3277, "size": 8.71289096149013}, {"country": 53, "id": 3278, "size": 8.1981835771019433}, {"country": 37, "id": 3279, "size": 5.9558270576012609}, {"country": 53, "id": 3280, "size": 5.5217885770490405}, {"country": 24, "id": 3281, "size": 8.1951873201787091}, {"country": 53, "id": 3282, "size": 7.5453496603344199}, {"country": 53, "id": 3283, "size": 9.6146828126934949}, {"country": 53, "id": 3284, "size": 7.0844994130751715}, {"country": 53, "id": 3285, "size": 6.2574953720277815}, {"country": 21, "id": 3286, "size": 7.0473721790462776}, {"country": 53, "id": 3287, "size": 8.1412451223504902}, {"country": 53, "id": 3288, "size": 4.3672958299864746}, {"country": 53, "id": 3289, "size": 9.3383057313565647}, {"country": 77, "id": 3290, "size": 8.2520539518528153}, {"country": 53, "id": 3291, "size": 5.9199809258281251}, {"country": 53, "id": 3292, "size": 6.6903594543240601}, {"country": 53, "id": 3293, "size": 6.7868973813667077}, {"country": 99, "id": 3294, "size": 7.1092475827643655}, {"country": 120, "id": 3295, "size": 4.4011973816621559}, {"country": 53, "id": 3296, "size": 4.3672958299864746}, {"country": 53, "id": 3297, "size": 6.3033049080590757}, {"country": 121, "id": 3298, "size": 3.4849066497880004}, {"country": 74, "id": 3299, "size": 7.2766434893416445}, {"country": 53, "id": 3300, "size": 10.056139690898883}, {"country": 53, "id": 3301, "size": 7.2766434893416445}, {"country": 53, "id": 3302, "size": 6.1984970312658261}, {"country": 76, "id": 3303, "size": 6.0434251169192468}, {"country": 61, "id": 3304, "size": 5.2626798770413155}, {"country": 77, "id": 3305, "size": 5.0073331852324712}, {"country": 37, "id": 3306, "size": 4.9702919135521224}, {"country": 84, "id": 3307, "size": 5.8675344504555822}, {"country": 53, "id": 3308, "size": 5.6913478822291435}, {"country": 53, "id": 3309, "size": 8.4899708988348017}, {"country": 53, "id": 3310, "size": 5.290459441148391}, {"country": 105, "id": 3311, "size": 4.0445224377234226}, {"country": 77, "id": 3312, "size": 6.181783550292085}, {"country": 53, "id": 3313, "size": 5.6913478822291435}, {"country": 53, "id": 3314, "size": 8.837554360881084}, {"country": 21, "id": 3315, "size": 6.3327187932653688}, {"country": 53, "id": 3316, "size": 7.9304947659516261}, {"country": 53, "id": 3317, "size": 8.3914152346753585}, {"country": 53, "id": 3318, "size": 7.6694980898578793}, {"country": 53, "id": 3319, "size": 8.5363639384045111}, {"country": 53, "id": 3320, "size": 6.4847969334906548}, {"country": 53, "id": 3321, "size": 3.8332133440562162}, {"country": 53, "id": 3322, "size": 2.9459101490553135}, {"country": 53, "id": 3323, "size": 5.7791234931115296}, {"country": 53, "id": 3324, "size": 8.4616403922085759}, {"country": 94, "id": 3325, "size": 8.0317412587631285}, {"country": 84, "id": 3326, "size": 3.8903717578961645}, {"country": 21, "id": 3327, "size": 7.7381524945959574}, {"country": 53, "id": 3328, "size": 7.6895992691789665}, {"country": 53, "id": 3329, "size": 6.730099782973574}, {"country": 109, "id": 3330, "size": 6.6903594543240601}, {"country": 53, "id": 3331, "size": 6.1416635565026603}, {"country": 53, "id": 3332, "size": 9.5767819828278942}, {"country": 37, "id": 3333, "size": 6.2149357576089859}, {"country": 53, "id": 3334, "size": 7.2653012127377101}, {"country": 53, "id": 3335, "size": 6.8692969131337742}, {"country": 77, "id": 3336, "size": 9.723882104658486}, {"country": 21, "id": 3337, "size": 5.4543472962535073}, {"country": 53, "id": 3338, "size": 11.068747721401788}, {"country": 53, "id": 3339, "size": 6.6489742381612063}, {"country": 105, "id": 3340, "size": 6.5834963087816991}, {"country": 53, "id": 3341, "size": 7.2166061010848646}, {"country": 53, "id": 3342, "size": 7.9107507879619359}, {"country": 21, "id": 3343, "size": 8.1754897136242217}, {"country": 53, "id": 3344, "size": 7.1964441277945204}, {"country": 53, "id": 3345, "size": 4.6888794541139358}, {"country": 53, "id": 3346, "size": 6.2040066870767951}, {"country": 77, "id": 3347, "size": 7.5366915975913047}, {"country": 38, "id": 3348, "size": 6.0751738152338266}, {"country": 53, "id": 3349, "size": 6.2626901889048856}, {"country": 123, "id": 3350, "size": 6.8230458954830189}, {"country": 53, "id": 3351, "size": 9.8190739832678311}, {"country": 21, "id": 3352, "size": 6.4680601411351315}, {"country": 53, "id": 3353, "size": 7.522092798170152}, {"country": 57, "id": 3354, "size": 7.9865664594064265}, {"country": 53, "id": 3355, "size": 6.2149357576089859}, {"country": 118, "id": 3356, "size": 3.1972245773362196}, {"country": 53, "id": 3357, "size": 7.6795991858443831}, {"country": 53, "id": 3358, "size": 6.2729995585637468}, {"country": 53, "id": 3359, "size": 7.9966814881765389}, {"country": 53, "id": 3360, "size": 8.8800482009715758}, {"country": 53, "id": 3361, "size": 5.1431347263915326}, {"country": 53, "id": 3362, "size": 6.521460917862246}, {"country": 53, "id": 3363, "size": 7.1717005974109149}, {"country": 53, "id": 3364, "size": 9.5777236911562706}, {"country": 21, "id": 3365, "size": 9.2195954541770799}, {"country": 53, "id": 3366, "size": 8.6506445514368977}, {"country": 53, "id": 3367, "size": 7.2822667468960063}, {"country": 53, "id": 3368, "size": 6.1532915944977793}, {"country": 53, "id": 3369, "size": 5.9199809258281251}, {"country": 53, "id": 3370, "size": 9.1693363959283865}, {"country": 42, "id": 3371, "size": 5.4067192472642533}, {"country": 53, "id": 3372, "size": 5.7535901911063645}, {"country": 107, "id": 3373, "size": 7.7833252006039597}, {"country": 38, "id": 3374, "size": 6.0814043649844631}, {"country": 21, "id": 3375, "size": 4.9120230054281464}, {"country": 108, "id": 3376, "size": 7.3044488024219811}, {"country": 77, "id": 3377, "size": 7.2595814640649232}, {"country": 53, "id": 3378, "size": 7.3207682942505823}, {"country": 53, "id": 3379, "size": 7.1268691841141854}, {"country": 64, "id": 3380, "size": 8.0587581525186636}, {"country": 77, "id": 3381, "size": 9.1521980158617868}, {"country": 11, "id": 3382, "size": 8.6501687008450006}, {"country": 53, "id": 3383, "size": 6.4847969334906548}, {"country": 53, "id": 3384, "size": 7.8916258970522533}, {"country": 21, "id": 3385, "size": 4.6375861597263857}, {"country": 53, "id": 3386, "size": 7.5410299991899032}, {"country": 53, "id": 3387, "size": 8.3895639536776354}, {"country": 53, "id": 3388, "size": 6.3181199938442161}, {"country": 53, "id": 3389, "size": 6.1357984370502621}, {"country": 53, "id": 3390, "size": 6.7525726388256331}, {"country": 53, "id": 3391, "size": 4.0910424533583161}, {"country": 129, "id": 3392, "size": 4.737669618283368}, {"country": 53, "id": 3393, "size": 9.8821140442088211}, {"country": 53, "id": 3394, "size": 8.4547199493640015}, {"country": 53, "id": 3395, "size": 5.1431347263915326}, {"country": 53, "id": 3396, "size": 8.7519053330786107}, {"country": 21, "id": 3397, "size": 7.4281052726845962}, {"country": 53, "id": 3398, "size": 5.8283137373023015}, {"country": 53, "id": 3399, "size": 5.9344739331306915}, {"country": 53, "id": 3400, "size": 7.5834092221587648}, {"country": 53, "id": 3401, "size": 7.7440591863113477}, {"country": 53, "id": 3402, "size": 7.0426328336823811}, {"country": 53, "id": 3403, "size": 8.0021559544036212}, {"country": 118, "id": 3404, "size": 6.9989365619466826}, {"country": 53, "id": 3405, "size": 8.8228452902797727}, {"country": 73, "id": 3406, "size": 8.4905294020607123}, {"country": 53, "id": 3407, "size": 8.7111012518401587}, {"country": 53, "id": 3408, "size": 7.3699009828282271}, {"country": 53, "id": 3409, "size": 5.7535901911063645}, {"country": 53, "id": 3410, "size": 6.6970934865054046}, {"country": 53, "id": 3411, "size": 4.8286413964890951}, {"country": 53, "id": 3412, "size": 8.8336002236611044}, {"country": 53, "id": 3413, "size": 7.584791392385716}, {"country": 53, "id": 3414, "size": 4.5263605246161616}, {"country": 53, "id": 3415, "size": 7.7381524945959574}, {"country": 53, "id": 3416, "size": 7.6707663208458738}, {"country": 93, "id": 3417, "size": 5.4067192472642533}, {"country": 53, "id": 3418, "size": 5.0253516907351496}, {"country": 118, "id": 3419, "size": 7.1779441140506002}, {"country": 53, "id": 3420, "size": 5.9416424226093039}, {"country": 53, "id": 3421, "size": 6.1929568508902104}, {"country": 1, "id": 3422, "size": 6.4424177105217932}, {"country": 53, "id": 3423, "size": 6.5254529391317835}, {"country": 108, "id": 3424, "size": 5.7621739347977563}, {"country": 53, "id": 3425, "size": 7.4409465406329209}, {"country": 53, "id": 3426, "size": 7.6808546787902152}, {"country": 53, "id": 3427, "size": 4.9120230054281464}, {"country": 21, "id": 3428, "size": 6.8888779583328805}, {"country": 53, "id": 3429, "size": 10.208739090609209}, {"country": 53, "id": 3430, "size": 7.8532990931860782}, {"country": 53, "id": 3431, "size": 8.2130316598348685}, {"country": 53, "id": 3432, "size": 8.3362856600212965}, {"country": 105, "id": 3433, "size": 6.1761497325738288}, {"country": 94, "id": 3434, "size": 6.7397929121792339}, {"country": 77, "id": 3435, "size": 4.8066624897703196}, {"country": 53, "id": 3436, "size": 5.5108595065168497}, {"country": 53, "id": 3437, "size": 7.8710912946105456}, {"country": 53, "id": 3438, "size": 5.0775374439057197}, {"country": 43, "id": 3439, "size": 6.0434251169192468}, {"country": 21, "id": 3440, "size": 6.3844950627890888}, {"country": 53, "id": 3441, "size": 8.6852436079758331}, {"country": 53, "id": 3442, "size": 6.7960577507653719}, {"country": 21, "id": 3443, "size": 8.0290875641496626}, {"country": 53, "id": 3444, "size": 5.2341065045972597}, {"country": 53, "id": 3445, "size": 6.5254529391317835}, {"country": 53, "id": 3446, "size": 6.7170277014062219}, {"country": 53, "id": 3447, "size": 5.1743872698956368}, {"country": 53, "id": 3448, "size": 5.2484952420493594}, {"country": 5, "id": 3449, "size": 5.7791234931115296}, {"country": 53, "id": 3450, "size": 10.499945593989812}, {"country": 21, "id": 3451, "size": 6.3278761687895813}, {"country": 53, "id": 3452, "size": 7.7381524945959574}, {"country": 53, "id": 3453, "size": 8.3098814858247856}, {"country": 53, "id": 3454, "size": 6.9989365619466826}, {"country": 53, "id": 3455, "size": 4.4011973816621559}, {"country": 53, "id": 3456, "size": 5.9199809258281251}, {"country": 21, "id": 3457, "size": 9.3039999709551964}, {"country": 53, "id": 3458, "size": 8.439559309133319}, {"country": 53, "id": 3459, "size": 8.486052617863141}, {"country": 53, "id": 3460, "size": 6.2933048247244923}, {"country": 53, "id": 3461, "size": 4.9702919135521224}, {"country": 53, "id": 3462, "size": 10.479221814964246}, {"country": 53, "id": 3463, "size": 9.2358907259284955}, {"country": 129, "id": 3464, "size": 8.2786289423206831}, {"country": 53, "id": 3465, "size": 6.602118820879701}, {"country": 53, "id": 3466, "size": 5.0253516907351496}, {"country": 53, "id": 3467, "size": 9.0192837929167933}, {"country": 53, "id": 3468, "size": 7.3473892096560105}, {"country": 53, "id": 3469, "size": 5.3040650932041702}, {"country": 93, "id": 3470, "size": 5.5849674786705723}, {"country": 53, "id": 3471, "size": 5.1896547420264252}, {"country": 53, "id": 3472, "size": 10.181632207839439}, {"country": 84, "id": 3473, "size": 8.6068845312196309}, {"country": 77, "id": 3474, "size": 4.4011973816621559}, {"country": 120, "id": 3475, "size": 4.6375861597263857}, {"country": 53, "id": 3476, "size": 5.3438054218536841}, {"country": 53, "id": 3477, "size": 9.7016790710395693}, {"country": 57, "id": 3478, "size": 5.5951198501345898}, {"country": 53, "id": 3479, "size": 5.1743872698956368}, {"country": 53, "id": 3480, "size": 7.2045577625686903}, {"country": 53, "id": 3481, "size": 8.2696167496081685}, {"country": 53, "id": 3482, "size": 11.137175317726008}, {"country": 53, "id": 3483, "size": 4.9889840465642745}, {"country": 53, "id": 3484, "size": 6.5053315359323625}, {"country": 53, "id": 3485, "size": 5.5108595065168497}, {"country": 53, "id": 3486, "size": 6.0106352940962555}, {"country": 42, "id": 3487, "size": 10.654000025882317}, {"country": 21, "id": 3488, "size": 6.2470240721604862}, {"country": 53, "id": 3489, "size": 6.9864520052844377}, {"country": 77, "id": 3490, "size": 5.219507705176107}, {"country": 53, "id": 3491, "size": 7.4118182677098972}, {"country": 53, "id": 3492, "size": 7.4473058625412127}, {"country": 53, "id": 3493, "size": 4.4339872044851463}, {"country": 53, "id": 3494, "size": 3.7725887222397811}, {"country": 129, "id": 3495, "size": 4.8918202981106269}, {"country": 21, "id": 3496, "size": 6.6240175061873385}, {"country": 53, "id": 3497, "size": 8.7587605441576635}, {"country": 53, "id": 3498, "size": 5.4308167988433134}, {"country": 21, "id": 3499, "size": 5.2484952420493594}, {"country": 53, "id": 3500, "size": 13.473895064059787}, {"country": 53, "id": 3501, "size": 6.855071922202427}], "links": [{"source": 1, "target": 0, "value": 1}, {"source": 2, "target": 0, "value": 1}, {"source": 3, "target": 0, "value": 1}, {"source": 4, "target": 0, "value": 1}, {"source": 5, "target": 0, "value": 1}, {"source": 6, "target": 0, "value": 1}, {"source": 7, "target": 0, "value": 1}, {"source": 8, "target": 0, "value": 1}, {"source": 9, "target": 0, "value": 1}, {"source": 10, "target": 0, "value": 1}, {"source": 11, "target": 0, "value": 1}, {"source": 12, "target": 0, "value": 1}, {"source": 13, "target": 0, "value": 1}, {"source": 14, "target": 0, "value": 1}, {"source": 15, "target": 0, "value": 1}, {"source": 16, "target": 0, "value": 1}, {"source": 17, "target": 0, "value": 1}, {"source": 18, "target": 0, "value": 1}, {"source": 19, "target": 0, "value": 1}, {"source": 20, "target": 0, "value": 1}, {"source": 21, "target": 0, "value": 1}, {"source": 22, "target": 0, "value": 1}, {"source": 23, "target": 0, "value": 1}, {"source": 24, "target": 0, "value": 1}, {"source": 25, "target": 0, "value": 1}, {"source": 26, "target": 0, "value": 1}, {"source": 27, "target": 0, "value": 1}, {"source": 28, "target": 0, "value": 1}, {"source": 29, "target": 0, "value": 1}, {"source": 30, "target": 0, "value": 1}, {"source": 31, "target": 0, "value": 1}, {"source": 32, "target": 0, "value": 1}, {"source": 33, "target": 0, "value": 1}, {"source": 34, "target": 0, "value": 1}, {"source": 35, "target": 0, "value": 1}, {"source": 36, "target": 0, "value": 1}, {"source": 37, "target": 0, "value": 1}, {"source": 38, "target": 0, "value": 1}, {"source": 39, "target": 0, "value": 1}, {"source": 40, "target": 0, "value": 1}, {"source": 41, "target": 0, "value": 1}, {"source": 42, "target": 0, "value": 1}, {"source": 43, "target": 0, "value": 1}, {"source": 44, "target": 0, "value": 1}, {"source": 45, "target": 0, "value": 1}, {"source": 46, "target": 0, "value": 1}, {"source": 47, "target": 0, "value": 1}, {"source": 48, "target": 0, "value": 1}, {"source": 49, "target": 0, "value": 1}, {"source": 50, "target": 0, "value": 1}, {"source": 51, "target": 0, "value": 1}, {"source": 52, "target": 0, "value": 1}, {"source": 53, "target": 0, "value": 1}, {"source": 54, "target": 0, "value": 1}, {"source": 55, "target": 0, "value": 1}, {"source": 56, "target": 0, "value": 1}, {"source": 57, "target": 0, "value": 1}, {"source": 58, "target": 0, "value": 1}, {"source": 59, "target": 0, "value": 1}, {"source": 60, "target": 0, "value": 1}, {"source": 61, "target": 0, "value": 1}, {"source": 62, "target": 0, "value": 1}, {"source": 63, "target": 0, "value": 1}, {"source": 64, "target": 0, "value": 1}, {"source": 65, "target": 0, "value": 1}, {"source": 66, "target": 0, "value": 1}, {"source": 67, "target": 0, "value": 1}, {"source": 68, "target": 0, "value": 1}, {"source": 69, "target": 0, "value": 1}, {"source": 70, "target": 0, "value": 1}, {"source": 71, "target": 0, "value": 1}, {"source": 72, "target": 0, "value": 1}, {"source": 73, "target": 0, "value": 1}, {"source": 74, "target": 0, "value": 1}, {"source": 75, "target": 0, "value": 1}, {"source": 76, "target": 0, "value": 1}, {"source": 77, "target": 0, "value": 1}, {"source": 78, "target": 0, "value": 1}, {"source": 79, "target": 0, "value": 1}, {"source": 80, "target": 0, "value": 1}, {"source": 81, "target": 0, "value": 1}, {"source": 82, "target": 0, "value": 1}, {"source": 83, "target": 0, "value": 1}, {"source": 84, "target": 0, "value": 1}, {"source": 85, "target": 0, "value": 1}, {"source": 86, "target": 0, "value": 1}, {"source": 87, "target": 0, "value": 1}, {"source": 88, "target": 0, "value": 1}, {"source": 89, "target": 0, "value": 1}, {"source": 90, "target": 0, "value": 1}, {"source": 91, "target": 0, "value": 1}, {"source": 92, "target": 0, "value": 1}, {"source": 93, "target": 0, "value": 1}, {"source": 94, "target": 0, "value": 1}, {"source": 95, "target": 0, "value": 1}, {"source": 96, "target": 0, "value": 1}, {"source": 97, "target": 0, "value": 1}, {"source": 98, "target": 0, "value": 1}, {"source": 99, "target": 0, "value": 1}, {"source": 100, "target": 0, "value": 1}, {"source": 101, "target": 0, "value": 1}, {"source": 102, "target": 0, "value": 1}, {"source": 103, "target": 0, "value": 1}, {"source": 104, "target": 0, "value": 1}, {"source": 105, "target": 0, "value": 1}, {"source": 106, "target": 0, "value": 1}, {"source": 107, "target": 0, "value": 1}, {"source": 108, "target": 0, "value": 1}, {"source": 109, "target": 0, "value": 1}, {"source": 110, "target": 0, "value": 1}, {"source": 111, "target": 0, "value": 1}, {"source": 112, "target": 0, "value": 1}, {"source": 113, "target": 0, "value": 1}, {"source": 114, "target": 0, "value": 1}, {"source": 115, "target": 0, "value": 1}, {"source": 116, "target": 0, "value": 1}, {"source": 117, "target": 0, "value": 1}, {"source": 118, "target": 0, "value": 1}, {"source": 119, "target": 0, "value": 1}, {"source": 120, "target": 0, "value": 1}, {"source": 121, "target": 0, "value": 1}, {"source": 122, "target": 0, "value": 1}, {"source": 123, "target": 0, "value": 1}, {"source": 124, "target": 0, "value": 1}, {"source": 125, "target": 0, "value": 1}, {"source": 126, "target": 0, "value": 1}, {"source": 127, "target": 0, "value": 1}, {"source": 128, "target": 0, "value": 1}, {"source": 129, "target": 0, "value": 1}, {"source": 130, "target": 0, "value": 1}, {"source": 131, "target": 0, "value": 1}, {"source": 132, "target": 0, "value": 1}, {"source": 133, "target": 0, "value": 1}, {"source": 134, "target": 0, "value": 1}, {"source": 135, "target": 0, "value": 1}, {"source": 136, "target": 0, "value": 1}, {"source": 137, "target": 0, "value": 1}, {"source": 138, "target": 0, "value": 1}, {"source": 139, "target": 0, "value": 1}, {"source": 140, "target": 0, "value": 1}, {"source": 141, "target": 0, "value": 1}, {"source": 142, "target": 0, "value": 1}, {"source": 143, "target": 0, "value": 1}, {"source": 144, "target": 0, "value": 1}, {"source": 145, "target": 0, "value": 1}, {"source": 146, "target": 0, "value": 1}, {"source": 147, "target": 0, "value": 1}, {"source": 148, "target": 0, "value": 1}, {"source": 149, "target": 0, "value": 1}, {"source": 150, "target": 0, "value": 1}, {"source": 151, "target": 0, "value": 1}, {"source": 152, "target": 0, "value": 1}, {"source": 153, "target": 0, "value": 1}, {"source": 154, "target": 0, "value": 1}, {"source": 155, "target": 0, "value": 1}, {"source": 156, "target": 0, "value": 1}, {"source": 157, "target": 0, "value": 1}, {"source": 158, "target": 0, "value": 1}, {"source": 159, "target": 0, "value": 1}, {"source": 160, "target": 0, "value": 1}, {"source": 161, "target": 0, "value": 1}, {"source": 162, "target": 0, "value": 1}, {"source": 163, "target": 0, "value": 1}, {"source": 164, "target": 0, "value": 1}, {"source": 165, "target": 0, "value": 1}, {"source": 166, "target": 0, "value": 1}, {"source": 167, "target": 0, "value": 1}, {"source": 168, "target": 0, "value": 1}, {"source": 169, "target": 0, "value": 1}, {"source": 170, "target": 0, "value": 1}, {"source": 171, "target": 0, "value": 1}, {"source": 172, "target": 0, "value": 1}, {"source": 173, "target": 0, "value": 1}, {"source": 174, "target": 0, "value": 1}, {"source": 175, "target": 0, "value": 1}, {"source": 176, "target": 0, "value": 1}, {"source": 177, "target": 0, "value": 1}, {"source": 178, "target": 0, "value": 1}, {"source": 179, "target": 0, "value": 1}, {"source": 180, "target": 0, "value": 1}, {"source": 181, "target": 0, "value": 1}, {"source": 182, "target": 0, "value": 1}, {"source": 183, "target": 0, "value": 1}, {"source": 184, "target": 0, "value": 1}, {"source": 185, "target": 0, "value": 1}, {"source": 186, "target": 0, "value": 1}, {"source": 187, "target": 0, "value": 1}, {"source": 188, "target": 0, "value": 1}, {"source": 189, "target": 0, "value": 1}, {"source": 190, "target": 0, "value": 1}, {"source": 191, "target": 0, "value": 1}, {"source": 192, "target": 0, "value": 1}, {"source": 193, "target": 0, "value": 1}, {"source": 194, "target": 0, "value": 1}, {"source": 195, "target": 0, "value": 1}, {"source": 196, "target": 0, "value": 1}, {"source": 197, "target": 0, "value": 1}, {"source": 198, "target": 0, "value": 1}, {"source": 199, "target": 0, "value": 1}, {"source": 200, "target": 0, "value": 1}, {"source": 201, "target": 0, "value": 1}, {"source": 202, "target": 0, "value": 1}, {"source": 203, "target": 0, "value": 1}, {"source": 204, "target": 0, "value": 1}, {"source": 205, "target": 0, "value": 1}, {"source": 206, "target": 0, "value": 1}, {"source": 207, "target": 0, "value": 1}, {"source": 208, "target": 0, "value": 1}, {"source": 209, "target": 0, "value": 1}, {"source": 210, "target": 0, "value": 1}, {"source": 211, "target": 0, "value": 1}, {"source": 212, "target": 0, "value": 1}, {"source": 213, "target": 0, "value": 1}, {"source": 214, "target": 0, "value": 1}, {"source": 215, "target": 0, "value": 1}, {"source": 216, "target": 0, "value": 1}, {"source": 217, "target": 0, "value": 1}, {"source": 218, "target": 0, "value": 1}, {"source": 219, "target": 0, "value": 1}, {"source": 220, "target": 0, "value": 1}, {"source": 221, "target": 0, "value": 1}, {"source": 222, "target": 0, "value": 1}, {"source": 223, "target": 0, "value": 1}, {"source": 224, "target": 0, "value": 1}, {"source": 225, "target": 0, "value": 1}, {"source": 226, "target": 0, "value": 1}, {"source": 227, "target": 0, "value": 1}, {"source": 228, "target": 0, "value": 1}, {"source": 229, "target": 0, "value": 1}, {"source": 230, "target": 0, "value": 1}, {"source": 231, "target": 0, "value": 1}, {"source": 232, "target": 0, "value": 1}, {"source": 233, "target": 0, "value": 1}, {"source": 234, "target": 0, "value": 1}, {"source": 235, "target": 0, "value": 1}, {"source": 236, "target": 0, "value": 1}, {"source": 237, "target": 0, "value": 1}, {"source": 238, "target": 0, "value": 1}, {"source": 239, "target": 0, "value": 1}, {"source": 240, "target": 0, "value": 1}, {"source": 241, "target": 0, "value": 1}, {"source": 242, "target": 0, "value": 1}, {"source": 243, "target": 0, "value": 1}, {"source": 244, "target": 0, "value": 1}, {"source": 245, "target": 0, "value": 1}, {"source": 246, "target": 0, "value": 1}, {"source": 247, "target": 0, "value": 1}, {"source": 248, "target": 0, "value": 1}, {"source": 249, "target": 0, "value": 1}, {"source": 250, "target": 0, "value": 1}, {"source": 251, "target": 0, "value": 1}, {"source": 252, "target": 0, "value": 1}, {"source": 253, "target": 0, "value": 1}, {"source": 254, "target": 0, "value": 1}, {"source": 255, "target": 0, "value": 1}, {"source": 256, "target": 0, "value": 1}, {"source": 257, "target": 0, "value": 1}, {"source": 258, "target": 0, "value": 1}, {"source": 259, "target": 0, "value": 1}, {"source": 260, "target": 0, "value": 1}, {"source": 261, "target": 0, "value": 1}, {"source": 262, "target": 0, "value": 1}, {"source": 263, "target": 0, "value": 1}, {"source": 264, "target": 0, "value": 1}, {"source": 265, "target": 0, "value": 1}, {"source": 266, "target": 0, "value": 1}, {"source": 267, "target": 0, "value": 1}, {"source": 268, "target": 0, "value": 1}, {"source": 269, "target": 0, "value": 1}, {"source": 270, "target": 0, "value": 1}, {"source": 271, "target": 0, "value": 1}, {"source": 272, "target": 0, "value": 1}, {"source": 273, "target": 0, "value": 1}, {"source": 274, "target": 0, "value": 1}, {"source": 275, "target": 0, "value": 1}, {"source": 276, "target": 0, "value": 1}, {"source": 277, "target": 0, "value": 1}, {"source": 278, "target": 0, "value": 1}, {"source": 279, "target": 0, "value": 1}, {"source": 280, "target": 0, "value": 1}, {"source": 281, "target": 0, "value": 1}, {"source": 282, "target": 0, "value": 1}, {"source": 283, "target": 0, "value": 1}, {"source": 284, "target": 0, "value": 1}, {"source": 285, "target": 0, "value": 1}, {"source": 286, "target": 0, "value": 1}, {"source": 287, "target": 0, "value": 1}, {"source": 288, "target": 0, "value": 1}, {"source": 289, "target": 0, "value": 1}, {"source": 290, "target": 0, "value": 1}, {"source": 291, "target": 0, "value": 1}, {"source": 292, "target": 0, "value": 1}, {"source": 293, "target": 0, "value": 1}, {"source": 294, "target": 0, "value": 1}, {"source": 295, "target": 0, "value": 1}, {"source": 296, "target": 0, "value": 1}, {"source": 297, "target": 0, "value": 1}, {"source": 298, "target": 0, "value": 1}, {"source": 299, "target": 0, "value": 1}, {"source": 300, "target": 0, "value": 1}, {"source": 301, "target": 0, "value": 1}, {"source": 302, "target": 0, "value": 1}, {"source": 303, "target": 0, "value": 1}, {"source": 304, "target": 0, "value": 1}, {"source": 305, "target": 0, "value": 1}, {"source": 306, "target": 0, "value": 1}, {"source": 307, "target": 0, "value": 1}, {"source": 308, "target": 0, "value": 1}, {"source": 309, "target": 0, "value": 1}, {"source": 310, "target": 0, "value": 1}, {"source": 311, "target": 0, "value": 1}, {"source": 312, "target": 0, "value": 1}, {"source": 313, "target": 0, "value": 1}, {"source": 314, "target": 0, "value": 1}, {"source": 315, "target": 0, "value": 1}, {"source": 316, "target": 0, "value": 1}, {"source": 317, "target": 0, "value": 1}, {"source": 318, "target": 0, "value": 1}, {"source": 319, "target": 0, "value": 1}, {"source": 320, "target": 0, "value": 1}, {"source": 321, "target": 0, "value": 1}, {"source": 322, "target": 0, "value": 1}, {"source": 323, "target": 0, "value": 1}, {"source": 324, "target": 0, "value": 1}, {"source": 325, "target": 0, "value": 1}, {"source": 326, "target": 0, "value": 1}, {"source": 327, "target": 0, "value": 1}, {"source": 328, "target": 0, "value": 1}, {"source": 329, "target": 0, "value": 1}, {"source": 330, "target": 0, "value": 1}, {"source": 331, "target": 0, "value": 1}, {"source": 332, "target": 0, "value": 1}, {"source": 333, "target": 0, "value": 1}, {"source": 334, "target": 0, "value": 1}, {"source": 335, "target": 0, "value": 1}, {"source": 336, "target": 0, "value": 1}, {"source": 337, "target": 0, "value": 1}, {"source": 338, "target": 0, "value": 1}, {"source": 339, "target": 0, "value": 1}, {"source": 340, "target": 0, "value": 1}, {"source": 341, "target": 0, "value": 1}, {"source": 342, "target": 0, "value": 1}, {"source": 343, "target": 0, "value": 1}, {"source": 344, "target": 0, "value": 1}, {"source": 345, "target": 0, "value": 1}, {"source": 346, "target": 0, "value": 1}, {"source": 347, "target": 0, "value": 1}, {"source": 348, "target": 0, "value": 1}, {"source": 349, "target": 0, "value": 1}, {"source": 350, "target": 0, "value": 1}, {"source": 351, "target": 0, "value": 1}, {"source": 352, "target": 0, "value": 1}, {"source": 353, "target": 0, "value": 1}, {"source": 354, "target": 0, "value": 1}, {"source": 355, "target": 0, "value": 1}, {"source": 356, "target": 0, "value": 1}, {"source": 357, "target": 0, "value": 1}, {"source": 358, "target": 0, "value": 1}, {"source": 359, "target": 0, "value": 1}, {"source": 360, "target": 0, "value": 1}, {"source": 361, "target": 0, "value": 1}, {"source": 362, "target": 0, "value": 1}, {"source": 363, "target": 0, "value": 1}, {"source": 364, "target": 0, "value": 1}, {"source": 365, "target": 0, "value": 1}, {"source": 366, "target": 0, "value": 1}, {"source": 367, "target": 0, "value": 1}, {"source": 368, "target": 0, "value": 1}, {"source": 369, "target": 0, "value": 1}, {"source": 370, "target": 0, "value": 1}, {"source": 371, "target": 0, "value": 1}, {"source": 372, "target": 0, "value": 1}, {"source": 373, "target": 0, "value": 1}, {"source": 374, "target": 0, "value": 1}, {"source": 375, "target": 0, "value": 1}, {"source": 376, "target": 0, "value": 1}, {"source": 377, "target": 0, "value": 1}, {"source": 378, "target": 0, "value": 1}, {"source": 379, "target": 0, "value": 1}, {"source": 380, "target": 0, "value": 1}, {"source": 381, "target": 0, "value": 1}, {"source": 382, "target": 0, "value": 1}, {"source": 383, "target": 0, "value": 1}, {"source": 384, "target": 0, "value": 1}, {"source": 385, "target": 0, "value": 1}, {"source": 386, "target": 0, "value": 1}, {"source": 387, "target": 0, "value": 1}, {"source": 388, "target": 0, "value": 1}, {"source": 389, "target": 0, "value": 1}, {"source": 390, "target": 0, "value": 1}, {"source": 391, "target": 0, "value": 1}, {"source": 392, "target": 0, "value": 1}, {"source": 393, "target": 0, "value": 1}, {"source": 394, "target": 0, "value": 1}, {"source": 395, "target": 0, "value": 1}, {"source": 396, "target": 0, "value": 1}, {"source": 397, "target": 0, "value": 1}, {"source": 398, "target": 0, "value": 1}, {"source": 399, "target": 0, "value": 1}, {"source": 400, "target": 0, "value": 1}, {"source": 401, "target": 0, "value": 1}, {"source": 402, "target": 0, "value": 1}, {"source": 403, "target": 0, "value": 1}, {"source": 404, "target": 0, "value": 1}, {"source": 405, "target": 0, "value": 1}, {"source": 406, "target": 0, "value": 1}, {"source": 407, "target": 0, "value": 1}, {"source": 408, "target": 0, "value": 1}, {"source": 409, "target": 0, "value": 1}, {"source": 410, "target": 0, "value": 1}, {"source": 411, "target": 0, "value": 1}, {"source": 412, "target": 0, "value": 1}, {"source": 413, "target": 0, "value": 1}, {"source": 414, "target": 0, "value": 1}, {"source": 415, "target": 0, "value": 1}, {"source": 416, "target": 0, "value": 1}, {"source": 417, "target": 0, "value": 1}, {"source": 418, "target": 0, "value": 1}, {"source": 419, "target": 0, "value": 1}, {"source": 420, "target": 0, "value": 1}, {"source": 421, "target": 0, "value": 1}, {"source": 422, "target": 0, "value": 1}, {"source": 423, "target": 0, "value": 1}, {"source": 424, "target": 0, "value": 1}, {"source": 425, "target": 0, "value": 1}, {"source": 426, "target": 0, "value": 1}, {"source": 427, "target": 0, "value": 1}, {"source": 428, "target": 0, "value": 1}, {"source": 429, "target": 0, "value": 1}, {"source": 430, "target": 0, "value": 1}, {"source": 431, "target": 0, "value": 1}, {"source": 432, "target": 0, "value": 1}, {"source": 433, "target": 0, "value": 1}, {"source": 434, "target": 0, "value": 1}, {"source": 435, "target": 0, "value": 1}, {"source": 436, "target": 0, "value": 1}, {"source": 437, "target": 0, "value": 1}, {"source": 438, "target": 0, "value": 1}, {"source": 439, "target": 0, "value": 1}, {"source": 440, "target": 0, "value": 1}, {"source": 441, "target": 0, "value": 1}, {"source": 442, "target": 0, "value": 1}, {"source": 443, "target": 0, "value": 1}, {"source": 444, "target": 0, "value": 1}, {"source": 445, "target": 0, "value": 1}, {"source": 446, "target": 0, "value": 1}, {"source": 447, "target": 0, "value": 1}, {"source": 448, "target": 0, "value": 1}, {"source": 449, "target": 0, "value": 1}, {"source": 450, "target": 0, "value": 1}, {"source": 451, "target": 0, "value": 1}, {"source": 452, "target": 0, "value": 1}, {"source": 453, "target": 0, "value": 1}, {"source": 454, "target": 0, "value": 1}, {"source": 455, "target": 0, "value": 1}, {"source": 456, "target": 0, "value": 1}, {"source": 457, "target": 0, "value": 1}, {"source": 458, "target": 0, "value": 1}, {"source": 459, "target": 0, "value": 1}, {"source": 460, "target": 0, "value": 1}, {"source": 461, "target": 0, "value": 1}, {"source": 462, "target": 0, "value": 1}, {"source": 463, "target": 0, "value": 1}, {"source": 464, "target": 0, "value": 1}, {"source": 465, "target": 0, "value": 1}, {"source": 466, "target": 0, "value": 1}, {"source": 467, "target": 0, "value": 1}, {"source": 468, "target": 0, "value": 1}, {"source": 469, "target": 0, "value": 1}, {"source": 470, "target": 0, "value": 1}, {"source": 471, "target": 0, "value": 1}, {"source": 472, "target": 0, "value": 1}, {"source": 473, "target": 0, "value": 1}, {"source": 474, "target": 0, "value": 1}, {"source": 475, "target": 0, "value": 1}, {"source": 476, "target": 0, "value": 1}, {"source": 477, "target": 0, "value": 1}, {"source": 478, "target": 0, "value": 1}, {"source": 479, "target": 0, "value": 1}, {"source": 480, "target": 0, "value": 1}, {"source": 481, "target": 0, "value": 1}, {"source": 482, "target": 0, "value": 1}, {"source": 483, "target": 0, "value": 1}, {"source": 484, "target": 0, "value": 1}, {"source": 485, "target": 0, "value": 1}, {"source": 486, "target": 0, "value": 1}, {"source": 487, "target": 0, "value": 1}, {"source": 488, "target": 0, "value": 1}, {"source": 489, "target": 0, "value": 1}, {"source": 490, "target": 0, "value": 1}, {"source": 491, "target": 0, "value": 1}, {"source": 492, "target": 0, "value": 1}, {"source": 493, "target": 0, "value": 1}, {"source": 494, "target": 0, "value": 1}, {"source": 495, "target": 0, "value": 1}, {"source": 496, "target": 0, "value": 1}, {"source": 497, "target": 0, "value": 1}, {"source": 498, "target": 0, "value": 1}, {"source": 499, "target": 0, "value": 1}, {"source": 500, "target": 0, "value": 1}, {"source": 501, "target": 0, "value": 1}, {"source": 502, "target": 0, "value": 1}, {"source": 503, "target": 0, "value": 1}, {"source": 504, "target": 0, "value": 1}, {"source": 505, "target": 0, "value": 1}, {"source": 506, "target": 0, "value": 1}, {"source": 507, "target": 0, "value": 1}, {"source": 508, "target": 0, "value": 1}, {"source": 509, "target": 0, "value": 1}, {"source": 510, "target": 0, "value": 1}, {"source": 511, "target": 0, "value": 1}, {"source": 512, "target": 0, "value": 1}, {"source": 513, "target": 0, "value": 1}, {"source": 514, "target": 0, "value": 1}, {"source": 515, "target": 0, "value": 1}, {"source": 516, "target": 0, "value": 1}, {"source": 517, "target": 0, "value": 1}, {"source": 518, "target": 0, "value": 1}, {"source": 519, "target": 0, "value": 1}, {"source": 520, "target": 0, "value": 1}, {"source": 521, "target": 0, "value": 1}, {"source": 522, "target": 0, "value": 1}, {"source": 523, "target": 0, "value": 1}, {"source": 524, "target": 0, "value": 1}, {"source": 525, "target": 0, "value": 1}, {"source": 526, "target": 0, "value": 1}, {"source": 527, "target": 0, "value": 1}, {"source": 528, "target": 0, "value": 1}, {"source": 529, "target": 0, "value": 1}, {"source": 530, "target": 0, "value": 1}, {"source": 531, "target": 0, "value": 1}, {"source": 532, "target": 0, "value": 1}, {"source": 533, "target": 0, "value": 1}, {"source": 534, "target": 0, "value": 1}, {"source": 535, "target": 0, "value": 1}, {"source": 536, "target": 0, "value": 1}, {"source": 537, "target": 0, "value": 1}, {"source": 538, "target": 0, "value": 1}, {"source": 539, "target": 0, "value": 1}, {"source": 540, "target": 0, "value": 1}, {"source": 541, "target": 0, "value": 1}, {"source": 542, "target": 0, "value": 1}, {"source": 543, "target": 0, "value": 1}, {"source": 544, "target": 0, "value": 1}, {"source": 545, "target": 0, "value": 1}, {"source": 546, "target": 0, "value": 1}, {"source": 547, "target": 0, "value": 1}, {"source": 548, "target": 0, "value": 1}, {"source": 549, "target": 0, "value": 1}, {"source": 550, "target": 0, "value": 1}, {"source": 551, "target": 0, "value": 1}, {"source": 552, "target": 0, "value": 1}, {"source": 553, "target": 0, "value": 1}, {"source": 554, "target": 0, "value": 1}, {"source": 555, "target": 0, "value": 1}, {"source": 556, "target": 0, "value": 1}, {"source": 557, "target": 0, "value": 1}, {"source": 558, "target": 0, "value": 1}, {"source": 559, "target": 0, "value": 1}, {"source": 560, "target": 0, "value": 1}, {"source": 561, "target": 0, "value": 1}, {"source": 562, "target": 0, "value": 1}, {"source": 563, "target": 0, "value": 1}, {"source": 564, "target": 0, "value": 1}, {"source": 565, "target": 0, "value": 1}, {"source": 566, "target": 0, "value": 1}, {"source": 567, "target": 0, "value": 1}, {"source": 568, "target": 0, "value": 1}, {"source": 569, "target": 0, "value": 1}, {"source": 570, "target": 0, "value": 1}, {"source": 571, "target": 0, "value": 1}, {"source": 572, "target": 0, "value": 1}, {"source": 573, "target": 0, "value": 1}, {"source": 574, "target": 0, "value": 1}, {"source": 575, "target": 0, "value": 1}, {"source": 576, "target": 0, "value": 1}, {"source": 577, "target": 0, "value": 1}, {"source": 578, "target": 0, "value": 1}, {"source": 579, "target": 0, "value": 1}, {"source": 580, "target": 0, "value": 1}, {"source": 581, "target": 0, "value": 1}, {"source": 582, "target": 0, "value": 1}, {"source": 583, "target": 0, "value": 1}, {"source": 584, "target": 0, "value": 1}, {"source": 585, "target": 0, "value": 1}, {"source": 586, "target": 0, "value": 1}, {"source": 587, "target": 0, "value": 1}, {"source": 588, "target": 0, "value": 1}, {"source": 589, "target": 0, "value": 1}, {"source": 590, "target": 0, "value": 1}, {"source": 591, "target": 0, "value": 1}, {"source": 592, "target": 0, "value": 1}, {"source": 593, "target": 0, "value": 1}, {"source": 594, "target": 0, "value": 1}, {"source": 595, "target": 0, "value": 1}, {"source": 596, "target": 0, "value": 1}, {"source": 597, "target": 0, "value": 1}, {"source": 598, "target": 0, "value": 1}, {"source": 599, "target": 0, "value": 1}, {"source": 600, "target": 0, "value": 1}, {"source": 601, "target": 0, "value": 1}, {"source": 602, "target": 0, "value": 1}, {"source": 603, "target": 0, "value": 1}, {"source": 604, "target": 0, "value": 1}, {"source": 605, "target": 0, "value": 1}, {"source": 606, "target": 0, "value": 1}, {"source": 607, "target": 0, "value": 1}, {"source": 608, "target": 0, "value": 1}, {"source": 609, "target": 0, "value": 1}, {"source": 610, "target": 0, "value": 1}, {"source": 611, "target": 0, "value": 1}, {"source": 612, "target": 0, "value": 1}, {"source": 613, "target": 0, "value": 1}, {"source": 614, "target": 0, "value": 1}, {"source": 615, "target": 0, "value": 1}, {"source": 616, "target": 0, "value": 1}, {"source": 617, "target": 0, "value": 1}, {"source": 618, "target": 0, "value": 1}, {"source": 619, "target": 0, "value": 1}, {"source": 620, "target": 0, "value": 1}, {"source": 621, "target": 0, "value": 1}, {"source": 622, "target": 0, "value": 1}, {"source": 623, "target": 0, "value": 1}, {"source": 624, "target": 0, "value": 1}, {"source": 625, "target": 0, "value": 1}, {"source": 626, "target": 0, "value": 1}, {"source": 627, "target": 0, "value": 1}, {"source": 628, "target": 0, "value": 1}, {"source": 629, "target": 0, "value": 1}, {"source": 630, "target": 0, "value": 1}, {"source": 631, "target": 0, "value": 1}, {"source": 632, "target": 0, "value": 1}, {"source": 633, "target": 0, "value": 1}, {"source": 634, "target": 0, "value": 1}, {"source": 635, "target": 0, "value": 1}, {"source": 636, "target": 0, "value": 1}, {"source": 637, "target": 0, "value": 1}, {"source": 638, "target": 0, "value": 1}, {"source": 639, "target": 0, "value": 1}, {"source": 640, "target": 0, "value": 1}, {"source": 641, "target": 0, "value": 1}, {"source": 642, "target": 0, "value": 1}, {"source": 643, "target": 0, "value": 1}, {"source": 644, "target": 0, "value": 1}, {"source": 645, "target": 0, "value": 1}, {"source": 646, "target": 0, "value": 1}, {"source": 647, "target": 0, "value": 1}, {"source": 648, "target": 0, "value": 1}, {"source": 649, "target": 0, "value": 1}, {"source": 650, "target": 0, "value": 1}, {"source": 651, "target": 0, "value": 1}, {"source": 652, "target": 0, "value": 1}, {"source": 653, "target": 0, "value": 1}, {"source": 654, "target": 0, "value": 1}, {"source": 655, "target": 0, "value": 1}, {"source": 656, "target": 0, "value": 1}, {"source": 657, "target": 0, "value": 1}, {"source": 658, "target": 0, "value": 1}, {"source": 659, "target": 0, "value": 1}, {"source": 660, "target": 0, "value": 1}, {"source": 661, "target": 0, "value": 1}, {"source": 662, "target": 0, "value": 1}, {"source": 663, "target": 0, "value": 1}, {"source": 664, "target": 0, "value": 1}, {"source": 665, "target": 0, "value": 1}, {"source": 666, "target": 0, "value": 1}, {"source": 667, "target": 0, "value": 1}, {"source": 668, "target": 0, "value": 1}, {"source": 669, "target": 0, "value": 1}, {"source": 670, "target": 0, "value": 1}, {"source": 671, "target": 0, "value": 1}, {"source": 672, "target": 0, "value": 1}, {"source": 673, "target": 0, "value": 1}, {"source": 674, "target": 0, "value": 1}, {"source": 675, "target": 0, "value": 1}, {"source": 676, "target": 0, "value": 1}, {"source": 677, "target": 0, "value": 1}, {"source": 678, "target": 0, "value": 1}, {"source": 679, "target": 0, "value": 1}, {"source": 680, "target": 0, "value": 1}, {"source": 681, "target": 0, "value": 1}, {"source": 682, "target": 0, "value": 1}, {"source": 683, "target": 0, "value": 1}, {"source": 684, "target": 0, "value": 1}, {"source": 685, "target": 0, "value": 1}, {"source": 686, "target": 0, "value": 1}, {"source": 687, "target": 0, "value": 1}, {"source": 688, "target": 0, "value": 1}, {"source": 689, "target": 0, "value": 1}, {"source": 690, "target": 0, "value": 1}, {"source": 691, "target": 0, "value": 1}, {"source": 692, "target": 0, "value": 1}, {"source": 693, "target": 0, "value": 1}, {"source": 694, "target": 0, "value": 1}, {"source": 695, "target": 0, "value": 1}, {"source": 696, "target": 0, "value": 1}, {"source": 697, "target": 0, "value": 1}, {"source": 698, "target": 0, "value": 1}, {"source": 699, "target": 0, "value": 1}, {"source": 700, "target": 0, "value": 1}, {"source": 701, "target": 0, "value": 1}, {"source": 702, "target": 0, "value": 1}, {"source": 703, "target": 0, "value": 1}, {"source": 704, "target": 0, "value": 1}, {"source": 705, "target": 0, "value": 1}, {"source": 706, "target": 0, "value": 1}, {"source": 707, "target": 0, "value": 1}, {"source": 708, "target": 0, "value": 1}, {"source": 709, "target": 0, "value": 1}, {"source": 710, "target": 0, "value": 1}, {"source": 711, "target": 0, "value": 1}, {"source": 712, "target": 0, "value": 1}, {"source": 713, "target": 0, "value": 1}, {"source": 714, "target": 0, "value": 1}, {"source": 715, "target": 0, "value": 1}, {"source": 716, "target": 0, "value": 1}, {"source": 717, "target": 0, "value": 1}, {"source": 718, "target": 0, "value": 1}, {"source": 719, "target": 0, "value": 1}, {"source": 720, "target": 0, "value": 1}, {"source": 721, "target": 0, "value": 1}, {"source": 722, "target": 0, "value": 1}, {"source": 723, "target": 0, "value": 1}, {"source": 724, "target": 0, "value": 1}, {"source": 725, "target": 0, "value": 1}, {"source": 726, "target": 0, "value": 1}, {"source": 727, "target": 0, "value": 1}, {"source": 728, "target": 0, "value": 1}, {"source": 729, "target": 0, "value": 1}, {"source": 730, "target": 0, "value": 1}, {"source": 731, "target": 0, "value": 1}, {"source": 732, "target": 0, "value": 1}, {"source": 733, "target": 0, "value": 1}, {"source": 734, "target": 0, "value": 1}, {"source": 735, "target": 0, "value": 1}, {"source": 736, "target": 0, "value": 1}, {"source": 737, "target": 0, "value": 1}, {"source": 738, "target": 0, "value": 1}, {"source": 739, "target": 0, "value": 1}, {"source": 740, "target": 0, "value": 1}, {"source": 741, "target": 0, "value": 1}, {"source": 742, "target": 0, "value": 1}, {"source": 743, "target": 0, "value": 1}, {"source": 744, "target": 0, "value": 1}, {"source": 745, "target": 0, "value": 1}, {"source": 746, "target": 0, "value": 1}, {"source": 747, "target": 0, "value": 1}, {"source": 748, "target": 0, "value": 1}, {"source": 749, "target": 0, "value": 1}, {"source": 750, "target": 0, "value": 1}, {"source": 751, "target": 0, "value": 1}, {"source": 752, "target": 0, "value": 1}, {"source": 753, "target": 0, "value": 1}, {"source": 754, "target": 0, "value": 1}, {"source": 755, "target": 0, "value": 1}, {"source": 756, "target": 0, "value": 1}, {"source": 757, "target": 0, "value": 1}, {"source": 758, "target": 0, "value": 1}, {"source": 759, "target": 0, "value": 1}, {"source": 760, "target": 0, "value": 1}, {"source": 761, "target": 0, "value": 1}, {"source": 762, "target": 0, "value": 1}, {"source": 763, "target": 0, "value": 1}, {"source": 764, "target": 0, "value": 1}, {"source": 765, "target": 0, "value": 1}, {"source": 766, "target": 0, "value": 1}, {"source": 767, "target": 0, "value": 1}, {"source": 768, "target": 0, "value": 1}, {"source": 769, "target": 0, "value": 1}, {"source": 770, "target": 0, "value": 1}, {"source": 771, "target": 0, "value": 1}, {"source": 772, "target": 0, "value": 1}, {"source": 773, "target": 0, "value": 1}, {"source": 774, "target": 0, "value": 1}, {"source": 775, "target": 0, "value": 1}, {"source": 776, "target": 0, "value": 1}, {"source": 777, "target": 0, "value": 1}, {"source": 778, "target": 0, "value": 1}, {"source": 779, "target": 0, "value": 1}, {"source": 780, "target": 0, "value": 1}, {"source": 781, "target": 0, "value": 1}, {"source": 782, "target": 0, "value": 1}, {"source": 783, "target": 0, "value": 1}, {"source": 784, "target": 0, "value": 1}, {"source": 785, "target": 0, "value": 1}, {"source": 786, "target": 0, "value": 1}, {"source": 787, "target": 0, "value": 1}, {"source": 788, "target": 0, "value": 1}, {"source": 789, "target": 0, "value": 1}, {"source": 790, "target": 0, "value": 1}, {"source": 791, "target": 0, "value": 1}, {"source": 792, "target": 0, "value": 1}, {"source": 793, "target": 0, "value": 1}, {"source": 794, "target": 0, "value": 1}, {"source": 795, "target": 0, "value": 1}, {"source": 796, "target": 0, "value": 1}, {"source": 797, "target": 0, "value": 1}, {"source": 798, "target": 0, "value": 1}, {"source": 799, "target": 0, "value": 1}, {"source": 800, "target": 0, "value": 1}, {"source": 801, "target": 0, "value": 1}, {"source": 802, "target": 0, "value": 1}, {"source": 803, "target": 0, "value": 1}, {"source": 804, "target": 0, "value": 1}, {"source": 805, "target": 0, "value": 1}, {"source": 806, "target": 0, "value": 1}, {"source": 807, "target": 0, "value": 1}, {"source": 808, "target": 0, "value": 1}, {"source": 809, "target": 0, "value": 1}, {"source": 810, "target": 0, "value": 1}, {"source": 811, "target": 0, "value": 1}, {"source": 812, "target": 0, "value": 1}, {"source": 813, "target": 0, "value": 1}, {"source": 814, "target": 0, "value": 1}, {"source": 815, "target": 0, "value": 1}, {"source": 816, "target": 0, "value": 1}, {"source": 817, "target": 0, "value": 1}, {"source": 818, "target": 0, "value": 1}, {"source": 819, "target": 0, "value": 1}, {"source": 820, "target": 0, "value": 1}, {"source": 821, "target": 0, "value": 1}, {"source": 822, "target": 0, "value": 1}, {"source": 823, "target": 0, "value": 1}, {"source": 824, "target": 0, "value": 1}, {"source": 825, "target": 0, "value": 1}, {"source": 826, "target": 0, "value": 1}, {"source": 827, "target": 0, "value": 1}, {"source": 828, "target": 0, "value": 1}, {"source": 829, "target": 0, "value": 1}, {"source": 830, "target": 0, "value": 1}, {"source": 831, "target": 0, "value": 1}, {"source": 832, "target": 0, "value": 1}, {"source": 833, "target": 0, "value": 1}, {"source": 834, "target": 0, "value": 1}, {"source": 835, "target": 0, "value": 1}, {"source": 836, "target": 0, "value": 1}, {"source": 837, "target": 0, "value": 1}, {"source": 838, "target": 0, "value": 1}, {"source": 839, "target": 0, "value": 1}, {"source": 840, "target": 0, "value": 1}, {"source": 841, "target": 0, "value": 1}, {"source": 842, "target": 0, "value": 1}, {"source": 843, "target": 0, "value": 1}, {"source": 844, "target": 0, "value": 1}, {"source": 845, "target": 0, "value": 1}, {"source": 846, "target": 0, "value": 1}, {"source": 847, "target": 0, "value": 1}, {"source": 848, "target": 0, "value": 1}, {"source": 849, "target": 0, "value": 1}, {"source": 850, "target": 0, "value": 1}, {"source": 851, "target": 0, "value": 1}, {"source": 852, "target": 0, "value": 1}, {"source": 853, "target": 0, "value": 1}, {"source": 854, "target": 0, "value": 1}, {"source": 855, "target": 0, "value": 1}, {"source": 856, "target": 0, "value": 1}, {"source": 857, "target": 0, "value": 1}, {"source": 858, "target": 0, "value": 1}, {"source": 859, "target": 0, "value": 1}, {"source": 860, "target": 0, "value": 1}, {"source": 861, "target": 0, "value": 1}, {"source": 862, "target": 0, "value": 1}, {"source": 863, "target": 0, "value": 1}, {"source": 864, "target": 0, "value": 1}, {"source": 865, "target": 0, "value": 1}, {"source": 866, "target": 0, "value": 1}, {"source": 867, "target": 0, "value": 1}, {"source": 868, "target": 0, "value": 1}, {"source": 869, "target": 0, "value": 1}, {"source": 870, "target": 0, "value": 1}, {"source": 871, "target": 0, "value": 1}, {"source": 872, "target": 0, "value": 1}, {"source": 873, "target": 0, "value": 1}, {"source": 874, "target": 0, "value": 1}, {"source": 875, "target": 0, "value": 1}, {"source": 876, "target": 0, "value": 1}, {"source": 877, "target": 0, "value": 1}, {"source": 878, "target": 0, "value": 1}, {"source": 879, "target": 0, "value": 1}, {"source": 880, "target": 0, "value": 1}, {"source": 881, "target": 0, "value": 1}, {"source": 882, "target": 0, "value": 1}, {"source": 883, "target": 0, "value": 1}, {"source": 884, "target": 0, "value": 1}, {"source": 885, "target": 0, "value": 1}, {"source": 886, "target": 0, "value": 1}, {"source": 887, "target": 0, "value": 1}, {"source": 888, "target": 0, "value": 1}, {"source": 889, "target": 0, "value": 1}, {"source": 890, "target": 0, "value": 1}, {"source": 891, "target": 0, "value": 1}, {"source": 892, "target": 0, "value": 1}, {"source": 893, "target": 0, "value": 1}, {"source": 894, "target": 0, "value": 1}, {"source": 895, "target": 0, "value": 1}, {"source": 896, "target": 0, "value": 1}, {"source": 897, "target": 0, "value": 1}, {"source": 898, "target": 0, "value": 1}, {"source": 899, "target": 0, "value": 1}, {"source": 900, "target": 0, "value": 1}, {"source": 901, "target": 0, "value": 1}, {"source": 902, "target": 0, "value": 1}, {"source": 903, "target": 0, "value": 1}, {"source": 904, "target": 0, "value": 1}, {"source": 905, "target": 0, "value": 1}, {"source": 906, "target": 0, "value": 1}, {"source": 907, "target": 0, "value": 1}, {"source": 908, "target": 0, "value": 1}, {"source": 909, "target": 0, "value": 1}, {"source": 910, "target": 0, "value": 1}, {"source": 911, "target": 0, "value": 1}, {"source": 912, "target": 0, "value": 1}, {"source": 913, "target": 0, "value": 1}, {"source": 914, "target": 0, "value": 1}, {"source": 915, "target": 0, "value": 1}, {"source": 916, "target": 0, "value": 1}, {"source": 917, "target": 0, "value": 1}, {"source": 918, "target": 0, "value": 1}, {"source": 919, "target": 0, "value": 1}, {"source": 920, "target": 0, "value": 1}, {"source": 921, "target": 0, "value": 1}, {"source": 922, "target": 0, "value": 1}, {"source": 923, "target": 0, "value": 1}, {"source": 924, "target": 0, "value": 1}, {"source": 925, "target": 0, "value": 1}, {"source": 926, "target": 0, "value": 1}, {"source": 927, "target": 0, "value": 1}, {"source": 928, "target": 0, "value": 1}, {"source": 929, "target": 0, "value": 1}, {"source": 930, "target": 0, "value": 1}, {"source": 931, "target": 0, "value": 1}, {"source": 932, "target": 0, "value": 1}, {"source": 933, "target": 0, "value": 1}, {"source": 934, "target": 0, "value": 1}, {"source": 935, "target": 0, "value": 1}, {"source": 936, "target": 0, "value": 1}, {"source": 937, "target": 0, "value": 1}, {"source": 938, "target": 0, "value": 1}, {"source": 939, "target": 0, "value": 1}, {"source": 940, "target": 0, "value": 1}, {"source": 941, "target": 0, "value": 1}, {"source": 942, "target": 0, "value": 1}, {"source": 943, "target": 0, "value": 1}, {"source": 944, "target": 0, "value": 1}, {"source": 945, "target": 0, "value": 1}, {"source": 946, "target": 0, "value": 1}, {"source": 947, "target": 0, "value": 1}, {"source": 948, "target": 0, "value": 1}, {"source": 949, "target": 0, "value": 1}, {"source": 950, "target": 0, "value": 1}, {"source": 951, "target": 0, "value": 1}, {"source": 952, "target": 0, "value": 1}, {"source": 953, "target": 0, "value": 1}, {"source": 954, "target": 0, "value": 1}, {"source": 955, "target": 0, "value": 1}, {"source": 956, "target": 0, "value": 1}, {"source": 957, "target": 0, "value": 1}, {"source": 958, "target": 0, "value": 1}, {"source": 959, "target": 0, "value": 1}, {"source": 960, "target": 0, "value": 1}, {"source": 961, "target": 0, "value": 1}, {"source": 962, "target": 0, "value": 1}, {"source": 963, "target": 0, "value": 1}, {"source": 964, "target": 0, "value": 1}, {"source": 965, "target": 0, "value": 1}, {"source": 966, "target": 0, "value": 1}, {"source": 967, "target": 0, "value": 1}, {"source": 968, "target": 0, "value": 1}, {"source": 969, "target": 0, "value": 1}, {"source": 970, "target": 0, "value": 1}, {"source": 971, "target": 0, "value": 1}, {"source": 972, "target": 0, "value": 1}, {"source": 973, "target": 0, "value": 1}, {"source": 974, "target": 0, "value": 1}, {"source": 975, "target": 0, "value": 1}, {"source": 976, "target": 0, "value": 1}, {"source": 977, "target": 0, "value": 1}, {"source": 978, "target": 0, "value": 1}, {"source": 979, "target": 0, "value": 1}, {"source": 980, "target": 0, "value": 1}, {"source": 981, "target": 0, "value": 1}, {"source": 982, "target": 0, "value": 1}, {"source": 983, "target": 0, "value": 1}, {"source": 984, "target": 0, "value": 1}, {"source": 985, "target": 0, "value": 1}, {"source": 986, "target": 0, "value": 1}, {"source": 987, "target": 0, "value": 1}, {"source": 988, "target": 0, "value": 1}, {"source": 989, "target": 0, "value": 1}, {"source": 990, "target": 0, "value": 1}, {"source": 991, "target": 0, "value": 1}, {"source": 992, "target": 0, "value": 1}, {"source": 993, "target": 0, "value": 1}, {"source": 994, "target": 0, "value": 1}, {"source": 995, "target": 0, "value": 1}, {"source": 996, "target": 0, "value": 1}, {"source": 997, "target": 0, "value": 1}, {"source": 998, "target": 0, "value": 1}, {"source": 999, "target": 0, "value": 1}, {"source": 1000, "target": 0, "value": 1}, {"source": 1001, "target": 0, "value": 1}, {"source": 1002, "target": 0, "value": 1}, {"source": 1003, "target": 0, "value": 1}, {"source": 1004, "target": 0, "value": 1}, {"source": 1005, "target": 0, "value": 1}, {"source": 1006, "target": 0, "value": 1}, {"source": 1007, "target": 0, "value": 1}, {"source": 1008, "target": 0, "value": 1}, {"source": 1009, "target": 0, "value": 1}, {"source": 1010, "target": 0, "value": 1}, {"source": 1011, "target": 0, "value": 1}, {"source": 1012, "target": 0, "value": 1}, {"source": 1013, "target": 0, "value": 1}, {"source": 1014, "target": 0, "value": 1}, {"source": 1015, "target": 0, "value": 1}, {"source": 1016, "target": 0, "value": 1}, {"source": 1017, "target": 0, "value": 1}, {"source": 1018, "target": 0, "value": 1}, {"source": 1019, "target": 0, "value": 1}, {"source": 1020, "target": 0, "value": 1}, {"source": 1021, "target": 0, "value": 1}, {"source": 1022, "target": 0, "value": 1}, {"source": 1023, "target": 0, "value": 1}, {"source": 1024, "target": 0, "value": 1}, {"source": 1025, "target": 0, "value": 1}, {"source": 1026, "target": 0, "value": 1}, {"source": 1027, "target": 0, "value": 1}, {"source": 1028, "target": 0, "value": 1}, {"source": 1029, "target": 0, "value": 1}, {"source": 1030, "target": 0, "value": 1}, {"source": 1031, "target": 0, "value": 1}, {"source": 1032, "target": 0, "value": 1}, {"source": 1033, "target": 0, "value": 1}, {"source": 1034, "target": 0, "value": 1}, {"source": 1035, "target": 0, "value": 1}, {"source": 1036, "target": 0, "value": 1}, {"source": 1037, "target": 0, "value": 1}, {"source": 1038, "target": 0, "value": 1}, {"source": 1039, "target": 0, "value": 1}, {"source": 1040, "target": 0, "value": 1}, {"source": 1041, "target": 0, "value": 1}, {"source": 1042, "target": 0, "value": 1}, {"source": 1043, "target": 0, "value": 1}, {"source": 1044, "target": 0, "value": 1}, {"source": 1045, "target": 0, "value": 1}, {"source": 1046, "target": 0, "value": 1}, {"source": 1047, "target": 0, "value": 1}, {"source": 1048, "target": 0, "value": 1}, {"source": 1049, "target": 0, "value": 1}, {"source": 1050, "target": 0, "value": 1}, {"source": 1051, "target": 0, "value": 1}, {"source": 1052, "target": 0, "value": 1}, {"source": 1053, "target": 0, "value": 1}, {"source": 1054, "target": 0, "value": 1}, {"source": 1055, "target": 0, "value": 1}, {"source": 1056, "target": 0, "value": 1}, {"source": 1057, "target": 0, "value": 1}, {"source": 1058, "target": 0, "value": 1}, {"source": 1059, "target": 0, "value": 1}, {"source": 1060, "target": 0, "value": 1}, {"source": 1061, "target": 0, "value": 1}, {"source": 1062, "target": 0, "value": 1}, {"source": 1063, "target": 0, "value": 1}, {"source": 1064, "target": 0, "value": 1}, {"source": 1065, "target": 0, "value": 1}, {"source": 1066, "target": 0, "value": 1}, {"source": 1067, "target": 0, "value": 1}, {"source": 1068, "target": 0, "value": 1}, {"source": 1069, "target": 0, "value": 1}, {"source": 1070, "target": 0, "value": 1}, {"source": 1071, "target": 0, "value": 1}, {"source": 1072, "target": 0, "value": 1}, {"source": 1073, "target": 0, "value": 1}, {"source": 1074, "target": 0, "value": 1}, {"source": 1075, "target": 0, "value": 1}, {"source": 1076, "target": 0, "value": 1}, {"source": 1077, "target": 0, "value": 1}, {"source": 1078, "target": 0, "value": 1}, {"source": 1079, "target": 0, "value": 1}, {"source": 1080, "target": 0, "value": 1}, {"source": 1081, "target": 0, "value": 1}, {"source": 1082, "target": 0, "value": 1}, {"source": 1083, "target": 0, "value": 1}, {"source": 1084, "target": 0, "value": 1}, {"source": 1085, "target": 0, "value": 1}, {"source": 1086, "target": 0, "value": 1}, {"source": 1087, "target": 0, "value": 1}, {"source": 1088, "target": 0, "value": 1}, {"source": 1089, "target": 0, "value": 1}, {"source": 1090, "target": 0, "value": 1}, {"source": 1091, "target": 0, "value": 1}, {"source": 1092, "target": 0, "value": 1}, {"source": 1093, "target": 0, "value": 1}, {"source": 1094, "target": 0, "value": 1}, {"source": 1095, "target": 0, "value": 1}, {"source": 1096, "target": 0, "value": 1}, {"source": 1097, "target": 0, "value": 1}, {"source": 1098, "target": 0, "value": 1}, {"source": 1099, "target": 0, "value": 1}, {"source": 1100, "target": 0, "value": 1}, {"source": 1101, "target": 0, "value": 1}, {"source": 1102, "target": 0, "value": 1}, {"source": 1103, "target": 0, "value": 1}, {"source": 1104, "target": 0, "value": 1}, {"source": 1105, "target": 0, "value": 1}, {"source": 1106, "target": 0, "value": 1}, {"source": 1107, "target": 0, "value": 1}, {"source": 1108, "target": 0, "value": 1}, {"source": 1109, "target": 0, "value": 1}, {"source": 1110, "target": 0, "value": 1}, {"source": 1111, "target": 0, "value": 1}, {"source": 1112, "target": 0, "value": 1}, {"source": 1113, "target": 0, "value": 1}, {"source": 1114, "target": 0, "value": 1}, {"source": 1115, "target": 0, "value": 1}, {"source": 1116, "target": 0, "value": 1}, {"source": 1117, "target": 0, "value": 1}, {"source": 1118, "target": 0, "value": 1}, {"source": 1119, "target": 0, "value": 1}, {"source": 1120, "target": 0, "value": 1}, {"source": 1121, "target": 0, "value": 1}, {"source": 1122, "target": 0, "value": 1}, {"source": 1123, "target": 0, "value": 1}, {"source": 1124, "target": 0, "value": 1}, {"source": 1125, "target": 0, "value": 1}, {"source": 1126, "target": 0, "value": 1}, {"source": 1127, "target": 0, "value": 1}, {"source": 1128, "target": 0, "value": 1}, {"source": 1129, "target": 0, "value": 1}, {"source": 1130, "target": 0, "value": 1}, {"source": 1131, "target": 0, "value": 1}, {"source": 1132, "target": 0, "value": 1}, {"source": 1133, "target": 0, "value": 1}, {"source": 1134, "target": 0, "value": 1}, {"source": 1135, "target": 0, "value": 1}, {"source": 1136, "target": 0, "value": 1}, {"source": 1137, "target": 0, "value": 1}, {"source": 1138, "target": 0, "value": 1}, {"source": 1139, "target": 0, "value": 1}, {"source": 1140, "target": 0, "value": 1}, {"source": 1141, "target": 0, "value": 1}, {"source": 1142, "target": 0, "value": 1}, {"source": 1143, "target": 0, "value": 1}, {"source": 1144, "target": 0, "value": 1}, {"source": 1145, "target": 0, "value": 1}, {"source": 1146, "target": 0, "value": 1}, {"source": 1147, "target": 0, "value": 1}, {"source": 1148, "target": 0, "value": 1}, {"source": 1149, "target": 0, "value": 1}, {"source": 1150, "target": 0, "value": 1}, {"source": 1151, "target": 0, "value": 1}, {"source": 1152, "target": 0, "value": 1}, {"source": 1153, "target": 0, "value": 1}, {"source": 1154, "target": 0, "value": 1}, {"source": 1155, "target": 0, "value": 1}, {"source": 1156, "target": 0, "value": 1}, {"source": 1157, "target": 0, "value": 1}, {"source": 1158, "target": 0, "value": 1}, {"source": 1159, "target": 0, "value": 1}, {"source": 1160, "target": 0, "value": 1}, {"source": 1161, "target": 0, "value": 1}, {"source": 1162, "target": 0, "value": 1}, {"source": 1163, "target": 0, "value": 1}, {"source": 1164, "target": 0, "value": 1}, {"source": 1165, "target": 0, "value": 1}, {"source": 1166, "target": 0, "value": 1}, {"source": 1167, "target": 0, "value": 1}, {"source": 1168, "target": 0, "value": 1}, {"source": 1169, "target": 0, "value": 1}, {"source": 1170, "target": 0, "value": 1}, {"source": 1171, "target": 0, "value": 1}, {"source": 1172, "target": 0, "value": 1}, {"source": 1173, "target": 0, "value": 1}, {"source": 1174, "target": 0, "value": 1}, {"source": 1175, "target": 0, "value": 1}, {"source": 1176, "target": 0, "value": 1}, {"source": 1177, "target": 0, "value": 1}, {"source": 1178, "target": 0, "value": 1}, {"source": 1179, "target": 0, "value": 1}, {"source": 1180, "target": 0, "value": 1}, {"source": 1181, "target": 0, "value": 1}, {"source": 1182, "target": 0, "value": 1}, {"source": 1183, "target": 0, "value": 1}, {"source": 1184, "target": 0, "value": 1}, {"source": 1185, "target": 0, "value": 1}, {"source": 1186, "target": 0, "value": 1}, {"source": 1187, "target": 0, "value": 1}, {"source": 1188, "target": 0, "value": 1}, {"source": 1189, "target": 0, "value": 1}, {"source": 1190, "target": 0, "value": 1}, {"source": 1191, "target": 0, "value": 1}, {"source": 1192, "target": 0, "value": 1}, {"source": 1193, "target": 0, "value": 1}, {"source": 1194, "target": 0, "value": 1}, {"source": 1195, "target": 0, "value": 1}, {"source": 1196, "target": 0, "value": 1}, {"source": 1197, "target": 0, "value": 1}, {"source": 1198, "target": 0, "value": 1}, {"source": 1199, "target": 0, "value": 1}, {"source": 1200, "target": 0, "value": 1}, {"source": 1201, "target": 0, "value": 1}, {"source": 1202, "target": 0, "value": 1}, {"source": 1203, "target": 0, "value": 1}, {"source": 1204, "target": 0, "value": 1}, {"source": 1205, "target": 0, "value": 1}, {"source": 1206, "target": 0, "value": 1}, {"source": 1207, "target": 0, "value": 1}, {"source": 1208, "target": 0, "value": 1}, {"source": 1209, "target": 0, "value": 1}, {"source": 1210, "target": 0, "value": 1}, {"source": 1211, "target": 0, "value": 1}, {"source": 1212, "target": 0, "value": 1}, {"source": 1213, "target": 0, "value": 1}, {"source": 1214, "target": 0, "value": 1}, {"source": 1215, "target": 0, "value": 1}, {"source": 1216, "target": 0, "value": 1}, {"source": 1217, "target": 0, "value": 1}, {"source": 1218, "target": 0, "value": 1}, {"source": 1219, "target": 0, "value": 1}, {"source": 1220, "target": 0, "value": 1}, {"source": 1221, "target": 0, "value": 1}, {"source": 1222, "target": 0, "value": 1}, {"source": 1223, "target": 0, "value": 1}, {"source": 1224, "target": 0, "value": 1}, {"source": 1225, "target": 0, "value": 1}, {"source": 1226, "target": 0, "value": 1}, {"source": 1227, "target": 0, "value": 1}, {"source": 1228, "target": 0, "value": 1}, {"source": 1229, "target": 0, "value": 1}, {"source": 1230, "target": 0, "value": 1}, {"source": 1231, "target": 0, "value": 1}, {"source": 1232, "target": 0, "value": 1}, {"source": 1233, "target": 0, "value": 1}, {"source": 1234, "target": 0, "value": 1}, {"source": 1235, "target": 0, "value": 1}, {"source": 1236, "target": 0, "value": 1}, {"source": 1237, "target": 0, "value": 1}, {"source": 1238, "target": 0, "value": 1}, {"source": 1239, "target": 0, "value": 1}, {"source": 1240, "target": 0, "value": 1}, {"source": 1241, "target": 0, "value": 1}, {"source": 1242, "target": 0, "value": 1}, {"source": 1243, "target": 0, "value": 1}, {"source": 1244, "target": 0, "value": 1}, {"source": 1245, "target": 0, "value": 1}, {"source": 1246, "target": 0, "value": 1}, {"source": 1247, "target": 0, "value": 1}, {"source": 1248, "target": 0, "value": 1}, {"source": 1249, "target": 0, "value": 1}, {"source": 1250, "target": 0, "value": 1}, {"source": 1251, "target": 0, "value": 1}, {"source": 1252, "target": 0, "value": 1}, {"source": 1253, "target": 0, "value": 1}, {"source": 1254, "target": 0, "value": 1}, {"source": 1255, "target": 0, "value": 1}, {"source": 1256, "target": 0, "value": 1}, {"source": 1257, "target": 0, "value": 1}, {"source": 1258, "target": 0, "value": 1}, {"source": 1259, "target": 0, "value": 1}, {"source": 1260, "target": 0, "value": 1}, {"source": 1261, "target": 0, "value": 1}, {"source": 1262, "target": 0, "value": 1}, {"source": 1263, "target": 0, "value": 1}, {"source": 1264, "target": 0, "value": 1}, {"source": 1265, "target": 0, "value": 1}, {"source": 1266, "target": 0, "value": 1}, {"source": 1267, "target": 0, "value": 1}, {"source": 1268, "target": 0, "value": 1}, {"source": 1269, "target": 0, "value": 1}, {"source": 1270, "target": 0, "value": 1}, {"source": 1271, "target": 0, "value": 1}, {"source": 1272, "target": 0, "value": 1}, {"source": 1273, "target": 0, "value": 1}, {"source": 1274, "target": 0, "value": 1}, {"source": 1275, "target": 0, "value": 1}, {"source": 1276, "target": 0, "value": 1}, {"source": 1277, "target": 0, "value": 1}, {"source": 1278, "target": 0, "value": 1}, {"source": 1279, "target": 0, "value": 1}, {"source": 1280, "target": 0, "value": 1}, {"source": 1281, "target": 0, "value": 1}, {"source": 1282, "target": 0, "value": 1}, {"source": 1283, "target": 0, "value": 1}, {"source": 1284, "target": 0, "value": 1}, {"source": 1285, "target": 0, "value": 1}, {"source": 1286, "target": 0, "value": 1}, {"source": 1287, "target": 0, "value": 1}, {"source": 1288, "target": 0, "value": 1}, {"source": 1289, "target": 0, "value": 1}, {"source": 1290, "target": 0, "value": 1}, {"source": 1291, "target": 0, "value": 1}, {"source": 1292, "target": 0, "value": 1}, {"source": 1293, "target": 0, "value": 1}, {"source": 1294, "target": 0, "value": 1}, {"source": 1295, "target": 0, "value": 1}, {"source": 1296, "target": 0, "value": 1}, {"source": 1297, "target": 0, "value": 1}, {"source": 1298, "target": 0, "value": 1}, {"source": 1299, "target": 0, "value": 1}, {"source": 1300, "target": 0, "value": 1}, {"source": 1301, "target": 0, "value": 1}, {"source": 1302, "target": 0, "value": 1}, {"source": 1303, "target": 0, "value": 1}, {"source": 1304, "target": 0, "value": 1}, {"source": 1305, "target": 0, "value": 1}, {"source": 1306, "target": 0, "value": 1}, {"source": 1307, "target": 0, "value": 1}, {"source": 1308, "target": 0, "value": 1}, {"source": 1309, "target": 0, "value": 1}, {"source": 1310, "target": 0, "value": 1}, {"source": 1311, "target": 0, "value": 1}, {"source": 1312, "target": 0, "value": 1}, {"source": 1313, "target": 0, "value": 1}, {"source": 1314, "target": 0, "value": 1}, {"source": 1315, "target": 0, "value": 1}, {"source": 1316, "target": 0, "value": 1}, {"source": 1317, "target": 0, "value": 1}, {"source": 1318, "target": 0, "value": 1}, {"source": 1319, "target": 0, "value": 1}, {"source": 1320, "target": 0, "value": 1}, {"source": 1321, "target": 0, "value": 1}, {"source": 1322, "target": 0, "value": 1}, {"source": 1323, "target": 0, "value": 1}, {"source": 1324, "target": 0, "value": 1}, {"source": 1325, "target": 0, "value": 1}, {"source": 1326, "target": 0, "value": 1}, {"source": 1327, "target": 0, "value": 1}, {"source": 1328, "target": 0, "value": 1}, {"source": 1329, "target": 0, "value": 1}, {"source": 1330, "target": 0, "value": 1}, {"source": 1331, "target": 0, "value": 1}, {"source": 1332, "target": 0, "value": 1}, {"source": 1333, "target": 0, "value": 1}, {"source": 1334, "target": 0, "value": 1}, {"source": 1335, "target": 0, "value": 1}, {"source": 1336, "target": 0, "value": 1}, {"source": 1337, "target": 0, "value": 1}, {"source": 1338, "target": 0, "value": 1}, {"source": 1339, "target": 0, "value": 1}, {"source": 1340, "target": 0, "value": 1}, {"source": 1341, "target": 0, "value": 1}, {"source": 1342, "target": 0, "value": 1}, {"source": 1343, "target": 0, "value": 1}, {"source": 1344, "target": 0, "value": 1}, {"source": 1345, "target": 0, "value": 1}, {"source": 1346, "target": 0, "value": 1}, {"source": 1347, "target": 0, "value": 1}, {"source": 1348, "target": 0, "value": 1}, {"source": 1349, "target": 0, "value": 1}, {"source": 1350, "target": 0, "value": 1}, {"source": 1351, "target": 0, "value": 1}, {"source": 1352, "target": 0, "value": 1}, {"source": 1353, "target": 0, "value": 1}, {"source": 1354, "target": 0, "value": 1}, {"source": 1355, "target": 0, "value": 1}, {"source": 1356, "target": 0, "value": 1}, {"source": 1357, "target": 0, "value": 1}, {"source": 1358, "target": 0, "value": 1}, {"source": 1359, "target": 0, "value": 1}, {"source": 1360, "target": 0, "value": 1}, {"source": 1361, "target": 0, "value": 1}, {"source": 1362, "target": 0, "value": 1}, {"source": 1363, "target": 0, "value": 1}, {"source": 1364, "target": 0, "value": 1}, {"source": 1365, "target": 0, "value": 1}, {"source": 1366, "target": 0, "value": 1}, {"source": 1367, "target": 0, "value": 1}, {"source": 1368, "target": 0, "value": 1}, {"source": 1369, "target": 0, "value": 1}, {"source": 1370, "target": 0, "value": 1}, {"source": 1371, "target": 0, "value": 1}, {"source": 1372, "target": 0, "value": 1}, {"source": 1373, "target": 0, "value": 1}, {"source": 1374, "target": 0, "value": 1}, {"source": 1375, "target": 0, "value": 1}, {"source": 1376, "target": 0, "value": 1}, {"source": 1377, "target": 0, "value": 1}, {"source": 1378, "target": 0, "value": 1}, {"source": 1379, "target": 0, "value": 1}, {"source": 1380, "target": 0, "value": 1}, {"source": 1381, "target": 0, "value": 1}, {"source": 1382, "target": 0, "value": 1}, {"source": 1383, "target": 0, "value": 1}, {"source": 1384, "target": 0, "value": 1}, {"source": 1385, "target": 0, "value": 1}, {"source": 1386, "target": 0, "value": 1}, {"source": 1387, "target": 0, "value": 1}, {"source": 1388, "target": 0, "value": 1}, {"source": 1389, "target": 0, "value": 1}, {"source": 1390, "target": 0, "value": 1}, {"source": 1391, "target": 0, "value": 1}, {"source": 1392, "target": 0, "value": 1}, {"source": 1393, "target": 0, "value": 1}, {"source": 1394, "target": 0, "value": 1}, {"source": 1395, "target": 0, "value": 1}, {"source": 1396, "target": 0, "value": 1}, {"source": 1397, "target": 0, "value": 1}, {"source": 1398, "target": 0, "value": 1}, {"source": 1399, "target": 0, "value": 1}, {"source": 1400, "target": 0, "value": 1}, {"source": 1401, "target": 0, "value": 1}, {"source": 1402, "target": 0, "value": 1}, {"source": 1403, "target": 0, "value": 1}, {"source": 1404, "target": 0, "value": 1}, {"source": 1405, "target": 0, "value": 1}, {"source": 1406, "target": 0, "value": 1}, {"source": 1407, "target": 0, "value": 1}, {"source": 1408, "target": 0, "value": 1}, {"source": 1409, "target": 0, "value": 1}, {"source": 1410, "target": 0, "value": 1}, {"source": 1411, "target": 0, "value": 1}, {"source": 1412, "target": 0, "value": 1}, {"source": 1413, "target": 0, "value": 1}, {"source": 1414, "target": 0, "value": 1}, {"source": 1415, "target": 0, "value": 1}, {"source": 1416, "target": 0, "value": 1}, {"source": 1417, "target": 0, "value": 1}, {"source": 1418, "target": 0, "value": 1}, {"source": 1419, "target": 0, "value": 1}, {"source": 1420, "target": 0, "value": 1}, {"source": 1421, "target": 0, "value": 1}, {"source": 1422, "target": 0, "value": 1}, {"source": 1423, "target": 0, "value": 1}, {"source": 1424, "target": 0, "value": 1}, {"source": 1425, "target": 0, "value": 1}, {"source": 1426, "target": 0, "value": 1}, {"source": 1427, "target": 0, "value": 1}, {"source": 1428, "target": 0, "value": 1}, {"source": 1429, "target": 0, "value": 1}, {"source": 1430, "target": 0, "value": 1}, {"source": 1431, "target": 0, "value": 1}, {"source": 1432, "target": 0, "value": 1}, {"source": 1433, "target": 0, "value": 1}, {"source": 1434, "target": 0, "value": 1}, {"source": 1435, "target": 0, "value": 1}, {"source": 1436, "target": 0, "value": 1}, {"source": 1437, "target": 0, "value": 1}, {"source": 1438, "target": 0, "value": 1}, {"source": 1439, "target": 0, "value": 1}, {"source": 1440, "target": 0, "value": 1}, {"source": 1441, "target": 0, "value": 1}, {"source": 1442, "target": 0, "value": 1}, {"source": 1443, "target": 0, "value": 1}, {"source": 1444, "target": 0, "value": 1}, {"source": 1445, "target": 0, "value": 1}, {"source": 1446, "target": 0, "value": 1}, {"source": 1447, "target": 0, "value": 1}, {"source": 1448, "target": 0, "value": 1}, {"source": 1449, "target": 0, "value": 1}, {"source": 1450, "target": 0, "value": 1}, {"source": 1451, "target": 0, "value": 1}, {"source": 1452, "target": 0, "value": 1}, {"source": 1453, "target": 0, "value": 1}, {"source": 1454, "target": 0, "value": 1}, {"source": 1455, "target": 0, "value": 1}, {"source": 1456, "target": 0, "value": 1}, {"source": 1457, "target": 0, "value": 1}, {"source": 1458, "target": 0, "value": 1}, {"source": 1459, "target": 0, "value": 1}, {"source": 1460, "target": 0, "value": 1}, {"source": 1461, "target": 0, "value": 1}, {"source": 1462, "target": 0, "value": 1}, {"source": 1463, "target": 0, "value": 1}, {"source": 1464, "target": 0, "value": 1}, {"source": 1465, "target": 0, "value": 1}, {"source": 1466, "target": 0, "value": 1}, {"source": 1467, "target": 0, "value": 1}, {"source": 1468, "target": 0, "value": 1}, {"source": 1469, "target": 0, "value": 1}, {"source": 1470, "target": 0, "value": 1}, {"source": 1471, "target": 0, "value": 1}, {"source": 1472, "target": 0, "value": 1}, {"source": 1473, "target": 0, "value": 1}, {"source": 1474, "target": 0, "value": 1}, {"source": 1475, "target": 0, "value": 1}, {"source": 1476, "target": 0, "value": 1}, {"source": 1477, "target": 0, "value": 1}, {"source": 1478, "target": 0, "value": 1}, {"source": 1479, "target": 0, "value": 1}, {"source": 1480, "target": 0, "value": 1}, {"source": 1481, "target": 0, "value": 1}, {"source": 1482, "target": 0, "value": 1}, {"source": 1483, "target": 0, "value": 1}, {"source": 1484, "target": 0, "value": 1}, {"source": 1485, "target": 0, "value": 1}, {"source": 1486, "target": 0, "value": 1}, {"source": 1487, "target": 0, "value": 1}, {"source": 1488, "target": 0, "value": 1}, {"source": 1489, "target": 0, "value": 1}, {"source": 1490, "target": 0, "value": 1}, {"source": 1491, "target": 0, "value": 1}, {"source": 1492, "target": 0, "value": 1}, {"source": 1493, "target": 0, "value": 1}, {"source": 1494, "target": 0, "value": 1}, {"source": 1495, "target": 0, "value": 1}, {"source": 1496, "target": 0, "value": 1}, {"source": 1497, "target": 0, "value": 1}, {"source": 1498, "target": 0, "value": 1}, {"source": 1499, "target": 0, "value": 1}, {"source": 1500, "target": 0, "value": 1}, {"source": 1501, "target": 0, "value": 1}, {"source": 1502, "target": 0, "value": 1}, {"source": 1503, "target": 0, "value": 1}, {"source": 1504, "target": 0, "value": 1}, {"source": 1505, "target": 0, "value": 1}, {"source": 1506, "target": 0, "value": 1}, {"source": 1507, "target": 0, "value": 1}, {"source": 1508, "target": 0, "value": 1}, {"source": 1509, "target": 0, "value": 1}, {"source": 1510, "target": 0, "value": 1}, {"source": 1511, "target": 0, "value": 1}, {"source": 1512, "target": 0, "value": 1}, {"source": 1513, "target": 0, "value": 1}, {"source": 1514, "target": 0, "value": 1}, {"source": 1515, "target": 0, "value": 1}, {"source": 1516, "target": 0, "value": 1}, {"source": 1517, "target": 0, "value": 1}, {"source": 1518, "target": 0, "value": 1}, {"source": 1519, "target": 0, "value": 1}, {"source": 1520, "target": 0, "value": 1}, {"source": 1521, "target": 0, "value": 1}, {"source": 1522, "target": 0, "value": 1}, {"source": 1523, "target": 0, "value": 1}, {"source": 1524, "target": 0, "value": 1}, {"source": 1525, "target": 0, "value": 1}, {"source": 1526, "target": 0, "value": 1}, {"source": 1527, "target": 0, "value": 1}, {"source": 1528, "target": 0, "value": 1}, {"source": 1529, "target": 0, "value": 1}, {"source": 1530, "target": 0, "value": 1}, {"source": 1531, "target": 0, "value": 1}, {"source": 1532, "target": 0, "value": 1}, {"source": 1533, "target": 0, "value": 1}, {"source": 1534, "target": 0, "value": 1}, {"source": 1535, "target": 0, "value": 1}, {"source": 1536, "target": 0, "value": 1}, {"source": 1537, "target": 0, "value": 1}, {"source": 1538, "target": 0, "value": 1}, {"source": 1539, "target": 0, "value": 1}, {"source": 1540, "target": 0, "value": 1}, {"source": 1541, "target": 0, "value": 1}, {"source": 1542, "target": 0, "value": 1}, {"source": 1543, "target": 0, "value": 1}, {"source": 1544, "target": 0, "value": 1}, {"source": 1545, "target": 0, "value": 1}, {"source": 1546, "target": 0, "value": 1}, {"source": 1547, "target": 0, "value": 1}, {"source": 1548, "target": 0, "value": 1}, {"source": 1549, "target": 0, "value": 1}, {"source": 1550, "target": 0, "value": 1}, {"source": 1551, "target": 0, "value": 1}, {"source": 1552, "target": 0, "value": 1}, {"source": 1553, "target": 0, "value": 1}, {"source": 1554, "target": 0, "value": 1}, {"source": 1555, "target": 0, "value": 1}, {"source": 1556, "target": 0, "value": 1}, {"source": 1557, "target": 0, "value": 1}, {"source": 1558, "target": 0, "value": 1}, {"source": 1559, "target": 0, "value": 1}, {"source": 1560, "target": 0, "value": 1}, {"source": 1561, "target": 0, "value": 1}, {"source": 1562, "target": 0, "value": 1}, {"source": 1563, "target": 0, "value": 1}, {"source": 1564, "target": 0, "value": 1}, {"source": 1565, "target": 0, "value": 1}, {"source": 1566, "target": 0, "value": 1}, {"source": 1567, "target": 0, "value": 1}, {"source": 1568, "target": 0, "value": 1}, {"source": 1569, "target": 0, "value": 1}, {"source": 1570, "target": 0, "value": 1}, {"source": 1571, "target": 0, "value": 1}, {"source": 1572, "target": 0, "value": 1}, {"source": 1573, "target": 0, "value": 1}, {"source": 1574, "target": 0, "value": 1}, {"source": 1575, "target": 0, "value": 1}, {"source": 1576, "target": 0, "value": 1}, {"source": 1577, "target": 0, "value": 1}, {"source": 1578, "target": 0, "value": 1}, {"source": 1579, "target": 0, "value": 1}, {"source": 1580, "target": 0, "value": 1}, {"source": 1581, "target": 0, "value": 1}, {"source": 1582, "target": 0, "value": 1}, {"source": 1583, "target": 0, "value": 1}, {"source": 1584, "target": 0, "value": 1}, {"source": 1585, "target": 0, "value": 1}, {"source": 1586, "target": 0, "value": 1}, {"source": 1587, "target": 0, "value": 1}, {"source": 1588, "target": 0, "value": 1}, {"source": 1589, "target": 0, "value": 1}, {"source": 1590, "target": 0, "value": 1}, {"source": 1591, "target": 0, "value": 1}, {"source": 1592, "target": 0, "value": 1}, {"source": 1593, "target": 0, "value": 1}, {"source": 1594, "target": 0, "value": 1}, {"source": 1595, "target": 0, "value": 1}, {"source": 1596, "target": 0, "value": 1}, {"source": 1597, "target": 0, "value": 1}, {"source": 1598, "target": 0, "value": 1}, {"source": 1599, "target": 0, "value": 1}, {"source": 1600, "target": 0, "value": 1}, {"source": 1601, "target": 0, "value": 1}, {"source": 1602, "target": 0, "value": 1}, {"source": 1603, "target": 0, "value": 1}, {"source": 1604, "target": 0, "value": 1}, {"source": 1605, "target": 0, "value": 1}, {"source": 1606, "target": 0, "value": 1}, {"source": 1607, "target": 0, "value": 1}, {"source": 1608, "target": 0, "value": 1}, {"source": 1609, "target": 0, "value": 1}, {"source": 1610, "target": 0, "value": 1}, {"source": 1611, "target": 0, "value": 1}, {"source": 1612, "target": 0, "value": 1}, {"source": 1613, "target": 0, "value": 1}, {"source": 1614, "target": 0, "value": 1}, {"source": 1615, "target": 0, "value": 1}, {"source": 1616, "target": 0, "value": 1}, {"source": 1617, "target": 0, "value": 1}, {"source": 1618, "target": 0, "value": 1}, {"source": 1619, "target": 0, "value": 1}, {"source": 1620, "target": 0, "value": 1}, {"source": 1621, "target": 0, "value": 1}, {"source": 1622, "target": 0, "value": 1}, {"source": 1623, "target": 0, "value": 1}, {"source": 1624, "target": 0, "value": 1}, {"source": 1625, "target": 0, "value": 1}, {"source": 1626, "target": 0, "value": 1}, {"source": 1627, "target": 0, "value": 1}, {"source": 1628, "target": 0, "value": 1}, {"source": 1629, "target": 0, "value": 1}, {"source": 1630, "target": 0, "value": 1}, {"source": 1631, "target": 0, "value": 1}, {"source": 1632, "target": 0, "value": 1}, {"source": 1633, "target": 0, "value": 1}, {"source": 1634, "target": 0, "value": 1}, {"source": 1635, "target": 0, "value": 1}, {"source": 1636, "target": 0, "value": 1}, {"source": 1637, "target": 0, "value": 1}, {"source": 1638, "target": 0, "value": 1}, {"source": 1639, "target": 0, "value": 1}, {"source": 1640, "target": 0, "value": 1}, {"source": 1641, "target": 0, "value": 1}, {"source": 1642, "target": 0, "value": 1}, {"source": 1643, "target": 0, "value": 1}, {"source": 1644, "target": 0, "value": 1}, {"source": 1645, "target": 0, "value": 1}, {"source": 1646, "target": 0, "value": 1}, {"source": 1647, "target": 0, "value": 1}, {"source": 1648, "target": 0, "value": 1}, {"source": 1649, "target": 0, "value": 1}, {"source": 1650, "target": 0, "value": 1}, {"source": 1651, "target": 0, "value": 1}, {"source": 1652, "target": 0, "value": 1}, {"source": 1653, "target": 0, "value": 1}, {"source": 1654, "target": 0, "value": 1}, {"source": 1655, "target": 0, "value": 1}, {"source": 1656, "target": 0, "value": 1}, {"source": 1657, "target": 0, "value": 1}, {"source": 1658, "target": 0, "value": 1}, {"source": 1659, "target": 0, "value": 1}, {"source": 1660, "target": 0, "value": 1}, {"source": 1661, "target": 0, "value": 1}, {"source": 1662, "target": 0, "value": 1}, {"source": 1663, "target": 0, "value": 1}, {"source": 1664, "target": 0, "value": 1}, {"source": 1665, "target": 0, "value": 1}, {"source": 1666, "target": 0, "value": 1}, {"source": 1667, "target": 0, "value": 1}, {"source": 1668, "target": 0, "value": 1}, {"source": 1669, "target": 0, "value": 1}, {"source": 1670, "target": 0, "value": 1}, {"source": 1671, "target": 0, "value": 1}, {"source": 1672, "target": 0, "value": 1}, {"source": 1673, "target": 0, "value": 1}, {"source": 1674, "target": 0, "value": 1}, {"source": 1675, "target": 0, "value": 1}, {"source": 1676, "target": 0, "value": 1}, {"source": 1677, "target": 0, "value": 1}, {"source": 1678, "target": 0, "value": 1}, {"source": 1679, "target": 0, "value": 1}, {"source": 1680, "target": 0, "value": 1}, {"source": 1681, "target": 0, "value": 1}, {"source": 1682, "target": 0, "value": 1}, {"source": 1683, "target": 0, "value": 1}, {"source": 1684, "target": 0, "value": 1}, {"source": 1685, "target": 0, "value": 1}, {"source": 1686, "target": 0, "value": 1}, {"source": 1687, "target": 0, "value": 1}, {"source": 1688, "target": 0, "value": 1}, {"source": 1689, "target": 0, "value": 1}, {"source": 1690, "target": 0, "value": 1}, {"source": 1691, "target": 0, "value": 1}, {"source": 1692, "target": 0, "value": 1}, {"source": 1693, "target": 0, "value": 1}, {"source": 1694, "target": 0, "value": 1}, {"source": 1695, "target": 0, "value": 1}, {"source": 1696, "target": 0, "value": 1}, {"source": 1697, "target": 0, "value": 1}, {"source": 1698, "target": 0, "value": 1}, {"source": 1699, "target": 0, "value": 1}, {"source": 1700, "target": 0, "value": 1}, {"source": 1701, "target": 0, "value": 1}, {"source": 1702, "target": 0, "value": 1}, {"source": 1703, "target": 0, "value": 1}, {"source": 1704, "target": 0, "value": 1}, {"source": 1705, "target": 0, "value": 1}, {"source": 1706, "target": 0, "value": 1}, {"source": 1707, "target": 0, "value": 1}, {"source": 1708, "target": 0, "value": 1}, {"source": 1709, "target": 0, "value": 1}, {"source": 1710, "target": 0, "value": 1}, {"source": 1711, "target": 0, "value": 1}, {"source": 1712, "target": 0, "value": 1}, {"source": 1713, "target": 0, "value": 1}, {"source": 1714, "target": 0, "value": 1}, {"source": 1715, "target": 0, "value": 1}, {"source": 1716, "target": 0, "value": 1}, {"source": 1717, "target": 0, "value": 1}, {"source": 1718, "target": 0, "value": 1}, {"source": 1719, "target": 0, "value": 1}, {"source": 1720, "target": 0, "value": 1}, {"source": 1721, "target": 0, "value": 1}, {"source": 1722, "target": 0, "value": 1}, {"source": 1723, "target": 0, "value": 1}, {"source": 1724, "target": 0, "value": 1}, {"source": 1725, "target": 0, "value": 1}, {"source": 1726, "target": 0, "value": 1}, {"source": 1727, "target": 0, "value": 1}, {"source": 1728, "target": 0, "value": 1}, {"source": 1729, "target": 0, "value": 1}, {"source": 1730, "target": 0, "value": 1}, {"source": 1731, "target": 0, "value": 1}, {"source": 1732, "target": 0, "value": 1}, {"source": 1733, "target": 0, "value": 1}, {"source": 1734, "target": 0, "value": 1}, {"source": 1735, "target": 0, "value": 1}, {"source": 1736, "target": 0, "value": 1}, {"source": 1737, "target": 0, "value": 1}, {"source": 1738, "target": 0, "value": 1}, {"source": 1739, "target": 0, "value": 1}, {"source": 1740, "target": 0, "value": 1}, {"source": 1741, "target": 0, "value": 1}, {"source": 1742, "target": 0, "value": 1}, {"source": 1743, "target": 0, "value": 1}, {"source": 1744, "target": 0, "value": 1}, {"source": 1745, "target": 0, "value": 1}, {"source": 1746, "target": 0, "value": 1}, {"source": 1747, "target": 0, "value": 1}, {"source": 1748, "target": 0, "value": 1}, {"source": 1749, "target": 0, "value": 1}, {"source": 1750, "target": 0, "value": 1}, {"source": 1751, "target": 0, "value": 1}, {"source": 1752, "target": 0, "value": 1}, {"source": 1753, "target": 0, "value": 1}, {"source": 1754, "target": 0, "value": 1}, {"source": 1755, "target": 0, "value": 1}, {"source": 1756, "target": 0, "value": 1}, {"source": 1757, "target": 0, "value": 1}, {"source": 1758, "target": 0, "value": 1}, {"source": 1759, "target": 0, "value": 1}, {"source": 1760, "target": 0, "value": 1}, {"source": 1761, "target": 0, "value": 1}, {"source": 1762, "target": 0, "value": 1}, {"source": 1763, "target": 0, "value": 1}, {"source": 1764, "target": 0, "value": 1}, {"source": 1765, "target": 0, "value": 1}, {"source": 1766, "target": 0, "value": 1}, {"source": 1767, "target": 0, "value": 1}, {"source": 1768, "target": 0, "value": 1}, {"source": 1769, "target": 0, "value": 1}, {"source": 1770, "target": 0, "value": 1}, {"source": 1771, "target": 0, "value": 1}, {"source": 1772, "target": 0, "value": 1}, {"source": 1773, "target": 0, "value": 1}, {"source": 1774, "target": 0, "value": 1}, {"source": 1775, "target": 0, "value": 1}, {"source": 1776, "target": 0, "value": 1}, {"source": 1777, "target": 0, "value": 1}, {"source": 1778, "target": 0, "value": 1}, {"source": 1779, "target": 0, "value": 1}, {"source": 1780, "target": 0, "value": 1}, {"source": 1781, "target": 0, "value": 1}, {"source": 1782, "target": 0, "value": 1}, {"source": 1783, "target": 0, "value": 1}, {"source": 1784, "target": 0, "value": 1}, {"source": 1785, "target": 0, "value": 1}, {"source": 1786, "target": 0, "value": 1}, {"source": 1787, "target": 0, "value": 1}, {"source": 1788, "target": 0, "value": 1}, {"source": 1789, "target": 0, "value": 1}, {"source": 1790, "target": 0, "value": 1}, {"source": 1791, "target": 0, "value": 1}, {"source": 1792, "target": 0, "value": 1}, {"source": 1793, "target": 0, "value": 1}, {"source": 1794, "target": 0, "value": 1}, {"source": 1795, "target": 0, "value": 1}, {"source": 1796, "target": 0, "value": 1}, {"source": 1797, "target": 0, "value": 1}, {"source": 1798, "target": 0, "value": 1}, {"source": 1799, "target": 0, "value": 1}, {"source": 1800, "target": 0, "value": 1}, {"source": 1801, "target": 0, "value": 1}, {"source": 1802, "target": 0, "value": 1}, {"source": 1803, "target": 0, "value": 1}, {"source": 1804, "target": 0, "value": 1}, {"source": 1805, "target": 0, "value": 1}, {"source": 1806, "target": 0, "value": 1}, {"source": 1807, "target": 0, "value": 1}, {"source": 1808, "target": 0, "value": 1}, {"source": 1809, "target": 0, "value": 1}, {"source": 1810, "target": 0, "value": 1}, {"source": 1811, "target": 0, "value": 1}, {"source": 1812, "target": 0, "value": 1}, {"source": 1813, "target": 0, "value": 1}, {"source": 1814, "target": 0, "value": 1}, {"source": 1815, "target": 0, "value": 1}, {"source": 1816, "target": 0, "value": 1}, {"source": 1817, "target": 0, "value": 1}, {"source": 1818, "target": 0, "value": 1}, {"source": 1819, "target": 0, "value": 1}, {"source": 1820, "target": 0, "value": 1}, {"source": 1821, "target": 0, "value": 1}, {"source": 1822, "target": 0, "value": 1}, {"source": 1823, "target": 0, "value": 1}, {"source": 1824, "target": 0, "value": 1}, {"source": 1825, "target": 0, "value": 1}, {"source": 1826, "target": 0, "value": 1}, {"source": 1827, "target": 0, "value": 1}, {"source": 1828, "target": 0, "value": 1}, {"source": 1829, "target": 0, "value": 1}, {"source": 1830, "target": 0, "value": 1}, {"source": 1831, "target": 0, "value": 1}, {"source": 1832, "target": 0, "value": 1}, {"source": 1833, "target": 0, "value": 1}, {"source": 1834, "target": 0, "value": 1}, {"source": 1835, "target": 0, "value": 1}, {"source": 1836, "target": 0, "value": 1}, {"source": 1837, "target": 0, "value": 1}, {"source": 1838, "target": 0, "value": 1}, {"source": 1839, "target": 0, "value": 1}, {"source": 1840, "target": 0, "value": 1}, {"source": 1841, "target": 0, "value": 1}, {"source": 1842, "target": 0, "value": 1}, {"source": 1843, "target": 0, "value": 1}, {"source": 1844, "target": 0, "value": 1}, {"source": 1845, "target": 0, "value": 1}, {"source": 1846, "target": 0, "value": 1}, {"source": 1847, "target": 0, "value": 1}, {"source": 1848, "target": 0, "value": 1}, {"source": 1849, "target": 0, "value": 1}, {"source": 1850, "target": 0, "value": 1}, {"source": 1851, "target": 0, "value": 1}, {"source": 1852, "target": 0, "value": 1}, {"source": 1853, "target": 0, "value": 1}, {"source": 1854, "target": 0, "value": 1}, {"source": 1855, "target": 0, "value": 1}, {"source": 1856, "target": 0, "value": 1}, {"source": 1857, "target": 0, "value": 1}, {"source": 1858, "target": 0, "value": 1}, {"source": 1859, "target": 0, "value": 1}, {"source": 1860, "target": 0, "value": 1}, {"source": 1861, "target": 0, "value": 1}, {"source": 1862, "target": 0, "value": 1}, {"source": 1863, "target": 0, "value": 1}, {"source": 1864, "target": 0, "value": 1}, {"source": 1865, "target": 0, "value": 1}, {"source": 1866, "target": 0, "value": 1}, {"source": 1867, "target": 0, "value": 1}, {"source": 1868, "target": 0, "value": 1}, {"source": 1869, "target": 0, "value": 1}, {"source": 1870, "target": 0, "value": 1}, {"source": 1871, "target": 0, "value": 1}, {"source": 1872, "target": 0, "value": 1}, {"source": 1873, "target": 0, "value": 1}, {"source": 1874, "target": 0, "value": 1}, {"source": 1875, "target": 0, "value": 1}, {"source": 1876, "target": 0, "value": 1}, {"source": 1877, "target": 0, "value": 1}, {"source": 1878, "target": 0, "value": 1}, {"source": 1879, "target": 0, "value": 1}, {"source": 1880, "target": 0, "value": 1}, {"source": 1881, "target": 0, "value": 1}, {"source": 1882, "target": 0, "value": 1}, {"source": 1883, "target": 0, "value": 1}, {"source": 1884, "target": 0, "value": 1}, {"source": 1885, "target": 0, "value": 1}, {"source": 1886, "target": 0, "value": 1}, {"source": 1887, "target": 0, "value": 1}, {"source": 1888, "target": 0, "value": 1}, {"source": 1889, "target": 0, "value": 1}, {"source": 1890, "target": 0, "value": 1}, {"source": 1891, "target": 0, "value": 1}, {"source": 1892, "target": 0, "value": 1}, {"source": 1893, "target": 0, "value": 1}, {"source": 1894, "target": 0, "value": 1}, {"source": 1895, "target": 0, "value": 1}, {"source": 1896, "target": 0, "value": 1}, {"source": 1897, "target": 0, "value": 1}, {"source": 1898, "target": 0, "value": 1}, {"source": 1899, "target": 0, "value": 1}, {"source": 1900, "target": 0, "value": 1}, {"source": 1901, "target": 0, "value": 1}, {"source": 1902, "target": 0, "value": 1}, {"source": 1903, "target": 0, "value": 1}, {"source": 1904, "target": 0, "value": 1}, {"source": 1905, "target": 0, "value": 1}, {"source": 1906, "target": 0, "value": 1}, {"source": 1907, "target": 0, "value": 1}, {"source": 1908, "target": 0, "value": 1}, {"source": 1909, "target": 0, "value": 1}, {"source": 1910, "target": 0, "value": 1}, {"source": 1911, "target": 0, "value": 1}, {"source": 1912, "target": 0, "value": 1}, {"source": 1913, "target": 0, "value": 1}, {"source": 1914, "target": 0, "value": 1}, {"source": 1915, "target": 0, "value": 1}, {"source": 1916, "target": 0, "value": 1}, {"source": 1917, "target": 0, "value": 1}, {"source": 1918, "target": 0, "value": 1}, {"source": 1919, "target": 0, "value": 1}, {"source": 1920, "target": 0, "value": 1}, {"source": 1921, "target": 0, "value": 1}, {"source": 1922, "target": 0, "value": 1}, {"source": 1923, "target": 0, "value": 1}, {"source": 1924, "target": 0, "value": 1}, {"source": 1925, "target": 0, "value": 1}, {"source": 1926, "target": 0, "value": 1}, {"source": 1927, "target": 0, "value": 1}, {"source": 1928, "target": 0, "value": 1}, {"source": 1929, "target": 0, "value": 1}, {"source": 1930, "target": 0, "value": 1}, {"source": 1931, "target": 0, "value": 1}, {"source": 1932, "target": 0, "value": 1}, {"source": 1933, "target": 0, "value": 1}, {"source": 1934, "target": 0, "value": 1}, {"source": 1935, "target": 0, "value": 1}, {"source": 1936, "target": 0, "value": 1}, {"source": 1937, "target": 0, "value": 1}, {"source": 1938, "target": 0, "value": 1}, {"source": 1939, "target": 0, "value": 1}, {"source": 1940, "target": 0, "value": 1}, {"source": 1941, "target": 0, "value": 1}, {"source": 1942, "target": 0, "value": 1}, {"source": 1943, "target": 0, "value": 1}, {"source": 1944, "target": 0, "value": 1}, {"source": 1945, "target": 0, "value": 1}, {"source": 1946, "target": 0, "value": 1}, {"source": 1947, "target": 0, "value": 1}, {"source": 1948, "target": 0, "value": 1}, {"source": 1949, "target": 0, "value": 1}, {"source": 1950, "target": 0, "value": 1}, {"source": 1951, "target": 0, "value": 1}, {"source": 1952, "target": 0, "value": 1}, {"source": 1953, "target": 0, "value": 1}, {"source": 1954, "target": 0, "value": 1}, {"source": 1955, "target": 0, "value": 1}, {"source": 1956, "target": 0, "value": 1}, {"source": 1957, "target": 0, "value": 1}, {"source": 1958, "target": 0, "value": 1}, {"source": 1959, "target": 0, "value": 1}, {"source": 1960, "target": 0, "value": 1}, {"source": 1961, "target": 0, "value": 1}, {"source": 1962, "target": 0, "value": 1}, {"source": 1963, "target": 0, "value": 1}, {"source": 1964, "target": 0, "value": 1}, {"source": 1965, "target": 0, "value": 1}, {"source": 1966, "target": 0, "value": 1}, {"source": 1967, "target": 0, "value": 1}, {"source": 1968, "target": 0, "value": 1}, {"source": 1969, "target": 0, "value": 1}, {"source": 1970, "target": 0, "value": 1}, {"source": 1971, "target": 0, "value": 1}, {"source": 1972, "target": 0, "value": 1}, {"source": 1973, "target": 0, "value": 1}, {"source": 1974, "target": 0, "value": 1}, {"source": 1975, "target": 0, "value": 1}, {"source": 1976, "target": 0, "value": 1}, {"source": 1977, "target": 0, "value": 1}, {"source": 1978, "target": 0, "value": 1}, {"source": 1979, "target": 0, "value": 1}, {"source": 1980, "target": 0, "value": 1}, {"source": 1981, "target": 0, "value": 1}, {"source": 1982, "target": 0, "value": 1}, {"source": 1983, "target": 0, "value": 1}, {"source": 1984, "target": 0, "value": 1}, {"source": 1985, "target": 0, "value": 1}, {"source": 1986, "target": 0, "value": 1}, {"source": 1987, "target": 0, "value": 1}, {"source": 1988, "target": 0, "value": 1}, {"source": 1989, "target": 0, "value": 1}, {"source": 1990, "target": 0, "value": 1}, {"source": 1991, "target": 0, "value": 1}, {"source": 1992, "target": 0, "value": 1}, {"source": 1993, "target": 0, "value": 1}, {"source": 1994, "target": 0, "value": 1}, {"source": 1995, "target": 0, "value": 1}, {"source": 1996, "target": 0, "value": 1}, {"source": 1997, "target": 0, "value": 1}, {"source": 1998, "target": 0, "value": 1}, {"source": 1999, "target": 0, "value": 1}, {"source": 2000, "target": 0, "value": 1}, {"source": 2001, "target": 0, "value": 1}, {"source": 2002, "target": 0, "value": 1}, {"source": 2003, "target": 0, "value": 1}, {"source": 2004, "target": 0, "value": 1}, {"source": 2005, "target": 0, "value": 1}, {"source": 2006, "target": 0, "value": 1}, {"source": 2007, "target": 0, "value": 1}, {"source": 2008, "target": 0, "value": 1}, {"source": 2009, "target": 0, "value": 1}, {"source": 2010, "target": 0, "value": 1}, {"source": 2011, "target": 0, "value": 1}, {"source": 2012, "target": 0, "value": 1}, {"source": 2013, "target": 0, "value": 1}, {"source": 2014, "target": 0, "value": 1}, {"source": 2015, "target": 0, "value": 1}, {"source": 2016, "target": 0, "value": 1}, {"source": 2017, "target": 0, "value": 1}, {"source": 2018, "target": 0, "value": 1}, {"source": 2019, "target": 0, "value": 1}, {"source": 2020, "target": 0, "value": 1}, {"source": 2021, "target": 0, "value": 1}, {"source": 2022, "target": 0, "value": 1}, {"source": 2023, "target": 0, "value": 1}, {"source": 2024, "target": 0, "value": 1}, {"source": 2025, "target": 0, "value": 1}, {"source": 2026, "target": 0, "value": 1}, {"source": 2027, "target": 0, "value": 1}, {"source": 2028, "target": 0, "value": 1}, {"source": 2029, "target": 0, "value": 1}, {"source": 2030, "target": 0, "value": 1}, {"source": 2031, "target": 0, "value": 1}, {"source": 2032, "target": 0, "value": 1}, {"source": 2033, "target": 0, "value": 1}, {"source": 2034, "target": 0, "value": 1}, {"source": 2035, "target": 0, "value": 1}, {"source": 2036, "target": 0, "value": 1}, {"source": 2037, "target": 0, "value": 1}, {"source": 2038, "target": 0, "value": 1}, {"source": 2039, "target": 0, "value": 1}, {"source": 2040, "target": 0, "value": 1}, {"source": 2041, "target": 0, "value": 1}, {"source": 2042, "target": 0, "value": 1}, {"source": 2043, "target": 0, "value": 1}, {"source": 2044, "target": 0, "value": 1}, {"source": 2045, "target": 0, "value": 1}, {"source": 2046, "target": 0, "value": 1}, {"source": 2047, "target": 0, "value": 1}, {"source": 2048, "target": 0, "value": 1}, {"source": 2049, "target": 0, "value": 1}, {"source": 2050, "target": 0, "value": 1}, {"source": 2051, "target": 0, "value": 1}, {"source": 2052, "target": 0, "value": 1}, {"source": 2053, "target": 0, "value": 1}, {"source": 2054, "target": 0, "value": 1}, {"source": 2055, "target": 0, "value": 1}, {"source": 2056, "target": 0, "value": 1}, {"source": 2057, "target": 0, "value": 1}, {"source": 2058, "target": 0, "value": 1}, {"source": 2059, "target": 0, "value": 1}, {"source": 2060, "target": 0, "value": 1}, {"source": 2061, "target": 0, "value": 1}, {"source": 2062, "target": 0, "value": 1}, {"source": 2063, "target": 0, "value": 1}, {"source": 2064, "target": 0, "value": 1}, {"source": 2065, "target": 0, "value": 1}, {"source": 2066, "target": 0, "value": 1}, {"source": 2067, "target": 0, "value": 1}, {"source": 2068, "target": 0, "value": 1}, {"source": 2069, "target": 0, "value": 1}, {"source": 2070, "target": 0, "value": 1}, {"source": 2071, "target": 0, "value": 1}, {"source": 2072, "target": 0, "value": 1}, {"source": 2073, "target": 0, "value": 1}, {"source": 2074, "target": 0, "value": 1}, {"source": 2075, "target": 0, "value": 1}, {"source": 2076, "target": 0, "value": 1}, {"source": 2077, "target": 0, "value": 1}, {"source": 2078, "target": 0, "value": 1}, {"source": 2079, "target": 0, "value": 1}, {"source": 2080, "target": 0, "value": 1}, {"source": 2081, "target": 0, "value": 1}, {"source": 2082, "target": 0, "value": 1}, {"source": 2083, "target": 0, "value": 1}, {"source": 2084, "target": 0, "value": 1}, {"source": 2085, "target": 0, "value": 1}, {"source": 2086, "target": 0, "value": 1}, {"source": 2087, "target": 0, "value": 1}, {"source": 2088, "target": 0, "value": 1}, {"source": 2089, "target": 0, "value": 1}, {"source": 2090, "target": 0, "value": 1}, {"source": 2091, "target": 0, "value": 1}, {"source": 2092, "target": 0, "value": 1}, {"source": 2093, "target": 0, "value": 1}, {"source": 2094, "target": 0, "value": 1}, {"source": 2095, "target": 0, "value": 1}, {"source": 2096, "target": 0, "value": 1}, {"source": 2097, "target": 0, "value": 1}, {"source": 2098, "target": 0, "value": 1}, {"source": 2099, "target": 0, "value": 1}, {"source": 2100, "target": 0, "value": 1}, {"source": 2101, "target": 0, "value": 1}, {"source": 2102, "target": 0, "value": 1}, {"source": 2103, "target": 0, "value": 1}, {"source": 2104, "target": 0, "value": 1}, {"source": 2105, "target": 0, "value": 1}, {"source": 2106, "target": 0, "value": 1}, {"source": 2107, "target": 0, "value": 1}, {"source": 2108, "target": 0, "value": 1}, {"source": 2109, "target": 0, "value": 1}, {"source": 2110, "target": 0, "value": 1}, {"source": 2111, "target": 0, "value": 1}, {"source": 2112, "target": 0, "value": 1}, {"source": 2113, "target": 0, "value": 1}, {"source": 2114, "target": 0, "value": 1}, {"source": 2115, "target": 0, "value": 1}, {"source": 2116, "target": 0, "value": 1}, {"source": 2117, "target": 0, "value": 1}, {"source": 2118, "target": 0, "value": 1}, {"source": 2119, "target": 0, "value": 1}, {"source": 2120, "target": 0, "value": 1}, {"source": 2121, "target": 0, "value": 1}, {"source": 2122, "target": 0, "value": 1}, {"source": 2123, "target": 0, "value": 1}, {"source": 2124, "target": 0, "value": 1}, {"source": 2125, "target": 0, "value": 1}, {"source": 2126, "target": 0, "value": 1}, {"source": 2127, "target": 0, "value": 1}, {"source": 2128, "target": 0, "value": 1}, {"source": 2129, "target": 0, "value": 1}, {"source": 2130, "target": 0, "value": 1}, {"source": 2131, "target": 0, "value": 1}, {"source": 2132, "target": 0, "value": 1}, {"source": 2133, "target": 0, "value": 1}, {"source": 2134, "target": 0, "value": 1}, {"source": 2135, "target": 0, "value": 1}, {"source": 2136, "target": 0, "value": 1}, {"source": 2137, "target": 0, "value": 1}, {"source": 2138, "target": 0, "value": 1}, {"source": 2139, "target": 0, "value": 1}, {"source": 2140, "target": 0, "value": 1}, {"source": 2141, "target": 0, "value": 1}, {"source": 2142, "target": 0, "value": 1}, {"source": 2143, "target": 0, "value": 1}, {"source": 2144, "target": 0, "value": 1}, {"source": 2145, "target": 0, "value": 1}, {"source": 2146, "target": 0, "value": 1}, {"source": 2147, "target": 0, "value": 1}, {"source": 2148, "target": 0, "value": 1}, {"source": 2149, "target": 0, "value": 1}, {"source": 2150, "target": 0, "value": 1}, {"source": 2151, "target": 0, "value": 1}, {"source": 2152, "target": 0, "value": 1}, {"source": 2153, "target": 0, "value": 1}, {"source": 2154, "target": 0, "value": 1}, {"source": 2155, "target": 0, "value": 1}, {"source": 2156, "target": 0, "value": 1}, {"source": 2157, "target": 0, "value": 1}, {"source": 2158, "target": 0, "value": 1}, {"source": 2159, "target": 0, "value": 1}, {"source": 2160, "target": 0, "value": 1}, {"source": 2161, "target": 0, "value": 1}, {"source": 2162, "target": 0, "value": 1}, {"source": 2163, "target": 0, "value": 1}, {"source": 2164, "target": 0, "value": 1}, {"source": 2165, "target": 0, "value": 1}, {"source": 2166, "target": 0, "value": 1}, {"source": 2167, "target": 0, "value": 1}, {"source": 2168, "target": 0, "value": 1}, {"source": 2169, "target": 0, "value": 1}, {"source": 2170, "target": 0, "value": 1}, {"source": 2171, "target": 0, "value": 1}, {"source": 2172, "target": 0, "value": 1}, {"source": 2173, "target": 0, "value": 1}, {"source": 2174, "target": 0, "value": 1}, {"source": 2175, "target": 0, "value": 1}, {"source": 2176, "target": 0, "value": 1}, {"source": 2177, "target": 0, "value": 1}, {"source": 2178, "target": 0, "value": 1}, {"source": 2179, "target": 0, "value": 1}, {"source": 2180, "target": 0, "value": 1}, {"source": 2181, "target": 0, "value": 1}, {"source": 2182, "target": 0, "value": 1}, {"source": 2183, "target": 0, "value": 1}, {"source": 2184, "target": 0, "value": 1}, {"source": 2185, "target": 0, "value": 1}, {"source": 2186, "target": 0, "value": 1}, {"source": 2187, "target": 0, "value": 1}, {"source": 2188, "target": 0, "value": 1}, {"source": 2189, "target": 0, "value": 1}, {"source": 2190, "target": 0, "value": 1}, {"source": 2191, "target": 0, "value": 1}, {"source": 2192, "target": 0, "value": 1}, {"source": 2193, "target": 0, "value": 1}, {"source": 2194, "target": 0, "value": 1}, {"source": 2195, "target": 0, "value": 1}, {"source": 2196, "target": 0, "value": 1}, {"source": 2197, "target": 0, "value": 1}, {"source": 2198, "target": 0, "value": 1}, {"source": 2199, "target": 0, "value": 1}, {"source": 2200, "target": 0, "value": 1}, {"source": 2201, "target": 0, "value": 1}, {"source": 2202, "target": 0, "value": 1}, {"source": 2203, "target": 0, "value": 1}, {"source": 2204, "target": 0, "value": 1}, {"source": 2205, "target": 0, "value": 1}, {"source": 2206, "target": 0, "value": 1}, {"source": 2207, "target": 0, "value": 1}, {"source": 2208, "target": 0, "value": 1}, {"source": 2209, "target": 0, "value": 1}, {"source": 2210, "target": 0, "value": 1}, {"source": 2211, "target": 0, "value": 1}, {"source": 2212, "target": 0, "value": 1}, {"source": 2213, "target": 0, "value": 1}, {"source": 2214, "target": 0, "value": 1}, {"source": 2215, "target": 0, "value": 1}, {"source": 2216, "target": 0, "value": 1}, {"source": 2217, "target": 0, "value": 1}, {"source": 2218, "target": 0, "value": 1}, {"source": 2219, "target": 0, "value": 1}, {"source": 2220, "target": 0, "value": 1}, {"source": 2221, "target": 0, "value": 1}, {"source": 2222, "target": 0, "value": 1}, {"source": 2223, "target": 0, "value": 1}, {"source": 2224, "target": 0, "value": 1}, {"source": 2225, "target": 0, "value": 1}, {"source": 2226, "target": 0, "value": 1}, {"source": 2227, "target": 0, "value": 1}, {"source": 2228, "target": 0, "value": 1}, {"source": 2229, "target": 0, "value": 1}, {"source": 2230, "target": 0, "value": 1}, {"source": 2231, "target": 0, "value": 1}, {"source": 2232, "target": 0, "value": 1}, {"source": 2233, "target": 0, "value": 1}, {"source": 2234, "target": 0, "value": 1}, {"source": 2235, "target": 0, "value": 1}, {"source": 2236, "target": 0, "value": 1}, {"source": 2237, "target": 0, "value": 1}, {"source": 2238, "target": 0, "value": 1}, {"source": 2239, "target": 0, "value": 1}, {"source": 2240, "target": 0, "value": 1}, {"source": 2241, "target": 0, "value": 1}, {"source": 2242, "target": 0, "value": 1}, {"source": 2243, "target": 0, "value": 1}, {"source": 2244, "target": 0, "value": 1}, {"source": 2245, "target": 0, "value": 1}, {"source": 2246, "target": 0, "value": 1}, {"source": 2247, "target": 0, "value": 1}, {"source": 2248, "target": 0, "value": 1}, {"source": 2249, "target": 0, "value": 1}, {"source": 2250, "target": 0, "value": 1}, {"source": 2251, "target": 0, "value": 1}, {"source": 2252, "target": 0, "value": 1}, {"source": 2253, "target": 0, "value": 1}, {"source": 2254, "target": 0, "value": 1}, {"source": 2255, "target": 0, "value": 1}, {"source": 2256, "target": 0, "value": 1}, {"source": 2257, "target": 0, "value": 1}, {"source": 2258, "target": 0, "value": 1}, {"source": 2259, "target": 0, "value": 1}, {"source": 2260, "target": 0, "value": 1}, {"source": 2261, "target": 0, "value": 1}, {"source": 2262, "target": 0, "value": 1}, {"source": 2263, "target": 0, "value": 1}, {"source": 2264, "target": 0, "value": 1}, {"source": 2265, "target": 0, "value": 1}, {"source": 2266, "target": 0, "value": 1}, {"source": 2267, "target": 0, "value": 1}, {"source": 2268, "target": 0, "value": 1}, {"source": 2269, "target": 0, "value": 1}, {"source": 2270, "target": 0, "value": 1}, {"source": 2271, "target": 0, "value": 1}, {"source": 2272, "target": 0, "value": 1}, {"source": 2273, "target": 0, "value": 1}, {"source": 2274, "target": 0, "value": 1}, {"source": 2275, "target": 0, "value": 1}, {"source": 2276, "target": 0, "value": 1}, {"source": 2277, "target": 0, "value": 1}, {"source": 2278, "target": 0, "value": 1}, {"source": 2279, "target": 0, "value": 1}, {"source": 2280, "target": 0, "value": 1}, {"source": 2281, "target": 0, "value": 1}, {"source": 2282, "target": 0, "value": 1}, {"source": 2283, "target": 0, "value": 1}, {"source": 2284, "target": 0, "value": 1}, {"source": 2285, "target": 0, "value": 1}, {"source": 2286, "target": 0, "value": 1}, {"source": 2287, "target": 0, "value": 1}, {"source": 2288, "target": 0, "value": 1}, {"source": 2289, "target": 0, "value": 1}, {"source": 2290, "target": 0, "value": 1}, {"source": 2291, "target": 0, "value": 1}, {"source": 2292, "target": 0, "value": 1}, {"source": 2293, "target": 0, "value": 1}, {"source": 2294, "target": 0, "value": 1}, {"source": 2295, "target": 0, "value": 1}, {"source": 2296, "target": 0, "value": 1}, {"source": 2297, "target": 0, "value": 1}, {"source": 2298, "target": 0, "value": 1}, {"source": 2299, "target": 0, "value": 1}, {"source": 2300, "target": 0, "value": 1}, {"source": 2301, "target": 0, "value": 1}, {"source": 2302, "target": 0, "value": 1}, {"source": 2303, "target": 0, "value": 1}, {"source": 2304, "target": 0, "value": 1}, {"source": 2305, "target": 0, "value": 1}, {"source": 2306, "target": 0, "value": 1}, {"source": 2307, "target": 0, "value": 1}, {"source": 2308, "target": 0, "value": 1}, {"source": 2309, "target": 0, "value": 1}, {"source": 2310, "target": 0, "value": 1}, {"source": 2311, "target": 0, "value": 1}, {"source": 2312, "target": 0, "value": 1}, {"source": 2313, "target": 0, "value": 1}, {"source": 2314, "target": 0, "value": 1}, {"source": 2315, "target": 0, "value": 1}, {"source": 2316, "target": 0, "value": 1}, {"source": 2317, "target": 0, "value": 1}, {"source": 2318, "target": 0, "value": 1}, {"source": 2319, "target": 0, "value": 1}, {"source": 2320, "target": 0, "value": 1}, {"source": 2321, "target": 0, "value": 1}, {"source": 2322, "target": 0, "value": 1}, {"source": 2323, "target": 0, "value": 1}, {"source": 2324, "target": 0, "value": 1}, {"source": 2325, "target": 0, "value": 1}, {"source": 2326, "target": 0, "value": 1}, {"source": 2327, "target": 0, "value": 1}, {"source": 2328, "target": 0, "value": 1}, {"source": 2329, "target": 0, "value": 1}, {"source": 2330, "target": 0, "value": 1}, {"source": 2331, "target": 0, "value": 1}, {"source": 2332, "target": 0, "value": 1}, {"source": 2333, "target": 0, "value": 1}, {"source": 2334, "target": 0, "value": 1}, {"source": 2335, "target": 0, "value": 1}, {"source": 2336, "target": 0, "value": 1}, {"source": 2337, "target": 0, "value": 1}, {"source": 2338, "target": 0, "value": 1}, {"source": 2339, "target": 0, "value": 1}, {"source": 2340, "target": 0, "value": 1}, {"source": 2341, "target": 0, "value": 1}, {"source": 2342, "target": 0, "value": 1}, {"source": 2343, "target": 0, "value": 1}, {"source": 2344, "target": 0, "value": 1}, {"source": 2345, "target": 0, "value": 1}, {"source": 2346, "target": 0, "value": 1}, {"source": 2347, "target": 0, "value": 1}, {"source": 2348, "target": 0, "value": 1}, {"source": 2349, "target": 0, "value": 1}, {"source": 2350, "target": 0, "value": 1}, {"source": 2351, "target": 0, "value": 1}, {"source": 2352, "target": 0, "value": 1}, {"source": 2353, "target": 0, "value": 1}, {"source": 2354, "target": 0, "value": 1}, {"source": 2355, "target": 0, "value": 1}, {"source": 2356, "target": 0, "value": 1}, {"source": 2357, "target": 0, "value": 1}, {"source": 2358, "target": 0, "value": 1}, {"source": 2359, "target": 0, "value": 1}, {"source": 2360, "target": 0, "value": 1}, {"source": 2361, "target": 0, "value": 1}, {"source": 2362, "target": 0, "value": 1}, {"source": 2363, "target": 0, "value": 1}, {"source": 2364, "target": 0, "value": 1}, {"source": 2365, "target": 0, "value": 1}, {"source": 2366, "target": 0, "value": 1}, {"source": 2367, "target": 0, "value": 1}, {"source": 2368, "target": 0, "value": 1}, {"source": 2369, "target": 0, "value": 1}, {"source": 2370, "target": 0, "value": 1}, {"source": 2371, "target": 0, "value": 1}, {"source": 2372, "target": 0, "value": 1}, {"source": 2373, "target": 0, "value": 1}, {"source": 2374, "target": 0, "value": 1}, {"source": 2375, "target": 0, "value": 1}, {"source": 2376, "target": 0, "value": 1}, {"source": 2377, "target": 0, "value": 1}, {"source": 2378, "target": 0, "value": 1}, {"source": 2379, "target": 0, "value": 1}, {"source": 2380, "target": 0, "value": 1}, {"source": 2381, "target": 0, "value": 1}, {"source": 2382, "target": 0, "value": 1}, {"source": 2383, "target": 0, "value": 1}, {"source": 2384, "target": 0, "value": 1}, {"source": 2385, "target": 0, "value": 1}, {"source": 2386, "target": 0, "value": 1}, {"source": 2387, "target": 0, "value": 1}, {"source": 2388, "target": 0, "value": 1}, {"source": 2389, "target": 0, "value": 1}, {"source": 2390, "target": 0, "value": 1}, {"source": 2391, "target": 0, "value": 1}, {"source": 2392, "target": 0, "value": 1}, {"source": 2393, "target": 0, "value": 1}, {"source": 2394, "target": 0, "value": 1}, {"source": 2395, "target": 0, "value": 1}, {"source": 2396, "target": 0, "value": 1}, {"source": 2397, "target": 0, "value": 1}, {"source": 2398, "target": 0, "value": 1}, {"source": 2399, "target": 0, "value": 1}, {"source": 2400, "target": 0, "value": 1}, {"source": 2401, "target": 0, "value": 1}, {"source": 2402, "target": 0, "value": 1}, {"source": 2403, "target": 0, "value": 1}, {"source": 2404, "target": 0, "value": 1}, {"source": 2405, "target": 0, "value": 1}, {"source": 2406, "target": 0, "value": 1}, {"source": 2407, "target": 0, "value": 1}, {"source": 2408, "target": 0, "value": 1}, {"source": 2409, "target": 0, "value": 1}, {"source": 2410, "target": 0, "value": 1}, {"source": 2411, "target": 0, "value": 1}, {"source": 2412, "target": 0, "value": 1}, {"source": 2413, "target": 0, "value": 1}, {"source": 2414, "target": 0, "value": 1}, {"source": 2415, "target": 0, "value": 1}, {"source": 2416, "target": 0, "value": 1}, {"source": 2417, "target": 0, "value": 1}, {"source": 2418, "target": 0, "value": 1}, {"source": 2419, "target": 0, "value": 1}, {"source": 2420, "target": 0, "value": 1}, {"source": 2421, "target": 0, "value": 1}, {"source": 2422, "target": 0, "value": 1}, {"source": 2423, "target": 0, "value": 1}, {"source": 2424, "target": 0, "value": 1}, {"source": 2425, "target": 0, "value": 1}, {"source": 2426, "target": 0, "value": 1}, {"source": 2427, "target": 0, "value": 1}, {"source": 2428, "target": 0, "value": 1}, {"source": 2429, "target": 0, "value": 1}, {"source": 2430, "target": 0, "value": 1}, {"source": 2431, "target": 0, "value": 1}, {"source": 2432, "target": 0, "value": 1}, {"source": 2433, "target": 0, "value": 1}, {"source": 2434, "target": 0, "value": 1}, {"source": 2435, "target": 0, "value": 1}, {"source": 2436, "target": 0, "value": 1}, {"source": 2437, "target": 0, "value": 1}, {"source": 2438, "target": 0, "value": 1}, {"source": 2439, "target": 0, "value": 1}, {"source": 2440, "target": 0, "value": 1}, {"source": 2441, "target": 0, "value": 1}, {"source": 2442, "target": 0, "value": 1}, {"source": 2443, "target": 0, "value": 1}, {"source": 2444, "target": 0, "value": 1}, {"source": 2445, "target": 0, "value": 1}, {"source": 2446, "target": 0, "value": 1}, {"source": 2447, "target": 0, "value": 1}, {"source": 2448, "target": 0, "value": 1}, {"source": 2449, "target": 0, "value": 1}, {"source": 2450, "target": 0, "value": 1}, {"source": 2451, "target": 0, "value": 1}, {"source": 2452, "target": 0, "value": 1}, {"source": 2453, "target": 0, "value": 1}, {"source": 2454, "target": 0, "value": 1}, {"source": 2455, "target": 0, "value": 1}, {"source": 2456, "target": 0, "value": 1}, {"source": 2457, "target": 0, "value": 1}, {"source": 2458, "target": 0, "value": 1}, {"source": 2459, "target": 0, "value": 1}, {"source": 2460, "target": 0, "value": 1}, {"source": 2461, "target": 0, "value": 1}, {"source": 2462, "target": 0, "value": 1}, {"source": 2463, "target": 0, "value": 1}, {"source": 2464, "target": 0, "value": 1}, {"source": 2465, "target": 0, "value": 1}, {"source": 2466, "target": 0, "value": 1}, {"source": 2467, "target": 0, "value": 1}, {"source": 2468, "target": 0, "value": 1}, {"source": 2469, "target": 0, "value": 1}, {"source": 2470, "target": 0, "value": 1}, {"source": 2471, "target": 0, "value": 1}, {"source": 2472, "target": 0, "value": 1}, {"source": 2473, "target": 0, "value": 1}, {"source": 2474, "target": 0, "value": 1}, {"source": 2475, "target": 0, "value": 1}, {"source": 2476, "target": 0, "value": 1}, {"source": 2477, "target": 0, "value": 1}, {"source": 2478, "target": 0, "value": 1}, {"source": 2479, "target": 0, "value": 1}, {"source": 2480, "target": 0, "value": 1}, {"source": 2481, "target": 0, "value": 1}, {"source": 2482, "target": 0, "value": 1}, {"source": 2483, "target": 0, "value": 1}, {"source": 2484, "target": 0, "value": 1}, {"source": 2485, "target": 0, "value": 1}, {"source": 2486, "target": 0, "value": 1}, {"source": 2487, "target": 0, "value": 1}, {"source": 2488, "target": 0, "value": 1}, {"source": 2489, "target": 0, "value": 1}, {"source": 2490, "target": 0, "value": 1}, {"source": 2491, "target": 0, "value": 1}, {"source": 2492, "target": 0, "value": 1}, {"source": 2493, "target": 0, "value": 1}, {"source": 2494, "target": 0, "value": 1}, {"source": 2495, "target": 0, "value": 1}, {"source": 2496, "target": 0, "value": 1}, {"source": 2497, "target": 0, "value": 1}, {"source": 2498, "target": 0, "value": 1}, {"source": 2499, "target": 0, "value": 1}, {"source": 2500, "target": 0, "value": 1}, {"source": 2501, "target": 0, "value": 1}, {"source": 2502, "target": 0, "value": 1}, {"source": 2503, "target": 0, "value": 1}, {"source": 2504, "target": 0, "value": 1}, {"source": 2505, "target": 0, "value": 1}, {"source": 2506, "target": 0, "value": 1}, {"source": 2507, "target": 0, "value": 1}, {"source": 2508, "target": 0, "value": 1}, {"source": 2509, "target": 0, "value": 1}, {"source": 2510, "target": 0, "value": 1}, {"source": 2511, "target": 0, "value": 1}, {"source": 2512, "target": 0, "value": 1}, {"source": 2513, "target": 0, "value": 1}, {"source": 2514, "target": 0, "value": 1}, {"source": 2515, "target": 0, "value": 1}, {"source": 2516, "target": 0, "value": 1}, {"source": 2517, "target": 0, "value": 1}, {"source": 2518, "target": 0, "value": 1}, {"source": 2519, "target": 0, "value": 1}, {"source": 2520, "target": 0, "value": 1}, {"source": 2521, "target": 0, "value": 1}, {"source": 2522, "target": 0, "value": 1}, {"source": 2523, "target": 0, "value": 1}, {"source": 2524, "target": 0, "value": 1}, {"source": 2525, "target": 0, "value": 1}, {"source": 2526, "target": 0, "value": 1}, {"source": 2527, "target": 0, "value": 1}, {"source": 2528, "target": 0, "value": 1}, {"source": 2529, "target": 0, "value": 1}, {"source": 2530, "target": 0, "value": 1}, {"source": 2531, "target": 0, "value": 1}, {"source": 2532, "target": 0, "value": 1}, {"source": 2533, "target": 0, "value": 1}, {"source": 2534, "target": 0, "value": 1}, {"source": 2535, "target": 0, "value": 1}, {"source": 2536, "target": 0, "value": 1}, {"source": 2537, "target": 0, "value": 1}, {"source": 2538, "target": 0, "value": 1}, {"source": 2539, "target": 0, "value": 1}, {"source": 2540, "target": 0, "value": 1}, {"source": 2541, "target": 0, "value": 1}, {"source": 2542, "target": 0, "value": 1}, {"source": 2543, "target": 0, "value": 1}, {"source": 2544, "target": 0, "value": 1}, {"source": 2545, "target": 0, "value": 1}, {"source": 2546, "target": 0, "value": 1}, {"source": 2547, "target": 0, "value": 1}, {"source": 2548, "target": 0, "value": 1}, {"source": 2549, "target": 0, "value": 1}, {"source": 2550, "target": 0, "value": 1}, {"source": 2551, "target": 0, "value": 1}, {"source": 2552, "target": 0, "value": 1}, {"source": 2553, "target": 0, "value": 1}, {"source": 2554, "target": 0, "value": 1}, {"source": 2555, "target": 0, "value": 1}, {"source": 2556, "target": 0, "value": 1}, {"source": 2557, "target": 0, "value": 1}, {"source": 2558, "target": 0, "value": 1}, {"source": 2559, "target": 0, "value": 1}, {"source": 2560, "target": 0, "value": 1}, {"source": 2561, "target": 0, "value": 1}, {"source": 2562, "target": 0, "value": 1}, {"source": 2563, "target": 0, "value": 1}, {"source": 2564, "target": 0, "value": 1}, {"source": 2565, "target": 0, "value": 1}, {"source": 2566, "target": 0, "value": 1}, {"source": 2567, "target": 0, "value": 1}, {"source": 2568, "target": 0, "value": 1}, {"source": 2569, "target": 0, "value": 1}, {"source": 2570, "target": 0, "value": 1}, {"source": 2571, "target": 0, "value": 1}, {"source": 2572, "target": 0, "value": 1}, {"source": 2573, "target": 0, "value": 1}, {"source": 2574, "target": 0, "value": 1}, {"source": 2575, "target": 0, "value": 1}, {"source": 2576, "target": 0, "value": 1}, {"source": 2577, "target": 0, "value": 1}, {"source": 2578, "target": 0, "value": 1}, {"source": 2579, "target": 0, "value": 1}, {"source": 2580, "target": 0, "value": 1}, {"source": 2581, "target": 0, "value": 1}, {"source": 2582, "target": 0, "value": 1}, {"source": 2583, "target": 0, "value": 1}, {"source": 2584, "target": 0, "value": 1}, {"source": 2585, "target": 0, "value": 1}, {"source": 2586, "target": 0, "value": 1}, {"source": 2587, "target": 0, "value": 1}, {"source": 2588, "target": 0, "value": 1}, {"source": 2589, "target": 0, "value": 1}, {"source": 2590, "target": 0, "value": 1}, {"source": 2591, "target": 0, "value": 1}, {"source": 2592, "target": 0, "value": 1}, {"source": 2593, "target": 0, "value": 1}, {"source": 2594, "target": 0, "value": 1}, {"source": 2595, "target": 0, "value": 1}, {"source": 2596, "target": 0, "value": 1}, {"source": 2597, "target": 0, "value": 1}, {"source": 2598, "target": 0, "value": 1}, {"source": 2599, "target": 0, "value": 1}, {"source": 2600, "target": 0, "value": 1}, {"source": 2601, "target": 0, "value": 1}, {"source": 2602, "target": 0, "value": 1}, {"source": 2603, "target": 0, "value": 1}, {"source": 2604, "target": 0, "value": 1}, {"source": 2605, "target": 0, "value": 1}, {"source": 2606, "target": 0, "value": 1}, {"source": 2607, "target": 0, "value": 1}, {"source": 2608, "target": 0, "value": 1}, {"source": 2609, "target": 0, "value": 1}, {"source": 2610, "target": 0, "value": 1}, {"source": 2611, "target": 0, "value": 1}, {"source": 2612, "target": 0, "value": 1}, {"source": 2613, "target": 0, "value": 1}, {"source": 2614, "target": 0, "value": 1}, {"source": 2615, "target": 0, "value": 1}, {"source": 2616, "target": 0, "value": 1}, {"source": 2617, "target": 0, "value": 1}, {"source": 2618, "target": 0, "value": 1}, {"source": 2619, "target": 0, "value": 1}, {"source": 2620, "target": 0, "value": 1}, {"source": 2621, "target": 0, "value": 1}, {"source": 2622, "target": 0, "value": 1}, {"source": 2623, "target": 0, "value": 1}, {"source": 2624, "target": 0, "value": 1}, {"source": 2625, "target": 0, "value": 1}, {"source": 2626, "target": 0, "value": 1}, {"source": 2627, "target": 0, "value": 1}, {"source": 2628, "target": 0, "value": 1}, {"source": 2629, "target": 0, "value": 1}, {"source": 2630, "target": 0, "value": 1}, {"source": 2631, "target": 0, "value": 1}, {"source": 2632, "target": 0, "value": 1}, {"source": 2633, "target": 0, "value": 1}, {"source": 2634, "target": 0, "value": 1}, {"source": 2635, "target": 0, "value": 1}, {"source": 2636, "target": 0, "value": 1}, {"source": 2637, "target": 0, "value": 1}, {"source": 2638, "target": 0, "value": 1}, {"source": 2639, "target": 0, "value": 1}, {"source": 2640, "target": 0, "value": 1}, {"source": 2641, "target": 0, "value": 1}, {"source": 2642, "target": 0, "value": 1}, {"source": 2643, "target": 0, "value": 1}, {"source": 2644, "target": 0, "value": 1}, {"source": 2645, "target": 0, "value": 1}, {"source": 2646, "target": 0, "value": 1}, {"source": 2647, "target": 0, "value": 1}, {"source": 2648, "target": 0, "value": 1}, {"source": 2649, "target": 0, "value": 1}, {"source": 2650, "target": 0, "value": 1}, {"source": 2651, "target": 0, "value": 1}, {"source": 2652, "target": 0, "value": 1}, {"source": 2653, "target": 0, "value": 1}, {"source": 2654, "target": 0, "value": 1}, {"source": 2655, "target": 0, "value": 1}, {"source": 2656, "target": 0, "value": 1}, {"source": 2657, "target": 0, "value": 1}, {"source": 2658, "target": 0, "value": 1}, {"source": 2659, "target": 0, "value": 1}, {"source": 2660, "target": 0, "value": 1}, {"source": 2661, "target": 0, "value": 1}, {"source": 2662, "target": 0, "value": 1}, {"source": 2663, "target": 0, "value": 1}, {"source": 2664, "target": 0, "value": 1}, {"source": 2665, "target": 0, "value": 1}, {"source": 2666, "target": 0, "value": 1}, {"source": 2667, "target": 0, "value": 1}, {"source": 2668, "target": 0, "value": 1}, {"source": 2669, "target": 0, "value": 1}, {"source": 2670, "target": 0, "value": 1}, {"source": 2671, "target": 0, "value": 1}, {"source": 2672, "target": 0, "value": 1}, {"source": 2673, "target": 0, "value": 1}, {"source": 2674, "target": 0, "value": 1}, {"source": 2675, "target": 0, "value": 1}, {"source": 2676, "target": 0, "value": 1}, {"source": 2677, "target": 0, "value": 1}, {"source": 2678, "target": 0, "value": 1}, {"source": 2679, "target": 0, "value": 1}, {"source": 2680, "target": 0, "value": 1}, {"source": 2681, "target": 0, "value": 1}, {"source": 2682, "target": 0, "value": 1}, {"source": 2683, "target": 0, "value": 1}, {"source": 2684, "target": 0, "value": 1}, {"source": 2685, "target": 0, "value": 1}, {"source": 2686, "target": 0, "value": 1}, {"source": 2687, "target": 0, "value": 1}, {"source": 2688, "target": 0, "value": 1}, {"source": 2689, "target": 0, "value": 1}, {"source": 2690, "target": 0, "value": 1}, {"source": 2691, "target": 0, "value": 1}, {"source": 2692, "target": 0, "value": 1}, {"source": 2693, "target": 0, "value": 1}, {"source": 2694, "target": 0, "value": 1}, {"source": 2695, "target": 0, "value": 1}, {"source": 2696, "target": 0, "value": 1}, {"source": 2697, "target": 0, "value": 1}, {"source": 2698, "target": 0, "value": 1}, {"source": 2699, "target": 0, "value": 1}, {"source": 2700, "target": 0, "value": 1}, {"source": 2701, "target": 0, "value": 1}, {"source": 2702, "target": 0, "value": 1}, {"source": 2703, "target": 0, "value": 1}, {"source": 2704, "target": 0, "value": 1}, {"source": 2705, "target": 0, "value": 1}, {"source": 2706, "target": 0, "value": 1}, {"source": 2707, "target": 0, "value": 1}, {"source": 2708, "target": 0, "value": 1}, {"source": 2709, "target": 0, "value": 1}, {"source": 2710, "target": 0, "value": 1}, {"source": 2711, "target": 0, "value": 1}, {"source": 2712, "target": 0, "value": 1}, {"source": 2713, "target": 0, "value": 1}, {"source": 2714, "target": 0, "value": 1}, {"source": 2715, "target": 0, "value": 1}, {"source": 2716, "target": 0, "value": 1}, {"source": 2717, "target": 0, "value": 1}, {"source": 2718, "target": 0, "value": 1}, {"source": 2719, "target": 0, "value": 1}, {"source": 2720, "target": 0, "value": 1}, {"source": 2721, "target": 0, "value": 1}, {"source": 2722, "target": 0, "value": 1}, {"source": 2723, "target": 0, "value": 1}, {"source": 2724, "target": 0, "value": 1}, {"source": 2725, "target": 0, "value": 1}, {"source": 2726, "target": 0, "value": 1}, {"source": 2727, "target": 0, "value": 1}, {"source": 2728, "target": 0, "value": 1}, {"source": 2729, "target": 0, "value": 1}, {"source": 2730, "target": 0, "value": 1}, {"source": 2731, "target": 0, "value": 1}, {"source": 2732, "target": 0, "value": 1}, {"source": 2733, "target": 0, "value": 1}, {"source": 2734, "target": 0, "value": 1}, {"source": 2735, "target": 0, "value": 1}, {"source": 2736, "target": 0, "value": 1}, {"source": 2737, "target": 0, "value": 1}, {"source": 2738, "target": 0, "value": 1}, {"source": 2739, "target": 0, "value": 1}, {"source": 2740, "target": 0, "value": 1}, {"source": 2741, "target": 0, "value": 1}, {"source": 2742, "target": 0, "value": 1}, {"source": 2743, "target": 0, "value": 1}, {"source": 2744, "target": 0, "value": 1}, {"source": 2745, "target": 0, "value": 1}, {"source": 2746, "target": 0, "value": 1}, {"source": 2747, "target": 0, "value": 1}, {"source": 2748, "target": 0, "value": 1}, {"source": 2749, "target": 0, "value": 1}, {"source": 2750, "target": 0, "value": 1}, {"source": 2751, "target": 0, "value": 1}, {"source": 2752, "target": 0, "value": 1}, {"source": 2753, "target": 0, "value": 1}, {"source": 2754, "target": 0, "value": 1}, {"source": 2755, "target": 0, "value": 1}, {"source": 2756, "target": 0, "value": 1}, {"source": 2757, "target": 0, "value": 1}, {"source": 2758, "target": 0, "value": 1}, {"source": 2759, "target": 0, "value": 1}, {"source": 2760, "target": 0, "value": 1}, {"source": 2761, "target": 0, "value": 1}, {"source": 2762, "target": 0, "value": 1}, {"source": 2763, "target": 0, "value": 1}, {"source": 2764, "target": 0, "value": 1}, {"source": 2765, "target": 0, "value": 1}, {"source": 2766, "target": 0, "value": 1}, {"source": 2767, "target": 0, "value": 1}, {"source": 2768, "target": 0, "value": 1}, {"source": 2769, "target": 0, "value": 1}, {"source": 2770, "target": 0, "value": 1}, {"source": 2771, "target": 0, "value": 1}, {"source": 2772, "target": 0, "value": 1}, {"source": 2773, "target": 0, "value": 1}, {"source": 2774, "target": 0, "value": 1}, {"source": 2775, "target": 0, "value": 1}, {"source": 2776, "target": 0, "value": 1}, {"source": 2777, "target": 0, "value": 1}, {"source": 2778, "target": 0, "value": 1}, {"source": 2779, "target": 0, "value": 1}, {"source": 2780, "target": 0, "value": 1}, {"source": 2781, "target": 0, "value": 1}, {"source": 2782, "target": 0, "value": 1}, {"source": 2783, "target": 0, "value": 1}, {"source": 2784, "target": 0, "value": 1}, {"source": 2785, "target": 0, "value": 1}, {"source": 2786, "target": 0, "value": 1}, {"source": 2787, "target": 0, "value": 1}, {"source": 2788, "target": 0, "value": 1}, {"source": 2789, "target": 0, "value": 1}, {"source": 2790, "target": 0, "value": 1}, {"source": 2791, "target": 0, "value": 1}, {"source": 2792, "target": 0, "value": 1}, {"source": 2793, "target": 0, "value": 1}, {"source": 2794, "target": 0, "value": 1}, {"source": 2795, "target": 0, "value": 1}, {"source": 2796, "target": 0, "value": 1}, {"source": 2797, "target": 0, "value": 1}, {"source": 2798, "target": 0, "value": 1}, {"source": 2799, "target": 0, "value": 1}, {"source": 2800, "target": 0, "value": 1}, {"source": 2801, "target": 0, "value": 1}, {"source": 2802, "target": 0, "value": 1}, {"source": 2803, "target": 0, "value": 1}, {"source": 2804, "target": 0, "value": 1}, {"source": 2805, "target": 0, "value": 1}, {"source": 2806, "target": 0, "value": 1}, {"source": 2807, "target": 0, "value": 1}, {"source": 2808, "target": 0, "value": 1}, {"source": 2809, "target": 0, "value": 1}, {"source": 2810, "target": 0, "value": 1}, {"source": 2811, "target": 0, "value": 1}, {"source": 2812, "target": 0, "value": 1}, {"source": 2813, "target": 0, "value": 1}, {"source": 2814, "target": 0, "value": 1}, {"source": 2815, "target": 0, "value": 1}, {"source": 2816, "target": 0, "value": 1}, {"source": 2817, "target": 0, "value": 1}, {"source": 2818, "target": 0, "value": 1}, {"source": 2819, "target": 0, "value": 1}, {"source": 2820, "target": 0, "value": 1}, {"source": 2821, "target": 0, "value": 1}, {"source": 2822, "target": 0, "value": 1}, {"source": 2823, "target": 0, "value": 1}, {"source": 2824, "target": 0, "value": 1}, {"source": 2825, "target": 0, "value": 1}, {"source": 2826, "target": 0, "value": 1}, {"source": 2827, "target": 0, "value": 1}, {"source": 2828, "target": 0, "value": 1}, {"source": 2829, "target": 0, "value": 1}, {"source": 2830, "target": 0, "value": 1}, {"source": 2831, "target": 0, "value": 1}, {"source": 2832, "target": 0, "value": 1}, {"source": 2833, "target": 0, "value": 1}, {"source": 2834, "target": 0, "value": 1}, {"source": 2835, "target": 0, "value": 1}, {"source": 2836, "target": 0, "value": 1}, {"source": 2837, "target": 0, "value": 1}, {"source": 2838, "target": 0, "value": 1}, {"source": 2839, "target": 0, "value": 1}, {"source": 2840, "target": 0, "value": 1}, {"source": 2841, "target": 0, "value": 1}, {"source": 2842, "target": 0, "value": 1}, {"source": 2843, "target": 0, "value": 1}, {"source": 2844, "target": 0, "value": 1}, {"source": 2845, "target": 0, "value": 1}, {"source": 2846, "target": 0, "value": 1}, {"source": 2847, "target": 0, "value": 1}, {"source": 2848, "target": 0, "value": 1}, {"source": 2849, "target": 0, "value": 1}, {"source": 2850, "target": 0, "value": 1}, {"source": 2851, "target": 0, "value": 1}, {"source": 2852, "target": 0, "value": 1}, {"source": 2853, "target": 0, "value": 1}, {"source": 2854, "target": 0, "value": 1}, {"source": 2855, "target": 0, "value": 1}, {"source": 2856, "target": 0, "value": 1}, {"source": 2857, "target": 0, "value": 1}, {"source": 2858, "target": 0, "value": 1}, {"source": 2859, "target": 0, "value": 1}, {"source": 2860, "target": 0, "value": 1}, {"source": 2861, "target": 0, "value": 1}, {"source": 2862, "target": 0, "value": 1}, {"source": 2863, "target": 0, "value": 1}, {"source": 2864, "target": 0, "value": 1}, {"source": 2865, "target": 0, "value": 1}, {"source": 2866, "target": 0, "value": 1}, {"source": 2867, "target": 0, "value": 1}, {"source": 2868, "target": 0, "value": 1}, {"source": 2869, "target": 0, "value": 1}, {"source": 2870, "target": 0, "value": 1}, {"source": 2871, "target": 0, "value": 1}, {"source": 2872, "target": 0, "value": 1}, {"source": 2873, "target": 0, "value": 1}, {"source": 2874, "target": 0, "value": 1}, {"source": 2875, "target": 0, "value": 1}, {"source": 2876, "target": 0, "value": 1}, {"source": 2877, "target": 0, "value": 1}, {"source": 2878, "target": 0, "value": 1}, {"source": 2879, "target": 0, "value": 1}, {"source": 2880, "target": 0, "value": 1}, {"source": 2881, "target": 0, "value": 1}, {"source": 2882, "target": 0, "value": 1}, {"source": 2883, "target": 0, "value": 1}, {"source": 2884, "target": 0, "value": 1}, {"source": 2885, "target": 0, "value": 1}, {"source": 2886, "target": 0, "value": 1}, {"source": 2887, "target": 0, "value": 1}, {"source": 2888, "target": 0, "value": 1}, {"source": 2889, "target": 0, "value": 1}, {"source": 2890, "target": 0, "value": 1}, {"source": 2891, "target": 0, "value": 1}, {"source": 2892, "target": 0, "value": 1}, {"source": 2893, "target": 0, "value": 1}, {"source": 2894, "target": 0, "value": 1}, {"source": 2895, "target": 0, "value": 1}, {"source": 2896, "target": 0, "value": 1}, {"source": 2897, "target": 0, "value": 1}, {"source": 2898, "target": 0, "value": 1}, {"source": 2899, "target": 0, "value": 1}, {"source": 2900, "target": 0, "value": 1}, {"source": 2901, "target": 0, "value": 1}, {"source": 2902, "target": 0, "value": 1}, {"source": 2903, "target": 0, "value": 1}, {"source": 2904, "target": 0, "value": 1}, {"source": 2905, "target": 0, "value": 1}, {"source": 2906, "target": 0, "value": 1}, {"source": 2907, "target": 0, "value": 1}, {"source": 2908, "target": 0, "value": 1}, {"source": 2909, "target": 0, "value": 1}, {"source": 2910, "target": 0, "value": 1}, {"source": 2911, "target": 0, "value": 1}, {"source": 2912, "target": 0, "value": 1}, {"source": 2913, "target": 0, "value": 1}, {"source": 2914, "target": 0, "value": 1}, {"source": 2915, "target": 0, "value": 1}, {"source": 2916, "target": 0, "value": 1}, {"source": 2917, "target": 0, "value": 1}, {"source": 2918, "target": 0, "value": 1}, {"source": 2919, "target": 0, "value": 1}, {"source": 2920, "target": 0, "value": 1}, {"source": 2921, "target": 0, "value": 1}, {"source": 2922, "target": 0, "value": 1}, {"source": 2923, "target": 0, "value": 1}, {"source": 2924, "target": 0, "value": 1}, {"source": 2925, "target": 0, "value": 1}, {"source": 2926, "target": 0, "value": 1}, {"source": 2927, "target": 0, "value": 1}, {"source": 2928, "target": 0, "value": 1}, {"source": 2929, "target": 0, "value": 1}, {"source": 2930, "target": 0, "value": 1}, {"source": 2931, "target": 0, "value": 1}, {"source": 2932, "target": 0, "value": 1}, {"source": 2933, "target": 0, "value": 1}, {"source": 2934, "target": 0, "value": 1}, {"source": 2935, "target": 0, "value": 1}, {"source": 2936, "target": 0, "value": 1}, {"source": 2937, "target": 0, "value": 1}, {"source": 2938, "target": 0, "value": 1}, {"source": 2939, "target": 0, "value": 1}, {"source": 2940, "target": 0, "value": 1}, {"source": 2941, "target": 0, "value": 1}, {"source": 2942, "target": 0, "value": 1}, {"source": 2943, "target": 0, "value": 1}, {"source": 2944, "target": 0, "value": 1}, {"source": 2945, "target": 0, "value": 1}, {"source": 2946, "target": 0, "value": 1}, {"source": 2947, "target": 0, "value": 1}, {"source": 2948, "target": 0, "value": 1}, {"source": 2949, "target": 0, "value": 1}, {"source": 2950, "target": 0, "value": 1}, {"source": 2951, "target": 0, "value": 1}, {"source": 2952, "target": 0, "value": 1}, {"source": 2953, "target": 0, "value": 1}, {"source": 2954, "target": 0, "value": 1}, {"source": 2955, "target": 0, "value": 1}, {"source": 2956, "target": 0, "value": 1}, {"source": 2957, "target": 0, "value": 1}, {"source": 2958, "target": 0, "value": 1}, {"source": 2959, "target": 0, "value": 1}, {"source": 2960, "target": 0, "value": 1}, {"source": 2961, "target": 0, "value": 1}, {"source": 2962, "target": 0, "value": 1}, {"source": 2963, "target": 0, "value": 1}, {"source": 2964, "target": 0, "value": 1}, {"source": 2965, "target": 0, "value": 1}, {"source": 2966, "target": 0, "value": 1}, {"source": 2967, "target": 0, "value": 1}, {"source": 2968, "target": 0, "value": 1}, {"source": 2969, "target": 0, "value": 1}, {"source": 2970, "target": 0, "value": 1}, {"source": 2971, "target": 0, "value": 1}, {"source": 2972, "target": 0, "value": 1}, {"source": 2973, "target": 0, "value": 1}, {"source": 2974, "target": 0, "value": 1}, {"source": 2975, "target": 0, "value": 1}, {"source": 2976, "target": 0, "value": 1}, {"source": 2977, "target": 0, "value": 1}, {"source": 2978, "target": 0, "value": 1}, {"source": 2979, "target": 0, "value": 1}, {"source": 2980, "target": 0, "value": 1}, {"source": 2981, "target": 0, "value": 1}, {"source": 2982, "target": 0, "value": 1}, {"source": 2983, "target": 0, "value": 1}, {"source": 2984, "target": 0, "value": 1}, {"source": 2985, "target": 0, "value": 1}, {"source": 2986, "target": 0, "value": 1}, {"source": 2987, "target": 0, "value": 1}, {"source": 2988, "target": 0, "value": 1}, {"source": 2989, "target": 0, "value": 1}, {"source": 2990, "target": 0, "value": 1}, {"source": 2991, "target": 0, "value": 1}, {"source": 2992, "target": 0, "value": 1}, {"source": 2993, "target": 0, "value": 1}, {"source": 2994, "target": 0, "value": 1}, {"source": 2995, "target": 0, "value": 1}, {"source": 2996, "target": 0, "value": 1}, {"source": 2997, "target": 0, "value": 1}, {"source": 2998, "target": 0, "value": 1}, {"source": 2999, "target": 0, "value": 1}, {"source": 3000, "target": 0, "value": 1}, {"source": 3001, "target": 0, "value": 1}, {"source": 3002, "target": 0, "value": 1}, {"source": 3003, "target": 0, "value": 1}, {"source": 3004, "target": 0, "value": 1}, {"source": 3005, "target": 0, "value": 1}, {"source": 3006, "target": 0, "value": 1}, {"source": 3007, "target": 0, "value": 1}, {"source": 3008, "target": 0, "value": 1}, {"source": 3009, "target": 0, "value": 1}, {"source": 3010, "target": 0, "value": 1}, {"source": 3011, "target": 0, "value": 1}, {"source": 3012, "target": 0, "value": 1}, {"source": 3013, "target": 0, "value": 1}, {"source": 3014, "target": 0, "value": 1}, {"source": 3015, "target": 0, "value": 1}, {"source": 3016, "target": 0, "value": 1}, {"source": 3017, "target": 0, "value": 1}, {"source": 3018, "target": 0, "value": 1}, {"source": 3019, "target": 0, "value": 1}, {"source": 3020, "target": 0, "value": 1}, {"source": 3021, "target": 0, "value": 1}, {"source": 3022, "target": 0, "value": 1}, {"source": 3023, "target": 0, "value": 1}, {"source": 3024, "target": 0, "value": 1}, {"source": 3025, "target": 0, "value": 1}, {"source": 3026, "target": 0, "value": 1}, {"source": 3027, "target": 0, "value": 1}, {"source": 3028, "target": 0, "value": 1}, {"source": 3029, "target": 0, "value": 1}, {"source": 3030, "target": 0, "value": 1}, {"source": 3031, "target": 0, "value": 1}, {"source": 3032, "target": 0, "value": 1}, {"source": 3033, "target": 0, "value": 1}, {"source": 3034, "target": 0, "value": 1}, {"source": 3035, "target": 0, "value": 1}, {"source": 3036, "target": 0, "value": 1}, {"source": 3037, "target": 0, "value": 1}, {"source": 3038, "target": 0, "value": 1}, {"source": 3039, "target": 0, "value": 1}, {"source": 3040, "target": 0, "value": 1}, {"source": 3041, "target": 0, "value": 1}, {"source": 3042, "target": 0, "value": 1}, {"source": 3043, "target": 0, "value": 1}, {"source": 3044, "target": 0, "value": 1}, {"source": 3045, "target": 0, "value": 1}, {"source": 3046, "target": 0, "value": 1}, {"source": 3047, "target": 0, "value": 1}, {"source": 3048, "target": 0, "value": 1}, {"source": 3049, "target": 0, "value": 1}, {"source": 3050, "target": 0, "value": 1}, {"source": 3051, "target": 0, "value": 1}, {"source": 3052, "target": 0, "value": 1}, {"source": 3053, "target": 0, "value": 1}, {"source": 3054, "target": 0, "value": 1}, {"source": 3055, "target": 0, "value": 1}, {"source": 3056, "target": 0, "value": 1}, {"source": 3057, "target": 0, "value": 1}, {"source": 3058, "target": 0, "value": 1}, {"source": 3059, "target": 0, "value": 1}, {"source": 3060, "target": 0, "value": 1}, {"source": 3061, "target": 0, "value": 1}, {"source": 3062, "target": 0, "value": 1}, {"source": 3063, "target": 0, "value": 1}, {"source": 3064, "target": 0, "value": 1}, {"source": 3065, "target": 0, "value": 1}, {"source": 3066, "target": 0, "value": 1}, {"source": 3067, "target": 0, "value": 1}, {"source": 3068, "target": 0, "value": 1}, {"source": 3069, "target": 0, "value": 1}, {"source": 3070, "target": 0, "value": 1}, {"source": 3071, "target": 0, "value": 1}, {"source": 3072, "target": 0, "value": 1}, {"source": 3073, "target": 0, "value": 1}, {"source": 3074, "target": 0, "value": 1}, {"source": 3075, "target": 0, "value": 1}, {"source": 3076, "target": 0, "value": 1}, {"source": 3077, "target": 0, "value": 1}, {"source": 3078, "target": 0, "value": 1}, {"source": 3079, "target": 0, "value": 1}, {"source": 3080, "target": 0, "value": 1}, {"source": 3081, "target": 0, "value": 1}, {"source": 3082, "target": 0, "value": 1}, {"source": 3083, "target": 0, "value": 1}, {"source": 3084, "target": 0, "value": 1}, {"source": 3085, "target": 0, "value": 1}, {"source": 3086, "target": 0, "value": 1}, {"source": 3087, "target": 0, "value": 1}, {"source": 3088, "target": 0, "value": 1}, {"source": 3089, "target": 0, "value": 1}, {"source": 3090, "target": 0, "value": 1}, {"source": 3091, "target": 0, "value": 1}, {"source": 3092, "target": 0, "value": 1}, {"source": 3093, "target": 0, "value": 1}, {"source": 3094, "target": 0, "value": 1}, {"source": 3095, "target": 0, "value": 1}, {"source": 3096, "target": 0, "value": 1}, {"source": 3097, "target": 0, "value": 1}, {"source": 3098, "target": 0, "value": 1}, {"source": 3099, "target": 0, "value": 1}, {"source": 3100, "target": 0, "value": 1}, {"source": 3101, "target": 0, "value": 1}, {"source": 3102, "target": 0, "value": 1}, {"source": 3103, "target": 0, "value": 1}, {"source": 3104, "target": 0, "value": 1}, {"source": 3105, "target": 0, "value": 1}, {"source": 3106, "target": 0, "value": 1}, {"source": 3107, "target": 0, "value": 1}, {"source": 3108, "target": 0, "value": 1}, {"source": 3109, "target": 0, "value": 1}, {"source": 3110, "target": 0, "value": 1}, {"source": 3111, "target": 0, "value": 1}, {"source": 3112, "target": 0, "value": 1}, {"source": 3113, "target": 0, "value": 1}, {"source": 3114, "target": 0, "value": 1}, {"source": 3115, "target": 0, "value": 1}, {"source": 3116, "target": 0, "value": 1}, {"source": 3117, "target": 0, "value": 1}, {"source": 3118, "target": 0, "value": 1}, {"source": 3119, "target": 0, "value": 1}, {"source": 3120, "target": 0, "value": 1}, {"source": 3121, "target": 0, "value": 1}, {"source": 3122, "target": 0, "value": 1}, {"source": 3123, "target": 0, "value": 1}, {"source": 3124, "target": 0, "value": 1}, {"source": 3125, "target": 0, "value": 1}, {"source": 3126, "target": 0, "value": 1}, {"source": 3127, "target": 0, "value": 1}, {"source": 3128, "target": 0, "value": 1}, {"source": 3129, "target": 0, "value": 1}, {"source": 3130, "target": 0, "value": 1}, {"source": 3131, "target": 0, "value": 1}, {"source": 3132, "target": 0, "value": 1}, {"source": 3133, "target": 0, "value": 1}, {"source": 3134, "target": 0, "value": 1}, {"source": 3135, "target": 0, "value": 1}, {"source": 3136, "target": 0, "value": 1}, {"source": 3137, "target": 0, "value": 1}, {"source": 3138, "target": 0, "value": 1}, {"source": 3139, "target": 0, "value": 1}, {"source": 3140, "target": 0, "value": 1}, {"source": 3141, "target": 0, "value": 1}, {"source": 3142, "target": 0, "value": 1}, {"source": 3143, "target": 0, "value": 1}, {"source": 3144, "target": 0, "value": 1}, {"source": 3145, "target": 0, "value": 1}, {"source": 3146, "target": 0, "value": 1}, {"source": 3147, "target": 0, "value": 1}, {"source": 3148, "target": 0, "value": 1}, {"source": 3149, "target": 0, "value": 1}, {"source": 3150, "target": 0, "value": 1}, {"source": 3151, "target": 0, "value": 1}, {"source": 3152, "target": 0, "value": 1}, {"source": 3153, "target": 0, "value": 1}, {"source": 3154, "target": 0, "value": 1}, {"source": 3155, "target": 0, "value": 1}, {"source": 3156, "target": 0, "value": 1}, {"source": 3157, "target": 0, "value": 1}, {"source": 3158, "target": 0, "value": 1}, {"source": 3159, "target": 0, "value": 1}, {"source": 3160, "target": 0, "value": 1}, {"source": 3161, "target": 0, "value": 1}, {"source": 3162, "target": 0, "value": 1}, {"source": 3163, "target": 0, "value": 1}, {"source": 3164, "target": 0, "value": 1}, {"source": 3165, "target": 0, "value": 1}, {"source": 3166, "target": 0, "value": 1}, {"source": 3167, "target": 0, "value": 1}, {"source": 3168, "target": 0, "value": 1}, {"source": 3169, "target": 0, "value": 1}, {"source": 3170, "target": 0, "value": 1}, {"source": 3171, "target": 0, "value": 1}, {"source": 3172, "target": 0, "value": 1}, {"source": 3173, "target": 0, "value": 1}, {"source": 3174, "target": 0, "value": 1}, {"source": 3175, "target": 0, "value": 1}, {"source": 3176, "target": 0, "value": 1}, {"source": 3177, "target": 0, "value": 1}, {"source": 3178, "target": 0, "value": 1}, {"source": 3179, "target": 0, "value": 1}, {"source": 3180, "target": 0, "value": 1}, {"source": 3181, "target": 0, "value": 1}, {"source": 3182, "target": 0, "value": 1}, {"source": 3183, "target": 0, "value": 1}, {"source": 3184, "target": 0, "value": 1}, {"source": 3185, "target": 0, "value": 1}, {"source": 3186, "target": 0, "value": 1}, {"source": 3187, "target": 0, "value": 1}, {"source": 3188, "target": 0, "value": 1}, {"source": 3189, "target": 0, "value": 1}, {"source": 3190, "target": 0, "value": 1}, {"source": 3191, "target": 0, "value": 1}, {"source": 3192, "target": 0, "value": 1}, {"source": 3193, "target": 0, "value": 1}, {"source": 3194, "target": 0, "value": 1}, {"source": 3195, "target": 0, "value": 1}, {"source": 3196, "target": 0, "value": 1}, {"source": 3197, "target": 0, "value": 1}, {"source": 3198, "target": 0, "value": 1}, {"source": 3199, "target": 0, "value": 1}, {"source": 3200, "target": 0, "value": 1}, {"source": 3201, "target": 0, "value": 1}, {"source": 3202, "target": 0, "value": 1}, {"source": 3203, "target": 0, "value": 1}, {"source": 3204, "target": 0, "value": 1}, {"source": 3205, "target": 0, "value": 1}, {"source": 3206, "target": 0, "value": 1}, {"source": 3207, "target": 0, "value": 1}, {"source": 3208, "target": 0, "value": 1}, {"source": 3209, "target": 0, "value": 1}, {"source": 3210, "target": 0, "value": 1}, {"source": 3211, "target": 0, "value": 1}, {"source": 3212, "target": 0, "value": 1}, {"source": 3213, "target": 0, "value": 1}, {"source": 3214, "target": 0, "value": 1}, {"source": 3215, "target": 0, "value": 1}, {"source": 3216, "target": 0, "value": 1}, {"source": 3217, "target": 0, "value": 1}, {"source": 3218, "target": 0, "value": 1}, {"source": 3219, "target": 0, "value": 1}, {"source": 3220, "target": 0, "value": 1}, {"source": 3221, "target": 0, "value": 1}, {"source": 3222, "target": 0, "value": 1}, {"source": 3223, "target": 0, "value": 1}, {"source": 3224, "target": 0, "value": 1}, {"source": 3225, "target": 0, "value": 1}, {"source": 3226, "target": 0, "value": 1}, {"source": 3227, "target": 0, "value": 1}, {"source": 3228, "target": 0, "value": 1}, {"source": 3229, "target": 0, "value": 1}, {"source": 3230, "target": 0, "value": 1}, {"source": 3231, "target": 0, "value": 1}, {"source": 3232, "target": 0, "value": 1}, {"source": 3233, "target": 0, "value": 1}, {"source": 3234, "target": 0, "value": 1}, {"source": 3235, "target": 0, "value": 1}, {"source": 3236, "target": 0, "value": 1}, {"source": 3237, "target": 0, "value": 1}, {"source": 3238, "target": 0, "value": 1}, {"source": 3239, "target": 0, "value": 1}, {"source": 3240, "target": 0, "value": 1}, {"source": 3241, "target": 0, "value": 1}, {"source": 3242, "target": 0, "value": 1}, {"source": 3243, "target": 0, "value": 1}, {"source": 3244, "target": 0, "value": 1}, {"source": 3245, "target": 0, "value": 1}, {"source": 3246, "target": 0, "value": 1}, {"source": 3247, "target": 0, "value": 1}, {"source": 3248, "target": 0, "value": 1}, {"source": 3249, "target": 0, "value": 1}, {"source": 3250, "target": 0, "value": 1}, {"source": 3251, "target": 0, "value": 1}, {"source": 3252, "target": 0, "value": 1}, {"source": 3253, "target": 0, "value": 1}, {"source": 3254, "target": 0, "value": 1}, {"source": 3255, "target": 0, "value": 1}, {"source": 3256, "target": 0, "value": 1}, {"source": 3257, "target": 0, "value": 1}, {"source": 3258, "target": 0, "value": 1}, {"source": 3259, "target": 0, "value": 1}, {"source": 3260, "target": 0, "value": 1}, {"source": 3261, "target": 0, "value": 1}, {"source": 3262, "target": 0, "value": 1}, {"source": 3263, "target": 0, "value": 1}, {"source": 3264, "target": 0, "value": 1}, {"source": 3265, "target": 0, "value": 1}, {"source": 3266, "target": 0, "value": 1}, {"source": 3267, "target": 0, "value": 1}, {"source": 3268, "target": 0, "value": 1}, {"source": 3269, "target": 0, "value": 1}, {"source": 3270, "target": 0, "value": 1}, {"source": 3271, "target": 0, "value": 1}, {"source": 3272, "target": 0, "value": 1}, {"source": 3273, "target": 0, "value": 1}, {"source": 3274, "target": 0, "value": 1}, {"source": 3275, "target": 0, "value": 1}, {"source": 3276, "target": 0, "value": 1}, {"source": 3277, "target": 0, "value": 1}, {"source": 3278, "target": 0, "value": 1}, {"source": 3279, "target": 0, "value": 1}, {"source": 3280, "target": 0, "value": 1}, {"source": 3281, "target": 0, "value": 1}, {"source": 3282, "target": 0, "value": 1}, {"source": 3283, "target": 0, "value": 1}, {"source": 3284, "target": 0, "value": 1}, {"source": 3285, "target": 0, "value": 1}, {"source": 3286, "target": 0, "value": 1}, {"source": 3287, "target": 0, "value": 1}, {"source": 3288, "target": 0, "value": 1}, {"source": 3289, "target": 0, "value": 1}, {"source": 3290, "target": 0, "value": 1}, {"source": 3291, "target": 0, "value": 1}, {"source": 3292, "target": 0, "value": 1}, {"source": 3293, "target": 0, "value": 1}, {"source": 3294, "target": 0, "value": 1}, {"source": 3295, "target": 0, "value": 1}, {"source": 3296, "target": 0, "value": 1}, {"source": 3297, "target": 0, "value": 1}, {"source": 3298, "target": 0, "value": 1}, {"source": 3299, "target": 0, "value": 1}, {"source": 3300, "target": 0, "value": 1}, {"source": 3301, "target": 0, "value": 1}, {"source": 3302, "target": 0, "value": 1}, {"source": 3303, "target": 0, "value": 1}, {"source": 3304, "target": 0, "value": 1}, {"source": 3305, "target": 0, "value": 1}, {"source": 3306, "target": 0, "value": 1}, {"source": 3307, "target": 0, "value": 1}, {"source": 3308, "target": 0, "value": 1}, {"source": 3309, "target": 0, "value": 1}, {"source": 3310, "target": 0, "value": 1}, {"source": 3311, "target": 0, "value": 1}, {"source": 3312, "target": 0, "value": 1}, {"source": 3313, "target": 0, "value": 1}, {"source": 3314, "target": 0, "value": 1}, {"source": 3315, "target": 0, "value": 1}, {"source": 3316, "target": 0, "value": 1}, {"source": 3317, "target": 0, "value": 1}, {"source": 3318, "target": 0, "value": 1}, {"source": 3319, "target": 0, "value": 1}, {"source": 3320, "target": 0, "value": 1}, {"source": 3321, "target": 0, "value": 1}, {"source": 3322, "target": 0, "value": 1}, {"source": 3323, "target": 0, "value": 1}, {"source": 3324, "target": 0, "value": 1}, {"source": 3325, "target": 0, "value": 1}, {"source": 3326, "target": 0, "value": 1}, {"source": 3327, "target": 0, "value": 1}, {"source": 3328, "target": 0, "value": 1}, {"source": 3329, "target": 0, "value": 1}, {"source": 3330, "target": 0, "value": 1}, {"source": 3331, "target": 0, "value": 1}, {"source": 3332, "target": 0, "value": 1}, {"source": 3333, "target": 0, "value": 1}, {"source": 3334, "target": 0, "value": 1}, {"source": 3335, "target": 0, "value": 1}, {"source": 3336, "target": 0, "value": 1}, {"source": 3337, "target": 0, "value": 1}, {"source": 3338, "target": 0, "value": 1}, {"source": 3339, "target": 0, "value": 1}, {"source": 3340, "target": 0, "value": 1}, {"source": 3341, "target": 0, "value": 1}, {"source": 3342, "target": 0, "value": 1}, {"source": 3343, "target": 0, "value": 1}, {"source": 3344, "target": 0, "value": 1}, {"source": 3345, "target": 0, "value": 1}, {"source": 3346, "target": 0, "value": 1}, {"source": 3347, "target": 0, "value": 1}, {"source": 3348, "target": 0, "value": 1}, {"source": 3349, "target": 0, "value": 1}, {"source": 3350, "target": 0, "value": 1}, {"source": 3351, "target": 0, "value": 1}, {"source": 3352, "target": 0, "value": 1}, {"source": 3353, "target": 0, "value": 1}, {"source": 3354, "target": 0, "value": 1}, {"source": 3355, "target": 0, "value": 1}, {"source": 3356, "target": 0, "value": 1}, {"source": 3357, "target": 0, "value": 1}, {"source": 3358, "target": 0, "value": 1}, {"source": 3359, "target": 0, "value": 1}, {"source": 3360, "target": 0, "value": 1}, {"source": 3361, "target": 0, "value": 1}, {"source": 3362, "target": 0, "value": 1}, {"source": 3363, "target": 0, "value": 1}, {"source": 3364, "target": 0, "value": 1}, {"source": 3365, "target": 0, "value": 1}, {"source": 3366, "target": 0, "value": 1}, {"source": 3367, "target": 0, "value": 1}, {"source": 3368, "target": 0, "value": 1}, {"source": 3369, "target": 0, "value": 1}, {"source": 3370, "target": 0, "value": 1}, {"source": 3371, "target": 0, "value": 1}, {"source": 3372, "target": 0, "value": 1}, {"source": 3373, "target": 0, "value": 1}, {"source": 3374, "target": 0, "value": 1}, {"source": 3375, "target": 0, "value": 1}, {"source": 3376, "target": 0, "value": 1}, {"source": 3377, "target": 0, "value": 1}, {"source": 3378, "target": 0, "value": 1}, {"source": 3379, "target": 0, "value": 1}, {"source": 3380, "target": 0, "value": 1}, {"source": 3381, "target": 0, "value": 1}, {"source": 3382, "target": 0, "value": 1}, {"source": 3383, "target": 0, "value": 1}, {"source": 3384, "target": 0, "value": 1}, {"source": 3385, "target": 0, "value": 1}, {"source": 3386, "target": 0, "value": 1}, {"source": 3387, "target": 0, "value": 1}, {"source": 3388, "target": 0, "value": 1}, {"source": 3389, "target": 0, "value": 1}, {"source": 3390, "target": 0, "value": 1}, {"source": 3391, "target": 0, "value": 1}, {"source": 3392, "target": 0, "value": 1}, {"source": 3393, "target": 0, "value": 1}, {"source": 3394, "target": 0, "value": 1}, {"source": 3395, "target": 0, "value": 1}, {"source": 3396, "target": 0, "value": 1}, {"source": 3397, "target": 0, "value": 1}, {"source": 3398, "target": 0, "value": 1}, {"source": 3399, "target": 0, "value": 1}, {"source": 3400, "target": 0, "value": 1}, {"source": 3401, "target": 0, "value": 1}, {"source": 3402, "target": 0, "value": 1}, {"source": 3403, "target": 0, "value": 1}, {"source": 3404, "target": 0, "value": 1}, {"source": 3405, "target": 0, "value": 1}, {"source": 3406, "target": 0, "value": 1}, {"source": 3407, "target": 0, "value": 1}, {"source": 3408, "target": 0, "value": 1}, {"source": 3409, "target": 0, "value": 1}, {"source": 3410, "target": 0, "value": 1}, {"source": 3411, "target": 0, "value": 1}, {"source": 3412, "target": 0, "value": 1}, {"source": 3413, "target": 0, "value": 1}, {"source": 3414, "target": 0, "value": 1}, {"source": 3415, "target": 0, "value": 1}, {"source": 3416, "target": 0, "value": 1}, {"source": 3417, "target": 0, "value": 1}, {"source": 3418, "target": 0, "value": 1}, {"source": 3419, "target": 0, "value": 1}, {"source": 3420, "target": 0, "value": 1}, {"source": 3421, "target": 0, "value": 1}, {"source": 3422, "target": 0, "value": 1}, {"source": 3423, "target": 0, "value": 1}, {"source": 3424, "target": 0, "value": 1}, {"source": 3425, "target": 0, "value": 1}, {"source": 3426, "target": 0, "value": 1}, {"source": 3427, "target": 0, "value": 1}, {"source": 3428, "target": 0, "value": 1}, {"source": 3429, "target": 0, "value": 1}, {"source": 3430, "target": 0, "value": 1}, {"source": 3431, "target": 0, "value": 1}, {"source": 3432, "target": 0, "value": 1}, {"source": 3433, "target": 0, "value": 1}, {"source": 3434, "target": 0, "value": 1}, {"source": 3435, "target": 0, "value": 1}, {"source": 3436, "target": 0, "value": 1}, {"source": 3437, "target": 0, "value": 1}, {"source": 3438, "target": 0, "value": 1}, {"source": 3439, "target": 0, "value": 1}, {"source": 3440, "target": 0, "value": 1}, {"source": 3441, "target": 0, "value": 1}, {"source": 3442, "target": 0, "value": 1}, {"source": 3443, "target": 0, "value": 1}, {"source": 3444, "target": 0, "value": 1}, {"source": 3445, "target": 0, "value": 1}, {"source": 3446, "target": 0, "value": 1}, {"source": 3447, "target": 0, "value": 1}, {"source": 3448, "target": 0, "value": 1}, {"source": 3449, "target": 0, "value": 1}, {"source": 3450, "target": 0, "value": 1}, {"source": 3451, "target": 0, "value": 1}, {"source": 3452, "target": 0, "value": 1}, {"source": 3453, "target": 0, "value": 1}, {"source": 3454, "target": 0, "value": 1}, {"source": 3455, "target": 0, "value": 1}, {"source": 3456, "target": 0, "value": 1}, {"source": 3457, "target": 0, "value": 1}, {"source": 3458, "target": 0, "value": 1}, {"source": 3459, "target": 0, "value": 1}, {"source": 3460, "target": 0, "value": 1}, {"source": 3461, "target": 0, "value": 1}, {"source": 3462, "target": 0, "value": 1}, {"source": 3463, "target": 0, "value": 1}, {"source": 3464, "target": 0, "value": 1}, {"source": 3465, "target": 0, "value": 1}, {"source": 3466, "target": 0, "value": 1}, {"source": 3467, "target": 0, "value": 1}, {"source": 3468, "target": 0, "value": 1}, {"source": 3469, "target": 0, "value": 1}, {"source": 3470, "target": 0, "value": 1}, {"source": 3471, "target": 0, "value": 1}, {"source": 3472, "target": 0, "value": 1}, {"source": 3473, "target": 0, "value": 1}, {"source": 3474, "target": 0, "value": 1}, {"source": 3475, "target": 0, "value": 1}, {"source": 3476, "target": 0, "value": 1}, {"source": 3477, "target": 0, "value": 1}, {"source": 3478, "target": 0, "value": 1}, {"source": 3479, "target": 0, "value": 1}, {"source": 3480, "target": 0, "value": 1}, {"source": 3481, "target": 0, "value": 1}, {"source": 3482, "target": 0, "value": 1}, {"source": 3483, "target": 0, "value": 1}, {"source": 3484, "target": 0, "value": 1}, {"source": 3485, "target": 0, "value": 1}, {"source": 3486, "target": 0, "value": 1}, {"source": 3487, "target": 0, "value": 1}, {"source": 3488, "target": 0, "value": 1}, {"source": 3489, "target": 0, "value": 1}, {"source": 3490, "target": 0, "value": 1}, {"source": 3491, "target": 0, "value": 1}, {"source": 3492, "target": 0, "value": 1}, {"source": 3493, "target": 0, "value": 1}, {"source": 3494, "target": 0, "value": 1}, {"source": 3495, "target": 0, "value": 1}, {"source": 3496, "target": 0, "value": 1}, {"source": 3497, "target": 0, "value": 1}, {"source": 3498, "target": 0, "value": 1}, {"source": 3499, "target": 0, "value": 1}, {"source": 3500, "target": 0, "value": 1}, {"source": 3501, "target": 0, "value": 1}]}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment