Upload 4 files
Browse files- graph.js +123 -0
- index.html +124 -16
- info.csv +474 -0
- mst_data.json +1 -0
graph.js
ADDED
|
@@ -0,0 +1,123 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
async function loadCsvData(url) {
|
| 2 |
+
const response = await fetch(url);
|
| 3 |
+
const csvText = await response.text();
|
| 4 |
+
const cleanedCsvText = csvText.replace(/\r/g, ""); // ここで \r を取り除く
|
| 5 |
+
const lines = cleanedCsvText.split("\n");
|
| 6 |
+
const headers = lines[0].split(",");
|
| 7 |
+
|
| 8 |
+
return lines.slice(1).map((line) => {
|
| 9 |
+
const data = line.split(",");
|
| 10 |
+
return headers.reduce((obj, nextKey, index) => {
|
| 11 |
+
obj[nextKey] = data[index];
|
| 12 |
+
return obj;
|
| 13 |
+
}, {});
|
| 14 |
+
});
|
| 15 |
+
}
|
| 16 |
+
|
| 17 |
+
const csvUrl = "info.csv";
|
| 18 |
+
|
| 19 |
+
// CSVデータを格納するための変数
|
| 20 |
+
let csvData;
|
| 21 |
+
|
| 22 |
+
// CSVファイルをロード
|
| 23 |
+
loadCsvData(csvUrl).then((data) => {
|
| 24 |
+
csvData = data;
|
| 25 |
+
});
|
| 26 |
+
|
| 27 |
+
// Load data from the JSON file
|
| 28 |
+
fetch("mst_data.json")
|
| 29 |
+
.then((response) => response.json())
|
| 30 |
+
.then((data) => {
|
| 31 |
+
const nodes = new vis.DataSet(data.nodes);
|
| 32 |
+
const edges = new vis.DataSet(
|
| 33 |
+
data.edges.map((edge) => ({
|
| 34 |
+
from: edge.from,
|
| 35 |
+
to: edge.to,
|
| 36 |
+
length: edge.length * 1000,
|
| 37 |
+
value: 1 / edge.length,
|
| 38 |
+
title: 1 - edge.length,
|
| 39 |
+
}))
|
| 40 |
+
);
|
| 41 |
+
|
| 42 |
+
const container = document.getElementById("network");
|
| 43 |
+
const graphData = { nodes: nodes, edges: edges };
|
| 44 |
+
const options = {
|
| 45 |
+
width: "100%",
|
| 46 |
+
height: "100%",
|
| 47 |
+
nodes: {
|
| 48 |
+
font: {
|
| 49 |
+
size: 40,
|
| 50 |
+
},
|
| 51 |
+
},
|
| 52 |
+
edges: {
|
| 53 |
+
smooth: false,
|
| 54 |
+
chosen: false,
|
| 55 |
+
},
|
| 56 |
+
physics: {
|
| 57 |
+
barnesHut: {
|
| 58 |
+
// springConstant: 1,
|
| 59 |
+
// centralGravity: 0,
|
| 60 |
+
// theta: 1,
|
| 61 |
+
gravitationalConstant: -100000,
|
| 62 |
+
// avoidOverlap: 0.5,
|
| 63 |
+
},
|
| 64 |
+
},
|
| 65 |
+
layout: {
|
| 66 |
+
improvedLayout: false,
|
| 67 |
+
},
|
| 68 |
+
};
|
| 69 |
+
|
| 70 |
+
const network = new vis.Network(container, graphData, options);
|
| 71 |
+
|
| 72 |
+
// Add event listener for node clicks
|
| 73 |
+
network.on("selectNode", function (params) {
|
| 74 |
+
if (params.nodes.length > 0) {
|
| 75 |
+
const nodeId = params.nodes[0];
|
| 76 |
+
const nodeName = nodes.get(nodeId).label; // Assuming label is the same as node name
|
| 77 |
+
|
| 78 |
+
const nodeData = csvData.find((item) => item.name === nodeName);
|
| 79 |
+
|
| 80 |
+
// Update infoview
|
| 81 |
+
document.getElementById("node-name").textContent = nodeName;
|
| 82 |
+
if (nodeData) {
|
| 83 |
+
document.getElementById("node-num-files").textContent =
|
| 84 |
+
nodeData.num_files;
|
| 85 |
+
document.getElementById("node-duration").textContent =
|
| 86 |
+
nodeData.total_duration_min;
|
| 87 |
+
document.getElementById("node-f0").textContent = nodeData.f0_mean;
|
| 88 |
+
}
|
| 89 |
+
}
|
| 90 |
+
});
|
| 91 |
+
|
| 92 |
+
function zoomToNode() {
|
| 93 |
+
const nodeName = document.getElementById("model-name-input").value;
|
| 94 |
+
const foundNode = nodes.get({
|
| 95 |
+
filter: function (item) {
|
| 96 |
+
return item.label === nodeName;
|
| 97 |
+
},
|
| 98 |
+
});
|
| 99 |
+
|
| 100 |
+
if (foundNode.length > 0) {
|
| 101 |
+
const nodeId = foundNode[0].id;
|
| 102 |
+
network.focus(nodeId, { scale: 1, animation: true });
|
| 103 |
+
network.selectNodes([nodeId]);
|
| 104 |
+
document.getElementById("node-name").textContent = nodeName;
|
| 105 |
+
} else {
|
| 106 |
+
alert("Not found.");
|
| 107 |
+
}
|
| 108 |
+
}
|
| 109 |
+
|
| 110 |
+
document
|
| 111 |
+
.getElementById("search-button")
|
| 112 |
+
.addEventListener("click", zoomToNode);
|
| 113 |
+
|
| 114 |
+
document
|
| 115 |
+
.getElementById("model-name-input")
|
| 116 |
+
.addEventListener("keyup", function (event) {
|
| 117 |
+
if (event.key === "Enter") {
|
| 118 |
+
event.preventDefault();
|
| 119 |
+
zoomToNode();
|
| 120 |
+
}
|
| 121 |
+
});
|
| 122 |
+
})
|
| 123 |
+
.catch((error) => console.error("Error loading the MST data:", error));
|
index.html
CHANGED
|
@@ -1,19 +1,127 @@
|
|
| 1 |
<!DOCTYPE html>
|
| 2 |
<html>
|
| 3 |
-
|
| 4 |
-
|
| 5 |
-
|
| 6 |
-
|
| 7 |
-
|
| 8 |
-
|
| 9 |
-
|
| 10 |
-
|
| 11 |
-
|
| 12 |
-
|
| 13 |
-
|
| 14 |
-
|
| 15 |
-
|
| 16 |
-
|
| 17 |
-
|
| 18 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 19 |
</html>
|
|
|
|
|
|
|
|
|
| 1 |
<!DOCTYPE html>
|
| 2 |
<html>
|
| 3 |
+
|
| 4 |
+
<head>
|
| 5 |
+
<title>MoeSpeech エクスプローラー</title>
|
| 6 |
+
<script type="text/javascript" src="https://unpkg.com/vis-network/standalone/umd/vis-network.min.js"></script>
|
| 7 |
+
<style>
|
| 8 |
+
#network {
|
| 9 |
+
width: 100%;
|
| 10 |
+
height: 1200px;
|
| 11 |
+
border: 1px solid black;
|
| 12 |
+
border-radius: 4px;
|
| 13 |
+
margin-top: 20px;
|
| 14 |
+
}
|
| 15 |
+
|
| 16 |
+
#infoview {
|
| 17 |
+
margin: 10px;
|
| 18 |
+
}
|
| 19 |
+
|
| 20 |
+
#infoview span {
|
| 21 |
+
font-size: 18px;
|
| 22 |
+
/* font-weight: bold; */
|
| 23 |
+
}
|
| 24 |
+
|
| 25 |
+
button {
|
| 26 |
+
padding: 10px 15px;
|
| 27 |
+
margin: 10px 5px;
|
| 28 |
+
/* border: none; */
|
| 29 |
+
border-radius: 4px;
|
| 30 |
+
background-color: #D2E5FF;
|
| 31 |
+
border-color: #2B7CE9;
|
| 32 |
+
color: black;
|
| 33 |
+
cursor: pointer;
|
| 34 |
+
transition: background-color 0.3s;
|
| 35 |
+
}
|
| 36 |
+
|
| 37 |
+
button:hover {
|
| 38 |
+
background-color: #9ec5ff;
|
| 39 |
+
}
|
| 40 |
+
</style>
|
| 41 |
+
</head>
|
| 42 |
+
|
| 43 |
+
<body>
|
| 44 |
+
<h2>MoeSpeech Speaker similarity graph</h2>
|
| 45 |
+
<!-- 利用規約と同意ボタン -->
|
| 46 |
+
<div id="terms-container">
|
| 47 |
+
<h3>Terms of use</h3>
|
| 48 |
+
<p>
|
| 49 |
+
ここでは<a href="https://huggingface.co/datasets/litagin/moe-speech">MoeSpeech</a>データセットのuuidごとの類似度グラフを提供しています。
|
| 50 |
+
<br>
|
| 51 |
+
このエクスプローラーを利用するには以下の利用規約に同意する必要があります。
|
| 52 |
+
<br>
|
| 53 |
+
<li>ここで提供されている情報を再配布してはいけません。</li>
|
| 54 |
+
<li>話者に関する情報を共有してはいけません。例えば、あるuuidと別のuuidが非常に似ている等の情報を第三者に共有してはいけません。</li>
|
| 55 |
+
<li><a
|
| 56 |
+
href="https://huggingface.co/spaces/litagin/moe-speech-license">MoeSpeechデータセットのライセンス</a>を読み、同意してください。
|
| 57 |
+
</li>
|
| 58 |
+
</p>
|
| 59 |
+
<p>
|
| 60 |
+
This provides a similarity graph of each uuids of <a
|
| 61 |
+
href="https://huggingface.co/datasets/litagin/moe-speech">MoeSpeech</a> dataset.
|
| 62 |
+
<br>
|
| 63 |
+
To use this explorer, you must agree to the following terms of use.
|
| 64 |
+
<br>
|
| 65 |
+
<li>You should not distribute the provided information.</li>
|
| 66 |
+
<li>You should not share any information about the speakers. For example, you should not share that one uuid
|
| 67 |
+
is very similar to another uuid.</li>
|
| 68 |
+
<li>You should read and agree to the <a
|
| 69 |
+
href="https://huggingface.co/spaces/litagin/moe-speech-license">MoeSpeech dataset license</a></li>
|
| 70 |
+
</p>
|
| 71 |
+
<input type="checkbox" id="agree-checkbox">利用規約に同意する / I agree to the terms of use
|
| 72 |
+
<button id="agree-button" disabled>同意する / Agree</button>
|
| 73 |
+
</div>
|
| 74 |
+
<!-- 本来のコンテンツ -->
|
| 75 |
+
<hr>
|
| 76 |
+
<div id="main-content" style="display:none;">
|
| 77 |
+
<p>近い声質の識別子同士が繋がっています。拡大縮小や頂点の移動ができます。辺が短いほど・太いほど似ているはずです(あくまで目安です)。辺にカーソルをのせたときの数字は2つのコサイン類似度です。
|
| 78 |
+
<details>
|
| 79 |
+
<summary>技術的な詳細</summary>
|
| 80 |
+
データからランダムに10音声を選び、それぞれに対して
|
| 81 |
+
<a
|
| 82 |
+
href="https://huggingface.co/pyannote/wespeaker-voxceleb-resnet34-LM">この埋め込み</a>を使って得られた256次元特徴量の平均に対して、それらのコサイン距離を使ってminimum
|
| 83 |
+
spanning treeを作ったものです。
|
| 84 |
+
</details>
|
| 85 |
+
</p>
|
| 86 |
+
<p>
|
| 87 |
+
Similar speakers are connected. You can zoom in/out and move the nodes. The shorter/thicker the edge, the
|
| 88 |
+
more
|
| 89 |
+
similar the speakers should be (this is just a rough guide). The number on the edge is the cosine similarity
|
| 90 |
+
between the two embeddings.
|
| 91 |
+
<details>
|
| 92 |
+
<summary>Technical details</summary>
|
| 93 |
+
This is a minimum spanning tree of the cosine distances between the average of 256-dimensional embeddings
|
| 94 |
+
obtained from
|
| 95 |
+
<a href="https://huggingface.co/pyannote/wespeaker-voxceleb-resnet34-LM">this embedding</a> for 10 random
|
| 96 |
+
samples.
|
| 97 |
+
</details>
|
| 98 |
+
</p>
|
| 99 |
+
<hr>
|
| 100 |
+
|
| 101 |
+
<div id="infoview">
|
| 102 |
+
<div id="search-view">
|
| 103 |
+
<label for="model-name-input">Search uuid: </label>
|
| 104 |
+
<input type="text" id="model-name-input" placeholder="input uuid">
|
| 105 |
+
<button id="search-button">Search</button>
|
| 106 |
+
</div>
|
| 107 |
+
<span id="node-description">Current uuid:</span>
|
| 108 |
+
<span id="node-name">Select uuid</span>
|
| 109 |
+
<br>
|
| 110 |
+
<span id="node-num-files-desc">Number of files: </span>
|
| 111 |
+
<span id="node-num-files"></span>
|
| 112 |
+
<br>
|
| 113 |
+
<span id="node-duration-desc">Total duration (min):</span>
|
| 114 |
+
<span id="node-duration"></span>
|
| 115 |
+
<br>
|
| 116 |
+
<span id="node-f0-desc">Mean F0 (Hz): </span>
|
| 117 |
+
<span id="node-f0"></span>
|
| 118 |
+
</div>
|
| 119 |
+
<div id="network"></div>
|
| 120 |
+
</div>
|
| 121 |
+
<script src="graph.js"></script>
|
| 122 |
+
<script src="terms.js"></script>
|
| 123 |
+
</body>
|
| 124 |
+
|
| 125 |
</html>
|
| 126 |
+
|
| 127 |
+
</html>
|
info.csv
ADDED
|
@@ -0,0 +1,474 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
name,num_files,total_duration_min,f0_mean
|
| 2 |
+
00013899,953,92.89,420.22
|
| 3 |
+
00163dc9,2757,205.57,295.44
|
| 4 |
+
010b4e02,1619,173.14,251.12
|
| 5 |
+
012e4f22,931,61.12,308.48
|
| 6 |
+
01a5575c,151,16.28,255.83
|
| 7 |
+
02153faa,867,97.38,286.61
|
| 8 |
+
0253acb6,957,98.18,319.16
|
| 9 |
+
02d30f40,888,74.37,302.8
|
| 10 |
+
034aea85,1555,118.45,369.02
|
| 11 |
+
03d42201,253,26.88,369.38
|
| 12 |
+
047b2cc9,424,38.25,297.04
|
| 13 |
+
04dfddf9,525,41.71,347.03
|
| 14 |
+
05a45f91,427,39.87,356.98
|
| 15 |
+
05b1a5fa,411,28.9,217.31
|
| 16 |
+
066d5771,279,28.66,275.01
|
| 17 |
+
06d63234,624,56.47,203.13
|
| 18 |
+
074a35a1,1075,87.03,349.03
|
| 19 |
+
07afb6cf,646,67.96,340.07
|
| 20 |
+
07ec6abd,339,43.36,184.46
|
| 21 |
+
082dc264,523,46.26,102.74
|
| 22 |
+
0850f695,647,57.57,198.34
|
| 23 |
+
0a4a9528,322,34.21,282.91
|
| 24 |
+
0a9523ac,610,74.23,392.22
|
| 25 |
+
0ab8878d,448,35.92,437.8
|
| 26 |
+
0ac15611,746,61.3,160.44
|
| 27 |
+
0b8ae160,1103,113.21,402.87
|
| 28 |
+
0c109d26,250,25.66,106.23
|
| 29 |
+
0ccb413a,1186,74.1,309.47
|
| 30 |
+
0d70cf5c,553,43.2,349.09
|
| 31 |
+
0da07cfa,1575,104.68,298.07
|
| 32 |
+
0deadde0,369,30.66,196.17
|
| 33 |
+
0e1e679f,330,33.74,204.42
|
| 34 |
+
0ee82b61,1255,153.62,291.39
|
| 35 |
+
0f6fbea8,1031,104.37,231.07
|
| 36 |
+
10fe64fb,241,28.58,314.79
|
| 37 |
+
1105cfcb,519,73.7,102.75
|
| 38 |
+
11858a03,397,38.75,110.49
|
| 39 |
+
11b1eb07,1240,99.07,334.41
|
| 40 |
+
13383861,375,30.88,195.41
|
| 41 |
+
13478d0f,816,79.66,358.41
|
| 42 |
+
14ac96ed,247,24.19,265.03
|
| 43 |
+
14e8c9ac,279,34.53,235.11
|
| 44 |
+
16fefdd2,1129,100.7,282.0
|
| 45 |
+
1707f3b6,778,76.31,257.98
|
| 46 |
+
17184d5e,357,38.47,288.87
|
| 47 |
+
17989c6c,250,24.2,110.25
|
| 48 |
+
18460462,2861,325.08,242.67
|
| 49 |
+
18563891,121,15.18,210.98
|
| 50 |
+
1967ee53,1309,131.78,367.38
|
| 51 |
+
1a32de6a,1623,148.76,317.06
|
| 52 |
+
1a5a3db8,3295,179.81,364.52
|
| 53 |
+
1b74d271,463,41.66,253.24
|
| 54 |
+
1ba0d17b,674,61.99,244.31
|
| 55 |
+
1cc3c6c0,2096,195.5,329.62
|
| 56 |
+
1ceb61c1,299,30.1,115.28
|
| 57 |
+
1dbea640,438,53.75,277.94
|
| 58 |
+
1ed99743,670,85.13,253.68
|
| 59 |
+
1fb0665c,334,29.0,263.72
|
| 60 |
+
20b5dff7,228,26.98,183.13
|
| 61 |
+
20e4e850,465,40.39,345.07
|
| 62 |
+
210577c7,717,50.46,308.44
|
| 63 |
+
21fd006c,193,17.48,368.19
|
| 64 |
+
2244c7e7,1294,161.07,249.03
|
| 65 |
+
224918d3,216,22.67,248.24
|
| 66 |
+
224a42d8,548,63.67,111.48
|
| 67 |
+
2293080b,1090,110.17,395.49
|
| 68 |
+
22d1fa2f,365,39.74,121.25
|
| 69 |
+
239e7db6,1021,84.37,288.53
|
| 70 |
+
23e5ef98,459,35.99,382.5
|
| 71 |
+
24592c0b,411,39.44,290.44
|
| 72 |
+
24c980be,313,24.48,273.89
|
| 73 |
+
24ceb09f,341,34.66,286.65
|
| 74 |
+
2547b60d,257,28.84,293.09
|
| 75 |
+
25714f7a,2311,138.31,308.94
|
| 76 |
+
26c430e0,492,61.81,338.86
|
| 77 |
+
26ddd15d,163,15.41,141.21
|
| 78 |
+
282cfa8c,1705,140.09,338.26
|
| 79 |
+
28d7d9ec,500,44.71,127.02
|
| 80 |
+
297efce1,1435,106.4,300.61
|
| 81 |
+
29835f87,390,25.96,321.68
|
| 82 |
+
2990a149,372,34.96,380.73
|
| 83 |
+
2af831b5,803,77.34,169.83
|
| 84 |
+
2b20ee07,180,18.77,320.97
|
| 85 |
+
2bd06fbc,355,26.92,129.91
|
| 86 |
+
2c3bea98,467,50.25,473.35
|
| 87 |
+
2ca35c83,530,56.72,123.82
|
| 88 |
+
2cd8d40e,1079,109.62,355.45
|
| 89 |
+
2cf01874,4632,418.52,122.24
|
| 90 |
+
2e045702,136,16.63,317.54
|
| 91 |
+
2e3dbf01,1081,113.59,292.3
|
| 92 |
+
2f2ae696,655,39.1,182.83
|
| 93 |
+
2fbfe282,317,32.11,239.33
|
| 94 |
+
31ebd5d6,1229,168.38,401.53
|
| 95 |
+
332b9006,1454,123.12,278.09
|
| 96 |
+
3371a8ac,569,62.38,338.18
|
| 97 |
+
338ab306,1304,124.17,319.12
|
| 98 |
+
33e59069,616,57.43,284.19
|
| 99 |
+
3410d0ed,344,36.45,255.04
|
| 100 |
+
342976be,877,100.96,217.4
|
| 101 |
+
35d789d2,158,17.89,266.88
|
| 102 |
+
361eb7a2,988,121.18,345.76
|
| 103 |
+
36d0de98,766,73.27,287.24
|
| 104 |
+
36ea135b,2631,248.77,326.72
|
| 105 |
+
37c014a1,1667,181.83,286.67
|
| 106 |
+
37ed21cc,1106,112.37,280.46
|
| 107 |
+
3951ab83,279,22.77,294.18
|
| 108 |
+
39b99040,190,27.27,225.82
|
| 109 |
+
39bbe2d2,260,27.09,312.2
|
| 110 |
+
39d90db6,217,20.51,333.91
|
| 111 |
+
3ae04663,644,71.43,365.8
|
| 112 |
+
3c58f1c4,2041,171.04,366.02
|
| 113 |
+
3c8eb6b7,227,28.5,260.08
|
| 114 |
+
3d0f6fe6,591,62.05,415.76
|
| 115 |
+
3d505acf,504,38.57,331.52
|
| 116 |
+
3d60427a,689,65.23,160.72
|
| 117 |
+
3d995663,232,21.38,277.15
|
| 118 |
+
3e02a4dc,915,78.49,376.15
|
| 119 |
+
3e1b4af6,169,27.07,115.58
|
| 120 |
+
3e679118,146,20.15,337.41
|
| 121 |
+
3ec05fe5,215,19.26,215.52
|
| 122 |
+
3ec57102,233,20.77,146.89
|
| 123 |
+
40428019,374,31.6,293.08
|
| 124 |
+
40968f4b,144,17.31,111.08
|
| 125 |
+
40b58885,265,28.66,384.28
|
| 126 |
+
41a0ac54,268,39.81,225.57
|
| 127 |
+
42adcde0,1539,128.4,376.59
|
| 128 |
+
42ba7db8,581,46.96,323.22
|
| 129 |
+
4359417e,289,21.96,348.46
|
| 130 |
+
437780d1,174,16.63,337.01
|
| 131 |
+
43f628ef,151,19.28,127.65
|
| 132 |
+
443c360e,423,44.6,287.78
|
| 133 |
+
445a3b95,318,43.12,305.16
|
| 134 |
+
449d5a0a,2231,210.6,391.88
|
| 135 |
+
44feed2f,1499,159.18,282.25
|
| 136 |
+
451e2ccb,1285,124.79,322.01
|
| 137 |
+
4590f2a0,741,69.81,342.4
|
| 138 |
+
45a005ba,1944,187.21,365.71
|
| 139 |
+
4686cc6c,954,105.44,355.79
|
| 140 |
+
46d6bf83,2654,235.55,320.34
|
| 141 |
+
46f336bf,274,24.05,158.35
|
| 142 |
+
4800dd8d,969,73.81,323.89
|
| 143 |
+
482d84dd,436,49.79,399.04
|
| 144 |
+
48523d91,219,16.46,277.09
|
| 145 |
+
48a6e182,1782,143.26,313.45
|
| 146 |
+
48fe48d3,256,24.16,331.43
|
| 147 |
+
49e762bc,210,15.36,413.44
|
| 148 |
+
4b122dae,267,30.89,216.75
|
| 149 |
+
4cb40d9c,463,39.53,132.45
|
| 150 |
+
4cc78fd2,174,14.27,310.55
|
| 151 |
+
4ce0075b,2139,281.13,303.14
|
| 152 |
+
4d416dfd,171,21.59,351.78
|
| 153 |
+
4d8b14ad,302,23.96,188.23
|
| 154 |
+
4ded9fa1,1366,145.89,280.64
|
| 155 |
+
4e2f4ba6,3268,262.84,288.66
|
| 156 |
+
4f7d30d9,1203,82.99,252.0
|
| 157 |
+
51c20cd6,1296,123.09,386.71
|
| 158 |
+
51c41b5b,331,45.65,166.19
|
| 159 |
+
51eb30f9,794,53.81,321.36
|
| 160 |
+
520a2229,1162,134.69,361.65
|
| 161 |
+
52ccb6af,432,43.55,229.16
|
| 162 |
+
532ebfa4,367,33.6,104.84
|
| 163 |
+
5389834e,1261,145.21,341.31
|
| 164 |
+
54ba80a8,1638,117.69,287.9
|
| 165 |
+
553e757a,570,51.6,141.1
|
| 166 |
+
55dcfe37,346,30.93,253.26
|
| 167 |
+
565faede,590,86.24,219.5
|
| 168 |
+
5686b87e,184,19.96,152.56
|
| 169 |
+
57aebf70,716,60.05,124.88
|
| 170 |
+
57d35f28,496,38.4,308.99
|
| 171 |
+
57fca20a,334,36.29,338.8
|
| 172 |
+
5854f41a,1382,118.47,376.01
|
| 173 |
+
586ae4bc,610,45.61,329.45
|
| 174 |
+
58a2282f,1136,105.84,397.38
|
| 175 |
+
58fe56f1,489,57.79,279.35
|
| 176 |
+
590e4fbf,186,15.49,295.91
|
| 177 |
+
593bea10,210,23.08,276.45
|
| 178 |
+
598c113f,149,19.04,170.07
|
| 179 |
+
5a035120,489,43.4,255.53
|
| 180 |
+
5a4f5ef4,1749,170.2,326.76
|
| 181 |
+
5b84bdc7,405,45.29,446.79
|
| 182 |
+
5b8a5bb7,1261,106.08,392.06
|
| 183 |
+
5c25991f,171,24.52,148.17
|
| 184 |
+
5cb8225c,630,48.42,264.58
|
| 185 |
+
5d28b89e,240,27.05,381.32
|
| 186 |
+
5d3b01f8,1031,78.58,314.95
|
| 187 |
+
5d3d37c5,1946,221.44,321.71
|
| 188 |
+
5d68aedf,2306,153.87,274.29
|
| 189 |
+
5e5993c5,711,75.35,337.72
|
| 190 |
+
5e6a6f31,246,23.78,132.14
|
| 191 |
+
5e85bf92,1676,131.86,337.5
|
| 192 |
+
5f8be8da,270,27.61,237.1
|
| 193 |
+
60a5f2c6,1152,96.69,432.46
|
| 194 |
+
60f6ca64,763,85.55,292.08
|
| 195 |
+
6136958e,341,28.34,266.26
|
| 196 |
+
61c1b280,389,49.85,132.38
|
| 197 |
+
62e9f0ac,433,44.45,396.06
|
| 198 |
+
631b0413,739,75.26,350.02
|
| 199 |
+
641fc74a,256,17.78,111.9
|
| 200 |
+
6489388e,2257,182.62,305.11
|
| 201 |
+
64a24ae2,345,15.12,322.96
|
| 202 |
+
653a1bc0,1737,202.82,427.42
|
| 203 |
+
65503d4f,370,40.8,232.26
|
| 204 |
+
66a9b08d,143,16.32,141.98
|
| 205 |
+
673810f3,1061,104.53,350.08
|
| 206 |
+
67eeef73,2156,200.14,149.89
|
| 207 |
+
693d59dd,1497,124.77,253.92
|
| 208 |
+
69ed067f,367,34.91,168.49
|
| 209 |
+
6acb39c4,451,28.05,303.36
|
| 210 |
+
6afdbcbc,260,33.25,107.11
|
| 211 |
+
6b01cf3e,668,68.69,303.26
|
| 212 |
+
6b2b26d1,1033,133.84,388.24
|
| 213 |
+
6d19f294,963,100.89,365.77
|
| 214 |
+
6d250131,652,64.19,384.52
|
| 215 |
+
6d565f54,2351,189.98,332.08
|
| 216 |
+
6d590dce,1362,107.37,384.95
|
| 217 |
+
6d60e3a1,1209,107.34,332.57
|
| 218 |
+
6da4c44b,434,39.02,137.05
|
| 219 |
+
6e092d01,534,50.99,246.76
|
| 220 |
+
6e22f5cd,712,78.57,278.0
|
| 221 |
+
6e255b9c,815,63.48,236.53
|
| 222 |
+
6fa02584,321,36.6,262.72
|
| 223 |
+
7097b038,175,20.08,103.16
|
| 224 |
+
70b38cc9,670,73.5,232.53
|
| 225 |
+
72320792,779,63.63,347.98
|
| 226 |
+
72360103,1341,132.6,292.23
|
| 227 |
+
72921df9,482,41.77,312.8
|
| 228 |
+
72fa017c,227,19.51,165.63
|
| 229 |
+
739cd4cd,250,17.85,427.02
|
| 230 |
+
74caf944,899,61.7,280.33
|
| 231 |
+
74eb72c7,1241,77.47,348.28
|
| 232 |
+
75044eb2,915,81.56,158.82
|
| 233 |
+
7520c617,485,55.73,365.25
|
| 234 |
+
75cb389c,1302,134.42,285.63
|
| 235 |
+
75e27ad3,248,33.45,254.24
|
| 236 |
+
76323950,201,17.24,265.66
|
| 237 |
+
76981655,1394,106.57,307.85
|
| 238 |
+
773a4156,2749,221.74,156.87
|
| 239 |
+
7787d8bf,1560,127.9,314.54
|
| 240 |
+
78024d52,1980,177.62,329.78
|
| 241 |
+
780c767e,488,47.47,346.54
|
| 242 |
+
78a17f40,323,23.85,338.18
|
| 243 |
+
78ddc745,1701,171.27,218.38
|
| 244 |
+
79a9f817,1526,146.7,323.09
|
| 245 |
+
79b0d13c,850,67.51,301.41
|
| 246 |
+
79ff88ce,393,43.87,190.98
|
| 247 |
+
7a63c040,278,26.55,232.91
|
| 248 |
+
7aa5ec7f,360,32.76,293.3
|
| 249 |
+
7b3d6f79,2215,169.47,382.43
|
| 250 |
+
7bc60e34,479,59.05,322.64
|
| 251 |
+
7cf5370c,1615,180.22,313.78
|
| 252 |
+
7d23dc35,297,36.41,187.78
|
| 253 |
+
7d557804,366,29.33,112.87
|
| 254 |
+
7d9fed60,536,50.64,127.15
|
| 255 |
+
7da6e5dd,501,41.76,205.86
|
| 256 |
+
7e74d475,309,44.45,317.3
|
| 257 |
+
7f563200,166,16.31,127.57
|
| 258 |
+
7fa77e7c,528,53.2,133.68
|
| 259 |
+
80e000b3,809,70.56,289.77
|
| 260 |
+
82917a7d,188,23.09,245.56
|
| 261 |
+
8340aaf6,1210,89.48,377.06
|
| 262 |
+
84be23bd,2210,185.34,302.53
|
| 263 |
+
84d1e0bf,757,74.58,222.25
|
| 264 |
+
86a62c68,540,34.69,367.53
|
| 265 |
+
86b2eb0e,336,25.98,413.51
|
| 266 |
+
88ea6529,651,71.84,253.31
|
| 267 |
+
89374c0b,241,31.05,258.07
|
| 268 |
+
8a601bf6,394,38.77,171.06
|
| 269 |
+
8b6e7173,2312,198.08,309.01
|
| 270 |
+
8d2b2495,1429,148.23,268.29
|
| 271 |
+
8d6eccd0,1130,108.77,347.14
|
| 272 |
+
8da3217d,285,32.77,225.2
|
| 273 |
+
8e1072e6,1663,107.71,312.5
|
| 274 |
+
8f8acabb,510,64.79,326.3
|
| 275 |
+
8fd9edef,327,28.5,147.26
|
| 276 |
+
8fe123c6,289,30.17,348.65
|
| 277 |
+
90d21566,430,37.49,358.91
|
| 278 |
+
90f28db9,420,59.79,313.63
|
| 279 |
+
90fa05fd,1306,123.99,215.86
|
| 280 |
+
91539726,1695,188.2,314.0
|
| 281 |
+
915f3667,343,31.19,204.08
|
| 282 |
+
917e0da2,175,16.18,263.93
|
| 283 |
+
917feebd,2811,263.05,235.62
|
| 284 |
+
91c32dcd,387,35.67,363.99
|
| 285 |
+
93443a40,164,20.03,204.86
|
| 286 |
+
93dda15e,545,68.24,418.69
|
| 287 |
+
940de876,4675,428.89,289.44
|
| 288 |
+
95719ea1,753,74.36,298.69
|
| 289 |
+
95c3bdd8,2265,213.21,339.27
|
| 290 |
+
95c67421,802,89.16,323.47
|
| 291 |
+
96d8dcb4,326,30.54,297.79
|
| 292 |
+
978de897,851,68.85,330.85
|
| 293 |
+
99b5eb16,1085,109.75,279.92
|
| 294 |
+
9a3063e7,160,24.35,131.51
|
| 295 |
+
9c125949,1177,100.62,373.6
|
| 296 |
+
9d05be3b,479,55.59,383.62
|
| 297 |
+
9d33dced,945,91.62,143.96
|
| 298 |
+
9dfdd4e5,943,116.87,299.51
|
| 299 |
+
9e3fc422,314,32.37,322.15
|
| 300 |
+
9e884660,426,32.2,158.95
|
| 301 |
+
9ee921f6,1407,85.37,361.99
|
| 302 |
+
9f9b4bae,233,32.75,166.9
|
| 303 |
+
9febd2ae,2327,166.59,334.0
|
| 304 |
+
a01fb5a5,419,43.33,363.07
|
| 305 |
+
a0674c57,1188,130.73,306.91
|
| 306 |
+
a0fd12d7,2045,191.04,124.14
|
| 307 |
+
a1a0d114,1776,144.21,346.85
|
| 308 |
+
a3089480,190,17.07,163.99
|
| 309 |
+
a3697aa1,292,22.58,320.1
|
| 310 |
+
a3feb976,1214,78.75,291.18
|
| 311 |
+
a47dd6dc,380,26.96,390.12
|
| 312 |
+
a52aed66,132,15.6,215.6
|
| 313 |
+
a534c742,177,21.29,238.68
|
| 314 |
+
a5440ee6,239,24.83,359.65
|
| 315 |
+
a601effc,225,23.62,344.12
|
| 316 |
+
a67a3b57,416,52.63,100.86
|
| 317 |
+
a77550c4,331,29.38,334.84
|
| 318 |
+
a808c635,1169,114.93,244.69
|
| 319 |
+
a8a5767d,389,43.92,387.97
|
| 320 |
+
a8ce1f8e,500,40.5,290.74
|
| 321 |
+
a8d5a308,411,37.7,383.06
|
| 322 |
+
a8e4b0f3,166,24.1,237.49
|
| 323 |
+
a93da23d,1292,111.28,343.3
|
| 324 |
+
aafb5758,1746,186.94,290.27
|
| 325 |
+
ac0e6660,1565,175.23,272.47
|
| 326 |
+
ac12bbfd,1542,202.19,355.35
|
| 327 |
+
ac5de73d,626,65.31,130.59
|
| 328 |
+
ad28b91b,3033,393.23,230.2
|
| 329 |
+
ae93354c,1064,91.49,344.15
|
| 330 |
+
aea6ef6b,619,100.83,119.73
|
| 331 |
+
afd09d8d,1329,95.15,280.66
|
| 332 |
+
b05484ba,1843,151.56,325.52
|
| 333 |
+
b05d669d,1033,130.93,312.39
|
| 334 |
+
b1921b3f,1002,97.74,287.42
|
| 335 |
+
b2b32e5b,1274,153.26,333.29
|
| 336 |
+
b4f1d560,381,29.0,350.7
|
| 337 |
+
b6178b7e,758,79.29,225.44
|
| 338 |
+
b67195c6,262,28.38,240.58
|
| 339 |
+
b8015202,1932,269.12,240.59
|
| 340 |
+
b85e88db,283,35.31,130.23
|
| 341 |
+
b8b5fe66,2769,229.02,171.21
|
| 342 |
+
b906d548,822,67.68,401.35
|
| 343 |
+
ba3c433f,351,29.68,284.52
|
| 344 |
+
bb6ac6f1,2171,297.61,337.28
|
| 345 |
+
bbd2e2a6,473,43.9,305.41
|
| 346 |
+
bbd90363,3747,338.4,266.48
|
| 347 |
+
bbfd0f60,270,24.36,292.63
|
| 348 |
+
bc1f03bf,401,38.89,139.99
|
| 349 |
+
bc778ddb,2436,233.18,332.32
|
| 350 |
+
bc8cc1a2,331,38.78,456.9
|
| 351 |
+
bca2cfac,1536,123.11,275.0
|
| 352 |
+
bce2a5af,2926,246.09,263.36
|
| 353 |
+
bd0cc9b2,731,85.43,398.19
|
| 354 |
+
bd4f8711,1278,118.25,297.23
|
| 355 |
+
bead557a,1610,163.17,381.82
|
| 356 |
+
bee5e00e,195,21.4,108.14
|
| 357 |
+
bf145e7a,645,73.6,278.95
|
| 358 |
+
bf7b3aa8,975,77.12,425.43
|
| 359 |
+
bf89567f,928,116.91,428.29
|
| 360 |
+
bfeec1c4,843,69.73,269.27
|
| 361 |
+
c06ebf86,294,46.55,124.64
|
| 362 |
+
c19ce991,363,34.3,287.44
|
| 363 |
+
c480db9a,1233,171.3,353.27
|
| 364 |
+
c4ed3698,349,45.35,140.07
|
| 365 |
+
c593ed00,1031,65.49,391.14
|
| 366 |
+
c5a556c7,383,39.93,187.76
|
| 367 |
+
c7257399,149,23.42,251.15
|
| 368 |
+
c72dcc2e,573,50.64,298.95
|
| 369 |
+
c81c2b4d,651,53.69,308.96
|
| 370 |
+
c842e867,333,32.3,151.59
|
| 371 |
+
c8aa2f99,348,24.51,442.23
|
| 372 |
+
c8b7209e,959,97.76,174.5
|
| 373 |
+
c94451aa,995,94.69,339.23
|
| 374 |
+
c990e343,481,50.45,352.2
|
| 375 |
+
c9c3eac7,457,38.39,284.5
|
| 376 |
+
cb27fc2e,270,17.06,217.66
|
| 377 |
+
cb2efb06,167,15.78,306.84
|
| 378 |
+
cbe5080e,2287,240.83,239.45
|
| 379 |
+
cc270cfd,208,22.31,253.21
|
| 380 |
+
cc948b89,3043,249.98,338.86
|
| 381 |
+
ccb60794,1151,82.1,273.0
|
| 382 |
+
cce343be,802,54.59,146.98
|
| 383 |
+
cda4375a,1516,151.86,209.04
|
| 384 |
+
cdfc229e,1839,157.68,270.86
|
| 385 |
+
cec410a1,479,55.36,136.44
|
| 386 |
+
cef39ba9,275,28.27,246.97
|
| 387 |
+
cf7e3a79,541,50.02,291.6
|
| 388 |
+
cfad3338,637,78.19,393.94
|
| 389 |
+
d0af9065,341,35.06,132.56
|
| 390 |
+
d0cc4881,1288,110.35,268.27
|
| 391 |
+
d1c6d99d,152,15.22,308.86
|
| 392 |
+
d32a5785,477,42.28,144.56
|
| 393 |
+
d39532a8,1986,158.2,324.32
|
| 394 |
+
d40691c5,368,38.22,115.12
|
| 395 |
+
d411f76c,193,18.3,124.58
|
| 396 |
+
d5b3efdf,1276,77.35,105.86
|
| 397 |
+
d64db35d,394,38.18,213.88
|
| 398 |
+
d6ae429b,291,32.08,264.02
|
| 399 |
+
d81b9343,1337,129.21,379.08
|
| 400 |
+
d87b9119,156,17.11,259.68
|
| 401 |
+
d88e5111,982,91.99,323.01
|
| 402 |
+
da47892e,505,58.3,293.67
|
| 403 |
+
dc09d578,1358,133.91,312.98
|
| 404 |
+
dcd74732,707,85.41,327.85
|
| 405 |
+
dd1110cf,1183,92.01,392.62
|
| 406 |
+
de28ee15,1201,120.23,359.77
|
| 407 |
+
de451a8b,632,51.62,324.12
|
| 408 |
+
de45b781,422,39.97,290.48
|
| 409 |
+
de603256,391,35.8,207.17
|
| 410 |
+
deaeef6e,177,23.5,335.21
|
| 411 |
+
dee24821,168,22.87,337.91
|
| 412 |
+
df1adfe8,331,23.96,156.18
|
| 413 |
+
df6c208e,2139,163.32,427.41
|
| 414 |
+
dfb5e934,597,50.63,303.73
|
| 415 |
+
dfcfa27c,1500,167.96,357.61
|
| 416 |
+
e080a37a,454,49.04,407.3
|
| 417 |
+
e2ab2e24,533,59.18,373.46
|
| 418 |
+
e2fccdca,1945,223.22,276.98
|
| 419 |
+
e3715327,170,15.45,257.55
|
| 420 |
+
e3ee19b2,435,51.83,125.34
|
| 421 |
+
e4787cfc,362,32.89,323.31
|
| 422 |
+
e4861ed8,372,24.27,329.99
|
| 423 |
+
e4a9e8fe,186,16.78,358.57
|
| 424 |
+
e4b5226b,332,36.47,294.32
|
| 425 |
+
e518cbe0,131,17.35,218.99
|
| 426 |
+
e5581005,308,42.52,327.74
|
| 427 |
+
e5585e6c,916,83.78,371.45
|
| 428 |
+
e595b28e,325,45.42,205.74
|
| 429 |
+
e5d53ec4,530,56.23,223.26
|
| 430 |
+
e7499e78,171,18.29,141.39
|
| 431 |
+
e77b2f65,254,32.15,202.36
|
| 432 |
+
e825afa1,517,45.36,321.58
|
| 433 |
+
e855af2a,1092,110.51,305.78
|
| 434 |
+
e93c54ef,1587,162.46,384.15
|
| 435 |
+
ea0450c6,918,80.97,304.5
|
| 436 |
+
ea7fb55e,736,48.3,331.42
|
| 437 |
+
eb41adcf,2006,190.55,251.47
|
| 438 |
+
eb868edf,801,72.62,146.9
|
| 439 |
+
ecf35687,747,52.02,241.41
|
| 440 |
+
ed113175,834,67.93,258.03
|
| 441 |
+
ed21e370,239,16.63,347.44
|
| 442 |
+
ed989688,347,21.82,151.84
|
| 443 |
+
edcc3550,693,55.94,251.72
|
| 444 |
+
ee093a4f,2957,403.01,255.86
|
| 445 |
+
ef746128,1190,107.32,303.59
|
| 446 |
+
efb922ca,1227,138.7,256.22
|
| 447 |
+
efc0778d,367,40.91,223.8
|
| 448 |
+
f04ee070,1669,151.25,344.12
|
| 449 |
+
f1416e23,309,32.84,161.7
|
| 450 |
+
f19b6190,1869,112.87,312.84
|
| 451 |
+
f1fac36b,235,25.03,147.04
|
| 452 |
+
f31e205a,689,55.93,146.08
|
| 453 |
+
f3f104d4,161,17.22,379.37
|
| 454 |
+
f4169f28,723,47.05,178.66
|
| 455 |
+
f45cfca9,766,79.03,267.94
|
| 456 |
+
f47d69ae,311,29.57,179.01
|
| 457 |
+
f49d0e55,229,24.92,121.42
|
| 458 |
+
f5990982,175,16.56,282.25
|
| 459 |
+
f6c4b7b2,1890,145.02,385.46
|
| 460 |
+
f8c36d2d,2054,187.56,447.46
|
| 461 |
+
f91d9983,1412,93.59,358.77
|
| 462 |
+
f93a34f0,540,32.96,315.3
|
| 463 |
+
f988d3c6,231,30.87,146.43
|
| 464 |
+
f9c8cc01,1987,187.35,364.63
|
| 465 |
+
f9fb700a,433,52.12,232.22
|
| 466 |
+
fa4704bf,175,19.47,249.89
|
| 467 |
+
faa41cbb,1846,141.69,253.0
|
| 468 |
+
fada1cbf,172,17.55,201.73
|
| 469 |
+
fb7e4354,447,46.0,286.95
|
| 470 |
+
fd35670a,159,17.62,345.49
|
| 471 |
+
fd6ca23b,124,14.43,131.13
|
| 472 |
+
fe623689,260,25.43,238.18
|
| 473 |
+
feb71f63,159,19.17,198.87
|
| 474 |
+
ff4fee9b,1726,131.11,387.37
|
mst_data.json
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
{"nodes": [{"id": "4d8b14ad", "label": "4d8b14ad"}, {"id": "940de876", "label": "940de876"}, {"id": "c19ce991", "label": "c19ce991"}, {"id": "590e4fbf", "label": "590e4fbf"}, {"id": "297efce1", "label": "297efce1"}, {"id": "4cc78fd2", "label": "4cc78fd2"}, {"id": "26ddd15d", "label": "26ddd15d"}, {"id": "f8c36d2d", "label": "f8c36d2d"}, {"id": "d64db35d", "label": "d64db35d"}, {"id": "8fd9edef", "label": "8fd9edef"}, {"id": "5e6a6f31", "label": "5e6a6f31"}, {"id": "90d21566", "label": "90d21566"}, {"id": "eb41adcf", "label": "eb41adcf"}, {"id": "e2fccdca", "label": "e2fccdca"}, {"id": "7bc60e34", "label": "7bc60e34"}, {"id": "b6178b7e", "label": "b6178b7e"}, {"id": "37c014a1", "label": "37c014a1"}, {"id": "26c430e0", "label": "26c430e0"}, {"id": "565faede", "label": "565faede"}, {"id": "4686cc6c", "label": "4686cc6c"}, {"id": "361eb7a2", "label": "361eb7a2"}, {"id": "0a9523ac", "label": "0a9523ac"}, {"id": "02153faa", "label": "02153faa"}, {"id": "efb922ca", "label": "efb922ca"}, {"id": "70b38cc9", "label": "70b38cc9"}, {"id": "8d2b2495", "label": "8d2b2495"}, {"id": "bf89567f", "label": "bf89567f"}, {"id": "8a601bf6", "label": "8a601bf6"}, {"id": "342976be", "label": "342976be"}, {"id": "b2b32e5b", "label": "b2b32e5b"}, {"id": "06d63234", "label": "06d63234"}, {"id": "4590f2a0", "label": "4590f2a0"}, {"id": "c72dcc2e", "label": "c72dcc2e"}, {"id": "a0674c57", "label": "a0674c57"}, {"id": "917feebd", "label": "917feebd"}, {"id": "edcc3550", "label": "edcc3550"}, {"id": "a8d5a308", "label": "a8d5a308"}, {"id": "bce2a5af", "label": "bce2a5af"}, {"id": "51c20cd6", "label": "51c20cd6"}, {"id": "e5581005", "label": "e5581005"}, {"id": "5d3d37c5", "label": "5d3d37c5"}, {"id": "3e1b4af6", "label": "3e1b4af6"}, {"id": "8f8acabb", "label": "8f8acabb"}, {"id": "5c25991f", "label": "5c25991f"}, {"id": "1dbea640", "label": "1dbea640"}, {"id": "e518cbe0", "label": "e518cbe0"}, {"id": "9a3063e7", "label": "9a3063e7"}, {"id": "2244c7e7", "label": "2244c7e7"}, {"id": "58fe56f1", "label": "58fe56f1"}, {"id": "dee24821", "label": "dee24821"}, {"id": "bd0cc9b2", "label": "bd0cc9b2"}, {"id": "9dfdd4e5", "label": "9dfdd4e5"}, {"id": "eb868edf", "label": "eb868edf"}, {"id": "2c3bea98", "label": "2c3bea98"}, {"id": "3951ab83", "label": "3951ab83"}, {"id": "dfb5e934", "label": "dfb5e934"}, {"id": "bc778ddb", "label": "bc778ddb"}, {"id": "673810f3", "label": "673810f3"}, {"id": "3d0f6fe6", "label": "3d0f6fe6"}, {"id": "44feed2f", "label": "44feed2f"}, {"id": "79b0d13c", "label": "79b0d13c"}, {"id": "07ec6abd", "label": "07ec6abd"}, {"id": "37ed21cc", "label": "37ed21cc"}, {"id": "6d565f54", "label": "6d565f54"}, {"id": "bbfd0f60", "label": "bbfd0f60"}, {"id": "693d59dd", "label": "693d59dd"}, {"id": "9c125949", "label": "9c125949"}, {"id": "20e4e850", "label": "20e4e850"}, {"id": "f6c4b7b2", "label": "f6c4b7b2"}, {"id": "2bd06fbc", "label": "2bd06fbc"}, {"id": "d0cc4881", "label": "d0cc4881"}, {"id": "fd6ca23b", "label": "fd6ca23b"}, {"id": "0b8ae160", "label": "0b8ae160"}, {"id": "0d70cf5c", "label": "0d70cf5c"}, {"id": "3d60427a", "label": "3d60427a"}, {"id": "5d28b89e", "label": "5d28b89e"}, {"id": "6fa02584", "label": "6fa02584"}, {"id": "7da6e5dd", "label": "7da6e5dd"}, {"id": "36d0de98", "label": "36d0de98"}, {"id": "51eb30f9", "label": "51eb30f9"}, {"id": "60f6ca64", "label": "60f6ca64"}, {"id": "074a35a1", "label": "074a35a1"}, {"id": "74caf944", "label": "74caf944"}, {"id": "79a9f817", "label": "79a9f817"}, {"id": "082dc264", "label": "082dc264"}, {"id": "84d1e0bf", "label": "84d1e0bf"}, {"id": "88ea6529", "label": "88ea6529"}, {"id": "3371a8ac", "label": "3371a8ac"}, {"id": "4800dd8d", "label": "4800dd8d"}, {"id": "17989c6c", "label": "17989c6c"}, {"id": "210577c7", "label": "210577c7"}, {"id": "91539726", "label": "91539726"}, {"id": "a534c742", "label": "a534c742"}, {"id": "bbd2e2a6", "label": "bbd2e2a6"}, {"id": "bfeec1c4", "label": "bfeec1c4"}, {"id": "c06ebf86", "label": "c06ebf86"}, {"id": "c81c2b4d", "label": "c81c2b4d"}, {"id": "c593ed00", "label": "c593ed00"}, {"id": "c990e343", "label": "c990e343"}, {"id": "ccb60794", "label": "ccb60794"}, {"id": "cce343be", "label": "cce343be"}, {"id": "cef39ba9", "label": "cef39ba9"}, {"id": "dc09d578", "label": "dc09d578"}, {"id": "e595b28e", "label": "e595b28e"}, {"id": "ecf35687", "label": "ecf35687"}, {"id": "ed21e370", "label": "ed21e370"}, {"id": "f5990982", "label": "f5990982"}, {"id": "02d30f40", "label": "02d30f40"}, {"id": "3e02a4dc", "label": "3e02a4dc"}, {"id": "5a035120", "label": "5a035120"}, {"id": "6b2b26d1", "label": "6b2b26d1"}, {"id": "7d23dc35", "label": "7d23dc35"}, {"id": "9f9b4bae", "label": "9f9b4bae"}, {"id": "14e8c9ac", "label": "14e8c9ac"}, {"id": "22d1fa2f", "label": "22d1fa2f"}, {"id": "23e5ef98", "label": "23e5ef98"}, {"id": "51c41b5b", "label": "51c41b5b"}, {"id": "75e27ad3", "label": "75e27ad3"}, {"id": "79ff88ce", "label": "79ff88ce"}, {"id": "90f28db9", "label": "90f28db9"}, {"id": "239e7db6", "label": "239e7db6"}, {"id": "82917a7d", "label": "82917a7d"}, {"id": "93443a40", "label": "93443a40"}, {"id": "a01fb5a5", "label": "a01fb5a5"}, {"id": "a8e4b0f3", "label": "a8e4b0f3"}, {"id": "a52aed66", "label": "a52aed66"}, {"id": "a77550c4", "label": "a77550c4"}, {"id": "ac12bbfd", "label": "ac12bbfd"}, {"id": "ad28b91b", "label": "ad28b91b"}, {"id": "bf145e7a", "label": "bf145e7a"}, {"id": "c4ed3698", "label": "c4ed3698"}, {"id": "c480db9a", "label": "c480db9a"}, {"id": "cec410a1", "label": "cec410a1"}, {"id": "de45b781", "label": "de45b781"}, {"id": "e3715327", "label": "e3715327"}, {"id": "f1fac36b", "label": "f1fac36b"}, {"id": "f49d0e55", "label": "f49d0e55"}, {"id": "feb71f63", "label": "feb71f63"}, {"id": "3c58f1c4", "label": "3c58f1c4"}, {"id": "3d995663", "label": "3d995663"}, {"id": "5b8a5bb7", "label": "5b8a5bb7"}, {"id": "5e85bf92", "label": "5e85bf92"}, {"id": "28d7d9ec", "label": "28d7d9ec"}, {"id": "46d6bf83", "label": "46d6bf83"}, {"id": "047b2cc9", "label": "047b2cc9"}, {"id": "58a2282f", "label": "58a2282f"}, {"id": "0850f695", "label": "0850f695"}, {"id": "915f3667", "label": "915f3667"}, {"id": "4359417e", "label": "4359417e"}, {"id": "72320792", "label": "72320792"}, {"id": "a5440ee6", "label": "a5440ee6"}, {"id": "b05484ba", "label": "b05484ba"}, {"id": "c9c3eac7", "label": "c9c3eac7"}, {"id": "c842e867", "label": "c842e867"}, {"id": "d1c6d99d", "label": "d1c6d99d"}, {"id": "d6ae429b", "label": "d6ae429b"}, {"id": "f3f104d4", "label": "f3f104d4"}, {"id": "0deadde0", "label": "0deadde0"}, {"id": "7a63c040", "label": "7a63c040"}, {"id": "42ba7db8", "label": "42ba7db8"}, {"id": "46f336bf", "label": "46f336bf"}, {"id": "48a6e182", "label": "48a6e182"}, {"id": "95c3bdd8", "label": "95c3bdd8"}, {"id": "99b5eb16", "label": "99b5eb16"}, {"id": "773a4156", "label": "773a4156"}, {"id": "8340aaf6", "label": "8340aaf6"}, {"id": "72360103", "label": "72360103"}, {"id": "ed989688", "label": "ed989688"}, {"id": "ef746128", "label": "ef746128"}, {"id": "f47d69ae", "label": "f47d69ae"}, {"id": "f1416e23", "label": "f1416e23"}, {"id": "6acb39c4", "label": "6acb39c4"}, {"id": "86a62c68", "label": "86a62c68"}, {"id": "cb27fc2e", "label": "cb27fc2e"}, {"id": "e4861ed8", "label": "e4861ed8"}, {"id": "ea7fb55e", "label": "ea7fb55e"}, {"id": "0ab8878d", "label": "0ab8878d"}, {"id": "1ed99743", "label": "1ed99743"}, {"id": "2cf01874", "label": "2cf01874"}, {"id": "6d19f294", "label": "6d19f294"}, {"id": "9d05be3b", "label": "9d05be3b"}, {"id": "93dda15e", "label": "93dda15e"}, {"id": "598c113f", "label": "598c113f"}, {"id": "aafb5758", "label": "aafb5758"}, {"id": "dfcfa27c", "label": "dfcfa27c"}, {"id": "fb7e4354", "label": "fb7e4354"}, {"id": "1ba0d17b", "label": "1ba0d17b"}, {"id": "1cc3c6c0", "label": "1cc3c6c0"}, {"id": "3ec57102", "label": "3ec57102"}, {"id": "04dfddf9", "label": "04dfddf9"}, {"id": "6d60e3a1", "label": "6d60e3a1"}, {"id": "6da4c44b", "label": "6da4c44b"}, {"id": "6e255b9c", "label": "6e255b9c"}, {"id": "7f563200", "label": "7f563200"}, {"id": "8d6eccd0", "label": "8d6eccd0"}, {"id": "9d33dced", "label": "9d33dced"}, {"id": "35d789d2", "label": "35d789d2"}, {"id": "45a005ba", "label": "45a005ba"}, {"id": "66a9b08d", "label": "66a9b08d"}, {"id": "75cb389c", "label": "75cb389c"}, {"id": "84be23bd", "label": "84be23bd"}, {"id": "449d5a0a", "label": "449d5a0a"}, {"id": "451e2ccb", "label": "451e2ccb"}, {"id": "553e757a", "label": "553e757a"}, {"id": "72921df9", "label": "72921df9"}, {"id": "6136958e", "label": "6136958e"}, {"id": "a1a0d114", "label": "a1a0d114"}, {"id": "bd4f8711", "label": "bd4f8711"}, {"id": "cb2efb06", "label": "cb2efb06"}, {"id": "d0af9065", "label": "d0af9065"}, {"id": "e93c54ef", "label": "e93c54ef"}, {"id": "0ac15611", "label": "0ac15611"}, {"id": "0ccb413a", "label": "0ccb413a"}, {"id": "0ee82b61", "label": "0ee82b61"}, {"id": "0f6fbea8", "label": "0f6fbea8"}, {"id": "1fb0665c", "label": "1fb0665c"}, {"id": "2e3dbf01", "label": "2e3dbf01"}, {"id": "3ae04663", "label": "3ae04663"}, {"id": "3c8eb6b7", "label": "3c8eb6b7"}, {"id": "4cb40d9c", "label": "4cb40d9c"}, {"id": "4f7d30d9", "label": "4f7d30d9"}, {"id": "05b1a5fa", "label": "05b1a5fa"}, {"id": "6afdbcbc", "label": "6afdbcbc"}, {"id": "07afb6cf", "label": "07afb6cf"}, {"id": "7b3d6f79", "label": "7b3d6f79"}, {"id": "7d9fed60", "label": "7d9fed60"}, {"id": "7d557804", "label": "7d557804"}, {"id": "7e74d475", "label": "7e74d475"}, {"id": "9e884660", "label": "9e884660"}, {"id": "012e4f22", "label": "012e4f22"}, {"id": "20b5dff7", "label": "20b5dff7"}, {"id": "24c980be", "label": "24c980be"}, {"id": "39b99040", "label": "39b99040"}, {"id": "39bbe2d2", "label": "39bbe2d2"}, {"id": "49e762bc", "label": "49e762bc"}, {"id": "54ba80a8", "label": "54ba80a8"}, {"id": "57aebf70", "label": "57aebf70"}, {"id": "57d35f28", "label": "57d35f28"}, {"id": "57fca20a", "label": "57fca20a"}, {"id": "61c1b280", "label": "61c1b280"}, {"id": "066d5771", "label": "066d5771"}, {"id": "69ed067f", "label": "69ed067f"}, {"id": "95c67421", "label": "95c67421"}, {"id": "482d84dd", "label": "482d84dd"}, {"id": "586ae4bc", "label": "586ae4bc"}, {"id": "593bea10", "label": "593bea10"}, {"id": "1105cfcb", "label": "1105cfcb"}, {"id": "1707f3b6", "label": "1707f3b6"}, {"id": "65503d4f", "label": "65503d4f"}, {"id": "89374c0b", "label": "89374c0b"}, {"id": "6489388e", "label": "6489388e"}, {"id": "18460462", "label": "18460462"}, {"id": "a3feb976", "label": "a3feb976"}, {"id": "a808c635", "label": "a808c635"}, {"id": "aea6ef6b", "label": "aea6ef6b"}, {"id": "b4f1d560", "label": "b4f1d560"}, {"id": "b05d669d", "label": "b05d669d"}, {"id": "bf7b3aa8", "label": "bf7b3aa8"}, {"id": "c5a556c7", "label": "c5a556c7"}, {"id": "c8b7209e", "label": "c8b7209e"}, {"id": "c7257399", "label": "c7257399"}, {"id": "cc270cfd", "label": "cc270cfd"}, {"id": "cf7e3a79", "label": "cf7e3a79"}, {"id": "dd1110cf", "label": "dd1110cf"}, {"id": "de451a8b", "label": "de451a8b"}, {"id": "de603256", "label": "de603256"}, {"id": "e5d53ec4", "label": "e5d53ec4"}, {"id": "ea0450c6", "label": "ea0450c6"}, {"id": "ee093a4f", "label": "ee093a4f"}, {"id": "f988d3c6", "label": "f988d3c6"}, {"id": "62e9f0ac", "label": "62e9f0ac"}, {"id": "74eb72c7", "label": "74eb72c7"}, {"id": "78a17f40", "label": "78a17f40"}, {"id": "78ddc745", "label": "78ddc745"}, {"id": "80e000b3", "label": "80e000b3"}, {"id": "780c767e", "label": "780c767e"}, {"id": "25714f7a", "label": "25714f7a"}, {"id": "76981655", "label": "76981655"}, {"id": "a93da23d", "label": "a93da23d"}, {"id": "a601effc", "label": "a601effc"}, {"id": "a3089480", "label": "a3089480"}, {"id": "b8b5fe66", "label": "b8b5fe66"}, {"id": "d87b9119", "label": "d87b9119"}, {"id": "e855af2a", "label": "e855af2a"}, {"id": "e5585e6c", "label": "e5585e6c"}, {"id": "ed113175", "label": "ed113175"}, {"id": "f19b6190", "label": "f19b6190"}, {"id": "0da07cfa", "label": "0da07cfa"}, {"id": "1a5a3db8", "label": "1a5a3db8"}, {"id": "3d505acf", "label": "3d505acf"}, {"id": "6e092d01", "label": "6e092d01"}, {"id": "8b6e7173", "label": "8b6e7173"}, {"id": "9ee921f6", "label": "9ee921f6"}, {"id": "0a4a9528", "label": "0a4a9528"}, {"id": "010b4e02", "label": "010b4e02"}, {"id": "10fe64fb", "label": "10fe64fb"}, {"id": "43f628ef", "label": "43f628ef"}, {"id": "52ccb6af", "label": "52ccb6af"}, {"id": "67eeef73", "label": "67eeef73"}, {"id": "445a3b95", "label": "445a3b95"}, {"id": "520a2229", "label": "520a2229"}, {"id": "224918d3", "label": "224918d3"}, {"id": "18563891", "label": "18563891"}, {"id": "a67a3b57", "label": "a67a3b57"}, {"id": "b85e88db", "label": "b85e88db"}, {"id": "d411f76c", "label": "d411f76c"}, {"id": "e2ab2e24", "label": "e2ab2e24"}, {"id": "2b20ee07", "label": "2b20ee07"}, {"id": "03d42201", "label": "03d42201"}, {"id": "3ec05fe5", "label": "3ec05fe5"}, {"id": "5a4f5ef4", "label": "5a4f5ef4"}, {"id": "5f8be8da", "label": "5f8be8da"}, {"id": "7aa5ec7f", "label": "7aa5ec7f"}, {"id": "11b1eb07", "label": "11b1eb07"}, {"id": "16fefdd2", "label": "16fefdd2"}, {"id": "21fd006c", "label": "21fd006c"}, {"id": "24ceb09f", "label": "24ceb09f"}, {"id": "86b2eb0e", "label": "86b2eb0e"}, {"id": "978de897", "label": "978de897"}, {"id": "76323950", "label": "76323950"}, {"id": "ba3c433f", "label": "ba3c433f"}, {"id": "c94451aa", "label": "c94451aa"}, {"id": "d32a5785", "label": "d32a5785"}, {"id": "1a32de6a", "label": "1a32de6a"}, {"id": "4b122dae", "label": "4b122dae"}, {"id": "5b84bdc7", "label": "5b84bdc7"}, {"id": "33e59069", "label": "33e59069"}, {"id": "72fa017c", "label": "72fa017c"}, {"id": "a8ce1f8e", "label": "a8ce1f8e"}, {"id": "de28ee15", "label": "de28ee15"}, {"id": "9e3fc422", "label": "9e3fc422"}, {"id": "55dcfe37", "label": "55dcfe37"}, {"id": "78024d52", "label": "78024d52"}, {"id": "b67195c6", "label": "b67195c6"}, {"id": "bead557a", "label": "bead557a"}, {"id": "cdfc229e", "label": "cdfc229e"}, {"id": "efc0778d", "label": "efc0778d"}, {"id": "f04ee070", "label": "f04ee070"}, {"id": "2e045702", "label": "2e045702"}, {"id": "4ce0075b", "label": "4ce0075b"}, {"id": "6d250131", "label": "6d250131"}, {"id": "31ebd5d6", "label": "31ebd5d6"}, {"id": "332b9006", "label": "332b9006"}, {"id": "5686b87e", "label": "5686b87e"}, {"id": "ac5de73d", "label": "ac5de73d"}, {"id": "b8015202", "label": "b8015202"}, {"id": "bb6ac6f1", "label": "bb6ac6f1"}, {"id": "bc8cc1a2", "label": "bc8cc1a2"}, {"id": "dcd74732", "label": "dcd74732"}, {"id": "f45cfca9", "label": "f45cfca9"}, {"id": "2af831b5", "label": "2af831b5"}, {"id": "5cb8225c", "label": "5cb8225c"}, {"id": "6d590dce", "label": "6d590dce"}, {"id": "8fe123c6", "label": "8fe123c6"}, {"id": "034aea85", "label": "034aea85"}, {"id": "40b58885", "label": "40b58885"}, {"id": "917e0da2", "label": "917e0da2"}, {"id": "7787d8bf", "label": "7787d8bf"}, {"id": "48523d91", "label": "48523d91"}, {"id": "a8a5767d", "label": "a8a5767d"}, {"id": "bc1f03bf", "label": "bc1f03bf"}, {"id": "bca2cfac", "label": "bca2cfac"}, {"id": "cc948b89", "label": "cc948b89"}, {"id": "df6c208e", "label": "df6c208e"}, {"id": "e825afa1", "label": "e825afa1"}, {"id": "e4787cfc", "label": "e4787cfc"}, {"id": "f9fb700a", "label": "f9fb700a"}, {"id": "f31e205a", "label": "f31e205a"}, {"id": "fe623689", "label": "fe623689"}, {"id": "60a5f2c6", "label": "60a5f2c6"}, {"id": "5389834e", "label": "5389834e"}, {"id": "d81b9343", "label": "d81b9343"}, {"id": "4d416dfd", "label": "4d416dfd"}, {"id": "7cf5370c", "label": "7cf5370c"}, {"id": "96d8dcb4", "label": "96d8dcb4"}, {"id": "224a42d8", "label": "224a42d8"}, {"id": "0253acb6", "label": "0253acb6"}, {"id": "338ab306", "label": "338ab306"}, {"id": "653a1bc0", "label": "653a1bc0"}, {"id": "1967ee53", "label": "1967ee53"}, {"id": "00013899", "label": "00013899"}, {"id": "ac0e6660", "label": "ac0e6660"}, {"id": "cfad3338", "label": "cfad3338"}, {"id": "3e679118", "label": "3e679118"}, {"id": "3410d0ed", "label": "3410d0ed"}, {"id": "7520c617", "label": "7520c617"}, {"id": "13478d0f", "label": "13478d0f"}, {"id": "d88e5111", "label": "d88e5111"}, {"id": "d40691c5", "label": "d40691c5"}, {"id": "da47892e", "label": "da47892e"}, {"id": "e4b5226b", "label": "e4b5226b"}, {"id": "e77b2f65", "label": "e77b2f65"}, {"id": "e080a37a", "label": "e080a37a"}, {"id": "0c109d26", "label": "0c109d26"}, {"id": "0e1e679f", "label": "0e1e679f"}, {"id": "1ceb61c1", "label": "1ceb61c1"}, {"id": "2ca35c83", "label": "2ca35c83"}, {"id": "2fbfe282", "label": "2fbfe282"}, {"id": "4ded9fa1", "label": "4ded9fa1"}, {"id": "8da3217d", "label": "8da3217d"}, {"id": "14ac96ed", "label": "14ac96ed"}, {"id": "39d90db6", "label": "39d90db6"}, {"id": "532ebfa4", "label": "532ebfa4"}, {"id": "631b0413", "label": "631b0413"}, {"id": "7097b038", "label": "7097b038"}, {"id": "11858a03", "label": "11858a03"}, {"id": "40968f4b", "label": "40968f4b"}, {"id": "95719ea1", "label": "95719ea1"}, {"id": "13383861", "label": "13383861"}, {"id": "a0fd12d7", "label": "a0fd12d7"}, {"id": "bee5e00e", "label": "bee5e00e"}, {"id": "deaeef6e", "label": "deaeef6e"}, {"id": "e3ee19b2", "label": "e3ee19b2"}, {"id": "fada1cbf", "label": "fada1cbf"}, {"id": "fd35670a", "label": "fd35670a"}, {"id": "2547b60d", "label": "2547b60d"}, {"id": "641fc74a", "label": "641fc74a"}, {"id": "739cd4cd", "label": "739cd4cd"}, {"id": "29835f87", "label": "29835f87"}, {"id": "c8aa2f99", "label": "c8aa2f99"}, {"id": "d5b3efdf", "label": "d5b3efdf"}, {"id": "f93a34f0", "label": "f93a34f0"}, {"id": "f4169f28", "label": "f4169f28"}, {"id": "01a5575c", "label": "01a5575c"}, {"id": "2cd8d40e", "label": "2cd8d40e"}, {"id": "5e5993c5", "label": "5e5993c5"}, {"id": "6b01cf3e", "label": "6b01cf3e"}, {"id": "6e22f5cd", "label": "6e22f5cd"}, {"id": "36ea135b", "label": "36ea135b"}, {"id": "64a24ae2", "label": "64a24ae2"}, {"id": "91c32dcd", "label": "91c32dcd"}, {"id": "2990a149", "label": "2990a149"}, {"id": "17184d5e", "label": "17184d5e"}, {"id": "75044eb2", "label": "75044eb2"}, {"id": "2293080b", "label": "2293080b"}, {"id": "b1921b3f", "label": "b1921b3f"}, {"id": "cbe5080e", "label": "cbe5080e"}, {"id": "cda4375a", "label": "cda4375a"}, {"id": "e7499e78", "label": "e7499e78"}, {"id": "41a0ac54", "label": "41a0ac54"}, {"id": "443c360e", "label": "443c360e"}, {"id": "437780d1", "label": "437780d1"}, {"id": "e4a9e8fe", "label": "e4a9e8fe"}, {"id": "fa4704bf", "label": "fa4704bf"}, {"id": "4e2f4ba6", "label": "4e2f4ba6"}, {"id": "5854f41a", "label": "5854f41a"}, {"id": "42adcde0", "label": "42adcde0"}, {"id": "48fe48d3", "label": "48fe48d3"}, {"id": "282cfa8c", "label": "282cfa8c"}, {"id": "1b74d271", "label": "1b74d271"}, {"id": "2f2ae696", "label": "2f2ae696"}, {"id": "05a45f91", "label": "05a45f91"}, {"id": "5d3b01f8", "label": "5d3b01f8"}, {"id": "5d68aedf", "label": "5d68aedf"}, {"id": "7fa77e7c", "label": "7fa77e7c"}, {"id": "8e1072e6", "label": "8e1072e6"}, {"id": "9febd2ae", "label": "9febd2ae"}, {"id": "90fa05fd", "label": "90fa05fd"}, {"id": "00163dc9", "label": "00163dc9"}, {"id": "24592c0b", "label": "24592c0b"}, {"id": "40428019", "label": "40428019"}, {"id": "a47dd6dc", "label": "a47dd6dc"}, {"id": "a3697aa1", "label": "a3697aa1"}, {"id": "ae93354c", "label": "ae93354c"}, {"id": "afd09d8d", "label": "afd09d8d"}, {"id": "b906d548", "label": "b906d548"}, {"id": "bbd90363", "label": "bbd90363"}, {"id": "d39532a8", "label": "d39532a8"}, {"id": "df1adfe8", "label": "df1adfe8"}, {"id": "f9c8cc01", "label": "f9c8cc01"}, {"id": "f91d9983", "label": "f91d9983"}, {"id": "faa41cbb", "label": "faa41cbb"}, {"id": "ff4fee9b", "label": "ff4fee9b"}], "edges": [{"from": "4d8b14ad", "to": "c7257399", "length": 0.41253185272216797}, {"from": "940de876", "to": "4f7d30d9", "length": 0.21194159984588623}, {"from": "940de876", "to": "76323950", "length": 0.09507393836975098}, {"from": "c19ce991", "to": "84be23bd", "length": 0.09509086608886719}, {"from": "590e4fbf", "to": "0a9523ac", "length": 0.3210461139678955}, {"from": "297efce1", "to": "dfcfa27c", "length": 0.1065443754196167}, {"from": "4cc78fd2", "to": "8d2b2495", "length": 0.20562154054641724}, {"from": "4cc78fd2", "to": "1ed99743", "length": 0.2152974009513855}, {"from": "26ddd15d", "to": "7f563200", "length": 0.2483745813369751}, {"from": "26ddd15d", "to": "2af831b5", "length": 0.392147421836853}, {"from": "f8c36d2d", "to": "6acb39c4", "length": 0.2821657657623291}, {"from": "f8c36d2d", "to": "a8a5767d", "length": 0.17906630039215088}, {"from": "d64db35d", "to": "915f3667", "length": 0.395435631275177}, {"from": "d64db35d", "to": "c842e867", "length": 0.4018871784210205}, {"from": "d64db35d", "to": "6e255b9c", "length": 0.409885048866272}, {"from": "8fd9edef", "to": "fd6ca23b", "length": 0.46150463819503784}, {"from": "8fd9edef", "to": "82917a7d", "length": 0.43610650300979614}, {"from": "8fd9edef", "to": "46f336bf", "length": 0.5439820885658264}, {"from": "5e6a6f31", "to": "c4ed3698", "length": 0.37087035179138184}, {"from": "5e6a6f31", "to": "cec410a1", "length": 0.30880308151245117}, {"from": "90d21566", "to": "20e4e850", "length": 0.1304091215133667}, {"from": "90d21566", "to": "cfad3338", "length": 0.09439349174499512}, {"from": "eb41adcf", "to": "d0cc4881", "length": 0.15053021907806396}, {"from": "e2fccdca", "to": "1dbea640", "length": 0.12236630916595459}, {"from": "e2fccdca", "to": "8e1072e6", "length": 0.12052971124649048}, {"from": "7bc60e34", "to": "ea7fb55e", "length": 0.20430195331573486}, {"from": "b6178b7e", "to": "b67195c6", "length": 0.1692335605621338}, {"from": "b6178b7e", "to": "6e22f5cd", "length": 0.13621902465820312}, {"from": "37c014a1", "to": "ef746128", "length": 0.1202477216720581}, {"from": "37c014a1", "to": "a601effc", "length": 0.21257293224334717}, {"from": "26c430e0", "to": "f04ee070", "length": 0.1180415153503418}, {"from": "26c430e0", "to": "17184d5e", "length": 0.21210592985153198}, {"from": "565faede", "to": "e518cbe0", "length": 0.4349052906036377}, {"from": "565faede", "to": "e3715327", "length": 0.49061650037765503}, {"from": "565faede", "to": "cda4375a", "length": 0.19657200574874878}, {"from": "4686cc6c", "to": "93dda15e", "length": 0.10339897871017456}, {"from": "4686cc6c", "to": "d88e5111", "length": 0.13887393474578857}, {"from": "4686cc6c", "to": "e080a37a", "length": 0.17533516883850098}, {"from": "361eb7a2", "to": "c990e343", "length": 0.11934614181518555}, {"from": "361eb7a2", "to": "a01fb5a5", "length": 0.12541359663009644}, {"from": "361eb7a2", "to": "6d19f294", "length": 0.15605109930038452}, {"from": "0a9523ac", "to": "21fd006c", "length": 0.26263439655303955}, {"from": "02153faa", "to": "bce2a5af", "length": 0.09303510189056396}, {"from": "02153faa", "to": "6e22f5cd", "length": 0.07583099603652954}, {"from": "efb922ca", "to": "0ee82b61", "length": 0.08375346660614014}, {"from": "efb922ca", "to": "11b1eb07", "length": 0.09163773059844971}, {"from": "70b38cc9", "to": "91539726", "length": 0.24663794040679932}, {"from": "8d2b2495", "to": "2547b60d", "length": 0.09029579162597656}, {"from": "bf89567f", "to": "f04ee070", "length": 0.2747687101364136}, {"from": "8a601bf6", "to": "915f3667", "length": 0.356145441532135}, {"from": "342976be", "to": "1ed99743", "length": 0.28824710845947266}, {"from": "b2b32e5b", "to": "95c3bdd8", "length": 0.20291447639465332}, {"from": "06d63234", "to": "c72dcc2e", "length": 0.28270983695983887}, {"from": "4590f2a0", "to": "4359417e", "length": 0.17674458026885986}, {"from": "4590f2a0", "to": "0a4a9528", "length": 0.18099325895309448}, {"from": "c72dcc2e", "to": "07afb6cf", "length": 0.2290583848953247}, {"from": "a0674c57", "to": "39bbe2d2", "length": 0.21362316608428955}, {"from": "a0674c57", "to": "b05d669d", "length": 0.15632599592208862}, {"from": "a0674c57", "to": "e2ab2e24", "length": 0.10993415117263794}, {"from": "917feebd", "to": "edcc3550", "length": 0.1593170166015625}, {"from": "edcc3550", "to": "ba3c433f", "length": 0.36693310737609863}, {"from": "a8d5a308", "to": "21fd006c", "length": 0.1839238405227661}, {"from": "a8d5a308", "to": "33e59069", "length": 0.1715536117553711}, {"from": "bce2a5af", "to": "8f8acabb", "length": 0.10038799047470093}, {"from": "bce2a5af", "to": "332b9006", "length": 0.09467017650604248}, {"from": "51c20cd6", "to": "14e8c9ac", "length": 0.256117582321167}, {"from": "51c20cd6", "to": "07afb6cf", "length": 0.18455225229263306}, {"from": "51c20cd6", "to": "445a3b95", "length": 0.13412821292877197}, {"from": "e5581005", "to": "3c58f1c4", "length": 0.10351228713989258}, {"from": "e5581005", "to": "48fe48d3", "length": 0.2509832978248596}, {"from": "5d3d37c5", "to": "7787d8bf", "length": 0.22017687559127808}, {"from": "3e1b4af6", "to": "c06ebf86", "length": 0.06495028734207153}, {"from": "3e1b4af6", "to": "c4ed3698", "length": 0.4060354232788086}, {"from": "5c25991f", "to": "67eeef73", "length": 0.40780556201934814}, {"from": "5c25991f", "to": "72fa017c", "length": 0.2796700596809387}, {"from": "9a3063e7", "to": "f1fac36b", "length": 0.34502655267715454}, {"from": "9a3063e7", "to": "ed989688", "length": 0.40895211696624756}, {"from": "9a3063e7", "to": "3ec57102", "length": 0.4019353985786438}, {"from": "9a3063e7", "to": "553e757a", "length": 0.3693958520889282}, {"from": "9a3063e7", "to": "1105cfcb", "length": 0.36814749240875244}, {"from": "2244c7e7", "to": "75e27ad3", "length": 0.18031638860702515}, {"from": "2244c7e7", "to": "90f28db9", "length": 0.2577817440032959}, {"from": "2244c7e7", "to": "3d995663", "length": 0.2782210111618042}, {"from": "2244c7e7", "to": "3d505acf", "length": 0.19960236549377441}, {"from": "58fe56f1", "to": "ef746128", "length": 0.19737648963928223}, {"from": "dee24821", "to": "58a2282f", "length": 0.1651424765586853}, {"from": "bd0cc9b2", "to": "5b84bdc7", "length": 0.07853579521179199}, {"from": "9dfdd4e5", "to": "bbd2e2a6", "length": 0.13862395286560059}, {"from": "9dfdd4e5", "to": "24ceb09f", "length": 0.25754451751708984}, {"from": "eb868edf", "to": "2bd06fbc", "length": 0.3659794330596924}, {"from": "2c3bea98", "to": "2cd8d40e", "length": 0.23659634590148926}, {"from": "3951ab83", "to": "e855af2a", "length": 0.064544677734375}, {"from": "dfb5e934", "to": "44feed2f", "length": 0.18380236625671387}, {"from": "dfb5e934", "to": "48523d91", "length": 0.06662148237228394}, {"from": "bc778ddb", "to": "4800dd8d", "length": 0.095816969871521}, {"from": "bc778ddb", "to": "57fca20a", "length": 0.276713490486145}, {"from": "bc778ddb", "to": "f91d9983", "length": 0.13282287120819092}, {"from": "673810f3", "to": "e2ab2e24", "length": 0.1361812949180603}, {"from": "3d0f6fe6", "to": "58a2282f", "length": 0.1948419213294983}, {"from": "3d0f6fe6", "to": "4ded9fa1", "length": 0.17659616470336914}, {"from": "44feed2f", "to": "d6ae429b", "length": 0.09376156330108643}, {"from": "44feed2f", "to": "1967ee53", "length": 0.18400681018829346}, {"from": "79b0d13c", "to": "e825afa1", "length": 0.22704124450683594}, {"from": "07ec6abd", "to": "fe623689", "length": 0.42637503147125244}, {"from": "37ed21cc", "to": "5389834e", "length": 0.1904524564743042}, {"from": "37ed21cc", "to": "05a45f91", "length": 0.17173367738723755}, {"from": "6d565f54", "to": "4359417e", "length": 0.08694136142730713}, {"from": "6d565f54", "to": "b05484ba", "length": 0.0795210599899292}, {"from": "bbfd0f60", "to": "7a63c040", "length": 0.23014628887176514}, {"from": "bbfd0f60", "to": "42adcde0", "length": 0.28191256523132324}, {"from": "693d59dd", "to": "c480db9a", "length": 0.13680684566497803}, {"from": "9c125949", "to": "a1a0d114", "length": 0.19548040628433228}, {"from": "9c125949", "to": "e93c54ef", "length": 0.21633833646774292}, {"from": "9c125949", "to": "5a4f5ef4", "length": 0.09284156560897827}, {"from": "9c125949", "to": "33e59069", "length": 0.1476832628250122}, {"from": "20e4e850", "to": "a01fb5a5", "length": 0.11706781387329102}, {"from": "20e4e850", "to": "4359417e", "length": 0.139443039894104}, {"from": "20e4e850", "to": "443c360e", "length": 0.21232593059539795}, {"from": "f6c4b7b2", "to": "6b2b26d1", "length": 0.1054612398147583}, {"from": "f6c4b7b2", "to": "7aa5ec7f", "length": 0.16983544826507568}, {"from": "f6c4b7b2", "to": "91c32dcd", "length": 0.1172756552696228}, {"from": "2bd06fbc", "to": "28d7d9ec", "length": 0.3931092619895935}, {"from": "2bd06fbc", "to": "224a42d8", "length": 0.3991396427154541}, {"from": "2bd06fbc", "to": "532ebfa4", "length": 0.3604816198348999}, {"from": "d0cc4881", "to": "54ba80a8", "length": 0.21922528743743896}, {"from": "d0cc4881", "to": "cc948b89", "length": 0.13733863830566406}, {"from": "fd6ca23b", "to": "1ceb61c1", "length": 0.38149237632751465}, {"from": "0b8ae160", "to": "8340aaf6", "length": 0.15599453449249268}, {"from": "0b8ae160", "to": "bd4f8711", "length": 0.1849561333656311}, {"from": "0d70cf5c", "to": "449d5a0a", "length": 0.1596064567565918}, {"from": "0d70cf5c", "to": "64a24ae2", "length": 0.2093152403831482}, {"from": "3d60427a", "to": "7d23dc35", "length": 0.3335084915161133}, {"from": "3d60427a", "to": "1105cfcb", "length": 0.30711114406585693}, {"from": "5d28b89e", "to": "e5585e6c", "length": 0.19022667407989502}, {"from": "6fa02584", "to": "84d1e0bf", "length": 0.16511833667755127}, {"from": "6fa02584", "to": "332b9006", "length": 0.2441195249557495}, {"from": "7da6e5dd", "to": "cef39ba9", "length": 0.22780001163482666}, {"from": "36d0de98", "to": "60f6ca64", "length": 0.22110986709594727}, {"from": "36d0de98", "to": "5a4f5ef4", "length": 0.1139153242111206}, {"from": "51eb30f9", "to": "b05d669d", "length": 0.12700438499450684}, {"from": "074a35a1", "to": "a47dd6dc", "length": 0.2817192077636719}, {"from": "74caf944", "to": "9febd2ae", "length": 0.1615508794784546}, {"from": "79a9f817", "to": "8d6eccd0", "length": 0.08592092990875244}, {"from": "082dc264", "to": "9d33dced", "length": 0.3678376078605652}, {"from": "082dc264", "to": "4cb40d9c", "length": 0.3800230026245117}, {"from": "88ea6529", "to": "5d3b01f8", "length": 0.22315871715545654}, {"from": "3371a8ac", "to": "dc09d578", "length": 0.18339693546295166}, {"from": "3371a8ac", "to": "0ab8878d", "length": 0.17759603261947632}, {"from": "3371a8ac", "to": "f04ee070", "length": 0.23540765047073364}, {"from": "3371a8ac", "to": "e080a37a", "length": 0.17849552631378174}, {"from": "3371a8ac", "to": "739cd4cd", "length": 0.19162297248840332}, {"from": "4800dd8d", "to": "b05d669d", "length": 0.13943874835968018}, {"from": "4800dd8d", "to": "0da07cfa", "length": 0.07802009582519531}, {"from": "4800dd8d", "to": "cdfc229e", "length": 0.07707881927490234}, {"from": "17989c6c", "to": "ac5de73d", "length": 0.4471017122268677}, {"from": "210577c7", "to": "aafb5758", "length": 0.1473485231399536}, {"from": "210577c7", "to": "593bea10", "length": 0.4430663585662842}, {"from": "210577c7", "to": "d39532a8", "length": 0.14706695079803467}, {"from": "91539726", "to": "76981655", "length": 0.17722785472869873}, {"from": "a534c742", "to": "3d995663", "length": 0.20503902435302734}, {"from": "bbd2e2a6", "to": "80e000b3", "length": 0.3076218366622925}, {"from": "bfeec1c4", "to": "10fe64fb", "length": 0.4038989543914795}, {"from": "bfeec1c4", "to": "a8ce1f8e", "length": 0.254679799079895}, {"from": "bfeec1c4", "to": "cbe5080e", "length": 0.46335482597351074}, {"from": "c06ebf86", "to": "aea6ef6b", "length": 0.06815904378890991}, {"from": "c06ebf86", "to": "b85e88db", "length": 0.39523208141326904}, {"from": "c81c2b4d", "to": "8e1072e6", "length": 0.07631528377532959}, {"from": "c593ed00", "to": "dd1110cf", "length": 0.1803281307220459}, {"from": "c593ed00", "to": "5e5993c5", "length": 0.09082198143005371}, {"from": "ccb60794", "to": "5a035120", "length": 0.14980602264404297}, {"from": "ccb60794", "to": "7cf5370c", "length": 0.24333250522613525}, {"from": "ccb60794", "to": "ac0e6660", "length": 0.31819862127304077}, {"from": "cce343be", "to": "28d7d9ec", "length": 0.3517889976501465}, {"from": "cce343be", "to": "4cb40d9c", "length": 0.40213918685913086}, {"from": "cce343be", "to": "f4169f28", "length": 0.3683772087097168}, {"from": "cef39ba9", "to": "1ed99743", "length": 0.17954343557357788}, {"from": "cef39ba9", "to": "ee093a4f", "length": 0.16951662302017212}, {"from": "dc09d578", "to": "9e3fc422", "length": 0.062340497970581055}, {"from": "e595b28e", "to": "24ceb09f", "length": 0.33366572856903076}, {"from": "ecf35687", "to": "ef746128", "length": 0.10250961780548096}, {"from": "ecf35687", "to": "8da3217d", "length": 0.169391930103302}, {"from": "ed21e370", "to": "a01fb5a5", "length": 0.15198522806167603}, {"from": "ed21e370", "to": "012e4f22", "length": 0.10089212656021118}, {"from": "ed21e370", "to": "11b1eb07", "length": 0.17694491147994995}, {"from": "f5990982", "to": "6d590dce", "length": 0.18513858318328857}, {"from": "02d30f40", "to": "4ce0075b", "length": 0.18146765232086182}, {"from": "3e02a4dc", "to": "86b2eb0e", "length": 0.19202160835266113}, {"from": "3e02a4dc", "to": "631b0413", "length": 0.1399592161178589}, {"from": "3e02a4dc", "to": "2293080b", "length": 0.17747408151626587}, {"from": "5a035120", "to": "3c8eb6b7", "length": 0.12391340732574463}, {"from": "6b2b26d1", "to": "b4f1d560", "length": 0.18776202201843262}, {"from": "9f9b4bae", "to": "f1fac36b", "length": 0.23236685991287231}, {"from": "9f9b4bae", "to": "6da4c44b", "length": 0.33782947063446045}, {"from": "9f9b4bae", "to": "aea6ef6b", "length": 0.3142760396003723}, {"from": "9f9b4bae", "to": "2af831b5", "length": 0.4005930423736572}, {"from": "22d1fa2f", "to": "61c1b280", "length": 0.393720805644989}, {"from": "22d1fa2f", "to": "aea6ef6b", "length": 0.23501598834991455}, {"from": "22d1fa2f", "to": "7fa77e7c", "length": 0.35470014810562134}, {"from": "23e5ef98", "to": "86a62c68", "length": 0.14231276512145996}, {"from": "23e5ef98", "to": "45a005ba", "length": 0.08968424797058105}, {"from": "23e5ef98", "to": "4d416dfd", "length": 0.15640902519226074}, {"from": "51c41b5b", "to": "a8e4b0f3", "length": 0.18466520309448242}, {"from": "51c41b5b", "to": "28d7d9ec", "length": 0.29679787158966064}, {"from": "75e27ad3", "to": "45a005ba", "length": 0.15328097343444824}, {"from": "75e27ad3", "to": "ee093a4f", "length": 0.10319221019744873}, {"from": "79ff88ce", "to": "f1fac36b", "length": 0.40877652168273926}, {"from": "79ff88ce", "to": "c5a556c7", "length": 0.2738823890686035}, {"from": "79ff88ce", "to": "a3089480", "length": 0.3615284562110901}, {"from": "90f28db9", "to": "35d789d2", "length": 0.32114076614379883}, {"from": "239e7db6", "to": "95c67421", "length": 0.23136377334594727}, {"from": "82917a7d", "to": "feb71f63", "length": 0.5801254510879517}, {"from": "93443a40", "to": "55dcfe37", "length": 0.46039342880249023}, {"from": "93443a40", "to": "f4169f28", "length": 0.4072786569595337}, {"from": "a01fb5a5", "to": "f3f104d4", "length": 0.17588961124420166}, {"from": "a01fb5a5", "to": "6d250131", "length": 0.1733618974685669}, {"from": "a01fb5a5", "to": "bb6ac6f1", "length": 0.19310438632965088}, {"from": "a01fb5a5", "to": "60a5f2c6", "length": 0.15092509984970093}, {"from": "a52aed66", "to": "0ac15611", "length": 0.5862630605697632}, {"from": "a77550c4", "to": "72360103", "length": 0.12850040197372437}, {"from": "a77550c4", "to": "f45cfca9", "length": 0.2079942226409912}, {"from": "ac12bbfd", "to": "45a005ba", "length": 0.17067033052444458}, {"from": "ad28b91b", "to": "1ba0d17b", "length": 0.26252949237823486}, {"from": "ad28b91b", "to": "39b99040", "length": 0.0703362226486206}, {"from": "bf145e7a", "to": "7e74d475", "length": 0.23896253108978271}, {"from": "c4ed3698", "to": "598c113f", "length": 0.4739282727241516}, {"from": "c4ed3698", "to": "d5b3efdf", "length": 0.12465333938598633}, {"from": "c480db9a", "to": "047b2cc9", "length": 0.10007387399673462}, {"from": "c480db9a", "to": "e4787cfc", "length": 0.12089639902114868}, {"from": "de45b781", "to": "10fe64fb", "length": 0.42145001888275146}, {"from": "de45b781", "to": "f9fb700a", "length": 0.5260067582130432}, {"from": "f1fac36b", "to": "915f3667", "length": 0.3460184931755066}, {"from": "f1fac36b", "to": "fada1cbf", "length": 0.42085033655166626}, {"from": "f1fac36b", "to": "e7499e78", "length": 0.41762804985046387}, {"from": "f1fac36b", "to": "df1adfe8", "length": 0.3602970838546753}, {"from": "f49d0e55", "to": "7097b038", "length": 0.25334084033966064}, {"from": "3c58f1c4", "to": "5e85bf92", "length": 0.15623676776885986}, {"from": "3c58f1c4", "to": "1a5a3db8", "length": 0.09408873319625854}, {"from": "5b8a5bb7", "to": "da47892e", "length": 0.1763465404510498}, {"from": "5b8a5bb7", "to": "5854f41a", "length": 0.15874171257019043}, {"from": "5e85bf92", "to": "4359417e", "length": 0.16234254837036133}, {"from": "5e85bf92", "to": "00163dc9", "length": 0.1348944902420044}, {"from": "28d7d9ec", "to": "6afdbcbc", "length": 0.2674638032913208}, {"from": "28d7d9ec", "to": "57aebf70", "length": 0.4336390495300293}, {"from": "28d7d9ec", "to": "67eeef73", "length": 0.35013091564178467}, {"from": "46d6bf83", "to": "75cb389c", "length": 0.14789438247680664}, {"from": "46d6bf83", "to": "36ea135b", "length": 0.20294469594955444}, {"from": "047b2cc9", "to": "fa4704bf", "length": 0.12617743015289307}, {"from": "0850f695", "to": "010b4e02", "length": 0.6047242879867554}, {"from": "915f3667", "to": "67eeef73", "length": 0.2917534112930298}, {"from": "72320792", "to": "40b58885", "length": 0.2560075521469116}, {"from": "a5440ee6", "to": "ea7fb55e", "length": 0.1493908166885376}, {"from": "b05484ba", "to": "4ded9fa1", "length": 0.195709228515625}, {"from": "b05484ba", "to": "36ea135b", "length": 0.07041525840759277}, {"from": "c9c3eac7", "to": "010b4e02", "length": 0.1953345537185669}, {"from": "c9c3eac7", "to": "a8ce1f8e", "length": 0.2540239095687866}, {"from": "c842e867", "to": "66a9b08d", "length": 0.25927895307540894}, {"from": "c842e867", "to": "b8b5fe66", "length": 0.23713457584381104}, {"from": "d1c6d99d", "to": "7e74d475", "length": 0.19147980213165283}, {"from": "d1c6d99d", "to": "012e4f22", "length": 0.19259953498840332}, {"from": "d6ae429b", "to": "84be23bd", "length": 0.22909581661224365}, {"from": "d6ae429b", "to": "89374c0b", "length": 0.2357996702194214}, {"from": "d6ae429b", "to": "5cb8225c", "length": 0.11714357137680054}, {"from": "f3f104d4", "to": "7787d8bf", "length": 0.19486403465270996}, {"from": "0deadde0", "to": "f47d69ae", "length": 0.5081076622009277}, {"from": "7a63c040", "to": "21fd006c", "length": 0.2413707971572876}, {"from": "7a63c040", "to": "ba3c433f", "length": 0.30922555923461914}, {"from": "42ba7db8", "to": "5854f41a", "length": 0.18640661239624023}, {"from": "48a6e182", "to": "012e4f22", "length": 0.11294472217559814}, {"from": "95c3bdd8", "to": "c8aa2f99", "length": 0.10359066724777222}, {"from": "99b5eb16", "to": "ed113175", "length": 0.06508278846740723}, {"from": "99b5eb16", "to": "bca2cfac", "length": 0.08327817916870117}, {"from": "773a4156", "to": "13383861", "length": 0.12436950206756592}, {"from": "773a4156", "to": "7fa77e7c", "length": 0.39869630336761475}, {"from": "8340aaf6", "to": "45a005ba", "length": 0.13274455070495605}, {"from": "72360103", "to": "1fb0665c", "length": 0.15915751457214355}, {"from": "ef746128", "to": "6e092d01", "length": 0.16256368160247803}, {"from": "ef746128", "to": "bca2cfac", "length": 0.18559253215789795}, {"from": "f47d69ae", "to": "69ed067f", "length": 0.44347500801086426}, {"from": "f47d69ae", "to": "fe623689", "length": 0.44918400049209595}, {"from": "f1416e23", "to": "c8b7209e", "length": 0.49580472707748413}, {"from": "86a62c68", "to": "dfcfa27c", "length": 0.19733047485351562}, {"from": "86a62c68", "to": "c8aa2f99", "length": 0.1309606432914734}, {"from": "cb27fc2e", "to": "e4b5226b", "length": 0.24591195583343506}, {"from": "e4861ed8", "to": "8fe123c6", "length": 0.13021349906921387}, {"from": "e4861ed8", "to": "e080a37a", "length": 0.22149717807769775}, {"from": "ea7fb55e", "to": "cf7e3a79", "length": 0.1188780665397644}, {"from": "ea7fb55e", "to": "5a4f5ef4", "length": 0.17980480194091797}, {"from": "1ed99743", "to": "1fb0665c", "length": 0.18001389503479004}, {"from": "2cf01874", "to": "aea6ef6b", "length": 0.3531315326690674}, {"from": "6d19f294", "to": "bead557a", "length": 0.1744840145111084}, {"from": "9d05be3b", "to": "33e59069", "length": 0.14667034149169922}, {"from": "9d05be3b", "to": "00013899", "length": 0.14990341663360596}, {"from": "dfcfa27c", "to": "066d5771", "length": 0.232369065284729}, {"from": "dfcfa27c", "to": "dcd74732", "length": 0.09671330451965332}, {"from": "fb7e4354", "to": "6e22f5cd", "length": 0.07001334428787231}, {"from": "fb7e4354", "to": "1b74d271", "length": 0.09112703800201416}, {"from": "1ba0d17b", "to": "a808c635", "length": 0.24961626529693604}, {"from": "1cc3c6c0", "to": "a8a5767d", "length": 0.1337341070175171}, {"from": "04dfddf9", "to": "95c67421", "length": 0.21189236640930176}, {"from": "6d60e3a1", "to": "e4787cfc", "length": 0.16222715377807617}, {"from": "8d6eccd0", "to": "2990a149", "length": 0.09347820281982422}, {"from": "9d33dced", "to": "d32a5785", "length": 0.3740105628967285}, {"from": "9d33dced", "to": "f31e205a", "length": 0.47423332929611206}, {"from": "45a005ba", "to": "a93da23d", "length": 0.16057169437408447}, {"from": "45a005ba", "to": "631b0413", "length": 0.15376126766204834}, {"from": "45a005ba", "to": "5854f41a", "length": 0.15797501802444458}, {"from": "449d5a0a", "to": "482d84dd", "length": 0.17681968212127686}, {"from": "449d5a0a", "to": "1967ee53", "length": 0.1612423062324524}, {"from": "449d5a0a", "to": "2cd8d40e", "length": 0.11269068717956543}, {"from": "449d5a0a", "to": "282cfa8c", "length": 0.1362360119819641}, {"from": "451e2ccb", "to": "00163dc9", "length": 0.09364396333694458}, {"from": "72921df9", "to": "e855af2a", "length": 0.08688688278198242}, {"from": "6136958e", "to": "65503d4f", "length": 0.3995175361633301}, {"from": "6136958e", "to": "bca2cfac", "length": 0.2713519334793091}, {"from": "bd4f8711", "to": "d411f76c", "length": 0.4718949794769287}, {"from": "cb2efb06", "to": "2547b60d", "length": 0.1178818941116333}, {"from": "cb2efb06", "to": "41a0ac54", "length": 0.4281059503555298}, {"from": "d0af9065", "to": "a0fd12d7", "length": 0.393496036529541}, {"from": "0ac15611", "to": "7d9fed60", "length": 0.37906771898269653}, {"from": "0ccb413a", "to": "d88e5111", "length": 0.09783995151519775}, {"from": "0f6fbea8", "to": "cf7e3a79", "length": 0.26247137784957886}, {"from": "0f6fbea8", "to": "24ceb09f", "length": 0.20972418785095215}, {"from": "2e3dbf01", "to": "4ce0075b", "length": 0.13267505168914795}, {"from": "2e3dbf01", "to": "afd09d8d", "length": 0.11748486757278442}, {"from": "3ae04663", "to": "012e4f22", "length": 0.21332323551177979}, {"from": "4f7d30d9", "to": "012e4f22", "length": 0.10058456659317017}, {"from": "4f7d30d9", "to": "5e5993c5", "length": 0.16498851776123047}, {"from": "05b1a5fa", "to": "ac0e6660", "length": 0.13153231143951416}, {"from": "7b3d6f79", "to": "16fefdd2", "length": 0.21075963973999023}, {"from": "7b3d6f79", "to": "c8aa2f99", "length": 0.16230803728103638}, {"from": "7d9fed60", "to": "72fa017c", "length": 0.39730703830718994}, {"from": "7d557804", "to": "0c109d26", "length": 0.1577439308166504}, {"from": "9e884660", "to": "c8b7209e", "length": 0.44881927967071533}, {"from": "9e884660", "to": "1ceb61c1", "length": 0.24880415201187134}, {"from": "9e884660", "to": "75044eb2", "length": 0.4585607051849365}, {"from": "012e4f22", "to": "ea0450c6", "length": 0.19187164306640625}, {"from": "012e4f22", "to": "a601effc", "length": 0.16193091869354248}, {"from": "012e4f22", "to": "e5585e6c", "length": 0.15433341264724731}, {"from": "012e4f22", "to": "a8a5767d", "length": 0.09487801790237427}, {"from": "012e4f22", "to": "05a45f91", "length": 0.14487296342849731}, {"from": "20b5dff7", "to": "2af831b5", "length": 0.32547491788864136}, {"from": "24c980be", "to": "1a32de6a", "length": 0.2081446647644043}, {"from": "24c980be", "to": "a3697aa1", "length": 0.17480993270874023}, {"from": "39b99040", "to": "efc0778d", "length": 0.09143280982971191}, {"from": "39b99040", "to": "b8015202", "length": 0.3252124786376953}, {"from": "39bbe2d2", "to": "2e045702", "length": 0.29023265838623047}, {"from": "49e762bc", "to": "cc948b89", "length": 0.1956545114517212}, {"from": "57d35f28", "to": "cc948b89", "length": 0.2273463010787964}, {"from": "61c1b280", "to": "641fc74a", "length": 0.47632861137390137}, {"from": "95c67421", "to": "8b6e7173", "length": 0.22938579320907593}, {"from": "95c67421", "to": "7787d8bf", "length": 0.1749809980392456}, {"from": "95c67421", "to": "faa41cbb", "length": 0.1914902925491333}, {"from": "586ae4bc", "to": "78024d52", "length": 0.2317236065864563}, {"from": "1105cfcb", "to": "7097b038", "length": 0.26993751525878906}, {"from": "1707f3b6", "to": "afd09d8d", "length": 0.23177260160446167}, {"from": "6489388e", "to": "8fe123c6", "length": 0.12596291303634644}, {"from": "18460462", "to": "7cf5370c", "length": 0.34311985969543457}, {"from": "a3feb976", "to": "5a4f5ef4", "length": 0.17848902940750122}, {"from": "a808c635", "to": "14ac96ed", "length": 0.25879764556884766}, {"from": "aea6ef6b", "to": "ac5de73d", "length": 0.3420485258102417}, {"from": "aea6ef6b", "to": "a0fd12d7", "length": 0.36272966861724854}, {"from": "b4f1d560", "to": "05a45f91", "length": 0.18088555335998535}, {"from": "bf7b3aa8", "to": "cfad3338", "length": 0.08483970165252686}, {"from": "c7257399", "to": "f4169f28", "length": 0.23077702522277832}, {"from": "cc270cfd", "to": "bbd90363", "length": 0.27194058895111084}, {"from": "de451a8b", "to": "7520c617", "length": 0.14984524250030518}, {"from": "de603256", "to": "52ccb6af", "length": 0.2969714403152466}, {"from": "e5d53ec4", "to": "fe623689", "length": 0.42848294973373413}, {"from": "ee093a4f", "to": "5d68aedf", "length": 0.16705429553985596}, {"from": "f988d3c6", "to": "72fa017c", "length": 0.4659370183944702}, {"from": "62e9f0ac", "to": "78024d52", "length": 0.22540688514709473}, {"from": "62e9f0ac", "to": "40b58885", "length": 0.1271113157272339}, {"from": "74eb72c7", "to": "5a4f5ef4", "length": 0.11544948816299438}, {"from": "78a17f40", "to": "d81b9343", "length": 0.11523234844207764}, {"from": "78ddc745", "to": "a8ce1f8e", "length": 0.305941104888916}, {"from": "780c767e", "to": "2293080b", "length": 0.2192978858947754}, {"from": "25714f7a", "to": "5d68aedf", "length": 0.19668889045715332}, {"from": "76981655", "to": "4ce0075b", "length": 0.1702558994293213}, {"from": "76981655", "to": "9febd2ae", "length": 0.17611759901046753}, {"from": "a93da23d", "to": "39d90db6", "length": 0.28029710054397583}, {"from": "a601effc", "to": "1967ee53", "length": 0.15542781352996826}, {"from": "a601effc", "to": "e4b5226b", "length": 0.21858465671539307}, {"from": "a601effc", "to": "f93a34f0", "length": 0.22985106706619263}, {"from": "a601effc", "to": "5d3b01f8", "length": 0.1384127140045166}, {"from": "a3089480", "to": "0e1e679f", "length": 0.17866897583007812}, {"from": "d87b9119", "to": "7787d8bf", "length": 0.21281301975250244}, {"from": "e855af2a", "to": "deaeef6e", "length": 0.09728360176086426}, {"from": "e5585e6c", "to": "cc948b89", "length": 0.12454187870025635}, {"from": "ed113175", "to": "cda4375a", "length": 0.229536771774292}, {"from": "f19b6190", "to": "bb6ac6f1", "length": 0.22718393802642822}, {"from": "9ee921f6", "to": "338ab306", "length": 0.08319616317749023}, {"from": "010b4e02", "to": "2fbfe282", "length": 0.22984910011291504}, {"from": "43f628ef", "to": "d411f76c", "length": 0.43186402320861816}, {"from": "52ccb6af", "to": "bca2cfac", "length": 0.11885237693786621}, {"from": "445a3b95", "to": "03d42201", "length": 0.1908935308456421}, {"from": "445a3b95", "to": "cc948b89", "length": 0.14329171180725098}, {"from": "520a2229", "to": "5854f41a", "length": 0.21102380752563477}, {"from": "224918d3", "to": "4e2f4ba6", "length": 0.20565438270568848}, {"from": "18563891", "to": "e77b2f65", "length": 0.15935105085372925}, {"from": "a67a3b57", "to": "0c109d26", "length": 0.10419702529907227}, {"from": "a67a3b57", "to": "e3ee19b2", "length": 0.3626445531845093}, {"from": "d411f76c", "to": "fada1cbf", "length": 0.33938276767730713}, {"from": "2b20ee07", "to": "a8ce1f8e", "length": 0.24429523944854736}, {"from": "2b20ee07", "to": "05a45f91", "length": 0.1734764575958252}, {"from": "3ec05fe5", "to": "4b122dae", "length": 0.2213398814201355}, {"from": "5f8be8da", "to": "2547b60d", "length": 0.4265221357345581}, {"from": "24ceb09f", "to": "e825afa1", "length": 0.24765199422836304}, {"from": "978de897", "to": "8e1072e6", "length": 0.10968279838562012}, {"from": "978de897", "to": "d39532a8", "length": 0.10972464084625244}, {"from": "c94451aa", "to": "0253acb6", "length": 0.14268994331359863}, {"from": "c94451aa", "to": "40428019", "length": 0.21125686168670654}, {"from": "1a32de6a", "to": "5e5993c5", "length": 0.09127509593963623}, {"from": "1a32de6a", "to": "b906d548", "length": 0.14425981044769287}, {"from": "1a32de6a", "to": "d39532a8", "length": 0.18198269605636597}, {"from": "4b122dae", "to": "2fbfe282", "length": 0.32917261123657227}, {"from": "5b84bdc7", "to": "b906d548", "length": 0.16453945636749268}, {"from": "72fa017c", "to": "40968f4b", "length": 0.3743182420730591}, {"from": "de28ee15", "to": "cc948b89", "length": 0.1111220121383667}, {"from": "4ce0075b", "to": "282cfa8c", "length": 0.16004103422164917}, {"from": "6d250131", "to": "df6c208e", "length": 0.10658466815948486}, {"from": "31ebd5d6", "to": "60a5f2c6", "length": 0.15678930282592773}, {"from": "31ebd5d6", "to": "bbd90363", "length": 0.2064099907875061}, {"from": "5686b87e", "to": "7fa77e7c", "length": 0.46883445978164673}, {"from": "bc8cc1a2", "to": "c8aa2f99", "length": 0.1772158145904541}, {"from": "6d590dce", "to": "5854f41a", "length": 0.18995767831802368}, {"from": "6d590dce", "to": "a47dd6dc", "length": 0.18586456775665283}, {"from": "034aea85", "to": "631b0413", "length": 0.16957318782806396}, {"from": "40b58885", "to": "7520c617", "length": 0.17975425720214844}, {"from": "917e0da2", "to": "fe623689", "length": 0.1580876111984253}, {"from": "917e0da2", "to": "fada1cbf", "length": 0.14624261856079102}, {"from": "a8a5767d", "to": "7520c617", "length": 0.14699316024780273}, {"from": "a8a5767d", "to": "ff4fee9b", "length": 0.12099480628967285}, {"from": "bc1f03bf", "to": "e3ee19b2", "length": 0.32221901416778564}, {"from": "df6c208e", "to": "2990a149", "length": 0.16410380601882935}, {"from": "e4787cfc", "to": "2cd8d40e", "length": 0.1552322506904602}, {"from": "d81b9343", "to": "e080a37a", "length": 0.18064451217651367}, {"from": "4d416dfd", "to": "7520c617", "length": 0.11297488212585449}, {"from": "7cf5370c", "to": "338ab306", "length": 0.0797799825668335}, {"from": "96d8dcb4", "to": "a3697aa1", "length": 0.10421335697174072}, {"from": "224a42d8", "to": "d40691c5", "length": 0.06640934944152832}, {"from": "0253acb6", "to": "d88e5111", "length": 0.09699678421020508}, {"from": "338ab306", "to": "da47892e", "length": 0.10358905792236328}, {"from": "653a1bc0", "to": "00013899", "length": 0.08585059642791748}, {"from": "653a1bc0", "to": "ff4fee9b", "length": 0.1545262336730957}, {"from": "1967ee53", "to": "13478d0f", "length": 0.048305392265319824}, {"from": "ac0e6660", "to": "90fa05fd", "length": 0.07431185245513916}, {"from": "cfad3338", "to": "e080a37a", "length": 0.05602455139160156}, {"from": "cfad3338", "to": "f91d9983", "length": 0.1668393611907959}, {"from": "3e679118", "to": "c8aa2f99", "length": 0.16584151983261108}, {"from": "3e679118", "to": "6b01cf3e", "length": 0.15596890449523926}, {"from": "3410d0ed", "to": "90fa05fd", "length": 0.07717621326446533}, {"from": "7520c617", "to": "ae93354c", "length": 0.1376478672027588}, {"from": "e77b2f65", "to": "1b74d271", "length": 0.09800910949707031}, {"from": "0c109d26", "to": "2ca35c83", "length": 0.3492756485939026}, {"from": "1ceb61c1", "to": "a0fd12d7", "length": 0.15644729137420654}, {"from": "2ca35c83", "to": "bee5e00e", "length": 0.38895881175994873}, {"from": "14ac96ed", "to": "631b0413", "length": 0.2354603409767151}, {"from": "532ebfa4", "to": "11858a03", "length": 0.12210726737976074}, {"from": "7097b038", "to": "bee5e00e", "length": 0.19442248344421387}, {"from": "95719ea1", "to": "1b74d271", "length": 0.26775169372558594}, {"from": "95719ea1", "to": "5d3b01f8", "length": 0.21669262647628784}, {"from": "deaeef6e", "to": "739cd4cd", "length": 0.1790534257888794}, {"from": "fd35670a", "to": "437780d1", "length": 0.2578998804092407}, {"from": "29835f87", "to": "05a45f91", "length": 0.19506323337554932}, {"from": "01a5575c", "to": "6b01cf3e", "length": 0.11740899085998535}, {"from": "6b01cf3e", "to": "437780d1", "length": 0.06055891513824463}, {"from": "2990a149", "to": "e4a9e8fe", "length": 0.11137062311172485}, {"from": "b1921b3f", "to": "443c360e", "length": 0.08633273839950562}, {"from": "e4a9e8fe", "to": "4e2f4ba6", "length": 0.12920033931732178}, {"from": "5854f41a", "to": "f9c8cc01", "length": 0.16076719760894775}, {"from": "2f2ae696", "to": "7fa77e7c", "length": 0.39459991455078125}, {"from": "24592c0b", "to": "ae93354c", "length": 0.19851571321487427}]}
|