-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathcluster.html
2143 lines (1847 loc) · 603 KB
/
cluster.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
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<style>
text.mpld3-text, div.mpld3-tooltip {
font-family:Arial, Helvetica, sans-serif;
}
g.mpld3-xaxis, g.mpld3-yaxis {
display: none; }
svg.mpld3-figure {
margin-left: -200px;}
text.mpld3-text, div.mpld3-tooltip {
font-family:Arial, Helvetica, sans-serif;
}
g.mpld3-xaxis, g.mpld3-yaxis {
display: none; }
svg.mpld3-figure {
margin-left: -200px;}
text.mpld3-text, div.mpld3-tooltip {
font-family:Arial, Helvetica, sans-serif;
}
g.mpld3-xaxis, g.mpld3-yaxis {
display: none; }
svg.mpld3-figure {
margin-left: -200px;}
text.mpld3-text, div.mpld3-tooltip {
font-family:Arial, Helvetica, sans-serif;
}
g.mpld3-xaxis, g.mpld3-yaxis {
display: none; }
svg.mpld3-figure {
margin-left: -200px;}
text.mpld3-text, div.mpld3-tooltip {
font-family:Arial, Helvetica, sans-serif;
}
g.mpld3-xaxis, g.mpld3-yaxis {
display: none; }
svg.mpld3-figure {
margin-left: -200px;}
text.mpld3-text, div.mpld3-tooltip {
font-family:Arial, Helvetica, sans-serif;
}
g.mpld3-xaxis, g.mpld3-yaxis {
display: none; }
svg.mpld3-figure {
margin-left: -200px;}
text.mpld3-text, div.mpld3-tooltip {
font-family:Arial, Helvetica, sans-serif;
}
g.mpld3-xaxis, g.mpld3-yaxis {
display: none; }
svg.mpld3-figure {
margin-left: -200px;}
text.mpld3-text, div.mpld3-tooltip {
font-family:Arial, Helvetica, sans-serif;
}
g.mpld3-xaxis, g.mpld3-yaxis {
display: none; }
svg.mpld3-figure {
margin-left: -200px;}
text.mpld3-text, div.mpld3-tooltip {
font-family:Arial, Helvetica, sans-serif;
}
g.mpld3-xaxis, g.mpld3-yaxis {
display: none; }
svg.mpld3-figure {
margin-left: -200px;}
text.mpld3-text, div.mpld3-tooltip {
font-family:Arial, Helvetica, sans-serif;
}
g.mpld3-xaxis, g.mpld3-yaxis {
display: none; }
svg.mpld3-figure {
margin-left: -200px;}
text.mpld3-text, div.mpld3-tooltip {
font-family:Arial, Helvetica, sans-serif;
}
g.mpld3-xaxis, g.mpld3-yaxis {
display: none; }
svg.mpld3-figure {
margin-left: -200px;}
text.mpld3-text, div.mpld3-tooltip {
font-family:Arial, Helvetica, sans-serif;
}
g.mpld3-xaxis, g.mpld3-yaxis {
display: none; }
svg.mpld3-figure {
margin-left: -200px;}
</style>
<div id="fig_el463349924292481806816135"></div>
<script>
function mpld3_load_lib(url, callback){
var s = document.createElement('script');
s.src = url;
s.async = true;
s.onreadystatechange = s.onload = callback;
s.onerror = function(){console.warn("failed to load library " + url);};
document.getElementsByTagName("head")[0].appendChild(s);
}
if(typeof(mpld3) !== "undefined" && mpld3._mpld3IsLoaded){
// already loaded: just create the figure
!function(mpld3){
mpld3.register_plugin("htmltooltip", HtmlTooltipPlugin);
HtmlTooltipPlugin.prototype = Object.create(mpld3.Plugin.prototype);
HtmlTooltipPlugin.prototype.constructor = HtmlTooltipPlugin;
HtmlTooltipPlugin.prototype.requiredProps = ["id"];
HtmlTooltipPlugin.prototype.defaultProps = {labels:null,
hoffset:0,
voffset:10};
function HtmlTooltipPlugin(fig, props){
mpld3.Plugin.call(this, fig, props);
};
HtmlTooltipPlugin.prototype.draw = function(){
var obj = mpld3.get_element(this.props.id);
var labels = this.props.labels;
var tooltip = d3.select("body").append("div")
.attr("class", "mpld3-tooltip")
.style("position", "absolute")
.style("z-index", "10")
.style("visibility", "hidden");
obj.elements()
.on("mouseover", function(d, i){
tooltip.html(labels[i])
.style("visibility", "visible");})
.on("mousemove", function(d, i){
tooltip
.style("top", d3.event.pageY + this.props.voffset + "px")
.style("left",d3.event.pageX + this.props.hoffset + "px");
}.bind(this))
.on("mouseout", function(d, i){
tooltip.style("visibility", "hidden");});
};
mpld3.register_plugin("toptoolbar", TopToolbar);
TopToolbar.prototype = Object.create(mpld3.Plugin.prototype);
TopToolbar.prototype.constructor = TopToolbar;
function TopToolbar(fig, props){
mpld3.Plugin.call(this, fig, props);
};
TopToolbar.prototype.draw = function(){
// the toolbar svg doesn't exist
// yet, so first draw it
this.fig.toolbar.draw();
// then change the y position to be
// at the top of the figure
this.fig.toolbar.toolbar.attr("x", 150);
this.fig.toolbar.toolbar.attr("y", 400);
// then remove the draw function,
// so that it is not called again
this.fig.toolbar.draw = function() {}
}
mpld3.register_plugin("htmltooltip", HtmlTooltipPlugin);
HtmlTooltipPlugin.prototype = Object.create(mpld3.Plugin.prototype);
HtmlTooltipPlugin.prototype.constructor = HtmlTooltipPlugin;
HtmlTooltipPlugin.prototype.requiredProps = ["id"];
HtmlTooltipPlugin.prototype.defaultProps = {labels:null,
hoffset:0,
voffset:10};
function HtmlTooltipPlugin(fig, props){
mpld3.Plugin.call(this, fig, props);
};
HtmlTooltipPlugin.prototype.draw = function(){
var obj = mpld3.get_element(this.props.id);
var labels = this.props.labels;
var tooltip = d3.select("body").append("div")
.attr("class", "mpld3-tooltip")
.style("position", "absolute")
.style("z-index", "10")
.style("visibility", "hidden");
obj.elements()
.on("mouseover", function(d, i){
tooltip.html(labels[i])
.style("visibility", "visible");})
.on("mousemove", function(d, i){
tooltip
.style("top", d3.event.pageY + this.props.voffset + "px")
.style("left",d3.event.pageX + this.props.hoffset + "px");
}.bind(this))
.on("mouseout", function(d, i){
tooltip.style("visibility", "hidden");});
};
mpld3.register_plugin("toptoolbar", TopToolbar);
TopToolbar.prototype = Object.create(mpld3.Plugin.prototype);
TopToolbar.prototype.constructor = TopToolbar;
function TopToolbar(fig, props){
mpld3.Plugin.call(this, fig, props);
};
TopToolbar.prototype.draw = function(){
// the toolbar svg doesn't exist
// yet, so first draw it
this.fig.toolbar.draw();
// then change the y position to be
// at the top of the figure
this.fig.toolbar.toolbar.attr("x", 150);
this.fig.toolbar.toolbar.attr("y", 400);
// then remove the draw function,
// so that it is not called again
this.fig.toolbar.draw = function() {}
}
mpld3.register_plugin("htmltooltip", HtmlTooltipPlugin);
HtmlTooltipPlugin.prototype = Object.create(mpld3.Plugin.prototype);
HtmlTooltipPlugin.prototype.constructor = HtmlTooltipPlugin;
HtmlTooltipPlugin.prototype.requiredProps = ["id"];
HtmlTooltipPlugin.prototype.defaultProps = {labels:null,
hoffset:0,
voffset:10};
function HtmlTooltipPlugin(fig, props){
mpld3.Plugin.call(this, fig, props);
};
HtmlTooltipPlugin.prototype.draw = function(){
var obj = mpld3.get_element(this.props.id);
var labels = this.props.labels;
var tooltip = d3.select("body").append("div")
.attr("class", "mpld3-tooltip")
.style("position", "absolute")
.style("z-index", "10")
.style("visibility", "hidden");
obj.elements()
.on("mouseover", function(d, i){
tooltip.html(labels[i])
.style("visibility", "visible");})
.on("mousemove", function(d, i){
tooltip
.style("top", d3.event.pageY + this.props.voffset + "px")
.style("left",d3.event.pageX + this.props.hoffset + "px");
}.bind(this))
.on("mouseout", function(d, i){
tooltip.style("visibility", "hidden");});
};
mpld3.register_plugin("toptoolbar", TopToolbar);
TopToolbar.prototype = Object.create(mpld3.Plugin.prototype);
TopToolbar.prototype.constructor = TopToolbar;
function TopToolbar(fig, props){
mpld3.Plugin.call(this, fig, props);
};
TopToolbar.prototype.draw = function(){
// the toolbar svg doesn't exist
// yet, so first draw it
this.fig.toolbar.draw();
// then change the y position to be
// at the top of the figure
this.fig.toolbar.toolbar.attr("x", 150);
this.fig.toolbar.toolbar.attr("y", 400);
// then remove the draw function,
// so that it is not called again
this.fig.toolbar.draw = function() {}
}
mpld3.register_plugin("htmltooltip", HtmlTooltipPlugin);
HtmlTooltipPlugin.prototype = Object.create(mpld3.Plugin.prototype);
HtmlTooltipPlugin.prototype.constructor = HtmlTooltipPlugin;
HtmlTooltipPlugin.prototype.requiredProps = ["id"];
HtmlTooltipPlugin.prototype.defaultProps = {labels:null,
hoffset:0,
voffset:10};
function HtmlTooltipPlugin(fig, props){
mpld3.Plugin.call(this, fig, props);
};
HtmlTooltipPlugin.prototype.draw = function(){
var obj = mpld3.get_element(this.props.id);
var labels = this.props.labels;
var tooltip = d3.select("body").append("div")
.attr("class", "mpld3-tooltip")
.style("position", "absolute")
.style("z-index", "10")
.style("visibility", "hidden");
obj.elements()
.on("mouseover", function(d, i){
tooltip.html(labels[i])
.style("visibility", "visible");})
.on("mousemove", function(d, i){
tooltip
.style("top", d3.event.pageY + this.props.voffset + "px")
.style("left",d3.event.pageX + this.props.hoffset + "px");
}.bind(this))
.on("mouseout", function(d, i){
tooltip.style("visibility", "hidden");});
};
mpld3.register_plugin("toptoolbar", TopToolbar);
TopToolbar.prototype = Object.create(mpld3.Plugin.prototype);
TopToolbar.prototype.constructor = TopToolbar;
function TopToolbar(fig, props){
mpld3.Plugin.call(this, fig, props);
};
TopToolbar.prototype.draw = function(){
// the toolbar svg doesn't exist
// yet, so first draw it
this.fig.toolbar.draw();
// then change the y position to be
// at the top of the figure
this.fig.toolbar.toolbar.attr("x", 150);
this.fig.toolbar.toolbar.attr("y", 400);
// then remove the draw function,
// so that it is not called again
this.fig.toolbar.draw = function() {}
}
mpld3.register_plugin("htmltooltip", HtmlTooltipPlugin);
HtmlTooltipPlugin.prototype = Object.create(mpld3.Plugin.prototype);
HtmlTooltipPlugin.prototype.constructor = HtmlTooltipPlugin;
HtmlTooltipPlugin.prototype.requiredProps = ["id"];
HtmlTooltipPlugin.prototype.defaultProps = {labels:null,
hoffset:0,
voffset:10};
function HtmlTooltipPlugin(fig, props){
mpld3.Plugin.call(this, fig, props);
};
HtmlTooltipPlugin.prototype.draw = function(){
var obj = mpld3.get_element(this.props.id);
var labels = this.props.labels;
var tooltip = d3.select("body").append("div")
.attr("class", "mpld3-tooltip")
.style("position", "absolute")
.style("z-index", "10")
.style("visibility", "hidden");
obj.elements()
.on("mouseover", function(d, i){
tooltip.html(labels[i])
.style("visibility", "visible");})
.on("mousemove", function(d, i){
tooltip
.style("top", d3.event.pageY + this.props.voffset + "px")
.style("left",d3.event.pageX + this.props.hoffset + "px");
}.bind(this))
.on("mouseout", function(d, i){
tooltip.style("visibility", "hidden");});
};
mpld3.register_plugin("toptoolbar", TopToolbar);
TopToolbar.prototype = Object.create(mpld3.Plugin.prototype);
TopToolbar.prototype.constructor = TopToolbar;
function TopToolbar(fig, props){
mpld3.Plugin.call(this, fig, props);
};
TopToolbar.prototype.draw = function(){
// the toolbar svg doesn't exist
// yet, so first draw it
this.fig.toolbar.draw();
// then change the y position to be
// at the top of the figure
this.fig.toolbar.toolbar.attr("x", 150);
this.fig.toolbar.toolbar.attr("y", 400);
// then remove the draw function,
// so that it is not called again
this.fig.toolbar.draw = function() {}
}
mpld3.register_plugin("htmltooltip", HtmlTooltipPlugin);
HtmlTooltipPlugin.prototype = Object.create(mpld3.Plugin.prototype);
HtmlTooltipPlugin.prototype.constructor = HtmlTooltipPlugin;
HtmlTooltipPlugin.prototype.requiredProps = ["id"];
HtmlTooltipPlugin.prototype.defaultProps = {labels:null,
hoffset:0,
voffset:10};
function HtmlTooltipPlugin(fig, props){
mpld3.Plugin.call(this, fig, props);
};
HtmlTooltipPlugin.prototype.draw = function(){
var obj = mpld3.get_element(this.props.id);
var labels = this.props.labels;
var tooltip = d3.select("body").append("div")
.attr("class", "mpld3-tooltip")
.style("position", "absolute")
.style("z-index", "10")
.style("visibility", "hidden");
obj.elements()
.on("mouseover", function(d, i){
tooltip.html(labels[i])
.style("visibility", "visible");})
.on("mousemove", function(d, i){
tooltip
.style("top", d3.event.pageY + this.props.voffset + "px")
.style("left",d3.event.pageX + this.props.hoffset + "px");
}.bind(this))
.on("mouseout", function(d, i){
tooltip.style("visibility", "hidden");});
};
mpld3.register_plugin("toptoolbar", TopToolbar);
TopToolbar.prototype = Object.create(mpld3.Plugin.prototype);
TopToolbar.prototype.constructor = TopToolbar;
function TopToolbar(fig, props){
mpld3.Plugin.call(this, fig, props);
};
TopToolbar.prototype.draw = function(){
// the toolbar svg doesn't exist
// yet, so first draw it
this.fig.toolbar.draw();
// then change the y position to be
// at the top of the figure
this.fig.toolbar.toolbar.attr("x", 150);
this.fig.toolbar.toolbar.attr("y", 400);
// then remove the draw function,
// so that it is not called again
this.fig.toolbar.draw = function() {}
}
mpld3.register_plugin("htmltooltip", HtmlTooltipPlugin);
HtmlTooltipPlugin.prototype = Object.create(mpld3.Plugin.prototype);
HtmlTooltipPlugin.prototype.constructor = HtmlTooltipPlugin;
HtmlTooltipPlugin.prototype.requiredProps = ["id"];
HtmlTooltipPlugin.prototype.defaultProps = {labels:null,
hoffset:0,
voffset:10};
function HtmlTooltipPlugin(fig, props){
mpld3.Plugin.call(this, fig, props);
};
HtmlTooltipPlugin.prototype.draw = function(){
var obj = mpld3.get_element(this.props.id);
var labels = this.props.labels;
var tooltip = d3.select("body").append("div")
.attr("class", "mpld3-tooltip")
.style("position", "absolute")
.style("z-index", "10")
.style("visibility", "hidden");
obj.elements()
.on("mouseover", function(d, i){
tooltip.html(labels[i])
.style("visibility", "visible");})
.on("mousemove", function(d, i){
tooltip
.style("top", d3.event.pageY + this.props.voffset + "px")
.style("left",d3.event.pageX + this.props.hoffset + "px");
}.bind(this))
.on("mouseout", function(d, i){
tooltip.style("visibility", "hidden");});
};
mpld3.register_plugin("toptoolbar", TopToolbar);
TopToolbar.prototype = Object.create(mpld3.Plugin.prototype);
TopToolbar.prototype.constructor = TopToolbar;
function TopToolbar(fig, props){
mpld3.Plugin.call(this, fig, props);
};
TopToolbar.prototype.draw = function(){
// the toolbar svg doesn't exist
// yet, so first draw it
this.fig.toolbar.draw();
// then change the y position to be
// at the top of the figure
this.fig.toolbar.toolbar.attr("x", 150);
this.fig.toolbar.toolbar.attr("y", 400);
// then remove the draw function,
// so that it is not called again
this.fig.toolbar.draw = function() {}
}
mpld3.register_plugin("htmltooltip", HtmlTooltipPlugin);
HtmlTooltipPlugin.prototype = Object.create(mpld3.Plugin.prototype);
HtmlTooltipPlugin.prototype.constructor = HtmlTooltipPlugin;
HtmlTooltipPlugin.prototype.requiredProps = ["id"];
HtmlTooltipPlugin.prototype.defaultProps = {labels:null,
hoffset:0,
voffset:10};
function HtmlTooltipPlugin(fig, props){
mpld3.Plugin.call(this, fig, props);
};
HtmlTooltipPlugin.prototype.draw = function(){
var obj = mpld3.get_element(this.props.id);
var labels = this.props.labels;
var tooltip = d3.select("body").append("div")
.attr("class", "mpld3-tooltip")
.style("position", "absolute")
.style("z-index", "10")
.style("visibility", "hidden");
obj.elements()
.on("mouseover", function(d, i){
tooltip.html(labels[i])
.style("visibility", "visible");})
.on("mousemove", function(d, i){
tooltip
.style("top", d3.event.pageY + this.props.voffset + "px")
.style("left",d3.event.pageX + this.props.hoffset + "px");
}.bind(this))
.on("mouseout", function(d, i){
tooltip.style("visibility", "hidden");});
};
mpld3.register_plugin("toptoolbar", TopToolbar);
TopToolbar.prototype = Object.create(mpld3.Plugin.prototype);
TopToolbar.prototype.constructor = TopToolbar;
function TopToolbar(fig, props){
mpld3.Plugin.call(this, fig, props);
};
TopToolbar.prototype.draw = function(){
// the toolbar svg doesn't exist
// yet, so first draw it
this.fig.toolbar.draw();
// then change the y position to be
// at the top of the figure
this.fig.toolbar.toolbar.attr("x", 150);
this.fig.toolbar.toolbar.attr("y", 400);
// then remove the draw function,
// so that it is not called again
this.fig.toolbar.draw = function() {}
}
mpld3.register_plugin("htmltooltip", HtmlTooltipPlugin);
HtmlTooltipPlugin.prototype = Object.create(mpld3.Plugin.prototype);
HtmlTooltipPlugin.prototype.constructor = HtmlTooltipPlugin;
HtmlTooltipPlugin.prototype.requiredProps = ["id"];
HtmlTooltipPlugin.prototype.defaultProps = {labels:null,
hoffset:0,
voffset:10};
function HtmlTooltipPlugin(fig, props){
mpld3.Plugin.call(this, fig, props);
};
HtmlTooltipPlugin.prototype.draw = function(){
var obj = mpld3.get_element(this.props.id);
var labels = this.props.labels;
var tooltip = d3.select("body").append("div")
.attr("class", "mpld3-tooltip")
.style("position", "absolute")
.style("z-index", "10")
.style("visibility", "hidden");
obj.elements()
.on("mouseover", function(d, i){
tooltip.html(labels[i])
.style("visibility", "visible");})
.on("mousemove", function(d, i){
tooltip
.style("top", d3.event.pageY + this.props.voffset + "px")
.style("left",d3.event.pageX + this.props.hoffset + "px");
}.bind(this))
.on("mouseout", function(d, i){
tooltip.style("visibility", "hidden");});
};
mpld3.register_plugin("toptoolbar", TopToolbar);
TopToolbar.prototype = Object.create(mpld3.Plugin.prototype);
TopToolbar.prototype.constructor = TopToolbar;
function TopToolbar(fig, props){
mpld3.Plugin.call(this, fig, props);
};
TopToolbar.prototype.draw = function(){
// the toolbar svg doesn't exist
// yet, so first draw it
this.fig.toolbar.draw();
// then change the y position to be
// at the top of the figure
this.fig.toolbar.toolbar.attr("x", 150);
this.fig.toolbar.toolbar.attr("y", 400);
// then remove the draw function,
// so that it is not called again
this.fig.toolbar.draw = function() {}
}
mpld3.register_plugin("htmltooltip", HtmlTooltipPlugin);
HtmlTooltipPlugin.prototype = Object.create(mpld3.Plugin.prototype);
HtmlTooltipPlugin.prototype.constructor = HtmlTooltipPlugin;
HtmlTooltipPlugin.prototype.requiredProps = ["id"];
HtmlTooltipPlugin.prototype.defaultProps = {labels:null,
hoffset:0,
voffset:10};
function HtmlTooltipPlugin(fig, props){
mpld3.Plugin.call(this, fig, props);
};
HtmlTooltipPlugin.prototype.draw = function(){
var obj = mpld3.get_element(this.props.id);
var labels = this.props.labels;
var tooltip = d3.select("body").append("div")
.attr("class", "mpld3-tooltip")
.style("position", "absolute")
.style("z-index", "10")
.style("visibility", "hidden");
obj.elements()
.on("mouseover", function(d, i){
tooltip.html(labels[i])
.style("visibility", "visible");})
.on("mousemove", function(d, i){
tooltip
.style("top", d3.event.pageY + this.props.voffset + "px")
.style("left",d3.event.pageX + this.props.hoffset + "px");
}.bind(this))
.on("mouseout", function(d, i){
tooltip.style("visibility", "hidden");});
};
mpld3.register_plugin("toptoolbar", TopToolbar);
TopToolbar.prototype = Object.create(mpld3.Plugin.prototype);
TopToolbar.prototype.constructor = TopToolbar;
function TopToolbar(fig, props){
mpld3.Plugin.call(this, fig, props);
};
TopToolbar.prototype.draw = function(){
// the toolbar svg doesn't exist
// yet, so first draw it
this.fig.toolbar.draw();
// then change the y position to be
// at the top of the figure
this.fig.toolbar.toolbar.attr("x", 150);
this.fig.toolbar.toolbar.attr("y", 400);
// then remove the draw function,
// so that it is not called again
this.fig.toolbar.draw = function() {}
}
mpld3.register_plugin("htmltooltip", HtmlTooltipPlugin);
HtmlTooltipPlugin.prototype = Object.create(mpld3.Plugin.prototype);
HtmlTooltipPlugin.prototype.constructor = HtmlTooltipPlugin;
HtmlTooltipPlugin.prototype.requiredProps = ["id"];
HtmlTooltipPlugin.prototype.defaultProps = {labels:null,
hoffset:0,
voffset:10};
function HtmlTooltipPlugin(fig, props){
mpld3.Plugin.call(this, fig, props);
};
HtmlTooltipPlugin.prototype.draw = function(){
var obj = mpld3.get_element(this.props.id);
var labels = this.props.labels;
var tooltip = d3.select("body").append("div")
.attr("class", "mpld3-tooltip")
.style("position", "absolute")
.style("z-index", "10")
.style("visibility", "hidden");
obj.elements()
.on("mouseover", function(d, i){
tooltip.html(labels[i])
.style("visibility", "visible");})
.on("mousemove", function(d, i){
tooltip
.style("top", d3.event.pageY + this.props.voffset + "px")
.style("left",d3.event.pageX + this.props.hoffset + "px");
}.bind(this))
.on("mouseout", function(d, i){
tooltip.style("visibility", "hidden");});
};
mpld3.register_plugin("toptoolbar", TopToolbar);
TopToolbar.prototype = Object.create(mpld3.Plugin.prototype);
TopToolbar.prototype.constructor = TopToolbar;
function TopToolbar(fig, props){
mpld3.Plugin.call(this, fig, props);
};
TopToolbar.prototype.draw = function(){
// the toolbar svg doesn't exist
// yet, so first draw it
this.fig.toolbar.draw();
// then change the y position to be
// at the top of the figure
this.fig.toolbar.toolbar.attr("x", 150);
this.fig.toolbar.toolbar.attr("y", 400);
// then remove the draw function,
// so that it is not called again
this.fig.toolbar.draw = function() {}
}
mpld3.register_plugin("htmltooltip", HtmlTooltipPlugin);
HtmlTooltipPlugin.prototype = Object.create(mpld3.Plugin.prototype);
HtmlTooltipPlugin.prototype.constructor = HtmlTooltipPlugin;
HtmlTooltipPlugin.prototype.requiredProps = ["id"];
HtmlTooltipPlugin.prototype.defaultProps = {labels:null,
hoffset:0,
voffset:10};
function HtmlTooltipPlugin(fig, props){
mpld3.Plugin.call(this, fig, props);
};
HtmlTooltipPlugin.prototype.draw = function(){
var obj = mpld3.get_element(this.props.id);
var labels = this.props.labels;
var tooltip = d3.select("body").append("div")
.attr("class", "mpld3-tooltip")
.style("position", "absolute")
.style("z-index", "10")
.style("visibility", "hidden");
obj.elements()
.on("mouseover", function(d, i){
tooltip.html(labels[i])
.style("visibility", "visible");})
.on("mousemove", function(d, i){
tooltip
.style("top", d3.event.pageY + this.props.voffset + "px")
.style("left",d3.event.pageX + this.props.hoffset + "px");
}.bind(this))
.on("mouseout", function(d, i){
tooltip.style("visibility", "hidden");});
};
mpld3.register_plugin("toptoolbar", TopToolbar);
TopToolbar.prototype = Object.create(mpld3.Plugin.prototype);
TopToolbar.prototype.constructor = TopToolbar;
function TopToolbar(fig, props){
mpld3.Plugin.call(this, fig, props);
};
TopToolbar.prototype.draw = function(){
// the toolbar svg doesn't exist
// yet, so first draw it
this.fig.toolbar.draw();
// then change the y position to be
// at the top of the figure
this.fig.toolbar.toolbar.attr("x", 150);
this.fig.toolbar.toolbar.attr("y", 400);
// then remove the draw function,
// so that it is not called again
this.fig.toolbar.draw = function() {}
}
mpld3.draw_figure("fig_el463349924292481806816135", {"width": 1728.0, "height": 864.0, "axes": [{"bbox": [0.125, 0.125, 0.775, 0.755], "xlim": [-0.8290979603468478, 0.8870060137802827], "ylim": [-0.8855269510089694, 0.8954490960291501], "xdomain": [-0.8290979603468478, 0.8870060137802827], "ydomain": [-0.8855269510089694, 0.8954490960291501], "xscale": "linear", "yscale": "linear", "axes": [{"position": "bottom", "nticks": 0, "tickvalues": [], "tickformat": "", "scale": "linear", "fontsize": null, "grid": {"gridOn": false}, "visible": false}, {"position": "left", "nticks": 0, "tickvalues": [], "tickformat": "", "scale": "linear", "fontsize": null, "grid": {"gridOn": false}, "visible": false}], "axesbg": "#EAEAF2", "axesbgalpha": null, "zoomable": true, "id": "el46334984660432", "lines": [], "paths": [{"data": "data14", "xindex": 0, "yindex": 1, "coordinates": "axes", "pathcodes": ["M", "L", "S", "L", "S", "L", "S", "L", "S", "Z"], "id": "el46335030292224", "dasharray": "none", "alpha": 0.8, "facecolor": "#EAEAF2", "edgecolor": "#CCCCCC", "edgewidth": 0.3, "zorder": 1999999.0}], "markers": [{"data": "data01", "xindex": 0, "yindex": 1, "coordinates": "data", "id": "el46335030292896pts", "facecolor": "#3DB5AA", "edgecolor": "none", "edgewidth": 0.0, "alpha": 1, "zorder": 2, "markerpath": [[[0.0, 5.0], [1.3260155, 5.0], [2.597899353924267, 4.473168457941209], [3.5355339059327378, 3.5355339059327378], [4.473168457941209, 2.597899353924267], [5.0, 1.3260155], [5.0, 0.0], [5.0, -1.3260155], [4.473168457941209, -2.597899353924267], [3.5355339059327378, -3.5355339059327378], [2.597899353924267, -4.473168457941209], [1.3260155, -5.0], [0.0, -5.0], [-1.3260155, -5.0], [-2.597899353924267, -4.473168457941209], [-3.5355339059327378, -3.5355339059327378], [-4.473168457941209, -2.597899353924267], [-5.0, -1.3260155], [-5.0, 0.0], [-5.0, 1.3260155], [-4.473168457941209, 2.597899353924267], [-3.5355339059327378, 3.5355339059327378], [-2.597899353924267, 4.473168457941209], [-1.3260155, 5.0], [0.0, 5.0]], ["M", "C", "C", "C", "C", "C", "C", "C", "C", "Z"]]}, {"data": "data02", "xindex": 0, "yindex": 1, "coordinates": "data", "id": "el46335030292840pts", "facecolor": "#D15545", "edgecolor": "none", "edgewidth": 0.0, "alpha": 1, "zorder": 2, "markerpath": [[[0.0, 5.0], [1.3260155, 5.0], [2.597899353924267, 4.473168457941209], [3.5355339059327378, 3.5355339059327378], [4.473168457941209, 2.597899353924267], [5.0, 1.3260155], [5.0, 0.0], [5.0, -1.3260155], [4.473168457941209, -2.597899353924267], [3.5355339059327378, -3.5355339059327378], [2.597899353924267, -4.473168457941209], [1.3260155, -5.0], [0.0, -5.0], [-1.3260155, -5.0], [-2.597899353924267, -4.473168457941209], [-3.5355339059327378, -3.5355339059327378], [-4.473168457941209, -2.597899353924267], [-5.0, -1.3260155], [-5.0, 0.0], [-5.0, 1.3260155], [-4.473168457941209, 2.597899353924267], [-3.5355339059327378, 3.5355339059327378], [-2.597899353924267, 4.473168457941209], [-1.3260155, 5.0], [0.0, 5.0]], ["M", "C", "C", "C", "C", "C", "C", "C", "C", "Z"]]}, {"data": "data03", "xindex": 0, "yindex": 1, "coordinates": "data", "id": "el46335030293288pts", "facecolor": "#781835", "edgecolor": "none", "edgewidth": 0.0, "alpha": 1, "zorder": 2, "markerpath": [[[0.0, 5.0], [1.3260155, 5.0], [2.597899353924267, 4.473168457941209], [3.5355339059327378, 3.5355339059327378], [4.473168457941209, 2.597899353924267], [5.0, 1.3260155], [5.0, 0.0], [5.0, -1.3260155], [4.473168457941209, -2.597899353924267], [3.5355339059327378, -3.5355339059327378], [2.597899353924267, -4.473168457941209], [1.3260155, -5.0], [0.0, -5.0], [-1.3260155, -5.0], [-2.597899353924267, -4.473168457941209], [-3.5355339059327378, -3.5355339059327378], [-4.473168457941209, -2.597899353924267], [-5.0, -1.3260155], [-5.0, 0.0], [-5.0, 1.3260155], [-4.473168457941209, 2.597899353924267], [-3.5355339059327378, 3.5355339059327378], [-2.597899353924267, 4.473168457941209], [-1.3260155, 5.0], [0.0, 5.0]], ["M", "C", "C", "C", "C", "C", "C", "C", "C", "Z"]]}, {"data": "data04", "xindex": 0, "yindex": 1, "coordinates": "data", "id": "el46335030326168pts", "facecolor": "#FFA21F", "edgecolor": "none", "edgewidth": 0.0, "alpha": 1, "zorder": 2, "markerpath": [[[0.0, 5.0], [1.3260155, 5.0], [2.597899353924267, 4.473168457941209], [3.5355339059327378, 3.5355339059327378], [4.473168457941209, 2.597899353924267], [5.0, 1.3260155], [5.0, 0.0], [5.0, -1.3260155], [4.473168457941209, -2.597899353924267], [3.5355339059327378, -3.5355339059327378], [2.597899353924267, -4.473168457941209], [1.3260155, -5.0], [0.0, -5.0], [-1.3260155, -5.0], [-2.597899353924267, -4.473168457941209], [-3.5355339059327378, -3.5355339059327378], [-4.473168457941209, -2.597899353924267], [-5.0, -1.3260155], [-5.0, 0.0], [-5.0, 1.3260155], [-4.473168457941209, 2.597899353924267], [-3.5355339059327378, 3.5355339059327378], [-2.597899353924267, 4.473168457941209], [-1.3260155, 5.0], [0.0, 5.0]], ["M", "C", "C", "C", "C", "C", "C", "C", "C", "Z"]]}, {"data": "data05", "xindex": 0, "yindex": 1, "coordinates": "data", "id": "el46335030324208pts", "facecolor": "#86B313", "edgecolor": "none", "edgewidth": 0.0, "alpha": 1, "zorder": 2, "markerpath": [[[0.0, 5.0], [1.3260155, 5.0], [2.597899353924267, 4.473168457941209], [3.5355339059327378, 3.5355339059327378], [4.473168457941209, 2.597899353924267], [5.0, 1.3260155], [5.0, 0.0], [5.0, -1.3260155], [4.473168457941209, -2.597899353924267], [3.5355339059327378, -3.5355339059327378], [2.597899353924267, -4.473168457941209], [1.3260155, -5.0], [0.0, -5.0], [-1.3260155, -5.0], [-2.597899353924267, -4.473168457941209], [-3.5355339059327378, -3.5355339059327378], [-4.473168457941209, -2.597899353924267], [-5.0, -1.3260155], [-5.0, 0.0], [-5.0, 1.3260155], [-4.473168457941209, 2.597899353924267], [-3.5355339059327378, 3.5355339059327378], [-2.597899353924267, 4.473168457941209], [-1.3260155, 5.0], [0.0, 5.0]], ["M", "C", "C", "C", "C", "C", "C", "C", "C", "Z"]]}, {"data": "data06", "xindex": 0, "yindex": 1, "coordinates": "data", "id": "el46335030358992pts", "facecolor": "#FF00C1", "edgecolor": "none", "edgewidth": 0.0, "alpha": 1, "zorder": 2, "markerpath": [[[0.0, 5.0], [1.3260155, 5.0], [2.597899353924267, 4.473168457941209], [3.5355339059327378, 3.5355339059327378], [4.473168457941209, 2.597899353924267], [5.0, 1.3260155], [5.0, 0.0], [5.0, -1.3260155], [4.473168457941209, -2.597899353924267], [3.5355339059327378, -3.5355339059327378], [2.597899353924267, -4.473168457941209], [1.3260155, -5.0], [0.0, -5.0], [-1.3260155, -5.0], [-2.597899353924267, -4.473168457941209], [-3.5355339059327378, -3.5355339059327378], [-4.473168457941209, -2.597899353924267], [-5.0, -1.3260155], [-5.0, 0.0], [-5.0, 1.3260155], [-4.473168457941209, 2.597899353924267], [-3.5355339059327378, 3.5355339059327378], [-2.597899353924267, 4.473168457941209], [-1.3260155, 5.0], [0.0, 5.0]], ["M", "C", "C", "C", "C", "C", "C", "C", "C", "Z"]]}, {"data": "data07", "xindex": 0, "yindex": 1, "coordinates": "data", "id": "el46335030326056pts", "facecolor": "#686765", "edgecolor": "none", "edgewidth": 0.0, "alpha": 1, "zorder": 2, "markerpath": [[[0.0, 5.0], [1.3260155, 5.0], [2.597899353924267, 4.473168457941209], [3.5355339059327378, 3.5355339059327378], [4.473168457941209, 2.597899353924267], [5.0, 1.3260155], [5.0, 0.0], [5.0, -1.3260155], [4.473168457941209, -2.597899353924267], [3.5355339059327378, -3.5355339059327378], [2.597899353924267, -4.473168457941209], [1.3260155, -5.0], [0.0, -5.0], [-1.3260155, -5.0], [-2.597899353924267, -4.473168457941209], [-3.5355339059327378, -3.5355339059327378], [-4.473168457941209, -2.597899353924267], [-5.0, -1.3260155], [-5.0, 0.0], [-5.0, 1.3260155], [-4.473168457941209, 2.597899353924267], [-3.5355339059327378, 3.5355339059327378], [-2.597899353924267, 4.473168457941209], [-1.3260155, 5.0], [0.0, 5.0]], ["M", "C", "C", "C", "C", "C", "C", "C", "C", "Z"]]}, {"data": "data08", "xindex": 0, "yindex": 1, "coordinates": "data", "id": "el46335030323816pts", "facecolor": "#9270FF", "edgecolor": "none", "edgewidth": 0.0, "alpha": 1, "zorder": 2, "markerpath": [[[0.0, 5.0], [1.3260155, 5.0], [2.597899353924267, 4.473168457941209], [3.5355339059327378, 3.5355339059327378], [4.473168457941209, 2.597899353924267], [5.0, 1.3260155], [5.0, 0.0], [5.0, -1.3260155], [4.473168457941209, -2.597899353924267], [3.5355339059327378, -3.5355339059327378], [2.597899353924267, -4.473168457941209], [1.3260155, -5.0], [0.0, -5.0], [-1.3260155, -5.0], [-2.597899353924267, -4.473168457941209], [-3.5355339059327378, -3.5355339059327378], [-4.473168457941209, -2.597899353924267], [-5.0, -1.3260155], [-5.0, 0.0], [-5.0, 1.3260155], [-4.473168457941209, 2.597899353924267], [-3.5355339059327378, 3.5355339059327378], [-2.597899353924267, 4.473168457941209], [-1.3260155, 5.0], [0.0, 5.0]], ["M", "C", "C", "C", "C", "C", "C", "C", "C", "Z"]]}, {"data": "data09", "xindex": 0, "yindex": 1, "coordinates": "data", "id": "el46335030389968pts", "facecolor": "#560C64", "edgecolor": "none", "edgewidth": 0.0, "alpha": 1, "zorder": 2, "markerpath": [[[0.0, 5.0], [1.3260155, 5.0], [2.597899353924267, 4.473168457941209], [3.5355339059327378, 3.5355339059327378], [4.473168457941209, 2.597899353924267], [5.0, 1.3260155], [5.0, 0.0], [5.0, -1.3260155], [4.473168457941209, -2.597899353924267], [3.5355339059327378, -3.5355339059327378], [2.597899353924267, -4.473168457941209], [1.3260155, -5.0], [0.0, -5.0], [-1.3260155, -5.0], [-2.597899353924267, -4.473168457941209], [-3.5355339059327378, -3.5355339059327378], [-4.473168457941209, -2.597899353924267], [-5.0, -1.3260155], [-5.0, 0.0], [-5.0, 1.3260155], [-4.473168457941209, 2.597899353924267], [-3.5355339059327378, 3.5355339059327378], [-2.597899353924267, 4.473168457941209], [-1.3260155, 5.0], [0.0, 5.0]], ["M", "C", "C", "C", "C", "C", "C", "C", "C", "Z"]]}, {"data": "data10", "xindex": 0, "yindex": 1, "coordinates": "data", "id": "el46335030423912pts", "facecolor": "#887136", "edgecolor": "none", "edgewidth": 0.0, "alpha": 1, "zorder": 2, "markerpath": [[[0.0, 5.0], [1.3260155, 5.0], [2.597899353924267, 4.473168457941209], [3.5355339059327378, 3.5355339059327378], [4.473168457941209, 2.597899353924267], [5.0, 1.3260155], [5.0, 0.0], [5.0, -1.3260155], [4.473168457941209, -2.597899353924267], [3.5355339059327378, -3.5355339059327378], [2.597899353924267, -4.473168457941209], [1.3260155, -5.0], [0.0, -5.0], [-1.3260155, -5.0], [-2.597899353924267, -4.473168457941209], [-3.5355339059327378, -3.5355339059327378], [-4.473168457941209, -2.597899353924267], [-5.0, -1.3260155], [-5.0, 0.0], [-5.0, 1.3260155], [-4.473168457941209, 2.597899353924267], [-3.5355339059327378, 3.5355339059327378], [-2.597899353924267, 4.473168457941209], [-1.3260155, 5.0], [0.0, 5.0]], ["M", "C", "C", "C", "C", "C", "C", "C", "C", "Z"]]}, {"data": "data11", "xindex": 0, "yindex": 1, "coordinates": "data", "id": "el46335030323928pts", "facecolor": "#67BEFF", "edgecolor": "none", "edgewidth": 0.0, "alpha": 1, "zorder": 2, "markerpath": [[[0.0, 5.0], [1.3260155, 5.0], [2.597899353924267, 4.473168457941209], [3.5355339059327378, 3.5355339059327378], [4.473168457941209, 2.597899353924267], [5.0, 1.3260155], [5.0, 0.0], [5.0, -1.3260155], [4.473168457941209, -2.597899353924267], [3.5355339059327378, -3.5355339059327378], [2.597899353924267, -4.473168457941209], [1.3260155, -5.0], [0.0, -5.0], [-1.3260155, -5.0], [-2.597899353924267, -4.473168457941209], [-3.5355339059327378, -3.5355339059327378], [-4.473168457941209, -2.597899353924267], [-5.0, -1.3260155], [-5.0, 0.0], [-5.0, 1.3260155], [-4.473168457941209, 2.597899353924267], [-3.5355339059327378, 3.5355339059327378], [-2.597899353924267, 4.473168457941209], [-1.3260155, 5.0], [0.0, 5.0]], ["M", "C", "C", "C", "C", "C", "C", "C", "C", "Z"]]}, {"data": "data12", "xindex": 0, "yindex": 1, "coordinates": "data", "id": "el46335030423184pts", "facecolor": "#F94848", "edgecolor": "none", "edgewidth": 0.0, "alpha": 1, "zorder": 2, "markerpath": [[[0.0, 5.0], [1.3260155, 5.0], [2.597899353924267, 4.473168457941209], [3.5355339059327378, 3.5355339059327378], [4.473168457941209, 2.597899353924267], [5.0, 1.3260155], [5.0, 0.0], [5.0, -1.3260155], [4.473168457941209, -2.597899353924267], [3.5355339059327378, -3.5355339059327378], [2.597899353924267, -4.473168457941209], [1.3260155, -5.0], [0.0, -5.0], [-1.3260155, -5.0], [-2.597899353924267, -4.473168457941209], [-3.5355339059327378, -3.5355339059327378], [-4.473168457941209, -2.597899353924267], [-5.0, -1.3260155], [-5.0, 0.0], [-5.0, 1.3260155], [-4.473168457941209, 2.597899353924267], [-3.5355339059327378, 3.5355339059327378], [-2.597899353924267, 4.473168457941209], [-1.3260155, 5.0], [0.0, 5.0]], ["M", "C", "C", "C", "C", "C", "C", "C", "C", "Z"]]}, {"data": "data13", "xindex": 0, "yindex": 1, "coordinates": "axes", "id": "el46335030518176pts", "facecolor": "#3DB5AA", "edgecolor": "none", "edgewidth": 0.0, "alpha": 1, "zorder": 2000002.0, "markerpath": [[[0.0, 5.0], [1.3260155, 5.0], [2.597899353924267, 4.473168457941209], [3.5355339059327378, 3.5355339059327378], [4.473168457941209, 2.597899353924267], [5.0, 1.3260155], [5.0, 0.0], [5.0, -1.3260155], [4.473168457941209, -2.597899353924267], [3.5355339059327378, -3.5355339059327378], [2.597899353924267, -4.473168457941209], [1.3260155, -5.0], [0.0, -5.0], [-1.3260155, -5.0], [-2.597899353924267, -4.473168457941209], [-3.5355339059327378, -3.5355339059327378], [-4.473168457941209, -2.597899353924267], [-5.0, -1.3260155], [-5.0, 0.0], [-5.0, 1.3260155], [-4.473168457941209, 2.597899353924267], [-3.5355339059327378, 3.5355339059327378], [-2.597899353924267, 4.473168457941209], [-1.3260155, 5.0], [0.0, 5.0]], ["M", "C", "C", "C", "C", "C", "C", "C", "C", "Z"]]}, {"data": "data13", "xindex": 0, "yindex": 2, "coordinates": "axes", "id": "el46335030549768pts", "facecolor": "#D15545", "edgecolor": "none", "edgewidth": 0.0, "alpha": 1, "zorder": 2000002.0, "markerpath": [[[0.0, 5.0], [1.3260155, 5.0], [2.597899353924267, 4.473168457941209], [3.5355339059327378, 3.5355339059327378], [4.473168457941209, 2.597899353924267], [5.0, 1.3260155], [5.0, 0.0], [5.0, -1.3260155], [4.473168457941209, -2.597899353924267], [3.5355339059327378, -3.5355339059327378], [2.597899353924267, -4.473168457941209], [1.3260155, -5.0], [0.0, -5.0], [-1.3260155, -5.0], [-2.597899353924267, -4.473168457941209], [-3.5355339059327378, -3.5355339059327378], [-4.473168457941209, -2.597899353924267], [-5.0, -1.3260155], [-5.0, 0.0], [-5.0, 1.3260155], [-4.473168457941209, 2.597899353924267], [-3.5355339059327378, 3.5355339059327378], [-2.597899353924267, 4.473168457941209], [-1.3260155, 5.0], [0.0, 5.0]], ["M", "C", "C", "C", "C", "C", "C", "C", "C", "Z"]]}, {"data": "data13", "xindex": 0, "yindex": 3, "coordinates": "axes", "id": "el46335030581304pts", "facecolor": "#781835", "edgecolor": "none", "edgewidth": 0.0, "alpha": 1, "zorder": 2000002.0, "markerpath": [[[0.0, 5.0], [1.3260155, 5.0], [2.597899353924267, 4.473168457941209], [3.5355339059327378, 3.5355339059327378], [4.473168457941209, 2.597899353924267], [5.0, 1.3260155], [5.0, 0.0], [5.0, -1.3260155], [4.473168457941209, -2.597899353924267], [3.5355339059327378, -3.5355339059327378], [2.597899353924267, -4.473168457941209], [1.3260155, -5.0], [0.0, -5.0], [-1.3260155, -5.0], [-2.597899353924267, -4.473168457941209], [-3.5355339059327378, -3.5355339059327378], [-4.473168457941209, -2.597899353924267], [-5.0, -1.3260155], [-5.0, 0.0], [-5.0, 1.3260155], [-4.473168457941209, 2.597899353924267], [-3.5355339059327378, 3.5355339059327378], [-2.597899353924267, 4.473168457941209], [-1.3260155, 5.0], [0.0, 5.0]], ["M", "C", "C", "C", "C", "C", "C", "C", "C", "Z"]]}, {"data": "data13", "xindex": 0, "yindex": 4, "coordinates": "axes", "id": "el46335030584104pts", "facecolor": "#FFA21F", "edgecolor": "none", "edgewidth": 0.0, "alpha": 1, "zorder": 2000002.0, "markerpath": [[[0.0, 5.0], [1.3260155, 5.0], [2.597899353924267, 4.473168457941209], [3.5355339059327378, 3.5355339059327378], [4.473168457941209, 2.597899353924267], [5.0, 1.3260155], [5.0, 0.0], [5.0, -1.3260155], [4.473168457941209, -2.597899353924267], [3.5355339059327378, -3.5355339059327378], [2.597899353924267, -4.473168457941209], [1.3260155, -5.0], [0.0, -5.0], [-1.3260155, -5.0], [-2.597899353924267, -4.473168457941209], [-3.5355339059327378, -3.5355339059327378], [-4.473168457941209, -2.597899353924267], [-5.0, -1.3260155], [-5.0, 0.0], [-5.0, 1.3260155], [-4.473168457941209, 2.597899353924267], [-3.5355339059327378, 3.5355339059327378], [-2.597899353924267, 4.473168457941209], [-1.3260155, 5.0], [0.0, 5.0]], ["M", "C", "C", "C", "C", "C", "C", "C", "C", "Z"]]}, {"data": "data13", "xindex": 0, "yindex": 5, "coordinates": "axes", "id": "el46335030547640pts", "facecolor": "#86B313", "edgecolor": "none", "edgewidth": 0.0, "alpha": 1, "zorder": 2000002.0, "markerpath": [[[0.0, 5.0], [1.3260155, 5.0], [2.597899353924267, 4.473168457941209], [3.5355339059327378, 3.5355339059327378], [4.473168457941209, 2.597899353924267], [5.0, 1.3260155], [5.0, 0.0], [5.0, -1.3260155], [4.473168457941209, -2.597899353924267], [3.5355339059327378, -3.5355339059327378], [2.597899353924267, -4.473168457941209], [1.3260155, -5.0], [0.0, -5.0], [-1.3260155, -5.0], [-2.597899353924267, -4.473168457941209], [-3.5355339059327378, -3.5355339059327378], [-4.473168457941209, -2.597899353924267], [-5.0, -1.3260155], [-5.0, 0.0], [-5.0, 1.3260155], [-4.473168457941209, 2.597899353924267], [-3.5355339059327378, 3.5355339059327378], [-2.597899353924267, 4.473168457941209], [-1.3260155, 5.0], [0.0, 5.0]], ["M", "C", "C", "C", "C", "C", "C", "C", "C", "Z"]]}, {"data": "data13", "xindex": 0, "yindex": 6, "coordinates": "axes", "id": "el46335030616480pts", "facecolor": "#FF00C1", "edgecolor": "none", "edgewidth": 0.0, "alpha": 1, "zorder": 2000002.0, "markerpath": [[[0.0, 5.0], [1.3260155, 5.0], [2.597899353924267, 4.473168457941209], [3.5355339059327378, 3.5355339059327378], [4.473168457941209, 2.597899353924267], [5.0, 1.3260155], [5.0, 0.0], [5.0, -1.3260155], [4.473168457941209, -2.597899353924267], [3.5355339059327378, -3.5355339059327378], [2.597899353924267, -4.473168457941209], [1.3260155, -5.0], [0.0, -5.0], [-1.3260155, -5.0], [-2.597899353924267, -4.473168457941209], [-3.5355339059327378, -3.5355339059327378], [-4.473168457941209, -2.597899353924267], [-5.0, -1.3260155], [-5.0, 0.0], [-5.0, 1.3260155], [-4.473168457941209, 2.597899353924267], [-3.5355339059327378, 3.5355339059327378], [-2.597899353924267, 4.473168457941209], [-1.3260155, 5.0], [0.0, 5.0]], ["M", "C", "C", "C", "C", "C", "C", "C", "C", "Z"]]}, {"data": "data13", "xindex": 0, "yindex": 7, "coordinates": "axes", "id": "el46335030660304pts", "facecolor": "#686765", "edgecolor": "none", "edgewidth": 0.0, "alpha": 1, "zorder": 2000002.0, "markerpath": [[[0.0, 5.0], [1.3260155, 5.0], [2.597899353924267, 4.473168457941209], [3.5355339059327378, 3.5355339059327378], [4.473168457941209, 2.597899353924267], [5.0, 1.3260155], [5.0, 0.0], [5.0, -1.3260155], [4.473168457941209, -2.597899353924267], [3.5355339059327378, -3.5355339059327378], [2.597899353924267, -4.473168457941209], [1.3260155, -5.0], [0.0, -5.0], [-1.3260155, -5.0], [-2.597899353924267, -4.473168457941209], [-3.5355339059327378, -3.5355339059327378], [-4.473168457941209, -2.597899353924267], [-5.0, -1.3260155], [-5.0, 0.0], [-5.0, 1.3260155], [-4.473168457941209, 2.597899353924267], [-3.5355339059327378, 3.5355339059327378], [-2.597899353924267, 4.473168457941209], [-1.3260155, 5.0], [0.0, 5.0]], ["M", "C", "C", "C", "C", "C", "C", "C", "C", "Z"]]}, {"data": "data13", "xindex": 0, "yindex": 8, "coordinates": "axes", "id": "el46335030695936pts", "facecolor": "#9270FF", "edgecolor": "none", "edgewidth": 0.0, "alpha": 1, "zorder": 2000002.0, "markerpath": [[[0.0, 5.0], [1.3260155, 5.0], [2.597899353924267, 4.473168457941209], [3.5355339059327378, 3.5355339059327378], [4.473168457941209, 2.597899353924267], [5.0, 1.3260155], [5.0, 0.0], [5.0, -1.3260155], [4.473168457941209, -2.597899353924267], [3.5355339059327378, -3.5355339059327378], [2.597899353924267, -4.473168457941209], [1.3260155, -5.0], [0.0, -5.0], [-1.3260155, -5.0], [-2.597899353924267, -4.473168457941209], [-3.5355339059327378, -3.5355339059327378], [-4.473168457941209, -2.597899353924267], [-5.0, -1.3260155], [-5.0, 0.0], [-5.0, 1.3260155], [-4.473168457941209, 2.597899353924267], [-3.5355339059327378, 3.5355339059327378], [-2.597899353924267, 4.473168457941209], [-1.3260155, 5.0], [0.0, 5.0]], ["M", "C", "C", "C", "C", "C", "C", "C", "C", "Z"]]}, {"data": "data13", "xindex": 0, "yindex": 9, "coordinates": "axes", "id": "el46335030695824pts", "facecolor": "#560C64", "edgecolor": "none", "edgewidth": 0.0, "alpha": 1, "zorder": 2000002.0, "markerpath": [[[0.0, 5.0], [1.3260155, 5.0], [2.597899353924267, 4.473168457941209], [3.5355339059327378, 3.5355339059327378], [4.473168457941209, 2.597899353924267], [5.0, 1.3260155], [5.0, 0.0], [5.0, -1.3260155], [4.473168457941209, -2.597899353924267], [3.5355339059327378, -3.5355339059327378], [2.597899353924267, -4.473168457941209], [1.3260155, -5.0], [0.0, -5.0], [-1.3260155, -5.0], [-2.597899353924267, -4.473168457941209], [-3.5355339059327378, -3.5355339059327378], [-4.473168457941209, -2.597899353924267], [-5.0, -1.3260155], [-5.0, 0.0], [-5.0, 1.3260155], [-4.473168457941209, 2.597899353924267], [-3.5355339059327378, 3.5355339059327378], [-2.597899353924267, 4.473168457941209], [-1.3260155, 5.0], [0.0, 5.0]], ["M", "C", "C", "C", "C", "C", "C", "C", "C", "Z"]]}, {"data": "data13", "xindex": 0, "yindex": 10, "coordinates": "axes", "id": "el46335030724216pts", "facecolor": "#887136", "edgecolor": "none", "edgewidth": 0.0, "alpha": 1, "zorder": 2000002.0, "markerpath": [[[0.0, 5.0], [1.3260155, 5.0], [2.597899353924267, 4.473168457941209], [3.5355339059327378, 3.5355339059327378], [4.473168457941209, 2.597899353924267], [5.0, 1.3260155], [5.0, 0.0], [5.0, -1.3260155], [4.473168457941209, -2.597899353924267], [3.5355339059327378, -3.5355339059327378], [2.597899353924267, -4.473168457941209], [1.3260155, -5.0], [0.0, -5.0], [-1.3260155, -5.0], [-2.597899353924267, -4.473168457941209], [-3.5355339059327378, -3.5355339059327378], [-4.473168457941209, -2.597899353924267], [-5.0, -1.3260155], [-5.0, 0.0], [-5.0, 1.3260155], [-4.473168457941209, 2.597899353924267], [-3.5355339059327378, 3.5355339059327378], [-2.597899353924267, 4.473168457941209], [-1.3260155, 5.0], [0.0, 5.0]], ["M", "C", "C", "C", "C", "C", "C", "C", "C", "Z"]]}, {"data": "data13", "xindex": 0, "yindex": 11, "coordinates": "axes", "id": "el46335030727016pts", "facecolor": "#67BEFF", "edgecolor": "none", "edgewidth": 0.0, "alpha": 1, "zorder": 2000002.0, "markerpath": [[[0.0, 5.0], [1.3260155, 5.0], [2.597899353924267, 4.473168457941209], [3.5355339059327378, 3.5355339059327378], [4.473168457941209, 2.597899353924267], [5.0, 1.3260155], [5.0, 0.0], [5.0, -1.3260155], [4.473168457941209, -2.597899353924267], [3.5355339059327378, -3.5355339059327378], [2.597899353924267, -4.473168457941209], [1.3260155, -5.0], [0.0, -5.0], [-1.3260155, -5.0], [-2.597899353924267, -4.473168457941209], [-3.5355339059327378, -3.5355339059327378], [-4.473168457941209, -2.597899353924267], [-5.0, -1.3260155], [-5.0, 0.0], [-5.0, 1.3260155], [-4.473168457941209, 2.597899353924267], [-3.5355339059327378, 3.5355339059327378], [-2.597899353924267, 4.473168457941209], [-1.3260155, 5.0], [0.0, 5.0]], ["M", "C", "C", "C", "C", "C", "C", "C", "C", "Z"]]}, {"data": "data13", "xindex": 0, "yindex": 12, "coordinates": "axes", "id": "el46335030727072pts", "facecolor": "#F94848", "edgecolor": "none", "edgewidth": 0.0, "alpha": 1, "zorder": 2000002.0, "markerpath": [[[0.0, 5.0], [1.3260155, 5.0], [2.597899353924267, 4.473168457941209], [3.5355339059327378, 3.5355339059327378], [4.473168457941209, 2.597899353924267], [5.0, 1.3260155], [5.0, 0.0], [5.0, -1.3260155], [4.473168457941209, -2.597899353924267], [3.5355339059327378, -3.5355339059327378], [2.597899353924267, -4.473168457941209], [1.3260155, -5.0], [0.0, -5.0], [-1.3260155, -5.0], [-2.597899353924267, -4.473168457941209], [-3.5355339059327378, -3.5355339059327378], [-4.473168457941209, -2.597899353924267], [-5.0, -1.3260155], [-5.0, 0.0], [-5.0, 1.3260155], [-4.473168457941209, 2.597899353924267], [-3.5355339059327378, 3.5355339059327378], [-2.597899353924267, 4.473168457941209], [-1.3260155, 5.0], [0.0, 5.0]], ["M", "C", "C", "C", "C", "C", "C", "C", "C", "Z"]]}], "texts": [{"text": "dumps, passwords, usernames, records", "position": [0.7705719832735961, 0.3878464557272504], "coordinates": "axes", "h_anchor": "start", "v_baseline": "auto", "rotation": -0.0, "fontsize": 15.0, "color": "#262626", "alpha": 1, "zorder": 2000003.0, "id": "el46335030516888"}, {"text": "accounts, million, email, users", "position": [0.7705719832735961, 0.35488717194015207], "coordinates": "axes", "h_anchor": "start", "v_baseline": "auto", "rotation": -0.0, "fontsize": 15.0, "color": "#262626", "alpha": 1, "zorder": 2000003.0, "id": "el46335030548144"}, {"text": "malware, reveal, used, researchers", "position": [0.7705719832735961, 0.32192788815305373], "coordinates": "axes", "h_anchor": "start", "v_baseline": "auto", "rotation": -0.0, "fontsize": 15.0, "color": "#262626", "alpha": 1, "zorder": 2000003.0, "id": "el46335030550944"}, {"text": "website, anonymous, government, claims", "position": [0.7705719832735961, 0.2889686043659554], "coordinates": "axes", "h_anchor": "start", "v_baseline": "auto", "rotation": -0.0, "fontsize": 15.0, "color": "#262626", "alpha": 1, "zorder": 2000003.0, "id": "el46335030582480"}, {"text": "campaign, target, reveal, new", "position": [0.7705719832735961, 0.25600932057885695], "coordinates": "axes", "h_anchor": "start", "v_baseline": "auto", "rotation": -0.0, "fontsize": 15.0, "color": "#262626", "alpha": 1, "zorder": 2000003.0, "id": "el46335030614016"}, {"text": "breach, data, customers, security", "position": [0.7705719832735961, 0.22305003679175864], "coordinates": "axes", "h_anchor": "start", "v_baseline": "auto", "rotation": -0.0, "fontsize": 15.0, "color": "#262626", "alpha": 1, "zorder": 2000003.0, "id": "el46335030614856"}, {"text": "defaced, website, officials, group", "position": [0.7705719832735961, 0.1900907530046603], "coordinates": "axes", "h_anchor": "start", "v_baseline": "auto", "rotation": -0.0, "fontsize": 15.0, "color": "#262626", "alpha": 1, "zorder": 2000003.0, "id": "el46335030658680"}, {"text": "reveal, target, attacks, group", "position": [0.7705719832735961, 0.1571314692175619], "coordinates": "axes", "h_anchor": "start", "v_baseline": "auto", "rotation": -0.0, "fontsize": 15.0, "color": "#262626", "alpha": 1, "zorder": 2000003.0, "id": "el46335030661480"}, {"text": "information, personal, access, compromised", "position": [0.7705719832735961, 0.12417218543046357], "coordinates": "axes", "h_anchor": "start", "v_baseline": "auto", "rotation": -0.0, "fontsize": 15.0, "color": "#262626", "alpha": 1, "zorder": 2000003.0, "id": "el46335030660136"}, {"text": "ddos, attacks, website", "position": [0.7705719832735961, 0.09121290164336524], "coordinates": "axes", "h_anchor": "start", "v_baseline": "auto", "rotation": -0.0, "fontsize": 15.0, "color": "#262626", "alpha": 1, "zorder": 2000003.0, "id": "el46335030697952"}, {"text": "data, leaked, customers, compromised", "position": [0.7705719832735961, 0.05825361785626687], "coordinates": "axes", "h_anchor": "start", "v_baseline": "auto", "rotation": -0.0, "fontsize": 15.0, "color": "#262626", "alpha": 1, "zorder": 2000003.0, "id": "el46335030725392"}, {"text": "leaked, claims, database, anonymous", "position": [0.7705719832735961, 0.025294334069168506], "coordinates": "axes", "h_anchor": "start", "v_baseline": "auto", "rotation": -0.0, "fontsize": 15.0, "color": "#262626", "alpha": 1, "zorder": 2000003.0, "id": "el46335030752832"}], "collections": [], "images": [], "sharex": [], "sharey": []}], "data": {"data01": [[0.6315298482722871, 0.309103601101113], [0.6316105114425729, 0.34030048201000435], [0.5414707268047912, 0.3582704901215334], [0.5275531195603813, 0.4084341144601254], [0.5739645891699555, 0.4303366947215317], [0.46081310363237293, 0.4738634702959466], [0.565273602812376, 0.36895751257293985], [0.5739645891699556, 0.4303366947215317], [0.595083168448805, 0.4158276264196542], [0.44236351969676885, 0.5577207018512039], [0.5003720844589187, 0.4230296085645127], [0.5192284717656002, 0.4004883226959268], [0.5275381531137384, 0.5088907485318049], [0.5613583968143395, 0.3368409806951877], [0.5616963998350427, 0.43083605884865234], [0.5277475431032119, 0.4711918669497667], [0.6359395823931464, 0.4215140619547779], [0.523879791238138, 0.3595030585475825], [0.4212132956105727, 0.3195411677012428], [0.47830550221257045, 0.5936917481329737], [0.5550907455147785, 0.4987249503969988], [0.5485385433466252, 0.3849437669045634], [0.5578952969612975, 0.38563284849811374], [0.5550907455147783, 0.4987249503969992], [0.5550907455147781, 0.4987249503969993], [0.5550907455147781, 0.49872495039699904], [0.5550907455147788, 0.49872495039699866], [0.5550907455147788, 0.49872495039699866], [0.5550907455147788, 0.49872495039699893], [0.6026275282389262, 0.3185090813137914], [0.5550907455147787, 0.49872495039699877], [0.46081310572173084, 0.4738634671840692], [0.5550907455147787, 0.4987249503969987], [0.4783055022125711, 0.5936917481329732], [0.5021251096492576, 0.49330020528823265], [0.4608131050637362, 0.4738634681640825], [0.5550907455147781, 0.4987249503969981], [0.4783055022125714, 0.5936917481329743], [0.6359395823931518, 0.42151406195476626], [0.5550907455147783, 0.49872495039699866], [0.5950831684488048, 0.4158276264196524], [0.5550907455147783, 0.4987249503969985], [0.5739645891699579, 0.43033669472153113], [0.3877291143966667, 0.6127480827601374], [0.5950831684488049, 0.41582762641965254], [0.4968692476518721, 0.5385909296383022], [0.5275381531137399, 0.5088907485318048], [0.5550907455147784, 0.4987249503969984], [0.5485385433437437, 0.38494376690579585], [0.42301494792632843, 0.5441375699044187], [0.5550907455147783, 0.49872495039699855], [0.6086598673390663, 0.2635575247285211], [0.47830550221257145, 0.5936917481329743], [0.5550907455147783, 0.49872495039699893], [0.5550907455147783, 0.49872495039699893], [0.5550907455147783, 0.49872495039699893], [0.5550907455147783, 0.49872495039699893], [0.5550907455147784, 0.4987249503969989], [0.5275381531137391, 0.5088907485318057], [0.5550907455147785, 0.498724950396999], [0.5550907455147785, 0.498724950396999], [0.547487733768744, 0.3955687653933612], [0.5550907455147783, 0.49872495039699877], [0.5550907455147782, 0.49872495039699893], [0.41341348971744957, 0.5020810347381643], [0.555090745514778, 0.4987249503969989], [0.5550907455147782, 0.4987249503969989], [0.5550907455147782, 0.4987249503969991], [0.5550907455147785, 0.4987249503969991], [0.5550907455147782, 0.49872495039699893], [0.49742759283052057, 0.4997828526371952], [0.4647486850444425, 0.5046889628173523], [0.5550907455147781, 0.4987249503969995], [0.4974275928301628, 0.4997828526379193], [0.5550907455147781, 0.49872495039699916], [0.49742759282962046, 0.49978285263901145], [0.591013768870615, 0.3323851466057757], [0.627470892976662, 0.377189804722537], [0.5910137688706152, 0.33238514660577595], [0.555090745514778, 0.49872495039699927], [0.5550907455147783, 0.49872495039699927], [0.5550907455147782, 0.4987249503969989], [0.5003720844589185, 0.4230296085645122], [0.5550907455147781, 0.49872495039699893], [0.5550907455147782, 0.4987249503969988], [0.5550907455147782, 0.4987249503969989], [0.5550907455147785, 0.49872495039699877], [0.5550907455147782, 0.498724950396999], [0.49686924765187235, 0.5385909296383016], [0.5275381531137371, 0.5088907485318058], [0.43498245963126037, 0.5897509603836767], [0.5550907455147778, 0.4987249503969992], [0.5550907455147778, 0.49872495039699893], [0.5550907455147782, 0.4987249503969989], [0.5550907455147782, 0.4987249503969989], [0.5550907455147782, 0.4987249503969989], [0.45312633263283025, 0.5184297819782717], [0.5550907455147781, 0.49872495039699916], [0.5550907455147781, 0.49872495039699916], [0.478652146343547, 0.3616979042172999], [0.6506184580002541, 0.3309357617599859], [0.5550907455147784, 0.4987249503969987], [0.5550907455147782, 0.4987249503969989], [0.5550907455147782, 0.4987249503969987], [0.5647343178504494, 0.4573120541665817], [0.5550907455147788, 0.49872495039699866], [0.5550907455147788, 0.49872495039699866], [0.5550907455147787, 0.49872495039699877], [0.5275381531137382, 0.508890748531805], [0.5275381531137382, 0.5088907485318046], [0.5275381531137382, 0.5088907485318038], [0.5275381531137382, 0.5088907485318038], [0.5616963998350437, 0.430836058848651], [0.5550907455147785, 0.4987249503969979], [0.555090745514779, 0.49872495039699805], [0.4968692476518721, 0.5385909296383036], [0.5275381531137384, 0.5088907485318046], [0.635939582393149, 0.42151406195477276], [0.527538153113738, 0.5088907485318047], [0.5550907455147788, 0.4987249503969981], [0.5550907455147785, 0.49872495039699877], [0.6359395823931465, 0.4215140619547795], [0.5275381531137378, 0.5088907485318057], [0.551891575773935, 0.5357982253281839], [0.5828925409378413, 0.41834393159834266], [0.5275381531137376, 0.5088907485318059], [0.5275381531137381, 0.5088907485318057], [0.47830550221257145, 0.5936917481329728], [0.47830550221257156, 0.5936917481329727], [0.4387158204422343, 0.600404962736189], [0.6341421061978623, 0.2947111371469721], [0.5275381531137376, 0.5088907485318053], [0.46149048970443873, 0.41811182401827407], [0.4614904898363324, 0.4181118238738465], [0.4614904399864737, 0.418111878461903], [0.5550907455147784, 0.49872495039699877], [0.39423343833748364, 0.2805454542204352], [0.4122519221587945, 0.5139272734992919], [0.2817428637963333, 0.477324241237471], [0.43871582044223467, 0.6004049627361896], [0.35854450676386906, 0.5402268369883617], [0.5136577468035715, 0.588616786518029], [0.6722917968179533, 0.31068760941987705], [0.2936623434509776, 0.2866192416049686], [0.4783055022125715, 0.593691748132974]], "data02": [[0.6871700222601835, 0.013529723613234167], [0.6871700222601842, 0.013529723613234146], [0.5395980209344555, -0.03499484193536308], [0.6871700222601838, 0.013529723613234103], [0.3749945711508955, -0.2768742339446266], [0.6871700222601834, 0.013529723613234089], [-0.3827509858510435, 0.11495633993492375], [0.42265049733489907, 0.012711608028939808], [0.11915051848798454, 0.14763846516624446], [0.18006819788999875, 0.081374637895749], [0.006876569698431169, -0.15616278886466053], [0.6560670655476744, 1.5781346672158547e-05], [0.6467922186149719, 0.239926812826679], [-0.08853399164611468, -0.26841546458614207], [0.41325521543071264, 0.15893882025551304], [0.02995052730179985, 0.10449760145645492], [0.4375403048435943, 0.15568114274379716], [0.5892735640778178, 0.0773083814424334], [0.4445016801070161, 0.17399742034197543], [0.687170022260182, 0.013529723613234203], [0.20589964163781457, -0.0887325202724548], [0.6048377052542552, 0.03196006316295676], [0.583623376030833, -0.1942950944757546], [0.5495741186438419, 0.20606459777646963], [0.6403210863301065, 0.06373727527824612], [0.4771779465777638, 0.011213523230848375], [0.6541105447598723, -0.07471929770536083], [0.5588335165718707, 0.022100627664703935], [-0.27047910341245557, 0.016275234674653676], [0.1097264067818862, -0.3012432535023348], [0.4014592993026022, 0.04760412041926937], [0.0265573354321943, 0.22997788233389072], [0.687170022260182, 0.013529723613234165], [0.6086280710468257, 0.0017416706265062053], [0.349006771085169, -0.05433855933403815], [0.24577782640035534, 0.008128026181910174], [0.21962557914736655, -0.11081421094642649], [0.33336246396039393, -0.11046903869934596], [-0.17625406943483674, 0.11915058197920789], [0.6871700222601831, 0.013529723613234127], [0.3676892175654364, 0.2569754603927362], [0.5042127366749453, 0.051828927603830434], [0.6871700222601812, 0.01352972361323409], [0.4772358295575317, 0.24716983659463745], [0.11395556475752405, 0.531050190750903], [0.43600082424889836, -0.05766789898278831], [0.21106432496370098, 0.3032585911365435], [0.07434667112114923, 0.18408791377718814], [0.6478222092292809, 0.12784801453282657], [0.5044165673018729, 0.22525504441217611], [0.5170169123750711, 0.10951562935478915], [0.6871700222601822, 0.013529723613234143], [0.1614151235949215, 0.3356266145751865], [0.5170169162323046, 0.10951562831996448], [0.464321423272392, -0.0882691191659368], [0.6467922186149675, 0.23992681282668385], [0.5081898634567442, -0.034527922470531824], [0.6367202272451827, 0.20279809655648326], [0.6871700222601834, 0.013529723613234167], [0.42249839129460515, 0.24603685958817148], [-0.016702478104762757, -0.06867017964210764], [0.6871700222601836, 0.01352972361323416], [0.556604566526343, -0.09192894869582738], [0.5640001207446502, -0.03824095645617059], [0.6871700222601838, 0.013529723613234167], [0.6871700222601836, 0.013529723613234162], [0.6871700222601836, 0.01352972361323418], [0.5780154016611747, -0.0014314449550832495], [0.2643081814022042, 0.26034837083175955], [0.6871700222601836, 0.013529723613234169], [0.6467922186149674, 0.2399268128266833], [0.46492283554011987, 0.08945216920852031], [0.520526420379814, 0.07226844251285704], [0.21716168575611425, 0.00630005701803479], [0.4123954057590717, -0.06756350580436021], [0.5263347793874835, 0.23686415029205007], [0.6528453293501739, 0.04519696423525768], [0.6639846565329648, -0.09586087562878806], [0.6871700222601832, 0.013529723613234089], [0.5045646264674732, 0.17361791161826656], [0.07730275048383688, -0.20862856964032273], [0.5893582043003692, -0.032761141746946845], [0.6708098490644692, -0.052665056646762104], [0.6123410268515118, -0.04422654942184712], [0.29252453499777786, -0.043675101207193985], [0.5306396375755347, 0.034169387904031956], [0.6831829554444102, -0.1400238115254332], [0.6639846565150519, -0.09586087567163888], [0.6871700222601836, 0.013529723613234125], [0.20473576048315523, 0.0663126621082663], [0.6871700222601838, 0.013529723613234127], [0.4048106651369569, -0.2719367979347815], [0.6871700222601833, 0.013529723613234164], [0.4793403221948062, -0.282675509902011], [0.36012149000219384, -0.04739449890658279], [0.5549299983241943, 0.2396713076870152], [0.5370009624694413, 0.022533616476105637], [0.4811781728112422, 0.02023104431123148], [0.6871700222601839, 0.013529723613234193], [0.5306151529281726, 0.18888906201160133], [-0.06364083176536629, -0.4607486211711041], [0.6871700222601839, 0.013529723613234172], [0.28494830648164254, 0.3903361537253791], [0.10972640675604617, -0.3012432535252314], [0.3838965671610495, -0.16113351544585422], [0.5899133527081465, -0.07933465973046698], [0.5643962489117484, -0.12501700818320374], [0.2862568805167684, 0.42945393858876], [0.3506492123712641, 0.15980081417056094], [0.033940027243401234, 0.03205823204965444], [0.16562708552790964, 0.19204187354998414], [0.4712429257389522, -0.15868654507710395], [0.5078482417926515, 0.05100101532573015], [0.18379379706872379, -0.19960907195526262], [0.4506599476736328, -0.037796252673326335], [0.5131472256567745, -0.06716195547409637], [0.3938272379474855, 0.036081923746305554], [0.4050906836909819, 0.27574765648816085], [0.6403210863298495, 0.06373727527812441], [0.3725308018066312, 0.2294127687871267], [0.3704589745796713, -0.034678380389418], [0.6703645873917881, -0.031926682686085436], [0.5989603761946548, 0.05818949781032647], [-0.13862629889668304, -0.10190494310962325], [0.5356765990191986, 0.0563482406551698], [0.11577909047930249, 0.0696832832663108], [0.5771996719638901, 0.028404314942659808], [0.589913352479846, -0.07933465978626418], [0.64032108633428, 0.0637372752802172], [0.4882211069712837, -0.24044693643776693], [0.48822110697128474, -0.24044693643776538], [0.386641332330305, -0.04666999967002119], [0.6871700222601838, 0.013529723613234162], [0.00440967228274876, -0.13901757862400696], [0.6639846565299994, -0.09586087563588053], [0.6588400595625454, -0.04084369786818563], [0.6871700222601835, 0.013529723613234158], [0.6639846564872469, -0.09586087573816333], [0.3442456621753572, 0.14087000823231266], [0.49166830113246074, -0.10764602780132863], [0.25049755887118635, 0.11052850920564918], [0.2939873024427653, -0.07785674534740528], [0.39571392970974867, 0.10854405081346305], [0.6871700222601829, 0.013529723613234193], [0.3236752702935508, 0.22269718785375803], [0.6222023593595079, 0.06373971503364603], [0.6871700222601829, 0.013529723613234202], [0.6426153375723069, -0.0012336051732584907], [0.582248072357684, -0.06087545967665735], [0.3621209218420979, 0.0999179167388142], [0.2136654850520284, 0.10972853374957696], [0.3287782420242919, -0.03246449346155079], [0.12847939478457732, 0.07820837584343496], [0.004077686612909896, 0.0387399544136832], [0.23729776803053199, 0.11856530901065976], [0.18007298049005008, 0.08137479562009774], [0.5899134157229882, -0.07933464432611002], [0.32921573016659283, -0.0993024021351592], [0.31817422788790084, 0.019363370512679817], [0.4292694614800147, -0.12972426009585356], [0.6367202272452979, 0.2027980965560919], [0.2792163997017819, 0.2693376050864749], [0.27905810501789485, 0.11282169051538997], [0.5678781829327859, 0.058561423831148485], [0.4054611699843814, 0.03712199971227613], [0.6123410268806533, -0.04422654949938566], [0.5771996719413828, 0.02840431492169593], [0.6403210952422796, 0.06373727949123154], [0.2940171848636608, -0.1294679076474903], [0.24350611078934822, -0.30124878191239934], [0.5414318604622738, 0.0989199789743797], [0.09368570284913261, 0.35530088604580984], [0.12961698714724293, -0.037796899308231324], [0.1624076083811508, 0.10296766808220081], [-0.05054143721641775, -0.1896989456552813], [0.3352164056332371, 0.19692283895853077], [0.37334084846787063, 0.2839815474732274], [-0.3494738476312809, -0.052839349940378394], [0.4780642429627018, 0.039622020604432345], [0.663984656499327, -0.09586087570925354], [0.6528453295171469, 0.04519696437700375], [0.050833839283147705, 0.11192023589447764], [0.12114334542990988, -0.03193913986610138], [0.33296652765845974, 0.013291964565839778], [0.20559791892732565, 0.14776825223579468]], "data03": [[-0.6348147377280754, 0.02508903998722372], [-0.5537866877649111, 0.37702424502499055], [-0.4913319254569537, -0.2606108292742107], [-0.6051166083016343, -0.2842608046295121], [-0.6646383523142197, 0.1207832506654246], [-0.6963237646186313, 0.22553794173684397], [-0.5063204637518987, 0.32925730328230646], [-0.6734948864086815, -0.19427362283165264], [-0.7356645724167826, 0.11181537359241465], [-0.7033557735844743, 0.2732031269790559], [-0.6443396147762479, -0.30326355030716384], [-0.735664572416781, 0.11181537359242004], [-0.5355701785106534, 0.48855976782403887], [-0.762077773423267, 0.2258729922333517], [-0.5388227290919821, 0.40046291412706864], [-0.4598296042394317, 0.12761203215429837], [-0.4957319624327522, 0.3993780007158688], [-0.5017614234919363, -0.0749066135268577], [-0.7752276771867879, 0.12887524737892458], [-0.40158961346660244, -0.29076855117577033], [-0.5948351127724606, 0.19304496064648408], [0.15708039459900006, -0.5670578805512932], [-0.15167485239536535, -0.23900323563368076], [-0.49003221323939183, -0.3303850656165684], [-0.5166763195339099, 0.37024819369562734], [-0.5373907494506877, -0.260512031988504], [0.15708039361526316, -0.5670578894362609], [-0.6020044918437899, 0.32563189913884605], [-0.3953461168082991, -0.3761905616669195], [-0.27284715632603923, 0.07930870997788554], [-0.6624753554266789, 0.33949773966392305], [-0.7620753767754411, 0.22588055038391147], [-0.6479608580194113, 0.03844937972376057], [-0.5782768733800032, -0.24054635210418274], [-0.763288374256033, 0.17559189128701644], [-0.6208952876965387, -0.07095381655292317], [-0.6765246740279216, 0.33260369627191844], [-0.47139381801173774, -0.31976067975832895], [-0.5713198431569391, 0.1335908494261031], [-0.600557576612558, -0.10789940024123798], [0.08534706478825964, -0.36761505970219166], [-0.4072036467063698, 0.018581669915220606], [-0.6893079138332382, 0.20479906781378995], [-0.7356645724167837, 0.1118153735924153], [-0.762061088046144, 0.22592561321661453], [0.04864626896272216, -0.26564766918647953], [-0.7294591141066016, 0.032548884005854005], [-0.7171159968987326, 0.10042978105518219], [-0.2809259278452743, 0.10580531591896086], [-0.6809748084867262, -0.2815407084754995], [-0.4700715738581629, -0.43412952467293936], [-0.3654304617411251, -0.40894069752658224], [-0.09059788158766904, -0.03388505501846213], [-0.6553083579882201, 0.18677020681670503], [-0.5286166941044167, -0.12573590818199057], [-0.5957915058453574, -0.28138141076252293], [-0.49809124098139373, 0.4195551302204739], [-0.4711394984293475, -0.49673454248247945], [-0.6023651709194077, -0.3639678187555634], [-0.6680696535372058, -0.2652912621828486], [-0.7179320104822302, 0.2834436025064585], [-0.7030600854374824, -0.034154516978060434], [-0.7030600854374789, -0.03415451697801464], [-0.6624903041108202, 0.33946618668122036], [-0.49264672543577087, -0.04218442200657093], [-0.3188272115716244, -0.22334770053342914], [-0.703118039245198, -0.02407713795488517], [-0.43941613382529904, 0.361762859952723], [-0.6390034973304095, 0.20044647176209415], [-0.5983066604019139, -0.06450315345925761], [-0.5344473774865575, -0.3487166364377122], [-0.64257945871419, -0.34367075432659644], [-0.525921099112588, -0.4180135871120707], [-0.6505056921248888, -0.024962323830131455], [-0.4983550315977138, -0.3482769204691967], [-0.6269348909792902, -0.23774386405770112], [-0.673604701402652, 0.28970313070192366], [-0.6860682376040768, -0.05792538523662854], [-0.695521990559846, 0.16103170747576898], [-0.4629629373845357, -0.37307228462142533], [-0.7355760239616174, 0.24217415074928433], [0.29071937350231636, -0.40405349282805214], [-0.6734948864086889, -0.19427362283165273], [-0.7488271482693434, 0.1464150192245249], [-0.7065621994795661, 0.08619311169704012], [-0.5352613246449834, -0.389115357389985], [-0.7680255693202461, 0.15454247675000155], [-0.49657699361592283, -0.5120185807389429], [-0.6795618545343852, 0.27594249597763265], [-0.5332196190198528, 0.22279894700834624], [-0.6019563121689528, -0.029429159121231223], [-0.5352367051510039, -0.1828704638531316], [-0.7805289799470233, 0.051163272466909146], [-0.6654544992415515, 0.14041997381706245], [-0.7065621994793887, 0.08619311169438951], [-0.6919378331360566, 0.001543277505474255], [-0.565659879254968, 0.1416186268585481], [-0.6460299036446954, 0.15839811772956355], [-0.7033167763357004, 0.04838681943204384], [-0.5127063512392095, 0.25049599103397047], [-0.49220383921308963, -0.41861234905208194]], "data04": [[0.20553336083411006, -0.5999254454050924], [0.2110406332324265, -0.45995936866784554], [0.16937428588485373, -0.3260423698653026], [0.5386884168973642, -0.4428752361408655], [0.5539459911306297, -0.3853371059632874], [0.5039271407444211, -0.40405141932990274], [0.22295942670861635, -0.5821997189623676], [0.32585698359978454, -0.5505046772964829], [-1.1424844603090714e-05, -0.3210410935461912], [0.30044455663964914, -0.46977666862103756], [0.06658684132488848, -0.5583384964565833], [0.26458107313533363, -0.5207854553480149], [0.02439471185457604, -0.52874943655995], [0.06658684132488839, -0.558338496456583], [0.4282434450321875, -0.3460555705720807], [0.09341146820255328, -0.41999418289468404], [0.018527604189873897, -0.02303968906723898], [0.15725338615420617, -0.08198608290575346], [0.3258569835974126, -0.5505046772993792], [0.42880054215657337, -0.4470560882530052], [0.49212459234307765, -0.39967450504839935], [0.11440580356529595, -0.3652182116408966], [0.31957421229384575, -0.26080643043722906], [0.39334379620451976, -0.34344341461272354], [0.222959426708616, -0.5821997189623704], [0.4064320616875608, -0.49654111151672253], [0.32585698359683707, -0.5505046773000819], [0.1416389333695285, -0.6942245666703771], [0.5073969940248423, -0.45071997260278546], [0.06658684132488842, -0.5583384964565822], [0.38599088081485255, -0.3468788898572486], [0.04591646417877872, -0.5808820655730911], [0.4634110792874303, -0.26204923246055617], [0.37786561412482944, -0.40027042527865636], [0.5073969940248432, -0.4507199726027859], [0.40452074857634457, -0.3908573104022783], [0.5073969940248406, -0.4507199726027861], [0.27628987016363565, -0.4889988350960649], [0.2780882010972466, -0.4079414951262668], [0.32585698359809717, -0.5505046772985427], [0.5539459911306296, -0.3853371059632879], [0.32585698359777426, -0.5505046772989356], [0.2908580615444191, -0.3013266487239464], [0.48034720953907606, -0.2944897541486588], [0.1912482150103048, -0.5301787163152777], [0.5088683423900887, -0.33937590021129915], [0.5386884168973645, -0.44287523614086377], [0.033837440259154354, -0.46175750713730235], [0.2861969446534799, -0.3974260825577974], [0.2290201884882989, -0.36479260335389885], [0.07779982506949805, -0.5131295203449956], [0.2416413441108648, -0.4324875122771976], [0.491783531416007, -0.37427807156453835], [0.32585698359816206, -0.5505046772984636], [0.5386884168973635, -0.44287523614086516], [0.3258569835968045, -0.5505046773001195], [0.32585698359986004, -0.5505046772963914], [0.3301732582936258, -0.21124849992074216], [0.4782878407807996, -0.4229496068782104], [-0.11330329957131097, -0.3932387295248072], [0.06658684132488844, -0.5583384964565825], [0.4468134381921891, -0.4234328914293319], [0.16101818524158432, -0.526995229127347], [0.4694328370119684, 0.1112246647609072], [0.5539459911306296, -0.38533710596328696], [0.4064320616876899, -0.4965411115166204], [0.5222526151485276, -0.2968800252233952], [0.5386884168973642, -0.4428752361408625], [0.5214579821199908, -0.4386882334225665], [0.3258569836111085, -0.5505046772826531], [0.3142110646373581, -0.2929053875421447], [0.0665868413248885, -0.5583384964565827], [0.06658684132488855, -0.5583384964565827], [0.11851679839518897, -0.4709690801201042], [0.492124592343089, -0.39967450504839475], [0.49212459234307654, -0.3996745050484001], [0.3050047802572001, -0.4379940337881023], [0.27936069908238714, -0.3180944791341453], [0.05972810367790867, -0.5463782233579361], [0.3258569835974965, -0.5505046772992765], [0.3321994008197258, -0.13040369272103935], [-0.06352399832334633, -0.43334148776174153], [0.3258569836122219, -0.5505046772812934], [0.3218969221971909, -0.4427981986572084], [0.3013527693896384, -0.16037572380284595], [0.4440566585213146, -0.2841502284576552], [0.2229594267086355, -0.582199718962257], [0.0498860017998625, -0.4150349752166823], [0.3258569835974995, -0.5505046772992728], [0.5381647938151738, -0.3267672602193858], [0.379726962718513, 0.14772878740145143], [0.1269685583898227, 0.00992421773714161], [0.3329922492048968, -0.5054180088917392], [0.5971053376181844, 0.19951822814509218], [0.30265739646585865, -0.4227056036858047], [0.03938204295770472, -0.5543503224544498], [0.3090615761326868, -0.37751458289386847], [0.3258569835974989, -0.5505046772992739], [0.2638550561237109, -0.6055627108405546], [0.2313666464554031, -0.46448889023640894], [0.4494720926292936, -0.36119973101323294], [0.3685300276727137, -0.38973784559596186], [0.33944664145790426, -0.23610933475453444], [0.5386884168973647, -0.4428752361408638], [0.08335364296966553, -0.4303311419573586], [0.06168939912174284, -0.42594361902864064], [0.5971053370312378, 0.19951823126526913], [0.3258569835975113, -0.5505046772992578], [0.3258569835975117, -0.5505046772992578], [0.0832011804914992, -0.47412695112980524], [0.10381851061520514, -0.5448475120785148], [0.22295942670862992, -0.5821997189622898], [0.018991166328213117, -0.40954501684535294], [0.17687426710952162, -0.5221521007237528], [0.1394280852143923, -0.26789168813832076], [-0.028339195462704553, -0.42801691185860874], [0.2554721842403936, -0.3809371731475159], [0.32585698359816195, -0.5505046772984651], [-0.0264331537030325, -0.2382961265693241], [-0.23294329522969126, -0.09856004616957556], [0.1858128349687911, -0.43564227313315446]], "data05": [[-0.5165558277219516, -0.3231489647156393], [-0.7042395142627943, -0.3109098605112272], [-0.21367026766457692, -0.3548989681089765], [-0.3905112191101605, -0.27978520753461694], [-0.22636165915085787, -0.2733153155833729], [-0.638621833631948, -0.1441127592010865], [-0.32761904306370504, 0.024056864445180667], [-0.5253835126762193, -0.19992210518909434], [-0.7549834707295018, -0.142055753352645], [-0.6016082057298725, -0.11652170997103618], [-0.362753708710776, -0.4807594938196346], [-0.6058307485082024, -0.3869091829898164], [-0.6775000579367294, -0.1512372919928443], [-0.552653429007058, -0.26934704909132023], [0.11920884468918834, -0.4393587836483463], [-0.7319738745502073, -0.0882624526094492], [-0.6995553636317206, -0.17731597963987308], [-0.31293343814282065, -0.10499424117352103], [-0.5850955417388461, 0.08306066483978146], [-0.618387777622217, -0.21140366061695917], [-0.44339077328811527, -0.17193098929586637], [-0.09857382683171512, -0.2995054319735744], [-0.7268848844015413, -0.24063609935377445], [-0.7155808423485387, -0.26098523548997377], [-0.7105045887522551, -0.22367215972068913], [-0.6408043353160672, -0.27191431837347013], [0.1401117328714364, -0.46975427565499855], [-0.6775000579367289, -0.15123729199284455], [-0.6876707160578255, -0.25830131321569477], [-0.6286940760972888, -0.21236648148334308], [-0.7077244553377695, -0.25507341672001377], [0.13440932629668997, -0.4311662077797051], [-0.24535125096860158, -0.10807672340459439], [-0.29046854104813785, -0.08363492847379819], [-0.7490722875182656, -0.22258259033512062], [-0.6876707160579207, -0.2583013132153918], [-0.6689851402858877, -0.1255912647109618], [-0.5694146886277718, -0.19947379974770882], [-0.6876707160580128, -0.25830131321509225], [-0.6771360087566904, -0.2986268738972873], [-0.671017782904562, -0.22583403504207417], [-0.6736444803441844, -0.2852687978867525], [-0.5678647588861387, -0.13865356753654315], [-0.6738275969460994, -0.065016566817177], [-0.7003917491285095, -0.11114095018398519], [-0.5755880643127665, -0.05955364750148966], [-0.7401805791019512, -0.1457167938264317], [-0.6280010518391702, -0.06554843881952406], [-0.7468245976209983, -0.25206803009161505], [-0.6775000579367287, -0.1512372919928445], [-0.6775000579367292, -0.1512372919928443], [-0.6485781287747917, -0.19167269223744224], [-0.4073333314696742, -0.16600612407154203], [-0.7468043109608812, -0.25212751312669157], [-0.1552760897069072, -0.29555307488717303], [-0.7319738745502054, -0.08826245260945284], [-0.5640115887196951, -0.26764496589116094], [-0.6775000579367286, -0.15123729199284416], [-0.6775000579367289, -0.1512372919928444], [-0.4239472041538648, -0.3251029667223322], [-0.43023286250949055, -0.1854878866198804], [-0.7109424855458845, -0.07574832075704606], [-0.6844505214001226, -0.15019290242049965], [-0.36246806457810515, -0.4990984405121886], [-0.7042483300748794, -0.31089193544229465], [-0.5918109828079767, -0.17312165773320237], [-0.610599585207697, -0.1715369740595876], [-0.7474986778492712, -0.22750523954574603], [-0.6876707160579345, -0.2583013132153392], [-0.6521008468713594, -0.09425386748128464], [0.30703900032006065, 0.24165533270637593], [0.30703900042082394, 0.24165533252598892], [0.30703900041109905, 0.2416553325434026], [0.13549587276648253, -0.5510673374129985], [-0.516861094229943, 0.07919972651551854], [-0.6509430230194169, -0.22123429953166732], [-0.5763123384895646, -0.002072935317149378], [-0.6485781287747379, -0.1916726922376107], [-0.3573092153545985, -0.014688950723407423], [-0.4576786950918793, -0.12250807606715011], [-0.6441158644020437, -0.11697825112042456], [-0.7042396929236026, -0.3109094972420318], [-0.5345462528764436, -0.2636417516794427], [-0.6674672827945491, -0.17791466425619964], [-0.6775000579367286, -0.15123729199284464], [-0.6183877774033211, -0.21140366138447814], [-0.6240617818262739, 0.2752651802326031], [0.0021362547567311506, -0.3896095240924399], [-0.6016082057298718, -0.11652170997101133], [-0.3931053394350253, -0.4177765489636824], [-0.6762299266845376, -0.1861084897862026], [-0.7470857730537734, -0.06775709568438136], [-0.6099213825523003, -0.19944277409299438], [-0.681620794689868, -0.19312366055443894], [-0.6775000579367282, -0.15123729199284452], [-0.6689851402858868, -0.125591264710962], [-0.6791500438809294, -0.2620224363792277], [-0.48977838950474445, -0.37060802624081157], [-0.5646026655742487, -0.09405068329116689], [-0.6066515511035842, -0.30718177447132977], [-0.5598619777308117, -0.00789532448444886], [-0.6554187209331962, -0.23760745414366122], [-0.6188243285123426, -0.2399203248227502], [-0.6621025236873624, -0.17146439926887386], [-0.6358819609707242, -0.0014749054558011632], [-0.6662809942589625, -0.12682301520942615], [-0.6775000579367292, -0.15123729199284425], [-0.731973874550207, -0.0882624526094532], [-0.566966686135188, -0.027096848114052927], [-0.6151119936423737, -0.10323338621917562], [-0.5175650395066301, -0.15616345026765321], [-0.5388544352959591, -0.2997542699652169], [-0.6887679406913524, -0.1259912413890354], [-0.7468261457793496, -0.2520634907080611], [-0.610599585207697, -0.1715369740595878], [-0.6431347500803843, -0.08259398624315209], [-0.46135690986869227, -0.05838822598518501], [-0.6710177828974011, -0.22583403505341634], [-0.6441158644020435, -0.11697825112042469]], "data06": [[-0.40702585576401606, 0.6016286194391451], [-0.2687850716503137, 0.7131366389517425], [-0.38342627593802414, 0.6278507421389183], [-0.24301601573810055, 0.6753605261216759], [-0.11624530016477375, 0.45509028351696407], [-0.28537549608225254, 0.4035677293959188], [0.10012827765163046, 0.31287336004242444], [-0.33112025918319166, -0.13186920362337468], [-0.2602904040240611, 0.33636527921558645], [-0.12100526374994995, 0.2248294663066538], [-0.3612442720309898, 0.6163908551854337], [0.15674530418366908, 0.5491687141978754], [-0.13303042540455395, 0.641176042274081], [-0.1777597082317308, 0.6501214428595022], [-0.13339589608409042, 0.5883382527082576], [-0.06474870009605467, 0.28729517765464146], [-0.4898820414333645, 0.20489488748762757], [-0.5668954014906638, 0.36828443086786355], [-0.1860823668600235, 0.5737826391974239], [-0.27223069005271244, 0.6787689646184183], [-0.24086174170316166, 0.5965534258337837], [-0.024830743806383712, 0.4541093601770918], [-0.18382357262724924, 0.5500663374842438], [-0.33947396523977436, 0.6478602432989745], [0.037583632811761046, 0.644730042843136], [0.04427734940088673, 0.4884015206590218], [-0.26878507165026155, 0.7131366389517623], [-0.4681678533035721, 0.36420136286274746], [-0.008384222458692463, 0.2920897284421018], [0.058948508388536866, 0.3564888276852059], [-0.09840231494984074, 0.6211999107500666], [-0.0176619311593957, 0.6345969505749429], [-0.2687850716502372, 0.7131366389517714], [-0.44512071646062185, 0.2893990389281323], [-0.22357177769408448, 0.4838884464910804], [-0.10577496897160442, 0.4417166796921872], [-0.04148816301743744, 0.7186119754524799], [-0.08505043955181274, 0.5972139973840253], [-0.3398936673211587, 0.5137602555579865], [-0.25091436624029057, 0.6831289963383882], [-0.03692631248501556, 0.5619470183663245], [-0.3450537855231605, 0.20556174223891593], [-0.2687850716502616, 0.713136638951761], [-0.5707958950330075, 0.33571430259879914], [-0.23111030462113172, 0.5763155967319594], [-0.30088930550639015, 0.6742486131687261], [-0.5327861828672484, 0.32100324773893735], [-0.4860384461811735, 0.4774527286343582], [-0.1119331273533785, -0.17883387946061924], [-0.36997931293105596, 0.5980953232234347], [-0.2097144315121554, 0.5283237386868945], [-0.34476722635900187, 0.26632670324391433], [-0.26878507165085846, 0.7131366389515299], [0.10847316680735317, 0.04873860026871009], [-0.6005836317308387, 0.33743358598140927], [0.23173270237969015, -0.25839290987984087], [-0.4031691046875925, 0.5602124632141017], [-0.2616449409097016, 0.6505702881855358], [-0.16499113380574465, 0.5915052983487785], [-0.05362464072053104, 0.5139557942254793], [-0.2574157437504586, 0.49032816569522825], [-0.0998287684676277, 0.08866799195474027], [-0.4887190128848133, 0.5233398060354738], [-0.00025321615735865026, 0.24979009116003423], [-0.46831229219402337, 0.18450949012244683], [-0.26878507165031773, 0.7131366389517408], [-0.17138451565150842, 0.6814777043475934], [-0.2687850716505405, 0.7131366389516532], [-0.26878507165030463, 0.7131366389517448], [-0.16645404904160055, 0.6254785609603046], [-0.13572230088654405, 0.6592678008002311], [-0.2952378635747025, 0.49981736642762176], [-0.1806282376387773, 0.5172524731399081], [-0.21839653057745495, 0.5498117126591223], [-0.3809840931562427, 0.5695504888873699], [0.01470575845477626, 0.7218695996586032], [-0.2942230250050941, 0.515067075916236], [-0.32379617140727207, 0.6576790717405627], [-0.3210455576560376, 0.6019588047795661], [0.13739731652612286, 0.6469714264287253], [0.03290647271014443, 0.2830415385492258], [-0.2687850716502702, 0.7131366389517592], [0.08262956673846955, 0.7145901349644107], [-0.19941229695096224, 0.24734448102197124], [0.06288251748460937, 0.6179484665352797], [0.057273346466518965, 0.5664883070282369], [-0.38342627593800355, 0.6278507421389321], [0.1800643096791635, 0.1951966386333842], [-0.17138451565150836, 0.6814777043475929], [-0.3400544291761788, 0.5720938452446324], [-0.3983825020773761, 0.12343925207851922], [-0.2972935652048985, 0.6378494370582526], [0.015553082233894375, 0.6316610351700748], [-0.0025087676191835597, 0.5174380207832939], [0.04486817644429085, 0.7470117860346824], [-0.0035831942754250916, 0.5266909389140302], [-0.2159917955943826, 0.6645862771827897], [-0.34632352766082153, 0.6727066358035892], [-0.13033418595150117, 0.5439542618867395], [-0.4073665220455772, 0.08903946472871183], [-0.2687850716502767, 0.7131366389517557], [-0.009903955988467234, 0.46749176643307105], [-0.3446019068982679, 0.3009027436846162], [-0.5791674786968724, 0.37001093042787425], [-0.2640366047653206, 0.36680688822330487], [-0.5386511313776883, 0.30218100895771105], [-0.17761696046546613, 0.16738658642327323], [0.10031600872787332, 0.4740641858824907], [0.04170578600715457, 0.4668043144742533], [-0.16177604070470547, 0.6674415373214819], [-0.1713845156515083, 0.6814777043475929], [-0.19447500823543587, 0.5916167590301039], [0.05247484004943575, 0.45890834041515177], [0.0023635952458851213, 0.6198489931117119], [-0.12011652498765901, 0.6609977204519447], [-0.05721427224754167, 0.4880898780348513], [-0.3665975590093607, 0.5535900934613337], [-0.033122319243370515, 0.5133196819301297], [0.006716959398098327, 0.5576202315546269], [-0.41187527628121184, 0.3741284764230123], [-0.07832030908007322, 0.5811377906114814], [-0.01072964763800696, 0.6080928780517297], [-0.3260646673910975, 0.6148328738632309], [0.19254061173103618, 0.5289300136359952], [-0.26878507165011817, 0.7131366389518188], [-0.22549034706253537, 0.6327550625148798], [-0.17177018065256927, 0.7275359436379786], [0.17685821350083994, 0.33757370072885295], [0.23173270238044094, -0.2583929098815907], [-0.05089555295421854, 0.6468285581319525], [-0.42063239662633484, 0.5563918350646563], [-0.2055710670252824, 0.3276601912378455], [0.05854223580246424, 0.20870604236556384], [-0.1134052852403299, 0.596316140642301], [0.06356331439354901, 0.2753214872355268], [-0.2312142138962879, 0.7146890208368809], [-0.2087767357179582, 0.5044574148939875], [-0.3223694446724812, 0.19146588667595354], [-0.15219639652489225, 0.38806483308715994], [0.028675104148873476, 0.32054039320546235], [-0.48275227069437077, 0.39409327046497555], [-0.3498189345490542, 0.5580794950954958], [-0.31034114163127324, 0.564198016751804], [-0.1713845156515081, 0.6814777043475926], [-0.2663279524667397, 0.6190851353384413], [0.028471664873715004, 0.4829964956800926], [0.15284747432463058, 0.630964968245671], [-0.10079072540057221, 0.5488085134214438], [-0.3463235410554167, 0.6727066289374906], [-0.20441672806760858, 0.6897598177567067], [-0.38342627593797257, 0.627850742138952], [-0.30279785526711317, 0.6520144137568264], [-0.1224011458081526, 0.7480313403193943], [-0.11012947397301819, 0.21897374726324648], [-0.40960698876828566, 0.5802208347557094], [-0.3642880283122242, 0.369012131087546], [-0.32523932018022933, 0.6294541589993806], [-0.17138451565150817, 0.6814777043475932], [-0.09149794190873721, 0.564438623231295], [-0.5791674786968753, 0.37001093042787253], [0.1614725367938213, 0.3458418563064113], [-0.17138451565150808, 0.6814777043475931], [-0.04654958544288822, 0.6125078502562507], [-0.17775970823173137, 0.6501214428595021], [-0.2488305210032555, 0.47852233915592013], [0.09069910700452101, 0.47206636345470654], [0.044868176454402844, 0.7470117860332498], [-0.34066521201701255, 0.1300188185519775], [0.05653157129591217, 0.4272025612923588], [-0.37615659016321595, 0.3220314569536682], [-0.2890264037518959, 0.4742343140249077], [-0.38342627593797324, 0.6278507421389521], [-0.1713845156515083, 0.6814777043475925], [-0.16961525557528362, 0.6494712742210254], [-0.15172098497631617, 0.4189213046123669], [-0.26533962594209115, 0.49953124441989266]], "data07": [[0.42136537461517143, -0.5667586478587163], [0.479499228931463, -0.5060589956552848], [0.4605992346581644, -0.651059969736042], [0.5327881960839465, -0.5482787905521185], [0.3820487194005608, -0.5372177462293285], [0.38204871940056107, -0.5372177462293288], [0.3585024367322353, -0.5813142216745834], [0.35050222002193054, -0.6043713201547545], [0.3235618696338323, -0.7048828919399419], [0.40308996209433506, -0.6027941452822383], [0.36600195264682095, -0.5815569995739776], [0.3967649954271426, -0.6717110879960219], [0.024656533462079768, -0.5760713578139004], [0.14168769756471217, -0.6850483971884521], [0.3287025802774828, -0.6116802104207417], [0.4468338814253736, -0.500402749705382], [0.32696302758255147, -0.6308701804941886], [0.42136537461517193, -0.5667586478587172], [0.38185084404928105, -0.48052713553855236], [0.3585024367331869, -0.5813142216737042], [0.3743975587801526, -0.5184289989659929], [0.3323845681054824, -0.6821580596933026], [0.4510285772441034, -0.5289854408290292], [0.460599243885876, -0.6510599631187157], [0.403089962094336, -0.6027941452822387], [0.46961762921082284, -0.4735867439469261], [0.48824688395839766, -0.5215414015888982], [0.37129721487299755, -0.6121775138636123], [0.34669279086458743, -0.5119500495748676], [0.2846191200060577, -0.5719136672255862], [0.2474159571470856, -0.6949369625733093], [0.32870258027748195, -0.6116802104207406], [0.5696875440014273, -0.3501104479774828], [0.5327881683254461, -0.5482788209191183], [0.25841038488084234, -0.6154479651628746], [0.3585024367348633, -0.5813142216721552], [0.4679063239384102, -0.5190187919753775], [0.2838763533071129, 0.5590657844337703], [0.40308996209433534, -0.6027941452822404], [0.460599222017456, -0.6510599788008814], [0.23844311641564256, -0.5297838068532553], [0.46059924431152444, -0.6510599628134768], [0.30433434105319696, -0.6092601215489979], [0.48824688395839716, -0.5215414015888978], [0.48824688395839716, -0.5215414015888983], [0.5030552866861544, -0.29653331656966886], [0.4261540047890414, -0.5136702116963257], [0.403089962094336, -0.6027941452822401], [0.2800322866227886, -0.4724022421867698], [0.4030899620943362, -0.60279414528224], [0.4030899620943361, -0.6027941452822398], [0.3820487194005626, -0.5372177462293276], [0.28029630412684764, -0.5399817758712704], [0.48925695546598386, -0.5966654370054145], [0.4882468839583962, -0.5215414015888985], [0.48167115909390745, -0.578835401022317], [0.48106839844103483, -0.5021286125351024], [0.2313325824916707, -0.6460609308201358], [0.5830493765669422, -0.458152788478485], [0.4882468839583973, -0.5215414015888977], [0.4679063239384103, -0.5190187919753775], [0.43316493038905685, -0.3803539555352359], [0.0952223904941572, -0.6402438510724847], [0.40445487195802116, -0.6241443777296644], [0.3585024367329095, -0.5813142216739599], [0.3335849945107654, -0.633110749241533], [0.4605992435639819, -0.6510599633495511], [0.460599243966301, -0.6510599630610421], [0.2945485699812255, -0.3359841569139249], [0.4605992315843042, -0.6510599719403546], [0.4701523549469542, -0.34889914975635844], [0.20090536072252543, -0.5871462740102514], [0.5004249705097333, -0.3118283711319518], [0.2807466876369804, -0.6975423289918075], [0.3767519832028901, -0.5639157625832397], [0.3585024367332802, -0.5813142216736176], [0.4030899620943358, -0.6027941452822396], [0.2779523250018394, -0.22562603730937156], [0.4213653746151717, -0.5667586478587174], [0.4030899620943359, -0.602794145282239], [0.4030899620943376, -0.6027941452822383], [0.46059924387365364, -0.6510599631274796], [0.4820280329254028, -0.5620377662365577], [0.4892569404440418, -0.5966654496203524], [0.42615400478903964, -0.5136702116963295], [0.35850243673220183, -0.5813142216746131], [0.19694057564435696, -0.5782079317884018], [0.3335849945107612, -0.6331107492415349], [0.4030899620943359, -0.6027941452822386], [0.4030899620943357, -0.6027941452822385], [0.47949922893146135, -0.5060589956552831], [0.3182866199676966, -0.5893570006172836], [0.29540888143910876, -0.5695366247259696], [0.40308996209433595, -0.6027941452822384], [0.3951502620938323, -0.40926474624484344], [0.4605992473662455, -0.6510599606228921], [0.4342833196539508, -0.5976544460202179], [0.06254616481708171, -0.46048042319764054], [0.4219942981561328, -0.288087435270044], [0.426154004789038, -0.5136702116963289], [0.4660647162446718, -0.44839463168237326], [0.4030899620943364, -0.6027941452822386], [0.25347401093833666, -0.5630406106254479], [0.18414272215471816, -0.5469901741570592], [0.15738505646381834, -0.6512487066964373], [0.42136537461517176, -0.5667586478587177], [0.3636651183947549, -0.4971570677676842], [0.3818508440492804, -0.480527135538551], [0.4794992289314614, -0.5060589956552831], [0.6127878712990977, -0.33429803156187493], [0.47261577041986563, -0.6187962125605835], [0.4030899620943363, -0.602794145282239]], "data08": [[-0.26262932722014887, -0.20193426266360198], [-0.6746739747705665, 0.045313681138560574], [-0.34145253116135454, -0.1909121729769744], [0.02053190910030234, -0.2439863472879864], [-0.34245928753247695, 0.04152127525567571], [-0.6468421610746807, 0.1261135091354306], [-0.23601992639852956, -0.2381047957677611], [-0.4670998894908317, -0.0026330963597972186], [-0.4142005490139351, -0.09003380847427735], [0.0506532686280214, -0.1390825524536713], [-0.394934285326426, -0.4436459456607364], [-0.3092413103287072, -0.632407831684568], [-0.405049610915274, -0.491950035878336], [-0.0685174825575549, -0.14327345096208813], [-0.41809946292645034, -0.3996334813359176], [-0.6754574648796625, 0.11324738466234589], [-0.6221269200111463, -0.41238689938385215], [-0.32630849498600195, -0.32512556119632485], [-0.2448156456557409, -0.28519566382387884], [-0.2946656657903013, -0.12731511045247282], [-0.6686022941068848, 0.19432933774371267], [-0.4259439798556475, 0.04753414792567687], [-0.29200650757294316, -0.39894739578837995], [-0.5525618745358974, -0.40030226505215327], [-0.13139190952720622, -0.4079401241942466], [-0.2561547488761955, -0.3279732722132437], [-0.3503642746162387, -0.4758360328260937], [-0.4350796377135737, -0.3155120670096926], [-0.5000802791817937, -0.35128226019328906], [-0.1856579705389926, -0.48897406515886827], [-0.45455355352329974, 0.06744548342976082], [-0.6872885455628729, -0.08431291539590303], [-0.6572683141025719, 0.2793315624267861], [-0.6580850140224984, -0.4202540230963273], [-0.6330972220985891, -0.33378204462618283], [-0.6194900430679148, 0.2558233258464135], [-0.043426258175909976, -0.5220188161215001], [-0.7364659020923277, 0.06814613443972603], [-0.28699364210834477, -0.4661755963097581], [-0.4886167051894302, -0.1963854605140011], [-0.5399186267025892, -0.22929987253475476], [-0.19199670486744316, -0.5210390507132227], [-0.4037672846149903, -0.10326360320965997], [-0.5021711330198673, -0.38848639586364864], [-0.5438405540032532, -0.23308752935086582], [0.05606650963763188, -0.3541857698643464], [-0.21794273528194064, -0.4573794101230468], [-0.2999922413781144, -0.5321227262670536], [-0.738641479227575, -0.0019508701973526663], [0.004385623782598345, -0.5292153222921399], [-0.4011048576600269, -0.5134900862220276], [-0.5223575241867595, 0.1061416327777988], [-0.6872885455628707, -0.08431291539590284], [-0.6353599458008109, 0.1258324144346527], [-0.7519988866631858, -0.04133137093573716], [-0.5778684498889458, -0.3493954701331319], [-0.3155586105153099, -0.3823655806869899], [-0.4986384701671899, -0.33428521917125276], [-0.7364659020923261, 0.06814613443972552], [-0.7364659020923264, 0.06814613443972574], [-0.5478531557198556, 0.04226944374345829], [-0.5466718252208893, -0.1371836036665365], [-0.6586612363369434, -0.016671147825637004], [-0.5526697091760552, 0.1696845144928569], [-0.706366861131428, 0.05701404679883692], [-0.30766525490852326, -0.00937414274457336], [-0.22133100876353448, -0.06307215192099926], [-0.4795498638412513, -0.07101439911055615], [-0.03924023281749217, -0.5150959817770773], [-0.22979518252339526, -0.47265938829914556], [-0.423322842315927, 0.14066308760899965], [-0.3581866255702473, -0.5935450711028517], [-0.5779907489965321, -0.1407656820817733], [-0.570077877865105, 0.06855271761514016], [-0.20386622098185864, -0.03272698492996455], [-0.5603883736208233, -0.3852311000757852], [-0.1572986437073699, -0.5156583658786714], [-0.6842647512293062, 0.17402814161803884], [-0.6091101240068697, -0.14393529289262938], [-0.3674346254153415, -0.38495303418056853], [-0.6534926395682262, -0.3671231601558036], [-0.6534926395392351, -0.3671231601976505], [-0.7364659020923277, 0.06814613443972588], [-0.6720506382721347, -0.34604143468837456], [-0.5779907489964939, -0.14076568208187268], [-0.3134035467320261, -0.4967222732004502], [-0.7316123366289751, 0.25244250939534285], [-0.30572273541288547, -0.6089177435022131], [-0.16857447310426818, -0.38541874020573474], [-0.30265288336650764, -0.42330211810819246], [-0.4613193172447786, -0.355344815724164], [-0.35294826551605374, -0.5715196331335687], [-0.35565419952722466, -0.3379210679326596], [-0.15304128518666893, -0.4734261093313319], [-0.555595314237998, -0.36140563413532656], [-0.41295702396229145, -0.3800739299321549], [-0.5582340116628678, -0.3670203913461029], [-0.6901134917581393, -0.15187658007563218], [-0.5071763291914515, -0.2589723470045897], [-0.6411539961673336, 0.2314299542959661], [-0.6563288142561476, 0.09194507272303722], [-0.6702073375355175, 0.16156362555939496], [-0.36029469115874985, -0.31030564762847784], [-0.38141398586056613, -0.2290960407222645], [-0.1314312468027509, -0.2819905473578291], [-0.18659789205499613, -0.02460290121733859], [-0.1684591378142528, -0.4579507660163551], [-0.6715382322754121, -0.034741592491166436], [-0.3859235284465211, -0.3336972781986118], [-0.43942786681667806, -0.031889868590199384], [-0.6195921143307886, 0.14551404041382007], [-0.736465902092328, 0.06814613443972566], [-0.230413397798151, -0.4209444066407105], [-0.6926044766370111, 0.12886434507088312], [-0.6944102081383667, -0.04514184221591532], [-0.4213855152951418, -0.19746009605159612], [-0.5470190404089131, 0.025959765987604928], [-0.5779907489964539, -0.14076568208198], [-0.37332680335021384, -0.2822300857593288], [-0.24215715516061403, -0.39976317689187335], [-0.34002765363116977, -0.2126510893905936], [-0.2340987461941976, -0.4963776316029475], [-0.23397495306186683, -0.587717772542487], [-0.40998140658159865, -0.039722727059842824], [-0.059243777481632204, -0.7176417675721746], [-0.622118274662882, -0.01866194399991895], [-0.670207337428053, 0.16156362579495842], [-0.407878590939271, -0.33307536350782396], [-0.19199671190105505, -0.5210390514780437], [-0.6831847775205036, 0.24681858056720982], [-0.4011048576600281, -0.5134900862220265], [-0.4911434731281463, -0.15062753505256793], [-0.5684985789599624, -0.4684251942489814], [-0.6220786003876989, 0.19844870144178858], [-0.41809946292643885, -0.39963348133593907], [-0.5271126693021163, -0.06318839568797309], [-0.18384780584559762, -0.19962489171245143], [-0.17583462378772788, -0.3642117266376367], [-0.5160318396870255, -0.2192409996571699], [-0.3028286441625815, -0.45580632403132354], [-0.6580787360642708, -0.42026247170241804], [-0.374588733789384, -0.3446969133690429], [-0.5887151224529855, -0.39950228972228213], [-0.6872885455628716, -0.08431291539590294], [-0.3825953555178928, -0.5814235129845794], [-0.3192317318992409, -0.2588026901243233], [-0.3192317318992441, -0.2588026901234237], [-0.6965228586001689, 0.18660907761860515], [-0.7364659020923275, 0.0681461344397258], [-0.6263062162227145, 0.06502418231332453], [-0.5700778778651048, 0.06855271761514013], [-0.47525749081422913, -0.4134241456158825], [-0.20715507095196903, -0.5616765820371722], [-0.3529482655192585, -0.5715196331341229], [-0.2967172228365027, -0.4878420896717397], [-0.39135838367312403, -0.17185318438686134], [-0.6872885455628701, -0.08431291539590266], [-0.31441506930312957, -0.3438420286162571], [-0.6532267586984593, 0.1978129416216424], [-0.41809946292642036, -0.3996334813359729], [-0.41493467008159685, -0.4570723483285541], [-0.7364659020923269, 0.06814613443972589], [-0.27535740360711164, -0.4485220627831727], [-0.7364659020923267, 0.06814613443972599], [-0.5818048391736033, -0.43522587113066535], [-0.3825953555178866, -0.5814235129845831], [-0.40504961091527464, -0.49195003587833525], [-0.4962218186803071, -0.16269380949029966], [-0.43720096711793077, -0.4795189485931182], [-0.5793461231696101, -0.4503353040192378], [-0.44693608183614136, -0.27885329629529226], [-0.6872885455628698, -0.08431291539590269], [-0.6247280157759286, -0.2836173324804261], [-0.2339750429825127, -0.587718506573228], [-0.4405136519473428, -0.4111870557580716], [-0.35569156281072595, -0.5000461112855169], [-0.3825953555178826, -0.5814235129845848], [-0.4019856727251309, -0.17560589301374643], [-0.5070048085138765, -0.2888728292496602], [-0.5039186435505293, 0.10546447938594838], [-0.2339749546361397, -0.5877177851806351], [-0.40504961091527425, -0.4919500358783354], [-0.6590695686245012, -0.00014323016483988092], [-0.4050496109152741, -0.49195003587833597], [-0.4454105648123798, -0.34072226554939167], [-0.5338402155251107, -0.2703116904325917], [0.028083185440497174, -0.7324620440707258], [-0.5592175145143478, 0.011528290664049317], [-0.3837530581578006, -0.04680872120396746], [-0.4809280754236775, 0.083272035913496], [-0.6055156132100903, 0.06390093853206243], [-0.295738380971182, -0.30529543477746346], [-0.3944738707313292, -0.5652272751607335], [-0.5481063003047653, 0.205213112613149], [-0.42532321984301946, -0.09628399177515443], [-0.3685026917386864, -0.2716408118058054], [-0.31250352775649354, -0.14944336122902074], [-0.3779322725137875, -0.5277244232409611], [-0.5813433456960804, -0.1579101171428024], [-0.674849115716027, -0.028887714264238345], [-0.44515101762170306, -0.4325738944923881], [-0.40005647612027956, -0.3419713285075178], [-0.49084254888008966, -0.3128268157703691], [-0.5900309374219752, -0.025241488278955563], [-0.7150794125689095, 0.02202628875786217], [-0.22597509179639896, -0.33044715055117097], [-0.6763829295930142, -0.11455291034268977], [-0.2902218020869717, -0.34776712023710377], [-0.297782296506759, -0.3614468585665045], [-0.6565573584431963, -0.0023720915388522864], [-0.45679900904306653, -0.3149960057026744], [-0.3304042407203254, -0.5752218119273045], [-0.05137881427764032, -0.7287803500239065], [-0.3493522429588913, 0.13062196694998296], [-0.7364659020923268, 0.06814613443972668], [-0.7364659020923268, 0.06814613443972593], [-0.15935142870065555, 0.017773638304376466], [-0.4719351127650221, 0.034795190889607426], [-0.48123736384241006, -0.20119145944704517], [-0.7364659020923265, 0.0681461344397261], [-0.3445025551404717, -0.3118025157562978], [-0.6075925545096249, 0.10139678971769094], [-0.5058201639117779, -0.4846476749476213]], "data09": [[-0.16960159488761428, 0.5362249458520176], [-0.4786801758618849, 0.5667085043904763], [-0.07303506495527179, -0.049525967465790216], [-0.6133487809457806, 0.24501911377835126], [-0.5136655526766544, 0.28692258688201994], [-0.03107062759339434, -0.18216195049578815], [-0.3171158878723209, 0.4485625050286434], [-0.4678885739335248, 0.42998557424069583], [0.12160968223767425, -0.19066675198295013], [-0.4261551060502857, 0.3861707162716019], [-0.0816069647997409, 0.1868817668114491], [-0.19635853425203323, 0.12147869606592547], [-0.4786802059538958, 0.5667084722991471], [-0.31218252636104066, 0.3985900082315718], [-0.2608691764354381, 0.3947922183037471], [-0.374741096617995, 0.5120973187892987], [-0.009081346260489115, 0.22134738635144807], [-0.35252846693860107, 0.5265829785983926], [-0.18345088102692894, 0.4469773130689314], [-0.17425336824568047, 0.2954104087075039], [-0.13241994569744306, 0.2705899134106099], [-0.05967885797252678, 0.2595007944873343], [-0.2705650397224572, 0.34297846614890093], [-0.11063115232425288, 0.24100218701595533], [-0.23166365777796893, 0.546109437327141], [-0.1807754208491847, 0.44554071519699756], [-0.3546609668385057, 0.45202982514302326], [-0.3058810448602403, 0.46592640127759727], [-0.39866537465160307, 0.482226959744389], [-0.0641463097084198, 0.17745886885340612], [0.252540447496064, -0.14617420761624939], [-0.2305639738735784, 0.386766872061756], [-0.4788889648498318, 0.5664848759587344], [-0.21002433835491552, 0.4152333606352825], [0.17091086837809336, -0.16095659271707166], [-0.46925462829445624, 0.32741542581602184], [-0.06826215926954023, 0.3857380463351516], [0.022021946818260037, 0.24855671047687325], [-0.3040114869081971, 0.4917475515782783], [-0.30588057960491927, 0.46592613874089106], [-0.08389538580461885, 0.7754290688279237], [0.12340709567611911, 0.6109074054711127], [-0.5016144651119212, 0.4715610871740625], [-0.4251939612353013, 0.5065949232078832], [-0.3292990337163823, 0.06971369027646887], [-0.11344713871530888, 0.3840075363387348], [-0.20553192029877615, 0.5613521300129583], [-0.613348780945782, 0.24501911377835042], [-0.43721803472635334, 0.5567336627086112], [-0.4618029985067458, 0.4740915017372627], [-0.3284866110176816, 0.4518869986805798], [-0.2025699300805342, 0.4710378839030026], [-0.5093223409833075, 0.5314162632223043], [-0.1439108073804762, 0.3449772490370419], [-0.46786255709673413, 0.4299579044857429], [-0.39900231374556555, 0.46696257966962573], [0.2800335057461108, 0.6037422944549128], [-0.49718220922234946, 0.2566396044816782], [-0.173391970148606, 0.5570323104176126], [-0.20018421701328418, -0.13279952551233065], [-0.18045407747107212, -0.23194796716341123], [-0.49042163973959396, 0.07562545280982959], [0.046272989717620214, 0.36356383159827993], [0.33635267193844864, 0.044173880662829144], [-0.21293703807288925, 0.5868110115428781], [-0.2766719295053644, 0.05943824197174375], [-0.0503645377809494, 0.40510751413214297], [-0.33111451938953096, 0.3381070908798503], [-0.3016314963424439, -0.01430493782101036], [-0.39457681769103925, 0.4922471873241174], [-0.2028701945894384, -0.22544257671758652], [-0.35366121388271127, 0.5271835417348256], [-0.027239168006859455, 0.030508080482310025], [-0.21807155469473152, 0.40245858333552026], [-0.18767970540518142, 0.37434334281401316], [-0.4653313835142739, 0.34014957458426065], [-0.4265527526996735, 0.2870547646686235], [-0.44385887134010754, 0.37460612165497453], [-0.36765052850649793, 0.41922273417784284], [-0.6612136316074474, -0.32704961935192406], [-0.16387258825259884, 0.15785138209000912], [0.18595651646299924, -0.2728944083438335], [-0.5643699541130346, 0.27574549975165796], [-0.27313146909503855, 0.4391643396799696], [-0.1350339179755548, 0.029825852011740702], [-0.0320088033732386, 0.6943024184113682], [-0.1914660849392093, -0.16936650683865914], [-0.08736064799883314, 0.22366359856817178], [-0.21182723589951, -0.3774168605519902], [-0.47580729491239704, 0.2640038573064773], [-0.385543778319271, 0.2702538975749862], [0.1901516930078947, -0.16109932189883736], [-0.4692546283501275, 0.32741542583243827], [-0.5059337241296175, 0.2982765075446367], [-0.2683271058424192, 0.2257157657791932], [-0.18255355336070386, 0.4588687112128083], [-0.18753548290089403, 0.21720276689827137], [-0.3827304543303105, 0.40903657913259545], [-0.22718429141829727, 0.35669687213493856], [-0.03923658770383032, 0.4311361282794499], [-0.03435318124469625, 0.5894584212004406], [0.08797601759091221, -0.08054402688730107], [-0.5016143857528907, 0.4715611738547278], [-0.02239735393727817, 0.2861376685889836], [-0.26466418679389825, 0.5519941240702414], [-0.39598924755146797, 0.23349106887720236], [-0.30041892545664006, 0.5486362024711356], [-0.06903430647860288, 0.35996217080404047], [0.2357063394093611, -0.1649693756645209], [-0.33232916135765017, 0.46290543302429554], [-0.17485802294243774, 0.23258951440872208], [-0.4699777101021556, 0.5298795211433719], [-0.2861637503181449, 0.5167423751712898], [-0.10468387692819299, 0.39079855937201746], [-0.32759421693714225, 0.2092728443107283], [-0.30958129461386724, 0.5184796897981816], [-0.38273045435244996, 0.40903657915621083], [-0.42353243480505337, 0.47977161717240646], [-0.4946488579497043, 0.4893866862527412], [-0.08389858200785183, 0.7754289776625155], [0.7211446717226352, 0.20359571777348107], [-0.18045407854898837, -0.23194798362643498], [-0.455930987656423, 0.5164816203345389], [-0.21519165956198397, 0.16302987315261364], [-0.3776680079366111, 0.5001471347379569], [-0.38470034327130087, 0.37946907903841975], [-0.2033106805193928, 0.30216827438051364], [-0.37608091632754986, -0.12628324191196552], [-0.18963979042122098, 0.41497524770580213], [-0.5387358012265713, 0.4230295925012661], [-0.15346672410832576, 0.31238749754440975], [-0.40812592237435075, 0.33053613206148785], [-0.041046812746125795, 0.1673921298918713], [-0.09521421803766207, -0.18621883241544418], [-0.3337224635910842, 0.3041146843111616], [0.11639445167361162, -0.6517693267878069], [-0.43772805367332274, 0.24630000810779457], [-0.35158982189371873, 0.3926988860121076], [-0.16924694025040543, 0.4943563331306746], [0.1709846099155744, -0.17290356103408736], [-0.17928088716869842, 0.4837393379764483], [-0.20799120635786858, 0.15576857166935706]], "data10": [[-0.05415313080742709, -0.6249803016386397], [-0.1663493885337333, -0.654410501582312], [-0.1640580247364303, -0.6016754541142498], [0.5385890941160979, -0.5419127560862672], [-0.17158284021362447, -0.7114588082267638], [-0.1715828402136245, -0.7114588082267638], [-0.057055123241308084, -0.6722803753107217], [-0.25882171718907965, -0.6039082627967678], [-0.09104249820819167, -0.6107462494141834], [-0.14989692496310783, -0.45258302438292203], [-0.20293505356908237, -0.5686813827800957], [-0.22404897443826638, -0.6847974398813109], [0.005250427670331223, -0.5498939888926707], [-0.16263174439724948, -0.5725497083855431], [-0.09740575330046497, -0.5496126545669034], [-0.2588217171890793, -0.6039082627967689], [-0.05705512324130824, -0.6722803753107218], [-0.013571962841937683, -0.5799650917285516], [-0.01840968156518817, -0.6164846007632572], [-0.18722247879932435, -0.6751861436258132], [-0.18367495710707696, -0.6461502950487622], [-0.156003316325432, -0.7012041276873107], [-0.18828643690158886, -0.6417227625686984], [-0.10486596559439987, -0.6926725595467087], [-0.17158284021362438, -0.7114588082267633], [-0.1978576563266081, -0.6024400714808664], [-0.07382323227476029, -0.6282107666356342], [-0.18924800613635973, -0.690369987019152], [0.0682491145318681, -0.5982003011110171], [-0.20551591794925628, -0.6138118812392287], [-0.22161878676485156, -0.6875088184302188], [-0.01532121115373209, -0.6080595284808575], [-0.05705512324130821, -0.6722803753107214], [-0.05705512324130821, -0.6722803753107214], [-0.17158284021362438, -0.7114588082267643], [-0.15600331632373018, -0.7012041276878538], [-0.15127054019539232, -0.6305525661541208], [5.425549409503831e-05, -0.6579823359856942], [-0.18627118697972206, -0.5807515034207558], [-0.25458334030975255, -0.6567419138765582], [-0.2387517001595344, -0.6407041614233494], [-0.05705512324130818, -0.6722803753107217], [-0.044474484122382904, -0.5113278884045244], [-0.15704609681237452, -0.6789220994446181], [0.12604508249469082, -0.1737620651946032], [-0.05705512324130812, -0.6722803753107224], [-0.17158284021362394, -0.7114588082267628], [-0.17158284021362405, -0.711458808226763], [-0.057055123241308035, -0.672280375310722], [-0.04859610738974165, -0.653652492598204], [-0.13835075371436167, -0.6889384633568841], [-0.17158284021362422, -0.7114588082267632], [-0.17158284021362427, -0.7114588082267641], [-0.12572275418990989, -0.6265234591042114], [-0.1579974586857444, -0.6926424907136517], [-0.12677648287297383, -0.6340457295513707], [-0.15364791862375926, -0.6952467451137815], [-0.11804658941563527, -0.7932362931440907], [-0.2588217171890796, -0.6039082627967702], [-0.09161568912140018, -0.6514460864002728], [-0.12174080215260086, -0.666571095392409], [-0.25882171718907965, -0.60390826279677], [-0.17683798217332708, -0.6619956774611407], [-0.17158284021362397, -0.711458808226764], [-0.17899391514077093, -0.65376140455776], [-0.05429922131470316, -0.5550193169478403], [-0.12114953875909912, -0.6087859944404493], [-0.09591637859433806, -0.6524034509515301], [-0.3175468058578295, -0.537529479194808], [-0.03585590147428258, -0.6624662859489452], [-0.2545833403097524, -0.656741913876559], [-0.2545833403097527, -0.6567419138765587], [-0.09400205189058883, -0.6727389789550545], [0.10059618797493462, -0.6502871394551251], [-0.2377650236699973, -0.6479365543413901], [-0.17158284021362433, -0.7114588082267649], [-0.15364791862349297, -0.6952467451138543], [-0.07450903646663723, -0.5855409515508541], [-0.057055123241308264, -0.6722803753107205], [-0.13065663820285908, -0.6708868000945274], [-0.12222000097338698, -0.5714966978088292], [-0.2515944412989641, -0.5301088045849089], [-0.06654936618883782, -0.5930300361456798], [-0.31697670244138626, -0.6133581192792865], [-0.19819173306602236, -0.6586231367684833], [-0.25882171718907965, -0.6039082627967695], [-0.28898422299337995, -0.6057552997116243], [-0.22404897443826713, -0.6847974398813093], [-0.09542268940083516, -0.6501772243788241], [-0.22259091617950363, -0.6157687922540969], [-0.20835049496586425, -0.6391935552651359], [-0.14287502210538783, -0.6910157237287736], [-0.2588217171890792, -0.6039082627967698], [-0.3494142245658345, -0.5476908065078648], [-0.07891857954700982, -0.657380957239595], [-0.17158284021362447, -0.7114588082267647], [-0.11630032094755402, -0.7290311138297716], [-0.19677953929092012, -0.577647588965003], [-0.25882171718907926, -0.6039082627967696], [-0.2588217171890793, -0.6039082627967692], [-0.2577391714867949, -0.5344257671311549], [-0.2588217171890792, -0.6039082627967692], [-0.18639100843301995, -0.5644143743291028], [-0.07382323227476037, -0.6282107666356334], [-0.1715828402136245, -0.7114588082267641], [-0.03135061829194365, -0.5888591145364093], [-0.04033712393422481, -0.6482867177655657], [-0.33240434258964546, -0.5980411455380508], [-0.11804659129857883, -0.793236292990509], [-0.2588217171890799, -0.6039082627967695], [-0.25882171718908004, -0.6039082627967695], [-0.05705512324130801, -0.6722803753107215], [-0.039164404402315674, -0.6476277130562974], [-0.2545833403097531, -0.6567419138765587], [-0.12114953875909913, -0.60878599444045], [-0.15375322502508726, -0.6637970904397916]], "data11": [[0.06681622258601067, 0.5822380167105556], [0.11776056336828117, 0.4162534914781865], [0.03342793667946896, -0.05672227017374429], [-0.0424013619857967, -0.13758277525490029], [-0.2926974741368746, 0.19436640995017362], [0.024480221373473804, 0.7058145070186124], [-0.005097930488569557, 0.19712940097140041], [-0.1538563888681889, 0.5804983841261693], [-0.08998444497246084, 0.49695242496594705], [0.19467702327447253, 0.3685441984112685], [-0.03437976464151218, 0.22471672734657236], [-0.26469313337829864, 0.28007335103145964], [0.0004978122300632378, 0.6721465840826043], [0.15928419832932275, -0.2674348611166155], [0.01381864289838111, 0.13994444421207666], [0.10653538652544772, 0.6536408257734183], [0.10653038426808967, 0.6262748552690807], [-0.20083486195392106, 0.7057111986039013], [0.26699336723147415, -0.26037133938121904], [-0.12040616293582482, 0.12579346513465917], [0.2652743906791162, -0.1113833898808908], [-0.19081524555259627, 0.6360125901806237], [0.17685937118213763, 0.0058575774937180206], [-0.304853193834574, 0.2932681840390407], [0.45188548662491057, -0.14060316543060203], [-0.23956046746898035, 0.4942765500984154], [0.25667037763243994, 0.6149573027420712], [-0.09585315735059899, 0.5922963142029256], [-0.3065547101237023, 0.1587476823479994], [-0.30983569998180405, 0.24318473794858966], [-0.04912054856977575, 0.3477328872537389], [0.22572538716971136, 0.4955400420898697], [0.28316423935734997, 0.6404082202073516], [0.164839000902115, 0.4174738405621493], [0.18838719765163847, 0.5256493734032348], [0.2216067732495774, 0.2771757433130275], [-0.13752656960636808, 0.6856767289437461], [-0.5140230029527323, 0.331995753086571], [-0.06696989148006202, 0.7211665344964725], [-0.15547363326373476, 0.5372642022355979], [-0.21957207093127462, 0.43689833587212135], [-0.46152051116091763, 0.5006112990106467], [-0.1482314902112423, -0.20979248505037265], [0.1351439152241474, 0.28655609950670796], [0.10646808018827314, 0.626401789447642], [-0.09906493331845605, 0.6588257222943038], [-0.061485779042165414, 0.6656689282012924], [0.11079047214354037, 0.4599219780011873], [0.18821142560221107, 0.4970467682325946], [0.2065923545087366, 0.046221953534575894], [-0.16030458032241127, 0.5810016439230625], [0.5739542213717043, -0.12801768731468818], [0.14673520687699207, -0.08839133614684833], [0.04235548252152776, 0.5874512231369812], [0.01035330087886146, -0.06750428184784975], [0.027698166241963453, 0.6593335089027285], [0.03833807580226698, 0.6386189219152756], [0.24270341935196663, 0.42168458197838316], [0.15940412047664562, 0.2388568232321673], [-0.07380033527258803, 0.5487731955349684], [-0.0009579976807391241, 0.13075460673366993], [-0.17182347177862464, 0.6333898912170187], [-0.11827564467347952, 0.5560379959494159], [0.014481746642255723, 0.3656005051166408], [0.07774878221277733, 0.6144450091034509], [-0.12978641229096374, 0.15240957126818083], [-0.3085016378336343, 0.5985940633159994], [0.242703832782812, 0.4216838364194809], [-0.006688148878340593, 0.570208363274989], [0.07774878107839811, 0.614445011603399], [-0.38899789660407774, 0.429792182556649], [0.05324193026450731, 0.5618941863521633], [-0.014941823101888334, 0.6879439372921266], [-0.09816404587201052, 0.31796956803744675], [0.0653698668472652, 0.4159230252010877], [-0.06421902692509793, 0.6516081991676267], [0.18381777871209173, 0.3774953690941162], [0.16068212041477084, 0.3641773870403172], [0.2544185679906076, 0.5403479771958309], [-0.4551984833658069, 0.4331256678787682], [0.3013901240506685, 0.3568568251995588], [-0.38674266654341866, 0.4090370306443521], [-0.349796789461769, 0.6114833890911444], [0.4040212815814284, 0.08729342976335294], [0.020753394169179745, 0.49998550027784383], [0.17765724201911492, 0.2422882317803381], [-0.05174202842394217, 0.604779405095071], [0.15897391224527574, 0.47783567211396066], [0.15461663354156702, 0.49673232946628837], [-0.028706894249968095, 0.7170362907307459], [-0.2636510177292952, 0.22811036528166195], [-0.06696989153798853, 0.7211665344938372], [0.10653514095189152, 0.6536410289689641], [0.2570793311806386, 0.5692681115936199], [-0.4106239594492481, 0.23268170457390794], [-0.08037540681836682, 0.2489217207867995], [0.16106515899677668, 0.409370339269455], [-0.4355865658437635, 0.3377632011519725], [-0.06696989154417096, 0.7211665344935518], [-0.12071497727031681, 0.3443011949360115], [0.3065412884087995, 0.17662636365339454], [-0.09067663986868625, 0.6967801426107612], [-0.06696989149612227, 0.7211665344957408], [0.2905771779274037, 0.39234969904980765], [0.159407266523955, 0.23885062664226187], [-0.06696989153771779, 0.7211665344938473], [-0.13752656960636836, 0.6856767289437466], [-0.38801678140909096, 0.13638201161120073], [0.3682200190625602, -0.08893450449740914], [-0.1970346690345107, -0.025190478338708633], [0.05706626587160253, 0.5203803103690234], [0.010087327101679953, 0.6482065337002667], [-0.3372058057509468, 0.3655651070838029], [0.26589164886563804, -0.00559551647864862], [0.3874046417407221, 0.19041394700044553], [0.3874061389019743, 0.19041271561634573], [0.3006704719210979, 0.5627619295942956], [-0.1588664974422366, -0.2553020685061797], [-0.02188966660704755, 0.6591967719581083], [-0.2422266674630575, -0.2187033406961802], [-0.06164031877493209, 0.4527439115323021], [0.14560120022903422, 0.7101784427859114], [0.0639187344730404, 0.6782070241733161], [-0.10973827525698909, 0.6789230393366396], [0.5070141207168744, -0.13919387862998972], [0.19492785810506733, 0.29328397945017415], [0.3744024601879115, -0.11788999745005939], [-0.28016754229315005, 0.6028103780566795], [-0.4242564688854081, 0.44259566481383583], [-0.18445897683485524, 0.34392538620777957], [0.03614073291118197, 0.029566614887382766], [-0.06551691676331002, 0.3790706969058205], [0.0671560770684596, 0.2937879315212005], [-0.09853194984297661, 0.6933217834311961], [0.27503779837325626, 0.3412441230024609], [0.1704107179448532, 0.5775742844476104], [0.07400660322100289, 0.688869041701955], [-0.08179236421528285, 0.6500121478563632], [0.21375805615919108, 0.3318654038998961], [-0.21077450128211375, 0.5723273185160698], [-0.14981375612042858, 0.4428911706399834], [-0.20346784470335874, 0.05193090387705546], [0.10156023062085609, 0.03545992277948798]], "data12": [[-0.5905911924533361, -0.5340245525540904], [-0.035418783076371876, -0.28147575671136993], [0.0668418743713398, 0.48647053429799825], [0.23857373347905958, 0.6685449162444046], [0.43620452482086025, 0.3474211636279431], [-0.4699107270168462, -0.5486711884763581], [0.7753042155671804, -0.04109158480010905], [0.24942043057904892, 0.30134855467147387], [0.6831821108586936, 0.2902785068233135], [0.6831821108586921, 0.2902785068233179], [0.33438799107819134, 0.5182988908027746], [0.3127683193040489, 0.010768635302764845], [-0.6224789097295924, -0.4878644868431276], [-0.035819426601223, -0.28982457827118957], [-0.04174866123034377, -0.37380021545991654], [0.7809264947133406, -0.29578761199279663], [-0.5885702456913529, -0.5359616862424385], [0.33010975234619294, 0.5779963580315554], [0.38390585750349665, 0.6666087692292055], [-0.12162947839793566, 0.06283868911925947], [0.4842219172214993, 0.08249781312791755], [0.6671014923156389, 0.2586229551682034], [0.4161276516098551, 0.1312688644319809], [-0.23572858612070519, 0.23090531684082918], [0.18868908542939375, -0.36805220826480284], [-0.2583987300352158, -0.4226959238387864], [0.27919589746254025, 0.1028647175361022], [0.25034541214627704, 0.023645531514248464], [0.34190941850645223, -0.3598703473137461], [0.08054357585382105, -0.747612406483501], [0.11982110722166747, 0.7370036358088126], [0.22116581628668058, -0.310034056438829], [-0.5607798732637596, 0.6304287123336207], [-0.04608510773094825, -0.4329525164628129], [0.5238388919874695, -0.17035075979759062], [-0.5035390003528193, -0.5036661373119491], [-0.6261572600398326, 0.5607442830587857], [0.6494594163174637, -0.23704522823103857], [0.6593393051377954, 0.37146851845956824], [-0.4961839268895511, -0.5486729120663064], [-0.6391518058094608, 0.5448407670059715], [-0.3594443197393713, -0.7636982622418036], [-0.16519117186375457, -0.27219942020798116], [-0.5944640155338076, -0.47383953469862145], [-0.11840748223742457, -0.5168596850850118], [-0.020954557764304108, -0.14122729333060444], [-0.588583656603095, -0.5359488532976164], [0.4524111248882657, -0.00063358627309017], [0.6235882327717577, -0.27164144819931435], [0.05570859692979612, -0.6853716009678625], [0.6940681617922861, -0.16585059325726836], [0.2509478033879504, 0.7037074954311257], [0.8100172637872849, -0.1987200213763824], [-0.6617556068038961, 0.5153227220645202], [0.6681622751232397, 0.19052673633619682], [0.6669070754790635, -0.31865017838328585], [-0.6716801944881757, 0.5016616340218192], [0.5801343287122139, 0.16522541265853857], [-0.17995897770421085, 0.09439817918971692], [0.8257006733264556, -0.13209149555052824], [0.45778858837811276, 0.288833178789245], [-0.53573498465734, -0.5011168719819821], [0.6440151054669709, -0.13498383227785088], [-0.6148021332943151, 0.2992797396084889], [0.5347238951320007, 0.22482377020833955], [0.6669070756079456, -0.3186501780618324], [-0.03153088942030329, -0.3073625959674997], [0.07515013985030686, -0.18937028855892588], [0.18563471665217157, 0.20340851297797188], [0.3764070958993452, 0.32729847127206657], [0.2768570038513798, 0.35637446718535176], [0.6819477246332192, 0.1545757697758484], [-0.6161586716271041, -0.3491209234812314], [0.683564390381527, -0.37377323442371596], [0.7165860787650472, -0.23191778322103118], [0.5628572746559019, -0.20735935553999796], [0.6636835721170189, -0.34731013967031965], [0.010193404007595793, 0.8438638769252762], [-0.3044935065044918, 0.08815363141236596], [-0.5266572180202991, 0.4863675154760246], [-0.3497253761302936, 0.0790604774015844], [0.29443870270277717, -0.0019091740608661598], [0.561111143832692, -0.342390357235354], [-0.3852875223569951, -0.7493685620263881], [0.7381132454550766, -0.1914136027259091], [-0.35637606204021327, 0.2204325533982003], [0.13585020713669949, -0.7190036637467286], [0.5628669986164803, -0.5681823062638629], [-0.041646508935948394, -0.04059606043158736], [0.28233163676689693, 0.17383807920239014], [0.4040910399400538, 0.5922000236888036], [0.6779995069140516, -0.203198262747221], [0.6835644025255821, -0.3737732112481407], [0.07356570018558739, 0.15074723917026173], [0.08270008328517718, 0.8371878665211838], [0.15024252717673492, 0.7591215769109183], [-0.5788424872960413, -0.500646169181302], [0.7434429510209454, 0.21646034555711513], [-0.6809605931865982, 0.48854767063643323], [0.15605415533289413, -0.6217305962290822], [-0.03192546291992851, 0.14507905866534807], [0.5799554235505432, -0.28636617929478186], [0.18943209993713664, -0.09969541150501876], [0.6235882327717865, -0.27164144819925357], [0.5223403783573405, 0.2967935198494633], [0.2787001022709647, 0.6626764635958252], [0.5810952359845388, -0.44103799422470474], [0.6450943237913055, 0.13970134815361096], [0.6835644025255828, -0.3737732112481407], [0.6784802569009698, -0.2648977448086395], [-0.4588052291525706, 0.5589296224696337], [0.6064528890244697, -0.2516918346526619], [0.2277353833077903, 0.586054489449072], [0.4358425591641456, 0.30013332535361587], [0.04665181976780802, -0.8351219685456264], [0.38390585750007483, 0.6666087692309348], [0.0007309014274335761, -0.4377648230234925], [0.3833274954076287, 0.5010902719942468], [0.00207484164104771, -0.7133524187174344], [0.283816042299843, 0.4742590119754952], [0.22521752389651567, 0.7209178938539115], [0.03897272520304642, -0.08487019291531012], [-0.39747931623734, 0.47373709153652455], [-0.11659150360049143, -0.11080205196826588], [-0.47661646799514357, -0.6911179854321802], [0.34667731971474586, 0.46299024133542677], [-0.5372205896098277, 0.651945866761893], [0.7537234151381067, -0.082207218125351], [0.14141795826967812, -0.8216273167761718], [0.19406022771413203, -0.8105056952744553], [-0.6709839040468293, 0.3099904261590279], [0.5393225946719469, -0.1508552984148383], [-0.5956492317598439, 0.4035497745518897], [0.13357564030638727, 0.7373151521429453], [0.7226654693332243, -0.2682135568620587], [0.49156310617061655, -0.15767306328662892], [0.131623661773957, -0.7645684814575631], [-0.5885751790359202, -0.5359569655435296], [0.108864745334956, 0.40562661411537276], [0.7621004051426975, 0.12005530500821462], [0.5837493974127349, -0.2992812793373681], [0.6835643983024039, -0.3737732193076065], [0.6835643992500061, -0.37377321749921383], [0.15534310987415453, -0.8188540898196828], [0.6565306389499156, -0.17072673570516606], [0.6352092661098766, -0.333786261189877], [0.18147784789752747, -0.813279556406318], [0.7537234152248958, -0.0822072178340393], [0.6277548522454152, -0.23470932599485386], [0.3009630369295717, -0.19125677114723783], [-0.12401097533580624, -0.0712534814205512], [0.6143721719838074, -0.21914548705921597], [0.5943385711442599, -0.12305493409117615], [0.3621186559162216, 0.5932912396554092], [-0.5116980859831048, -0.6657266240434411], [0.3878308883923855, 0.6002087510576458], [0.42662710007210625, 0.1347937095966053], [0.671049337720065, -0.30994849276866454], [0.49054195706072595, 0.2462905224649396], [0.44964893973117426, 0.28248237383314484], [0.14094107231363412, 0.5133605693118372], [-0.476831312877643, -0.6278246652360819], [0.6835644025255828, -0.37377321124814233], [0.5097017911767278, 0.28741479834688805], [0.2246574226028385, 0.6689721826071658], [0.6424662283257944, -0.3922465989646528], [0.2305302992884287, 0.45910591170404474], [0.6835644024120399, -0.37377321146482606], [-0.2454497342019023, 0.04188799348405027], [0.6017498262333529, -0.19559183474122058], [-0.38648535385219623, 0.17374591719722313], [0.3283069344630326, 0.4466909546429583], [-0.5607388276028505, 0.4698390102124277], [0.7537219078275688, -0.08221227748573993], [0.7537234151558188, -0.08220721806590217], [0.21174356062836397, 0.6798585672519172], [0.7881296116164699, -0.27497586796839807], [0.019758534359440038, 0.7626562291327015], [0.14924583551435533, 0.6755646078556677], [-0.6053307077685772, 0.20099789001930818], [0.7121358866812014, 0.1944847012197203], [0.5759929302113671, -0.5072997116414426], [-0.011108661495058573, -0.050177642149772245], [0.30222769801667176, 0.6720983280406997], [0.7254223513586663, -0.09802269096084006], [0.15807416127177956, 0.698448725648955], [0.6978160971560208, 0.17547192013148785], [0.3015555014821971, 0.6591121778966201], [0.23473630086291253, 0.5602821158233804], [0.657549803397951, 0.30002984705998287], [0.6575498061688959, 0.30002984150531103], [0.5589322434020312, -0.2796424035099852], [0.6957551173133715, 0.22082466232052944], [-0.2527004928834285, -0.7152117855245333], [0.30833740370130813, 0.45716892413789445], [-0.5626300146651697, 0.2837080722567965], [0.6813580232025748, -0.2438854076435272], [0.2547706306353259, 0.6824503361115701], [0.0634145303867593, -0.8333941934569571], [0.2549843532268581, 0.6419868824670917], [0.11731488288462197, 0.569584135501917], [0.2526712076685801, 0.6366214740923426], [-0.09523438263243843, -0.19758174737913578], [0.6558580678247783, 0.15928675291918576], [0.3840664241696639, 0.49888576373319654], [0.21989979117804956, 0.38725429384573173], [-0.4255041563305968, -0.7250496903976044], [-0.11759301520956685, 0.04814238439646731], [0.5031920965302356, 0.2878208145964586], [0.8002357708519581, -0.23539642454208695], [0.6533989584701784, -0.1905760373190043], [0.3813320352855207, 0.03125432921958789], [0.6813580232025092, -0.24388540764366007], [0.61271160709553, -0.18672097275816232], [-0.4589830109091428, 0.2780672205604096], [0.1923415497043565, 0.7493001528889304], [0.16163921938738576, 0.24757425159347696], [-0.5966236579136828, 0.5941829057919606], [-0.166964016089106, -0.015904384415539125], [0.5310853848154177, -0.28019706064956373], [0.5924724196760476, 0.14097837893040163], [-0.49420961317093165, -0.6787187425807015], [-0.5063259123428862, 0.54203715798652], [0.06684114902046658, 0.48646697641562753], [0.7068779195522044, 0.1339910921167408], [0.2544711997880121, -0.7132258690423512], [0.2883767258097716, -0.6817843092834016], [0.5519845815067592, -0.47965558981535356], [0.3101101808299764, 0.4764422819298548], [0.7721043128524858, 0.16480151386480363], [0.6681622751232403, 0.19052673633619568], [0.3038833908230805, -0.17920191309856356], [0.38783088839238533, 0.6002087510576485], [0.21489832600434638, -0.6433708913916947], [0.1440499553575055, -0.36975992628849386], [0.3707023502447187, -0.09629484379031006], [0.37207128573995757, -0.31106999474016067], [0.4719719778361471, 0.17243063554717072], [0.1826100996174131, 0.695356703098133], [0.09604699380772726, -0.8292632660463961], [0.7130337367496841, 0.10965781744542583], [0.11251708947611735, 0.18844970896325836], [0.7174724788353061, 0.17976827965018538], [0.6835644025255834, -0.37377321124814084], [0.5163413591565039, -0.1613031331957425], [0.09875935354525497, -0.7165900885739234], [0.716585741240359, -0.2319185823412969], [0.14013748005096838, 0.1335096450147082], [-0.012686207527682757, 0.35941819178359724], [0.7202409198407449, 0.2517588697180306], [0.668162275123239, 0.19052673633619716], [-0.4767967318704131, -0.6278486963443032], [-0.05147349362961389, -0.24255830234357223], [0.7537234151937877, -0.08220721793845016], [0.24132212899383843, -0.018633954656630418], [-0.06274157967221516, -0.24349010718713218], [0.09360700249968024, 0.04024845974391564], [0.10070426971907218, -0.6284759642482295], [-0.026680919946913906, -0.2601934740621944], [-0.5044857649970783, 0.4732211468396351], [0.2805664198990952, 0.6719511504472591], [0.31869960548043036, 0.2616375320635103], [0.585122818805434, -0.263598054416043], [-0.7061927704729862, 0.35773246903203487], [-0.06443135603705533, 0.8450441135658071], [0.7337621100254976, -0.02283032577834886], [0.6915679075119724, -0.20201556053954206], [-0.15560129505880363, -0.4280020098304576], [0.16375678537773802, 0.608429954731603], [-0.44597592066631564, -0.15784878437540478], [0.4275860150378074, 0.624658050946685], [-0.3061753997152838, 0.2671425677929398], [0.42023708228513207, -0.24693540038755368], [-0.26199656684213946, -0.14125459635673865], [-0.37738831435178505, -0.6473754506788753], [0.11027172356995701, 0.27859487659713517], [-0.6103829182227516, -0.4246426623980473], [0.33272958116992307, 0.6208496725980905], [-0.3848162745866545, 0.351011778455789], [-0.34015110257317643, -0.6529908832758585], [0.22243175656058506, -0.695554380218989], [0.07893420725589567, -0.7480922503328106], [-0.31131846848827993, -0.6994799338878647], [-0.5851669629815177, 0.2890638080675788], [-0.6899081547707239, 0.475624963034136], [0.07163405463769792, 0.7480613579790681], [0.31046083315753453, 0.06986831428188366], [0.011460099403886937, 0.04815706772504613], [0.7142118573336803, -0.289413446336259], [0.18331459078965875, 0.29425824097324277], [0.5801343287093437, 0.1652254126589285], [0.011460099150994925, 0.048157068062717204], [0.6835644025255866, -0.3737732112481354], [0.580134319343955, 0.16522541393277532], [0.13253950175271945, -0.07567419595304098], [-0.5956737736877634, 0.47664504634638366], [0.7165860788521724, -0.23191778301475852], [0.42574413178461296, -0.19497786944579085], [-0.442838451396307, -0.7138718178893357], [0.5868352746637395, 0.21145198328359], [0.07944468858265213, -0.26553426033200583], [0.22738621735999892, 0.295268214598545], [-0.5281841447373594, -0.5194454656900012], [0.5903618219212388, -0.22487338953429906], [0.38311976996790664, 0.6142341144996168], [0.590361821921275, -0.2248733895342594], [0.5903618219212421, -0.22487338953429395], [0.04393212452868768, -0.7218950297465891], [0.7147637131790642, -0.09159915717188032], [-0.612652462949441, 0.41816538021597693], [0.1268491057204514, -0.8243201828026205], [-0.18482132425736342, 0.07726526993525577], [-0.40667646603919283, -0.7367292693673788], [-0.5736658225270163, 0.514720643051567], [0.5956186755923962, -0.3809905414344521], [0.26534850968439067, 0.4581280181559936], [0.8369766081345175, -0.052234394304307576], [0.08054357533148941, -0.7476124066374805], [0.11381588243190412, 0.5754257117465079], [0.8384370333804582, -0.01394134456156921], [0.3535650528646574, 0.6565415317002814], [0.09230029479498505, 0.5269772445314848], [0.08491688859357174, 0.731259688524384], [0.002364958755126473, -0.306512863905083], [-0.4636236631166533, -0.4622267859374819], [-0.6433841783327404, 0.37589053885090484], [-0.6509784527501091, 0.52968525469646], [-0.548547131788707, -0.4299737888722543], [-0.09238974387812522, 0.07698620121890026], [0.4134461731659976, 0.0898227493795358], [0.7142114038499225, -0.28941466946283434], [-0.5797531923877769, 0.6118006539321139], [0.7728754164580202, -0.3173163056525049], [0.20662377997614625, -0.8077066312520361], [0.21940572407689415, -0.804828734471608], [0.2897869993786909, 0.6174155272009859], [0.1907875652787025, 0.48582798109535547], [0.07991341223041137, -0.8314431116430873], [0.6225295917490835, -0.1021487250494806], [-0.7061927568442016, 0.3577324920140656], [0.32713331021098935, 0.5660716275261243], [0.15946017866615372, -0.1869690445554776], [0.3061796965877701, 0.5946680096580835], [-0.452265411995911, -0.5525147610277579], [0.11170811950483202, -0.8268778402302323], [-0.31426923828501685, -0.5118125528315218], [0.6243702835507825, -0.4473655454407785], [0.6884485972491454, 0.26050329178130693], [0.8146058713845901, -0.18029230973669333], [0.05316907254091473, 0.8405639034907736], [0.04393212449807043, -0.7218950297667396], [-0.40716140297514886, 0.7471861333095376], [0.27677213902714126, -0.6410023910965662], [0.8195790185958457, -0.15954445596232153], [0.11231364588788642, 0.35036730417373996], [0.7230657242317816, 0.31990823550175523], [0.20603722825885226, -0.6724491159016476], [-0.6119972277785576, 0.5772157313108922], [0.7945472994402654, -0.25479761661081596], [-0.15902051623479976, -0.10678450942375396], [-0.3612339314338903, 0.1899658522566124], [0.030634140090093707, -0.11652686891673582], [-0.10036257064116282, 0.7475842990037287], [-0.09071532111155602, -0.13565727505636918], [-0.47706183508143035, -0.5419401355207265], [0.805324318157247, -0.21680876188260356], [0.2759320481604518, 0.7137018581944287], [0.13163467290622718, 0.7026470197079391], [0.6681622751231101, 0.1905267363362514], [0.10001027390553334, 0.1104980136265552], [0.7537234146891643, -0.08220721963227517], [-0.13442032960447772, -0.13605849624471683], [0.1409751656319487, 0.772892725241592], [0.08747363523823339, -0.7036472727863327], [-0.459592011054736, -0.7027332073036696], [0.16864521314950393, -0.816060742966205], [-0.50983888353775, 0.18078276722332323], [0.3152158350222939, 0.5388407874232998], [0.0858418202273245, -0.6782402891923537], [-0.4885230449372652, 0.19171619057046055], [0.19234154972375986, 0.749300152882826], [-0.13461394212228256, -0.4386235232678885], [0.8324944377060096, -0.0942068810297869]], "data13": [[0.7504106929510155, 0.39589465293107673, 0.3629353691439784, 0.32997608535688006, 0.2970168015697817, 0.26405751778268327, 0.231098233995585, 0.19813895020848665, 0.16517966642138826, 0.13222038263428992, 0.09926109884719157, 0.06630181506009321, 0.03334253127299485]], "data14": [[0.7369698327359617, 0.011497424576894788], [0.9921594982078853, 0.011497424576894788], [0.994399641577061, 0.011497424576894788], [0.994399641577061, 0.016096394407652703], [0.994399641577061, 0.409308314937454], [0.994399641577061, 0.4139072847682119], [0.9921594982078853, 0.4139072847682119], [0.7369698327359617, 0.4139072847682119], [0.7347296893667861, 0.4139072847682119], [0.7347296893667861, 0.409308314937454], [0.7347296893667861, 0.016096394407652703], [0.7347296893667861, 0.011497424576894788], [0.7369698327359617, 0.011497424576894788]]}, "id": "el46334992429248", "plugins": [{"type": "reset"}, {"type": "zoom", "button": true, "enabled": false}, {"type": "boxzoom", "button": true, "enabled": false}, {"type": "htmltooltip", "id": "el46335030292896pts", "labels": ["Intelligent Transportation Systems (itscanada.ca)", "47 US government agencies", "Wounds International (woundsinternational.com)", "SPOTIFYMUSIC.SE", "NC State University", "\r,\r", "Hemmakv\u00cc_ll AB,\r", "Miami University", "GO Shop,\r", "BitDefender", "\r", "University of Queensland,\r", "Avionews,\r,\r", "Secretar\u00cc_a de Educaci\u00cc_n P\u00cc\u00bcblica,\rhttp://www.sepdf.gob.mx,\r", "The Hope Institute,\rhttp://www.makehope.org/", "http://www.gohens.net", "http://forum.aiekillu.fr", "Instituto Venezolano de Investigaciones Cient\u00cc_ficas,\rhttp://www.ivic.gob.ve", "https://www.autozonepro.com/", "http://www.autobits.co.uk", "http://www.ecaytrade.com/", "http://www.askmebazaar.com", "http://malapelli.com,\rhttp://thotamarriagelines.com,\rhttp://mudirajpelli.com,\rhttp://www.madigapelli.com,\rhttp://www.svmarriageslinks.com,\rhttp://ssamb.com,\rhttp://www.srirasthu.in,\rhttp://www.vivahamytri.com,\rhttp://www.goudpelli.com", "http://toko.proumedia.co.id", "http://macare.in/", "http://asankadr.az", "http://cromotransfer.com.br/", "Kumoh National Institute of Technology", "Malabar Institute of Medical Sciences,\rhttp://www.mimsindia.com/", "http://www.j-ax.it", "http://asankadr.az/", "http://www.the-athenaeum.org", "http://dresscloud.pl/", "http://www.spelapoker.se/", "dutchwow.com", "http://www.seniat.gov.ve/", "http://www.bharatlaws.com/", "Windsor University School of Medicine,\rhttp://www.windsormed.org/", "Royal Institution of Chartered Surveyors,\rhttp://www.ricsasia.org", "http://pharmafellows.rutgers.edu/", "https://www.amzreviewtrader.com/", "http://www.misionsucre.gob.ve/", "http://asialawhouse.com/", "https://www.aussiefarmers.com.au", "http://thaiind.com/,\rhttp://pukpik.com/,\rhttp://ads.thaimisc.com", "Computing Science Inside - University of Glasgow,\rhttp://csi.dcs.gla.ac.uk", "http://www.mac-torrents.com/", "Israel Missile Defense Association,\rhttp://imda.org.il/", "chromeplay.com", "http://library.killersites.com", "http://www.islandermania.com", "http://aviacion.mil.ve", "Brigham Young University,\rbyu.edu", "http://engineerboards.com", "http://www.c4forums.com", "http://forum.chumpcar.com", "http://www.mwcboard.com/", "http://laptopmania.co.uk/", "The Training Room,\rhttp://thetrainingroom.com/", "http://www.trampolining-online.co.uk/", "http://www.friendshipkey.com/", "http://www.dhiqar.net/", "http://www.hortinews.co.ke/", "keepyourlinks.com", "Gyft", "agpestores.com", "geolify.com", "tunesoman.com", "aerobertics.be", "psicamp.it/", "autolet.it", "Goa University unigoa.ac.in", "allwomenstalk.com", "gope.com.br", "battlefy.com", "000webhost.com Forum", "over2craft.fr", "LifeSafer", "o2c.fr", "milq.com", "ebar.com", "emkoelektronik.com", "pagesjaunesdusenegal.com", "codemasters-project.net", "kakasure.com", "valleyevents.ca", "focusfeatures.com", "mavic-mp3.com", "epicbot.com", "teksyndicate.com", "Uganda\u0089\u00db\u00aas Ministry of Finance (finance.go.ug)", "digitalnintendo.com", "oursportscentral.com", "differencegames.com", "techfactory.net", "bfsihiring.com", "unwto.org United Nations World Tourism Organization", "duelyst.com", "primodominio.it", "mss.twcbc.com Time Warner Cable Business Class Managed Security Solutions portal", "Bank of North Dakota", "sktorrent.eu", "plastic4you.ru", "cplusplustutor.com", "hawkingtech.com", "buzzmachines.com", "virtualworldlets.net", "allosambre.com", "integratorimarket.it", "watsonsauctioneers.co.uk", "solen.cz", "mothersenvogue.com", "rochester.edu", "elifeask.com", "gamescollection.it", "jcm.co.uk", "mayline.com", "AIn Shams University", "remotestaff.com.au", "deways.com", "fijilive.com", "chilisuae.com", "burgerking.com.ar", "hortinews.co.ke", "raas.com.au", "paypalsucks.com", "umoveindia.com", "skoolikit.co.uk", "wtspy.com", "myrepospace.com", "ingersollrandproducts.com", "threedollarclick.com fourdollarclick.com sevendollarclick.com", "acparadise.com", "pingpong.su", "wii-records.com", "mylloyd.com", "Minecraft World Map (minecraftworldmap.com)", "Rambler.ru", "modaco.com", "Windham County Sheriff\u0089\u00db\u00aas Office", "24luv.com freedateusa.com", "Costa Rica Embassy in China (costaricaembassycn.com)", "Thai Ministry of Foreign Affairs", "Logic Supply", "Aesthetic Dentistry OC Gastrocare Tampa Bay Surgery Center"], "hoffset": 20, "voffset": 20}, {"type": "toptoolbar"}, {"type": "htmltooltip", "id": "el46335030292840pts", "labels": ["Infosys Ltd", "Katie Hopkins", "Charlotte Mckinney", "Malaysian Police Facebook and Twitter Pages", "NYMag.com,\rNew York Magazine", "Andy Weir,\r", "E*Trade,\rCommsec,\rAustralian Investment Exchange ", "Miranda Lambert,\r", "University of Rhode Island,\rURI.edu", "UK ministerial emails", "Six of the most successful Fifa video gamers:,\rAnesonGib, W2S, Nepenthez, Nick28T, Bateson87, matthdgamer ", "Army Sgt. Dillard Johnson,\rNavy SEAL Rob O\u0089\u00db\u00aaNeill", "http://shopatsullivan.com", "Daily Mail", "Electronic Arts", "TalkTalk", "Xero", "Essex Police Twitter Account", "British Gas", "Ha'aretz Twitter Account", "Obama Administration Officials", "FBI Deputy Director Mark Giuliano", "ISIS Twitter Accounts", "http://sexyirelandescorts.com,\rhttp://vipescortsparis.com,\rhttp://viplondonescortsguide.com,\rhttp://stockholmescorts.org,\rhttp://romeitalyescorts.com,\rhttp://pragueescortsservices.com,\rhttp://newyorkescortsinfo.com,\rhttp://mylosangelesescorts.com,\rhttp://euroescortsberlin.com,\rhttp://escortszurich.com,\rhttp://calldubaiescorts.com,\rhttp://belgiumescortgirls.com,\rhttp://athensescortsgreece.com,\rhttp://escort-gallery.com", "Jim Ross Twitter Account,\r@JRsBBQ", "Official Twitter Account of Pakistani Journalist Hamid Mir,\r@HamidMirGEO", "Unnamed Delhi-based Firm", "Martub Shkreli", "Facebook Account of Ruqia Hassan", "Jeremy Corbyn Twitter Account @jeremycorbyn", "Social Media Accounts of James Clapper Director of National Intelligence", "Brigham and Women\u0089\u00db\u00aas and Brigham and Women\u0089\u00db\u00aas Faulkner Hospitals", "Social Media Accounts of Vonna Weir Heaton", "John Holdren", "FACC", "forums.dayzgame.com", "Neiman Marcus Group", "Alibaba Group\u0089\u00db\u00aas TaoBao", "Bitcoin Accounts", "Ringo Starr\u0089\u00db\u00aas Twitter Account", "Spotify", "Harry Styles and Kendall Jenner", "Russian Embassy in Armenia (@rusembassyARM)", "NaughtyAmerica.com and affiliates websites including Suite703.com", "The Fappening Forum", "OpIsrael", "Coinroll Bitcoin Casino", "ADP", "Qatar National Bank QNB.com", "Spotify", "Lifeboat Minecraft Community", "Laremy Tunsil Twitter and Instagram Accounts", "Several databases", "Neopets", "The Sydney Morning Herald The Age Digital Editions", "hypergen.ch", "Twitter accounts of over 2,500 individuals", "Reddit", "Katy Perry\u0089\u00db\u00aas Twitter Account (@katyperry)", "Badoo", "TeamViewer", "Keith Richards Twitter Account (@officialKeef)", "Tenacious D Twitter Account (@RealTenaciousD)", "Sh0ping[.]su", "Drake\u0089\u00db\u00aas Twitter account (@Drake)", "Kylie Jenner\u0089\u00db\u00aas Twitter account (@KylieJenner)", "George Harrison Twitter Account (@GeorgeHarrison)", "@NFL Twitter Account", "UTorrent Forum", "DeRay Mckesson\u0089\u00db\u00aas Twitter Account (@deray)", "forum.onverse.com", "iMesh", "Several forums hosted by VerticalScope", "Carbonite", "Twitter account of Sundar Pichai, Google CEO", "Deutsche Telekom", "Twitter account of Brendan Iribe, CEO of virtual reality company Oculus", "Twitter Account for NASA\u0089\u00db\u00aas Kepler (@NASAKepler)", "Twitter accounts associated with Yahoo boss Marissa Mayer and the site\u0089\u00db\u00aas co-founder Jack Dorsey", "Shadi.com", "Steemit", "Minecraft Account", "Shuhei Yoshida\u0089\u00db\u00aas Twitter account (@yosp)", "Clash of Kings Forum", "Selina Akim\u0089\u00db\u00aas Facebook Account", "Two Gay Porn Websites", "Sarah Silverman\u0089\u00db\u00aas Twitter Account (@SarahKSilverman)", "Twitter account of Afghanistan\u0089\u00db\u00aas Chief Executive Dr. Abdullah Abdullah", "Niantic CEO John Hanke\u0089\u00db\u00aas Twitter account", "Iranian Telegram Users", "Romelu Lukaku\u0089\u00db\u00aas Instagram Account", "The Khronos Group (khronos.org)", "Alexa Losey Twitter Account", "Twitter and Quora account of Zach Klein, co-founder of video-sharing website Vimeo", "Dota 2 Forum", "World Anti-Doping Agency and Court of Arbitration for Sport (tas-cas.org)", "Yulia Stepanova\u0089\u00db\u00aas WADA Account", "Leoni AG", "Local Council of Brisbane", "Leet.cc", "Cincinnati Zoo Botanical Garden director Thane Maynard Twitter Account", "Wikipedia co-founder Jimmy Wales Twitter Account (@jimmy_wales)", "Three Mail.ru Forums: cfire.mail.ru, parapa.mail.ru, tanks.mail.ru", "Cincinnati Zoo Botanical Garden director Thane Maynard Twitter Account", "Tom Hiddleston's Instagram Account", "Amanda Cerny's Vine account", "Twitter", "QIP.ru", "ClixSense", "Empireminecraft.com", "Yahoo!", "i-dressup.com", "Personal email accounts of Turkey\u0089\u00db\u00aas Energy Minister and President Erdo\u0080\u00d9an\u0089\u00db\u00aas son-in-law, Berat Albayrak", "John Podesta's Twitter Account", "Axis Bank", "Vladislav Surkov", "Several higher education institutions", "Sam's Club", "YouTube account of Theo Ogden", "Washington State Government Website (wa.gov)", "Mark Zuckerberg's Pinterest Account", "TheCounter", "Deliveroo", "Prominent journalists and professors", "Valartis Bank", "xHamster", "The National Lottery", "Rahul Gandhi Twitter account", "Central Bank of Russia", "catropaejb.com.ve", "Argentinian Ministry of Industry (Ministerio de Produccion, produccion.gob.ar)", "Vijay Mallya", "Barkha Dutt and Ravish Kuma Twitter Accounts", "Yahoo!", "Official Twitter account of Netflix US (@netflix)", "Official Twitter account of Marvel (@Marvel)", "Official Twitter account of NFL (@NFL)", "Official Sony Music Global Twitter Account (@SonyMusicGlobal)", "Southcentral Foundation (southcentralfoundation.com)", "Nat Geo Photography Twitter Account (@NatGeoPhotos)", "KeepKey", "Square Enix's European Twitter Account (@SQUARE_ENIX_EU)", "University of Maryland School of Medicine", "IHOP (International House of Pancakes)", "Supercell", "20,000 individuals in the Netherlands", "College students across the United States", "BBC Northampton Twitter account (@BBCNorthampton)", "New York Times Video Twitter Account (@nytvideo)", "Several Chinese Internet Giants", "High Fidelity", "Multiple Twitter accounts associated with the World Wrestling Entertainment Group", "Czech Foreign Ministry", "Norwegian Labour Party", "PoliceOne", "Email accounts of Irish solicitors", "Darcy Vescio's Twitter account (@darcyvee)", "Canadian Tire", "FileSilo.co.uk", "UPI.com", "Loblaws", "FunPlus", "Yahoo!", "Coachella Music Festival", "Single Individuals (via TwitterCounter)", "Official Twitter Accounts of ABC News (@ABC) and Good Morning America (@GMA)", "Idaho Department of Labor", "12 million accounts from at least 11 separate cryptocurrency forum", "Airbnb users", "Britain First", "Youku", "Greenwood County School District 50", "Gannett Co.", "Gmail users", "German O2-Telefonica users", "Edmodo", "Bell Canada", "UK Parliament", "DaFont.com", "Salem State University Twitter Account", "Xbox Users", "University of Wisconsin Health", "Augusta University", "Southern Oregon University", "CashCrate"], "hoffset": 20, "voffset": 20}, {"type": "toptoolbar"}, {"type": "htmltooltip", "id": "el46335030293288pts", "labels": ["Iran", "Evans Hotels,\r", "Ukraine", ">1,\r", "Online Poker sites including PokerStars and Full Tilt Poker", ">1", "Trump Hotel Collection", "Israeli Public Sector", "Permanent Court of Arbitration in The Hague", "German Unit of the Federal Chancellery,\r", "PageFair", "Four Winds Casino Resort", "Fashion to Figure,\rhttp://www.fashiontofigure.com", "Starwood Hotels & Resorts", "Pearson VUE", "Mobile users in Singapore", "Elephant Bar", "The Guardian", "Hyatt Hotels Corporation", "Ukrainian Utilities", "University of Connecticut", "Forbes Website", "Several .edu and .gov targets", "Energobank", "incipio.com", "Several government and commercial organizations", "Norfolk General Hospital", "Mercy Iowa City and Mercy Clinic", "The Pirate Bay", "Bay Area Children\u0089\u00db\u00aas Association", "Mayfield Brain & Spine", "Complete Chiropractic & Bodywork Therapies", "Emirati Journalists, Activists and Dissidents", "Saudi Arabia", ">1", ">1", "jkanime.net", "Japanese Businesses", "Top Eight Banks in Taiwan including Bank of Taiwan, Chang Hwa Bank, First Bank.", "Syrian Dissidents", "Fosshub (fosshub.com)", "PoS Systems Worldwide", "HEI Hotels & Resorts", "Two unnamed petrochemical complexes in Iran", "Thousands of Seagate NAS", "justformen[.]com", "Several Individuals", "Several Targets", "Single Individuals", "Three Unnamed Firms in the Hospitality Sector", "Eight Saudi Institutions", "Deutsche Telekom", "Android 4 and Android 5 Users", "Owners of 26 low-end Android Smartphones", "Ukrainian Banks", "Ukrainian Artillery Units", "Owners of Barnes & Noble\u0089\u00db\u00aas NOOK", "University of Alberta", "Arizona Department of Administration", "leading Italian politicians, businessmen and Masons", "Barts health trust, which runs five hospitals in east London: the Royal London, St Bartholomew\u0089\u00db\u00aas, Whipps Cross, Mile End and Newham", "Several biomedical research facilities", "Point of Sale infrastructure in Brazil and other countries", "Tiverton Town Council", "Mac Users", "Multiple foreign embassies and ministries", "Several Organizations Worldwide", "Hitachi Payment Services", "Macbook Users", "Remote Banking Systems (RBS).", "Ukrainian government, military and law enforcement officials.", "Aptos", "Single Individuals", "Several organisations across Saudi Arabia and Europe", "Government organizations in the Middle East", "Products from surveillance technology company AVTech", "Single Individuals", "Several business organizations in North America", "Multipe targets", "UK viewers or popular porn sites", "Forsyth Public Schools", "Amaq Media", "Unnamed targets", "Android users", "Unnamed Russian Bank", "Single users", "Android users", "KCG Holdings", "Android users", "Virginia Sex Offender and Crimes Against Children Registry (SOR)", "OSX Users", "20 UK Banks", "HandBrake", "Android users", "Unnamed Target", "Android Users", "Stanford University Subdomain", "Android Users", "Linux Servers", "Android Users", "ATMs in India"], "hoffset": 20, "voffset": 20}, {"type": "toptoolbar"}, {"type": "htmltooltip", "id": "el46335030326168pts", "labels": ["digitalcostitution.com", "Sussan", "Canadian Security Intelligence Service (csis.gc.ca)", "Canadian Government Sites,\r", "\r(Canadian Mounted Police)", "Several Taiwan government websites,\r", "Donald Trump Corporate Website,\r", "Sri Lankan Prime Minister Office website,\r", "OneBookShelf", "24 Saudi Government Websites", "Tianwang,\r(a rights and citizen journalism website)", "UK's National Crime Agency,\rhttp://www.nationalcrimeagency.gov.uk", "Manchester Airport,\rhttp://www.manchesterairport.co.uk", "Essex Police,\rhttp://www.essex.police.uk", "Embarcadero Group,\rPalo Alto Weekly,\rMountain View Voice,\rPleasanton Weekly,\rThe Almanac", "realtor.com", "Patreon", "Multiple Sclerosis,\rSociety,\rhttp://www.mssociety.org.uk", "David Jones,\rLimited,\rhttp://www.davidjones.com.au", "Federal Public Services Home Affairs,\rhttp://www.ibz.fgov.be,\r,\rOfficial website of Belgian Prime Minister Charles Michel ,\rhttp://www.premier.be,\r,\rBrussels parliament,\rhttp://www.parlbruparl.irisnet.be/", "http://www.gobol.in/", "Several websites affiliated with KKK and other racist content", "CAT Telecom Pcl,\rhttp://www.cattelecom.com", "Egyptian government websites", "Norwich International Airport,\rhttps://www.norwichairport.co.uk", "Russian Central Bank,\rhttp://www.cbr.ru", "Central Bank of India", "https://www.cryptocoinsnews.com,\rhttps://hacked.com/,\r", "Iceland Government Websites", "Several Pakistani Websites", "Meta-Fusion GmbH,\r", "Websites running Joomla", "Several ESA domains:,\rdue.esrin.esa.int,\rexploration.esa.int,\rsci.esa.int", "Azerbaijani Ministry of Labour and Social protection Azerbaijani Ministry of Emergency Situations", "Saudi Arabian Government,\rWebsites", "14 Thailand Police Websites", "Nigerian Government websites", "Hundreds of Thai Government Websites", "Several Iranian Government Websites", "JYP Entertainment jype.com", "Narita International Airport", "Taiwanese Prison System", "WordPress CMS", "Thai Prisons", "British Association for Counselling and Psychotherapy BACP.co.uk", "4,000 confidential records of police officers, lawyers and judges", "Websites of Italian Regions Apulia and Basilicata", "Coast Central Credit Union", "Official Websites of the Salt Lake City Police and Airport", "Several websites including the Swiss Federal Railways (SBB) and a number of retailers, including electronic retailer InterDiscount", "naira4dollar.com", "EC-Council (eccouncil.org)", "nasa.gov", "SportPursuit sportpursuit.co.uk", "Dalhousie University (dal.ca)", "Ku Klux Klan website", "Maisto.com", ">4000 Journalists", "ncgov.org ncgov.net ncgov.com np.nc.gov governor.state.nc.us northcarolina.gov", "Taiwan\u0089\u00db\u00aas ruling Democratic Progressive Party (DPP)", "Castorama", "bilderbergmeeting.org", "Thousands legitimate websites", "University of Cambridge\u0089\u00db\u00aas Cambridge Schools Classics Project (cambridgescp.com)", "Minnesota Judicial Court (mncourts.gov)", "More than a dozen House Democrats\u0089\u00db\u00aa official websites", "Sovereign Order of Malta", "Wikileaks", "Several Zimbabwe Websites", "Anhui Women and Children Health Hospital", "Cloudflare", "Several Pro-ISIS Websites", "News 9 (News9.com)", "Several websites belonging to Andrej Babis, Czech Republic\u0089\u00db\u00aas Finance Minister.", "League of Legend (leagueoflegendes.com)", "GTAOnline", "Several Brazilian government websites", "michaelphelps.com", "Bank of Israel and the Prime Minister's Office", "Mr Chow", "EurekAlert! (eurekalert.org)", "KrebsOnSecurity", "apple.afsmith.bm", "Newsweek", "newseasims.com", "Bohri Muslims around the globe", "BuzzFeed", "converse.com.au", "Business Insider", "Scotland Yard's website (content.met.police.uk)", "Alaskan Elections Results website (elections.alaska.gov)", "civilsupplieskerala.gov (Kerala government\u0089\u00db\u00aas civil supplies department)", "Canadian army\u0089\u00db\u00aas public recruitment website (forces.ca)", "mobilita.gov.it", "State Treasury Service of Ukraine (treasury.gov.ua) and Ministry of Finance", "Ukraine's defence ministry", "Official website of the Russian National Visa Bureau in the Netherlands (rnvb.nl)", "italiastartupvisa.mise.gov.it", "Russian Federal Drug Control Service Liquidation Commission (fskn.gov.ru)", "Thai Police Office", "Thai Ministry of Information and Communication Technology and the Ministry of Defence", "Drudge Report", "fbi.gov", "Ministry of Tourism and Sports", "Bilderberg Group", "esguarnacpuntademata.mil.ve", "gdc.gob.ve", "Racingpulse.in", " ", "Austria's Parliament", "Montenegrin government and several state institutions", "Association of British Travel Agents (ABTA)", "Several Dutch Websites", "Statistics Canada (statcan.gc.ca)", "Joblink Alliance", "Payment Processors on websites", "ShowTix4U", "North Mundham Primary in Chichester", "7 Southeast Asian Nations", "UK Banks", "Qatar News Agency"], "hoffset": 20, "voffset": 20}, {"type": "toptoolbar"}, {"type": "htmltooltip", "id": "el46335030324208pts", "labels": [">1", ">1", "Red Granite Pictures", "AdSpirit.de,\rAOL", "PlentyOfFish,\rhttp://www.pof.com", ">1", ">1", "EFF,\rElectronic Frontier Foundation", "Iranian Dissidents", "Governments, embassies, military groups, educational facilities, researchers and the pharmaceutical industry.", "South Korea", "Cisco Routers", "Russian military personnel and Russian telecoms", "United States,\rEurope,\rAsia", "Forbes", "A large number of Wordpress sites", "Adult portals", "divxtotal.comz,\relitetorrent.net,\rmejortorrent.com,\restrenosdtl.com,\rbajui.com,\rtomadivx.org", "Magento-Powered e-commerce sites", "Several Primary Websites including eBay.de and T-Online.de", "http://fantasy.premierleague.com", "Several targets belonging to Business and Government", "Several Domains", "Transportation and logistics sector in Europe", "Several Wodrpress sites including blogs.independent.co.uk", "Chinese nationals in commercial organizations.", "Several additional Wordpress sites including the website of popular magazine Reader\u0089\u00db\u00aas Digest (rd.com)", "DailyMotion,\r", "The Independent Blog,\r", "Comcast", "Russian Speaking Organizations", "79 escort websites", "Several individuals leaders of China\u0089\u00db\u00aas Tibetan and Uighur minorities", "Chinese Banks\u0089\u00db\u00aa Customers", "Japanese Banks\u0089\u00db\u00aa Customers", "MSN.com", "Several individuals in Israel, Egypt, Saudi Arabia, United Arab Emirates, Iraq, US and EU.", "Minority Activist Groups in China", "Rotten Tomatoes and The Jerusalem Post Website", "Skype", "AlphaBay", "Wajam Browser Add-On", "Japanese companies in electric utilities, oil and gas, finance, transportation and construction.", "Several Executives", "Indian Officials Worldwide", "Several high profile websites including The New York Times, the BBC, MSN, and AOL", "Several High Profiles including FOX News, BusinessInsider", "Chinese Users", "India", "gumtree.com.au", "likes.com livejournal.com", "Several Entities in Taiwan", "Several Hacked Websites", "Sites running vulnerable WordPress and Joomla installations", "At least 11 sites including marktplaats.nl, the Netherlands equivalent to eBay", "Different Entities in Denmark, Iceland, and the Faroe Islands", "Israel", "KMOV, WBTV", "PerezHilton.com", "Several Websites", "Phishing Government Websites", "Ubiquity Networks", "Saudi Arabian financial institutions and technology organizations", "18 banks including, Bank of Scotland, Bank of France, five US Federal Reserve branches", "news.cnn.com mail.cnn.com", "US visa applicants in Switzerland", ">1", "Single Individuals", "Air India", "Several Danish Companies", "AfrikaDating.com", "AdultSingleSites.com.au", "PinkDate.co.uk", "Several websites of major businesses", "Tinder Users", "Multiple Web Sites", "Several targets including the Philippines Department of Justice", "Kazakh Dissidents", "Instagram Users", "Natwest users", "Industrial and Engineering Companies", "DCCC (Democratic Congressional Campaign Committee)", "Pakistan Government Officials", "Several Targets in Middle East", "Several Japanese Companies", "MacOS Users", "New Zealand Nurses Organization", "Campaign websites of US presidential candidates Hillary Clinton and Donald Trump", "Popular news websites", "Germany", "Several entities in Israel", "Legitimate Websites", "NATO", "Several Governments in the Middle East Area", "Military and aerospace interests in Russia and Belarus", "Several Banks Worldwide", "Emmanuel Macron", "Activists and journalists in Qatar and Nepal", "Over 60 global organisations, including US government agencies and international universities.", "Several industries, including critical infrastructure and news media.", "South Korea?", "Japanese Companies and Individuals", "Multiple International Government Organizations", "Saudi Arabia Governmental Organizations", "World of Warcraft users", "GitHub Users", "Airline Consumers", "Several Major MSPs", "U.S. and Middle Eastern targets", "iOS Users", "NoTrove", "Several high-profile technology and financial organizations", "Multiple targets", "Ukrainian Soldiers", "Multiple Targets with Interests in Vietnam", "Single Business Users", "200 victims, including journalists and activists critical of the Russian government, people affiliated with the Ukrainian military, and high-ranking officials in energy companies around the world", "Google Search", "Multiple Industrial Firms"], "hoffset": 20, "voffset": 20}, {"type": "toptoolbar"}, {"type": "htmltooltip", "id": "el46335030358992pts", "labels": ["Hershey Park", "The Trump Hotel Collection", "Evans Hotels,\r", "Service Systems Associates", "Walmart Canada (via PNI Digital Media)", "Hanesbrands Inc.", "Dubizzle,\r", "Sabre Corporation", "Web.com", "http://www.totally promotional.com,\rTotally Promotional", "TransformPOS", "ReverbNation", "APEGA", "The Big Blue Bus", "Kmart", "FXCM", "America\u0089\u00db\u00aas Thrift Stores", "Woods Hole Oceanographic Institution,\rhttp://whoi.edu", "Optimal Payments PLC", "Yellowfront Grocery", "Unidentified National Firm", "Vodafone,\r", "ShowTix4U", "Noble House Hotels and Resorts", "https://www.vtech.com", "Unnamed hosting company affecting Hungryhouse.co.uk", "Kalahari Resorts", "SMSGlobal,\rDU", "JD Wetherspoon", "TuneCore", "Nexus Mods,\r", "WP Engine", "Landry\u0089\u00db\u00aas Inc.", "Dell", "Interxion", "faithless.co.uk", "Wendy\u0089\u00db\u00aas", "CPanel", "Magnolia Health Corporation", "University of Central Florida", "Unknown Retailer", "Loanbase", "Broadband Systems Corporation (bsc.rw)", "Ex-Israeli Army Chief of Staff", "South Wales Fire and Rescue Service", "Kankakee Valley REMC", "Israel\u0089\u00db\u00aas CCTV Systems", "Bohemia Interactive", "Linux Mint Distribution", "York Hospital", "Maritime Trade Information Sharing Centre, Gulf of Guinea (MTISC-GoG),", "Unnamed Global Shipping Company", "Rosen Hotels & Resorts", "Several websites including km.ru and nival.com", "Finland Foreign Ministry", "Greenshades", "Bangladesh Central Bank", "21st Century Oncology", "Unnamed American Express third-party card processor", "Staminus", "West Bloomfield School District", "Bayley\u0089\u00db\u00aas", "Concordia University", "jasacare.org", "Cravath Swaine & Moore LLP Weil Gotshal & Manges LLP", "Trump Hotel Collection", "Coinwalllet", "Whiting-Turner", "Innovak International", "d\u0081\u008dTERRA", "Archdiocese of Denver", "The Grand Sierra Resort", "Lucky Pet", "Advanced International Marketing Inc.", "Union League Club", "Several databases", "Medical Colleagues of Texas", "Noodles & Company", "scrum.org", "Tumblr", "scrum.org", "CiCi\u0089\u00db\u00aas Pizza", "VK.com", "Mark Zuckerberg\u0089\u00db\u00aas Twitter and Pinterest Accounts", "University of Greenwich (gre.ac.uk)", "Github", "Vermont Department of Fish and Wildlife (FWD)", "Muslim Match", "Hard Rock Hotel and Casino Las Vegas", "Patterson Dental Supply Inc", "DID Electrical (DID.ie)", "Trillian", "Netia", "Amazon", "US Democratic Party", "Beggars Group", "GunMag Warehouse", "Kimpton Hotels", "Athens Orthopedic Clinic", "A group of clinics in Farmington, Missouri", "Klimpton Hotels and Restaurants", "Christians Against Poverty (capuk.org)", "Anderson County", "5 PoS Systems manufacturer including Cin7, ECRS, Navy Zebra, PAR Technology and Uniwell", "Sage Software", "DLH.net", "Unreal Engine Forum Unreal Tournament Forum", "Dropbox", "Opera Web Browser Sync System", "Millennium Hotels And Resorts (MHR)", "Noble House Hotels and Resorts (NHHR)", "Kuwait Automotive Imports Company (Kaico.net)", "Infowars (infowars.com)", "Arizona and Illinois voter database", "OneLogin", "Presnell Gage", "Hutton Hotel", "Lightspeed", "Brazzers", "Hutton Hotel", "VoIpTalk", "Jive", "University of Central Florida", "Evony Gaming", "Noble House Hotels and Resorts", "Several Top Indian Banks", "Foursquare", "AdultFriendFinder Networks", "The High Commission of Ghana and the High Commission of Fiji", "National Assembly of Ecuador (asambleanacional.gob.ec)", "US Law Firms", "Kagoya", "KFC", "Slovak Chamber of Commerce, scci.sk", "Ethereum", "University of Nebraska-Lincoln (UNL)", "Columbia County School District", "Columbia County School District", "PakWheels", "Intercontinental Hotel Group (IHG)", "Topps", "General Motors", "Sentara Healthcare", "Bowlmor AMF", "XP Investimentos SA", "Grey Eagle Resort and Casino", "Australian Nuclear Science and Technology Organisation (ANSTO)", "Xbox 360 and Playstation Portable ISO Forums", "Verity Health System", "Sports Direct", "Alton Steel, Inc.", "Arby's", "Lexington Medical Center", "Roberts Hawaii", "Verifone", "Welsh NHS", "The Independent Electoral and Boundaries Commission (IEBC)", "FIRST Forum (forums.usfirst.org) and FIRST Tech Challenge Forum (ftcforum.usfirst.org)", "Android Forums", "Westminster College", "Fashion Fantasy Game", "Iowa Veterans Home", "Yapizon", "Sabre Corp. Hospitality Unit", "City of Fitchburg", "Wellington's Victoria University", "Multiple targets", "Docusign", "PureMatrimony.com", "Florida Department of Agriculture and Consumer Services", "Fast Health", "Kmart", "University of Alaska", "Good Choice (hotel reservation app)", "CD Projekt Red", "Select Restaurant"], "hoffset": 20, "voffset": 20}, {"type": "toptoolbar"}, {"type": "htmltooltip", "id": "el46335030326056pts", "labels": ["University of Baltimore affiliated website (bniajfi.org)", "Montreal Police Union (fppm.qc.ca)", "Google Vanuatu", "verdadegospel.com", "United Nations", "Pizza Hut Israel,\r(,)", "Syrian Observatory for Human Rights,\r", "State Ministry for Euro-Atlantic Integration of Georgia,\r", "Argonne National Laboratory,\r", "Antrix Corporation", "\r(Pakistani President Mamnoon Hussain\u0089\u00db\u00aas website)", "\r,\r,\r,\r,\r", "Morocco ccTLD", "Sheriff\u0089\u00db\u00aas Office at Etowah County and Hardin Center,\r,\r", "Bodmin College's website,\r", "Mexican Ministry of Communications and Transportation,\r", "Accademia della Crusca,\r", "Embassy of Azerbaijan in Russia,\r", "UNICEF India,\rhttp://unicef.in,\r", "Karnataka State Higher Education Council,\rhttp://kshec.ac.in", "Royal Saudi Air Force,\rhttp://rsaf.gov.sa", "http://www.secamblive.nhs.uk", "Wayne County Board of Education,\rhttp://boe.wayn.k12.wv.us", "Parking sign installed at Lille\u0089\u00db\u00aas Boulevard Louis XVI", "Dhaka University", "8 Vietnamese government websites", "Philippines' National Telecom Commission,\rhttp://www.ntc.gov.ph", "Official website of Kerala Government:,\rhttp://www.kerala.gov.in", "46 Pakistan websites, which include Pakistan\u0089\u00db\u00aas government website Pakistan.gov.pk, president.gov.pk and cabinet.gov.pk", "http://www.mspkp.gov.pk", "https://intranet.on.br,\rhttp://euler.on.br", "Radio Tel Aviv,\rhttp://102fm.co.il/", "Uniformed Services University,\rhttps://www.usuhs.mil", "Adult Magazine,\rhttp://adult-mag.com/", "Official Website Of Passport Office Kolkata,\rhttp://passportofficekolkata.in,\r", "Film Federation of India,\rhttp://www.filmfed.org/", "Several Lebanon Government Websites", "Several colleges across Kolkata (India)", "Jewish Free School,\rhttp://www.jfs.brent.sch.uk/", "http://veterans.co.richland.wi.us/,\rhttp://recycling.co.richland.wi.us/,\rhttp://em.co.richland.wi.us/", "Jabalpur Police,\rhttp://www.jabalpurpolice.org", "The Barbados Advocate", ">200 Indian Websites", "400 Websites", "Ministry of the Environment in Costa Rica sirea.minae.go.cr/", "Asia Pacific Telecommunity apt.int", "Republic of Uganda Ministry of Foreign Affairs", "Pakistani Government websites", "Cambodian Websites", "Russian Embassy in Israel russianembassy.org.il", "Tsinghua University", "Ekonombank", "Official websites of Permanent Mission of Armenia in NATO, Permanent Mission of the organization for Security and Co-operation in Europe (OSCE) and Permanent Mission of the United Nations.", "blog.imam-khomeini.ir", "2016iowacaucus.com", "Indian Revenue Service (IRS) irsofficersonline.gov.in", "Webafrica", "Solar UK Ltd", "BCGold Corp.", "Kenya Petroleum Refineries Limited", "28 Angolan Government Websites", "Several Armenian Government Servers", "Several Azerbaijani Government Servers", "Several Wisconsin\u0089\u00db\u00aas Richland County Government websites", "Several targets in France, Israel, US, and the UK", "Lamont Christian Reformed Church (lamontcrc.org)", "Reddit", "Utkal University utkaluniversity.ac.in", "University of Limpopo", "M\u00cc\u00a9t\u00cc\u00a9o France (meteofrance.com)", "Zameen.com", "Karnataka State Police ksp.gov.in", "Pro-ISIS Twitter Accounts", "eir.dell.com eir.dell.fr eir.dell.ie eir.dell.co.uk and eir.dell.nl", "8 Indian Government Websites", "Eleven Media Group (EMG) Myanmar-language website", "Romanian Football Federation (FRF)", "40 escort services websites", "Oi", "South Yorkshire Police", "Official website of Arizona State, Arizona House of Representatives and Arizona State Legislature", "LeafyIsHere YouTube Channel", "The Websites of the cities of Loon and Panglao", "Philippines Commision On Audit (COA)", "Alpine County Superior Court (alpine.courts.ca.gov)", "TechCrunch", "Vietnam Airlines", "50 Pakistan websites", "International Weightlifting Federation (iwf.net)", "Sri Lanka President Maithripala Sirisena Website (president.gov.lk)", "Deutsche Immobilien-Leasing Ltd (Dil.de)", "12 websites belonging to the Afghan government", "Bremerton Housing Authority (bremertonhousing.org)", "American Human Rights Council (AHRC.org) and 62 other websites", "Several Azeri embassies and government websites", "w0rm", "careers.kna.kw (official website of the Kuwaiti parliament)", "Official Google Bangladesh Domain (google.bd)", "Thai LA consulate (thaiconsulatela.org)", "Philippine Military (army.mil.ph)", "Victoria\u0089\u00db\u00aas Human Rights Commission", "45 Committee", "Six NHS Websites", "National Treasury Management Agency", "secure2donaldjtrump.com", "Asiana Airlines", "605 Websites hosted by DomainMonster", "fifthharmony.com", "boaec.com.br", "250 ISIS Twitter Accounts", "Unity 3D Forum", "The Harvard Crimson"], "hoffset": 20, "voffset": 20}, {"type": "toptoolbar"}, {"type": "htmltooltip", "id": "el46335030323816pts", "labels": ["German Bundestag", "Confidential legal files", ">1", "Ashley Madison,\r", "United Airlines", "University of Connecticut School of Engineering", "RBS Banking Group", ">1,\r", ">1", "ICANN", "American Airlines Group Inc.", "University of Virginia", "http://www.mumsnet.com/", "Philippine Bureau of Customs,\rhttp://customs.gov.ph", "MSN.com", "Marion Bowman", "Several banks", "uk.match.com", "Mozilla's Bugzilla bug tracking system", "Penrith High School", "Red Hat Projects:,\rCeph community project (ceph.com),\rInktank (download.inktank.com)", "Kettering General Hospital", "U.S. Government entity,\rEuropean media company", "Government Entities in Egypt, United Arab Emirates and Yemen", "South Korea", "Peppermill Resort Spa Casino", "Unnamed Organization", ">1", "LoopPay", "Unnamed Casino", "Dow Jones & Co.", "MH17 Investigation Team", "UK Parliament Computer Network", "Several Individuals", "Computer systems belonging to government bodies, diplomatic, and military institutions in NATO countries and into some parts of Eastern Europe.", "Five Unnamed Banks", "Multiple Pakistani Targets", "Three Unnamed Greek Banks", "Australian Bureau of Meteorology,\r", "Several countries in South America", "Individuals and entities inside Iran and abroad", "Swedish House Mafia Facebook Page", "Easily", "Single Individuals using Alibaba.com", "Taiwan", "Brian Kreb\u0089\u00db\u00aas Paypal Account", "Time Warner Cable", "Kiev Airport", "Ukrainian Utilities", "Flint Hospital", "State of Michigan Portal michigan.gov", "Single Individuals", "Israel\u0089\u00db\u00aas Electric Authority", "Several Russian Banks", "Several Banks Worldwide", "Russian Banks", "US Internal Revenue Service", "Ukrainian Mining Company and Railway Operator", "Steven Petrow", "ISIL", "Israeli Banks\u0089\u00db\u00aa Customers", "Several Government Offices in Turkey", "Companies and government agencies of Korean-speaking countries", "Russian customers of a dozen of unnamed banks", "India", "Kemuri Water Company (fantasy name for a water utility)", "US Government and Commercial Networks", "Swedish Armed Force", "Sweden", "Olympia School District", "Several target in the retail and hospitality sectors", "U.S. Steel Corp.", "Several Targets in South East Asia", "Several Targets in Asia", "Several Targets in Japan", "3,600 New York residents", NaN, "51Degrees", "German Christian Democratic Union", "Tien Phong Bank", "Central Bank of Jordan Central bank of South Korea Bank of Compagnie Monegasque Central Bank of Montenegro", "Bank of France Central bank of the United Arab Emirates Central Bank of Tunisia Central Bank of Trinidad and Tobago Philippine National Bank", "RUAG", "Anti Ukraine Government Separatists", "Multiple Embassies Around the World", "Statistical Centre of Iran", "12 more banks", "Several Road Signs in the US", "10,000 WordPress Websites", "India", "Government", "South Korea", "US Government", "The DAO", "1,800 targets with info interesting to Russian government", "Three Unnamed Hospitals", ">1", "Several Countries", "Asian Region", "UK Network Rail", "Several E-Commerce Websites", "Illinois State Board of Elections Online Voter Registration Portal", "US Democratic Party", "Democratic Congressional Campaign Committee (DCCC)", "Several Websites", "Banner Health", "ISIS Forum on the Dark Web", "Smartphone users in China and Japan", "Selected targets in Russia, China, Sweden, and Belgium", "Chinese nationals within different industries and government agencies in Southern Asia", "US Tor Users", "Several targets", ".gov email addresses", "Android Users", "Donald Trump staff member", "Turkish investigative journalist Bar\u0080\u00b1\u0081\u00d9 Pehlivan", "The New York Times", "Several Russia-focused think tanks in Washington", "Sensitive Australian Government and corporate computer networks", "SWIFT", "2 Hong Kong Government Agencies.", "Linode", "Austrian National Bank (OeNB.at)", ">1", "Unnamed Afghan Mobile Operator", "High Profile Libyans", "Over 100 US Universities", "Bellingcat", "PoS systems and ATMs across the US and Scandinavian countries", "Large LED video screen billboard in South Jakarta", "Unnamed German Nuclear Power Plant", "SWIFT", "Several Targets", "Single Individuals in the gaming community", NaN, "Unnamed set of Microsoft Customers", "City of El Paso", "Tesco Bank", "Various governments and embassies around the world", "U.S.-based think tanks and non-governmental organizations (NGOs)", "FIFA Ultimate Team", "Cash machines in more than a dozen countries across Europe", "Financial and government institutions in Asia and Africa", "Japanese Defence Ministry", "The Carleton University", "TalkTalk", "Post Office", "ThyssenKrupp", "SWIFT", "Home Internet Routers", "Single Individuals in Europe", "Home Routers", "Kiev's Power Grid", "Lithuania", "OSCE (Organization for Security and Co-operation in Europe)", "Several Institutions in the British Government", "Several Entities in Japan", "MJ Freeway", "MrExcel.com", "Laptop belonging to the special investigation team probing President Park Geun-hye\u0089\u00db\u00aas political scandal.", "Several targets in Saudi Arabia", "Unnamed TV Station in the UK", "Swedish Armed Forces", "Polish Foreign Ministry", "Linking County", "City of Troy", "Mazagon Dock Shipbuilders Limited", "Mexican researchers and public health activists supporting the Mexican soda tax", "Ukraine", "Unnamed Oklahoma Agency", "Multiple Targets in Saudi Arabia", "Israeli Defense Force", "Islamic State Supporters", "Bingham County", "1,500 organizations from 100 countries", "Radio Station WZZY-FM", "Pennsylvania Senate Democrats", "Several US progressive groups", "Several targets", "Magento installations", "Mountain Home Water Department", "Alfa Bank", "Chinese Mobile Users", "Washington University School of Medicine", "German Parliament", "German Bundeswehr (armed forces)", "8,786 individuals", "South Korean users in the public sector", "Unnamed Brazilian Bank", "South Korea and United States", "National Foreign Trade Council (NFTC)", "Wordpress Websites", ">1", "Microsoft Word Users", "At least 40 governments and private organizations across 16 countries", ">1", "NSA", "City of Newark", "Two German think tanks with ties to Christian Democratic Union (CDU) and Social Democratic Party (SPD).", "Emmanuel Macron", "Multiple Japanese Businesses", "120 Israeli Targets", ">1", "OSX Users", "Assets related to North Korea", "Emmanuel Macron's Staff", "IP Cameras", "Multiple targets", "National University of Singapore (NUS) Nanyang Technological University (NTU)", "Multiple targets", "Unnamed Military Contractor", "Energy networks of the Baltic states", "US Department of Defense", "Equifax", "Multiple Websites", "Trump Organization", "OneLogin", "US", "Montenegro", ">1", "Restaurants across the US", "U.S. Electoral System", ">1"], "hoffset": 20, "voffset": 20}, {"type": "toptoolbar"}, {"type": "htmltooltip", "id": "el46335030389968pts", "labels": ["Algonquin College", "Houston Astros", "LC Industries, Inc.", "Harvard University", "COA Network, Inc.", "Dungarees", "Clarksville Town Court", "Vehicle Donation Processing Center", "Several Azerbaijani sites", "Healthfirst", "PagerDuty", "OCEA,\r(Orange County Employees Association)", "Undisclosed Brazilian Bus Station", "Newswire services,\r(Business Wire, PR Newswire, Marketwired)", "City of Henderson Web Site,\r", "Michigan Catholic Conference", "Hawaii First Federal Credit Union", "http://weendviolence.com/", "Excellus BlueCross BlueShield", "Oakland Family Services", "Yapstone", "http://www.padlocks4less.com/", "North Oldham High School", "T-Mobile US,\r(via Experian)", "American Bankers,\rAssociation", "Scottrade", "Dow Jones & Co.", "E-Trade", "Emergence Health Network", "EyeBuyDirect", "John Brennan", "Touchnote", "Korea Advanced Institute of Science Technology,\rKAIST", "Landesk", "United Nations Climate Change,\rhttps://unfccc.int/,\r", "Middlesex Hospital", "Livestream", "TaxAct", "Blue Shield of California", "TaxSlayer", "80 police officers from several Miami departments.", "Hailey Baldwin", "Pharm-Olam International", "Central Concrete Supply", "55 New Jersey police officers", "Ezaki Glico Co.", "1-800 Flowers", "LAZ Parking", "River Cree Casino", "Ryman Hospitality Properties", "Verizon Enterprise Solutions", "norfolkadmirals.com", "Tidewater Community College", "COMELEC (comelec.gov.ph)", "The City of Baltimore", "UK Ministry of Defence", "interbet.co.za", "BeautifulPeople.com", "Goldcorp", "Solano Community College", "Brunswick Corp.", "Alpha Payroll Services", "Fling.com", "Several Chinese Communist Party Officials and Captains of Industry", "Avention", "San Juan County", "Sindicat de Mossos d\u0089\u00db\u00aaEsquadra", "Stamford Podiatry Group", "Thousands of Individuals", "Multi-Color Corporation", "77 U.S. and NATO air force facilities around the world", "Washington County Community Development Agency", "North Carolina State University", "Laser & Dermatologic Surgery Center", "Disney\u0089\u00db\u00aas Playdom Forum (playdomforums.com)", "Brant County Health Unit", "LinkedIn", "Municipality of Ede", "Center for Neurosurgical and Spinal Disorders", "National Defense University (NDU)", "SCAN Health Plan", "Leslie Jones Website", "Orleans Medical Clinic Patient", "Municipal District of the Opportunity No. 17 (Northern Alberta)", "Jerry's Artarama", "manaliveinc.org", "University of Alaska", "Hundreds of US government servers hosted on .us and .gov", "store.nrsc.gov", "The Clinton Foundation", "University of Toyama\u0089\u00db\u00aas Hydrogen Isotope Research Center", "Potter County", "Baystate Health", "City of Middletown", "City of Duluth", "PageGroup", "City of Duluth", "A&M LLC", "Three Mobile", "Gorilla Glue", "Michigan State University", "Hungarian Human Rights Foundation (hhrf.org)", "Atlantis Paradise Island", "USOC (United States Olympic Committee)", "US Navy", "Android Users", "Erasmus University", "Shiseido Co.", "ambru.nl", "Quest Diagnostics", "Summit Reinsurance Services Inc.", "Russian Visa Center in the US (ils-us.com)", "India National Defence Academy (NDA) and National Investigation Agency (NIA)", "Northside Independent School District", "Netflix Users in the US", "Dracut Public Schools", "POPEYES", "Ohio State Veterinary Medical Center", "Campbell County Health", "Tipton County Schools", "Odessa School District", "Sunrun", "Manatee County School District", "PharmaNet", "Texas Department of Transportation", "Family Service Rochester", "Amalgamated Sugar", "Singapore's Ministry of Defence (Mindef)", "Queensland School Photography", "Lane Community College", "Arkansas Department Workforce", "Illinois Department of Employment Security (Ides)", "McDonald's Canada", "IAAF", "University of Louisville", "McAfee Linkedin Page", "Debenhams", "University of New Mexico Foundation", "Blackburn High School", "Prairie Mountain Health", "Old Mutual", "Gordon Ramsay"], "hoffset": 20, "voffset": 20}, {"type": "toptoolbar"}, {"type": "htmltooltip", "id": "el46335030423912pts", "labels": ["Canadian Governments Web Sites", "LOT Polish Airlines", "Telegram (Messaging Platform),\r", "Daybreak Game Company LLC", "Envato,\r", "Voat", "Planned Parenthood", "Yahoo!", "Valve's Dota 2 Online Tournament", "Carphone Warehouse Affiliates,\rOneStopPhoneShop.com,\re2save.com,\rMobiles.co.uk", "Github", "http://www.mumsnet.com/", "Greater Manchester Police,\rhttp://www.gmp.police.uk", "Several UK corporations and institutions", "Kremlin\u0089\u00db\u00aas official website,\rhttp://kremlin.ru", ">1", "4chan,\r8chan", "Several Thai Government websites", "Salt Lake City School District", "VFEmail", "Zoho", "Hushmail", "Runbox", "Swedbank", "Neomailbox", "Fastmail,\r", "https://grahamcluley.com", "Tor Network", "Japan's Health, Labor and Welfare Ministry,\rhttp://www.mhlw.go.jp/", "DNS Root Servers", "Janet", "The website of Japan's Prime Minister Shinzo Abe,\r", "Moonfruit", "Danish Parliament website,\r", "Turkey National Domain Registrar,\rNIC.tr", "Several Internet Services in Boston", "Xbox Live", "Turkish leading banks such as Isbank, Garanti and Ziraat Bank", "Steam", "Rutgers University", "Linode", "BBC", "donaldjtrump.com", "Saudi Ministry of Defense,\rmoda.gov.sa", "Linode", "Minesota Court system.mncourts.gov", "KickassTorrents kat.cr", "boards.ie", "Premier Lotteries Ireland", "Irish Government Websites", "HSBC", "pastebin.com", "Pickens County School District", "worldchess.com", "Several News Outlets in Sweden", "Coinkite Inc.", "Blizzard\u0089\u00db\u00aas Battle.net", "Janet", "Newark Police Department", "City of Denver\u0089\u00db\u00aas website (denvergov.org)", "Black Lives Matter", "Bank in Ecuador", "NS1", "Fiverr", "BitGo", "ikhwanweb.com (Muslim Broterhood English Website)", "Unnamed Chinese Gambling Site", "Blizzard\u0089\u00db\u00aas Battle.net", "Unnamed Jewelry Shop", "68 Philippines Government Websites", "RT.com", "Library of Congress (loc.gov)", "Wikileaks", "Rio Court (tjrj.jus.br)", "Several ISPs in Mumbai", "123-Reg (123-reg.co.uk)", "Blizzard\u0089\u00db\u00aas Battle.net", "Australian Bureau of Statistics (abs.gov.au)", "swimming.org.au", "Blizzard's Battle.net servers", "Project on Crowdsourced Imagery Analysis (geo4nonpro.org)", "vDoS", "Blizzard's Battle.net", "Ethereum", "OVH", "San Francisco Exploratorium Museum", "StarHub", "StarHub", "Sever Belgian media news outlets", "Wikileaks", "Two properties in the city of Lappeenranta", "National Crime Agency", "Channel 2 and Channel 10", "VTB", "Steam and Origin Servers", "Tumblr", "ExtraTorrent", "123-Reg", "Kanawha County Schools", "St Louis Public Library", "Lloyds Bank", "Argyle school district", "Hong Kong Securities Brokers", "Dr.Web Emsisoft", "Bitfinex", "Luxembourg Government's servers", "Lotte Duty Free (lottedfs.com)", "Undisclosed US College", "Melbourne IT", "Greenway Health", "Pekin Community High School", "FCC (Federal Communications Commission)", "Cedexis", "BTC-E.com", "Al Jazeera Media Network", "Bitfinex"], "hoffset": 20, "voffset": 20}, {"type": "toptoolbar"}, {"type": "htmltooltip", "id": "el46335030323928pts", "labels": ["Akorn, Inc.", "Waseda University", "Plex", "Hacking Team SrL", "Chris Foome", "University of California Los Angeles", "PNI Digital Media, affecting:,\rCVSphoto.com,\rSams Club,\rWalgreens,\rRite Aid,\rTesco", "CoinCut", "Fred's Inc.", "University of California at Los Angeles,\rhttp://www.ucla.edu", "Utah Food Bank", "The Pentagon,\r(United States Department of Defense)", "US Government, US defense contractors and related companies in the US and abroad", "Fidelity Group,\rhttp://www.fidelitygroup.com/", "Mortgage Fund sub-domain of the Azerbaijan Central Bank,\rhttp://amf.cbar.az", "Invest Bank", "Linux Australia,\rhttps://linux.org.au/", "U.S. Air Force", "City of Providence,\r", "Several Twitter users", "Military Officials in France and US", "Swiss Cleaners", "BitTorrent clients qTorrent, Deluge and SumoTorrent", "Hokkaido University", "Supreme Court of Thailand", "Anonymous, Hurley Medical Center, Flint", "toyota.ru", "Bank Yerushalayim", "Fraternal Order of Police (FOP) fop.net", "Sydney Data Center", "nasa.gov", "Department of Homeland Security", "FBI", "Bolivian Army (ejercito.mil.bo)", "Turkish National Police (EMG)", "South Africa\u0089\u00db\u00aas Department of Water Affairs (DWA)", "University of California Berkeley", "Snapchat", "Seagate", "Cox Communications", "Moneytree", "Mansueto Ventures", "Unnamed South Korean news-clipping firm", "Swiss People\u0089\u00db\u00aas Party (SVP)", "visit-jy.com", "Pivotal Software", "Sprouts Farmers Market", "50 Million Turkish Citizens", "University of Liverpool", "nans.gov.sy, the Nation Agency for Network Services", "Bizmatics", "Kenyan Ministry of Foreign Affairs (mfa.go.ke)", "Equifax", "Nulled.IO", "UAE Investbank", "Kiddicare", "UserVoice", "Besa Hitman-for-Hire Service", "Dutch Bangla Bank City Bank Trust Bank Business Universal Development Bank Sanima Bank Commercial Bank of Ceylon", "Hi-Tec Sports", "Commercial Bank of Ceylon", "Southeast Eye Institute", "Transport for NSW", "DAC Group", "JTB", "Acer", "Vermont Fish & Wildlife Department", "Besa Hitman-for-Hire Service", "2,347 US Army personals", "lookbook.nu", "Noodles & Company", "MTN Irancell", "Unknown Healthcare Database", "Omni Hotels, Noodles & Company", "Armscor (armscor.co.za)", "Poland\u0089\u00db\u00aas Defence Ministry", "O2", "South Korea", "Central Ohio Urology Group (centralohiourology.com)", "An Garda S\u00cc_och\u00cc\u00c1na (Irish Police)", "OBS (Olympic Broadcasting Services)", "Eddie Bauer", "The Clinton Foundation", "DCNS", "Funcom", "Paraguay's Secretary of National Emergency (seng.gov.py)", "Redis Database Users", "Btc-E.com", "Bitcointalk.org", "Almelo.nl", "World Anti-Doping Agency (Wada)", "St. Francis Health System", "Four Italian Healthcare Organizations", "feverclan.com", "Hundreds of E-Commerce Sites", "Pont3", "Modern Business Systems (MBS)", "Vera Bradley", "Sentinel Hotel", "Casino Rama Resort", "Mega.nz", "Eastern Indian Regional Council", "Madison Square Garden", "Professional Football Player", "Appalachian State University", "Several targets in India", "Frederick County Public Schools", "Pentagon", "Russian Embassy of Armenia (embassyru.am)", "Akbank", "Precon Products", "Los Angeles County", "Kia Hyundai", "Dutch Chamber of Commerce in Hong Kong (dutchchamber.hk)", "DRI Title & Escrow", "GS Polymers, Inc.", "Thailand\u0089\u00db\u00aas National Statistical Office (nso.go.th)", "Princeton University", "http://forumserver.twoplustwo.com", "littlereddooreci.org", "Cellebrite", "D.C. Police", "Taiwanese Ministry of Foreign Affairs' Bureau of Consular Affairs (BOCA)", "Citizens Memorial Hospital", "Airsoft GI Forum (airsoftgiforum.com)", "126 vBulletin Forum", "GMO Payment Gateway Inc", "Defense Point Security, LLC", "25 Vulnerable Forums", "Internal Revenue Service", "Gamestop", "Wonga", "AQA (Assessment and Qualifications Alliance)", "Retina-X FlexiSpy", "R2Games", "Ciphr", "Grozio Chirurgija", "Confluence Charter Schools", "Zomato", "Qnect", "Wind Tre", ">1", "Nayana"], "hoffset": 20, "voffset": 20}, {"type": "toptoolbar"}, {"type": "htmltooltip", "id": "el46335030423184pts", "labels": ["Japan Environmental Storage & Safety Corp.", "Bonnier Publications", "EFnet", ">1", "Hyundai Motor Company", "Single Individuals", "Scrypt.cc", "Police Association of Ontario, Canada (pao.ca)", "incometaxindiaefiling.gov.in", "Unspecified coal site", ">1", "Bharat Sanchar Nigam Limited (BSNL)", "New Jersey Online Casinos", "Primedice,\r,\r", "Edinburgh CIty Council,\r", "German Missiles", "Israel", "Vancouver Island", "WXXR 97.3", "Insurance Services Office", "AFC Kredieten", "Public Service Labour Relations and Employment Board,\r", "United States Census Bureau,\r", "Canada", "Planned Parenthood", "Siouxland Pain Clinic", "Hover", "Two Undisclosed UAE Banks", "United States Department of Defense", "Some Ecuadorean Opposition Activists,\r", "Ubiquity Networks", "Top Obama Administration Officials,\r", "Chelsea Clark,\r(27 year-old Toronto Woman),\r", ">1,\r", "State Information Technology Agency,\rhttp://sita.co.za", "University of Michigan\u0089\u00db\u00aas Facebook pages:,\rMichigan Football,\rMichigan Basketball,\rMichigan Athletics", "Unso.in.ua,\rDontsov-nic.org.ua,\rPse3zub.org,\rPs-shop.com.ua,\rBilozerska.info,\rBanderivec.ho.ua", "Clayton Valley Charter High School", "NayaTel (Pvt) Ltd,\rhttp://nayatel.com", "Several individuals authors of an anti-Iran security research paper", "53 South African web sites", "The University of South Wales Facebook Page", "U.S. Department of Energy", "Cryptome.org", "Monopoly,\r(hacking crew)", "Apple App Store", "Commack School District Computer System", "French Marketplaces in the Darknet", "Canadian Government", "Hilton Hotel", "Banca Intesa,\rUnipol Banca", "University of Calgary,\rhttp://www.ucalgary.ca", "Rutgers University", "Kennebec County,\rPhone System", "Bitcoin", "Narita International Airport,\rhttp://www.narita-airport.jp,\r,\rChubu Centrair International Airport,\rhttp://www.centrair.jp", "Road Sign", "http://forums.phpfreaks.com", "South Korea", "Wichita Schools.", "000Webhost.com", "Jaguar XFR", "Vbulletin", "FoxIt Software", "Protonmail", "Ku Klux Klan,\r", "XAT,\rhttp://xat.com", "Brazilian Army", "Joint Automated Booking System,\r(JABS)", "Comcast", "Spotify", "Securus Technologies", "Ammyy", "Unknown Individual", "ISIS Main Forum", "Gigi Hadid", "Taiwan Police", "Cricket South Africa Facebook Page", "Juniper Networks", "Unmanned Air Vehicles", "New York Dam", "Sanrio Digital", "Electronic Arts", "Road Sign", "Quincy Credit Union", "191 million American citizens registered to vote", "Several Dance Moms cast members", "kasganjlive.in", "Cyberoam", "Right-Wing,\rChristian Group", "alda-europe.eu", "Indian Institute of Management \u0089\u00db\u00d2 Ahmedabad (IIM-A) iimcat.ac.in", "nissan-global.com nissan.co.jp", "Citrix", "Cryptsy", "Crelan", "Royal Melbourne Hospital", "museomodena.ferrari.com", "Costa Rica Ministry of Culture and Foreign Affairs rree.go.cr", "Azerbaijani government servers", "Colombian Ministry of Education & Colombian Ministry of Information and Communications", "Roosh V", "CONADI (for Corporaci\u00cc_n Nacional de Desarrollo Ind\u00cc_gena) conadi.gob.cl", "V-Report (v-report.co.za)", "South Africa Government Communications and Information Systems (GCIS)", "Tanzania Telecommunications Company Limited", "Xbox Live", "Linux Mint Forum", "Centre d\u0089\u00db\u00aaIdentification des Materiels de la Defense", "Cincinnati Police Department", "RubberStamps.net", "Miami Police Officer", "Norway", "Mate1.com", "GCI", "Donald Trump\u0089\u00db\u00aas voicemail", "South Korea", "Litecointalk Forum", "Lakes Region Scholarship Foundation", "usacycling.org (USA Cycling)", "Kentucky State University", "vbulletin.com vnulletin.org", "OpSec Security", "Japan", "Several Universities including Princeton University, University of California-Berkeley, University of Massachusetts-Amherst, Brown University, Smith College, and Mount Holyoke College", "teamskeet[.]com", "Stanford University", "Mossack Fonseca", "KIFT", "Metropolitan Jewish Health System", "nct.org.uk", "Job-seeking portals", "Atique Orthodontics, P.A.", "Robert Millard", "Several Europe-based organisations, particularly in Poland", "Undisclosed California Worker", "Lansing Board of Water & Light (BWL)", "RWE Gundremmingen plant", "17 (an app particularly popular in Asia)", "Gryphon Technologies", "70 US military men", "Bank of Greece", "Central Bank of Cyprus (centralbank.gov.cy)", "Saint Agnes Medical Center", "Boris Dobrodeev", "Several Banks Worldwide", "Hanjin Heavy Industries", "Unnamed Adult Forum", "Bank of England", "Pornhub[.]com", "Several Targets", "Gatecoin", "33 Turkish Hospitals", "Fur Affinity", "majorgeeks.com", "National Oil Corporation of Kenya", "Spanish Police Department", "London Stock Exchange (LSE)", "Wesizwe", "110 MongoDB Servers", "Twitter", "Lorrie Cranor", "sibex.ro (Romania Stock Exchange)", "Unknown Government-Linked Louisiana Database", "Arkansas Library Association", "South African Broadcasting Corporation", "Democratic National Committee", "EFF ZANU-PF", ">1", "Fidelity National Information Services, Inc. (FIS Global)", "Jordan\u0089\u00db\u00aas Official News Agency", "GoToMyPC", "Quebec Liberal Party (PLQ)", "US Democratic Party", "US Democratic Party", "Unnamed Company", "IRS.gov", "Unnamed Ukrainian Bank", "Three unnamed healthcare organizations", "World-Check Database", "Multiple Healthcare Databases", "US Democratic Party", "University of Regina", "crackingforum.com", "topbutton.com", "US Democratic Party", "Baton Rouge Police (brgov.com)", "Datadog", "5 databases belonging to the media company Penton (Web Hosting Talk, Mac Forums, HotScripts.com, dBforums, and A Best Web)", "oshoworld.com", "topcon.com", "HSBC", "Unnamed Healthcare Software Company", "Federal Deposit Insurance Corporation (FDIC)", "ubuntuforums.org", "Democratic National Committee (DNC)", "Pokemon GO Servers", "Pokemon GO Servers", "Road Sign", "AKP (Turkey\u0089\u00db\u00aas ruling political party).", "Warframe", "Democratic National Committee (DNC)", "Interpark", "Izmir Gaz", "Hunting & Fishing NZ (huntingandfishing.co.nz)", "Shapeways", "Prosthetic & Orthotic Care (P&O Care)", "Around 20 state agencies, defence companies and other organisations in Russia", "Yahoo!", "Bitfinex", "Unnamed Indian Bank", "parsiva.daba.co.ir", "PlayStation Network", "Several Brazilian government individuals", "MICROS", "Webcam", "Democratic Congressional Campaign Committee (DCCC)", "Major Iranian Oil and Gas Facilities", "Valley Anesthesiology and Pain Consultants (VAPC)", "The Equation Group", "socialblade.com", "Road Signs", "Government Savings Bank (GSB)", "gragaming.com", "Fish and wildlife agencies of Washington, Kentucky, Oregon and Idaho", "Unnamed Government Institutions in Saudi Arabia", "Electronic Arts", "The New York State Psychiatric Institute", "Last.fm", "University of New Mexico", "Transmission BitTorrent Client", "exilemod.com", "Al Zahra Private Medical Centre (alzahra.com)", "Armenian Government", "Variety", "Ukrainian alleged pro-Russian Journalists", "Vienna Airport", "libero.it", "SS&C Technologies", "Saint Francis Health System", "H&L Australia", "Michelle Obama", "floridabar.org", "Pippa Middleton", "WestPark Capital", "South Korea", "The Clinton Foundation", "Spotify", "Several Russian activists and independent journalists", "Blockchain.info Blockchain.com", "Peachthree Orthopedic Clinic", "Road Signs", "Democratic National Committee (DNC)", "University of Santa Clara Office of Marketing and Communication (OMC)", "AdultFriendFinder", "RedBus", "Weebly", "Dyn DNS", "DomainTools", "Nets", "Several Japanese Companies", "Bradley Foundation", "Raqqa Telegram Channel", "National Health Service\u0089\u00db\u00aas Lincolnshire and Goole", "Indian Embassies in South Africa, Libya, Italy, Switzerland, Malawi, Mali, Romania", "East Baton Rouge Parish School System", "Several major Russian banks including: the Moscow Exchange, the Bank of Moscow, Rosbank, and Alfa-Bank.", "Ask", "Mailchimp", "Magento One Coding", "Instituto de la Funci\u00cc_n Registral del Estado M\u00cc\u00a9xico (IFREM)", "Vascular Surgical Associates", "Senior anti-doping officials from WADA and USADA", "Tor Users", "European Commission", "Health Solutions", "Intercom Wireless Frequency System of McDonald\u0089\u00db\u00aas at the New Bern, N.C", "Dailymotion", "Eir Telecom", "Expedia", "Scottish Football Association", "Bo Shen", "South Korea", "University of Wisconsin-Madison Law School", "Global hospitality industry", "Election Assistance Commission", "PayAsUGym", "Bleacher Report", "EA Battlefield 1", "Lynda.com", "Indian Institute of Technology Kharagpur (iitkgp.ac.in)", "Bleacher Report", "Thai Navy", "The Standard Hong Kong (thestandard.com.hk)", "State's Division of Public Behavioral Health (DPBH)", "DNC (Democratic National Committee)", "Transmission and electricity producing lines", "fbi.gov", "Susan M. Hughes Center (hughescenter.net)", "google.com.br", "Emory Brain Health Center", "esea.net", "The Los Angeles Valley College (LAVC)", "Multiple Thai Governmantal job portals", "Jabbim", "Multiple Thai Governmantal job portals", "Multiple Thai Governmantal job portals", "Several Indian Banks", "Channel One", "Advanced Flexible Composites Inc.", "WCHQ 100.9 FM", "www.nari-icmr.res.in", "Sundance Film Festival", "AlphaBay", "Cockrell Hill Police", "U.S. Cellular", "Several E-Commerce websites", "Romantik Seehotel Jaegerwirt", "CD Projekt Red", "Sunny 107.9 WFBS-LPFM", "Freedom Hosting II", "David Beckham", "150,000 online printers", "Italian Foreign Ministry", "Great Britain", "San Antonio Symphony", "Zcoin", "South Washington County School District", "Apple", "Multiple Targets", "Kennesaw State University", "Daytona State College", "Advertisement board in Mexico City", "University of Idaho", "Single Individuals", "Dun & Bradstreet", "Wishbone App", "Datapoint POS", "Several Celebrities including Emma Watson, Rose McGowan, Amanda Seyfried and Jillian Murray", "Tweede Kamer (Lower House of Dutch Parliament)", "Dueling Network", "Skype users", "Major US Universities", "New York Post App", "ABCD Pediatrics", "Anonymous", "Sirens in Dallas", "NSA", "Amazon third-party sellers", "Union Bank of India", "hundreds of popular Youtube channels", "Best American Hospitality Corp.", "Several Celebrities", "Sierra Tel", "eConcordia", "Northrop Grumman", "South Korea", "Atlantic Digestive Specialists", "Cleveland Metropolitan School District", "Alison Brie", "Danish Armed Forces", "HipChat", "Chipotle", "Blowout Cards", "Netflix", "Google and Facebook", "Diamond Institute for Infertility and Menopause", "Hill Country Memorial Hospital", "Some IBM flash drives", "Tufts University", "Charlotte Flair Victoria", "France", "Multiple targets", "Panic", "Liverpool One Shopping Centre", "Road Sign in Houston", "Windows Users", "Hotels.com", "Steve Harvey's Funderdome", "Android Users", "Google News (via compromising of Palate Press and the Boyne City Gazette)", "University College London", "Ulster University"], "hoffset": 20, "voffset": 20}, {"type": "toptoolbar"}]});
}(mpld3);
}else if(typeof define === "function" && define.amd){
// require.js is available: use it to load d3/mpld3
require.config({paths: {d3: "https://mpld3.github.io/js/d3.v3.min"}});
require(["d3"], function(d3){
window.d3 = d3;
mpld3_load_lib("https://mpld3.github.io/js/mpld3.v0.3.js", function(){
mpld3.register_plugin("htmltooltip", HtmlTooltipPlugin);
HtmlTooltipPlugin.prototype = Object.create(mpld3.Plugin.prototype);
HtmlTooltipPlugin.prototype.constructor = HtmlTooltipPlugin;
HtmlTooltipPlugin.prototype.requiredProps = ["id"];
HtmlTooltipPlugin.prototype.defaultProps = {labels:null,
hoffset:0,
voffset:10};
function HtmlTooltipPlugin(fig, props){
mpld3.Plugin.call(this, fig, props);
};
HtmlTooltipPlugin.prototype.draw = function(){
var obj = mpld3.get_element(this.props.id);
var labels = this.props.labels;
var tooltip = d3.select("body").append("div")
.attr("class", "mpld3-tooltip")
.style("position", "absolute")
.style("z-index", "10")
.style("visibility", "hidden");
obj.elements()
.on("mouseover", function(d, i){
tooltip.html(labels[i])
.style("visibility", "visible");})
.on("mousemove", function(d, i){
tooltip
.style("top", d3.event.pageY + this.props.voffset + "px")
.style("left",d3.event.pageX + this.props.hoffset + "px");
}.bind(this))
.on("mouseout", function(d, i){
tooltip.style("visibility", "hidden");});
};
mpld3.register_plugin("toptoolbar", TopToolbar);
TopToolbar.prototype = Object.create(mpld3.Plugin.prototype);
TopToolbar.prototype.constructor = TopToolbar;
function TopToolbar(fig, props){
mpld3.Plugin.call(this, fig, props);
};
TopToolbar.prototype.draw = function(){
// the toolbar svg doesn't exist
// yet, so first draw it
this.fig.toolbar.draw();
// then change the y position to be
// at the top of the figure
this.fig.toolbar.toolbar.attr("x", 150);
this.fig.toolbar.toolbar.attr("y", 400);
// then remove the draw function,
// so that it is not called again
this.fig.toolbar.draw = function() {}
}
mpld3.register_plugin("htmltooltip", HtmlTooltipPlugin);
HtmlTooltipPlugin.prototype = Object.create(mpld3.Plugin.prototype);
HtmlTooltipPlugin.prototype.constructor = HtmlTooltipPlugin;
HtmlTooltipPlugin.prototype.requiredProps = ["id"];
HtmlTooltipPlugin.prototype.defaultProps = {labels:null,
hoffset:0,
voffset:10};
function HtmlTooltipPlugin(fig, props){
mpld3.Plugin.call(this, fig, props);
};
HtmlTooltipPlugin.prototype.draw = function(){
var obj = mpld3.get_element(this.props.id);
var labels = this.props.labels;
var tooltip = d3.select("body").append("div")
.attr("class", "mpld3-tooltip")
.style("position", "absolute")
.style("z-index", "10")
.style("visibility", "hidden");
obj.elements()
.on("mouseover", function(d, i){
tooltip.html(labels[i])
.style("visibility", "visible");})
.on("mousemove", function(d, i){
tooltip
.style("top", d3.event.pageY + this.props.voffset + "px")
.style("left",d3.event.pageX + this.props.hoffset + "px");
}.bind(this))
.on("mouseout", function(d, i){
tooltip.style("visibility", "hidden");});
};
mpld3.register_plugin("toptoolbar", TopToolbar);
TopToolbar.prototype = Object.create(mpld3.Plugin.prototype);
TopToolbar.prototype.constructor = TopToolbar;
function TopToolbar(fig, props){
mpld3.Plugin.call(this, fig, props);
};
TopToolbar.prototype.draw = function(){
// the toolbar svg doesn't exist
// yet, so first draw it
this.fig.toolbar.draw();
// then change the y position to be
// at the top of the figure
this.fig.toolbar.toolbar.attr("x", 150);
this.fig.toolbar.toolbar.attr("y", 400);
// then remove the draw function,
// so that it is not called again
this.fig.toolbar.draw = function() {}
}
mpld3.register_plugin("htmltooltip", HtmlTooltipPlugin);
HtmlTooltipPlugin.prototype = Object.create(mpld3.Plugin.prototype);
HtmlTooltipPlugin.prototype.constructor = HtmlTooltipPlugin;
HtmlTooltipPlugin.prototype.requiredProps = ["id"];
HtmlTooltipPlugin.prototype.defaultProps = {labels:null,
hoffset:0,
voffset:10};
function HtmlTooltipPlugin(fig, props){
mpld3.Plugin.call(this, fig, props);
};
HtmlTooltipPlugin.prototype.draw = function(){
var obj = mpld3.get_element(this.props.id);
var labels = this.props.labels;
var tooltip = d3.select("body").append("div")
.attr("class", "mpld3-tooltip")
.style("position", "absolute")
.style("z-index", "10")
.style("visibility", "hidden");
obj.elements()
.on("mouseover", function(d, i){
tooltip.html(labels[i])
.style("visibility", "visible");})
.on("mousemove", function(d, i){
tooltip
.style("top", d3.event.pageY + this.props.voffset + "px")
.style("left",d3.event.pageX + this.props.hoffset + "px");
}.bind(this))
.on("mouseout", function(d, i){
tooltip.style("visibility", "hidden");});
};
mpld3.register_plugin("toptoolbar", TopToolbar);
TopToolbar.prototype = Object.create(mpld3.Plugin.prototype);
TopToolbar.prototype.constructor = TopToolbar;
function TopToolbar(fig, props){
mpld3.Plugin.call(this, fig, props);
};
TopToolbar.prototype.draw = function(){
// the toolbar svg doesn't exist
// yet, so first draw it
this.fig.toolbar.draw();
// then change the y position to be
// at the top of the figure
this.fig.toolbar.toolbar.attr("x", 150);
this.fig.toolbar.toolbar.attr("y", 400);
// then remove the draw function,
// so that it is not called again
this.fig.toolbar.draw = function() {}
}
mpld3.register_plugin("htmltooltip", HtmlTooltipPlugin);
HtmlTooltipPlugin.prototype = Object.create(mpld3.Plugin.prototype);
HtmlTooltipPlugin.prototype.constructor = HtmlTooltipPlugin;
HtmlTooltipPlugin.prototype.requiredProps = ["id"];
HtmlTooltipPlugin.prototype.defaultProps = {labels:null,
hoffset:0,
voffset:10};
function HtmlTooltipPlugin(fig, props){
mpld3.Plugin.call(this, fig, props);
};
HtmlTooltipPlugin.prototype.draw = function(){
var obj = mpld3.get_element(this.props.id);
var labels = this.props.labels;
var tooltip = d3.select("body").append("div")
.attr("class", "mpld3-tooltip")
.style("position", "absolute")
.style("z-index", "10")
.style("visibility", "hidden");
obj.elements()
.on("mouseover", function(d, i){
tooltip.html(labels[i])
.style("visibility", "visible");})
.on("mousemove", function(d, i){