Spaces:
Runtime error
Runtime error
delete
Browse files- graphrag_construct.html +0 -444
graphrag_construct.html
DELETED
|
@@ -1,444 +0,0 @@
|
|
| 1 |
-
<html>
|
| 2 |
-
<head>
|
| 3 |
-
<meta charset="utf-8">
|
| 4 |
-
|
| 5 |
-
<script>function neighbourhoodHighlight(params) {
|
| 6 |
-
// console.log("in nieghbourhoodhighlight");
|
| 7 |
-
allNodes = nodes.get({ returnType: "Object" });
|
| 8 |
-
// originalNodes = JSON.parse(JSON.stringify(allNodes));
|
| 9 |
-
// if something is selected:
|
| 10 |
-
if (params.nodes.length > 0) {
|
| 11 |
-
highlightActive = true;
|
| 12 |
-
var i, j;
|
| 13 |
-
var selectedNode = params.nodes[0];
|
| 14 |
-
var degrees = 2;
|
| 15 |
-
|
| 16 |
-
// mark all nodes as hard to read.
|
| 17 |
-
for (let nodeId in allNodes) {
|
| 18 |
-
// nodeColors[nodeId] = allNodes[nodeId].color;
|
| 19 |
-
allNodes[nodeId].color = "rgba(200,200,200,0.5)";
|
| 20 |
-
if (allNodes[nodeId].hiddenLabel === undefined) {
|
| 21 |
-
allNodes[nodeId].hiddenLabel = allNodes[nodeId].label;
|
| 22 |
-
allNodes[nodeId].label = undefined;
|
| 23 |
-
}
|
| 24 |
-
}
|
| 25 |
-
var connectedNodes = network.getConnectedNodes(selectedNode);
|
| 26 |
-
var allConnectedNodes = [];
|
| 27 |
-
|
| 28 |
-
// get the second degree nodes
|
| 29 |
-
for (i = 1; i < degrees; i++) {
|
| 30 |
-
for (j = 0; j < connectedNodes.length; j++) {
|
| 31 |
-
allConnectedNodes = allConnectedNodes.concat(
|
| 32 |
-
network.getConnectedNodes(connectedNodes[j])
|
| 33 |
-
);
|
| 34 |
-
}
|
| 35 |
-
}
|
| 36 |
-
|
| 37 |
-
// all second degree nodes get a different color and their label back
|
| 38 |
-
for (i = 0; i < allConnectedNodes.length; i++) {
|
| 39 |
-
// allNodes[allConnectedNodes[i]].color = "pink";
|
| 40 |
-
allNodes[allConnectedNodes[i]].color = "rgba(150,150,150,0.75)";
|
| 41 |
-
if (allNodes[allConnectedNodes[i]].hiddenLabel !== undefined) {
|
| 42 |
-
allNodes[allConnectedNodes[i]].label =
|
| 43 |
-
allNodes[allConnectedNodes[i]].hiddenLabel;
|
| 44 |
-
allNodes[allConnectedNodes[i]].hiddenLabel = undefined;
|
| 45 |
-
}
|
| 46 |
-
}
|
| 47 |
-
|
| 48 |
-
// all first degree nodes get their own color and their label back
|
| 49 |
-
for (i = 0; i < connectedNodes.length; i++) {
|
| 50 |
-
// allNodes[connectedNodes[i]].color = undefined;
|
| 51 |
-
allNodes[connectedNodes[i]].color = nodeColors[connectedNodes[i]];
|
| 52 |
-
if (allNodes[connectedNodes[i]].hiddenLabel !== undefined) {
|
| 53 |
-
allNodes[connectedNodes[i]].label =
|
| 54 |
-
allNodes[connectedNodes[i]].hiddenLabel;
|
| 55 |
-
allNodes[connectedNodes[i]].hiddenLabel = undefined;
|
| 56 |
-
}
|
| 57 |
-
}
|
| 58 |
-
|
| 59 |
-
// the main node gets its own color and its label back.
|
| 60 |
-
// allNodes[selectedNode].color = undefined;
|
| 61 |
-
allNodes[selectedNode].color = nodeColors[selectedNode];
|
| 62 |
-
if (allNodes[selectedNode].hiddenLabel !== undefined) {
|
| 63 |
-
allNodes[selectedNode].label = allNodes[selectedNode].hiddenLabel;
|
| 64 |
-
allNodes[selectedNode].hiddenLabel = undefined;
|
| 65 |
-
}
|
| 66 |
-
} else if (highlightActive === true) {
|
| 67 |
-
// console.log("highlightActive was true");
|
| 68 |
-
// reset all nodes
|
| 69 |
-
for (let nodeId in allNodes) {
|
| 70 |
-
// allNodes[nodeId].color = "purple";
|
| 71 |
-
allNodes[nodeId].color = nodeColors[nodeId];
|
| 72 |
-
// delete allNodes[nodeId].color;
|
| 73 |
-
if (allNodes[nodeId].hiddenLabel !== undefined) {
|
| 74 |
-
allNodes[nodeId].label = allNodes[nodeId].hiddenLabel;
|
| 75 |
-
allNodes[nodeId].hiddenLabel = undefined;
|
| 76 |
-
}
|
| 77 |
-
}
|
| 78 |
-
highlightActive = false;
|
| 79 |
-
}
|
| 80 |
-
|
| 81 |
-
// transform the object into an array
|
| 82 |
-
var updateArray = [];
|
| 83 |
-
if (params.nodes.length > 0) {
|
| 84 |
-
for (let nodeId in allNodes) {
|
| 85 |
-
if (allNodes.hasOwnProperty(nodeId)) {
|
| 86 |
-
// console.log(allNodes[nodeId]);
|
| 87 |
-
updateArray.push(allNodes[nodeId]);
|
| 88 |
-
}
|
| 89 |
-
}
|
| 90 |
-
nodes.update(updateArray);
|
| 91 |
-
} else {
|
| 92 |
-
// console.log("Nothing was selected");
|
| 93 |
-
for (let nodeId in allNodes) {
|
| 94 |
-
if (allNodes.hasOwnProperty(nodeId)) {
|
| 95 |
-
// console.log(allNodes[nodeId]);
|
| 96 |
-
// allNodes[nodeId].color = {};
|
| 97 |
-
updateArray.push(allNodes[nodeId]);
|
| 98 |
-
}
|
| 99 |
-
}
|
| 100 |
-
nodes.update(updateArray);
|
| 101 |
-
}
|
| 102 |
-
}
|
| 103 |
-
|
| 104 |
-
function filterHighlight(params) {
|
| 105 |
-
allNodes = nodes.get({ returnType: "Object" });
|
| 106 |
-
// if something is selected:
|
| 107 |
-
if (params.nodes.length > 0) {
|
| 108 |
-
filterActive = true;
|
| 109 |
-
let selectedNodes = params.nodes;
|
| 110 |
-
|
| 111 |
-
// hiding all nodes and saving the label
|
| 112 |
-
for (let nodeId in allNodes) {
|
| 113 |
-
allNodes[nodeId].hidden = true;
|
| 114 |
-
if (allNodes[nodeId].savedLabel === undefined) {
|
| 115 |
-
allNodes[nodeId].savedLabel = allNodes[nodeId].label;
|
| 116 |
-
allNodes[nodeId].label = undefined;
|
| 117 |
-
}
|
| 118 |
-
}
|
| 119 |
-
|
| 120 |
-
for (let i=0; i < selectedNodes.length; i++) {
|
| 121 |
-
allNodes[selectedNodes[i]].hidden = false;
|
| 122 |
-
if (allNodes[selectedNodes[i]].savedLabel !== undefined) {
|
| 123 |
-
allNodes[selectedNodes[i]].label = allNodes[selectedNodes[i]].savedLabel;
|
| 124 |
-
allNodes[selectedNodes[i]].savedLabel = undefined;
|
| 125 |
-
}
|
| 126 |
-
}
|
| 127 |
-
|
| 128 |
-
} else if (filterActive === true) {
|
| 129 |
-
// reset all nodes
|
| 130 |
-
for (let nodeId in allNodes) {
|
| 131 |
-
allNodes[nodeId].hidden = false;
|
| 132 |
-
if (allNodes[nodeId].savedLabel !== undefined) {
|
| 133 |
-
allNodes[nodeId].label = allNodes[nodeId].savedLabel;
|
| 134 |
-
allNodes[nodeId].savedLabel = undefined;
|
| 135 |
-
}
|
| 136 |
-
}
|
| 137 |
-
filterActive = false;
|
| 138 |
-
}
|
| 139 |
-
|
| 140 |
-
// transform the object into an array
|
| 141 |
-
var updateArray = [];
|
| 142 |
-
if (params.nodes.length > 0) {
|
| 143 |
-
for (let nodeId in allNodes) {
|
| 144 |
-
if (allNodes.hasOwnProperty(nodeId)) {
|
| 145 |
-
updateArray.push(allNodes[nodeId]);
|
| 146 |
-
}
|
| 147 |
-
}
|
| 148 |
-
nodes.update(updateArray);
|
| 149 |
-
} else {
|
| 150 |
-
for (let nodeId in allNodes) {
|
| 151 |
-
if (allNodes.hasOwnProperty(nodeId)) {
|
| 152 |
-
updateArray.push(allNodes[nodeId]);
|
| 153 |
-
}
|
| 154 |
-
}
|
| 155 |
-
nodes.update(updateArray);
|
| 156 |
-
}
|
| 157 |
-
}
|
| 158 |
-
|
| 159 |
-
function selectNode(nodes) {
|
| 160 |
-
network.selectNodes(nodes);
|
| 161 |
-
neighbourhoodHighlight({ nodes: nodes });
|
| 162 |
-
return nodes;
|
| 163 |
-
}
|
| 164 |
-
|
| 165 |
-
function selectNodes(nodes) {
|
| 166 |
-
network.selectNodes(nodes);
|
| 167 |
-
filterHighlight({nodes: nodes});
|
| 168 |
-
return nodes;
|
| 169 |
-
}
|
| 170 |
-
|
| 171 |
-
function highlightFilter(filter) {
|
| 172 |
-
let selectedNodes = []
|
| 173 |
-
let selectedProp = filter['property']
|
| 174 |
-
if (filter['item'] === 'node') {
|
| 175 |
-
let allNodes = nodes.get({ returnType: "Object" });
|
| 176 |
-
for (let nodeId in allNodes) {
|
| 177 |
-
if (allNodes[nodeId][selectedProp] && filter['value'].includes((allNodes[nodeId][selectedProp]).toString())) {
|
| 178 |
-
selectedNodes.push(nodeId)
|
| 179 |
-
}
|
| 180 |
-
}
|
| 181 |
-
}
|
| 182 |
-
else if (filter['item'] === 'edge'){
|
| 183 |
-
let allEdges = edges.get({returnType: 'object'});
|
| 184 |
-
// check if the selected property exists for selected edge and select the nodes connected to the edge
|
| 185 |
-
for (let edge in allEdges) {
|
| 186 |
-
if (allEdges[edge][selectedProp] && filter['value'].includes((allEdges[edge][selectedProp]).toString())) {
|
| 187 |
-
selectedNodes.push(allEdges[edge]['from'])
|
| 188 |
-
selectedNodes.push(allEdges[edge]['to'])
|
| 189 |
-
}
|
| 190 |
-
}
|
| 191 |
-
}
|
| 192 |
-
selectNodes(selectedNodes)
|
| 193 |
-
}</script>
|
| 194 |
-
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/vis-network/9.1.2/dist/dist/vis-network.min.css" integrity="sha512-WgxfT5LWjfszlPHXRmBWHkV2eceiWTOBvrKCNbdgDYTHrT2AeLCGbF4sZlZw3UMN3WtL0tGUoIAKsu8mllg/XA==" crossorigin="anonymous" referrerpolicy="no-referrer" />
|
| 195 |
-
<script src="https://cdnjs.cloudflare.com/ajax/libs/vis-network/9.1.2/dist/vis-network.min.js" integrity="sha512-LnvoEWDFrqGHlHmDD2101OrLcbsfkrzoSpvtSQtxK3RMnRV0eOkhhBN2dXHKRrUU8p2DGRTk35n4O8nWSVe1mQ==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
|
| 196 |
-
|
| 197 |
-
|
| 198 |
-
|
| 199 |
-
|
| 200 |
-
|
| 201 |
-
|
| 202 |
-
|
| 203 |
-
|
| 204 |
-
<center>
|
| 205 |
-
<h1></h1>
|
| 206 |
-
</center>
|
| 207 |
-
|
| 208 |
-
<!-- <link rel="stylesheet" href="../node_modules/vis/dist/vis.min.css" type="text/css" />
|
| 209 |
-
<script type="text/javascript" src="../node_modules/vis/dist/vis.js"> </script>-->
|
| 210 |
-
<link
|
| 211 |
-
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
|
| 212 |
-
rel="stylesheet"
|
| 213 |
-
integrity="sha384-eOJMYsd53ii+scO/bJGFsiCZc+5NDVN2yr8+0RDqr0Ql0h+rP48ckxlpbzKgwra6"
|
| 214 |
-
crossorigin="anonymous"
|
| 215 |
-
/>
|
| 216 |
-
<script
|
| 217 |
-
src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
|
| 218 |
-
integrity="sha384-JEW9xMcG8R+pH31jmWH6WWP0WintQrMb4s7ZOdauHnUtxwoG2vI5DkLtS3qm9Ekf"
|
| 219 |
-
crossorigin="anonymous"
|
| 220 |
-
></script>
|
| 221 |
-
|
| 222 |
-
|
| 223 |
-
<center>
|
| 224 |
-
<h1></h1>
|
| 225 |
-
</center>
|
| 226 |
-
<style type="text/css">
|
| 227 |
-
|
| 228 |
-
#mynetwork {
|
| 229 |
-
width: 100%;
|
| 230 |
-
height: 750px;
|
| 231 |
-
background-color: #ffffff;
|
| 232 |
-
border: 1px solid lightgray;
|
| 233 |
-
position: relative;
|
| 234 |
-
float: left;
|
| 235 |
-
}
|
| 236 |
-
|
| 237 |
-
|
| 238 |
-
#loadingBar {
|
| 239 |
-
position:absolute;
|
| 240 |
-
top:0px;
|
| 241 |
-
left:0px;
|
| 242 |
-
width: 100%;
|
| 243 |
-
height: 750px;
|
| 244 |
-
background-color:rgba(200,200,200,0.8);
|
| 245 |
-
-webkit-transition: all 0.5s ease;
|
| 246 |
-
-moz-transition: all 0.5s ease;
|
| 247 |
-
-ms-transition: all 0.5s ease;
|
| 248 |
-
-o-transition: all 0.5s ease;
|
| 249 |
-
transition: all 0.5s ease;
|
| 250 |
-
opacity:1;
|
| 251 |
-
}
|
| 252 |
-
|
| 253 |
-
#bar {
|
| 254 |
-
position:absolute;
|
| 255 |
-
top:0px;
|
| 256 |
-
left:0px;
|
| 257 |
-
width:20px;
|
| 258 |
-
height:20px;
|
| 259 |
-
margin:auto auto auto auto;
|
| 260 |
-
border-radius:11px;
|
| 261 |
-
border:2px solid rgba(30,30,30,0.05);
|
| 262 |
-
background: rgb(0, 173, 246); /* Old browsers */
|
| 263 |
-
box-shadow: 2px 0px 4px rgba(0,0,0,0.4);
|
| 264 |
-
}
|
| 265 |
-
|
| 266 |
-
#border {
|
| 267 |
-
position:absolute;
|
| 268 |
-
top:10px;
|
| 269 |
-
left:10px;
|
| 270 |
-
width:500px;
|
| 271 |
-
height:23px;
|
| 272 |
-
margin:auto auto auto auto;
|
| 273 |
-
box-shadow: 0px 0px 4px rgba(0,0,0,0.2);
|
| 274 |
-
border-radius:10px;
|
| 275 |
-
}
|
| 276 |
-
|
| 277 |
-
#text {
|
| 278 |
-
position:absolute;
|
| 279 |
-
top:8px;
|
| 280 |
-
left:530px;
|
| 281 |
-
width:30px;
|
| 282 |
-
height:50px;
|
| 283 |
-
margin:auto auto auto auto;
|
| 284 |
-
font-size:22px;
|
| 285 |
-
color: #000000;
|
| 286 |
-
}
|
| 287 |
-
|
| 288 |
-
div.outerBorder {
|
| 289 |
-
position:relative;
|
| 290 |
-
top:400px;
|
| 291 |
-
width:600px;
|
| 292 |
-
height:44px;
|
| 293 |
-
margin:auto auto auto auto;
|
| 294 |
-
border:8px solid rgba(0,0,0,0.1);
|
| 295 |
-
background: rgb(252,252,252); /* Old browsers */
|
| 296 |
-
background: -moz-linear-gradient(top, rgba(252,252,252,1) 0%, rgba(237,237,237,1) 100%); /* FF3.6+ */
|
| 297 |
-
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(252,252,252,1)), color-stop(100%,rgba(237,237,237,1))); /* Chrome,Safari4+ */
|
| 298 |
-
background: -webkit-linear-gradient(top, rgba(252,252,252,1) 0%,rgba(237,237,237,1) 100%); /* Chrome10+,Safari5.1+ */
|
| 299 |
-
background: -o-linear-gradient(top, rgba(252,252,252,1) 0%,rgba(237,237,237,1) 100%); /* Opera 11.10+ */
|
| 300 |
-
background: -ms-linear-gradient(top, rgba(252,252,252,1) 0%,rgba(237,237,237,1) 100%); /* IE10+ */
|
| 301 |
-
background: linear-gradient(to bottom, rgba(252,252,252,1) 0%,rgba(237,237,237,1) 100%); /* W3C */
|
| 302 |
-
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fcfcfc', endColorstr='#ededed',GradientType=0 ); /* IE6-9 */
|
| 303 |
-
border-radius:72px;
|
| 304 |
-
box-shadow: 0px 0px 10px rgba(0,0,0,0.2);
|
| 305 |
-
}
|
| 306 |
-
|
| 307 |
-
|
| 308 |
-
|
| 309 |
-
|
| 310 |
-
|
| 311 |
-
</style>
|
| 312 |
-
</head>
|
| 313 |
-
|
| 314 |
-
|
| 315 |
-
<body>
|
| 316 |
-
<div class="card" style="width: 100%">
|
| 317 |
-
|
| 318 |
-
|
| 319 |
-
<div id="mynetwork" class="card-body"></div>
|
| 320 |
-
</div>
|
| 321 |
-
|
| 322 |
-
|
| 323 |
-
<div id="loadingBar">
|
| 324 |
-
<div class="outerBorder">
|
| 325 |
-
<div id="text">0%</div>
|
| 326 |
-
<div id="border">
|
| 327 |
-
<div id="bar"></div>
|
| 328 |
-
</div>
|
| 329 |
-
</div>
|
| 330 |
-
</div>
|
| 331 |
-
|
| 332 |
-
|
| 333 |
-
|
| 334 |
-
<script type="text/javascript">
|
| 335 |
-
|
| 336 |
-
// initialize global variables.
|
| 337 |
-
var edges;
|
| 338 |
-
var nodes;
|
| 339 |
-
var allNodes;
|
| 340 |
-
var allEdges;
|
| 341 |
-
var nodeColors;
|
| 342 |
-
var originalNodes;
|
| 343 |
-
var network;
|
| 344 |
-
var container;
|
| 345 |
-
var options, data;
|
| 346 |
-
var filter = {
|
| 347 |
-
item : '',
|
| 348 |
-
property : '',
|
| 349 |
-
value : []
|
| 350 |
-
};
|
| 351 |
-
|
| 352 |
-
|
| 353 |
-
|
| 354 |
-
|
| 355 |
-
|
| 356 |
-
// This method is responsible for drawing the graph, returns the drawn network
|
| 357 |
-
function drawGraph() {
|
| 358 |
-
var container = document.getElementById('mynetwork');
|
| 359 |
-
|
| 360 |
-
|
| 361 |
-
|
| 362 |
-
// parsing and collecting nodes and edges from the python
|
| 363 |
-
nodes = new vis.DataSet([{"color": "hsla(72, 10%, 90%, 0.95)", "id": 0, "label": "confidence", "shape": "dot", "size": 0, "title": null}, {"color": "hsla(72, 10%, 90%, 0.95)", "id": 1, "label": "duty", "shape": "dot", "size": 0, "title": null}, {"color": "hsla(72, 10%, 90%, 0.95)", "id": 2, "label": "arrangements", "shape": "dot", "size": 0, "title": null}, {"color": "hsla(72, 10%, 90%, 0.95)", "id": 3, "label": "Island", "shape": "dot", "size": 0, "title": null}, {"color": "hsla(72, 10%, 90%, 0.95)", "id": 4, "label": "home", "shape": "dot", "size": 0, "title": null}, {"color": "hsla(72, 10%, 90%, 0.95)", "id": 5, "label": "storm", "shape": "dot", "size": 0, "title": null}, {"color": "hsl(65, 46%, 58%)", "id": 6, "label": "war", "shape": "dot", "size": 2, "title": "NP"}, {"color": "hsla(72, 10%, 90%, 0.95)", "id": 7, "label": "menace", "shape": "dot", "size": 0, "title": null}, {"color": "hsl(65, 46%, 58%)", "id": 8, "label": "tyranny", "shape": "dot", "size": 2, "title": "NP"}, {"color": "hsl(65, 46%, 58%)", "id": 9, "label": "years", "shape": "dot", "size": 2, "title": "NP"}, {"color": "hsla(72, 10%, 90%, 0.95)", "id": 10, "label": "rate", "shape": "dot", "size": 0, "title": null}, {"color": "hsla(72, 10%, 90%, 0.95)", "id": 11, "label": "resolve", "shape": "dot", "size": 0, "title": null}, {"color": "hsla(72, 10%, 90%, 0.95)", "id": 12, "label": "Majesty", "shape": "dot", "size": 0, "title": null}, {"color": "hsla(72, 10%, 90%, 0.95)", "id": 13, "label": "Government", "shape": "dot", "size": 0, "title": null}, {"color": "hsla(72, 10%, 90%, 0.95)", "id": 14, "label": "man", "shape": "dot", "size": 0, "title": null}, {"color": "hsla(72, 10%, 90%, 0.95)", "id": 15, "label": "will", "shape": "dot", "size": 0, "title": null}, {"color": "hsl(65, 46%, 58%)", "id": 16, "label": "Parliament", "shape": "dot", "size": 2, "title": "Organization"}, {"color": "hsla(72, 10%, 90%, 0.95)", "id": 17, "label": "nation", "shape": "dot", "size": 0, "title": null}, {"color": "hsla(72, 10%, 90%, 0.95)", "id": 18, "label": "British", "shape": "dot", "size": 0, "title": null}, {"color": "hsla(72, 10%, 90%, 0.95)", "id": 19, "label": "Empire", "shape": "dot", "size": 0, "title": null}, {"color": "hsla(72, 10%, 90%, 0.95)", "id": 20, "label": "French", "shape": "dot", "size": 0, "title": null}, {"color": "hsla(72, 10%, 90%, 0.95)", "id": 21, "label": "Republic", "shape": "dot", "size": 0, "title": null}, {"color": "hsla(72, 10%, 90%, 0.95)", "id": 22, "label": "cause", "shape": "dot", "size": 0, "title": null}, {"color": "hsla(72, 10%, 90%, 0.95)", "id": 23, "label": "need", "shape": "dot", "size": 0, "title": null}, {"color": "hsla(72, 10%, 90%, 0.95)", "id": 24, "label": "death", "shape": "dot", "size": 0, "title": null}, {"color": "hsla(72, 10%, 90%, 0.95)", "id": 25, "label": "soil", "shape": "dot", "size": 0, "title": null}, {"color": "hsla(72, 10%, 90%, 0.95)", "id": 26, "label": "comrades", "shape": "dot", "size": 0, "title": null}, {"color": "hsla(72, 10%, 90%, 0.95)", "id": 27, "label": "utmost", "shape": "dot", "size": 0, "title": null}, {"color": "hsla(72, 10%, 90%, 0.95)", "id": 28, "label": "strength", "shape": "dot", "size": 0, "title": null}, {"color": "hsla(72, 10%, 90%, 0.95)", "id": 29, "label": "tracts", "shape": "dot", "size": 0, "title": null}, {"color": "hsl(65, 46%, 58%)", "id": 30, "label": "Europe", "shape": "dot", "size": 2, "title": "NP"}, {"color": "hsla(72, 10%, 90%, 0.95)", "id": 31, "label": "States", "shape": "dot", "size": 0, "title": null}, {"color": "hsla(72, 10%, 90%, 0.95)", "id": 32, "label": "grip", "shape": "dot", "size": 0, "title": null}, {"color": "hsl(65, 46%, 58%)", "id": 33, "label": "Gestapo", "shape": "dot", "size": 3, "title": "Organization"}, {"color": "hsla(72, 10%, 90%, 0.95)", "id": 34, "label": "apparatus", "shape": "dot", "size": 0, "title": null}, {"color": "hsla(72, 10%, 90%, 0.95)", "id": 35, "label": "Nazi", "shape": "dot", "size": 0, "title": null}, {"color": "hsla(72, 10%, 90%, 0.95)", "id": 36, "label": "rule", "shape": "dot", "size": 0, "title": null}, {"color": "hsla(72, 10%, 90%, 0.95)", "id": 37, "label": "end", "shape": "dot", "size": 0, "title": null}, {"color": "hsl(65, 46%, 58%)", "id": 38, "label": "France", "shape": "dot", "size": 2, "title": "Country"}, {"color": "hsla(72, 10%, 90%, 0.95)", "id": 39, "label": "seas", "shape": "dot", "size": 0, "title": null}, {"color": "hsl(65, 46%, 58%)", "id": 40, "label": "oceans", "shape": "dot", "size": 3, "title": "NP"}, {"color": "hsla(72, 10%, 90%, 0.95)", "id": 41, "label": "air", "shape": "dot", "size": 0, "title": null}, {"color": "hsla(72, 10%, 90%, 0.95)", "id": 42, "label": "cost", "shape": "dot", "size": 0, "title": null}, {"color": "hsla(72, 10%, 90%, 0.95)", "id": 43, "label": "beaches", "shape": "dot", "size": 0, "title": null}, {"color": "hsla(72, 10%, 90%, 0.95)", "id": 44, "label": "landing", "shape": "dot", "size": 0, "title": null}, {"color": "hsla(72, 10%, 90%, 0.95)", "id": 45, "label": "grounds", "shape": "dot", "size": 0, "title": null}, {"color": "hsla(72, 10%, 90%, 0.95)", "id": 46, "label": "fields", "shape": "dot", "size": 0, "title": null}, {"color": "hsla(72, 10%, 90%, 0.95)", "id": 47, "label": "streets", "shape": "dot", "size": 0, "title": null}, {"color": "hsla(72, 10%, 90%, 0.95)", "id": 48, "label": "hills", "shape": "dot", "size": 0, "title": null}, {"color": "hsla(72, 10%, 90%, 0.95)", "id": 49, "label": "moment", "shape": "dot", "size": 0, "title": null}, {"color": "hsla(72, 10%, 90%, 0.95)", "id": 50, "label": "part", "shape": "dot", "size": 0, "title": null}, {"color": "hsla(72, 10%, 90%, 0.95)", "id": 51, "label": "Fleet", "shape": "dot", "size": 0, "title": null}, {"color": "hsla(72, 10%, 90%, 0.95)", "id": 52, "label": "struggle", "shape": "dot", "size": 0, "title": null}, {"color": "hsla(72, 10%, 90%, 0.95)", "id": 53, "label": "God", "shape": "dot", "size": 0, "title": null}, {"color": "hsla(72, 10%, 90%, 0.95)", "id": 54, "label": "time", "shape": "dot", "size": 0, "title": null}, {"color": "hsla(72, 10%, 90%, 0.95)", "id": 55, "label": "New", "shape": "dot", "size": 0, "title": null}, {"color": "hsla(72, 10%, 90%, 0.95)", "id": 56, "label": "World", "shape": "dot", "size": 0, "title": null}, {"color": "hsla(72, 10%, 90%, 0.95)", "id": 57, "label": "power", "shape": "dot", "size": 0, "title": null}, {"color": "hsl(65, 46%, 58%)", "id": 58, "label": "might", "shape": "dot", "size": 3, "title": "NP"}, {"color": "hsla(72, 10%, 90%, 0.95)", "id": 59, "label": "rescue", "shape": "dot", "size": 0, "title": null}, {"color": "hsla(72, 10%, 90%, 0.95)", "id": 60, "label": "liberation", "shape": "dot", "size": 0, "title": null}, {"color": "hsl(65, 46%, 58%)", "id": 61, "label": "British Empire", "shape": "dot", "size": 2, "title": "Organization"}, {"color": "hsl(65, 46%, 58%)", "id": 62, "label": "French Republic", "shape": "dot", "size": 2, "title": "Country"}, {"color": "hsl(65, 46%, 58%)", "id": 63, "label": "I", "shape": "dot", "size": 3, "title": "Person"}, {"color": "hsl(65, 46%, 58%)", "id": 64, "label": "starving", "shape": "dot", "size": 2, "title": "Condition"}, {"color": "hsl(65, 46%, 58%)", "id": 65, "label": "British Fleet", "shape": "dot", "size": 2, "title": "Organization"}, {"color": "hsl(65, 46%, 58%)", "id": 66, "label": "myself", "shape": "dot", "size": 2, "title": "NP"}, {"color": "hsl(65, 46%, 58%)", "id": 67, "label": "full confidence", "shape": "dot", "size": 2, "title": "NP"}, {"color": "hsl(65, 46%, 58%)", "id": 68, "label": "all", "shape": "dot", "size": 2, "title": "NP"}, {"color": "hsl(65, 46%, 58%)", "id": 69, "label": "their duty", "shape": "dot", "size": 2, "title": "NP"}, {"color": "hsl(65, 46%, 58%)", "id": 70, "label": "nothing", "shape": "dot", "size": 2, "title": "NP"}, {"color": "hsl(65, 46%, 58%)", "id": 71, "label": "the best arrangements", "shape": "dot", "size": 2, "title": "NP"}, {"color": "hsl(65, 46%, 58%)", "id": 72, "label": "ourselves", "shape": "dot", "size": 2, "title": "NP"}, {"color": "hsl(65, 46%, 58%)", "id": 73, "label": "our Island home", "shape": "dot", "size": 2, "title": "NP"}, {"color": "hsl(65, 46%, 58%)", "id": 74, "label": "the storm", "shape": "dot", "size": 2, "title": "NP"}, {"color": "hsl(65, 46%, 58%)", "id": 75, "label": "the menace", "shape": "dot", "size": 2, "title": "NP"}, {"color": "hsl(65, 46%, 58%)", "id": 76, "label": "any rate", "shape": "dot", "size": 2, "title": "NP"}, {"color": "hsl(65, 46%, 58%)", "id": 77, "label": "what", "shape": "dot", "size": 2, "title": "NP"}, {"color": "hsl(65, 46%, 58%)", "id": 78, "label": "the resolve", "shape": "dot", "size": 1, "title": "NP"}, {"color": "hsl(65, 46%, 58%)", "id": 79, "label": "His Majesty\u2019s Government", "shape": "dot", "size": 2, "title": "NP"}, {"color": "hsl(65, 46%, 58%)", "id": 80, "label": "every man", "shape": "dot", "size": 1, "title": "NP"}, {"color": "hsl(65, 46%, 58%)", "id": 81, "label": "the will", "shape": "dot", "size": 2, "title": "NP"}, {"color": "hsl(65, 46%, 58%)", "id": 82, "label": "the nation", "shape": "dot", "size": 2, "title": "NP"}, {"color": "hsl(65, 46%, 58%)", "id": 83, "label": "The British Empire", "shape": "dot", "size": 2, "title": "NP"}, {"color": "hsl(65, 46%, 58%)", "id": 84, "label": "the French Republic", "shape": "dot", "size": 2, "title": "NP"}, {"color": "hsl(65, 46%, 58%)", "id": 85, "label": "their cause", "shape": "dot", "size": 2, "title": "NP"}, {"color": "hsl(65, 46%, 58%)", "id": 86, "label": "their need", "shape": "dot", "size": 2, "title": "NP"}, {"color": "hsl(65, 46%, 58%)", "id": 87, "label": "the death", "shape": "dot", "size": 2, "title": "NP"}, {"color": "hsl(65, 46%, 58%)", "id": 88, "label": "their native soil", "shape": "dot", "size": 2, "title": "NP"}, {"color": "hsl(65, 46%, 58%)", "id": 89, "label": "good comrades", "shape": "dot", "size": 2, "title": "NP"}, {"color": "hsl(65, 46%, 58%)", "id": 90, "label": "the utmost", "shape": "dot", "size": 2, "title": "NP"}, {"color": "hsl(65, 46%, 58%)", "id": 91, "label": "their strength", "shape": "dot", "size": 2, "title": "NP"}, {"color": "hsl(65, 46%, 58%)", "id": 92, "label": "large tracts", "shape": "dot", "size": 2, "title": "NP"}, {"color": "hsl(65, 46%, 58%)", "id": 93, "label": "many old and famous States", "shape": "dot", "size": 2, "title": "NP"}, {"color": "hsl(65, 46%, 58%)", "id": 94, "label": "the grip", "shape": "dot", "size": 2, "title": "NP"}, {"color": "hsl(65, 46%, 58%)", "id": 95, "label": "the Gestapo", "shape": "dot", "size": 2, "title": "NP"}, {"color": "hsl(65, 46%, 58%)", "id": 96, "label": "all the odious apparatus", "shape": "dot", "size": 2, "title": "NP"}, {"color": "hsl(65, 46%, 58%)", "id": 97, "label": "Nazi rule", "shape": "dot", "size": 2, "title": "NP"}, {"color": "hsl(65, 46%, 58%)", "id": 98, "label": "the end", "shape": "dot", "size": 2, "title": "NP"}, {"color": "hsl(65, 46%, 58%)", "id": 99, "label": "the seas", "shape": "dot", "size": 2, "title": "NP"}, {"color": "hsl(65, 46%, 58%)", "id": 100, "label": "growing confidence", "shape": "dot", "size": 2, "title": "NP"}, {"color": "hsl(65, 46%, 58%)", "id": 101, "label": "growing strength", "shape": "dot", "size": 2, "title": "NP"}, {"color": "hsl(65, 46%, 58%)", "id": 102, "label": "the air", "shape": "dot", "size": 2, "title": "NP"}, {"color": "hsl(65, 46%, 58%)", "id": 103, "label": "our Island", "shape": "dot", "size": 2, "title": "NP"}, {"color": "hsl(65, 46%, 58%)", "id": 104, "label": "whatever", "shape": "dot", "size": 2, "title": "NP"}, {"color": "hsl(65, 46%, 58%)", "id": 105, "label": "the cost", "shape": "dot", "size": 2, "title": "NP"}, {"color": "hsl(65, 46%, 58%)", "id": 106, "label": "the beaches", "shape": "dot", "size": 2, "title": "NP"}, {"color": "hsl(65, 46%, 58%)", "id": 107, "label": "the landing grounds", "shape": "dot", "size": 2, "title": "NP"}, {"color": "hsl(65, 46%, 58%)", "id": 108, "label": "the fields", "shape": "dot", "size": 2, "title": "NP"}, {"color": "hsl(65, 46%, 58%)", "id": 109, "label": "the streets", "shape": "dot", "size": 2, "title": "NP"}, {"color": "hsl(65, 46%, 58%)", "id": 110, "label": "the hills", "shape": "dot", "size": 2, "title": "NP"}, {"color": "hsl(65, 46%, 58%)", "id": 111, "label": "a moment", "shape": "dot", "size": 2, "title": "NP"}, {"color": "hsl(65, 46%, 58%)", "id": 112, "label": "this Island", "shape": "dot", "size": 2, "title": "NP"}, {"color": "hsl(65, 46%, 58%)", "id": 113, "label": "a large part", "shape": "dot", "size": 2, "title": "NP"}, {"color": "hsl(65, 46%, 58%)", "id": 114, "label": "then our Empire", "shape": "dot", "size": 2, "title": "NP"}, {"color": "hsl(65, 46%, 58%)", "id": 115, "label": "the British Fleet", "shape": "dot", "size": 2, "title": "NP"}, {"color": "hsl(65, 46%, 58%)", "id": 116, "label": "the struggle", "shape": "dot", "size": 2, "title": "NP"}, {"color": "hsl(65, 46%, 58%)", "id": 117, "label": "God\u2019s good time", "shape": "dot", "size": 2, "title": "NP"}, {"color": "hsl(65, 46%, 58%)", "id": 118, "label": "the New World", "shape": "dot", "size": 2, "title": "NP"}, {"color": "hsl(65, 46%, 58%)", "id": 119, "label": "all its power", "shape": "dot", "size": 2, "title": "NP"}, {"color": "hsl(65, 46%, 58%)", "id": 120, "label": "the rescue", "shape": "dot", "size": 2, "title": "NP"}, {"color": "hsl(65, 46%, 58%)", "id": 121, "label": "the liberation", "shape": "dot", "size": 2, "title": "NP"}]);
|
| 364 |
-
edges = new vis.DataSet([{"from": 0, "title": "FOLLOWS_LEXICALLY", "to": 1}, {"from": 0, "title": "FOLLOWS_LEXICALLY", "to": 2}, {"from": 0, "title": "FOLLOWS_LEXICALLY", "to": 3}, {"from": 0, "title": "FOLLOWS_LEXICALLY", "to": 40}, {"from": 0, "title": "FOLLOWS_LEXICALLY", "to": 28}, {"from": 0, "title": "FOLLOWS_LEXICALLY", "to": 39}, {"from": 0, "title": "FOLLOWS_LEXICALLY", "to": 41}, {"from": 0, "title": "FOLLOWS_LEXICALLY", "to": 38}, {"from": 0, "title": "COMPOUND_ELEMENT_OF", "to": 67}, {"from": 0, "title": "COMPOUND_ELEMENT_OF", "to": 100}, {"from": 1, "title": "FOLLOWS_LEXICALLY", "to": 2}, {"from": 1, "title": "FOLLOWS_LEXICALLY", "to": 3}, {"from": 1, "title": "FOLLOWS_LEXICALLY", "to": 4}, {"from": 1, "title": "COMPOUND_ELEMENT_OF", "to": 69}, {"from": 2, "title": "FOLLOWS_LEXICALLY", "to": 3}, {"from": 2, "title": "FOLLOWS_LEXICALLY", "to": 4}, {"from": 2, "title": "FOLLOWS_LEXICALLY", "to": 5}, {"from": 2, "title": "COMPOUND_ELEMENT_OF", "to": 71}, {"from": 3, "title": "FOLLOWS_LEXICALLY", "to": 4}, {"from": 3, "title": "FOLLOWS_LEXICALLY", "to": 5}, {"from": 3, "title": "FOLLOWS_LEXICALLY", "to": 6}, {"from": 3, "title": "FOLLOWS_LEXICALLY", "to": 41}, {"from": 3, "title": "FOLLOWS_LEXICALLY", "to": 42}, {"from": 3, "title": "FOLLOWS_LEXICALLY", "to": 49}, {"from": 3, "title": "FOLLOWS_LEXICALLY", "to": 50}, {"from": 3, "title": "FOLLOWS_LEXICALLY", "to": 28}, {"from": 3, "title": "FOLLOWS_LEXICALLY", "to": 43}, {"from": 3, "title": "FOLLOWS_LEXICALLY", "to": 48}, {"from": 3, "title": "FOLLOWS_LEXICALLY", "to": 19}, {"from": 3, "title": "FOLLOWS_LEXICALLY", "to": 44}, {"from": 3, "title": "FOLLOWS_LEXICALLY", "to": 47}, {"from": 3, "title": "FOLLOWS_LEXICALLY", "to": 39}, {"from": 3, "title": "COMPOUND_ELEMENT_OF", "to": 73}, {"from": 3, "title": "COMPOUND_ELEMENT_OF", "to": 103}, {"from": 3, "title": "COMPOUND_ELEMENT_OF", "to": 112}, {"from": 4, "title": "FOLLOWS_LEXICALLY", "to": 5}, {"from": 4, "title": "FOLLOWS_LEXICALLY", "to": 6}, {"from": 4, "title": "FOLLOWS_LEXICALLY", "to": 7}, {"from": 4, "title": "COMPOUND_ELEMENT_OF", "to": 73}, {"from": 5, "title": "FOLLOWS_LEXICALLY", "to": 6}, {"from": 5, "title": "FOLLOWS_LEXICALLY", "to": 7}, {"from": 5, "title": "FOLLOWS_LEXICALLY", "to": 8}, {"from": 5, "title": "COMPOUND_ELEMENT_OF", "to": 74}, {"from": 6, "title": "FOLLOWS_LEXICALLY", "to": 7}, {"from": 6, "title": "FOLLOWS_LEXICALLY", "to": 8}, {"from": 6, "title": "FOLLOWS_LEXICALLY", "to": 9}, {"from": 6, "title": "CO_OCCURS_WITH", "to": 66}, {"from": 6, "title": "CO_OCCURS_WITH", "to": 67}, {"from": 6, "title": "CO_OCCURS_WITH", "to": 68}, {"from": 6, "title": "CO_OCCURS_WITH", "to": 69}, {"from": 6, "title": "CO_OCCURS_WITH", "to": 70}, {"from": 6, "title": "CO_OCCURS_WITH", "to": 71}, {"from": 6, "title": "CO_OCCURS_WITH", "to": 72}, {"from": 6, "title": "CO_OCCURS_WITH", "to": 73}, {"from": 6, "title": "CO_OCCURS_WITH", "to": 74}, {"from": 6, "title": "CO_OCCURS_WITH", "to": 75}, {"from": 6, "title": "CO_OCCURS_WITH", "to": 63}, {"from": 7, "title": "FOLLOWS_LEXICALLY", "to": 8}, {"from": 7, "title": "FOLLOWS_LEXICALLY", "to": 9}, {"from": 7, "title": "COMPOUND_ELEMENT_OF", "to": 75}, {"from": 8, "title": "FOLLOWS_LEXICALLY", "to": 9}, {"from": 8, "title": "CO_OCCURS_WITH", "to": 66}, {"from": 8, "title": "CO_OCCURS_WITH", "to": 67}, {"from": 8, "title": "CO_OCCURS_WITH", "to": 68}, {"from": 8, "title": "CO_OCCURS_WITH", "to": 69}, {"from": 8, "title": "CO_OCCURS_WITH", "to": 70}, {"from": 8, "title": "CO_OCCURS_WITH", "to": 71}, {"from": 8, "title": "CO_OCCURS_WITH", "to": 72}, {"from": 8, "title": "CO_OCCURS_WITH", "to": 73}, {"from": 8, "title": "CO_OCCURS_WITH", "to": 74}, {"from": 8, "title": "CO_OCCURS_WITH", "to": 75}, {"from": 8, "title": "CO_OCCURS_WITH", "to": 63}, {"from": 9, "title": "CO_OCCURS_WITH", "to": 66}, {"from": 9, "title": "CO_OCCURS_WITH", "to": 67}, {"from": 9, "title": "CO_OCCURS_WITH", "to": 68}, {"from": 9, "title": "CO_OCCURS_WITH", "to": 69}, {"from": 9, "title": "CO_OCCURS_WITH", "to": 70}, {"from": 9, "title": "CO_OCCURS_WITH", "to": 71}, {"from": 9, "title": "CO_OCCURS_WITH", "to": 72}, {"from": 9, "title": "CO_OCCURS_WITH", "to": 73}, {"from": 9, "title": "CO_OCCURS_WITH", "to": 74}, {"from": 9, "title": "CO_OCCURS_WITH", "to": 75}, {"from": 9, "title": "CO_OCCURS_WITH", "to": 63}, {"from": 10, "title": "COMPOUND_ELEMENT_OF", "to": 76}, {"from": 11, "title": "FOLLOWS_LEXICALLY", "to": 12}, {"from": 11, "title": "FOLLOWS_LEXICALLY", "to": 13}, {"from": 11, "title": "FOLLOWS_LEXICALLY", "to": 14}, {"from": 11, "title": "COMPOUND_ELEMENT_OF", "to": 78}, {"from": 12, "title": "FOLLOWS_LEXICALLY", "to": 13}, {"from": 12, "title": "FOLLOWS_LEXICALLY", "to": 14}, {"from": 12, "title": "COMPOUND_ELEMENT_OF", "to": 79}, {"from": 13, "title": "FOLLOWS_LEXICALLY", "to": 14}, {"from": 13, "title": "COMPOUND_ELEMENT_OF", "to": 79}, {"from": 14, "title": "COMPOUND_ELEMENT_OF", "to": 80}, {"from": 15, "title": "FOLLOWS_LEXICALLY", "to": 16}, {"from": 15, "title": "FOLLOWS_LEXICALLY", "to": 17}, {"from": 15, "title": "COMPOUND_ELEMENT_OF", "to": 81}, {"from": 16, "title": "FOLLOWS_LEXICALLY", "to": 17}, {"from": 16, "title": "CO_OCCURS_WITH", "to": 81}, {"from": 16, "title": "CO_OCCURS_WITH", "to": 82}, {"from": 17, "title": "COMPOUND_ELEMENT_OF", "to": 82}, {"from": 18, "title": "FOLLOWS_LEXICALLY", "to": 19}, {"from": 18, "title": "FOLLOWS_LEXICALLY", "to": 20}, {"from": 18, "title": "FOLLOWS_LEXICALLY", "to": 21}, {"from": 18, "title": "FOLLOWS_LEXICALLY", "to": 39}, {"from": 18, "title": "FOLLOWS_LEXICALLY", "to": 51}, {"from": 18, "title": "FOLLOWS_LEXICALLY", "to": 52}, {"from": 18, "title": "FOLLOWS_LEXICALLY", "to": 50}, {"from": 18, "title": "FOLLOWS_LEXICALLY", "to": 53}, {"from": 18, "title": "COMPOUND_ELEMENT_OF", "to": 61}, {"from": 18, "title": "COMPOUND_ELEMENT_OF", "to": 65}, {"from": 18, "title": "COMPOUND_ELEMENT_OF", "to": 83}, {"from": 18, "title": "COMPOUND_ELEMENT_OF", "to": 115}, {"from": 19, "title": "FOLLOWS_LEXICALLY", "to": 20}, {"from": 19, "title": "FOLLOWS_LEXICALLY", "to": 21}, {"from": 19, "title": "FOLLOWS_LEXICALLY", "to": 22}, {"from": 19, "title": "FOLLOWS_LEXICALLY", "to": 50}, {"from": 19, "title": "FOLLOWS_LEXICALLY", "to": 39}, {"from": 19, "title": "FOLLOWS_LEXICALLY", "to": 49}, {"from": 19, "title": "FOLLOWS_LEXICALLY", "to": 51}, {"from": 19, "title": "COMPOUND_ELEMENT_OF", "to": 61}, {"from": 19, "title": "COMPOUND_ELEMENT_OF", "to": 83}, {"from": 19, "title": "COMPOUND_ELEMENT_OF", "to": 114}, {"from": 20, "title": "FOLLOWS_LEXICALLY", "to": 21}, {"from": 20, "title": "FOLLOWS_LEXICALLY", "to": 22}, {"from": 20, "title": "FOLLOWS_LEXICALLY", "to": 23}, {"from": 20, "title": "COMPOUND_ELEMENT_OF", "to": 62}, {"from": 20, "title": "COMPOUND_ELEMENT_OF", "to": 84}, {"from": 21, "title": "FOLLOWS_LEXICALLY", "to": 22}, {"from": 21, "title": "FOLLOWS_LEXICALLY", "to": 23}, {"from": 21, "title": "FOLLOWS_LEXICALLY", "to": 24}, {"from": 21, "title": "COMPOUND_ELEMENT_OF", "to": 62}, {"from": 21, "title": "COMPOUND_ELEMENT_OF", "to": 84}, {"from": 22, "title": "FOLLOWS_LEXICALLY", "to": 23}, {"from": 22, "title": "FOLLOWS_LEXICALLY", "to": 24}, {"from": 22, "title": "FOLLOWS_LEXICALLY", "to": 25}, {"from": 22, "title": "COMPOUND_ELEMENT_OF", "to": 85}, {"from": 23, "title": "FOLLOWS_LEXICALLY", "to": 24}, {"from": 23, "title": "FOLLOWS_LEXICALLY", "to": 25}, {"from": 23, "title": "FOLLOWS_LEXICALLY", "to": 26}, {"from": 23, "title": "COMPOUND_ELEMENT_OF", "to": 86}, {"from": 24, "title": "FOLLOWS_LEXICALLY", "to": 25}, {"from": 24, "title": "FOLLOWS_LEXICALLY", "to": 26}, {"from": 24, "title": "FOLLOWS_LEXICALLY", "to": 27}, {"from": 24, "title": "COMPOUND_ELEMENT_OF", "to": 87}, {"from": 25, "title": "FOLLOWS_LEXICALLY", "to": 26}, {"from": 25, "title": "FOLLOWS_LEXICALLY", "to": 27}, {"from": 25, "title": "FOLLOWS_LEXICALLY", "to": 28}, {"from": 25, "title": "COMPOUND_ELEMENT_OF", "to": 88}, {"from": 26, "title": "FOLLOWS_LEXICALLY", "to": 27}, {"from": 26, "title": "FOLLOWS_LEXICALLY", "to": 28}, {"from": 26, "title": "COMPOUND_ELEMENT_OF", "to": 89}, {"from": 27, "title": "FOLLOWS_LEXICALLY", "to": 28}, {"from": 27, "title": "COMPOUND_ELEMENT_OF", "to": 90}, {"from": 28, "title": "FOLLOWS_LEXICALLY", "to": 41}, {"from": 28, "title": "FOLLOWS_LEXICALLY", "to": 40}, {"from": 28, "title": "FOLLOWS_LEXICALLY", "to": 39}, {"from": 28, "title": "FOLLOWS_LEXICALLY", "to": 42}, {"from": 28, "title": "COMPOUND_ELEMENT_OF", "to": 91}, {"from": 28, "title": "COMPOUND_ELEMENT_OF", "to": 101}, {"from": 29, "title": "FOLLOWS_LEXICALLY", "to": 30}, {"from": 29, "title": "FOLLOWS_LEXICALLY", "to": 31}, {"from": 29, "title": "FOLLOWS_LEXICALLY", "to": 32}, {"from": 29, "title": "COMPOUND_ELEMENT_OF", "to": 92}, {"from": 30, "title": "FOLLOWS_LEXICALLY", "to": 31}, {"from": 30, "title": "FOLLOWS_LEXICALLY", "to": 32}, {"from": 30, "title": "FOLLOWS_LEXICALLY", "to": 33}, {"from": 30, "title": "CO_OCCURS_WITH", "to": 96}, {"from": 30, "title": "CO_OCCURS_WITH", "to": 97}, {"from": 30, "title": "CO_OCCURS_WITH", "to": 94}, {"from": 30, "title": "CO_OCCURS_WITH", "to": 92}, {"from": 30, "title": "CO_OCCURS_WITH", "to": 93}, {"from": 30, "title": "CO_OCCURS_WITH", "to": 95}, {"from": 31, "title": "FOLLOWS_LEXICALLY", "to": 32}, {"from": 31, "title": "FOLLOWS_LEXICALLY", "to": 33}, {"from": 31, "title": "FOLLOWS_LEXICALLY", "to": 34}, {"from": 31, "title": "COMPOUND_ELEMENT_OF", "to": 93}, {"from": 32, "title": "FOLLOWS_LEXICALLY", "to": 33}, {"from": 32, "title": "FOLLOWS_LEXICALLY", "to": 34}, {"from": 32, "title": "FOLLOWS_LEXICALLY", "to": 35}, {"from": 32, "title": "COMPOUND_ELEMENT_OF", "to": 94}, {"from": 33, "title": "FOLLOWS_LEXICALLY", "to": 34}, {"from": 33, "title": "FOLLOWS_LEXICALLY", "to": 35}, {"from": 33, "title": "FOLLOWS_LEXICALLY", "to": 36}, {"from": 33, "title": "COMPOUND_ELEMENT_OF", "to": 95}, {"from": 33, "title": "CO_OCCURS_WITH", "to": 96}, {"from": 33, "title": "CO_OCCURS_WITH", "to": 97}, {"from": 33, "title": "CO_OCCURS_WITH", "to": 94}, {"from": 33, "title": "CO_OCCURS_WITH", "to": 92}, {"from": 33, "title": "CO_OCCURS_WITH", "to": 93}, {"from": 34, "title": "FOLLOWS_LEXICALLY", "to": 35}, {"from": 34, "title": "FOLLOWS_LEXICALLY", "to": 36}, {"from": 34, "title": "COMPOUND_ELEMENT_OF", "to": 96}, {"from": 35, "title": "FOLLOWS_LEXICALLY", "to": 36}, {"from": 35, "title": "COMPOUND_ELEMENT_OF", "to": 97}, {"from": 36, "title": "COMPOUND_ELEMENT_OF", "to": 97}, {"from": 37, "title": "FOLLOWS_LEXICALLY", "to": 38}, {"from": 37, "title": "FOLLOWS_LEXICALLY", "to": 39}, {"from": 37, "title": "FOLLOWS_LEXICALLY", "to": 40}, {"from": 37, "title": "COMPOUND_ELEMENT_OF", "to": 98}, {"from": 38, "title": "FOLLOWS_LEXICALLY", "to": 39}, {"from": 38, "title": "FOLLOWS_LEXICALLY", "to": 40}, {"from": 38, "title": "CO_OCCURS_WITH", "to": 58}, {"from": 38, "title": "CO_OCCURS_WITH", "to": 63}, {"from": 38, "title": "CO_OCCURS_WITH", "to": 64}, {"from": 38, "title": "CO_OCCURS_WITH", "to": 65}, {"from": 38, "title": "CO_OCCURS_WITH", "to": 98}, {"from": 38, "title": "CO_OCCURS_WITH", "to": 99}, {"from": 38, "title": "CO_OCCURS_WITH", "to": 100}, {"from": 38, "title": "CO_OCCURS_WITH", "to": 101}, {"from": 38, "title": "CO_OCCURS_WITH", "to": 102}, {"from": 38, "title": "CO_OCCURS_WITH", "to": 103}, {"from": 38, "title": "CO_OCCURS_WITH", "to": 104}, {"from": 38, "title": "CO_OCCURS_WITH", "to": 105}, {"from": 38, "title": "CO_OCCURS_WITH", "to": 106}, {"from": 38, "title": "CO_OCCURS_WITH", "to": 107}, {"from": 38, "title": "CO_OCCURS_WITH", "to": 108}, {"from": 38, "title": "CO_OCCURS_WITH", "to": 109}, {"from": 38, "title": "CO_OCCURS_WITH", "to": 110}, {"from": 38, "title": "CO_OCCURS_WITH", "to": 111}, {"from": 38, "title": "CO_OCCURS_WITH", "to": 112}, {"from": 38, "title": "CO_OCCURS_WITH", "to": 113}, {"from": 38, "title": "CO_OCCURS_WITH", "to": 114}, {"from": 38, "title": "CO_OCCURS_WITH", "to": 115}, {"from": 38, "title": "CO_OCCURS_WITH", "to": 116}, {"from": 38, "title": "CO_OCCURS_WITH", "to": 117}, {"from": 38, "title": "CO_OCCURS_WITH", "to": 118}, {"from": 38, "title": "CO_OCCURS_WITH", "to": 119}, {"from": 38, "title": "CO_OCCURS_WITH", "to": 120}, {"from": 38, "title": "CO_OCCURS_WITH", "to": 121}, {"from": 39, "title": "FOLLOWS_LEXICALLY", "to": 40}, {"from": 39, "title": "FOLLOWS_LEXICALLY", "to": 50}, {"from": 39, "title": "FOLLOWS_LEXICALLY", "to": 51}, {"from": 39, "title": "FOLLOWS_LEXICALLY", "to": 52}, {"from": 39, "title": "COMPOUND_ELEMENT_OF", "to": 99}, {"from": 40, "title": "FOLLOWS_LEXICALLY", "to": 41}, {"from": 40, "title": "CO_OCCURS_WITH", "to": 58}, {"from": 40, "title": "CO_OCCURS_WITH", "to": 63}, {"from": 40, "title": "CO_OCCURS_WITH", "to": 64}, {"from": 40, "title": "CO_OCCURS_WITH", "to": 65}, {"from": 40, "title": "CO_OCCURS_WITH", "to": 98}, {"from": 40, "title": "CO_OCCURS_WITH", "to": 99}, {"from": 40, "title": "CO_OCCURS_WITH", "to": 100}, {"from": 40, "title": "CO_OCCURS_WITH", "to": 101}, {"from": 40, "title": "CO_OCCURS_WITH", "to": 102}, {"from": 40, "title": "CO_OCCURS_WITH", "to": 103}, {"from": 40, "title": "CO_OCCURS_WITH", "to": 104}, {"from": 40, "title": "CO_OCCURS_WITH", "to": 105}, {"from": 40, "title": "CO_OCCURS_WITH", "to": 106}, {"from": 40, "title": "CO_OCCURS_WITH", "to": 107}, {"from": 40, "title": "CO_OCCURS_WITH", "to": 108}, {"from": 40, "title": "CO_OCCURS_WITH", "to": 109}, {"from": 40, "title": "CO_OCCURS_WITH", "to": 110}, {"from": 40, "title": "CO_OCCURS_WITH", "to": 111}, {"from": 40, "title": "CO_OCCURS_WITH", "to": 112}, {"from": 40, "title": "CO_OCCURS_WITH", "to": 113}, {"from": 40, "title": "CO_OCCURS_WITH", "to": 114}, {"from": 40, "title": "CO_OCCURS_WITH", "to": 115}, {"from": 40, "title": "CO_OCCURS_WITH", "to": 116}, {"from": 40, "title": "CO_OCCURS_WITH", "to": 117}, {"from": 40, "title": "CO_OCCURS_WITH", "to": 118}, {"from": 40, "title": "CO_OCCURS_WITH", "to": 119}, {"from": 40, "title": "CO_OCCURS_WITH", "to": 120}, {"from": 40, "title": "CO_OCCURS_WITH", "to": 121}, {"from": 41, "title": "FOLLOWS_LEXICALLY", "to": 42}, {"from": 41, "title": "FOLLOWS_LEXICALLY", "to": 43}, {"from": 41, "title": "COMPOUND_ELEMENT_OF", "to": 102}, {"from": 42, "title": "FOLLOWS_LEXICALLY", "to": 43}, {"from": 42, "title": "FOLLOWS_LEXICALLY", "to": 44}, {"from": 42, "title": "FOLLOWS_LEXICALLY", "to": 45}, {"from": 42, "title": "COMPOUND_ELEMENT_OF", "to": 105}, {"from": 43, "title": "FOLLOWS_LEXICALLY", "to": 44}, {"from": 43, "title": "FOLLOWS_LEXICALLY", "to": 45}, {"from": 43, "title": "FOLLOWS_LEXICALLY", "to": 46}, {"from": 43, "title": "COMPOUND_ELEMENT_OF", "to": 106}, {"from": 44, "title": "FOLLOWS_LEXICALLY", "to": 45}, {"from": 44, "title": "FOLLOWS_LEXICALLY", "to": 46}, {"from": 44, "title": "FOLLOWS_LEXICALLY", "to": 47}, {"from": 44, "title": "COMPOUND_ELEMENT_OF", "to": 107}, {"from": 45, "title": "FOLLOWS_LEXICALLY", "to": 46}, {"from": 45, "title": "FOLLOWS_LEXICALLY", "to": 47}, {"from": 45, "title": "FOLLOWS_LEXICALLY", "to": 48}, {"from": 45, "title": "COMPOUND_ELEMENT_OF", "to": 107}, {"from": 46, "title": "FOLLOWS_LEXICALLY", "to": 47}, {"from": 46, "title": "FOLLOWS_LEXICALLY", "to": 48}, {"from": 46, "title": "FOLLOWS_LEXICALLY", "to": 49}, {"from": 46, "title": "COMPOUND_ELEMENT_OF", "to": 108}, {"from": 47, "title": "FOLLOWS_LEXICALLY", "to": 48}, {"from": 47, "title": "FOLLOWS_LEXICALLY", "to": 49}, {"from": 47, "title": "COMPOUND_ELEMENT_OF", "to": 109}, {"from": 48, "title": "FOLLOWS_LEXICALLY", "to": 49}, {"from": 48, "title": "FOLLOWS_LEXICALLY", "to": 50}, {"from": 48, "title": "COMPOUND_ELEMENT_OF", "to": 110}, {"from": 49, "title": "FOLLOWS_LEXICALLY", "to": 50}, {"from": 49, "title": "COMPOUND_ELEMENT_OF", "to": 111}, {"from": 50, "title": "COMPOUND_ELEMENT_OF", "to": 113}, {"from": 51, "title": "FOLLOWS_LEXICALLY", "to": 52}, {"from": 51, "title": "FOLLOWS_LEXICALLY", "to": 53}, {"from": 51, "title": "FOLLOWS_LEXICALLY", "to": 54}, {"from": 51, "title": "COMPOUND_ELEMENT_OF", "to": 65}, {"from": 51, "title": "COMPOUND_ELEMENT_OF", "to": 115}, {"from": 52, "title": "FOLLOWS_LEXICALLY", "to": 53}, {"from": 52, "title": "FOLLOWS_LEXICALLY", "to": 54}, {"from": 52, "title": "FOLLOWS_LEXICALLY", "to": 55}, {"from": 52, "title": "COMPOUND_ELEMENT_OF", "to": 116}, {"from": 53, "title": "FOLLOWS_LEXICALLY", "to": 54}, {"from": 53, "title": "FOLLOWS_LEXICALLY", "to": 55}, {"from": 53, "title": "FOLLOWS_LEXICALLY", "to": 56}, {"from": 53, "title": "COMPOUND_ELEMENT_OF", "to": 117}, {"from": 54, "title": "FOLLOWS_LEXICALLY", "to": 55}, {"from": 54, "title": "FOLLOWS_LEXICALLY", "to": 56}, {"from": 54, "title": "FOLLOWS_LEXICALLY", "to": 57}, {"from": 54, "title": "COMPOUND_ELEMENT_OF", "to": 117}, {"from": 55, "title": "FOLLOWS_LEXICALLY", "to": 56}, {"from": 55, "title": "FOLLOWS_LEXICALLY", "to": 57}, {"from": 55, "title": "FOLLOWS_LEXICALLY", "to": 58}, {"from": 55, "title": "COMPOUND_ELEMENT_OF", "to": 118}, {"from": 56, "title": "FOLLOWS_LEXICALLY", "to": 57}, {"from": 56, "title": "FOLLOWS_LEXICALLY", "to": 58}, {"from": 56, "title": "FOLLOWS_LEXICALLY", "to": 59}, {"from": 56, "title": "COMPOUND_ELEMENT_OF", "to": 118}, {"from": 57, "title": "FOLLOWS_LEXICALLY", "to": 58}, {"from": 57, "title": "FOLLOWS_LEXICALLY", "to": 59}, {"from": 57, "title": "FOLLOWS_LEXICALLY", "to": 60}, {"from": 57, "title": "COMPOUND_ELEMENT_OF", "to": 119}, {"from": 58, "title": "FOLLOWS_LEXICALLY", "to": 59}, {"from": 58, "title": "FOLLOWS_LEXICALLY", "to": 60}, {"from": 58, "title": "CO_OCCURS_WITH", "to": 63}, {"from": 58, "title": "CO_OCCURS_WITH", "to": 64}, {"from": 58, "title": "CO_OCCURS_WITH", "to": 65}, {"from": 58, "title": "CO_OCCURS_WITH", "to": 98}, {"from": 58, "title": "CO_OCCURS_WITH", "to": 99}, {"from": 58, "title": "CO_OCCURS_WITH", "to": 100}, {"from": 58, "title": "CO_OCCURS_WITH", "to": 101}, {"from": 58, "title": "CO_OCCURS_WITH", "to": 102}, {"from": 58, "title": "CO_OCCURS_WITH", "to": 103}, {"from": 58, "title": "CO_OCCURS_WITH", "to": 104}, {"from": 58, "title": "CO_OCCURS_WITH", "to": 105}, {"from": 58, "title": "CO_OCCURS_WITH", "to": 106}, {"from": 58, "title": "CO_OCCURS_WITH", "to": 107}, {"from": 58, "title": "CO_OCCURS_WITH", "to": 108}, {"from": 58, "title": "CO_OCCURS_WITH", "to": 109}, {"from": 58, "title": "CO_OCCURS_WITH", "to": 110}, {"from": 58, "title": "CO_OCCURS_WITH", "to": 111}, {"from": 58, "title": "CO_OCCURS_WITH", "to": 112}, {"from": 58, "title": "CO_OCCURS_WITH", "to": 113}, {"from": 58, "title": "CO_OCCURS_WITH", "to": 114}, {"from": 58, "title": "CO_OCCURS_WITH", "to": 115}, {"from": 58, "title": "CO_OCCURS_WITH", "to": 116}, {"from": 58, "title": "CO_OCCURS_WITH", "to": 117}, {"from": 58, "title": "CO_OCCURS_WITH", "to": 118}, {"from": 58, "title": "CO_OCCURS_WITH", "to": 119}, {"from": 58, "title": "CO_OCCURS_WITH", "to": 120}, {"from": 58, "title": "CO_OCCURS_WITH", "to": 121}, {"from": 59, "title": "FOLLOWS_LEXICALLY", "to": 60}, {"from": 59, "title": "COMPOUND_ELEMENT_OF", "to": 120}, {"from": 60, "title": "COMPOUND_ELEMENT_OF", "to": 121}, {"from": 61, "title": "CO_OCCURS_WITH", "to": 83}, {"from": 61, "title": "CO_OCCURS_WITH", "to": 84}, {"from": 61, "title": "CO_OCCURS_WITH", "to": 85}, {"from": 61, "title": "CO_OCCURS_WITH", "to": 86}, {"from": 61, "title": "CO_OCCURS_WITH", "to": 87}, {"from": 61, "title": "CO_OCCURS_WITH", "to": 88}, {"from": 61, "title": "CO_OCCURS_WITH", "to": 89}, {"from": 61, "title": "CO_OCCURS_WITH", "to": 90}, {"from": 61, "title": "CO_OCCURS_WITH", "to": 91}, {"from": 61, "title": "CO_OCCURS_WITH", "to": 62}, {"from": 62, "title": "CO_OCCURS_WITH", "to": 83}, {"from": 62, "title": "CO_OCCURS_WITH", "to": 84}, {"from": 62, "title": "CO_OCCURS_WITH", "to": 85}, {"from": 62, "title": "CO_OCCURS_WITH", "to": 86}, {"from": 62, "title": "CO_OCCURS_WITH", "to": 87}, {"from": 62, "title": "CO_OCCURS_WITH", "to": 88}, {"from": 62, "title": "CO_OCCURS_WITH", "to": 89}, {"from": 62, "title": "CO_OCCURS_WITH", "to": 90}, {"from": 62, "title": "CO_OCCURS_WITH", "to": 91}, {"from": 63, "title": "COMPOUND_ELEMENT_OF", "to": 63}, {"from": 63, "title": "CO_OCCURS_WITH", "to": 64}, {"from": 63, "title": "CO_OCCURS_WITH", "to": 65}, {"from": 63, "title": "CO_OCCURS_WITH", "to": 98}, {"from": 63, "title": "CO_OCCURS_WITH", "to": 99}, {"from": 63, "title": "CO_OCCURS_WITH", "to": 100}, {"from": 63, "title": "CO_OCCURS_WITH", "to": 101}, {"from": 63, "title": "CO_OCCURS_WITH", "to": 102}, {"from": 63, "title": "CO_OCCURS_WITH", "to": 103}, {"from": 63, "title": "CO_OCCURS_WITH", "to": 104}, {"from": 63, "title": "CO_OCCURS_WITH", "to": 105}, {"from": 63, "title": "CO_OCCURS_WITH", "to": 106}, {"from": 63, "title": "CO_OCCURS_WITH", "to": 107}, {"from": 63, "title": "CO_OCCURS_WITH", "to": 108}, {"from": 63, "title": "CO_OCCURS_WITH", "to": 109}, {"from": 63, "title": "CO_OCCURS_WITH", "to": 110}, {"from": 63, "title": "CO_OCCURS_WITH", "to": 111}, {"from": 63, "title": "CO_OCCURS_WITH", "to": 112}, {"from": 63, "title": "CO_OCCURS_WITH", "to": 113}, {"from": 63, "title": "CO_OCCURS_WITH", "to": 114}, {"from": 63, "title": "CO_OCCURS_WITH", "to": 115}, {"from": 63, "title": "CO_OCCURS_WITH", "to": 116}, {"from": 63, "title": "CO_OCCURS_WITH", "to": 117}, {"from": 63, "title": "CO_OCCURS_WITH", "to": 118}, {"from": 63, "title": "CO_OCCURS_WITH", "to": 119}, {"from": 63, "title": "CO_OCCURS_WITH", "to": 120}, {"from": 63, "title": "CO_OCCURS_WITH", "to": 121}, {"from": 63, "title": "CO_OCCURS_WITH", "to": 66}, {"from": 63, "title": "CO_OCCURS_WITH", "to": 67}, {"from": 63, "title": "CO_OCCURS_WITH", "to": 68}, {"from": 63, "title": "CO_OCCURS_WITH", "to": 69}, {"from": 63, "title": "CO_OCCURS_WITH", "to": 70}, {"from": 63, "title": "CO_OCCURS_WITH", "to": 71}, {"from": 63, "title": "CO_OCCURS_WITH", "to": 72}, {"from": 63, "title": "CO_OCCURS_WITH", "to": 73}, {"from": 63, "title": "CO_OCCURS_WITH", "to": 74}, {"from": 63, "title": "CO_OCCURS_WITH", "to": 75}, {"from": 64, "title": "COMPOUND_ELEMENT_OF", "to": 64}, {"from": 64, "title": "CO_OCCURS_WITH", "to": 65}, {"from": 64, "title": "CO_OCCURS_WITH", "to": 98}, {"from": 64, "title": "CO_OCCURS_WITH", "to": 99}, {"from": 64, "title": "CO_OCCURS_WITH", "to": 100}, {"from": 64, "title": "CO_OCCURS_WITH", "to": 101}, {"from": 64, "title": "CO_OCCURS_WITH", "to": 102}, {"from": 64, "title": "CO_OCCURS_WITH", "to": 103}, {"from": 64, "title": "CO_OCCURS_WITH", "to": 104}, {"from": 64, "title": "CO_OCCURS_WITH", "to": 105}, {"from": 64, "title": "CO_OCCURS_WITH", "to": 106}, {"from": 64, "title": "CO_OCCURS_WITH", "to": 107}, {"from": 64, "title": "CO_OCCURS_WITH", "to": 108}, {"from": 64, "title": "CO_OCCURS_WITH", "to": 109}, {"from": 64, "title": "CO_OCCURS_WITH", "to": 110}, {"from": 64, "title": "CO_OCCURS_WITH", "to": 111}, {"from": 64, "title": "CO_OCCURS_WITH", "to": 112}, {"from": 64, "title": "CO_OCCURS_WITH", "to": 113}, {"from": 64, "title": "CO_OCCURS_WITH", "to": 114}, {"from": 64, "title": "CO_OCCURS_WITH", "to": 115}, {"from": 64, "title": "CO_OCCURS_WITH", "to": 116}, {"from": 64, "title": "CO_OCCURS_WITH", "to": 117}, {"from": 64, "title": "CO_OCCURS_WITH", "to": 118}, {"from": 64, "title": "CO_OCCURS_WITH", "to": 119}, {"from": 64, "title": "CO_OCCURS_WITH", "to": 120}, {"from": 64, "title": "CO_OCCURS_WITH", "to": 121}, {"from": 65, "title": "CO_OCCURS_WITH", "to": 98}, {"from": 65, "title": "CO_OCCURS_WITH", "to": 99}, {"from": 65, "title": "CO_OCCURS_WITH", "to": 100}, {"from": 65, "title": "CO_OCCURS_WITH", "to": 101}, {"from": 65, "title": "CO_OCCURS_WITH", "to": 102}, {"from": 65, "title": "CO_OCCURS_WITH", "to": 103}, {"from": 65, "title": "CO_OCCURS_WITH", "to": 104}, {"from": 65, "title": "CO_OCCURS_WITH", "to": 105}, {"from": 65, "title": "CO_OCCURS_WITH", "to": 106}, {"from": 65, "title": "CO_OCCURS_WITH", "to": 107}, {"from": 65, "title": "CO_OCCURS_WITH", "to": 108}, {"from": 65, "title": "CO_OCCURS_WITH", "to": 109}, {"from": 65, "title": "CO_OCCURS_WITH", "to": 110}, {"from": 65, "title": "CO_OCCURS_WITH", "to": 111}, {"from": 65, "title": "CO_OCCURS_WITH", "to": 112}, {"from": 65, "title": "CO_OCCURS_WITH", "to": 113}, {"from": 65, "title": "CO_OCCURS_WITH", "to": 114}, {"from": 65, "title": "CO_OCCURS_WITH", "to": 115}, {"from": 65, "title": "CO_OCCURS_WITH", "to": 116}, {"from": 65, "title": "CO_OCCURS_WITH", "to": 117}, {"from": 65, "title": "CO_OCCURS_WITH", "to": 118}, {"from": 65, "title": "CO_OCCURS_WITH", "to": 119}, {"from": 65, "title": "CO_OCCURS_WITH", "to": 120}, {"from": 65, "title": "CO_OCCURS_WITH", "to": 121}, {"from": 66, "title": "COMPOUND_ELEMENT_OF", "to": 66}, {"from": 66, "title": "CO_OCCURS_WITH", "to": 67}, {"from": 66, "title": "CO_OCCURS_WITH", "to": 68}, {"from": 66, "title": "CO_OCCURS_WITH", "to": 69}, {"from": 66, "title": "CO_OCCURS_WITH", "to": 70}, {"from": 66, "title": "CO_OCCURS_WITH", "to": 71}, {"from": 66, "title": "CO_OCCURS_WITH", "to": 72}, {"from": 66, "title": "CO_OCCURS_WITH", "to": 73}, {"from": 66, "title": "CO_OCCURS_WITH", "to": 74}, {"from": 66, "title": "CO_OCCURS_WITH", "to": 75}, {"from": 67, "title": "CO_OCCURS_WITH", "to": 68}, {"from": 67, "title": "CO_OCCURS_WITH", "to": 69}, {"from": 67, "title": "CO_OCCURS_WITH", "to": 70}, {"from": 67, "title": "CO_OCCURS_WITH", "to": 71}, {"from": 67, "title": "CO_OCCURS_WITH", "to": 72}, {"from": 67, "title": "CO_OCCURS_WITH", "to": 73}, {"from": 67, "title": "CO_OCCURS_WITH", "to": 74}, {"from": 67, "title": "CO_OCCURS_WITH", "to": 75}, {"from": 68, "title": "COMPOUND_ELEMENT_OF", "to": 68}, {"from": 68, "title": "CO_OCCURS_WITH", "to": 69}, {"from": 68, "title": "CO_OCCURS_WITH", "to": 70}, {"from": 68, "title": "CO_OCCURS_WITH", "to": 71}, {"from": 68, "title": "CO_OCCURS_WITH", "to": 72}, {"from": 68, "title": "CO_OCCURS_WITH", "to": 73}, {"from": 68, "title": "CO_OCCURS_WITH", "to": 74}, {"from": 68, "title": "CO_OCCURS_WITH", "to": 75}, {"from": 69, "title": "CO_OCCURS_WITH", "to": 70}, {"from": 69, "title": "CO_OCCURS_WITH", "to": 71}, {"from": 69, "title": "CO_OCCURS_WITH", "to": 72}, {"from": 69, "title": "CO_OCCURS_WITH", "to": 73}, {"from": 69, "title": "CO_OCCURS_WITH", "to": 74}, {"from": 69, "title": "CO_OCCURS_WITH", "to": 75}, {"from": 70, "title": "COMPOUND_ELEMENT_OF", "to": 70}, {"from": 70, "title": "CO_OCCURS_WITH", "to": 71}, {"from": 70, "title": "CO_OCCURS_WITH", "to": 72}, {"from": 70, "title": "CO_OCCURS_WITH", "to": 73}, {"from": 70, "title": "CO_OCCURS_WITH", "to": 74}, {"from": 70, "title": "CO_OCCURS_WITH", "to": 75}, {"from": 71, "title": "CO_OCCURS_WITH", "to": 72}, {"from": 71, "title": "CO_OCCURS_WITH", "to": 73}, {"from": 71, "title": "CO_OCCURS_WITH", "to": 74}, {"from": 71, "title": "CO_OCCURS_WITH", "to": 75}, {"from": 72, "title": "COMPOUND_ELEMENT_OF", "to": 72}, {"from": 72, "title": "CO_OCCURS_WITH", "to": 73}, {"from": 72, "title": "CO_OCCURS_WITH", "to": 74}, {"from": 72, "title": "CO_OCCURS_WITH", "to": 75}, {"from": 73, "title": "CO_OCCURS_WITH", "to": 74}, {"from": 73, "title": "CO_OCCURS_WITH", "to": 75}, {"from": 74, "title": "CO_OCCURS_WITH", "to": 75}, {"from": 76, "title": "CO_OCCURS_WITH", "to": 77}, {"from": 77, "title": "COMPOUND_ELEMENT_OF", "to": 77}, {"from": 78, "title": "CO_OCCURS_WITH", "to": 80}, {"from": 78, "title": "CO_OCCURS_WITH", "to": 79}, {"from": 79, "title": "CO_OCCURS_WITH", "to": 80}, {"from": 81, "title": "CO_OCCURS_WITH", "to": 82}, {"from": 83, "title": "CO_OCCURS_WITH", "to": 84}, {"from": 83, "title": "CO_OCCURS_WITH", "to": 85}, {"from": 83, "title": "CO_OCCURS_WITH", "to": 86}, {"from": 83, "title": "CO_OCCURS_WITH", "to": 87}, {"from": 83, "title": "CO_OCCURS_WITH", "to": 88}, {"from": 83, "title": "CO_OCCURS_WITH", "to": 89}, {"from": 83, "title": "CO_OCCURS_WITH", "to": 90}, {"from": 83, "title": "CO_OCCURS_WITH", "to": 91}, {"from": 84, "title": "CO_OCCURS_WITH", "to": 85}, {"from": 84, "title": "CO_OCCURS_WITH", "to": 86}, {"from": 84, "title": "CO_OCCURS_WITH", "to": 87}, {"from": 84, "title": "CO_OCCURS_WITH", "to": 88}, {"from": 84, "title": "CO_OCCURS_WITH", "to": 89}, {"from": 84, "title": "CO_OCCURS_WITH", "to": 90}, {"from": 84, "title": "CO_OCCURS_WITH", "to": 91}, {"from": 85, "title": "CO_OCCURS_WITH", "to": 86}, {"from": 85, "title": "CO_OCCURS_WITH", "to": 87}, {"from": 85, "title": "CO_OCCURS_WITH", "to": 88}, {"from": 85, "title": "CO_OCCURS_WITH", "to": 89}, {"from": 85, "title": "CO_OCCURS_WITH", "to": 90}, {"from": 85, "title": "CO_OCCURS_WITH", "to": 91}, {"from": 86, "title": "CO_OCCURS_WITH", "to": 87}, {"from": 86, "title": "CO_OCCURS_WITH", "to": 88}, {"from": 86, "title": "CO_OCCURS_WITH", "to": 89}, {"from": 86, "title": "CO_OCCURS_WITH", "to": 90}, {"from": 86, "title": "CO_OCCURS_WITH", "to": 91}, {"from": 87, "title": "CO_OCCURS_WITH", "to": 88}, {"from": 87, "title": "CO_OCCURS_WITH", "to": 89}, {"from": 87, "title": "CO_OCCURS_WITH", "to": 90}, {"from": 87, "title": "CO_OCCURS_WITH", "to": 91}, {"from": 88, "title": "CO_OCCURS_WITH", "to": 89}, {"from": 88, "title": "CO_OCCURS_WITH", "to": 90}, {"from": 88, "title": "CO_OCCURS_WITH", "to": 91}, {"from": 89, "title": "CO_OCCURS_WITH", "to": 90}, {"from": 89, "title": "CO_OCCURS_WITH", "to": 91}, {"from": 90, "title": "CO_OCCURS_WITH", "to": 91}, {"from": 92, "title": "CO_OCCURS_WITH", "to": 96}, {"from": 92, "title": "CO_OCCURS_WITH", "to": 97}, {"from": 92, "title": "CO_OCCURS_WITH", "to": 94}, {"from": 92, "title": "CO_OCCURS_WITH", "to": 93}, {"from": 92, "title": "CO_OCCURS_WITH", "to": 95}, {"from": 93, "title": "CO_OCCURS_WITH", "to": 96}, {"from": 93, "title": "CO_OCCURS_WITH", "to": 97}, {"from": 93, "title": "CO_OCCURS_WITH", "to": 94}, {"from": 93, "title": "CO_OCCURS_WITH", "to": 95}, {"from": 94, "title": "CO_OCCURS_WITH", "to": 96}, {"from": 94, "title": "CO_OCCURS_WITH", "to": 97}, {"from": 94, "title": "CO_OCCURS_WITH", "to": 95}, {"from": 95, "title": "CO_OCCURS_WITH", "to": 96}, {"from": 95, "title": "CO_OCCURS_WITH", "to": 97}, {"from": 96, "title": "CO_OCCURS_WITH", "to": 97}, {"from": 98, "title": "CO_OCCURS_WITH", "to": 99}, {"from": 98, "title": "CO_OCCURS_WITH", "to": 100}, {"from": 98, "title": "CO_OCCURS_WITH", "to": 101}, {"from": 98, "title": "CO_OCCURS_WITH", "to": 102}, {"from": 98, "title": "CO_OCCURS_WITH", "to": 103}, {"from": 98, "title": "CO_OCCURS_WITH", "to": 104}, {"from": 98, "title": "CO_OCCURS_WITH", "to": 105}, {"from": 98, "title": "CO_OCCURS_WITH", "to": 106}, {"from": 98, "title": "CO_OCCURS_WITH", "to": 107}, {"from": 98, "title": "CO_OCCURS_WITH", "to": 108}, {"from": 98, "title": "CO_OCCURS_WITH", "to": 109}, {"from": 98, "title": "CO_OCCURS_WITH", "to": 110}, {"from": 98, "title": "CO_OCCURS_WITH", "to": 111}, {"from": 98, "title": "CO_OCCURS_WITH", "to": 112}, {"from": 98, "title": "CO_OCCURS_WITH", "to": 113}, {"from": 98, "title": "CO_OCCURS_WITH", "to": 114}, {"from": 98, "title": "CO_OCCURS_WITH", "to": 115}, {"from": 98, "title": "CO_OCCURS_WITH", "to": 116}, {"from": 98, "title": "CO_OCCURS_WITH", "to": 117}, {"from": 98, "title": "CO_OCCURS_WITH", "to": 118}, {"from": 98, "title": "CO_OCCURS_WITH", "to": 119}, {"from": 98, "title": "CO_OCCURS_WITH", "to": 120}, {"from": 98, "title": "CO_OCCURS_WITH", "to": 121}, {"from": 99, "title": "CO_OCCURS_WITH", "to": 100}, {"from": 99, "title": "CO_OCCURS_WITH", "to": 101}, {"from": 99, "title": "CO_OCCURS_WITH", "to": 102}, {"from": 99, "title": "CO_OCCURS_WITH", "to": 103}, {"from": 99, "title": "CO_OCCURS_WITH", "to": 104}, {"from": 99, "title": "CO_OCCURS_WITH", "to": 105}, {"from": 99, "title": "CO_OCCURS_WITH", "to": 106}, {"from": 99, "title": "CO_OCCURS_WITH", "to": 107}, {"from": 99, "title": "CO_OCCURS_WITH", "to": 108}, {"from": 99, "title": "CO_OCCURS_WITH", "to": 109}, {"from": 99, "title": "CO_OCCURS_WITH", "to": 110}, {"from": 99, "title": "CO_OCCURS_WITH", "to": 111}, {"from": 99, "title": "CO_OCCURS_WITH", "to": 112}, {"from": 99, "title": "CO_OCCURS_WITH", "to": 113}, {"from": 99, "title": "CO_OCCURS_WITH", "to": 114}, {"from": 99, "title": "CO_OCCURS_WITH", "to": 115}, {"from": 99, "title": "CO_OCCURS_WITH", "to": 116}, {"from": 99, "title": "CO_OCCURS_WITH", "to": 117}, {"from": 99, "title": "CO_OCCURS_WITH", "to": 118}, {"from": 99, "title": "CO_OCCURS_WITH", "to": 119}, {"from": 99, "title": "CO_OCCURS_WITH", "to": 120}, {"from": 99, "title": "CO_OCCURS_WITH", "to": 121}, {"from": 100, "title": "CO_OCCURS_WITH", "to": 101}, {"from": 100, "title": "CO_OCCURS_WITH", "to": 102}, {"from": 100, "title": "CO_OCCURS_WITH", "to": 103}, {"from": 100, "title": "CO_OCCURS_WITH", "to": 104}, {"from": 100, "title": "CO_OCCURS_WITH", "to": 105}, {"from": 100, "title": "CO_OCCURS_WITH", "to": 106}, {"from": 100, "title": "CO_OCCURS_WITH", "to": 107}, {"from": 100, "title": "CO_OCCURS_WITH", "to": 108}, {"from": 100, "title": "CO_OCCURS_WITH", "to": 109}, {"from": 100, "title": "CO_OCCURS_WITH", "to": 110}, {"from": 100, "title": "CO_OCCURS_WITH", "to": 111}, {"from": 100, "title": "CO_OCCURS_WITH", "to": 112}, {"from": 100, "title": "CO_OCCURS_WITH", "to": 113}, {"from": 100, "title": "CO_OCCURS_WITH", "to": 114}, {"from": 100, "title": "CO_OCCURS_WITH", "to": 115}, {"from": 100, "title": "CO_OCCURS_WITH", "to": 116}, {"from": 100, "title": "CO_OCCURS_WITH", "to": 117}, {"from": 100, "title": "CO_OCCURS_WITH", "to": 118}, {"from": 100, "title": "CO_OCCURS_WITH", "to": 119}, {"from": 100, "title": "CO_OCCURS_WITH", "to": 120}, {"from": 100, "title": "CO_OCCURS_WITH", "to": 121}, {"from": 101, "title": "CO_OCCURS_WITH", "to": 102}, {"from": 101, "title": "CO_OCCURS_WITH", "to": 103}, {"from": 101, "title": "CO_OCCURS_WITH", "to": 104}, {"from": 101, "title": "CO_OCCURS_WITH", "to": 105}, {"from": 101, "title": "CO_OCCURS_WITH", "to": 106}, {"from": 101, "title": "CO_OCCURS_WITH", "to": 107}, {"from": 101, "title": "CO_OCCURS_WITH", "to": 108}, {"from": 101, "title": "CO_OCCURS_WITH", "to": 109}, {"from": 101, "title": "CO_OCCURS_WITH", "to": 110}, {"from": 101, "title": "CO_OCCURS_WITH", "to": 111}, {"from": 101, "title": "CO_OCCURS_WITH", "to": 112}, {"from": 101, "title": "CO_OCCURS_WITH", "to": 113}, {"from": 101, "title": "CO_OCCURS_WITH", "to": 114}, {"from": 101, "title": "CO_OCCURS_WITH", "to": 115}, {"from": 101, "title": "CO_OCCURS_WITH", "to": 116}, {"from": 101, "title": "CO_OCCURS_WITH", "to": 117}, {"from": 101, "title": "CO_OCCURS_WITH", "to": 118}, {"from": 101, "title": "CO_OCCURS_WITH", "to": 119}, {"from": 101, "title": "CO_OCCURS_WITH", "to": 120}, {"from": 101, "title": "CO_OCCURS_WITH", "to": 121}, {"from": 102, "title": "CO_OCCURS_WITH", "to": 103}, {"from": 102, "title": "CO_OCCURS_WITH", "to": 104}, {"from": 102, "title": "CO_OCCURS_WITH", "to": 105}, {"from": 102, "title": "CO_OCCURS_WITH", "to": 106}, {"from": 102, "title": "CO_OCCURS_WITH", "to": 107}, {"from": 102, "title": "CO_OCCURS_WITH", "to": 108}, {"from": 102, "title": "CO_OCCURS_WITH", "to": 109}, {"from": 102, "title": "CO_OCCURS_WITH", "to": 110}, {"from": 102, "title": "CO_OCCURS_WITH", "to": 111}, {"from": 102, "title": "CO_OCCURS_WITH", "to": 112}, {"from": 102, "title": "CO_OCCURS_WITH", "to": 113}, {"from": 102, "title": "CO_OCCURS_WITH", "to": 114}, {"from": 102, "title": "CO_OCCURS_WITH", "to": 115}, {"from": 102, "title": "CO_OCCURS_WITH", "to": 116}, {"from": 102, "title": "CO_OCCURS_WITH", "to": 117}, {"from": 102, "title": "CO_OCCURS_WITH", "to": 118}, {"from": 102, "title": "CO_OCCURS_WITH", "to": 119}, {"from": 102, "title": "CO_OCCURS_WITH", "to": 120}, {"from": 102, "title": "CO_OCCURS_WITH", "to": 121}, {"from": 103, "title": "CO_OCCURS_WITH", "to": 104}, {"from": 103, "title": "CO_OCCURS_WITH", "to": 105}, {"from": 103, "title": "CO_OCCURS_WITH", "to": 106}, {"from": 103, "title": "CO_OCCURS_WITH", "to": 107}, {"from": 103, "title": "CO_OCCURS_WITH", "to": 108}, {"from": 103, "title": "CO_OCCURS_WITH", "to": 109}, {"from": 103, "title": "CO_OCCURS_WITH", "to": 110}, {"from": 103, "title": "CO_OCCURS_WITH", "to": 111}, {"from": 103, "title": "CO_OCCURS_WITH", "to": 112}, {"from": 103, "title": "CO_OCCURS_WITH", "to": 113}, {"from": 103, "title": "CO_OCCURS_WITH", "to": 114}, {"from": 103, "title": "CO_OCCURS_WITH", "to": 115}, {"from": 103, "title": "CO_OCCURS_WITH", "to": 116}, {"from": 103, "title": "CO_OCCURS_WITH", "to": 117}, {"from": 103, "title": "CO_OCCURS_WITH", "to": 118}, {"from": 103, "title": "CO_OCCURS_WITH", "to": 119}, {"from": 103, "title": "CO_OCCURS_WITH", "to": 120}, {"from": 103, "title": "CO_OCCURS_WITH", "to": 121}, {"from": 104, "title": "COMPOUND_ELEMENT_OF", "to": 104}, {"from": 104, "title": "CO_OCCURS_WITH", "to": 105}, {"from": 104, "title": "CO_OCCURS_WITH", "to": 106}, {"from": 104, "title": "CO_OCCURS_WITH", "to": 107}, {"from": 104, "title": "CO_OCCURS_WITH", "to": 108}, {"from": 104, "title": "CO_OCCURS_WITH", "to": 109}, {"from": 104, "title": "CO_OCCURS_WITH", "to": 110}, {"from": 104, "title": "CO_OCCURS_WITH", "to": 111}, {"from": 104, "title": "CO_OCCURS_WITH", "to": 112}, {"from": 104, "title": "CO_OCCURS_WITH", "to": 113}, {"from": 104, "title": "CO_OCCURS_WITH", "to": 114}, {"from": 104, "title": "CO_OCCURS_WITH", "to": 115}, {"from": 104, "title": "CO_OCCURS_WITH", "to": 116}, {"from": 104, "title": "CO_OCCURS_WITH", "to": 117}, {"from": 104, "title": "CO_OCCURS_WITH", "to": 118}, {"from": 104, "title": "CO_OCCURS_WITH", "to": 119}, {"from": 104, "title": "CO_OCCURS_WITH", "to": 120}, {"from": 104, "title": "CO_OCCURS_WITH", "to": 121}, {"from": 105, "title": "CO_OCCURS_WITH", "to": 106}, {"from": 105, "title": "CO_OCCURS_WITH", "to": 107}, {"from": 105, "title": "CO_OCCURS_WITH", "to": 108}, {"from": 105, "title": "CO_OCCURS_WITH", "to": 109}, {"from": 105, "title": "CO_OCCURS_WITH", "to": 110}, {"from": 105, "title": "CO_OCCURS_WITH", "to": 111}, {"from": 105, "title": "CO_OCCURS_WITH", "to": 112}, {"from": 105, "title": "CO_OCCURS_WITH", "to": 113}, {"from": 105, "title": "CO_OCCURS_WITH", "to": 114}, {"from": 105, "title": "CO_OCCURS_WITH", "to": 115}, {"from": 105, "title": "CO_OCCURS_WITH", "to": 116}, {"from": 105, "title": "CO_OCCURS_WITH", "to": 117}, {"from": 105, "title": "CO_OCCURS_WITH", "to": 118}, {"from": 105, "title": "CO_OCCURS_WITH", "to": 119}, {"from": 105, "title": "CO_OCCURS_WITH", "to": 120}, {"from": 105, "title": "CO_OCCURS_WITH", "to": 121}, {"from": 106, "title": "CO_OCCURS_WITH", "to": 107}, {"from": 106, "title": "CO_OCCURS_WITH", "to": 108}, {"from": 106, "title": "CO_OCCURS_WITH", "to": 109}, {"from": 106, "title": "CO_OCCURS_WITH", "to": 110}, {"from": 106, "title": "CO_OCCURS_WITH", "to": 111}, {"from": 106, "title": "CO_OCCURS_WITH", "to": 112}, {"from": 106, "title": "CO_OCCURS_WITH", "to": 113}, {"from": 106, "title": "CO_OCCURS_WITH", "to": 114}, {"from": 106, "title": "CO_OCCURS_WITH", "to": 115}, {"from": 106, "title": "CO_OCCURS_WITH", "to": 116}, {"from": 106, "title": "CO_OCCURS_WITH", "to": 117}, {"from": 106, "title": "CO_OCCURS_WITH", "to": 118}, {"from": 106, "title": "CO_OCCURS_WITH", "to": 119}, {"from": 106, "title": "CO_OCCURS_WITH", "to": 120}, {"from": 106, "title": "CO_OCCURS_WITH", "to": 121}, {"from": 107, "title": "CO_OCCURS_WITH", "to": 108}, {"from": 107, "title": "CO_OCCURS_WITH", "to": 109}, {"from": 107, "title": "CO_OCCURS_WITH", "to": 110}, {"from": 107, "title": "CO_OCCURS_WITH", "to": 111}, {"from": 107, "title": "CO_OCCURS_WITH", "to": 112}, {"from": 107, "title": "CO_OCCURS_WITH", "to": 113}, {"from": 107, "title": "CO_OCCURS_WITH", "to": 114}, {"from": 107, "title": "CO_OCCURS_WITH", "to": 115}, {"from": 107, "title": "CO_OCCURS_WITH", "to": 116}, {"from": 107, "title": "CO_OCCURS_WITH", "to": 117}, {"from": 107, "title": "CO_OCCURS_WITH", "to": 118}, {"from": 107, "title": "CO_OCCURS_WITH", "to": 119}, {"from": 107, "title": "CO_OCCURS_WITH", "to": 120}, {"from": 107, "title": "CO_OCCURS_WITH", "to": 121}, {"from": 108, "title": "CO_OCCURS_WITH", "to": 109}, {"from": 108, "title": "CO_OCCURS_WITH", "to": 110}, {"from": 108, "title": "CO_OCCURS_WITH", "to": 111}, {"from": 108, "title": "CO_OCCURS_WITH", "to": 112}, {"from": 108, "title": "CO_OCCURS_WITH", "to": 113}, {"from": 108, "title": "CO_OCCURS_WITH", "to": 114}, {"from": 108, "title": "CO_OCCURS_WITH", "to": 115}, {"from": 108, "title": "CO_OCCURS_WITH", "to": 116}, {"from": 108, "title": "CO_OCCURS_WITH", "to": 117}, {"from": 108, "title": "CO_OCCURS_WITH", "to": 118}, {"from": 108, "title": "CO_OCCURS_WITH", "to": 119}, {"from": 108, "title": "CO_OCCURS_WITH", "to": 120}, {"from": 108, "title": "CO_OCCURS_WITH", "to": 121}, {"from": 109, "title": "CO_OCCURS_WITH", "to": 110}, {"from": 109, "title": "CO_OCCURS_WITH", "to": 111}, {"from": 109, "title": "CO_OCCURS_WITH", "to": 112}, {"from": 109, "title": "CO_OCCURS_WITH", "to": 113}, {"from": 109, "title": "CO_OCCURS_WITH", "to": 114}, {"from": 109, "title": "CO_OCCURS_WITH", "to": 115}, {"from": 109, "title": "CO_OCCURS_WITH", "to": 116}, {"from": 109, "title": "CO_OCCURS_WITH", "to": 117}, {"from": 109, "title": "CO_OCCURS_WITH", "to": 118}, {"from": 109, "title": "CO_OCCURS_WITH", "to": 119}, {"from": 109, "title": "CO_OCCURS_WITH", "to": 120}, {"from": 109, "title": "CO_OCCURS_WITH", "to": 121}, {"from": 110, "title": "CO_OCCURS_WITH", "to": 111}, {"from": 110, "title": "CO_OCCURS_WITH", "to": 112}, {"from": 110, "title": "CO_OCCURS_WITH", "to": 113}, {"from": 110, "title": "CO_OCCURS_WITH", "to": 114}, {"from": 110, "title": "CO_OCCURS_WITH", "to": 115}, {"from": 110, "title": "CO_OCCURS_WITH", "to": 116}, {"from": 110, "title": "CO_OCCURS_WITH", "to": 117}, {"from": 110, "title": "CO_OCCURS_WITH", "to": 118}, {"from": 110, "title": "CO_OCCURS_WITH", "to": 119}, {"from": 110, "title": "CO_OCCURS_WITH", "to": 120}, {"from": 110, "title": "CO_OCCURS_WITH", "to": 121}, {"from": 111, "title": "CO_OCCURS_WITH", "to": 112}, {"from": 111, "title": "CO_OCCURS_WITH", "to": 113}, {"from": 111, "title": "CO_OCCURS_WITH", "to": 114}, {"from": 111, "title": "CO_OCCURS_WITH", "to": 115}, {"from": 111, "title": "CO_OCCURS_WITH", "to": 116}, {"from": 111, "title": "CO_OCCURS_WITH", "to": 117}, {"from": 111, "title": "CO_OCCURS_WITH", "to": 118}, {"from": 111, "title": "CO_OCCURS_WITH", "to": 119}, {"from": 111, "title": "CO_OCCURS_WITH", "to": 120}, {"from": 111, "title": "CO_OCCURS_WITH", "to": 121}, {"from": 112, "title": "CO_OCCURS_WITH", "to": 113}, {"from": 112, "title": "CO_OCCURS_WITH", "to": 114}, {"from": 112, "title": "CO_OCCURS_WITH", "to": 115}, {"from": 112, "title": "CO_OCCURS_WITH", "to": 116}, {"from": 112, "title": "CO_OCCURS_WITH", "to": 117}, {"from": 112, "title": "CO_OCCURS_WITH", "to": 118}, {"from": 112, "title": "CO_OCCURS_WITH", "to": 119}, {"from": 112, "title": "CO_OCCURS_WITH", "to": 120}, {"from": 112, "title": "CO_OCCURS_WITH", "to": 121}, {"from": 113, "title": "CO_OCCURS_WITH", "to": 114}, {"from": 113, "title": "CO_OCCURS_WITH", "to": 115}, {"from": 113, "title": "CO_OCCURS_WITH", "to": 116}, {"from": 113, "title": "CO_OCCURS_WITH", "to": 117}, {"from": 113, "title": "CO_OCCURS_WITH", "to": 118}, {"from": 113, "title": "CO_OCCURS_WITH", "to": 119}, {"from": 113, "title": "CO_OCCURS_WITH", "to": 120}, {"from": 113, "title": "CO_OCCURS_WITH", "to": 121}, {"from": 114, "title": "CO_OCCURS_WITH", "to": 115}, {"from": 114, "title": "CO_OCCURS_WITH", "to": 116}, {"from": 114, "title": "CO_OCCURS_WITH", "to": 117}, {"from": 114, "title": "CO_OCCURS_WITH", "to": 118}, {"from": 114, "title": "CO_OCCURS_WITH", "to": 119}, {"from": 114, "title": "CO_OCCURS_WITH", "to": 120}, {"from": 114, "title": "CO_OCCURS_WITH", "to": 121}, {"from": 115, "title": "CO_OCCURS_WITH", "to": 116}, {"from": 115, "title": "CO_OCCURS_WITH", "to": 117}, {"from": 115, "title": "CO_OCCURS_WITH", "to": 118}, {"from": 115, "title": "CO_OCCURS_WITH", "to": 119}, {"from": 115, "title": "CO_OCCURS_WITH", "to": 120}, {"from": 115, "title": "CO_OCCURS_WITH", "to": 121}, {"from": 116, "title": "CO_OCCURS_WITH", "to": 117}, {"from": 116, "title": "CO_OCCURS_WITH", "to": 118}, {"from": 116, "title": "CO_OCCURS_WITH", "to": 119}, {"from": 116, "title": "CO_OCCURS_WITH", "to": 120}, {"from": 116, "title": "CO_OCCURS_WITH", "to": 121}, {"from": 117, "title": "CO_OCCURS_WITH", "to": 118}, {"from": 117, "title": "CO_OCCURS_WITH", "to": 119}, {"from": 117, "title": "CO_OCCURS_WITH", "to": 120}, {"from": 117, "title": "CO_OCCURS_WITH", "to": 121}, {"from": 118, "title": "CO_OCCURS_WITH", "to": 119}, {"from": 118, "title": "CO_OCCURS_WITH", "to": 120}, {"from": 118, "title": "CO_OCCURS_WITH", "to": 121}, {"from": 119, "title": "CO_OCCURS_WITH", "to": 120}, {"from": 119, "title": "CO_OCCURS_WITH", "to": 121}, {"from": 120, "title": "CO_OCCURS_WITH", "to": 121}]);
|
| 365 |
-
|
| 366 |
-
nodeColors = {};
|
| 367 |
-
allNodes = nodes.get({ returnType: "Object" });
|
| 368 |
-
for (nodeId in allNodes) {
|
| 369 |
-
nodeColors[nodeId] = allNodes[nodeId].color;
|
| 370 |
-
}
|
| 371 |
-
allEdges = edges.get({ returnType: "Object" });
|
| 372 |
-
// adding nodes and edges to the graph
|
| 373 |
-
data = {nodes: nodes, edges: edges};
|
| 374 |
-
|
| 375 |
-
var options = {
|
| 376 |
-
"configure": {
|
| 377 |
-
"enabled": false
|
| 378 |
-
},
|
| 379 |
-
"edges": {
|
| 380 |
-
"color": {
|
| 381 |
-
"inherit": true
|
| 382 |
-
},
|
| 383 |
-
"smooth": {
|
| 384 |
-
"enabled": true,
|
| 385 |
-
"type": "dynamic"
|
| 386 |
-
}
|
| 387 |
-
},
|
| 388 |
-
"interaction": {
|
| 389 |
-
"dragNodes": true,
|
| 390 |
-
"hideEdgesOnDrag": false,
|
| 391 |
-
"hideNodesOnDrag": false
|
| 392 |
-
},
|
| 393 |
-
"physics": {
|
| 394 |
-
"enabled": true,
|
| 395 |
-
"stabilization": {
|
| 396 |
-
"enabled": true,
|
| 397 |
-
"fit": true,
|
| 398 |
-
"iterations": 1000,
|
| 399 |
-
"onlyDynamicEdges": false,
|
| 400 |
-
"updateInterval": 50
|
| 401 |
-
}
|
| 402 |
-
}
|
| 403 |
-
};
|
| 404 |
-
|
| 405 |
-
|
| 406 |
-
|
| 407 |
-
|
| 408 |
-
|
| 409 |
-
|
| 410 |
-
network = new vis.Network(container, data, options);
|
| 411 |
-
|
| 412 |
-
|
| 413 |
-
|
| 414 |
-
|
| 415 |
-
|
| 416 |
-
|
| 417 |
-
|
| 418 |
-
|
| 419 |
-
|
| 420 |
-
network.on("stabilizationProgress", function(params) {
|
| 421 |
-
document.getElementById('loadingBar').removeAttribute("style");
|
| 422 |
-
var maxWidth = 496;
|
| 423 |
-
var minWidth = 20;
|
| 424 |
-
var widthFactor = params.iterations/params.total;
|
| 425 |
-
var width = Math.max(minWidth,maxWidth * widthFactor);
|
| 426 |
-
document.getElementById('bar').style.width = width + 'px';
|
| 427 |
-
document.getElementById('text').innerHTML = Math.round(widthFactor*100) + '%';
|
| 428 |
-
});
|
| 429 |
-
network.once("stabilizationIterationsDone", function() {
|
| 430 |
-
document.getElementById('text').innerHTML = '100%';
|
| 431 |
-
document.getElementById('bar').style.width = '496px';
|
| 432 |
-
document.getElementById('loadingBar').style.opacity = 0;
|
| 433 |
-
// really clean the dom element
|
| 434 |
-
setTimeout(function () {document.getElementById('loadingBar').style.display = 'none';}, 500);
|
| 435 |
-
});
|
| 436 |
-
|
| 437 |
-
|
| 438 |
-
return network;
|
| 439 |
-
|
| 440 |
-
}
|
| 441 |
-
drawGraph();
|
| 442 |
-
</script>
|
| 443 |
-
</body>
|
| 444 |
-
</html>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|