-
Notifications
You must be signed in to change notification settings - Fork 0
/
knowledge_graph.html
250 lines (194 loc) · 59.9 KB
/
knowledge_graph.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
<html>
<head>
<meta charset="utf-8">
<script src="lib/bindings/utils.js"></script>
<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" />
<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>
<center>
<h1></h1>
</center>
<!-- <link rel="stylesheet" href="../node_modules/vis/dist/vis.min.css" type="text/css" />
<script type="text/javascript" src="../node_modules/vis/dist/vis.js"> </script>-->
<link
href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta3/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-eOJMYsd53ii+scO/bJGFsiCZc+5NDVN2yr8+0RDqr0Ql0h+rP48ckxlpbzKgwra6"
crossorigin="anonymous"
/>
<script
src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta3/dist/js/bootstrap.bundle.min.js"
integrity="sha384-JEW9xMcG8R+pH31jmWH6WWP0WintQrMb4s7ZOdauHnUtxwoG2vI5DkLtS3qm9Ekf"
crossorigin="anonymous"
></script>
<center>
<h1></h1>
</center>
<style type="text/css">
#mynetwork {
width: 100%;
height: 600px;
background-color: #ffffff;
border: 1px solid lightgray;
position: relative;
float: left;
}
#loadingBar {
position:absolute;
top:0px;
left:0px;
width: 100%;
height: 600px;
background-color:rgba(200,200,200,0.8);
-webkit-transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-ms-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
transition: all 0.5s ease;
opacity:1;
}
#bar {
position:absolute;
top:0px;
left:0px;
width:20px;
height:20px;
margin:auto auto auto auto;
border-radius:11px;
border:2px solid rgba(30,30,30,0.05);
background: rgb(0, 173, 246); /* Old browsers */
box-shadow: 2px 0px 4px rgba(0,0,0,0.4);
}
#border {
position:absolute;
top:10px;
left:10px;
width:500px;
height:23px;
margin:auto auto auto auto;
box-shadow: 0px 0px 4px rgba(0,0,0,0.2);
border-radius:10px;
}
#text {
position:absolute;
top:8px;
left:530px;
width:30px;
height:50px;
margin:auto auto auto auto;
font-size:22px;
color: #000000;
}
div.outerBorder {
position:relative;
top:400px;
width:600px;
height:44px;
margin:auto auto auto auto;
border:8px solid rgba(0,0,0,0.1);
background: rgb(252,252,252); /* Old browsers */
background: -moz-linear-gradient(top, rgba(252,252,252,1) 0%, rgba(237,237,237,1) 100%); /* FF3.6+ */
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+ */
background: -webkit-linear-gradient(top, rgba(252,252,252,1) 0%,rgba(237,237,237,1) 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, rgba(252,252,252,1) 0%,rgba(237,237,237,1) 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top, rgba(252,252,252,1) 0%,rgba(237,237,237,1) 100%); /* IE10+ */
background: linear-gradient(to bottom, rgba(252,252,252,1) 0%,rgba(237,237,237,1) 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fcfcfc', endColorstr='#ededed',GradientType=0 ); /* IE6-9 */
border-radius:72px;
box-shadow: 0px 0px 10px rgba(0,0,0,0.2);
}
</style>
</head>
<body>
<div class="card" style="width: 100%">
<div id="mynetwork" class="card-body"></div>
</div>
<div id="loadingBar">
<div class="outerBorder">
<div id="text">0%</div>
<div id="border">
<div id="bar"></div>
</div>
</div>
</div>
<script type="text/javascript">
// initialize global variables.
var edges;
var nodes;
var allNodes;
var allEdges;
var nodeColors;
var originalNodes;
var network;
var container;
var options, data;
var filter = {
item : '',
property : '',
value : []
};
// This method is responsible for drawing the graph, returns the drawn network
function drawGraph() {
var container = document.getElementById('mynetwork');
// parsing and collecting nodes and edges from the python
nodes = new vis.DataSet([{"color": "#97c2fc", "id": "Germany", "label": "Germany", "shape": "dot", "size": 10, "title": "GPE"}, {"color": "#97c2fc", "id": "protect", "label": "protect", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "says", "label": "says", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "granted", "label": "granted", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "refused", "label": "refused", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "save", "label": "save", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "lead", "label": "lead", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "improve", "label": "improve", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "BMW", "label": "BMW", "shape": "dot", "size": 10, "title": "ORG"}, {"color": "#97c2fc", "id": "driving", "label": "driving", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Magdeburg", "label": "Magdeburg", "shape": "dot", "size": 10, "title": "GPE"}, {"color": "#97c2fc", "id": "Turns", "label": "Turns", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Israel", "label": "Israel", "shape": "dot", "size": 10, "title": "GPE"}, {"color": "#97c2fc", "id": "supports", "label": "supports", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "occupying", "label": "occupying", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Syria", "label": "Syria", "shape": "dot", "size": 10, "title": "GPE"}, {"color": "#97c2fc", "id": "annexing", "label": "annexing", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Muslims", "label": "Muslims", "shape": "dot", "size": 10, "title": "NORP"}, {"color": "#97c2fc", "id": "blame", "label": "blame", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "have", "label": "have", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "AfD", "label": "AfD", "shape": "dot", "size": 10, "title": "PERSON"}, {"color": "#97c2fc", "id": "condemn", "label": "condemn", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Jews", "label": "Jews", "shape": "dot", "size": 10, "title": "NORP"}, {"color": "#97c2fc", "id": "committed", "label": "committed", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "killing", "label": "killing", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "11", "label": "11", "shape": "dot", "size": 10, "title": "CARDINAL"}, {"color": "#97c2fc", "id": "killed", "label": "killed", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Christians", "label": "Christians", "shape": "dot", "size": 10, "title": "NORP"}, {"color": "#97c2fc", "id": "died", "label": "died", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Europe", "label": "Europe", "shape": "dot", "size": 10, "title": "LOC"}, {"color": "#97c2fc", "id": "survive", "label": "survive", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "invading", "label": "invading", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Arabs", "label": "Arabs", "shape": "dot", "size": 10, "title": "NORP"}, {"color": "#97c2fc", "id": "allowing", "label": "allowing", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "https://t.co/TBBw7l5Woi", "label": "https://t.co/TBBw7l5Woi", "shape": "dot", "size": 10, "title": "ORG"}, {"color": "#97c2fc", "id": "idealizes", "label": "idealizes", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Musk", "label": "Musk", "shape": "dot", "size": 10, "title": "PERSON"}, {"color": "#97c2fc", "id": "parroting", "label": "parroting", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "declares", "label": "declares", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "boosted", "label": "boosted", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "posted", "label": "posted", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "ExMuslims", "label": "ExMuslims", "shape": "dot", "size": 10, "title": "PERSON"}, {"color": "#97c2fc", "id": "seek", "label": "seek", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Lonewolf", "label": "Lonewolf", "shape": "dot", "size": 10, "title": "PERSON"}, {"color": "#97c2fc", "id": "attacked", "label": "attacked", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Canada", "label": "Canada", "shape": "dot", "size": 10, "title": "GPE"}, {"color": "#97c2fc", "id": "accepted", "label": "accepted", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "who", "label": "who", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "did", "label": "did", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "went", "label": "went", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "ran", "label": "ran", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "carried", "label": "carried", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "paying", "label": "paying", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "refuse", "label": "refuse", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "passed", "label": "passed", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "lived", "label": "lived", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "attack", "label": "attack", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "occurred", "label": "occurred", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "carry", "label": "carry", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "yesterdays", "label": "yesterdays", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "ramming", "label": "ramming", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "following", "label": "following", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "https://t.co/npCOpZ8Uwp", "label": "https://t.co/npCOpZ8Uwp", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "want", "label": "want", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "none", "label": "none", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Who", "label": "Who", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "radicalized", "label": "radicalized", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "him", "label": "him", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "extradite", "label": "extradite", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "known", "label": "known", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "hurting", "label": "hurting", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "terrorist", "label": "terrorist", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "turned", "label": "turned", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "it", "label": "it", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "kills", "label": "kills", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "goes", "label": "goes", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "worked", "label": "worked", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "happened", "label": "happened", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "\u2019s", "label": "\u2019s", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "stand", "label": "stand", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "what", "label": "what", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "told", "label": "told", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "appears", "label": "appears", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "lAbdulmohsen", "label": "lAbdulmohsen", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "that", "label": "that", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "travelled", "label": "travelled", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "took", "label": "took", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "s", "label": "s", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "unfolded", "label": "unfolded", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "He", "label": "He", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "fled", "label": "fled", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "repaid", "label": "repaid", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "left", "label": "left", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "wanted", "label": "wanted", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "asylum", "label": "asylum", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "demanded", "label": "demanded", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "which", "label": "which", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "seen", "label": "seen", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "favour", "label": "favour", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "massacre", "label": "massacre", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "committing", "label": "committing", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "crowd", "label": "crowd", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "take", "label": "take", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "market", "label": "market", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "visiting", "label": "visiting", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "attacker", "label": "attacker", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "I", "label": "I", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "fighting", "label": "fighting", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "say", "label": "say", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "issued", "label": "issued", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "offer", "label": "offer", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "comply", "label": "comply", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "believe", "label": "believe", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "knew", "label": "knew", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "suspected", "label": "suspected", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "confirm", "label": "confirm", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "enemy", "label": "enemy", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "lefty", "label": "lefty", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "responds", "label": "responds", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "organizations", "label": "organizations", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "protesting", "label": "protesting", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "account", "label": "account", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "identified", "label": "identified", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "ex", "label": "ex", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Seems", "label": "Seems", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "crime", "label": "crime", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "people", "label": "people", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "injuring", "label": "injuring", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "harass", "label": "harass", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "request", "label": "request", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "uproar", "label": "uproar", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "accounts", "label": "accounts", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "raised", "label": "raised", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "go", "label": "go", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "information", "label": "information", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "came", "label": "came", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "warning", "label": "warning", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "We", "label": "We", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "know", "label": "know", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "get", "label": "get", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "truth", "label": "truth", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "face", "label": "face", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "status", "label": "status", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "justice", "label": "justice", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "activist", "label": "activist", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "terrorists", "label": "terrorists", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "we", "label": "we", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "send", "label": "send", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "see", "label": "see", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "them", "label": "them", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "release", "label": "release", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "feed", "label": "feed", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "you", "label": "you", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "kill", "label": "kill", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "keep", "label": "keep", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "expect", "label": "expect", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "citizenship", "label": "citizenship", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "grant", "label": "grant", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "they", "label": "they", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "started", "label": "started", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "marched", "label": "marched", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "waging", "label": "waging", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "They", "label": "They", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "right", "label": "right", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "mouth", "label": "mouth", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "media", "label": "media", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "explained", "label": "explained", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "motivation", "label": "motivation", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "seems", "label": "seems", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "world", "label": "world", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Afd", "label": "Afd", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "What", "label": "What", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "gives", "label": "gives", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "this", "label": "this", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "come", "label": "come", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "attention", "label": "attention", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "persecution", "label": "persecution", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "fleeing", "label": "fleeing", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "religion", "label": "religion", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "separate", "label": "separate", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "has", "label": "has", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "concessions", "label": "concessions", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "demanding", "label": "demanding", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "fan", "label": "fan", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "plows", "label": "plows", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "NYPD", "label": "NYPD", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "deploys", "label": "deploys", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "assets", "label": "assets", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Scholz", "label": "Scholz", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "license", "label": "license", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "he", "label": "he", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "seemed", "label": "seemed", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "targeting", "label": "targeting", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "working", "label": "working", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "said", "label": "said", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "mentions", "label": "mentions", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "do", "label": "do", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "site", "label": "site", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "visit", "label": "visit", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "men", "label": "men", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "march", "label": "march", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "streets", "label": "streets", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "God", "label": "God", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "mercy", "label": "mercy", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "condolences", "label": "condolences", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "@elonmusk", "label": "@elonmusk", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "problem", "label": "problem", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Numbers", "label": "Numbers", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "increasing", "label": "increasing", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "\ud83c\udde9", "label": "\ud83c\udde9", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "https://t.co/m7CY2u6JMX", "label": "https://t.co/m7CY2u6JMX", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "place", "label": "place", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Minister", "label": "Minister", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "warned", "label": "warned", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "West", "label": "West", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Akbar", "label": "Akbar", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "chanting", "label": "chanting", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "flags", "label": "flags", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "fur", "label": "fur", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "post", "label": "post", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "doze", "label": "doze", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "injured", "label": "injured", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "pawhugs", "label": "pawhugs", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "headbops", "label": "headbops", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "girls", "label": "girls", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "smuggling", "label": "smuggling", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "extradition", "label": "extradition", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Arabia", "label": "Arabia", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Some", "label": "Some", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Terrorism", "label": "Terrorism", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "\u0027s", "label": "\u0027s", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "policy", "label": "policy", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "https://t.co/RZ098vYM82", "label": "https://t.co/RZ098vYM82", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "affiliated", "label": "affiliated", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "fanboy", "label": "fanboy", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "murderer", "label": "murderer", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "acted", "label": "acted", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "support", "label": "support", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "silence", "label": "silence", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "deafening", "label": "deafening", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Video", "label": "Video", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "shows", "label": "shows", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "police", "label": "police", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "detaining", "label": "detaining", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "suspect", "label": "suspect", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Authorities", "label": "Authorities", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "help", "label": "help", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "her", "label": "her", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "exposing", "label": "exposing", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Friends", "label": "Friends", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "shared", "label": "shared", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "activists", "label": "activists", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "bring", "label": "bring", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "distance", "label": "distance", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "authorities", "label": "authorities", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "theory", "label": "theory", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "aligns", "label": "aligns", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "This", "label": "This", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "make", "label": "make", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "It", "label": "It", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "surfaced", "label": "surfaced", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "narrative", "label": "narrative", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "traction", "label": "traction", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "gaining", "label": "gaining", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "survivors", "label": "survivors", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "endure", "label": "endure", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "effects", "label": "effects", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "continue", "label": "continue", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "devastation", "label": "devastation", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "cause", "label": "cause", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "protesters", "label": "protesters", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "war", "label": "war", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "YOU", "label": "YOU", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "NEED", "label": "NEED", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "PRESIDENT", "label": "PRESIDENT", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "HAVE", "label": "HAVE", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "LAW", "label": "LAW", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "ENFORCE", "label": "ENFORCE", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "@VickyRichterUSA", "label": "@VickyRichterUSA", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "speaks", "label": "speaks", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "shopping", "label": "shopping", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "doing", "label": "doing", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "joy", "label": "joy", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "polls", "label": "polls", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "sweep", "label": "sweep", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "us", "label": "us", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "sleeper", "label": "sleeper", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "decides", "label": "decides", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "car", "label": "car", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "drive", "label": "drive", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "individual", "label": "individual", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Abdulaziz", "label": "Abdulaziz", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "remained", "label": "remained", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "sympathizer", "label": "sympathizer", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "beeen", "label": "beeen", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "militant", "label": "militant", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "mind", "label": "mind", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "calm", "label": "calm", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "beheadings", "label": "beheadings", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Hypocrisy", "label": "Hypocrisy", "shape": "dot", "size": 10, "title": "PERSON"}, {"color": "#97c2fc", "id": "Terrorist", "label": "Terrorist", "shape": "dot", "size": 10, "title": "NORP"}, {"color": "#97c2fc", "id": "Christmas", "label": "Christmas", "shape": "dot", "size": 10, "title": "DATE"}, {"color": "#97c2fc", "id": "pro-Israel", "label": "pro-Israel", "shape": "dot", "size": 10, "title": "NORP"}, {"color": "#97c2fc", "id": "muslim", "label": "muslim", "shape": "dot", "size": 10, "title": "NORP"}, {"color": "#97c2fc", "id": "Zionism", "label": "Zionism", "shape": "dot", "size": 10, "title": "NORP"}, {"color": "#97c2fc", "id": "The Saudi Ex Muslim AfD", "label": "The Saudi Ex Muslim AfD", "shape": "dot", "size": 10, "title": "ORG"}, {"color": "#97c2fc", "id": "Islamist", "label": "Islamist", "shape": "dot", "size": 10, "title": "NORP"}, {"color": "#97c2fc", "id": "Third Worlder", "label": "Third Worlder", "shape": "dot", "size": 10, "title": "PERSON"}, {"color": "#97c2fc", "id": "Saudi Arabia", "label": "Saudi Arabia", "shape": "dot", "size": 10, "title": "GPE"}, {"color": "#97c2fc", "id": "AuslanderRaus", "label": "AuslanderRaus", "shape": "dot", "size": 10, "title": "ORG"}, {"color": "#97c2fc", "id": "German", "label": "German", "shape": "dot", "size": 10, "title": "NORP"}, {"color": "#97c2fc", "id": "TalibAlAbdulmohsen", "label": "TalibAlAbdulmohsen", "shape": "dot", "size": 10, "title": "PERSON"}, {"color": "#97c2fc", "id": "50-year-old", "label": "50-year-old", "shape": "dot", "size": 10, "title": "DATE"}, {"color": "#97c2fc", "id": "The Talib A-lAbdulmohsen", "label": "The Talib A-lAbdulmohsen", "shape": "dot", "size": 10, "title": "ORG"}, {"color": "#97c2fc", "id": "over 400 meters", "label": "over 400 meters", "shape": "dot", "size": 10, "title": "QUANTITY"}, {"color": "#97c2fc", "id": "anti-Muslim", "label": "anti-Muslim", "shape": "dot", "size": 10, "title": "NORP"}, {"color": "#97c2fc", "id": "Lebanon", "label": "Lebanon", "shape": "dot", "size": 10, "title": "GPE"}, {"color": "#97c2fc", "id": "Palestine", "label": "Palestine", "shape": "dot", "size": 10, "title": "GPE"}, {"color": "#97c2fc", "id": "Riyadh", "label": "Riyadh", "shape": "dot", "size": 10, "title": "GPE"}, {"color": "#97c2fc", "id": "today", "label": "today", "shape": "dot", "size": 10, "title": "DATE"}, {"color": "#97c2fc", "id": "70", "label": "70", "shape": "dot", "size": 10, "title": "CARDINAL"}, {"color": "#97c2fc", "id": "15", "label": "15", "shape": "dot", "size": 10, "title": "CARDINAL"}, {"color": "#97c2fc", "id": "ChristmasMarket", "label": "ChristmasMarket", "shape": "dot", "size": 10, "title": "ORG"}, {"color": "#97c2fc", "id": "Elon Musk", "label": "Elon Musk", "shape": "dot", "size": 10, "title": "PERSON"}, {"color": "#97c2fc", "id": "Taleb Al Abdulmohsen", "label": "Taleb Al Abdulmohsen", "shape": "dot", "size": 10, "title": "PERSON"}, {"color": "#97c2fc", "id": "Germany https://t.co/tM09PBqZKu Leftist", "label": "Germany https://t.co/tM09PBqZKu Leftist", "shape": "dot", "size": 10, "title": "ORG"}, {"color": "#97c2fc", "id": "pro-Palestinian", "label": "pro-Palestinian", "shape": "dot", "size": 10, "title": "NORP"}, {"color": "#97c2fc", "id": "German Muslim", "label": "German Muslim", "shape": "dot", "size": 10, "title": "NORP"}, {"color": "#97c2fc", "id": "Saudi Arabian", "label": "Saudi Arabian", "shape": "dot", "size": 10, "title": "NORP"}, {"color": "#97c2fc", "id": "Talib Al-Abdulmohsen", "label": "Talib Al-Abdulmohsen", "shape": "dot", "size": 10, "title": "ORG"}, {"color": "#97c2fc", "id": "Terroristattack", "label": "Terroristattack", "shape": "dot", "size": 10, "title": "PERSON"}, {"color": "#97c2fc", "id": "https://t.co/MCEf9kc9We Germany", "label": "https://t.co/MCEf9kc9We Germany", "shape": "dot", "size": 10, "title": "PERSON"}, {"color": "#97c2fc", "id": "Muslim", "label": "Muslim", "shape": "dot", "size": 10, "title": "NORP"}, {"color": "#97c2fc", "id": "Zionist", "label": "Zionist", "shape": "dot", "size": 10, "title": "NORP"}, {"color": "#97c2fc", "id": "#", "label": "#", "shape": "dot", "size": 10, "title": "CARDINAL"}, {"color": "#97c2fc", "id": "more than 60", "label": "more than 60", "shape": "dot", "size": 10, "title": "CARDINAL"}, {"color": "#97c2fc", "id": "Merkel", "label": "Merkel", "shape": "dot", "size": 10, "title": "PERSON"}, {"color": "#97c2fc", "id": "Clinton", "label": "Clinton", "shape": "dot", "size": 10, "title": "PERSON"}, {"color": "#97c2fc", "id": "9/11", "label": "9/11", "shape": "dot", "size": 10, "title": "CARDINAL"}, {"color": "#97c2fc", "id": "https://t.co/7jEWwMesRQ", "label": "https://t.co/7jEWwMesRQ", "shape": "dot", "size": 10, "title": "GPE"}, {"color": "#97c2fc", "id": "\ud83c\udde9\ud83c\uddea\ud83c\uddee", "label": "\ud83c\udde9\ud83c\uddea\ud83c\uddee", "shape": "dot", "size": 10, "title": "PERSON"}, {"color": "#97c2fc", "id": "Israeli", "label": "Israeli", "shape": "dot", "size": 10, "title": "NORP"}, {"color": "#97c2fc", "id": "tonight", "label": "tonight", "shape": "dot", "size": 10, "title": "TIME"}, {"color": "#97c2fc", "id": "first", "label": "first", "shape": "dot", "size": 10, "title": "ORDINAL"}, {"color": "#97c2fc", "id": "Mossad", "label": "Mossad", "shape": "dot", "size": 10, "title": "ORG"}, {"color": "#97c2fc", "id": "Islam", "label": "Islam", "shape": "dot", "size": 10, "title": "NORP"}, {"color": "#97c2fc", "id": "last night\u0027s", "label": "last night\u0027s", "shape": "dot", "size": 10, "title": "TIME"}, {"color": "#97c2fc", "id": "Saudi", "label": "Saudi", "shape": "dot", "size": 10, "title": "NORP"}, {"color": "#97c2fc", "id": "the Middle East", "label": "the Middle East", "shape": "dot", "size": 10, "title": "LOC"}, {"color": "#97c2fc", "id": "RIP \ud83d\udd6f\nVictims", "label": "RIP \ud83d\udd6f\nVictims", "shape": "dot", "size": 10, "title": "PRODUCT"}, {"color": "#97c2fc", "id": "No_to_terrorism", "label": "No_to_terrorism", "shape": "dot", "size": 10, "title": "PERSON"}, {"color": "#97c2fc", "id": "10", "label": "10", "shape": "dot", "size": 10, "title": "CARDINAL"}, {"color": "#97c2fc", "id": "BBC", "label": "BBC", "shape": "dot", "size": 10, "title": "ORG"}, {"color": "#97c2fc", "id": "https://t.co/Uw7aarDpkM", "label": "https://t.co/Uw7aarDpkM", "shape": "dot", "size": 10, "title": "GPE"}, {"color": "#97c2fc", "id": "the Pro-Israel \u0026amp", "label": "the Pro-Israel \u0026amp", "shape": "dot", "size": 10, "title": "ORG"}, {"color": "#97c2fc", "id": "Islamophobic", "label": "Islamophobic", "shape": "dot", "size": 10, "title": "ORG"}, {"color": "#97c2fc", "id": "ex-Muslim", "label": "ex-Muslim", "shape": "dot", "size": 10, "title": "NORP"}, {"color": "#97c2fc", "id": "ElonMusk", "label": "ElonMusk", "shape": "dot", "size": 10, "title": "MONEY"}, {"color": "#97c2fc", "id": "the Germany Terrorist Attack Suspect", "label": "the Germany Terrorist Attack Suspect", "shape": "dot", "size": 10, "title": "ORG"}, {"color": "#97c2fc", "id": "Aethist", "label": "Aethist", "shape": "dot", "size": 10, "title": "NORP"}, {"color": "#97c2fc", "id": "#Afd \u0026amp", "label": "#Afd \u0026amp", "shape": "dot", "size": 10, "title": "ORG"}, {"color": "#97c2fc", "id": "Tommy Robinson", "label": "Tommy Robinson", "shape": "dot", "size": 10, "title": "PERSON"}, {"color": "#97c2fc", "id": "Arab", "label": "Arab", "shape": "dot", "size": 10, "title": "NORP"}, {"color": "#97c2fc", "id": "Magdeburg https://t.co/PjSz6TybsB", "label": "Magdeburg https://t.co/PjSz6TybsB", "shape": "dot", "size": 10, "title": "PERSON"}, {"color": "#97c2fc", "id": "yesterday", "label": "yesterday", "shape": "dot", "size": 10, "title": "DATE"}, {"color": "#97c2fc", "id": "Christianity", "label": "Christianity", "shape": "dot", "size": 10, "title": "NORP"}, {"color": "#97c2fc", "id": "European", "label": "European", "shape": "dot", "size": 10, "title": "NORP"}, {"color": "#97c2fc", "id": "Sharia", "label": "Sharia", "shape": "dot", "size": 10, "title": "FAC"}, {"color": "#97c2fc", "id": "one", "label": "one", "shape": "dot", "size": 10, "title": "CARDINAL"}, {"color": "#97c2fc", "id": "\ud83e\udd21", "label": "\ud83e\udd21", "shape": "dot", "size": 10, "title": "CARDINAL"}, {"color": "#97c2fc", "id": "MAGA", "label": "MAGA", "shape": "dot", "size": 10, "title": "ORG"}, {"color": "#97c2fc", "id": "The same day", "label": "The same day", "shape": "dot", "size": 10, "title": "DATE"}, {"color": "#97c2fc", "id": "2", "label": "2", "shape": "dot", "size": 10, "title": "CARDINAL"}, {"color": "#97c2fc", "id": "Bryant Park", "label": "Bryant Park", "shape": "dot", "size": 10, "title": "FAC"}, {"color": "#97c2fc", "id": "New York City", "label": "New York City", "shape": "dot", "size": 10, "title": "GPE"}, {"color": "#97c2fc", "id": "https://t.co/zhrHT1P3l3 \ud83c\udde9", "label": "https://t.co/zhrHT1P3l3 \ud83c\udde9", "shape": "dot", "size": 10, "title": "ORG"}, {"color": "#97c2fc", "id": "Olaf Scholz", "label": "Olaf Scholz", "shape": "dot", "size": 10, "title": "PERSON"}, {"color": "#97c2fc", "id": "Deutschland", "label": "Deutschland", "shape": "dot", "size": 10, "title": "GPE"}, {"color": "#97c2fc", "id": "Anti-Islam", "label": "Anti-Islam", "shape": "dot", "size": 10, "title": "ORG"}, {"color": "#97c2fc", "id": "Pro-Isreal", "label": "Pro-Isreal", "shape": "dot", "size": 10, "title": "ORG"}, {"color": "#97c2fc", "id": "the minute", "label": "the minute", "shape": "dot", "size": 10, "title": "TIME"}, {"color": "#97c2fc", "id": "\ud83c\udde9\ud83c\uddea", "label": "\ud83c\udde9\ud83c\uddea", "shape": "dot", "size": 10, "title": "PERSON"}, {"color": "#97c2fc", "id": "7 years ago", "label": "7 years ago", "shape": "dot", "size": 10, "title": "DATE"}, {"color": "#97c2fc", "id": "UAE", "label": "UAE", "shape": "dot", "size": 10, "title": "ORG"}, {"color": "#97c2fc", "id": "Islamists", "label": "Islamists", "shape": "dot", "size": 10, "title": "NORP"}, {"color": "#97c2fc", "id": "less than a week", "label": "less than a week", "shape": "dot", "size": 10, "title": "DATE"}, {"color": "#97c2fc", "id": "Paddystinians", "label": "Paddystinians", "shape": "dot", "size": 10, "title": "NORP"}, {"color": "#97c2fc", "id": "dis pawful event x", "label": "dis pawful event x", "shape": "dot", "size": 10, "title": "ORG"}, {"color": "#97c2fc", "id": "Anti-Islamic", "label": "Anti-Islamic", "shape": "dot", "size": 10, "title": "NORP"}, {"color": "#97c2fc", "id": "2006", "label": "2006", "shape": "dot", "size": 10, "title": "DATE"}, {"color": "#97c2fc", "id": "Magdeburg https://t.co/IkJ43cMZEA", "label": "Magdeburg https://t.co/IkJ43cMZEA", "shape": "dot", "size": 10, "title": "PERSON"}, {"color": "#97c2fc", "id": "Angela Merkel", "label": "Angela Merkel", "shape": "dot", "size": 10, "title": "PERSON"}, {"color": "#97c2fc", "id": "2016", "label": "2016", "shape": "dot", "size": 10, "title": "DATE"}, {"color": "#97c2fc", "id": "at least two", "label": "at least two", "shape": "dot", "size": 10, "title": "CARDINAL"}, {"color": "#97c2fc", "id": "dozens", "label": "dozens", "shape": "dot", "size": 10, "title": "CARDINAL"}, {"color": "#97c2fc", "id": "Germany-", "label": "Germany-", "shape": "dot", "size": 10, "title": "PERSON"}, {"color": "#97c2fc", "id": "years", "label": "years", "shape": "dot", "size": 10, "title": "DATE"}, {"color": "#97c2fc", "id": "ExMuslim", "label": "ExMuslim", "shape": "dot", "size": 10, "title": "ORG"}, {"color": "#97c2fc", "id": "EU", "label": "EU", "shape": "dot", "size": 10, "title": "ORG"}, {"color": "#97c2fc", "id": "Anti-Israel", "label": "Anti-Israel", "shape": "dot", "size": 10, "title": "NORP"}, {"color": "#97c2fc", "id": "Trump", "label": "Trump", "shape": "dot", "size": 10, "title": "PERSON"}, {"color": "#97c2fc", "id": "@RealTomHoman", "label": "@RealTomHoman", "shape": "dot", "size": 10, "title": "FAC"}, {"color": "#97c2fc", "id": "AMFEST24", "label": "AMFEST24", "shape": "dot", "size": 10, "title": "PERSON"}, {"color": "#97c2fc", "id": "UK", "label": "UK", "shape": "dot", "size": 10, "title": "GPE"}, {"color": "#97c2fc", "id": "\ud83d\udca5", "label": "\ud83d\udca5", "shape": "dot", "size": 10, "title": "CARDINAL"}, {"color": "#97c2fc", "id": "Islamic", "label": "Islamic", "shape": "dot", "size": 10, "title": "NORP"}, {"color": "#97c2fc", "id": "the joy of Christmas", "label": "the joy of Christmas", "shape": "dot", "size": 10, "title": "DATE"}, {"color": "#97c2fc", "id": "ex-Muslim AfD", "label": "ex-Muslim AfD", "shape": "dot", "size": 10, "title": "ORG"}, {"color": "#97c2fc", "id": "Germans", "label": "Germans", "shape": "dot", "size": 10, "title": "NORP"}, {"color": "#97c2fc", "id": "Omar Abdulaziz @oamaz7", "label": "Omar Abdulaziz @oamaz7", "shape": "dot", "size": 10, "title": "PERSON"}, {"color": "#97c2fc", "id": "Montreal", "label": "Montreal", "shape": "dot", "size": 10, "title": "GPE"}, {"color": "#97c2fc", "id": "Taleb Al-Abdulmohsen", "label": "Taleb Al-Abdulmohsen", "shape": "dot", "size": 10, "title": "PERSON"}, {"color": "#97c2fc", "id": "Omar Abdulaziz", "label": "Omar Abdulaziz", "shape": "dot", "size": 10, "title": "PERSON"}, {"color": "#97c2fc", "id": "ISIS", "label": "ISIS", "shape": "dot", "size": 10, "title": "ORG"}, {"color": "#97c2fc", "id": "2014", "label": "2014", "shape": "dot", "size": 10, "title": "DATE"}, {"color": "#97c2fc", "id": "the afternoon", "label": "the afternoon", "shape": "dot", "size": 10, "title": "TIME"}, {"color": "#97c2fc", "id": "Abu Bakr Al-Baghdadi", "label": "Abu Bakr Al-Baghdadi", "shape": "dot", "size": 10, "title": "PERSON"}, {"color": "#97c2fc", "id": "Jihad", "label": "Jihad", "shape": "dot", "size": 10, "title": "ORG"}, {"color": "#97c2fc", "id": "American", "label": "American", "shape": "dot", "size": 10, "title": "NORP"}, {"color": "#97c2fc", "id": "a Permanent Resident", "label": "a Permanent Resident", "shape": "dot", "size": 10, "title": "ORG"}, {"color": "#97c2fc", "id": "2017", "label": "2017", "shape": "dot", "size": 10, "title": "DATE"}, {"color": "#97c2fc", "id": "the last 24 hours", "label": "the last 24 hours", "shape": "dot", "size": 10, "title": "TIME"}, {"color": "#97c2fc", "id": "Canadian", "label": "Canadian", "shape": "dot", "size": 10, "title": "NORP"}, {"color": "#97c2fc", "id": "@Columbuos \u0026 @PingouinHeureux", "label": "@Columbuos \u0026 @PingouinHeureux", "shape": "dot", "size": 10, "title": "ORG"}, {"color": "#97c2fc", "id": "@SPVM", "label": "@SPVM", "shape": "dot", "size": 10, "title": "ORG"}, {"color": "#97c2fc", "id": "@csiscanada @Nat_Div_RCMP @rcmpgrcpolice @rcmpqc", "label": "@csiscanada @Nat_Div_RCMP @rcmpgrcpolice @rcmpqc", "shape": "dot", "size": 10, "title": "ORG"}, {"color": "#97c2fc", "id": "@hassinhadi", "label": "@hassinhadi", "shape": "dot", "size": 10, "title": "GPE"}, {"color": "#97c2fc", "id": "@bnaibrithcanada", "label": "@bnaibrithcanada", "shape": "dot", "size": 10, "title": "ORG"}, {"color": "#97c2fc", "id": "@HonestRepCanada", "label": "@HonestRepCanada", "shape": "dot", "size": 10, "title": "NORP"}]);
edges = new vis.DataSet([{"from": "Germany", "to": "protect", "width": 1}, {"from": "Germany", "to": "says", "width": 1}, {"from": "Germany", "to": "granted", "width": 1}, {"from": "Germany", "to": "refused", "width": 1}, {"from": "Germany", "to": "save", "width": 1}, {"from": "Germany", "to": "lead", "width": 1}, {"from": "Germany", "to": "improve", "width": 1}, {"from": "BMW", "to": "driving", "width": 1}, {"from": "Magdeburg", "to": "Turns", "width": 1}, {"from": "Israel", "to": "supports", "width": 1}, {"from": "Israel", "to": "occupying", "width": 1}, {"from": "Syria", "to": "annexing", "width": 1}, {"from": "Muslims", "to": "blame", "width": 1}, {"from": "Muslims", "to": "have", "width": 1}, {"from": "AfD", "to": "save", "width": 1}, {"from": "AfD", "to": "supports", "width": 1}, {"from": "AfD", "to": "condemn", "width": 1}, {"from": "Jews", "to": "committed", "width": 1}, {"from": "Jews", "to": "killing", "width": 1}, {"from": "11", "to": "killed", "width": 1}, {"from": "Christians", "to": "died", "width": 1}, {"from": "Europe", "to": "survive", "width": 1}, {"from": "Europe", "to": "invading", "width": 1}, {"from": "Arabs", "to": "allowing", "width": 1}, {"from": "https://t.co/TBBw7l5Woi", "to": "idealizes", "width": 1}, {"from": "Musk", "to": "parroting", "width": 1}, {"from": "Musk", "to": "declares", "width": 1}, {"from": "Musk", "to": "boosted", "width": 1}, {"from": "Musk", "to": "condemn", "width": 1}, {"from": "Musk", "to": "posted", "width": 1}, {"from": "ExMuslims", "to": "seek", "width": 1}, {"from": "Lonewolf", "to": "attacked", "width": 1}, {"from": "Canada", "to": "accepted", "width": 1}, {"from": "who", "to": "did", "width": 1}, {"from": "who", "to": "committed", "width": 1}, {"from": "who", "to": "went", "width": 1}, {"from": "who", "to": "ran", "width": 1}, {"from": "who", "to": "supports", "width": 1}, {"from": "who", "to": "attacked", "width": 1}, {"from": "who", "to": "carried", "width": 1}, {"from": "who", "to": "paying", "width": 1}, {"from": "who", "to": "refuse", "width": 1}, {"from": "who", "to": "passed", "width": 1}, {"from": "who", "to": "granted", "width": 1}, {"from": "who", "to": "lived", "width": 1}, {"from": "attack", "to": "did", "width": 1}, {"from": "attack", "to": "committed", "width": 1}, {"from": "attack", "to": "occurred", "width": 1}, {"from": "attack", "to": "carry", "width": 1}, {"from": "attack", "to": "carried", "width": 1}, {"from": "attack", "to": "yesterdays", "width": 1}, {"from": "attack", "to": "ramming", "width": 1}, {"from": "attack", "to": "condemn", "width": 1}, {"from": "attack", "to": "following", "width": 1}, {"from": "https://t.co/npCOpZ8Uwp", "to": "want", "width": 1}, {"from": "none", "to": "want", "width": 1}, {"from": "Who", "to": "radicalized", "width": 1}, {"from": "him", "to": "radicalized", "width": 1}, {"from": "him", "to": "extradite", "width": 1}, {"from": "him", "to": "known", "width": 1}, {"from": "him", "to": "hurting", "width": 1}, {"from": "him", "to": "accepted", "width": 1}, {"from": "terrorist", "to": "turned", "width": 1}, {"from": "it", "to": "kills", "width": 1}, {"from": "it", "to": "goes", "width": 1}, {"from": "it", "to": "worked", "width": 1}, {"from": "it", "to": "happened", "width": 1}, {"from": "it", "to": "\u2019s", "width": 1}, {"from": "it", "to": "want", "width": 1}, {"from": "it", "to": "stand", "width": 1}, {"from": "what", "to": "told", "width": 1}, {"from": "what", "to": "appears", "width": 1}, {"from": "lAbdulmohsen", "to": "driving", "width": 1}, {"from": "that", "to": "travelled", "width": 1}, {"from": "that", "to": "took", "width": 1}, {"from": "that", "to": "s", "width": 1}, {"from": "that", "to": "killed", "width": 1}, {"from": "that", "to": "unfolded", "width": 1}, {"from": "He", "to": "fled", "width": 1}, {"from": "He", "to": "repaid", "width": 1}, {"from": "He", "to": "left", "width": 1}, {"from": "He", "to": "went", "width": 1}, {"from": "He", "to": "wanted", "width": 1}, {"from": "asylum", "to": "granted", "width": 1}, {"from": "asylum", "to": "demanded", "width": 1}, {"from": "asylum", "to": "seek", "width": 1}, {"from": "which", "to": "refused", "width": 1}, {"from": "which", "to": "seen", "width": 1}, {"from": "favour", "to": "repaid", "width": 1}, {"from": "massacre", "to": "committing", "width": 1}, {"from": "crowd", "to": "take", "width": 1}, {"from": "market", "to": "take", "width": 1}, {"from": "market", "to": "attacked", "width": 1}, {"from": "market", "to": "visiting", "width": 1}, {"from": "attacker", "to": "Turns", "width": 1}, {"from": "I", "to": "fighting", "width": 1}, {"from": "I", "to": "say", "width": 1}, {"from": "I", "to": "issued", "width": 1}, {"from": "I", "to": "condemn", "width": 1}, {"from": "I", "to": "offer", "width": 1}, {"from": "I", "to": "known", "width": 1}, {"from": "I", "to": "comply", "width": 1}, {"from": "I", "to": "believe", "width": 1}, {"from": "I", "to": "knew", "width": 1}, {"from": "I", "to": "wanted", "width": 1}, {"from": "I", "to": "suspected", "width": 1}, {"from": "I", "to": "confirm", "width": 1}, {"from": "I", "to": "seen", "width": 1}, {"from": "enemy", "to": "fighting", "width": 1}, {"from": "lefty", "to": "responds", "width": 1}, {"from": "organizations", "to": "protesting", "width": 1}, {"from": "account", "to": "identified", "width": 1}, {"from": "ex", "to": "Seems", "width": 1}, {"from": "crime", "to": "committed", "width": 1}, {"from": "crime", "to": "blame", "width": 1}, {"from": "people", "to": "killing", "width": 1}, {"from": "people", "to": "injuring", "width": 1}, {"from": "people", "to": "harass", "width": 1}, {"from": "request", "to": "refused", "width": 1}, {"from": "uproar", "to": "died", "width": 1}, {"from": "accounts", "to": "raised", "width": 1}, {"from": "accounts", "to": "go", "width": 1}, {"from": "accounts", "to": "boosted", "width": 1}, {"from": "information", "to": "came", "width": 1}, {"from": "warning", "to": "issued", "width": 1}, {"from": "We", "to": "stand", "width": 1}, {"from": "We", "to": "know", "width": 1}, {"from": "\u2019s", "to": "get", "width": 1}, {"from": "truth", "to": "face", "width": 1}, {"from": "status", "to": "granted", "width": 1}, {"from": "justice", "to": "face", "width": 1}, {"from": "activist", "to": "carried", "width": 1}, {"from": "terrorists", "to": "know", "width": 1}, {"from": "we", "to": "send", "width": 1}, {"from": "we", "to": "see", "width": 1}, {"from": "them", "to": "send", "width": 1}, {"from": "them", "to": "release", "width": 1}, {"from": "them", "to": "feed", "width": 1}, {"from": "you", "to": "release", "width": 1}, {"from": "you", "to": "kill", "width": 1}, {"from": "you", "to": "keep", "width": 1}, {"from": "you", "to": "expect", "width": 1}, {"from": "citizenship", "to": "grant", "width": 1}, {"from": "they", "to": "started", "width": 1}, {"from": "they", "to": "marched", "width": 1}, {"from": "they", "to": "waging", "width": 1}, {"from": "They", "to": "have", "width": 1}, {"from": "right", "to": "have", "width": 1}, {"from": "mouth", "to": "keep", "width": 1}, {"from": "media", "to": "explained", "width": 1}, {"from": "motivation", "to": "seems", "width": 1}, {"from": "world", "to": "idealizes", "width": 1}, {"from": "Afd", "to": "idealizes", "width": 1}, {"from": "What", "to": "happened", "width": 1}, {"from": "What", "to": "gives", "width": 1}, {"from": "this", "to": "come", "width": 1}, {"from": "this", "to": "confirm", "width": 1}, {"from": "attention", "to": "paying", "width": 1}, {"from": "persecution", "to": "fleeing", "width": 1}, {"from": "religion", "to": "separate", "width": 1}, {"from": "religion", "to": "left", "width": 1}, {"from": "religion", "to": "has", "width": 1}, {"from": "concessions", "to": "demanding", "width": 1}, {"from": "fan", "to": "plows", "width": 1}, {"from": "NYPD", "to": "deploys", "width": 1}, {"from": "assets", "to": "deploys", "width": 1}, {"from": "Scholz", "to": "license", "width": 1}, {"from": "he", "to": "came", "width": 1}, {"from": "he", "to": "left", "width": 1}, {"from": "he", "to": "seemed", "width": 1}, {"from": "he", "to": "targeting", "width": 1}, {"from": "he", "to": "working", "width": 1}, {"from": "he", "to": "said", "width": 1}, {"from": "he", "to": "mentions", "width": 1}, {"from": "he", "to": "do", "width": 1}, {"from": "site", "to": "visit", "width": 1}, {"from": "men", "to": "march", "width": 1}, {"from": "streets", "to": "march", "width": 1}, {"from": "God", "to": "have", "width": 1}, {"from": "mercy", "to": "have", "width": 1}, {"from": "condolences", "to": "offer", "width": 1}, {"from": "@elonmusk", "to": "has", "width": 1}, {"from": "problem", "to": "has", "width": 1}, {"from": "Numbers", "to": "increasing", "width": 1}, {"from": "\ud83c\udde9", "to": "https://t.co/m7CY2u6JMX", "width": 1}, {"from": "place", "to": "took", "width": 1}, {"from": "Minister", "to": "warned", "width": 1}, {"from": "West", "to": "warned", "width": 1}, {"from": "Akbar", "to": "chanting", "width": 1}, {"from": "flags", "to": "see", "width": 1}, {"from": "fur", "to": "post", "width": 1}, {"from": "doze", "to": "killed", "width": 1}, {"from": "injured", "to": "killed", "width": 1}, {"from": "pawhugs", "to": "headbops", "width": 1}, {"from": "girls", "to": "smuggling", "width": 1}, {"from": "extradition", "to": "refused", "width": 1}, {"from": "Arabia", "to": "left", "width": 1}, {"from": "Some", "to": "say", "width": 1}, {"from": "Terrorism", "to": "has", "width": 1}, {"from": "\u0027s", "to": "stand", "width": 1}, {"from": "policy", "to": "protesting", "width": 1}, {"from": "https://t.co/RZ098vYM82", "to": "affiliated", "width": 1}, {"from": "fanboy", "to": "affiliated", "width": 1}, {"from": "murderer", "to": "acted", "width": 1}, {"from": "support", "to": "posted", "width": 1}, {"from": "support", "to": "mentions", "width": 1}, {"from": "silence", "to": "deafening", "width": 1}, {"from": "Video", "to": "shows", "width": 1}, {"from": "police", "to": "detaining", "width": 1}, {"from": "suspect", "to": "detaining", "width": 1}, {"from": "Authorities", "to": "say", "width": 1}, {"from": "help", "to": "wanted", "width": 1}, {"from": "her", "to": "exposing", "width": 1}, {"from": "Friends", "to": "shared", "width": 1}, {"from": "activists", "to": "targeting", "width": 1}, {"from": "activists", "to": "bring", "width": 1}, {"from": "distance", "to": "keep", "width": 1}, {"from": "authorities", "to": "working", "width": 1}, {"from": "theory", "to": "aligns", "width": 1}, {"from": "This", "to": "make", "width": 1}, {"from": "It", "to": "feed", "width": 1}, {"from": "It", "to": "surfaced", "width": 1}, {"from": "narrative", "to": "feed", "width": 1}, {"from": "traction", "to": "gaining", "width": 1}, {"from": "survivors", "to": "endure", "width": 1}, {"from": "effects", "to": "continue", "width": 1}, {"from": "devastation", "to": "cause", "width": 1}, {"from": "protesters", "to": "harass", "width": 1}, {"from": "war", "to": "waging", "width": 1}, {"from": "YOU", "to": "NEED", "width": 1}, {"from": "PRESIDENT", "to": "HAVE", "width": 1}, {"from": "LAW", "to": "ENFORCE", "width": 1}, {"from": "@VickyRichterUSA", "to": "speaks", "width": 1}, {"from": "shopping", "to": "doing", "width": 1}, {"from": "joy", "to": "hurting", "width": 1}, {"from": "polls", "to": "sweep", "width": 1}, {"from": "us", "to": "believe", "width": 1}, {"from": "sleeper", "to": "decides", "width": 1}, {"from": "car", "to": "drive", "width": 1}, {"from": "individual", "to": "identified", "width": 1}, {"from": "Abdulaziz", "to": "remained", "width": 1}, {"from": "sympathizer", "to": "beeen", "width": 1}, {"from": "militant", "to": "go", "width": 1}, {"from": "mind", "to": "calm", "width": 1}, {"from": "beheadings", "to": "do", "width": 1}]);
nodeColors = {};
allNodes = nodes.get({ returnType: "Object" });
for (nodeId in allNodes) {
nodeColors[nodeId] = allNodes[nodeId].color;
}
allEdges = edges.get({ returnType: "Object" });
// adding nodes and edges to the graph
data = {nodes: nodes, edges: edges};
var options = {
"configure": {
"enabled": false
},
"edges": {
"color": {
"inherit": true
},
"smooth": {
"enabled": true,
"type": "dynamic"
}
},
"interaction": {
"dragNodes": true,
"hideEdgesOnDrag": false,
"hideNodesOnDrag": false
},
"physics": {
"enabled": true,
"stabilization": {
"enabled": true,
"fit": true,
"iterations": 1000,
"onlyDynamicEdges": false,
"updateInterval": 50
}
}
};
network = new vis.Network(container, data, options);
network.on("stabilizationProgress", function(params) {
document.getElementById('loadingBar').removeAttribute("style");
var maxWidth = 496;
var minWidth = 20;
var widthFactor = params.iterations/params.total;
var width = Math.max(minWidth,maxWidth * widthFactor);
document.getElementById('bar').style.width = width + 'px';
document.getElementById('text').innerHTML = Math.round(widthFactor*100) + '%';
});
network.once("stabilizationIterationsDone", function() {
document.getElementById('text').innerHTML = '100%';
document.getElementById('bar').style.width = '496px';
document.getElementById('loadingBar').style.opacity = 0;
// really clean the dom element
setTimeout(function () {document.getElementById('loadingBar').style.display = 'none';}, 500);
});
return network;
}
drawGraph();
</script>
</body>
</html>