-
Notifications
You must be signed in to change notification settings - Fork 0
/
MNIST_PCA_keplermapper_output.html
1438 lines (1172 loc) · 213 KB
/
MNIST_PCA_keplermapper_output.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="generator" content="KeplerMapper">
<title>MNIST_PCA_keplermapper | KeplerMapper</title>
<link rel="icon" type="image/png" href="http://i.imgur.com/axOG6GJ.jpg" />
<link href='https://fonts.googleapis.com/css?family=Roboto+Mono:700,300' rel='stylesheet' type='text/css'>
<style>* {
margin: 0;
padding: 0;
}
html, body {
height: 100%;
}
body {
font-family: "Roboto Mono", "Helvetica", sans-serif;
font-size: 14px;
}
#logo {
width: 85px;
height: 85px;
}
#display {
color: #95A5A6;
background: #212121;
}
#header {
background: #111111;
}
#print {
color: #000;
background: #FFF;
}
h1 {
font-size: 21px;
font-weight: 300;
font-weight: 300;
}
h2 {
font-size: 18px;
padding-bottom: 20px;
font-weight: 300;
}
h3 {
font-size: 14px;
font-weight: 700;
text-transform: uppercase;
}
h4 {
font-size: 13px;
font-weight: 700;
text-transform: uppercase;
padding-bottom:0px;
}
#meta_content h3 {
float: left;
padding-right: 8px;
}
p, #tooltip_content h3, ol, ul, table {
padding-bottom: 10px;
}
ol, ul {
padding-left: 20px;
}
ol b {
display: block;
}
a {
color: #16a085;
text-decoration: none;
}
.pane {
position: relative;
}
.pane-left {
float: left;
}
.pane-right {
float: right;
}
a:hover {
color: #2ecc71;
}
.banner {
/* height: 35px; */
padding: 10px 0px;
}
#print #header {
background: #FFF;
}
#canvas {
width: 100%;
}
#svg {
position: absolute;
}
#toolbar {
padding-top: 5px;
margin-bottom: 5px;
width: 100%;
}
#display #toolbar {
}
#display .banner {
border-top: 1px solid #000;
}
.inline-block {
display: inline-block;
}
.tool_item {
padding-left: 10px;
padding-right: 10px;
}
.pane_content {
width: 300px;
height:100%;
padding: 20px;
overflow: auto;
display: none;
}
.pane {
z-index: 1;
}
#display .pane_content {
background: #191919;
}
#print .pane_content{
background: #FFF;
}
#meta_content::-webkit-scrollbar, #tooltip_content::-webkit-scrollbar {
width: 1em;
}
#meta_content::-webkit-scrollbar-track, #tooltip_content::-webkit-scrollbar-track {
-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}
#meta_content::-webkit-scrollbar-thumb, #tooltip_content::-webkit-scrollbar-thumb {
background-color: darkgrey;
outline: 1px solid slategrey;
}
.histogram {
display: block;
height: 100px;
padding-top: 50px;
clear: both;
}
#display .histogram {
opacity: 0.68;
}
.bin {
width: 10%;
float: left;
}
.bin div {
font-size: 10px;
display: block;
width: 35px;
margin-top: -30px;
text-align: right;
margin-left: -3px;
-webkit-transform: rotate(-90deg);
-moz-transform: rotate(-90deg);
-ms-transform: rotate(-90deg);
-o-transform: rotate(-90deg);
}
.histogram:hover {
opacity: 1.;
}
#display .circle {
stroke-opacity: 0.18;
stroke-width: 7px;
stroke: #000;
}
#print .circle {
stroke-opacity: 1;
stroke-width: 2px;
stroke: #000;
stroke-linecap: round;
}
#print .link {
stroke: #000;
}
#display .link {
stroke: rgba(160, 160, 160, 0.5);
}
table {
border-collapse: collapse;
display: table;
width: 100%;
margin-bottom: 20px;
}
td, th {
padding: 5px;
text-align: left;
}
#display th {
background: #212121
}
td {
border-bottom: 1px solid #111;
}
.highlight {
filter: url(#drop-shadow-pulse);
}
.control-row {
padding: 5px 0px;
}
.btn {
display: inline-block;
padding: 0.35em 1.2em;
border: 0.1em solid #FFFFFF;
margin: 0 0.3em 0.3em 0;
border-radius: 0.12em;
box-sizing: border-box;
text-decoration: none;
background-color: transparent;
font-weight: 300;
color: #FFFFFF;
text-align: center;
transition: all 0.2s;
}
.btn:hover {
color: #000000;
background-color: #FFFFFF;
}
.btn:disabled {
color: #FFFFFF;
opacity: .35;
}
#print .btn {
color: #000;
border-color: #000
}
#print .btn:hover {
color: #FFFFFF;
background-color: #000000
}
#print .btn:disabled {}
#toolbar .btn {
padding: 0 1.2em;
}
label {
display: inline-block;
margin-bottom: .5rem;
}
#config-file-loader {
margin-bottom: .5em;
}
.btn:not(:disabled):not(.disabled) {
cursor: pointer;
}
.wrap {
display: flex;
}
.wrap-header div:last-child {
margin-left: auto;
}
.wrap-end {
justify-content: flex-end;
}
.wrap-logo {
display: flex;
justify-content: center;
align-items: center;
}
.wrap-logo .logo {
margin: auto;
}
.wrap-header {
/* padding: 5px 10px; */
padding: 5px 5px 5px 10px;
justify-content: space-between;
}
#display .wrap-header {
box-shadow: 0px 0px 4px #000;
}
.toolbar-container {
margin-left: -10px;
}
</style>
</head>
<body id="display">
<!-- Variables used later -->
<script>
const graph = {"links": [{"source": 0, "target": 1, "width": 1}, {"source": 0, "target": 3, "width": 1}, {"source": 0, "target": 4, "width": 1}, {"source": 0, "target": 5, "width": 1}, {"source": 1, "target": 2, "width": 1}, {"source": 1, "target": 4, "width": 1}, {"source": 1, "target": 5, "width": 1}, {"source": 1, "target": 6, "width": 1}, {"source": 2, "target": 5, "width": 1}, {"source": 2, "target": 6, "width": 1}, {"source": 2, "target": 7, "width": 1}, {"source": 3, "target": 4, "width": 1}, {"source": 3, "target": 8, "width": 1}, {"source": 4, "target": 5, "width": 1}, {"source": 4, "target": 8, "width": 1}, {"source": 4, "target": 9, "width": 1}, {"source": 5, "target": 6, "width": 1}, {"source": 5, "target": 8, "width": 1}, {"source": 5, "target": 9, "width": 1}, {"source": 5, "target": 10, "width": 1}, {"source": 6, "target": 7, "width": 1}, {"source": 6, "target": 9, "width": 1}, {"source": 6, "target": 10, "width": 1}, {"source": 6, "target": 11, "width": 1}, {"source": 7, "target": 10, "width": 1}, {"source": 7, "target": 11, "width": 1}, {"source": 8, "target": 9, "width": 1}, {"source": 9, "target": 10, "width": 1}, {"source": 9, "target": 13, "width": 1}, {"source": 10, "target": 11, "width": 1}, {"source": 10, "target": 13, "width": 1}, {"source": 10, "target": 14, "width": 1}, {"source": 11, "target": 13, "width": 1}, {"source": 11, "target": 14, "width": 1}, {"source": 12, "target": 15, "width": 1}, {"source": 13, "target": 14, "width": 1}, {"source": 13, "target": 16, "width": 1}, {"source": 13, "target": 17, "width": 1}, {"source": 14, "target": 17, "width": 1}, {"source": 16, "target": 17, "width": 1}, {"source": 18, "target": 19, "width": 1}, {"source": 18, "target": 20, "width": 1}, {"source": 18, "target": 21, "width": 1}, {"source": 19, "target": 20, "width": 1}, {"source": 19, "target": 21, "width": 1}, {"source": 19, "target": 22, "width": 1}, {"source": 20, "target": 21, "width": 1}, {"source": 20, "target": 25, "width": 1}, {"source": 20, "target": 26, "width": 1}, {"source": 20, "target": 27, "width": 1}, {"source": 21, "target": 22, "width": 1}, {"source": 21, "target": 26, "width": 1}, {"source": 21, "target": 27, "width": 1}, {"source": 21, "target": 28, "width": 1}, {"source": 22, "target": 27, "width": 1}, {"source": 22, "target": 28, "width": 1}, {"source": 23, "target": 24, "width": 1}, {"source": 23, "target": 29, "width": 1}, {"source": 23, "target": 30, "width": 1}, {"source": 23, "target": 31, "width": 1}, {"source": 24, "target": 30, "width": 1}, {"source": 24, "target": 31, "width": 1}, {"source": 24, "target": 32, "width": 1}, {"source": 25, "target": 26, "width": 1}, {"source": 25, "target": 33, "width": 1}, {"source": 25, "target": 34, "width": 1}, {"source": 26, "target": 27, "width": 1}, {"source": 26, "target": 33, "width": 1}, {"source": 26, "target": 34, "width": 1}, {"source": 26, "target": 35, "width": 1}, {"source": 27, "target": 28, "width": 1}, {"source": 27, "target": 34, "width": 1}, {"source": 27, "target": 35, "width": 1}, {"source": 27, "target": 36, "width": 1}, {"source": 28, "target": 35, "width": 1}, {"source": 28, "target": 36, "width": 1}, {"source": 29, "target": 30, "width": 1}, {"source": 29, "target": 37, "width": 1}, {"source": 29, "target": 38, "width": 1}, {"source": 30, "target": 31, "width": 1}, {"source": 30, "target": 37, "width": 1}, {"source": 30, "target": 38, "width": 1}, {"source": 30, "target": 39, "width": 1}, {"source": 31, "target": 32, "width": 1}, {"source": 31, "target": 38, "width": 1}, {"source": 31, "target": 39, "width": 1}, {"source": 31, "target": 40, "width": 1}, {"source": 32, "target": 39, "width": 1}, {"source": 32, "target": 40, "width": 1}, {"source": 33, "target": 34, "width": 1}, {"source": 33, "target": 41, "width": 1}, {"source": 33, "target": 42, "width": 1}, {"source": 34, "target": 35, "width": 1}, {"source": 34, "target": 41, "width": 1}, {"source": 34, "target": 42, "width": 1}, {"source": 34, "target": 43, "width": 1}, {"source": 35, "target": 36, "width": 1}, {"source": 35, "target": 42, "width": 1}, {"source": 35, "target": 43, "width": 1}, {"source": 35, "target": 44, "width": 1}, {"source": 36, "target": 43, "width": 1}, {"source": 36, "target": 44, "width": 1}, {"source": 36, "target": 45, "width": 1}, {"source": 37, "target": 38, "width": 1}, {"source": 37, "target": 48, "width": 1}, {"source": 38, "target": 39, "width": 1}, {"source": 38, "target": 48, "width": 1}, {"source": 38, "target": 49, "width": 1}, {"source": 39, "target": 40, "width": 1}, {"source": 39, "target": 48, "width": 1}, {"source": 39, "target": 49, "width": 1}, {"source": 40, "target": 49, "width": 1}, {"source": 41, "target": 42, "width": 1}, {"source": 42, "target": 43, "width": 1}, {"source": 43, "target": 44, "width": 1}, {"source": 44, "target": 45, "width": 1}, {"source": 46, "target": 47, "width": 1}, {"source": 46, "target": 52, "width": 1}, {"source": 46, "target": 53, "width": 1}, {"source": 46, "target": 54, "width": 1}, {"source": 47, "target": 53, "width": 1}, {"source": 47, "target": 54, "width": 1}, {"source": 47, "target": 55, "width": 1}, {"source": 48, "target": 49, "width": 1}, {"source": 50, "target": 51, "width": 1}, {"source": 50, "target": 57, "width": 1}, {"source": 50, "target": 58, "width": 1}, {"source": 51, "target": 57, "width": 1}, {"source": 51, "target": 58, "width": 1}, {"source": 51, "target": 59, "width": 1}, {"source": 52, "target": 53, "width": 1}, {"source": 52, "target": 61, "width": 1}, {"source": 52, "target": 62, "width": 1}, {"source": 53, "target": 54, "width": 1}, {"source": 53, "target": 61, "width": 1}, {"source": 53, "target": 62, "width": 1}, {"source": 53, "target": 63, "width": 1}, {"source": 54, "target": 55, "width": 1}, {"source": 54, "target": 62, "width": 1}, {"source": 54, "target": 63, "width": 1}, {"source": 54, "target": 64, "width": 1}, {"source": 55, "target": 56, "width": 1}, {"source": 55, "target": 63, "width": 1}, {"source": 55, "target": 64, "width": 1}, {"source": 55, "target": 65, "width": 1}, {"source": 56, "target": 64, "width": 1}, {"source": 56, "target": 65, "width": 1}, {"source": 57, "target": 58, "width": 1}, {"source": 57, "target": 66, "width": 1}, {"source": 58, "target": 59, "width": 1}, {"source": 58, "target": 66, "width": 1}, {"source": 58, "target": 67, "width": 1}, {"source": 59, "target": 60, "width": 1}, {"source": 59, "target": 66, "width": 1}, {"source": 59, "target": 67, "width": 1}, {"source": 60, "target": 67, "width": 1}, {"source": 61, "target": 62, "width": 1}, {"source": 61, "target": 68, "width": 1}, {"source": 61, "target": 69, "width": 1}, {"source": 61, "target": 70, "width": 1}, {"source": 62, "target": 63, "width": 1}, {"source": 62, "target": 69, "width": 1}, {"source": 62, "target": 70, "width": 1}, {"source": 63, "target": 64, "width": 1}, {"source": 63, "target": 70, "width": 1}, {"source": 64, "target": 65, "width": 1}, {"source": 66, "target": 67, "width": 1}, {"source": 66, "target": 71, "width": 1}, {"source": 67, "target": 71, "width": 1}, {"source": 67, "target": 72, "width": 1}, {"source": 68, "target": 69, "width": 1}, {"source": 69, "target": 70, "width": 1}, {"source": 71, "target": 72, "width": 1}, {"source": 71, "target": 75, "width": 1}, {"source": 71, "target": 76, "width": 1}, {"source": 72, "target": 75, "width": 1}, {"source": 72, "target": 76, "width": 1}, {"source": 72, "target": 77, "width": 1}, {"source": 73, "target": 74, "width": 1}, {"source": 73, "target": 78, "width": 1}, {"source": 73, "target": 79, "width": 1}, {"source": 74, "target": 79, "width": 1}, {"source": 75, "target": 76, "width": 1}, {"source": 75, "target": 80, "width": 1}, {"source": 76, "target": 77, "width": 1}, {"source": 76, "target": 80, "width": 1}, {"source": 76, "target": 81, "width": 1}, {"source": 77, "target": 80, "width": 1}, {"source": 77, "target": 81, "width": 1}, {"source": 78, "target": 79, "width": 1}, {"source": 79, "target": 82, "width": 1}, {"source": 80, "target": 81, "width": 1}, {"source": 82, "target": 85, "width": 1}, {"source": 82, "target": 86, "width": 1}, {"source": 82, "target": 87, "width": 1}, {"source": 83, "target": 84, "width": 1}, {"source": 83, "target": 88, "width": 1}, {"source": 83, "target": 89, "width": 1}, {"source": 84, "target": 85, "width": 1}, {"source": 84, "target": 89, "width": 1}, {"source": 84, "target": 90, "width": 1}, {"source": 85, "target": 86, "width": 1}, {"source": 85, "target": 90, "width": 1}, {"source": 85, "target": 91, "width": 1}, {"source": 86, "target": 87, "width": 1}, {"source": 86, "target": 90, "width": 1}, {"source": 86, "target": 91, "width": 1}, {"source": 87, "target": 91, "width": 1}, {"source": 88, "target": 89, "width": 1}, {"source": 90, "target": 91, "width": 1}, {"source": 92, "target": 93, "width": 1}, {"source": 92, "target": 97, "width": 1}, {"source": 92, "target": 98, "width": 1}, {"source": 92, "target": 99, "width": 1}, {"source": 93, "target": 98, "width": 1}, {"source": 93, "target": 99, "width": 1}, {"source": 93, "target": 100, "width": 1}, {"source": 94, "target": 95, "width": 1}, {"source": 94, "target": 101, "width": 1}, {"source": 94, "target": 102, "width": 1}, {"source": 94, "target": 103, "width": 1}, {"source": 95, "target": 96, "width": 1}, {"source": 95, "target": 102, "width": 1}, {"source": 95, "target": 103, "width": 1}, {"source": 95, "target": 104, "width": 1}, {"source": 96, "target": 103, "width": 1}, {"source": 96, "target": 104, "width": 1}, {"source": 96, "target": 105, "width": 1}, {"source": 97, "target": 98, "width": 1}, {"source": 97, "target": 106, "width": 1}, {"source": 98, "target": 99, "width": 1}, {"source": 98, "target": 106, "width": 1}, {"source": 98, "target": 107, "width": 1}, {"source": 99, "target": 100, "width": 1}, {"source": 99, "target": 106, "width": 1}, {"source": 99, "target": 107, "width": 1}, {"source": 99, "target": 108, "width": 1}, {"source": 100, "target": 107, "width": 1}, {"source": 100, "target": 108, "width": 1}, {"source": 101, "target": 102, "width": 1}, {"source": 101, "target": 109, "width": 1}, {"source": 101, "target": 110, "width": 1}, {"source": 102, "target": 103, "width": 1}, {"source": 102, "target": 109, "width": 1}, {"source": 102, "target": 110, "width": 1}, {"source": 102, "target": 111, "width": 1}, {"source": 103, "target": 104, "width": 1}, {"source": 103, "target": 110, "width": 1}, {"source": 103, "target": 111, "width": 1}, {"source": 103, "target": 112, "width": 1}, {"source": 104, "target": 105, "width": 1}, {"source": 104, "target": 111, "width": 1}, {"source": 104, "target": 112, "width": 1}, {"source": 105, "target": 112, "width": 1}, {"source": 106, "target": 107, "width": 1}, {"source": 106, "target": 113, "width": 1}, {"source": 107, "target": 108, "width": 1}, {"source": 107, "target": 113, "width": 1}, {"source": 108, "target": 113, "width": 1}, {"source": 109, "target": 110, "width": 1}, {"source": 109, "target": 114, "width": 1}, {"source": 109, "target": 115, "width": 1}, {"source": 110, "target": 111, "width": 1}, {"source": 110, "target": 114, "width": 1}, {"source": 110, "target": 115, "width": 1}, {"source": 110, "target": 116, "width": 1}, {"source": 111, "target": 112, "width": 1}, {"source": 111, "target": 115, "width": 1}, {"source": 111, "target": 116, "width": 1}, {"source": 111, "target": 117, "width": 1}, {"source": 112, "target": 116, "width": 1}, {"source": 112, "target": 117, "width": 1}, {"source": 114, "target": 115, "width": 1}, {"source": 115, "target": 116, "width": 1}, {"source": 116, "target": 117, "width": 1}, {"source": 118, "target": 119, "width": 1}, {"source": 118, "target": 122, "width": 1}, {"source": 118, "target": 123, "width": 1}, {"source": 118, "target": 124, "width": 1}, {"source": 119, "target": 123, "width": 1}, {"source": 119, "target": 124, "width": 1}, {"source": 120, "target": 121, "width": 1}, {"source": 120, "target": 128, "width": 1}, {"source": 120, "target": 129, "width": 1}, {"source": 120, "target": 130, "width": 1}, {"source": 121, "target": 129, "width": 1}, {"source": 121, "target": 130, "width": 1}, {"source": 122, "target": 123, "width": 1}, {"source": 122, "target": 131, "width": 1}, {"source": 122, "target": 132, "width": 1}, {"source": 123, "target": 124, "width": 1}, {"source": 123, "target": 131, "width": 1}, {"source": 123, "target": 132, "width": 1}, {"source": 123, "target": 133, "width": 1}, {"source": 124, "target": 132, "width": 1}, {"source": 124, "target": 133, "width": 1}, {"source": 124, "target": 134, "width": 1}, {"source": 125, "target": 126, "width": 1}, {"source": 125, "target": 134, "width": 1}, {"source": 125, "target": 135, "width": 1}, {"source": 125, "target": 136, "width": 1}, {"source": 126, "target": 135, "width": 1}, {"source": 126, "target": 136, "width": 1}, {"source": 128, "target": 129, "width": 1}, {"source": 129, "target": 130, "width": 1}, {"source": 131, "target": 132, "width": 1}, {"source": 132, "target": 133, "width": 1}, {"source": 133, "target": 134, "width": 1}, {"source": 134, "target": 135, "width": 1}, {"source": 134, "target": 138, "width": 1}, {"source": 135, "target": 136, "width": 1}, {"source": 135, "target": 138, "width": 1}, {"source": 135, "target": 139, "width": 1}, {"source": 136, "target": 138, "width": 1}, {"source": 136, "target": 139, "width": 1}, {"source": 137, "target": 140, "width": 1}, {"source": 138, "target": 139, "width": 1}, {"source": 141, "target": 142, "width": 1}, {"source": 142, "target": 143, "width": 1}, {"source": 142, "target": 144, "width": 1}, {"source": 143, "target": 144, "width": 1}, {"source": 143, "target": 147, "width": 1}, {"source": 143, "target": 148, "width": 1}, {"source": 143, "target": 149, "width": 1}, {"source": 144, "target": 148, "width": 1}, {"source": 144, "target": 149, "width": 1}, {"source": 145, "target": 146, "width": 1}, {"source": 145, "target": 150, "width": 1}, {"source": 146, "target": 147, "width": 1}, {"source": 146, "target": 150, "width": 1}, {"source": 146, "target": 151, "width": 1}, {"source": 147, "target": 148, "width": 1}, {"source": 147, "target": 150, "width": 1}, {"source": 147, "target": 151, "width": 1}, {"source": 147, "target": 152, "width": 1}, {"source": 148, "target": 149, "width": 1}, {"source": 148, "target": 151, "width": 1}, {"source": 148, "target": 152, "width": 1}, {"source": 149, "target": 152, "width": 1}, {"source": 150, "target": 151, "width": 1}, {"source": 150, "target": 153, "width": 1}, {"source": 151, "target": 152, "width": 1}, {"source": 151, "target": 153, "width": 1}, {"source": 151, "target": 154, "width": 1}, {"source": 152, "target": 153, "width": 1}, {"source": 152, "target": 154, "width": 1}, {"source": 153, "target": 154, "width": 1}], "nodes": [{"color": [[0.3087602078693392]], "id": "", "name": "cube1_cluster0", "size": 3, "tooltip": {"cluster_stats": {"above": [], "below": [], "size": 15}, "custom_tooltips": [142, 180, 181, 207, 214, 244, 307, 333, 371, 730, 826, 830, 1211, 1270, 1272], "dist_label": "Member", "histogram": [[{"color": "rgb(70, 18, 100)", "height": 14.0, "perc": 6.7}, {"color": "rgb(68, 51, 125)", "height": 100.0, "perc": 46.7}, {"color": "rgb(58, 80, 138)", "height": 14.0, "perc": 6.7}, {"color": "rgb(46, 107, 141)", "height": 0.0, "perc": 0.0}, {"color": "rgb(36, 131, 141)", "height": 43.0, "perc": 20.0}, {"color": "rgb(33, 155, 136)", "height": 0.0, "perc": 0.0}, {"color": "rgb(51, 178, 121)", "height": 14.0, "perc": 6.7}, {"color": "rgb(94, 199, 96)", "height": 29.0, "perc": 13.3}, {"color": "rgb(155, 215, 59)", "height": 0.0, "perc": 0.0}, {"color": "rgb(220, 226, 37)", "height": 0.0, "perc": 0.0}]], "node_id": "cube1_cluster0", "projection_stats": []}, "type": "circle"}, {"color": [[0.4023756495916852]], "id": "", "name": "cube2_cluster0", "size": 4, "tooltip": {"cluster_stats": {"above": [], "below": [], "size": 24}, "custom_tooltips": [84, 132, 214, 306, 307, 313, 333, 371, 372, 730, 778, 788, 798, 827, 830, 851, 853, 889, 1031, 1159, 1211, 1270, 1272, 1625], "dist_label": "Member", "histogram": [[{"color": "rgb(70, 18, 100)", "height": 22.0, "perc": 8.3}, {"color": "rgb(68, 51, 125)", "height": 56.0, "perc": 20.8}, {"color": "rgb(58, 80, 138)", "height": 22.0, "perc": 8.3}, {"color": "rgb(46, 107, 141)", "height": 0.0, "perc": 0.0}, {"color": "rgb(36, 131, 141)", "height": 100.0, "perc": 37.5}, {"color": "rgb(33, 155, 136)", "height": 11.0, "perc": 4.2}, {"color": "rgb(51, 178, 121)", "height": 22.0, "perc": 8.3}, {"color": "rgb(94, 199, 96)", "height": 22.0, "perc": 8.3}, {"color": "rgb(155, 215, 59)", "height": 0.0, "perc": 0.0}, {"color": "rgb(220, 226, 37)", "height": 11.0, "perc": 4.2}]], "node_id": "cube2_cluster0", "projection_stats": []}, "type": "circle"}, {"color": [[0.4580952842064491]], "id": "", "name": "cube3_cluster0", "size": 4, "tooltip": {"cluster_stats": {"above": [], "below": [], "size": 23}, "custom_tooltips": [84, 132, 184, 187, 241, 243, 313, 372, 470, 600, 788, 827, 853, 889, 917, 1031, 1159, 1417, 1499, 1625, 1654, 1717, 1721], "dist_label": "Member", "histogram": [[{"color": "rgb(70, 18, 100)", "height": 40.0, "perc": 8.7}, {"color": "rgb(68, 51, 125)", "height": 100.0, "perc": 21.7}, {"color": "rgb(58, 80, 138)", "height": 40.0, "perc": 8.7}, {"color": "rgb(46, 107, 141)", "height": 20.0, "perc": 4.3}, {"color": "rgb(36, 131, 141)", "height": 80.0, "perc": 17.4}, {"color": "rgb(33, 155, 136)", "height": 40.0, "perc": 8.7}, {"color": "rgb(51, 178, 121)", "height": 20.0, "perc": 4.3}, {"color": "rgb(94, 199, 96)", "height": 20.0, "perc": 4.3}, {"color": "rgb(155, 215, 59)", "height": 20.0, "perc": 4.3}, {"color": "rgb(220, 226, 37)", "height": 80.0, "perc": 17.4}]], "node_id": "cube3_cluster0", "projection_stats": []}, "type": "circle"}, {"color": [[0.4516703786191537]], "id": "", "name": "cube6_cluster0", "size": 3, "tooltip": {"cluster_stats": {"above": [], "below": [], "size": 15}, "custom_tooltips": [180, 207, 244, 648, 658, 668, 723, 759, 761, 762, 892, 1179, 1208, 1600, 1679], "dist_label": "Member", "histogram": [[{"color": "rgb(70, 18, 100)", "height": 0.0, "perc": 0.0}, {"color": "rgb(68, 51, 125)", "height": 60.0, "perc": 20.0}, {"color": "rgb(58, 80, 138)", "height": 0.0, "perc": 0.0}, {"color": "rgb(46, 107, 141)", "height": 60.0, "perc": 20.0}, {"color": "rgb(36, 131, 141)", "height": 100.0, "perc": 33.3}, {"color": "rgb(33, 155, 136)", "height": 0.0, "perc": 0.0}, {"color": "rgb(51, 178, 121)", "height": 40.0, "perc": 13.3}, {"color": "rgb(94, 199, 96)", "height": 0.0, "perc": 0.0}, {"color": "rgb(155, 215, 59)", "height": 20.0, "perc": 6.7}, {"color": "rgb(220, 226, 37)", "height": 20.0, "perc": 6.7}]], "node_id": "cube6_cluster0", "projection_stats": []}, "type": "circle"}, {"color": [[0.3883899705438609]], "id": "", "name": "cube7_cluster0", "size": 4, "tooltip": {"cluster_stats": {"above": [], "below": [], "size": 31}, "custom_tooltips": [142, 180, 181, 207, 214, 244, 278, 307, 331, 333, 340, 369, 371, 648, 658, 668, 723, 759, 761, 762, 826, 892, 1179, 1208, 1211, 1214, 1232, 1241, 1272, 1273, 1600], "dist_label": "Member", "histogram": [[{"color": "rgb(70, 18, 100)", "height": 10.0, "perc": 3.2}, {"color": "rgb(68, 51, 125)", "height": 100.0, "perc": 32.3}, {"color": "rgb(58, 80, 138)", "height": 20.0, "perc": 6.5}, {"color": "rgb(46, 107, 141)", "height": 30.0, "perc": 9.7}, {"color": "rgb(36, 131, 141)", "height": 60.0, "perc": 19.4}, {"color": "rgb(33, 155, 136)", "height": 0.0, "perc": 0.0}, {"color": "rgb(51, 178, 121)", "height": 60.0, "perc": 19.4}, {"color": "rgb(94, 199, 96)", "height": 20.0, "perc": 6.5}, {"color": "rgb(155, 215, 59)", "height": 10.0, "perc": 3.2}, {"color": "rgb(220, 226, 37)", "height": 0.0, "perc": 0.0}]], "node_id": "cube7_cluster0", "projection_stats": []}, "type": "circle"}, {"color": [[0.3845710774902081]], "id": "", "name": "cube8_cluster0", "size": 4, "tooltip": {"cluster_stats": {"above": [], "below": [], "size": 29}, "custom_tooltips": [84, 214, 258, 268, 278, 307, 310, 313, 331, 333, 340, 369, 371, 372, 593, 631, 778, 788, 907, 927, 1031, 1159, 1211, 1214, 1232, 1241, 1272, 1273, 1625], "dist_label": "Member", "histogram": [[{"color": "rgb(70, 18, 100)", "height": 10.0, "perc": 3.4}, {"color": "rgb(68, 51, 125)", "height": 100.0, "perc": 34.5}, {"color": "rgb(58, 80, 138)", "height": 30.0, "perc": 10.3}, {"color": "rgb(46, 107, 141)", "height": 20.0, "perc": 6.9}, {"color": "rgb(36, 131, 141)", "height": 20.0, "perc": 6.9}, {"color": "rgb(33, 155, 136)", "height": 30.0, "perc": 10.3}, {"color": "rgb(51, 178, 121)", "height": 50.0, "perc": 17.2}, {"color": "rgb(94, 199, 96)", "height": 20.0, "perc": 6.9}, {"color": "rgb(155, 215, 59)", "height": 0.0, "perc": 0.0}, {"color": "rgb(220, 226, 37)", "height": 10.0, "perc": 3.4}]], "node_id": "cube8_cluster0", "projection_stats": []}, "type": "circle"}, {"color": [[0.4585695484915975]], "id": "", "name": "cube9_cluster0", "size": 4, "tooltip": {"cluster_stats": {"above": [], "below": [], "size": 22}, "custom_tooltips": [84, 187, 313, 372, 408, 463, 470, 499, 501, 593, 600, 788, 907, 927, 986, 1031, 1159, 1417, 1466, 1625, 1654, 1669], "dist_label": "Member", "histogram": [[{"color": "rgb(70, 18, 100)", "height": 17.0, "perc": 4.5}, {"color": "rgb(68, 51, 125)", "height": 33.0, "perc": 9.1}, {"color": "rgb(58, 80, 138)", "height": 100.0, "perc": 27.3}, {"color": "rgb(46, 107, 141)", "height": 33.0, "perc": 9.1}, {"color": "rgb(36, 131, 141)", "height": 17.0, "perc": 4.5}, {"color": "rgb(33, 155, 136)", "height": 67.0, "perc": 18.2}, {"color": "rgb(51, 178, 121)", "height": 17.0, "perc": 4.5}, {"color": "rgb(94, 199, 96)", "height": 17.0, "perc": 4.5}, {"color": "rgb(155, 215, 59)", "height": 17.0, "perc": 4.5}, {"color": "rgb(220, 226, 37)", "height": 50.0, "perc": 13.6}]], "node_id": "cube9_cluster0", "projection_stats": []}, "type": "circle"}, {"color": [[0.7017510175869748]], "id": "", "name": "cube10_cluster0", "size": 4, "tooltip": {"cluster_stats": {"above": [], "below": [], "size": 29}, "custom_tooltips": [187, 408, 463, 470, 499, 501, 833, 986, 1017, 1140, 1417, 1427, 1437, 1465, 1466, 1469, 1472, 1490, 1492, 1528, 1531, 1654, 1669, 1718, 1724, 1742, 1780, 1782, 1783], "dist_label": "Member", "histogram": [[{"color": "rgb(70, 18, 100)", "height": 0.0, "perc": 0.0}, {"color": "rgb(68, 51, 125)", "height": 11.0, "perc": 3.4}, {"color": "rgb(58, 80, 138)", "height": 56.0, "perc": 17.2}, {"color": "rgb(46, 107, 141)", "height": 0.0, "perc": 0.0}, {"color": "rgb(36, 131, 141)", "height": 11.0, "perc": 3.4}, {"color": "rgb(33, 155, 136)", "height": 22.0, "perc": 6.9}, {"color": "rgb(51, 178, 121)", "height": 11.0, "perc": 3.4}, {"color": "rgb(94, 199, 96)", "height": 22.0, "perc": 6.9}, {"color": "rgb(155, 215, 59)", "height": 100.0, "perc": 31.0}, {"color": "rgb(220, 226, 37)", "height": 89.0, "perc": 27.6}]], "node_id": "cube10_cluster0", "projection_stats": []}, "type": "circle"}, {"color": [[0.537393037158598]], "id": "", "name": "cube13_cluster0", "size": 3, "tooltip": {"cluster_stats": {"above": [], "below": [], "size": 19}, "custom_tooltips": [113, 331, 648, 668, 696, 697, 721, 759, 761, 762, 892, 1179, 1208, 1214, 1232, 1273, 1689, 1744, 1751], "dist_label": "Member", "histogram": [[{"color": "rgb(70, 18, 100)", "height": 20.0, "perc": 5.3}, {"color": "rgb(68, 51, 125)", "height": 20.0, "perc": 5.3}, {"color": "rgb(58, 80, 138)", "height": 0.0, "perc": 0.0}, {"color": "rgb(46, 107, 141)", "height": 80.0, "perc": 21.1}, {"color": "rgb(36, 131, 141)", "height": 100.0, "perc": 26.3}, {"color": "rgb(33, 155, 136)", "height": 0.0, "perc": 0.0}, {"color": "rgb(51, 178, 121)", "height": 80.0, "perc": 21.1}, {"color": "rgb(94, 199, 96)", "height": 20.0, "perc": 5.3}, {"color": "rgb(155, 215, 59)", "height": 0.0, "perc": 0.0}, {"color": "rgb(220, 226, 37)", "height": 60.0, "perc": 15.8}]], "node_id": "cube13_cluster0", "projection_stats": []}, "type": "circle"}, {"color": [[0.42506222979169395]], "id": "", "name": "cube14_cluster0", "size": 3, "tooltip": {"cluster_stats": {"above": [], "below": [], "size": 17}, "custom_tooltips": [22, 113, 258, 268, 310, 331, 593, 631, 907, 927, 1041, 1142, 1169, 1214, 1232, 1273, 1547], "dist_label": "Member", "histogram": [[{"color": "rgb(70, 18, 100)", "height": 50.0, "perc": 11.8}, {"color": "rgb(68, 51, 125)", "height": 100.0, "perc": 23.5}, {"color": "rgb(58, 80, 138)", "height": 0.0, "perc": 0.0}, {"color": "rgb(46, 107, 141)", "height": 50.0, "perc": 11.8}, {"color": "rgb(36, 131, 141)", "height": 0.0, "perc": 0.0}, {"color": "rgb(33, 155, 136)", "height": 75.0, "perc": 17.6}, {"color": "rgb(51, 178, 121)", "height": 100.0, "perc": 23.5}, {"color": "rgb(94, 199, 96)", "height": 25.0, "perc": 5.9}, {"color": "rgb(155, 215, 59)", "height": 25.0, "perc": 5.9}, {"color": "rgb(220, 226, 37)", "height": 0.0, "perc": 0.0}]], "node_id": "cube14_cluster0", "projection_stats": []}, "type": "circle"}, {"color": [[0.4482182628062361]], "id": "", "name": "cube15_cluster0", "size": 4, "tooltip": {"cluster_stats": {"above": [], "below": [], "size": 20}, "custom_tooltips": [12, 22, 388, 408, 437, 440, 463, 501, 593, 907, 927, 953, 959, 986, 1014, 1111, 1169, 1547, 1594, 1669], "dist_label": "Member", "histogram": [[{"color": "rgb(70, 18, 100)", "height": 33.0, "perc": 10.0}, {"color": "rgb(68, 51, 125)", "height": 0.0, "perc": 0.0}, {"color": "rgb(58, 80, 138)", "height": 100.0, "perc": 30.0}, {"color": "rgb(46, 107, 141)", "height": 17.0, "perc": 5.0}, {"color": "rgb(36, 131, 141)", "height": 0.0, "perc": 0.0}, {"color": "rgb(33, 155, 136)", "height": 100.0, "perc": 30.0}, {"color": "rgb(51, 178, 121)", "height": 33.0, "perc": 10.0}, {"color": "rgb(94, 199, 96)", "height": 0.0, "perc": 0.0}, {"color": "rgb(155, 215, 59)", "height": 33.0, "perc": 10.0}, {"color": "rgb(220, 226, 37)", "height": 17.0, "perc": 5.0}]], "node_id": "cube15_cluster0", "projection_stats": []}, "type": "circle"}, {"color": [[0.5461024498886414]], "id": "", "name": "cube16_cluster0", "size": 4, "tooltip": {"cluster_stats": {"above": [], "below": [], "size": 20}, "custom_tooltips": [12, 388, 408, 436, 437, 440, 461, 463, 501, 986, 1017, 1140, 1465, 1469, 1492, 1528, 1669, 1742, 1780, 1782], "dist_label": "Member", "histogram": [[{"color": "rgb(70, 18, 100)", "height": 13.0, "perc": 5.0}, {"color": "rgb(68, 51, 125)", "height": 0.0, "perc": 0.0}, {"color": "rgb(58, 80, 138)", "height": 100.0, "perc": 40.0}, {"color": "rgb(46, 107, 141)", "height": 0.0, "perc": 0.0}, {"color": "rgb(36, 131, 141)", "height": 0.0, "perc": 0.0}, {"color": "rgb(33, 155, 136)", "height": 25.0, "perc": 10.0}, {"color": "rgb(51, 178, 121)", "height": 13.0, "perc": 5.0}, {"color": "rgb(94, 199, 96)", "height": 0.0, "perc": 0.0}, {"color": "rgb(155, 215, 59)", "height": 50.0, "perc": 20.0}, {"color": "rgb(220, 226, 37)", "height": 50.0, "perc": 20.0}]], "node_id": "cube16_cluster0", "projection_stats": []}, "type": "circle"}, {"color": [[0.4130230922517876]], "id": "", "name": "cube19_cluster0", "size": 3, "tooltip": {"cluster_stats": {"above": [], "below": [], "size": 19}, "custom_tooltips": [442, 527, 537, 558, 563, 572, 586, 596, 601, 606, 832, 906, 916, 926, 958, 982, 987, 991, 1008], "dist_label": "Member", "histogram": [[{"color": "rgb(70, 18, 100)", "height": 0.0, "perc": 0.0}, {"color": "rgb(68, 51, 125)", "height": 0.0, "perc": 0.0}, {"color": "rgb(58, 80, 138)", "height": 38.0, "perc": 15.8}, {"color": "rgb(46, 107, 141)", "height": 88.0, "perc": 36.8}, {"color": "rgb(36, 131, 141)", "height": 13.0, "perc": 5.3}, {"color": "rgb(33, 155, 136)", "height": 100.0, "perc": 42.1}, {"color": "rgb(51, 178, 121)", "height": 0.0, "perc": 0.0}, {"color": "rgb(94, 199, 96)", "height": 0.0, "perc": 0.0}, {"color": "rgb(155, 215, 59)", "height": 0.0, "perc": 0.0}, {"color": "rgb(220, 226, 37)", "height": 0.0, "perc": 0.0}]], "node_id": "cube19_cluster0", "projection_stats": []}, "type": "circle"}, {"color": [[0.5087750556792873]], "id": "", "name": "cube24_cluster0", "size": 4, "tooltip": {"cluster_stats": {"above": [], "below": [], "size": 25}, "custom_tooltips": [12, 22, 388, 398, 440, 443, 570, 591, 956, 959, 977, 979, 1014, 1016, 1051, 1081, 1084, 1102, 1111, 1362, 1371, 1402, 1403, 1547, 1565], "dist_label": "Member", "histogram": [[{"color": "rgb(70, 18, 100)", "height": 29.0, "perc": 8.0}, {"color": "rgb(68, 51, 125)", "height": 0.0, "perc": 0.0}, {"color": "rgb(58, 80, 138)", "height": 57.0, "perc": 16.0}, {"color": "rgb(46, 107, 141)", "height": 29.0, "perc": 8.0}, {"color": "rgb(36, 131, 141)", "height": 0.0, "perc": 0.0}, {"color": "rgb(33, 155, 136)", "height": 100.0, "perc": 28.0}, {"color": "rgb(51, 178, 121)", "height": 57.0, "perc": 16.0}, {"color": "rgb(94, 199, 96)", "height": 57.0, "perc": 16.0}, {"color": "rgb(155, 215, 59)", "height": 29.0, "perc": 8.0}, {"color": "rgb(220, 226, 37)", "height": 0.0, "perc": 0.0}]], "node_id": "cube24_cluster0", "projection_stats": []}, "type": "circle"}, {"color": [[0.34740781984657265]], "id": "", "name": "cube25_cluster0", "size": 3, "tooltip": {"cluster_stats": {"above": [], "below": [], "size": 18}, "custom_tooltips": [12, 388, 398, 436, 440, 443, 461, 528, 538, 566, 567, 573, 591, 629, 632, 1102, 1362, 1565], "dist_label": "Member", "histogram": [[{"color": "rgb(70, 18, 100)", "height": 13.0, "perc": 5.6}, {"color": "rgb(68, 51, 125)", "height": 0.0, "perc": 0.0}, {"color": "rgb(58, 80, 138)", "height": 100.0, "perc": 44.4}, {"color": "rgb(46, 107, 141)", "height": 75.0, "perc": 33.3}, {"color": "rgb(36, 131, 141)", "height": 0.0, "perc": 0.0}, {"color": "rgb(33, 155, 136)", "height": 0.0, "perc": 0.0}, {"color": "rgb(51, 178, 121)", "height": 13.0, "perc": 5.6}, {"color": "rgb(94, 199, 96)", "height": 13.0, "perc": 5.6}, {"color": "rgb(155, 215, 59)", "height": 13.0, "perc": 5.6}, {"color": "rgb(220, 226, 37)", "height": 0.0, "perc": 0.0}]], "node_id": "cube25_cluster0", "projection_stats": []}, "type": "circle"}, {"color": [[0.41861544172234594]], "id": "", "name": "cube28_cluster0", "size": 4, "tooltip": {"cluster_stats": {"above": [], "below": [], "size": 24}, "custom_tooltips": [442, 517, 527, 537, 558, 563, 572, 586, 596, 601, 606, 609, 623, 916, 947, 952, 958, 972, 982, 987, 991, 994, 1000, 1008], "dist_label": "Member", "histogram": [[{"color": "rgb(70, 18, 100)", "height": 0.0, "perc": 0.0}, {"color": "rgb(68, 51, 125)", "height": 0.0, "perc": 0.0}, {"color": "rgb(58, 80, 138)", "height": 36.0, "perc": 16.7}, {"color": "rgb(46, 107, 141)", "height": 82.0, "perc": 37.5}, {"color": "rgb(36, 131, 141)", "height": 0.0, "perc": 0.0}, {"color": "rgb(33, 155, 136)", "height": 100.0, "perc": 45.8}, {"color": "rgb(51, 178, 121)", "height": 0.0, "perc": 0.0}, {"color": "rgb(94, 199, 96)", "height": 0.0, "perc": 0.0}, {"color": "rgb(155, 215, 59)", "height": 0.0, "perc": 0.0}, {"color": "rgb(220, 226, 37)", "height": 0.0, "perc": 0.0}]], "node_id": "cube28_cluster0", "projection_stats": []}, "type": "circle"}, {"color": [[0.7210140180793921]], "id": "", "name": "cube31_cluster0", "size": 3, "tooltip": {"cluster_stats": {"above": [], "below": [], "size": 17}, "custom_tooltips": [518, 1081, 1084, 1104, 1234, 1289, 1309, 1337, 1338, 1341, 1344, 1400, 1402, 1403, 1557, 1618, 1655], "dist_label": "Member", "histogram": [[{"color": "rgb(70, 18, 100)", "height": 0.0, "perc": 0.0}, {"color": "rgb(68, 51, 125)", "height": 0.0, "perc": 0.0}, {"color": "rgb(58, 80, 138)", "height": 11.0, "perc": 5.9}, {"color": "rgb(46, 107, 141)", "height": 0.0, "perc": 0.0}, {"color": "rgb(36, 131, 141)", "height": 0.0, "perc": 0.0}, {"color": "rgb(33, 155, 136)", "height": 0.0, "perc": 0.0}, {"color": "rgb(51, 178, 121)", "height": 44.0, "perc": 23.5}, {"color": "rgb(94, 199, 96)", "height": 100.0, "perc": 52.9}, {"color": "rgb(155, 215, 59)", "height": 11.0, "perc": 5.9}, {"color": "rgb(220, 226, 37)", "height": 22.0, "perc": 11.8}]], "node_id": "cube31_cluster0", "projection_stats": []}, "type": "circle"}, {"color": [[0.6667088479449281]], "id": "", "name": "cube32_cluster0", "size": 4, "tooltip": {"cluster_stats": {"above": [], "below": [], "size": 22}, "custom_tooltips": [518, 591, 956, 977, 979, 1016, 1051, 1081, 1084, 1143, 1299, 1309, 1338, 1341, 1344, 1371, 1400, 1402, 1403, 1557, 1565, 1618], "dist_label": "Member", "histogram": [[{"color": "rgb(70, 18, 100)", "height": 0.0, "perc": 0.0}, {"color": "rgb(68, 51, 125)", "height": 0.0, "perc": 0.0}, {"color": "rgb(58, 80, 138)", "height": 11.0, "perc": 4.5}, {"color": "rgb(46, 107, 141)", "height": 11.0, "perc": 4.5}, {"color": "rgb(36, 131, 141)", "height": 0.0, "perc": 0.0}, {"color": "rgb(33, 155, 136)", "height": 56.0, "perc": 22.7}, {"color": "rgb(51, 178, 121)", "height": 33.0, "perc": 13.6}, {"color": "rgb(94, 199, 96)", "height": 100.0, "perc": 40.9}, {"color": "rgb(155, 215, 59)", "height": 22.0, "perc": 9.1}, {"color": "rgb(220, 226, 37)", "height": 11.0, "perc": 4.5}]], "node_id": "cube32_cluster0", "projection_stats": []}, "type": "circle"}, {"color": [[0.3939123979213066]], "id": "", "name": "cube40_cluster0", "size": 3, "tooltip": {"cluster_stats": {"above": [], "below": [], "size": 15}, "custom_tooltips": [67, 321, 322, 362, 652, 662, 672, 704, 882, 911, 921, 960, 969, 1092, 1115], "dist_label": "Member", "histogram": [[{"color": "rgb(70, 18, 100)", "height": 25.0, "perc": 6.7}, {"color": "rgb(68, 51, 125)", "height": 50.0, "perc": 13.3}, {"color": "rgb(58, 80, 138)", "height": 25.0, "perc": 6.7}, {"color": "rgb(46, 107, 141)", "height": 100.0, "perc": 26.7}, {"color": "rgb(36, 131, 141)", "height": 25.0, "perc": 6.7}, {"color": "rgb(33, 155, 136)", "height": 100.0, "perc": 26.7}, {"color": "rgb(51, 178, 121)", "height": 50.0, "perc": 13.3}, {"color": "rgb(94, 199, 96)", "height": 0.0, "perc": 0.0}, {"color": "rgb(155, 215, 59)", "height": 0.0, "perc": 0.0}, {"color": "rgb(220, 226, 37)", "height": 0.0, "perc": 0.0}]], "node_id": "cube40_cluster0", "projection_stats": []}, "type": "circle"}, {"color": [[0.4980697847067558]], "id": "", "name": "cube41_cluster0", "size": 3, "tooltip": {"cluster_stats": {"above": [], "below": [], "size": 15}, "custom_tooltips": [344, 672, 711, 713, 741, 882, 911, 921, 931, 960, 969, 984, 1035, 1163, 1481], "dist_label": "Member", "histogram": [[{"color": "rgb(70, 18, 100)", "height": 0.0, "perc": 0.0}, {"color": "rgb(68, 51, 125)", "height": 14.0, "perc": 6.7}, {"color": "rgb(58, 80, 138)", "height": 0.0, "perc": 0.0}, {"color": "rgb(46, 107, 141)", "height": 43.0, "perc": 20.0}, {"color": "rgb(36, 131, 141)", "height": 29.0, "perc": 13.3}, {"color": "rgb(33, 155, 136)", "height": 100.0, "perc": 46.7}, {"color": "rgb(51, 178, 121)", "height": 14.0, "perc": 6.7}, {"color": "rgb(94, 199, 96)", "height": 0.0, "perc": 0.0}, {"color": "rgb(155, 215, 59)", "height": 14.0, "perc": 6.7}, {"color": "rgb(220, 226, 37)", "height": 0.0, "perc": 0.0}]], "node_id": "cube41_cluster0", "projection_stats": []}, "type": "circle"}, {"color": [[0.3960282108389012]], "id": "", "name": "cube44_cluster0", "size": 4, "tooltip": {"cluster_stats": {"above": [], "below": [], "size": 30}, "custom_tooltips": [67, 164, 188, 196, 197, 212, 272, 282, 321, 322, 360, 362, 652, 662, 672, 680, 704, 728, 858, 882, 911, 921, 960, 969, 1092, 1115, 1482, 1673, 1701, 1733], "dist_label": "Member", "histogram": [[{"color": "rgb(70, 18, 100)", "height": 25.0, "perc": 6.7}, {"color": "rgb(68, 51, 125)", "height": 100.0, "perc": 26.7}, {"color": "rgb(58, 80, 138)", "height": 25.0, "perc": 6.7}, {"color": "rgb(46, 107, 141)", "height": 63.0, "perc": 16.7}, {"color": "rgb(36, 131, 141)", "height": 38.0, "perc": 10.0}, {"color": "rgb(33, 155, 136)", "height": 50.0, "perc": 13.3}, {"color": "rgb(51, 178, 121)", "height": 25.0, "perc": 6.7}, {"color": "rgb(94, 199, 96)", "height": 0.0, "perc": 0.0}, {"color": "rgb(155, 215, 59)", "height": 13.0, "perc": 3.3}, {"color": "rgb(220, 226, 37)", "height": 38.0, "perc": 10.0}]], "node_id": "cube44_cluster0", "projection_stats": []}, "type": "circle"}, {"color": [[0.5291661207913009]], "id": "", "name": "cube45_cluster0", "size": 4, "tooltip": {"cluster_stats": {"above": [], "below": [], "size": 34}, "custom_tooltips": [136, 262, 272, 344, 360, 672, 711, 713, 728, 741, 858, 882, 911, 921, 931, 939, 960, 967, 968, 969, 984, 1005, 1007, 1035, 1055, 1133, 1163, 1441, 1480, 1481, 1482, 1510, 1519, 1773], "dist_label": "Member", "histogram": [[{"color": "rgb(70, 18, 100)", "height": 8.0, "perc": 2.9}, {"color": "rgb(68, 51, 125)", "height": 23.0, "perc": 8.8}, {"color": "rgb(58, 80, 138)", "height": 8.0, "perc": 2.9}, {"color": "rgb(46, 107, 141)", "height": 23.0, "perc": 8.8}, {"color": "rgb(36, 131, 141)", "height": 31.0, "perc": 11.8}, {"color": "rgb(33, 155, 136)", "height": 100.0, "perc": 38.2}, {"color": "rgb(51, 178, 121)", "height": 15.0, "perc": 5.9}, {"color": "rgb(94, 199, 96)", "height": 0.0, "perc": 0.0}, {"color": "rgb(155, 215, 59)", "height": 46.0, "perc": 17.6}, {"color": "rgb(220, 226, 37)", "height": 8.0, "perc": 2.9}]], "node_id": "cube45_cluster0", "projection_stats": []}, "type": "circle"}, {"color": [[0.6039023917885155]], "id": "", "name": "cube46_cluster0", "size": 4, "tooltip": {"cluster_stats": {"above": [], "below": [], "size": 23}, "custom_tooltips": [136, 234, 314, 344, 741, 810, 931, 1005, 1007, 1035, 1045, 1133, 1163, 1421, 1431, 1441, 1473, 1480, 1497, 1503, 1510, 1519, 1773], "dist_label": "Member", "histogram": [[{"color": "rgb(70, 18, 100)", "height": 14.0, "perc": 4.3}, {"color": "rgb(68, 51, 125)", "height": 43.0, "perc": 13.0}, {"color": "rgb(58, 80, 138)", "height": 0.0, "perc": 0.0}, {"color": "rgb(46, 107, 141)", "height": 0.0, "perc": 0.0}, {"color": "rgb(36, 131, 141)", "height": 29.0, "perc": 8.7}, {"color": "rgb(33, 155, 136)", "height": 71.0, "perc": 21.7}, {"color": "rgb(51, 178, 121)", "height": 29.0, "perc": 8.7}, {"color": "rgb(94, 199, 96)", "height": 29.0, "perc": 8.7}, {"color": "rgb(155, 215, 59)", "height": 100.0, "perc": 30.4}, {"color": "rgb(220, 226, 37)", "height": 14.0, "perc": 4.3}]], "node_id": "cube46_cluster0", "projection_stats": []}, "type": "circle"}, {"color": [[0.5498677616926503]], "id": "", "name": "cube50_cluster0", "size": 3, "tooltip": {"cluster_stats": {"above": [], "below": [], "size": 16}, "custom_tooltips": [295, 635, 785, 914, 924, 934, 942, 944, 971, 975, 993, 1006, 1027, 1296, 1484, 1676], "dist_label": "Member", "histogram": [[{"color": "rgb(70, 18, 100)", "height": 0.0, "perc": 0.0}, {"color": "rgb(68, 51, 125)", "height": 10.0, "perc": 6.2}, {"color": "rgb(58, 80, 138)", "height": 0.0, "perc": 0.0}, {"color": "rgb(46, 107, 141)", "height": 10.0, "perc": 6.2}, {"color": "rgb(36, 131, 141)", "height": 10.0, "perc": 6.2}, {"color": "rgb(33, 155, 136)", "height": 100.0, "perc": 62.5}, {"color": "rgb(51, 178, 121)", "height": 0.0, "perc": 0.0}, {"color": "rgb(94, 199, 96)", "height": 10.0, "perc": 6.2}, {"color": "rgb(155, 215, 59)", "height": 10.0, "perc": 6.2}, {"color": "rgb(220, 226, 37)", "height": 10.0, "perc": 6.2}]], "node_id": "cube50_cluster0", "projection_stats": []}, "type": "circle"}, {"color": [[0.6458797327394208]], "id": "", "name": "cube51_cluster0", "size": 3, "tooltip": {"cluster_stats": {"above": [], "below": [], "size": 16}, "custom_tooltips": [39, 635, 785, 904, 944, 1006, 1027, 1296, 1424, 1434, 1444, 1454, 1484, 1488, 1520, 1676], "dist_label": "Member", "histogram": [[{"color": "rgb(70, 18, 100)", "height": 20.0, "perc": 6.2}, {"color": "rgb(68, 51, 125)", "height": 0.0, "perc": 0.0}, {"color": "rgb(58, 80, 138)", "height": 0.0, "perc": 0.0}, {"color": "rgb(46, 107, 141)", "height": 20.0, "perc": 6.2}, {"color": "rgb(36, 131, 141)", "height": 20.0, "perc": 6.2}, {"color": "rgb(33, 155, 136)", "height": 80.0, "perc": 25.0}, {"color": "rgb(51, 178, 121)", "height": 0.0, "perc": 0.0}, {"color": "rgb(94, 199, 96)", "height": 60.0, "perc": 18.8}, {"color": "rgb(155, 215, 59)", "height": 100.0, "perc": 31.2}, {"color": "rgb(220, 226, 37)", "height": 20.0, "perc": 6.2}]], "node_id": "cube51_cluster0", "projection_stats": []}, "type": "circle"}, {"color": [[0.5053334896260696]], "id": "", "name": "cube55_cluster0", "size": 3, "tooltip": {"cluster_stats": {"above": [], "below": [], "size": 19}, "custom_tooltips": [188, 196, 522, 550, 574, 581, 582, 598, 604, 611, 620, 622, 1173, 1261, 1673, 1693, 1701, 1733, 1762], "dist_label": "Member", "histogram": [[{"color": "rgb(70, 18, 100)", "height": 0.0, "perc": 0.0}, {"color": "rgb(68, 51, 125)", "height": 22.0, "perc": 10.5}, {"color": "rgb(58, 80, 138)", "height": 11.0, "perc": 5.3}, {"color": "rgb(46, 107, 141)", "height": 100.0, "perc": 47.4}, {"color": "rgb(36, 131, 141)", "height": 0.0, "perc": 0.0}, {"color": "rgb(33, 155, 136)", "height": 0.0, "perc": 0.0}, {"color": "rgb(51, 178, 121)", "height": 11.0, "perc": 5.3}, {"color": "rgb(94, 199, 96)", "height": 11.0, "perc": 5.3}, {"color": "rgb(155, 215, 59)", "height": 0.0, "perc": 0.0}, {"color": "rgb(220, 226, 37)", "height": 56.0, "perc": 26.3}]], "node_id": "cube55_cluster0", "projection_stats": []}, "type": "circle"}, {"color": [[0.4845563239948424]], "id": "", "name": "cube56_cluster0", "size": 3, "tooltip": {"cluster_stats": {"above": [], "below": [], "size": 19}, "custom_tooltips": [188, 196, 197, 272, 290, 351, 522, 542, 611, 680, 858, 1094, 1191, 1261, 1482, 1673, 1693, 1701, 1733], "dist_label": "Member", "histogram": [[{"color": "rgb(70, 18, 100)", "height": 0.0, "perc": 0.0}, {"color": "rgb(68, 51, 125)", "height": 100.0, "perc": 31.6}, {"color": "rgb(58, 80, 138)", "height": 17.0, "perc": 5.3}, {"color": "rgb(46, 107, 141)", "height": 50.0, "perc": 15.8}, {"color": "rgb(36, 131, 141)", "height": 17.0, "perc": 5.3}, {"color": "rgb(33, 155, 136)", "height": 0.0, "perc": 0.0}, {"color": "rgb(51, 178, 121)", "height": 33.0, "perc": 10.5}, {"color": "rgb(94, 199, 96)", "height": 17.0, "perc": 5.3}, {"color": "rgb(155, 215, 59)", "height": 17.0, "perc": 5.3}, {"color": "rgb(220, 226, 37)", "height": 67.0, "perc": 21.1}]], "node_id": "cube56_cluster0", "projection_stats": []}, "type": "circle"}, {"color": [[0.5078841870824053]], "id": "", "name": "cube57_cluster0", "size": 4, "tooltip": {"cluster_stats": {"above": [], "below": [], "size": 25}, "custom_tooltips": [136, 272, 290, 323, 351, 532, 542, 583, 712, 858, 939, 967, 968, 996, 1007, 1055, 1094, 1122, 1133, 1191, 1449, 1482, 1510, 1519, 1773], "dist_label": "Member", "histogram": [[{"color": "rgb(70, 18, 100)", "height": 17.0, "perc": 4.0}, {"color": "rgb(68, 51, 125)", "height": 67.0, "perc": 16.0}, {"color": "rgb(58, 80, 138)", "height": 17.0, "perc": 4.0}, {"color": "rgb(46, 107, 141)", "height": 50.0, "perc": 12.0}, {"color": "rgb(36, 131, 141)", "height": 17.0, "perc": 4.0}, {"color": "rgb(33, 155, 136)", "height": 100.0, "perc": 24.0}, {"color": "rgb(51, 178, 121)", "height": 67.0, "perc": 16.0}, {"color": "rgb(94, 199, 96)", "height": 0.0, "perc": 0.0}, {"color": "rgb(155, 215, 59)", "height": 67.0, "perc": 16.0}, {"color": "rgb(220, 226, 37)", "height": 17.0, "perc": 4.0}]], "node_id": "cube57_cluster0", "projection_stats": []}, "type": "circle"}, {"color": [[0.6211157068618092]], "id": "", "name": "cube58_cluster0", "size": 4, "tooltip": {"cluster_stats": {"above": [], "below": [], "size": 21}, "custom_tooltips": [136, 232, 444, 532, 583, 810, 871, 1007, 1045, 1122, 1133, 1421, 1431, 1449, 1497, 1503, 1510, 1519, 1683, 1725, 1773], "dist_label": "Member", "histogram": [[{"color": "rgb(70, 18, 100)", "height": 20.0, "perc": 4.8}, {"color": "rgb(68, 51, 125)", "height": 20.0, "perc": 4.8}, {"color": "rgb(58, 80, 138)", "height": 40.0, "perc": 9.5}, {"color": "rgb(46, 107, 141)", "height": 20.0, "perc": 4.8}, {"color": "rgb(36, 131, 141)", "height": 40.0, "perc": 9.5}, {"color": "rgb(33, 155, 136)", "height": 40.0, "perc": 9.5}, {"color": "rgb(51, 178, 121)", "height": 40.0, "perc": 9.5}, {"color": "rgb(94, 199, 96)", "height": 40.0, "perc": 9.5}, {"color": "rgb(155, 215, 59)", "height": 100.0, "perc": 23.8}, {"color": "rgb(220, 226, 37)", "height": 60.0, "perc": 14.3}]], "node_id": "cube58_cluster0", "projection_stats": []}, "type": "circle"}, {"color": [[0.4285012445958339]], "id": "", "name": "cube63_cluster0", "size": 3, "tooltip": {"cluster_stats": {"above": [], "below": [], "size": 17}, "custom_tooltips": [105, 119, 139, 167, 169, 287, 405, 415, 881, 942, 971, 993, 1176, 1356, 1616, 1646, 1696], "dist_label": "Member", "histogram": [[{"color": "rgb(70, 18, 100)", "height": 100.0, "perc": 29.4}, {"color": "rgb(68, 51, 125)", "height": 20.0, "perc": 5.9}, {"color": "rgb(58, 80, 138)", "height": 40.0, "perc": 11.8}, {"color": "rgb(46, 107, 141)", "height": 0.0, "perc": 0.0}, {"color": "rgb(36, 131, 141)", "height": 20.0, "perc": 5.9}, {"color": "rgb(33, 155, 136)", "height": 60.0, "perc": 17.6}, {"color": "rgb(51, 178, 121)", "height": 20.0, "perc": 5.9}, {"color": "rgb(94, 199, 96)", "height": 20.0, "perc": 5.9}, {"color": "rgb(155, 215, 59)", "height": 20.0, "perc": 5.9}, {"color": "rgb(220, 226, 37)", "height": 40.0, "perc": 11.8}]], "node_id": "cube63_cluster0", "projection_stats": []}, "type": "circle"}, {"color": [[0.4532095132039452]], "id": "", "name": "cube64_cluster0", "size": 4, "tooltip": {"cluster_stats": {"above": [], "below": [], "size": 28}, "custom_tooltips": [139, 167, 295, 405, 415, 425, 455, 478, 505, 514, 635, 644, 785, 805, 845, 881, 924, 942, 944, 971, 993, 1006, 1027, 1356, 1379, 1484, 1676, 1696], "dist_label": "Member", "histogram": [[{"color": "rgb(70, 18, 100)", "height": 29.0, "perc": 7.1}, {"color": "rgb(68, 51, 125)", "height": 14.0, "perc": 3.6}, {"color": "rgb(58, 80, 138)", "height": 100.0, "perc": 25.0}, {"color": "rgb(46, 107, 141)", "height": 29.0, "perc": 7.1}, {"color": "rgb(36, 131, 141)", "height": 57.0, "perc": 14.3}, {"color": "rgb(33, 155, 136)", "height": 100.0, "perc": 25.0}, {"color": "rgb(51, 178, 121)", "height": 0.0, "perc": 0.0}, {"color": "rgb(94, 199, 96)", "height": 29.0, "perc": 7.1}, {"color": "rgb(155, 215, 59)", "height": 14.0, "perc": 3.6}, {"color": "rgb(220, 226, 37)", "height": 29.0, "perc": 7.1}]], "node_id": "cube64_cluster0", "projection_stats": []}, "type": "circle"}, {"color": [[0.6060342427616926]], "id": "", "name": "cube65_cluster0", "size": 4, "tooltip": {"cluster_stats": {"above": [], "below": [], "size": 32}, "custom_tooltips": [39, 285, 425, 455, 478, 505, 514, 635, 785, 904, 936, 944, 1006, 1020, 1027, 1282, 1318, 1324, 1379, 1424, 1434, 1444, 1446, 1452, 1454, 1484, 1488, 1507, 1520, 1534, 1676, 1706], "dist_label": "Member", "histogram": [[{"color": "rgb(70, 18, 100)", "height": 11.0, "perc": 3.1}, {"color": "rgb(68, 51, 125)", "height": 11.0, "perc": 3.1}, {"color": "rgb(58, 80, 138)", "height": 56.0, "perc": 15.6}, {"color": "rgb(46, 107, 141)", "height": 11.0, "perc": 3.1}, {"color": "rgb(36, 131, 141)", "height": 11.0, "perc": 3.1}, {"color": "rgb(33, 155, 136)", "height": 67.0, "perc": 18.8}, {"color": "rgb(51, 178, 121)", "height": 0.0, "perc": 0.0}, {"color": "rgb(94, 199, 96)", "height": 67.0, "perc": 18.8}, {"color": "rgb(155, 215, 59)", "height": 100.0, "perc": 28.1}, {"color": "rgb(220, 226, 37)", "height": 22.0, "perc": 6.2}]], "node_id": "cube65_cluster0", "projection_stats": []}, "type": "circle"}, {"color": [[0.5519530580777796]], "id": "", "name": "cube66_cluster0", "size": 4, "tooltip": {"cluster_stats": {"above": [], "below": [], "size": 26}, "custom_tooltips": [39, 92, 128, 285, 395, 553, 585, 641, 807, 815, 868, 895, 901, 904, 1282, 1318, 1392, 1434, 1452, 1454, 1507, 1534, 1540, 1543, 1704, 1706], "dist_label": "Member", "histogram": [[{"color": "rgb(70, 18, 100)", "height": 50.0, "perc": 11.5}, {"color": "rgb(68, 51, 125)", "height": 17.0, "perc": 3.8}, {"color": "rgb(58, 80, 138)", "height": 17.0, "perc": 3.8}, {"color": "rgb(46, 107, 141)", "height": 50.0, "perc": 11.5}, {"color": "rgb(36, 131, 141)", "height": 67.0, "perc": 15.4}, {"color": "rgb(33, 155, 136)", "height": 33.0, "perc": 7.7}, {"color": "rgb(51, 178, 121)", "height": 0.0, "perc": 0.0}, {"color": "rgb(94, 199, 96)", "height": 67.0, "perc": 15.4}, {"color": "rgb(155, 215, 59)", "height": 100.0, "perc": 23.1}, {"color": "rgb(220, 226, 37)", "height": 33.0, "perc": 7.7}]], "node_id": "cube66_cluster0", "projection_stats": []}, "type": "circle"}, {"color": [[0.42940661788100537]], "id": "", "name": "cube69_cluster0", "size": 4, "tooltip": {"cluster_stats": {"above": [], "below": [], "size": 28}, "custom_tooltips": [26, 58, 66, 82, 104, 468, 522, 550, 574, 581, 582, 598, 604, 611, 620, 622, 734, 750, 1085, 1109, 1131, 1173, 1223, 1224, 1261, 1732, 1749, 1755], "dist_label": "Member", "histogram": [[{"color": "rgb(70, 18, 100)", "height": 56.0, "perc": 17.9}, {"color": "rgb(68, 51, 125)", "height": 0.0, "perc": 0.0}, {"color": "rgb(58, 80, 138)", "height": 22.0, "perc": 7.1}, {"color": "rgb(46, 107, 141)", "height": 100.0, "perc": 32.1}, {"color": "rgb(36, 131, 141)", "height": 22.0, "perc": 7.1}, {"color": "rgb(33, 155, 136)", "height": 0.0, "perc": 0.0}, {"color": "rgb(51, 178, 121)", "height": 67.0, "perc": 21.4}, {"color": "rgb(94, 199, 96)", "height": 11.0, "perc": 3.6}, {"color": "rgb(155, 215, 59)", "height": 0.0, "perc": 0.0}, {"color": "rgb(220, 226, 37)", "height": 33.0, "perc": 10.7}]], "node_id": "cube69_cluster0", "projection_stats": []}, "type": "circle"}, {"color": [[0.5055414147841765]], "id": "", "name": "cube70_cluster0", "size": 4, "tooltip": {"cluster_stats": {"above": [], "below": [], "size": 21}, "custom_tooltips": [65, 290, 338, 351, 468, 522, 611, 734, 750, 752, 989, 1094, 1109, 1183, 1191, 1223, 1224, 1261, 1521, 1636, 1755], "dist_label": "Member", "histogram": [[{"color": "rgb(70, 18, 100)", "height": 17.0, "perc": 4.8}, {"color": "rgb(68, 51, 125)", "height": 50.0, "perc": 14.3}, {"color": "rgb(58, 80, 138)", "height": 33.0, "perc": 9.5}, {"color": "rgb(46, 107, 141)", "height": 17.0, "perc": 4.8}, {"color": "rgb(36, 131, 141)", "height": 50.0, "perc": 14.3}, {"color": "rgb(33, 155, 136)", "height": 17.0, "perc": 4.8}, {"color": "rgb(51, 178, 121)", "height": 100.0, "perc": 28.6}, {"color": "rgb(94, 199, 96)", "height": 17.0, "perc": 4.8}, {"color": "rgb(155, 215, 59)", "height": 17.0, "perc": 4.8}, {"color": "rgb(220, 226, 37)", "height": 33.0, "perc": 9.5}]], "node_id": "cube70_cluster0", "projection_stats": []}, "type": "circle"}, {"color": [[0.6026885141584474]], "id": "", "name": "cube71_cluster0", "size": 4, "tooltip": {"cluster_stats": {"above": [], "below": [], "size": 21}, "custom_tooltips": [290, 323, 351, 712, 989, 996, 1093, 1094, 1122, 1183, 1191, 1222, 1239, 1245, 1252, 1263, 1313, 1321, 1375, 1521, 1636], "dist_label": "Member", "histogram": [[{"color": "rgb(70, 18, 100)", "height": 0.0, "perc": 0.0}, {"color": "rgb(68, 51, 125)", "height": 33.0, "perc": 14.3}, {"color": "rgb(58, 80, 138)", "height": 0.0, "perc": 0.0}, {"color": "rgb(46, 107, 141)", "height": 11.0, "perc": 4.8}, {"color": "rgb(36, 131, 141)", "height": 0.0, "perc": 0.0}, {"color": "rgb(33, 155, 136)", "height": 22.0, "perc": 9.5}, {"color": "rgb(51, 178, 121)", "height": 100.0, "perc": 42.9}, {"color": "rgb(94, 199, 96)", "height": 44.0, "perc": 19.0}, {"color": "rgb(155, 215, 59)", "height": 11.0, "perc": 4.8}, {"color": "rgb(220, 226, 37)", "height": 11.0, "perc": 4.8}]], "node_id": "cube71_cluster0", "projection_stats": []}, "type": "circle"}, {"color": [[0.5243351238045328]], "id": "", "name": "cube72_cluster0", "size": 3, "tooltip": {"cluster_stats": {"above": [], "below": [], "size": 17}, "custom_tooltips": [232, 392, 412, 451, 452, 453, 490, 841, 1122, 1239, 1245, 1263, 1313, 1321, 1375, 1683, 1725], "dist_label": "Member", "histogram": [[{"color": "rgb(70, 18, 100)", "height": 0.0, "perc": 0.0}, {"color": "rgb(68, 51, 125)", "height": 17.0, "perc": 5.9}, {"color": "rgb(58, 80, 138)", "height": 100.0, "perc": 35.3}, {"color": "rgb(46, 107, 141)", "height": 0.0, "perc": 0.0}, {"color": "rgb(36, 131, 141)", "height": 17.0, "perc": 5.9}, {"color": "rgb(33, 155, 136)", "height": 0.0, "perc": 0.0}, {"color": "rgb(51, 178, 121)", "height": 50.0, "perc": 17.6}, {"color": "rgb(94, 199, 96)", "height": 67.0, "perc": 23.5}, {"color": "rgb(155, 215, 59)", "height": 0.0, "perc": 0.0}, {"color": "rgb(220, 226, 37)", "height": 33.0, "perc": 11.8}]], "node_id": "cube72_cluster0", "projection_stats": []}, "type": "circle"}, {"color": [[0.27521476296531977]], "id": "", "name": "cube79_cluster0", "size": 4, "tooltip": {"cluster_stats": {"above": [], "below": [], "size": 21}, "custom_tooltips": [5, 19, 29, 31, 73, 105, 119, 139, 149, 159, 161, 169, 199, 233, 405, 415, 1226, 1616, 1646, 1696, 1786], "dist_label": "Member", "histogram": [[{"color": "rgb(70, 18, 100)", "height": 100.0, "perc": 57.1}, {"color": "rgb(68, 51, 125)", "height": 17.0, "perc": 9.5}, {"color": "rgb(58, 80, 138)", "height": 17.0, "perc": 9.5}, {"color": "rgb(46, 107, 141)", "height": 0.0, "perc": 0.0}, {"color": "rgb(36, 131, 141)", "height": 0.0, "perc": 0.0}, {"color": "rgb(33, 155, 136)", "height": 0.0, "perc": 0.0}, {"color": "rgb(51, 178, 121)", "height": 8.0, "perc": 4.8}, {"color": "rgb(94, 199, 96)", "height": 0.0, "perc": 0.0}, {"color": "rgb(155, 215, 59)", "height": 8.0, "perc": 4.8}, {"color": "rgb(220, 226, 37)", "height": 25.0, "perc": 14.3}]], "node_id": "cube79_cluster0", "projection_stats": []}, "type": "circle"}, {"color": [[0.48216200610409965]], "id": "", "name": "cube80_cluster0", "size": 4, "tooltip": {"cluster_stats": {"above": [], "below": [], "size": 27}, "custom_tooltips": [139, 149, 159, 199, 203, 220, 233, 405, 415, 425, 455, 478, 505, 514, 644, 805, 849, 1226, 1379, 1696, 1698, 1736, 1740, 1759, 1772, 1786, 1792], "dist_label": "Member", "histogram": [[{"color": "rgb(70, 18, 100)", "height": 38.0, "perc": 11.1}, {"color": "rgb(68, 51, 125)", "height": 50.0, "perc": 14.8}, {"color": "rgb(58, 80, 138)", "height": 88.0, "perc": 25.9}, {"color": "rgb(46, 107, 141)", "height": 13.0, "perc": 3.7}, {"color": "rgb(36, 131, 141)", "height": 25.0, "perc": 7.4}, {"color": "rgb(33, 155, 136)", "height": 0.0, "perc": 0.0}, {"color": "rgb(51, 178, 121)", "height": 13.0, "perc": 3.7}, {"color": "rgb(94, 199, 96)", "height": 13.0, "perc": 3.7}, {"color": "rgb(155, 215, 59)", "height": 0.0, "perc": 0.0}, {"color": "rgb(220, 226, 37)", "height": 100.0, "perc": 29.6}]], "node_id": "cube80_cluster0", "projection_stats": []}, "type": "circle"}, {"color": [[0.6302672605790646]], "id": "", "name": "cube81_cluster0", "size": 4, "tooltip": {"cluster_stats": {"above": [], "below": [], "size": 25}, "custom_tooltips": [203, 220, 425, 455, 478, 505, 514, 849, 1188, 1196, 1262, 1276, 1306, 1316, 1318, 1324, 1360, 1379, 1446, 1534, 1686, 1736, 1759, 1772, 1792], "dist_label": "Member", "histogram": [[{"color": "rgb(70, 18, 100)", "height": 0.0, "perc": 0.0}, {"color": "rgb(68, 51, 125)", "height": 25.0, "perc": 8.0}, {"color": "rgb(58, 80, 138)", "height": 63.0, "perc": 20.0}, {"color": "rgb(46, 107, 141)", "height": 0.0, "perc": 0.0}, {"color": "rgb(36, 131, 141)", "height": 13.0, "perc": 4.0}, {"color": "rgb(33, 155, 136)", "height": 0.0, "perc": 0.0}, {"color": "rgb(51, 178, 121)", "height": 25.0, "perc": 8.0}, {"color": "rgb(94, 199, 96)", "height": 100.0, "perc": 32.0}, {"color": "rgb(155, 215, 59)", "height": 25.0, "perc": 8.0}, {"color": "rgb(220, 226, 37)", "height": 63.0, "perc": 20.0}]], "node_id": "cube81_cluster0", "projection_stats": []}, "type": "circle"}, {"color": [[0.6111420440485029]], "id": "", "name": "cube82_cluster0", "size": 3, "tooltip": {"cluster_stats": {"above": [], "below": [], "size": 18}, "custom_tooltips": [535, 585, 589, 641, 807, 815, 1188, 1194, 1196, 1249, 1306, 1316, 1318, 1326, 1360, 1392, 1406, 1534], "dist_label": "Member", "histogram": [[{"color": "rgb(70, 18, 100)", "height": 0.0, "perc": 0.0}, {"color": "rgb(68, 51, 125)", "height": 0.0, "perc": 0.0}, {"color": "rgb(58, 80, 138)", "height": 14.0, "perc": 5.6}, {"color": "rgb(46, 107, 141)", "height": 43.0, "perc": 16.7}, {"color": "rgb(36, 131, 141)", "height": 29.0, "perc": 11.1}, {"color": "rgb(33, 155, 136)", "height": 0.0, "perc": 0.0}, {"color": "rgb(51, 178, 121)", "height": 57.0, "perc": 22.2}, {"color": "rgb(94, 199, 96)", "height": 100.0, "perc": 38.9}, {"color": "rgb(155, 215, 59)", "height": 14.0, "perc": 5.6}, {"color": "rgb(220, 226, 37)", "height": 0.0, "perc": 0.0}]], "node_id": "cube82_cluster0", "projection_stats": []}, "type": "circle"}, {"color": [[0.4593541202672606]], "id": "", "name": "cube89_cluster0", "size": 4, "tooltip": {"cluster_stats": {"above": [], "below": [], "size": 25}, "custom_tooltips": [6, 26, 58, 66, 82, 88, 95, 104, 106, 156, 195, 734, 750, 834, 1109, 1131, 1569, 1608, 1609, 1645, 1647, 1732, 1749, 1755, 1771], "dist_label": "Member", "histogram": [[{"color": "rgb(70, 18, 100)", "height": 100.0, "perc": 40.0}, {"color": "rgb(68, 51, 125)", "height": 10.0, "perc": 4.0}, {"color": "rgb(58, 80, 138)", "height": 0.0, "perc": 0.0}, {"color": "rgb(46, 107, 141)", "height": 0.0, "perc": 0.0}, {"color": "rgb(36, 131, 141)", "height": 30.0, "perc": 12.0}, {"color": "rgb(33, 155, 136)", "height": 0.0, "perc": 0.0}, {"color": "rgb(51, 178, 121)", "height": 20.0, "perc": 8.0}, {"color": "rgb(94, 199, 96)", "height": 0.0, "perc": 0.0}, {"color": "rgb(155, 215, 59)", "height": 30.0, "perc": 12.0}, {"color": "rgb(220, 226, 37)", "height": 60.0, "perc": 24.0}]], "node_id": "cube89_cluster0", "projection_stats": []}, "type": "circle"}, {"color": [[0.4958373104252837]], "id": "", "name": "cube90_cluster0", "size": 4, "tooltip": {"cluster_stats": {"above": [], "below": [], "size": 21}, "custom_tooltips": [16, 34, 88, 156, 195, 223, 338, 734, 750, 752, 834, 880, 1063, 1109, 1608, 1609, 1629, 1636, 1645, 1647, 1755], "dist_label": "Member", "histogram": [[{"color": "rgb(70, 18, 100)", "height": 80.0, "perc": 19.0}, {"color": "rgb(68, 51, 125)", "height": 60.0, "perc": 14.3}, {"color": "rgb(58, 80, 138)", "height": 0.0, "perc": 0.0}, {"color": "rgb(46, 107, 141)", "height": 0.0, "perc": 0.0}, {"color": "rgb(36, 131, 141)", "height": 100.0, "perc": 23.8}, {"color": "rgb(33, 155, 136)", "height": 20.0, "perc": 4.8}, {"color": "rgb(51, 178, 121)", "height": 20.0, "perc": 4.8}, {"color": "rgb(94, 199, 96)", "height": 0.0, "perc": 0.0}, {"color": "rgb(155, 215, 59)", "height": 40.0, "perc": 9.5}, {"color": "rgb(220, 226, 37)", "height": 100.0, "perc": 23.8}]], "node_id": "cube90_cluster0", "projection_stats": []}, "type": "circle"}, {"color": [[0.7021158129175946]], "id": "", "name": "cube91_cluster0", "size": 4, "tooltip": {"cluster_stats": {"above": [], "below": [], "size": 21}, "custom_tooltips": [16, 34, 1063, 1093, 1245, 1252, 1263, 1293, 1303, 1313, 1321, 1369, 1375, 1382, 1551, 1561, 1577, 1601, 1610, 1623, 1636], "dist_label": "Member", "histogram": [[{"color": "rgb(70, 18, 100)", "height": 25.0, "perc": 9.5}, {"color": "rgb(68, 51, 125)", "height": 0.0, "perc": 0.0}, {"color": "rgb(58, 80, 138)", "height": 0.0, "perc": 0.0}, {"color": "rgb(46, 107, 141)", "height": 0.0, "perc": 0.0}, {"color": "rgb(36, 131, 141)", "height": 0.0, "perc": 0.0}, {"color": "rgb(33, 155, 136)", "height": 13.0, "perc": 4.8}, {"color": "rgb(51, 178, 121)", "height": 38.0, "perc": 14.3}, {"color": "rgb(94, 199, 96)", "height": 100.0, "perc": 38.1}, {"color": "rgb(155, 215, 59)", "height": 63.0, "perc": 23.8}, {"color": "rgb(220, 226, 37)", "height": 25.0, "perc": 9.5}]], "node_id": "cube91_cluster0", "projection_stats": []}, "type": "circle"}, {"color": [[0.6281051910227856]], "id": "", "name": "cube92_cluster0", "size": 4, "tooltip": {"cluster_stats": {"above": [], "below": [], "size": 26}, "custom_tooltips": [146, 412, 451, 453, 474, 490, 802, 841, 1215, 1245, 1263, 1313, 1321, 1345, 1352, 1353, 1354, 1369, 1375, 1391, 1393, 1561, 1577, 1601, 1610, 1623], "dist_label": "Member", "histogram": [[{"color": "rgb(70, 18, 100)", "height": 9.0, "perc": 3.8}, {"color": "rgb(68, 51, 125)", "height": 0.0, "perc": 0.0}, {"color": "rgb(58, 80, 138)", "height": 45.0, "perc": 19.2}, {"color": "rgb(46, 107, 141)", "height": 0.0, "perc": 0.0}, {"color": "rgb(36, 131, 141)", "height": 18.0, "perc": 7.7}, {"color": "rgb(33, 155, 136)", "height": 0.0, "perc": 0.0}, {"color": "rgb(51, 178, 121)", "height": 18.0, "perc": 7.7}, {"color": "rgb(94, 199, 96)", "height": 100.0, "perc": 42.3}, {"color": "rgb(155, 215, 59)", "height": 36.0, "perc": 15.4}, {"color": "rgb(220, 226, 37)", "height": 9.0, "perc": 3.8}]], "node_id": "cube92_cluster0", "projection_stats": []}, "type": "circle"}, {"color": [[0.4566629547141796]], "id": "", "name": "cube93_cluster0", "size": 3, "tooltip": {"cluster_stats": {"above": [], "below": [], "size": 18}, "custom_tooltips": [412, 420, 451, 453, 474, 481, 490, 782, 792, 802, 841, 843, 864, 1215, 1345, 1352, 1353, 1393], "dist_label": "Member", "histogram": [[{"color": "rgb(70, 18, 100)", "height": 0.0, "perc": 0.0}, {"color": "rgb(68, 51, 125)", "height": 0.0, "perc": 0.0}, {"color": "rgb(58, 80, 138)", "height": 100.0, "perc": 38.9}, {"color": "rgb(46, 107, 141)", "height": 0.0, "perc": 0.0}, {"color": "rgb(36, 131, 141)", "height": 86.0, "perc": 33.3}, {"color": "rgb(33, 155, 136)", "height": 0.0, "perc": 0.0}, {"color": "rgb(51, 178, 121)", "height": 14.0, "perc": 5.6}, {"color": "rgb(94, 199, 96)", "height": 57.0, "perc": 22.2}, {"color": "rgb(155, 215, 59)", "height": 0.0, "perc": 0.0}, {"color": "rgb(220, 226, 37)", "height": 0.0, "perc": 0.0}]], "node_id": "cube93_cluster0", "projection_stats": []}, "type": "circle"}, {"color": [[0.6464643652561247]], "id": "", "name": "cube96_cluster0", "size": 4, "tooltip": {"cluster_stats": {"above": [], "below": [], "size": 20}, "custom_tooltips": [708, 735, 1052, 1086, 1089, 1090, 1110, 1116, 1125, 1130, 1160, 1180, 1216, 1248, 1332, 1349, 1350, 1370, 1385, 1390], "dist_label": "Member", "histogram": [[{"color": "rgb(70, 18, 100)", "height": 0.0, "perc": 0.0}, {"color": "rgb(68, 51, 125)", "height": 0.0, "perc": 0.0}, {"color": "rgb(58, 80, 138)", "height": 0.0, "perc": 0.0}, {"color": "rgb(46, 107, 141)", "height": 9.0, "perc": 5.0}, {"color": "rgb(36, 131, 141)", "height": 9.0, "perc": 5.0}, {"color": "rgb(33, 155, 136)", "height": 9.0, "perc": 5.0}, {"color": "rgb(51, 178, 121)", "height": 100.0, "perc": 55.0}, {"color": "rgb(94, 199, 96)", "height": 55.0, "perc": 30.0}, {"color": "rgb(155, 215, 59)", "height": 0.0, "perc": 0.0}, {"color": "rgb(220, 226, 37)", "height": 0.0, "perc": 0.0}]], "node_id": "cube96_cluster0", "projection_stats": []}, "type": "circle"}, {"color": [[0.6331907162114639]], "id": "", "name": "cube97_cluster0", "size": 3, "tooltip": {"cluster_stats": {"above": [], "below": [], "size": 19}, "custom_tooltips": [279, 359, 1032, 1042, 1052, 1110, 1116, 1125, 1130, 1160, 1180, 1216, 1248, 1332, 1370, 1390, 1475, 1478, 1513], "dist_label": "Member", "histogram": [[{"color": "rgb(70, 18, 100)", "height": 0.0, "perc": 0.0}, {"color": "rgb(68, 51, 125)", "height": 25.0, "perc": 10.5}, {"color": "rgb(58, 80, 138)", "height": 0.0, "perc": 0.0}, {"color": "rgb(46, 107, 141)", "height": 0.0, "perc": 0.0}, {"color": "rgb(36, 131, 141)", "height": 0.0, "perc": 0.0}, {"color": "rgb(33, 155, 136)", "height": 38.0, "perc": 15.8}, {"color": "rgb(51, 178, 121)", "height": 100.0, "perc": 42.1}, {"color": "rgb(94, 199, 96)", "height": 38.0, "perc": 15.8}, {"color": "rgb(155, 215, 59)", "height": 38.0, "perc": 15.8}, {"color": "rgb(220, 226, 37)", "height": 0.0, "perc": 0.0}]], "node_id": "cube97_cluster0", "projection_stats": []}, "type": "circle"}, {"color": [[0.46000917070614433]], "id": "", "name": "cube103_cluster0", "size": 3, "tooltip": {"cluster_stats": {"above": [], "below": [], "size": 17}, "custom_tooltips": [9, 125, 149, 199, 203, 220, 233, 254, 849, 1132, 1146, 1155, 1226, 1772, 1786, 1792, 1795], "dist_label": "Member", "histogram": [[{"color": "rgb(70, 18, 100)", "height": 60.0, "perc": 17.6}, {"color": "rgb(68, 51, 125)", "height": 100.0, "perc": 29.4}, {"color": "rgb(58, 80, 138)", "height": 0.0, "perc": 0.0}, {"color": "rgb(46, 107, 141)", "height": 0.0, "perc": 0.0}, {"color": "rgb(36, 131, 141)", "height": 20.0, "perc": 5.9}, {"color": "rgb(33, 155, 136)", "height": 0.0, "perc": 0.0}, {"color": "rgb(51, 178, 121)", "height": 80.0, "perc": 23.5}, {"color": "rgb(94, 199, 96)", "height": 0.0, "perc": 0.0}, {"color": "rgb(155, 215, 59)", "height": 0.0, "perc": 0.0}, {"color": "rgb(220, 226, 37)", "height": 80.0, "perc": 23.5}]], "node_id": "cube103_cluster0", "projection_stats": []}, "type": "circle"}, {"color": [[0.5578799448509916]], "id": "", "name": "cube104_cluster0", "size": 4, "tooltip": {"cluster_stats": {"above": [], "below": [], "size": 21}, "custom_tooltips": [9, 203, 220, 251, 254, 293, 849, 1060, 1068, 1166, 1186, 1188, 1196, 1230, 1262, 1276, 1285, 1686, 1772, 1792, 1795], "dist_label": "Member", "histogram": [[{"color": "rgb(70, 18, 100)", "height": 20.0, "perc": 4.8}, {"color": "rgb(68, 51, 125)", "height": 100.0, "perc": 23.8}, {"color": "rgb(58, 80, 138)", "height": 0.0, "perc": 0.0}, {"color": "rgb(46, 107, 141)", "height": 0.0, "perc": 0.0}, {"color": "rgb(36, 131, 141)", "height": 20.0, "perc": 4.8}, {"color": "rgb(33, 155, 136)", "height": 40.0, "perc": 9.5}, {"color": "rgb(51, 178, 121)", "height": 100.0, "perc": 23.8}, {"color": "rgb(94, 199, 96)", "height": 60.0, "perc": 14.3}, {"color": "rgb(155, 215, 59)", "height": 0.0, "perc": 0.0}, {"color": "rgb(220, 226, 37)", "height": 80.0, "perc": 19.0}]], "node_id": "cube104_cluster0", "projection_stats": []}, "type": "circle"}, {"color": [[0.5511012125711457]], "id": "", "name": "cube109_cluster0", "size": 4, "tooltip": {"cluster_stats": {"above": [], "below": [], "size": 27}, "custom_tooltips": [261, 358, 531, 549, 551, 590, 618, 636, 920, 930, 937, 938, 940, 951, 973, 976, 1010, 1018, 1021, 1420, 1430, 1447, 1448, 1461, 1517, 1524, 1769], "dist_label": "Member", "histogram": [[{"color": "rgb(70, 18, 100)", "height": 0.0, "perc": 0.0}, {"color": "rgb(68, 51, 125)", "height": 18.0, "perc": 7.4}, {"color": "rgb(58, 80, 138)", "height": 9.0, "perc": 3.7}, {"color": "rgb(46, 107, 141)", "height": 45.0, "perc": 18.5}, {"color": "rgb(36, 131, 141)", "height": 0.0, "perc": 0.0}, {"color": "rgb(33, 155, 136)", "height": 100.0, "perc": 40.7}, {"color": "rgb(51, 178, 121)", "height": 0.0, "perc": 0.0}, {"color": "rgb(94, 199, 96)", "height": 18.0, "perc": 7.4}, {"color": "rgb(155, 215, 59)", "height": 45.0, "perc": 18.5}, {"color": "rgb(220, 226, 37)", "height": 9.0, "perc": 3.7}]], "node_id": "cube109_cluster0", "projection_stats": []}, "type": "circle"}, {"color": [[0.691801887792979]], "id": "", "name": "cube110_cluster0", "size": 4, "tooltip": {"cluster_stats": {"above": [], "below": [], "size": 21}, "custom_tooltips": [261, 289, 358, 373, 938, 973, 1021, 1292, 1420, 1430, 1447, 1448, 1450, 1486, 1532, 1672, 1692, 1713, 1741, 1769, 1787], "dist_label": "Member", "histogram": [[{"color": "rgb(70, 18, 100)", "height": 0.0, "perc": 0.0}, {"color": "rgb(68, 51, 125)", "height": 50.0, "perc": 14.3}, {"color": "rgb(58, 80, 138)", "height": 17.0, "perc": 4.8}, {"color": "rgb(46, 107, 141)", "height": 0.0, "perc": 0.0}, {"color": "rgb(36, 131, 141)", "height": 0.0, "perc": 0.0}, {"color": "rgb(33, 155, 136)", "height": 50.0, "perc": 14.3}, {"color": "rgb(51, 178, 121)", "height": 0.0, "perc": 0.0}, {"color": "rgb(94, 199, 96)", "height": 50.0, "perc": 14.3}, {"color": "rgb(155, 215, 59)", "height": 83.0, "perc": 23.8}, {"color": "rgb(220, 226, 37)", "height": 100.0, "perc": 28.6}]], "node_id": "cube110_cluster0", "projection_stats": []}, "type": "circle"}, {"color": [[0.541495721486344]], "id": "", "name": "cube122_cluster0", "size": 3, "tooltip": {"cluster_stats": {"above": [], "below": [], "size": 19}, "custom_tooltips": [316, 389, 659, 691, 705, 706, 708, 729, 735, 1074, 1087, 1170, 1220, 1300, 1347, 1349, 1350, 1385, 1558], "dist_label": "Member", "histogram": [[{"color": "rgb(70, 18, 100)", "height": 0.0, "perc": 0.0}, {"color": "rgb(68, 51, 125)", "height": 20.0, "perc": 5.3}, {"color": "rgb(58, 80, 138)", "height": 20.0, "perc": 5.3}, {"color": "rgb(46, 107, 141)", "height": 100.0, "perc": 26.3}, {"color": "rgb(36, 131, 141)", "height": 40.0, "perc": 10.5}, {"color": "rgb(33, 155, 136)", "height": 20.0, "perc": 5.3}, {"color": "rgb(51, 178, 121)", "height": 60.0, "perc": 15.8}, {"color": "rgb(94, 199, 96)", "height": 100.0, "perc": 26.3}, {"color": "rgb(155, 215, 59)", "height": 20.0, "perc": 5.3}, {"color": "rgb(220, 226, 37)", "height": 0.0, "perc": 0.0}]], "node_id": "cube122_cluster0", "projection_stats": []}, "type": "circle"}, {"color": [[0.4975143175310213]], "id": "", "name": "cube123_cluster0", "size": 4, "tooltip": {"cluster_stats": {"above": [], "below": [], "size": 28}, "custom_tooltips": [269, 301, 316, 319, 339, 389, 649, 659, 669, 705, 706, 708, 709, 729, 735, 749, 1089, 1160, 1248, 1290, 1332, 1347, 1349, 1350, 1370, 1385, 1390, 1758], "dist_label": "Member", "histogram": [[{"color": "rgb(70, 18, 100)", "height": 0.0, "perc": 0.0}, {"color": "rgb(68, 51, 125)", "height": 63.0, "perc": 17.9}, {"color": "rgb(58, 80, 138)", "height": 13.0, "perc": 3.6}, {"color": "rgb(46, 107, 141)", "height": 88.0, "perc": 25.0}, {"color": "rgb(36, 131, 141)", "height": 38.0, "perc": 10.7}, {"color": "rgb(33, 155, 136)", "height": 0.0, "perc": 0.0}, {"color": "rgb(51, 178, 121)", "height": 38.0, "perc": 10.7}, {"color": "rgb(94, 199, 96)", "height": 100.0, "perc": 28.6}, {"color": "rgb(155, 215, 59)", "height": 0.0, "perc": 0.0}, {"color": "rgb(220, 226, 37)", "height": 13.0, "perc": 3.6}]], "node_id": "cube123_cluster0", "projection_stats": []}, "type": "circle"}, {"color": [[0.5613971218091485]], "id": "", "name": "cube124_cluster0", "size": 4, "tooltip": {"cluster_stats": {"above": [], "below": [], "size": 26}, "custom_tooltips": [269, 279, 318, 319, 339, 359, 669, 749, 799, 867, 874, 961, 999, 1160, 1248, 1290, 1332, 1370, 1378, 1390, 1475, 1478, 1504, 1513, 1518, 1758], "dist_label": "Member", "histogram": [[{"color": "rgb(70, 18, 100)", "height": 0.0, "perc": 0.0}, {"color": "rgb(68, 51, 125)", "height": 100.0, "perc": 23.1}, {"color": "rgb(58, 80, 138)", "height": 0.0, "perc": 0.0}, {"color": "rgb(46, 107, 141)", "height": 17.0, "perc": 3.8}, {"color": "rgb(36, 131, 141)", "height": 67.0, "perc": 15.4}, {"color": "rgb(33, 155, 136)", "height": 33.0, "perc": 7.7}, {"color": "rgb(51, 178, 121)", "height": 33.0, "perc": 7.7}, {"color": "rgb(94, 199, 96)", "height": 83.0, "perc": 19.2}, {"color": "rgb(155, 215, 59)", "height": 83.0, "perc": 19.2}, {"color": "rgb(220, 226, 37)", "height": 17.0, "perc": 3.8}]], "node_id": "cube124_cluster0", "projection_stats": []}, "type": "circle"}, {"color": [[0.5753006681514475]], "id": "", "name": "cube125_cluster0", "size": 4, "tooltip": {"cluster_stats": {"above": [], "below": [], "size": 25}, "custom_tooltips": [3, 259, 359, 484, 799, 867, 874, 918, 928, 950, 961, 962, 965, 999, 1004, 1310, 1378, 1418, 1438, 1474, 1475, 1477, 1498, 1513, 1518], "dist_label": "Member", "histogram": [[{"color": "rgb(70, 18, 100)", "height": 13.0, "perc": 4.0}, {"color": "rgb(68, 51, 125)", "height": 25.0, "perc": 8.0}, {"color": "rgb(58, 80, 138)", "height": 13.0, "perc": 4.0}, {"color": "rgb(46, 107, 141)", "height": 0.0, "perc": 0.0}, {"color": "rgb(36, 131, 141)", "height": 38.0, "perc": 12.0}, {"color": "rgb(33, 155, 136)", "height": 100.0, "perc": 32.0}, {"color": "rgb(51, 178, 121)", "height": 0.0, "perc": 0.0}, {"color": "rgb(94, 199, 96)", "height": 38.0, "perc": 12.0}, {"color": "rgb(155, 215, 59)", "height": 88.0, "perc": 28.0}, {"color": "rgb(220, 226, 37)", "height": 0.0, "perc": 0.0}]], "node_id": "cube125_cluster0", "projection_stats": []}, "type": "circle"}, {"color": [[0.4276653432749104]], "id": "", "name": "cube126_cluster0", "size": 4, "tooltip": {"cluster_stats": {"above": [], "below": [], "size": 23}, "custom_tooltips": [3, 259, 399, 431, 445, 446, 448, 449, 469, 475, 477, 484, 489, 928, 950, 965, 1004, 1310, 1418, 1428, 1438, 1474, 1477], "dist_label": "Member", "histogram": [[{"color": "rgb(70, 18, 100)", "height": 9.0, "perc": 4.3}, {"color": "rgb(68, 51, 125)", "height": 9.0, "perc": 4.3}, {"color": "rgb(58, 80, 138)", "height": 100.0, "perc": 47.8}, {"color": "rgb(46, 107, 141)", "height": 0.0, "perc": 0.0}, {"color": "rgb(36, 131, 141)", "height": 0.0, "perc": 0.0}, {"color": "rgb(33, 155, 136)", "height": 36.0, "perc": 17.4}, {"color": "rgb(51, 178, 121)", "height": 0.0, "perc": 0.0}, {"color": "rgb(94, 199, 96)", "height": 27.0, "perc": 13.0}, {"color": "rgb(155, 215, 59)", "height": 27.0, "perc": 13.0}, {"color": "rgb(220, 226, 37)", "height": 0.0, "perc": 0.0}]], "node_id": "cube126_cluster0", "projection_stats": []}, "type": "circle"}, {"color": [[0.3948871889222426]], "id": "", "name": "cube136_cluster0", "size": 4, "tooltip": {"cluster_stats": {"above": [], "below": [], "size": 23}, "custom_tooltips": [261, 288, 302, 330, 358, 521, 531, 541, 549, 551, 562, 587, 590, 618, 625, 633, 636, 910, 938, 1054, 1420, 1738, 1769], "dist_label": "Member", "histogram": [[{"color": "rgb(70, 18, 100)", "height": 0.0, "perc": 0.0}, {"color": "rgb(68, 51, 125)", "height": 50.0, "perc": 21.7}, {"color": "rgb(58, 80, 138)", "height": 20.0, "perc": 8.7}, {"color": "rgb(46, 107, 141)", "height": 100.0, "perc": 43.5}, {"color": "rgb(36, 131, 141)", "height": 0.0, "perc": 0.0}, {"color": "rgb(33, 155, 136)", "height": 30.0, "perc": 13.0}, {"color": "rgb(51, 178, 121)", "height": 0.0, "perc": 0.0}, {"color": "rgb(94, 199, 96)", "height": 10.0, "perc": 4.3}, {"color": "rgb(155, 215, 59)", "height": 0.0, "perc": 0.0}, {"color": "rgb(220, 226, 37)", "height": 20.0, "perc": 8.7}]], "node_id": "cube136_cluster0", "projection_stats": []}, "type": "circle"}, {"color": [[0.6046128148021243]], "id": "", "name": "cube137_cluster0", "size": 4, "tooltip": {"cluster_stats": {"above": [], "below": [], "size": 26}, "custom_tooltips": [261, 281, 288, 302, 330, 358, 562, 587, 625, 910, 938, 1003, 1054, 1189, 1302, 1420, 1532, 1535, 1672, 1682, 1692, 1700, 1713, 1741, 1769, 1787], "dist_label": "Member", "histogram": [[{"color": "rgb(70, 18, 100)", "height": 0.0, "perc": 0.0}, {"color": "rgb(68, 51, 125)", "height": 75.0, "perc": 23.1}, {"color": "rgb(58, 80, 138)", "height": 0.0, "perc": 0.0}, {"color": "rgb(46, 107, 141)", "height": 38.0, "perc": 11.5}, {"color": "rgb(36, 131, 141)", "height": 0.0, "perc": 0.0}, {"color": "rgb(33, 155, 136)", "height": 50.0, "perc": 15.4}, {"color": "rgb(51, 178, 121)", "height": 13.0, "perc": 3.8}, {"color": "rgb(94, 199, 96)", "height": 25.0, "perc": 7.7}, {"color": "rgb(155, 215, 59)", "height": 25.0, "perc": 7.7}, {"color": "rgb(220, 226, 37)", "height": 100.0, "perc": 30.8}]], "node_id": "cube137_cluster0", "projection_stats": []}, "type": "circle"}, {"color": [[0.7800415063778092]], "id": "", "name": "cube138_cluster0", "size": 4, "tooltip": {"cluster_stats": {"above": [], "below": [], "size": 22}, "custom_tooltips": [651, 748, 1098, 1136, 1162, 1172, 1189, 1231, 1302, 1319, 1333, 1489, 1532, 1672, 1682, 1692, 1699, 1700, 1713, 1741, 1776, 1784], "dist_label": "Member", "histogram": [[{"color": "rgb(70, 18, 100)", "height": 0.0, "perc": 0.0}, {"color": "rgb(68, 51, 125)", "height": 0.0, "perc": 0.0}, {"color": "rgb(58, 80, 138)", "height": 0.0, "perc": 0.0}, {"color": "rgb(46, 107, 141)", "height": 11.0, "perc": 4.5}, {"color": "rgb(36, 131, 141)", "height": 11.0, "perc": 4.5}, {"color": "rgb(33, 155, 136)", "height": 0.0, "perc": 0.0}, {"color": "rgb(51, 178, 121)", "height": 67.0, "perc": 27.3}, {"color": "rgb(94, 199, 96)", "height": 33.0, "perc": 13.6}, {"color": "rgb(155, 215, 59)", "height": 22.0, "perc": 9.1}, {"color": "rgb(220, 226, 37)", "height": 100.0, "perc": 40.9}]], "node_id": "cube138_cluster0", "projection_stats": []}, "type": "circle"}, {"color": [[0.6039037366988369]], "id": "", "name": "cube139_cluster0", "size": 3, "tooltip": {"cluster_stats": {"above": [], "below": [], "size": 18}, "custom_tooltips": [74, 678, 717, 720, 748, 1136, 1147, 1162, 1172, 1203, 1231, 1312, 1319, 1320, 1333, 1358, 1404, 1489], "dist_label": "Member", "histogram": [[{"color": "rgb(70, 18, 100)", "height": 17.0, "perc": 5.6}, {"color": "rgb(68, 51, 125)", "height": 0.0, "perc": 0.0}, {"color": "rgb(58, 80, 138)", "height": 0.0, "perc": 0.0}, {"color": "rgb(46, 107, 141)", "height": 33.0, "perc": 11.1}, {"color": "rgb(36, 131, 141)", "height": 33.0, "perc": 11.1}, {"color": "rgb(33, 155, 136)", "height": 0.0, "perc": 0.0}, {"color": "rgb(51, 178, 121)", "height": 100.0, "perc": 33.3}, {"color": "rgb(94, 199, 96)", "height": 100.0, "perc": 33.3}, {"color": "rgb(155, 215, 59)", "height": 17.0, "perc": 5.6}, {"color": "rgb(220, 226, 37)", "height": 0.0, "perc": 0.0}]], "node_id": "cube139_cluster0", "projection_stats": []}, "type": "circle"}, {"color": [[0.4363319453858817]], "id": "", "name": "cube142_cluster0", "size": 4, "tooltip": {"cluster_stats": {"above": [], "below": [], "size": 23}, "custom_tooltips": [13, 45, 60, 62, 89, 143, 189, 193, 316, 389, 706, 838, 839, 1087, 1170, 1220, 1300, 1346, 1548, 1558, 1630, 1639, 1644], "dist_label": "Member", "histogram": [[{"color": "rgb(70, 18, 100)", "height": 100.0, "perc": 26.1}, {"color": "rgb(68, 51, 125)", "height": 50.0, "perc": 13.0}, {"color": "rgb(58, 80, 138)", "height": 17.0, "perc": 4.3}, {"color": "rgb(46, 107, 141)", "height": 17.0, "perc": 4.3}, {"color": "rgb(36, 131, 141)", "height": 33.0, "perc": 8.7}, {"color": "rgb(33, 155, 136)", "height": 0.0, "perc": 0.0}, {"color": "rgb(51, 178, 121)", "height": 50.0, "perc": 13.0}, {"color": "rgb(94, 199, 96)", "height": 33.0, "perc": 8.7}, {"color": "rgb(155, 215, 59)", "height": 33.0, "perc": 8.7}, {"color": "rgb(220, 226, 37)", "height": 50.0, "perc": 13.0}]], "node_id": "cube142_cluster0", "projection_stats": []}, "type": "circle"}, {"color": [[0.46746392950518056]], "id": "", "name": "cube143_cluster0", "size": 4, "tooltip": {"cluster_stats": {"above": [], "below": [], "size": 23}, "custom_tooltips": [13, 269, 301, 316, 319, 339, 345, 389, 649, 669, 706, 709, 749, 839, 859, 879, 1255, 1346, 1548, 1639, 1644, 1758, 1770], "dist_label": "Member", "histogram": [[{"color": "rgb(70, 18, 100)", "height": 17.0, "perc": 4.3}, {"color": "rgb(68, 51, 125)", "height": 100.0, "perc": 26.1}, {"color": "rgb(58, 80, 138)", "height": 17.0, "perc": 4.3}, {"color": "rgb(46, 107, 141)", "height": 67.0, "perc": 17.4}, {"color": "rgb(36, 131, 141)", "height": 67.0, "perc": 17.4}, {"color": "rgb(33, 155, 136)", "height": 0.0, "perc": 0.0}, {"color": "rgb(51, 178, 121)", "height": 17.0, "perc": 4.3}, {"color": "rgb(94, 199, 96)", "height": 17.0, "perc": 4.3}, {"color": "rgb(155, 215, 59)", "height": 17.0, "perc": 4.3}, {"color": "rgb(220, 226, 37)", "height": 67.0, "perc": 17.4}]], "node_id": "cube143_cluster0", "projection_stats": []}, "type": "circle"}, {"color": [[0.5343439967604777]], "id": "", "name": "cube144_cluster0", "size": 4, "tooltip": {"cluster_stats": {"above": [], "below": [], "size": 22}, "custom_tooltips": [269, 318, 319, 339, 669, 749, 789, 799, 821, 835, 836, 859, 867, 874, 999, 1255, 1460, 1504, 1506, 1518, 1758, 1770], "dist_label": "Member", "histogram": [[{"color": "rgb(70, 18, 100)", "height": 0.0, "perc": 0.0}, {"color": "rgb(68, 51, 125)", "height": 44.0, "perc": 18.2}, {"color": "rgb(58, 80, 138)", "height": 0.0, "perc": 0.0}, {"color": "rgb(46, 107, 141)", "height": 11.0, "perc": 4.5}, {"color": "rgb(36, 131, 141)", "height": 100.0, "perc": 40.9}, {"color": "rgb(33, 155, 136)", "height": 11.0, "perc": 4.5}, {"color": "rgb(51, 178, 121)", "height": 11.0, "perc": 4.5}, {"color": "rgb(94, 199, 96)", "height": 0.0, "perc": 0.0}, {"color": "rgb(155, 215, 59)", "height": 44.0, "perc": 18.2}, {"color": "rgb(220, 226, 37)", "height": 22.0, "perc": 9.1}]], "node_id": "cube144_cluster0", "projection_stats": []}, "type": "circle"}, {"color": [[0.48179529388980336]], "id": "", "name": "cube145_cluster0", "size": 4, "tooltip": {"cluster_stats": {"above": [], "below": [], "size": 23}, "custom_tooltips": [3, 259, 315, 347, 354, 484, 737, 744, 779, 789, 799, 835, 836, 865, 867, 874, 999, 1418, 1438, 1474, 1498, 1518, 1670], "dist_label": "Member", "histogram": [[{"color": "rgb(70, 18, 100)", "height": 10.0, "perc": 4.3}, {"color": "rgb(68, 51, 125)", "height": 40.0, "perc": 17.4}, {"color": "rgb(58, 80, 138)", "height": 10.0, "perc": 4.3}, {"color": "rgb(46, 107, 141)", "height": 0.0, "perc": 0.0}, {"color": "rgb(36, 131, 141)", "height": 100.0, "perc": 43.5}, {"color": "rgb(33, 155, 136)", "height": 10.0, "perc": 4.3}, {"color": "rgb(51, 178, 121)", "height": 0.0, "perc": 0.0}, {"color": "rgb(94, 199, 96)", "height": 10.0, "perc": 4.3}, {"color": "rgb(155, 215, 59)", "height": 40.0, "perc": 17.4}, {"color": "rgb(220, 226, 37)", "height": 10.0, "perc": 4.3}]], "node_id": "cube145_cluster0", "projection_stats": []}, "type": "circle"}, {"color": [[0.3999082929385563]], "id": "", "name": "cube146_cluster0", "size": 3, "tooltip": {"cluster_stats": {"above": [], "below": [], "size": 17}, "custom_tooltips": [3, 259, 399, 446, 449, 469, 475, 477, 484, 489, 737, 744, 779, 1418, 1438, 1474, 1670], "dist_label": "Member", "histogram": [[{"color": "rgb(70, 18, 100)", "height": 13.0, "perc": 5.9}, {"color": "rgb(68, 51, 125)", "height": 13.0, "perc": 5.9}, {"color": "rgb(58, 80, 138)", "height": 100.0, "perc": 47.1}, {"color": "rgb(46, 107, 141)", "height": 0.0, "perc": 0.0}, {"color": "rgb(36, 131, 141)", "height": 38.0, "perc": 17.6}, {"color": "rgb(33, 155, 136)", "height": 0.0, "perc": 0.0}, {"color": "rgb(51, 178, 121)", "height": 0.0, "perc": 0.0}, {"color": "rgb(94, 199, 96)", "height": 13.0, "perc": 5.9}, {"color": "rgb(155, 215, 59)", "height": 25.0, "perc": 11.8}, {"color": "rgb(220, 226, 37)", "height": 13.0, "perc": 5.9}]], "node_id": "cube146_cluster0", "projection_stats": []}, "type": "circle"}, {"color": [[0.43154231625835193]], "id": "", "name": "cube149_cluster0", "size": 4, "tooltip": {"cluster_stats": {"above": [], "below": [], "size": 20}, "custom_tooltips": [32, 71, 281, 288, 302, 330, 365, 391, 418, 488, 548, 1003, 1054, 1075, 1189, 1322, 1407, 1535, 1700, 1702], "dist_label": "Member", "histogram": [[{"color": "rgb(70, 18, 100)", "height": 50.0, "perc": 10.0}, {"color": "rgb(68, 51, 125)", "height": 100.0, "perc": 20.0}, {"color": "rgb(58, 80, 138)", "height": 100.0, "perc": 20.0}, {"color": "rgb(46, 107, 141)", "height": 25.0, "perc": 5.0}, {"color": "rgb(36, 131, 141)", "height": 0.0, "perc": 0.0}, {"color": "rgb(33, 155, 136)", "height": 75.0, "perc": 15.0}, {"color": "rgb(51, 178, 121)", "height": 25.0, "perc": 5.0}, {"color": "rgb(94, 199, 96)", "height": 50.0, "perc": 10.0}, {"color": "rgb(155, 215, 59)", "height": 25.0, "perc": 5.0}, {"color": "rgb(220, 226, 37)", "height": 50.0, "perc": 10.0}]], "node_id": "cube149_cluster0", "projection_stats": []}, "type": "circle"}, {"color": [[0.6296213808463251]], "id": "", "name": "cube150_cluster0", "size": 3, "tooltip": {"cluster_stats": {"above": [], "below": [], "size": 15}, "custom_tooltips": [32, 71, 365, 1044, 1075, 1098, 1189, 1319, 1322, 1333, 1396, 1617, 1699, 1700, 1702], "dist_label": "Member", "histogram": [[{"color": "rgb(70, 18, 100)", "height": 50.0, "perc": 13.3}, {"color": "rgb(68, 51, 125)", "height": 0.0, "perc": 0.0}, {"color": "rgb(58, 80, 138)", "height": 25.0, "perc": 6.7}, {"color": "rgb(46, 107, 141)", "height": 0.0, "perc": 0.0}, {"color": "rgb(36, 131, 141)", "height": 0.0, "perc": 0.0}, {"color": "rgb(33, 155, 136)", "height": 50.0, "perc": 13.3}, {"color": "rgb(51, 178, 121)", "height": 50.0, "perc": 13.3}, {"color": "rgb(94, 199, 96)", "height": 100.0, "perc": 26.7}, {"color": "rgb(155, 215, 59)", "height": 0.0, "perc": 0.0}, {"color": "rgb(220, 226, 37)", "height": 100.0, "perc": 26.7}]], "node_id": "cube150_cluster0", "projection_stats": []}, "type": "circle"}, {"color": [[0.0820450674701952]], "id": "", "name": "cube153_cluster0", "size": 3, "tooltip": {"cluster_stats": {"above": [], "below": [], "size": 17}, "custom_tooltips": [45, 60, 62, 83, 89, 98, 133, 143, 153, 189, 190, 192, 193, 213, 217, 219, 226], "dist_label": "Member", "histogram": [[{"color": "rgb(70, 18, 100)", "height": 100.0, "perc": 52.9}, {"color": "rgb(68, 51, 125)", "height": 89.0, "perc": 47.1}, {"color": "rgb(58, 80, 138)", "height": 0.0, "perc": 0.0}, {"color": "rgb(46, 107, 141)", "height": 0.0, "perc": 0.0}, {"color": "rgb(36, 131, 141)", "height": 0.0, "perc": 0.0}, {"color": "rgb(33, 155, 136)", "height": 0.0, "perc": 0.0}, {"color": "rgb(51, 178, 121)", "height": 0.0, "perc": 0.0}, {"color": "rgb(94, 199, 96)", "height": 0.0, "perc": 0.0}, {"color": "rgb(155, 215, 59)", "height": 0.0, "perc": 0.0}, {"color": "rgb(220, 226, 37)", "height": 0.0, "perc": 0.0}]], "node_id": "cube153_cluster0", "projection_stats": []}, "type": "circle"}, {"color": [[0.34102665421366474]], "id": "", "name": "cube154_cluster0", "size": 4, "tooltip": {"cluster_stats": {"above": [], "below": [], "size": 31}, "custom_tooltips": [13, 45, 59, 60, 62, 63, 83, 89, 91, 98, 133, 143, 153, 175, 189, 190, 193, 213, 217, 219, 1240, 1246, 1260, 1346, 1548, 1566, 1624, 1630, 1639, 1644, 1756], "dist_label": "Member", "histogram": [[{"color": "rgb(70, 18, 100)", "height": 100.0, "perc": 45.2}, {"color": "rgb(68, 51, 125)", "height": 43.0, "perc": 19.4}, {"color": "rgb(58, 80, 138)", "height": 0.0, "perc": 0.0}, {"color": "rgb(46, 107, 141)", "height": 0.0, "perc": 0.0}, {"color": "rgb(36, 131, 141)", "height": 0.0, "perc": 0.0}, {"color": "rgb(33, 155, 136)", "height": 0.0, "perc": 0.0}, {"color": "rgb(51, 178, 121)", "height": 14.0, "perc": 6.5}, {"color": "rgb(94, 199, 96)", "height": 14.0, "perc": 6.5}, {"color": "rgb(155, 215, 59)", "height": 14.0, "perc": 6.5}, {"color": "rgb(220, 226, 37)", "height": 36.0, "perc": 16.1}]], "node_id": "cube154_cluster0", "projection_stats": []}, "type": "circle"}, {"color": [[0.6564587973273942]], "id": "", "name": "cube155_cluster0", "size": 3, "tooltip": {"cluster_stats": {"above": [], "below": [], "size": 19}, "custom_tooltips": [13, 59, 175, 385, 859, 879, 1217, 1255, 1346, 1376, 1548, 1566, 1624, 1632, 1639, 1644, 1658, 1756, 1770], "dist_label": "Member", "histogram": [[{"color": "rgb(70, 18, 100)", "height": 43.0, "perc": 15.8}, {"color": "rgb(68, 51, 125)", "height": 0.0, "perc": 0.0}, {"color": "rgb(58, 80, 138)", "height": 14.0, "perc": 5.3}, {"color": "rgb(46, 107, 141)", "height": 0.0, "perc": 0.0}, {"color": "rgb(36, 131, 141)", "height": 29.0, "perc": 10.5}, {"color": "rgb(33, 155, 136)", "height": 0.0, "perc": 0.0}, {"color": "rgb(51, 178, 121)", "height": 29.0, "perc": 10.5}, {"color": "rgb(94, 199, 96)", "height": 29.0, "perc": 10.5}, {"color": "rgb(155, 215, 59)", "height": 29.0, "perc": 10.5}, {"color": "rgb(220, 226, 37)", "height": 100.0, "perc": 36.8}]], "node_id": "cube155_cluster0", "projection_stats": []}, "type": "circle"}, {"color": [[0.4473134743875278]], "id": "", "name": "cube165_cluster0", "size": 3, "tooltip": {"cluster_stats": {"above": [], "below": [], "size": 16}, "custom_tooltips": [15, 32, 401, 411, 419, 460, 495, 893, 1034, 1044, 1061, 1064, 1190, 1322, 1396, 1617], "dist_label": "Member", "histogram": [[{"color": "rgb(70, 18, 100)", "height": 40.0, "perc": 12.5}, {"color": "rgb(68, 51, 125)", "height": 0.0, "perc": 0.0}, {"color": "rgb(58, 80, 138)", "height": 100.0, "perc": 31.2}, {"color": "rgb(46, 107, 141)", "height": 0.0, "perc": 0.0}, {"color": "rgb(36, 131, 141)", "height": 20.0, "perc": 6.2}, {"color": "rgb(33, 155, 136)", "height": 80.0, "perc": 25.0}, {"color": "rgb(51, 178, 121)", "height": 20.0, "perc": 6.2}, {"color": "rgb(94, 199, 96)", "height": 40.0, "perc": 12.5}, {"color": "rgb(155, 215, 59)", "height": 0.0, "perc": 0.0}, {"color": "rgb(220, 226, 37)", "height": 20.0, "perc": 6.2}]], "node_id": "cube165_cluster0", "projection_stats": []}, "type": "circle"}, {"color": [[0.5857461024498886]], "id": "", "name": "cube166_cluster0", "size": 3, "tooltip": {"cluster_stats": {"above": [], "below": [], "size": 15}, "custom_tooltips": [15, 109, 327, 692, 1034, 1061, 1062, 1064, 1144, 1389, 1396, 1568, 1617, 1643, 1659], "dist_label": "Member", "histogram": [[{"color": "rgb(70, 18, 100)", "height": 50.0, "perc": 13.3}, {"color": "rgb(68, 51, 125)", "height": 25.0, "perc": 6.7}, {"color": "rgb(58, 80, 138)", "height": 0.0, "perc": 0.0}, {"color": "rgb(46, 107, 141)", "height": 25.0, "perc": 6.7}, {"color": "rgb(36, 131, 141)", "height": 0.0, "perc": 0.0}, {"color": "rgb(33, 155, 136)", "height": 100.0, "perc": 26.7}, {"color": "rgb(51, 178, 121)", "height": 25.0, "perc": 6.7}, {"color": "rgb(94, 199, 96)", "height": 50.0, "perc": 13.3}, {"color": "rgb(155, 215, 59)", "height": 25.0, "perc": 6.7}, {"color": "rgb(220, 226, 37)", "height": 75.0, "perc": 20.0}]], "node_id": "cube166_cluster0", "projection_stats": []}, "type": "circle"}, {"color": [[0.4350323952217047]], "id": "", "name": "cube175_cluster0", "size": 4, "tooltip": {"cluster_stats": {"above": [], "below": [], "size": 22}, "custom_tooltips": [264, 309, 332, 426, 482, 500, 513, 515, 654, 674, 722, 768, 814, 943, 945, 978, 997, 1026, 1028, 1423, 1433, 1443], "dist_label": "Member", "histogram": [[{"color": "rgb(70, 18, 100)", "height": 0.0, "perc": 0.0}, {"color": "rgb(68, 51, 125)", "height": 50.0, "perc": 13.6}, {"color": "rgb(58, 80, 138)", "height": 83.0, "perc": 22.7}, {"color": "rgb(46, 107, 141)", "height": 33.0, "perc": 9.1}, {"color": "rgb(36, 131, 141)", "height": 50.0, "perc": 13.6}, {"color": "rgb(33, 155, 136)", "height": 100.0, "perc": 27.3}, {"color": "rgb(51, 178, 121)", "height": 0.0, "perc": 0.0}, {"color": "rgb(94, 199, 96)", "height": 33.0, "perc": 9.1}, {"color": "rgb(155, 215, 59)", "height": 17.0, "perc": 4.5}, {"color": "rgb(220, 226, 37)", "height": 0.0, "perc": 0.0}]], "node_id": "cube175_cluster0", "projection_stats": []}, "type": "circle"}, {"color": [[0.5867706013363029]], "id": "", "name": "cube176_cluster0", "size": 4, "tooltip": {"cluster_stats": {"above": [], "below": [], "size": 25}, "custom_tooltips": [309, 394, 424, 426, 439, 513, 515, 814, 816, 829, 945, 997, 1026, 1423, 1433, 1443, 1453, 1455, 1491, 1511, 1529, 1537, 1538, 1542, 1544], "dist_label": "Member", "histogram": [[{"color": "rgb(70, 18, 100)", "height": 0.0, "perc": 0.0}, {"color": "rgb(68, 51, 125)", "height": 10.0, "perc": 4.0}, {"color": "rgb(58, 80, 138)", "height": 60.0, "perc": 24.0}, {"color": "rgb(46, 107, 141)", "height": 0.0, "perc": 0.0}, {"color": "rgb(36, 131, 141)", "height": 30.0, "perc": 12.0}, {"color": "rgb(33, 155, 136)", "height": 30.0, "perc": 12.0}, {"color": "rgb(51, 178, 121)", "height": 0.0, "perc": 0.0}, {"color": "rgb(94, 199, 96)", "height": 20.0, "perc": 8.0}, {"color": "rgb(155, 215, 59)", "height": 100.0, "perc": 40.0}, {"color": "rgb(220, 226, 37)", "height": 0.0, "perc": 0.0}]], "node_id": "cube176_cluster0", "projection_stats": []}, "type": "circle"}, {"color": [[0.36748329621380843]], "id": "", "name": "cube181_cluster0", "size": 3, "tooltip": {"cluster_stats": {"above": [], "below": [], "size": 18}, "custom_tooltips": [15, 33, 35, 46, 145, 271, 401, 781, 808, 811, 847, 850, 878, 893, 1034, 1190, 1192, 1650], "dist_label": "Member", "histogram": [[{"color": "rgb(70, 18, 100)", "height": 71.0, "perc": 27.8}, {"color": "rgb(68, 51, 125)", "height": 14.0, "perc": 5.6}, {"color": "rgb(58, 80, 138)", "height": 14.0, "perc": 5.6}, {"color": "rgb(46, 107, 141)", "height": 0.0, "perc": 0.0}, {"color": "rgb(36, 131, 141)", "height": 100.0, "perc": 38.9}, {"color": "rgb(33, 155, 136)", "height": 14.0, "perc": 5.6}, {"color": "rgb(51, 178, 121)", "height": 29.0, "perc": 11.1}, {"color": "rgb(94, 199, 96)", "height": 0.0, "perc": 0.0}, {"color": "rgb(155, 215, 59)", "height": 0.0, "perc": 0.0}, {"color": "rgb(220, 226, 37)", "height": 14.0, "perc": 5.6}]], "node_id": "cube181_cluster0", "projection_stats": []}, "type": "circle"}, {"color": [[0.4021635380209991]], "id": "", "name": "cube182_cluster0", "size": 4, "tooltip": {"cluster_stats": {"above": [], "below": [], "size": 28}, "custom_tooltips": [15, 109, 117, 135, 145, 162, 176, 201, 246, 271, 503, 679, 692, 755, 781, 811, 822, 850, 878, 885, 1034, 1101, 1144, 1192, 1568, 1643, 1650, 1659], "dist_label": "Member", "histogram": [[{"color": "rgb(70, 18, 100)", "height": 100.0, "perc": 25.0}, {"color": "rgb(68, 51, 125)", "height": 43.0, "perc": 10.7}, {"color": "rgb(58, 80, 138)", "height": 14.0, "perc": 3.6}, {"color": "rgb(46, 107, 141)", "height": 29.0, "perc": 7.1}, {"color": "rgb(36, 131, 141)", "height": 100.0, "perc": 25.0}, {"color": "rgb(33, 155, 136)", "height": 14.0, "perc": 3.6}, {"color": "rgb(51, 178, 121)", "height": 43.0, "perc": 10.7}, {"color": "rgb(94, 199, 96)", "height": 0.0, "perc": 0.0}, {"color": "rgb(155, 215, 59)", "height": 14.0, "perc": 3.6}, {"color": "rgb(220, 226, 37)", "height": 43.0, "perc": 10.7}]], "node_id": "cube182_cluster0", "projection_stats": []}, "type": "circle"}, {"color": [[0.48198218262806236]], "id": "", "name": "cube183_cluster0", "size": 4, "tooltip": {"cluster_stats": {"above": [], "below": [], "size": 25}, "custom_tooltips": [25, 109, 135, 201, 237, 246, 503, 661, 671, 679, 681, 692, 755, 763, 809, 885, 1101, 1228, 1550, 1560, 1578, 1614, 1643, 1656, 1659], "dist_label": "Member", "histogram": [[{"color": "rgb(70, 18, 100)", "height": 60.0, "perc": 12.0}, {"color": "rgb(68, 51, 125)", "height": 60.0, "perc": 12.0}, {"color": "rgb(58, 80, 138)", "height": 20.0, "perc": 4.0}, {"color": "rgb(46, 107, 141)", "height": 100.0, "perc": 20.0}, {"color": "rgb(36, 131, 141)", "height": 80.0, "perc": 16.0}, {"color": "rgb(33, 155, 136)", "height": 0.0, "perc": 0.0}, {"color": "rgb(51, 178, 121)", "height": 40.0, "perc": 8.0}, {"color": "rgb(94, 199, 96)", "height": 0.0, "perc": 0.0}, {"color": "rgb(155, 215, 59)", "height": 80.0, "perc": 16.0}, {"color": "rgb(220, 226, 37)", "height": 60.0, "perc": 12.0}]], "node_id": "cube183_cluster0", "projection_stats": []}, "type": "circle"}, {"color": [[0.4507402069959387]], "id": "", "name": "cube190_cluster0", "size": 3, "tooltip": {"cluster_stats": {"above": [], "below": [], "size": 17}, "custom_tooltips": [8, 294, 296, 370, 482, 654, 674, 773, 913, 923, 933, 943, 955, 1015, 1028, 1705, 1796], "dist_label": "Member", "histogram": [[{"color": "rgb(70, 18, 100)", "height": 14.0, "perc": 5.9}, {"color": "rgb(68, 51, 125)", "height": 29.0, "perc": 11.8}, {"color": "rgb(58, 80, 138)", "height": 29.0, "perc": 11.8}, {"color": "rgb(46, 107, 141)", "height": 29.0, "perc": 11.8}, {"color": "rgb(36, 131, 141)", "height": 14.0, "perc": 5.9}, {"color": "rgb(33, 155, 136)", "height": 100.0, "perc": 41.2}, {"color": "rgb(51, 178, 121)", "height": 0.0, "perc": 0.0}, {"color": "rgb(94, 199, 96)", "height": 0.0, "perc": 0.0}, {"color": "rgb(155, 215, 59)", "height": 0.0, "perc": 0.0}, {"color": "rgb(220, 226, 37)", "height": 29.0, "perc": 11.8}]], "node_id": "cube190_cluster0", "projection_stats": []}, "type": "circle"}, {"color": [[0.3305228550217415]], "id": "", "name": "cube191_cluster0", "size": 4, "tooltip": {"cluster_stats": {"above": [], "below": [], "size": 21}, "custom_tooltips": [264, 294, 296, 332, 370, 379, 426, 462, 482, 513, 515, 654, 674, 684, 686, 768, 773, 943, 945, 978, 1028], "dist_label": "Member", "histogram": [[{"color": "rgb(70, 18, 100)", "height": 0.0, "perc": 0.0}, {"color": "rgb(68, 51, 125)", "height": 57.0, "perc": 19.0}, {"color": "rgb(58, 80, 138)", "height": 100.0, "perc": 33.3}, {"color": "rgb(46, 107, 141)", "height": 57.0, "perc": 19.0}, {"color": "rgb(36, 131, 141)", "height": 29.0, "perc": 9.5}, {"color": "rgb(33, 155, 136)", "height": 57.0, "perc": 19.0}, {"color": "rgb(51, 178, 121)", "height": 0.0, "perc": 0.0}, {"color": "rgb(94, 199, 96)", "height": 0.0, "perc": 0.0}, {"color": "rgb(155, 215, 59)", "height": 0.0, "perc": 0.0}, {"color": "rgb(220, 226, 37)", "height": 0.0, "perc": 0.0}]], "node_id": "cube191_cluster0", "projection_stats": []}, "type": "circle"}, {"color": [[0.3411593664934422]], "id": "", "name": "cube198_cluster0", "size": 3, "tooltip": {"cluster_stats": {"above": [], "below": [], "size": 18}, "custom_tooltips": [117, 135, 145, 162, 176, 201, 246, 271, 376, 781, 791, 811, 850, 885, 896, 1259, 1277, 1650], "dist_label": "Member", "histogram": [[{"color": "rgb(70, 18, 100)", "height": 83.0, "perc": 27.8}, {"color": "rgb(68, 51, 125)", "height": 50.0, "perc": 16.7}, {"color": "rgb(58, 80, 138)", "height": 17.0, "perc": 5.6}, {"color": "rgb(46, 107, 141)", "height": 0.0, "perc": 0.0}, {"color": "rgb(36, 131, 141)", "height": 100.0, "perc": 33.3}, {"color": "rgb(33, 155, 136)", "height": 0.0, "perc": 0.0}, {"color": "rgb(51, 178, 121)", "height": 0.0, "perc": 0.0}, {"color": "rgb(94, 199, 96)", "height": 33.0, "perc": 11.1}, {"color": "rgb(155, 215, 59)", "height": 0.0, "perc": 0.0}, {"color": "rgb(220, 226, 37)", "height": 17.0, "perc": 5.6}]], "node_id": "cube198_cluster0", "projection_stats": []}, "type": "circle"}, {"color": [[0.4495031694363543]], "id": "", "name": "cube199_cluster0", "size": 4, "tooltip": {"cluster_stats": {"above": [], "below": [], "size": 26}, "custom_tooltips": [135, 155, 163, 165, 201, 204, 230, 237, 245, 246, 376, 791, 801, 809, 885, 896, 1182, 1259, 1266, 1277, 1550, 1560, 1576, 1578, 1589, 1614], "dist_label": "Member", "histogram": [[{"color": "rgb(70, 18, 100)", "height": 67.0, "perc": 15.4}, {"color": "rgb(68, 51, 125)", "height": 100.0, "perc": 23.1}, {"color": "rgb(58, 80, 138)", "height": 17.0, "perc": 3.8}, {"color": "rgb(46, 107, 141)", "height": 0.0, "perc": 0.0}, {"color": "rgb(36, 131, 141)", "height": 83.0, "perc": 19.2}, {"color": "rgb(33, 155, 136)", "height": 0.0, "perc": 0.0}, {"color": "rgb(51, 178, 121)", "height": 17.0, "perc": 3.8}, {"color": "rgb(94, 199, 96)", "height": 50.0, "perc": 11.5}, {"color": "rgb(155, 215, 59)", "height": 100.0, "perc": 23.1}, {"color": "rgb(220, 226, 37)", "height": 0.0, "perc": 0.0}]], "node_id": "cube199_cluster0", "projection_stats": []}, "type": "circle"}, {"color": [[0.4129918337045286]], "id": "", "name": "cube207_cluster0", "size": 3, "tooltip": {"cluster_stats": {"above": [], "below": [], "size": 15}, "custom_tooltips": [114, 148, 255, 509, 664, 684, 686, 699, 742, 775, 804, 852, 1037, 1363, 1794], "dist_label": "Member", "histogram": [[{"color": "rgb(70, 18, 100)", "height": 50.0, "perc": 13.3}, {"color": "rgb(68, 51, 125)", "height": 25.0, "perc": 6.7}, {"color": "rgb(58, 80, 138)", "height": 25.0, "perc": 6.7}, {"color": "rgb(46, 107, 141)", "height": 100.0, "perc": 26.7}, {"color": "rgb(36, 131, 141)", "height": 100.0, "perc": 26.7}, {"color": "rgb(33, 155, 136)", "height": 25.0, "perc": 6.7}, {"color": "rgb(51, 178, 121)", "height": 0.0, "perc": 0.0}, {"color": "rgb(94, 199, 96)", "height": 25.0, "perc": 6.7}, {"color": "rgb(155, 215, 59)", "height": 0.0, "perc": 0.0}, {"color": "rgb(220, 226, 37)", "height": 25.0, "perc": 6.7}]], "node_id": "cube207_cluster0", "projection_stats": []}, "type": "circle"}, {"color": [[0.4478161346201435]], "id": "", "name": "cube217_cluster0", "size": 3, "tooltip": {"cluster_stats": {"above": [], "below": [], "size": 18}, "custom_tooltips": [224, 253, 524, 534, 544, 554, 556, 592, 612, 638, 639, 643, 645, 899, 1583, 1619, 1637, 1781], "dist_label": "Member", "histogram": [[{"color": "rgb(70, 18, 100)", "height": 0.0, "perc": 0.0}, {"color": "rgb(68, 51, 125)", "height": 22.0, "perc": 11.1}, {"color": "rgb(58, 80, 138)", "height": 22.0, "perc": 11.1}, {"color": "rgb(46, 107, 141)", "height": 100.0, "perc": 50.0}, {"color": "rgb(36, 131, 141)", "height": 0.0, "perc": 0.0}, {"color": "rgb(33, 155, 136)", "height": 11.0, "perc": 5.6}, {"color": "rgb(51, 178, 121)", "height": 0.0, "perc": 0.0}, {"color": "rgb(94, 199, 96)", "height": 0.0, "perc": 0.0}, {"color": "rgb(155, 215, 59)", "height": 11.0, "perc": 5.6}, {"color": "rgb(220, 226, 37)", "height": 33.0, "perc": 16.7}]], "node_id": "cube217_cluster0", "projection_stats": []}, "type": "circle"}, {"color": [[0.4715726305369958]], "id": "", "name": "cube218_cluster0", "size": 3, "tooltip": {"cluster_stats": {"above": [], "below": [], "size": 18}, "custom_tooltips": [28, 53, 138, 168, 183, 224, 248, 249, 253, 899, 1069, 1583, 1619, 1637, 1675, 1695, 1743, 1781], "dist_label": "Member", "histogram": [[{"color": "rgb(70, 18, 100)", "height": 67.0, "perc": 22.2}, {"color": "rgb(68, 51, 125)", "height": 83.0, "perc": 27.8}, {"color": "rgb(58, 80, 138)", "height": 0.0, "perc": 0.0}, {"color": "rgb(46, 107, 141)", "height": 0.0, "perc": 0.0}, {"color": "rgb(36, 131, 141)", "height": 0.0, "perc": 0.0}, {"color": "rgb(33, 155, 136)", "height": 33.0, "perc": 11.1}, {"color": "rgb(51, 178, 121)", "height": 0.0, "perc": 0.0}, {"color": "rgb(94, 199, 96)", "height": 0.0, "perc": 0.0}, {"color": "rgb(155, 215, 59)", "height": 17.0, "perc": 5.6}, {"color": "rgb(220, 226, 37)", "height": 100.0, "perc": 33.3}]], "node_id": "cube218_cluster0", "projection_stats": []}, "type": "circle"}, {"color": [[0.2868948540616575]], "id": "", "name": "cube219_cluster0", "size": 3, "tooltip": {"cluster_stats": {"above": [], "below": [], "size": 19}, "custom_tooltips": [28, 40, 53, 138, 168, 248, 274, 284, 352, 383, 404, 508, 509, 547, 775, 1069, 1284, 1325, 1401], "dist_label": "Member", "histogram": [[{"color": "rgb(70, 18, 100)", "height": 100.0, "perc": 26.3}, {"color": "rgb(68, 51, 125)", "height": 80.0, "perc": 21.1}, {"color": "rgb(58, 80, 138)", "height": 80.0, "perc": 21.1}, {"color": "rgb(46, 107, 141)", "height": 20.0, "perc": 5.3}, {"color": "rgb(36, 131, 141)", "height": 20.0, "perc": 5.3}, {"color": "rgb(33, 155, 136)", "height": 20.0, "perc": 5.3}, {"color": "rgb(51, 178, 121)", "height": 0.0, "perc": 0.0}, {"color": "rgb(94, 199, 96)", "height": 60.0, "perc": 15.8}, {"color": "rgb(155, 215, 59)", "height": 0.0, "perc": 0.0}, {"color": "rgb(220, 226, 37)", "height": 0.0, "perc": 0.0}]], "node_id": "cube219_cluster0", "projection_stats": []}, "type": "circle"}, {"color": [[0.4957635324876537]], "id": "", "name": "cube220_cluster0", "size": 4, "tooltip": {"cluster_stats": {"above": [], "below": [], "size": 23}, "custom_tooltips": [76, 114, 255, 274, 284, 383, 509, 547, 760, 775, 804, 1037, 1175, 1185, 1284, 1295, 1315, 1325, 1327, 1340, 1409, 1410, 1596], "dist_label": "Member", "histogram": [[{"color": "rgb(70, 18, 100)", "height": 25.0, "perc": 8.7}, {"color": "rgb(68, 51, 125)", "height": 38.0, "perc": 13.0}, {"color": "rgb(58, 80, 138)", "height": 25.0, "perc": 8.7}, {"color": "rgb(46, 107, 141)", "height": 13.0, "perc": 4.3}, {"color": "rgb(36, 131, 141)", "height": 38.0, "perc": 13.0}, {"color": "rgb(33, 155, 136)", "height": 13.0, "perc": 4.3}, {"color": "rgb(51, 178, 121)", "height": 25.0, "perc": 8.7}, {"color": "rgb(94, 199, 96)", "height": 100.0, "perc": 34.8}, {"color": "rgb(155, 215, 59)", "height": 13.0, "perc": 4.3}, {"color": "rgb(220, 226, 37)", "height": 0.0, "perc": 0.0}]], "node_id": "cube220_cluster0", "projection_stats": []}, "type": "circle"}, {"color": [[0.5948635857461024]], "id": "", "name": "cube221_cluster0", "size": 3, "tooltip": {"cluster_stats": {"above": [], "below": [], "size": 16}, "custom_tooltips": [76, 114, 255, 769, 804, 1175, 1185, 1271, 1295, 1305, 1327, 1340, 1409, 1410, 1596, 1763], "dist_label": "Member", "histogram": [[{"color": "rgb(70, 18, 100)", "height": 29.0, "perc": 12.5}, {"color": "rgb(68, 51, 125)", "height": 14.0, "perc": 6.2}, {"color": "rgb(58, 80, 138)", "height": 0.0, "perc": 0.0}, {"color": "rgb(46, 107, 141)", "height": 0.0, "perc": 0.0}, {"color": "rgb(36, 131, 141)", "height": 29.0, "perc": 12.5}, {"color": "rgb(33, 155, 136)", "height": 0.0, "perc": 0.0}, {"color": "rgb(51, 178, 121)", "height": 29.0, "perc": 12.5}, {"color": "rgb(94, 199, 96)", "height": 100.0, "perc": 43.8}, {"color": "rgb(155, 215, 59)", "height": 14.0, "perc": 6.2}, {"color": "rgb(220, 226, 37)", "height": 14.0, "perc": 6.2}]], "node_id": "cube221_cluster0", "projection_stats": []}, "type": "circle"}, {"color": [[0.20768374164810685]], "id": "", "name": "cube230_cluster0", "size": 3, "tooltip": {"cluster_stats": {"above": [], "below": [], "size": 19}, "custom_tooltips": [2, 50, 51, 54, 57, 75, 115, 116, 524, 534, 554, 556, 592, 612, 630, 638, 639, 643, 645], "dist_label": "Member", "histogram": [[{"color": "rgb(70, 18, 100)", "height": 89.0, "perc": 42.1}, {"color": "rgb(68, 51, 125)", "height": 0.0, "perc": 0.0}, {"color": "rgb(58, 80, 138)", "height": 22.0, "perc": 10.5}, {"color": "rgb(46, 107, 141)", "height": 100.0, "perc": 47.4}, {"color": "rgb(36, 131, 141)", "height": 0.0, "perc": 0.0}, {"color": "rgb(33, 155, 136)", "height": 0.0, "perc": 0.0}, {"color": "rgb(51, 178, 121)", "height": 0.0, "perc": 0.0}, {"color": "rgb(94, 199, 96)", "height": 0.0, "perc": 0.0}, {"color": "rgb(155, 215, 59)", "height": 0.0, "perc": 0.0}, {"color": "rgb(220, 226, 37)", "height": 0.0, "perc": 0.0}]], "node_id": "cube230_cluster0", "projection_stats": []}, "type": "circle"}, {"color": [[0.4409799554565701]], "id": "", "name": "cube231_cluster0", "size": 3, "tooltip": {"cluster_stats": {"above": [], "below": [], "size": 17}, "custom_tooltips": [224, 253, 524, 534, 554, 556, 592, 612, 630, 638, 639, 643, 645, 1581, 1583, 1619, 1637], "dist_label": "Member", "histogram": [[{"color": "rgb(70, 18, 100)", "height": 0.0, "perc": 0.0}, {"color": "rgb(68, 51, 125)", "height": 22.0, "perc": 11.8}, {"color": "rgb(58, 80, 138)", "height": 22.0, "perc": 11.8}, {"color": "rgb(46, 107, 141)", "height": 100.0, "perc": 52.9}, {"color": "rgb(36, 131, 141)", "height": 0.0, "perc": 0.0}, {"color": "rgb(33, 155, 136)", "height": 0.0, "perc": 0.0}, {"color": "rgb(51, 178, 121)", "height": 0.0, "perc": 0.0}, {"color": "rgb(94, 199, 96)", "height": 0.0, "perc": 0.0}, {"color": "rgb(155, 215, 59)", "height": 22.0, "perc": 11.8}, {"color": "rgb(220, 226, 37)", "height": 22.0, "perc": 11.8}]], "node_id": "cube231_cluster0", "projection_stats": []}, "type": "circle"}, {"color": [[0.629794605295719]], "id": "", "name": "cube233_cluster0", "size": 3, "tooltip": {"cluster_stats": {"above": [], "below": [], "size": 18}, "custom_tooltips": [28, 40, 53, 1047, 1080, 1141, 1233, 1253, 1280, 1284, 1286, 1325, 1383, 1401, 1414, 1685, 1707, 1720], "dist_label": "Member", "histogram": [[{"color": "rgb(70, 18, 100)", "height": 43.0, "perc": 16.7}, {"color": "rgb(68, 51, 125)", "height": 0.0, "perc": 0.0}, {"color": "rgb(58, 80, 138)", "height": 0.0, "perc": 0.0}, {"color": "rgb(46, 107, 141)", "height": 0.0, "perc": 0.0}, {"color": "rgb(36, 131, 141)", "height": 0.0, "perc": 0.0}, {"color": "rgb(33, 155, 136)", "height": 14.0, "perc": 5.6}, {"color": "rgb(51, 178, 121)", "height": 57.0, "perc": 22.2}, {"color": "rgb(94, 199, 96)", "height": 100.0, "perc": 38.9}, {"color": "rgb(155, 215, 59)", "height": 0.0, "perc": 0.0}, {"color": "rgb(220, 226, 37)", "height": 43.0, "perc": 16.7}]], "node_id": "cube233_cluster0", "projection_stats": []}, "type": "circle"}, {"color": [[0.5603030889900261]], "id": "", "name": "cube234_cluster0", "size": 4, "tooltip": {"cluster_stats": {"above": [], "below": [], "size": 23}, "custom_tooltips": [18, 38, 76, 96, 122, 760, 1080, 1175, 1185, 1197, 1233, 1253, 1279, 1280, 1284, 1286, 1315, 1325, 1340, 1383, 1410, 1414, 1596], "dist_label": "Member", "histogram": [[{"color": "rgb(70, 18, 100)", "height": 50.0, "perc": 21.7}, {"color": "rgb(68, 51, 125)", "height": 0.0, "perc": 0.0}, {"color": "rgb(58, 80, 138)", "height": 0.0, "perc": 0.0}, {"color": "rgb(46, 107, 141)", "height": 0.0, "perc": 0.0}, {"color": "rgb(36, 131, 141)", "height": 10.0, "perc": 4.3}, {"color": "rgb(33, 155, 136)", "height": 0.0, "perc": 0.0}, {"color": "rgb(51, 178, 121)", "height": 60.0, "perc": 26.1}, {"color": "rgb(94, 199, 96)", "height": 100.0, "perc": 43.5}, {"color": "rgb(155, 215, 59)", "height": 10.0, "perc": 4.3}, {"color": "rgb(220, 226, 37)", "height": 0.0, "perc": 0.0}]], "node_id": "cube234_cluster0", "projection_stats": []}, "type": "circle"}, {"color": [[0.669543429844098]], "id": "", "name": "cube237_cluster0", "size": 4, "tooltip": {"cluster_stats": {"above": [], "below": [], "size": 20}, "custom_tooltips": [615, 657, 667, 716, 731, 736, 739, 745, 818, 1030, 1083, 1668, 1678, 1688, 1709, 1723, 1747, 1760, 1766, 1774], "dist_label": "Member", "histogram": [[{"color": "rgb(70, 18, 100)", "height": 0.0, "perc": 0.0}, {"color": "rgb(68, 51, 125)", "height": 0.0, "perc": 0.0}, {"color": "rgb(58, 80, 138)", "height": 0.0, "perc": 0.0}, {"color": "rgb(46, 107, 141)", "height": 44.0, "perc": 20.0}, {"color": "rgb(36, 131, 141)", "height": 56.0, "perc": 25.0}, {"color": "rgb(33, 155, 136)", "height": 11.0, "perc": 5.0}, {"color": "rgb(51, 178, 121)", "height": 11.0, "perc": 5.0}, {"color": "rgb(94, 199, 96)", "height": 0.0, "perc": 0.0}, {"color": "rgb(155, 215, 59)", "height": 0.0, "perc": 0.0}, {"color": "rgb(220, 226, 37)", "height": 100.0, "perc": 45.0}]], "node_id": "cube237_cluster0", "projection_stats": []}, "type": "circle"}, {"color": [[0.5413336826935674]], "id": "", "name": "cube238_cluster0", "size": 3, "tooltip": {"cluster_stats": {"above": [], "below": [], "size": 17}, "custom_tooltips": [129, 298, 363, 657, 667, 716, 731, 736, 745, 856, 1083, 1256, 1556, 1564, 1688, 1723, 1760], "dist_label": "Member", "histogram": [[{"color": "rgb(70, 18, 100)", "height": 25.0, "perc": 5.9}, {"color": "rgb(68, 51, 125)", "height": 25.0, "perc": 5.9}, {"color": "rgb(58, 80, 138)", "height": 25.0, "perc": 5.9}, {"color": "rgb(46, 107, 141)", "height": 75.0, "perc": 17.6}, {"color": "rgb(36, 131, 141)", "height": 100.0, "perc": 23.5}, {"color": "rgb(33, 155, 136)", "height": 0.0, "perc": 0.0}, {"color": "rgb(51, 178, 121)", "height": 50.0, "perc": 11.8}, {"color": "rgb(94, 199, 96)", "height": 0.0, "perc": 0.0}, {"color": "rgb(155, 215, 59)", "height": 50.0, "perc": 11.8}, {"color": "rgb(220, 226, 37)", "height": 75.0, "perc": 17.6}]], "node_id": "cube238_cluster0", "projection_stats": []}, "type": "circle"}, {"color": [[0.47506031922791386]], "id": "", "name": "cube243_cluster0", "size": 4, "tooltip": {"cluster_stats": {"above": [], "below": [], "size": 24}, "custom_tooltips": [49, 78, 79, 178, 229, 266, 382, 386, 396, 434, 465, 682, 1039, 1049, 1287, 1317, 1425, 1445, 1451, 1487, 1493, 1516, 1667, 1677], "dist_label": "Member", "histogram": [[{"color": "rgb(70, 18, 100)", "height": 80.0, "perc": 16.7}, {"color": "rgb(68, 51, 125)", "height": 40.0, "perc": 8.3}, {"color": "rgb(58, 80, 138)", "height": 100.0, "perc": 20.8}, {"color": "rgb(46, 107, 141)", "height": 20.0, "perc": 4.2}, {"color": "rgb(36, 131, 141)", "height": 0.0, "perc": 0.0}, {"color": "rgb(33, 155, 136)", "height": 40.0, "perc": 8.3}, {"color": "rgb(51, 178, 121)", "height": 0.0, "perc": 0.0}, {"color": "rgb(94, 199, 96)", "height": 60.0, "perc": 12.5}, {"color": "rgb(155, 215, 59)", "height": 100.0, "perc": 20.8}, {"color": "rgb(220, 226, 37)", "height": 40.0, "perc": 8.3}]], "node_id": "cube243_cluster0", "projection_stats": []}, "type": "circle"}, {"color": [[0.626970190166181]], "id": "", "name": "cube244_cluster0", "size": 4, "tooltip": {"cluster_stats": {"above": [], "below": [], "size": 26}, "custom_tooltips": [78, 382, 441, 552, 565, 855, 957, 981, 1002, 1039, 1059, 1099, 1153, 1317, 1415, 1425, 1445, 1451, 1463, 1464, 1470, 1493, 1494, 1516, 1541, 1620], "dist_label": "Member", "histogram": [[{"color": "rgb(70, 18, 100)", "height": 11.0, "perc": 3.8}, {"color": "rgb(68, 51, 125)", "height": 0.0, "perc": 0.0}, {"color": "rgb(58, 80, 138)", "height": 22.0, "perc": 7.7}, {"color": "rgb(46, 107, 141)", "height": 22.0, "perc": 7.7}, {"color": "rgb(36, 131, 141)", "height": 11.0, "perc": 3.8}, {"color": "rgb(33, 155, 136)", "height": 56.0, "perc": 19.2}, {"color": "rgb(51, 178, 121)", "height": 22.0, "perc": 7.7}, {"color": "rgb(94, 199, 96)", "height": 33.0, "perc": 11.5}, {"color": "rgb(155, 215, 59)", "height": 100.0, "perc": 34.6}, {"color": "rgb(220, 226, 37)", "height": 11.0, "perc": 3.8}]], "node_id": "cube244_cluster0", "projection_stats": []}, "type": "circle"}, {"color": [[0.5287305122494431]], "id": "", "name": "cube245_cluster0", "size": 4, "tooltip": {"cluster_stats": {"above": [], "below": [], "size": 20}, "custom_tooltips": [305, 441, 526, 552, 565, 786, 855, 915, 925, 941, 957, 974, 1002, 1025, 1059, 1153, 1415, 1435, 1541, 1620], "dist_label": "Member", "histogram": [[{"color": "rgb(70, 18, 100)", "height": 0.0, "perc": 0.0}, {"color": "rgb(68, 51, 125)", "height": 13.0, "perc": 5.0}, {"color": "rgb(58, 80, 138)", "height": 25.0, "perc": 10.0}, {"color": "rgb(46, 107, 141)", "height": 25.0, "perc": 10.0}, {"color": "rgb(36, 131, 141)", "height": 25.0, "perc": 10.0}, {"color": "rgb(33, 155, 136)", "height": 100.0, "perc": 40.0}, {"color": "rgb(51, 178, 121)", "height": 13.0, "perc": 5.0}, {"color": "rgb(94, 199, 96)", "height": 25.0, "perc": 10.0}, {"color": "rgb(155, 215, 59)", "height": 13.0, "perc": 5.0}, {"color": "rgb(220, 226, 37)", "height": 13.0, "perc": 5.0}]], "node_id": "cube245_cluster0", "projection_stats": []}, "type": "circle"}, {"color": [[0.7214277341460554]], "id": "", "name": "cube254_cluster0", "size": 3, "tooltip": {"cluster_stats": {"above": [], "below": [], "size": 19}, "custom_tooltips": [688, 693, 818, 823, 846, 883, 1030, 1040, 1071, 1117, 1571, 1678, 1737, 1747, 1757, 1766, 1774, 1789, 1790], "dist_label": "Member", "histogram": [[{"color": "rgb(70, 18, 100)", "height": 0.0, "perc": 0.0}, {"color": "rgb(68, 51, 125)", "height": 0.0, "perc": 0.0}, {"color": "rgb(58, 80, 138)", "height": 0.0, "perc": 0.0}, {"color": "rgb(46, 107, 141)", "height": 25.0, "perc": 10.5}, {"color": "rgb(36, 131, 141)", "height": 50.0, "perc": 21.1}, {"color": "rgb(33, 155, 136)", "height": 38.0, "perc": 15.8}, {"color": "rgb(51, 178, 121)", "height": 13.0, "perc": 5.3}, {"color": "rgb(94, 199, 96)", "height": 0.0, "perc": 0.0}, {"color": "rgb(155, 215, 59)", "height": 13.0, "perc": 5.3}, {"color": "rgb(220, 226, 37)", "height": 100.0, "perc": 42.1}]], "node_id": "cube254_cluster0", "projection_stats": []}, "type": "circle"}, {"color": [[0.6053623436696933]], "id": "", "name": "cube255_cluster0", "size": 4, "tooltip": {"cluster_stats": {"above": [], "below": [], "size": 26}, "custom_tooltips": [257, 647, 716, 731, 736, 739, 745, 753, 818, 823, 846, 861, 883, 1030, 1040, 1071, 1083, 1117, 1199, 1678, 1714, 1737, 1747, 1757, 1766, 1774], "dist_label": "Member", "histogram": [[{"color": "rgb(70, 18, 100)", "height": 0.0, "perc": 0.0}, {"color": "rgb(68, 51, 125)", "height": 10.0, "perc": 3.8}, {"color": "rgb(58, 80, 138)", "height": 0.0, "perc": 0.0}, {"color": "rgb(46, 107, 141)", "height": 20.0, "perc": 7.7}, {"color": "rgb(36, 131, 141)", "height": 100.0, "perc": 38.5}, {"color": "rgb(33, 155, 136)", "height": 30.0, "perc": 11.5}, {"color": "rgb(51, 178, 121)", "height": 30.0, "perc": 11.5}, {"color": "rgb(94, 199, 96)", "height": 0.0, "perc": 0.0}, {"color": "rgb(155, 215, 59)", "height": 0.0, "perc": 0.0}, {"color": "rgb(220, 226, 37)", "height": 70.0, "perc": 26.9}]], "node_id": "cube255_cluster0", "projection_stats": []}, "type": "circle"}, {"color": [[0.5069384958026383]], "id": "", "name": "cube256_cluster0", "size": 4, "tooltip": {"cluster_stats": {"above": [], "below": [], "size": 26}, "custom_tooltips": [99, 129, 257, 326, 349, 363, 716, 731, 736, 745, 861, 866, 869, 1076, 1083, 1107, 1126, 1134, 1227, 1247, 1250, 1256, 1386, 1556, 1564, 1613], "dist_label": "Member", "histogram": [[{"color": "rgb(70, 18, 100)", "height": 25.0, "perc": 7.7}, {"color": "rgb(68, 51, 125)", "height": 38.0, "perc": 11.5}, {"color": "rgb(58, 80, 138)", "height": 13.0, "perc": 3.8}, {"color": "rgb(46, 107, 141)", "height": 13.0, "perc": 3.8}, {"color": "rgb(36, 131, 141)", "height": 75.0, "perc": 23.1}, {"color": "rgb(33, 155, 136)", "height": 13.0, "perc": 3.8}, {"color": "rgb(51, 178, 121)", "height": 100.0, "perc": 30.8}, {"color": "rgb(94, 199, 96)", "height": 13.0, "perc": 3.8}, {"color": "rgb(155, 215, 59)", "height": 38.0, "perc": 11.5}, {"color": "rgb(220, 226, 37)", "height": 0.0, "perc": 0.0}]], "node_id": "cube256_cluster0", "projection_stats": []}, "type": "circle"}, {"color": [[0.6640798997772829]], "id": "", "name": "cube257_cluster0", "size": 3, "tooltip": {"cluster_stats": {"above": [], "below": [], "size": 16}, "custom_tooltips": [99, 349, 869, 1076, 1107, 1134, 1227, 1256, 1264, 1386, 1394, 1556, 1564, 1590, 1599, 1613], "dist_label": "Member", "histogram": [[{"color": "rgb(70, 18, 100)", "height": 20.0, "perc": 6.2}, {"color": "rgb(68, 51, 125)", "height": 20.0, "perc": 6.2}, {"color": "rgb(58, 80, 138)", "height": 0.0, "perc": 0.0}, {"color": "rgb(46, 107, 141)", "height": 0.0, "perc": 0.0}, {"color": "rgb(36, 131, 141)", "height": 20.0, "perc": 6.2}, {"color": "rgb(33, 155, 136)", "height": 20.0, "perc": 6.2}, {"color": "rgb(51, 178, 121)", "height": 80.0, "perc": 25.0}, {"color": "rgb(94, 199, 96)", "height": 60.0, "perc": 18.8}, {"color": "rgb(155, 215, 59)", "height": 100.0, "perc": 31.2}, {"color": "rgb(220, 226, 37)", "height": 0.0, "perc": 0.0}]], "node_id": "cube257_cluster0", "projection_stats": []}, "type": "circle"}, {"color": [[0.43374164810690424]], "id": "", "name": "cube260_cluster0", "size": 4, "tooltip": {"cluster_stats": {"above": [], "below": [], "size": 21}, "custom_tooltips": [101, 150, 178, 202, 209, 229, 252, 266, 396, 406, 435, 487, 682, 747, 1366, 1598, 1687, 1715, 1739, 1746, 1768], "dist_label": "Member", "histogram": [[{"color": "rgb(70, 18, 100)", "height": 60.0, "perc": 14.3}, {"color": "rgb(68, 51, 125)", "height": 100.0, "perc": 23.8}, {"color": "rgb(58, 80, 138)", "height": 80.0, "perc": 19.0}, {"color": "rgb(46, 107, 141)", "height": 20.0, "perc": 4.8}, {"color": "rgb(36, 131, 141)", "height": 20.0, "perc": 4.8}, {"color": "rgb(33, 155, 136)", "height": 0.0, "perc": 0.0}, {"color": "rgb(51, 178, 121)", "height": 0.0, "perc": 0.0}, {"color": "rgb(94, 199, 96)", "height": 20.0, "perc": 4.8}, {"color": "rgb(155, 215, 59)", "height": 20.0, "perc": 4.8}, {"color": "rgb(220, 226, 37)", "height": 100.0, "perc": 23.8}]], "node_id": "cube260_cluster0", "projection_stats": []}, "type": "circle"}, {"color": [[0.4347521240617009]], "id": "", "name": "cube261_cluster0", "size": 4, "tooltip": {"cluster_stats": {"above": [], "below": [], "size": 27}, "custom_tooltips": [79, 130, 178, 202, 229, 266, 357, 382, 396, 406, 434, 435, 564, 682, 747, 824, 935, 1039, 1065, 1297, 1307, 1366, 1388, 1451, 1579, 1667, 1677], "dist_label": "Member", "histogram": [[{"color": "rgb(70, 18, 100)", "height": 60.0, "perc": 11.1}, {"color": "rgb(68, 51, 125)", "height": 80.0, "perc": 14.8}, {"color": "rgb(58, 80, 138)", "height": 100.0, "perc": 18.5}, {"color": "rgb(46, 107, 141)", "height": 40.0, "perc": 7.4}, {"color": "rgb(36, 131, 141)", "height": 40.0, "perc": 7.4}, {"color": "rgb(33, 155, 136)", "height": 60.0, "perc": 11.1}, {"color": "rgb(51, 178, 121)", "height": 0.0, "perc": 0.0}, {"color": "rgb(94, 199, 96)", "height": 80.0, "perc": 14.8}, {"color": "rgb(155, 215, 59)", "height": 40.0, "perc": 7.4}, {"color": "rgb(220, 226, 37)", "height": 40.0, "perc": 7.4}]], "node_id": "cube261_cluster0", "projection_stats": []}, "type": "circle"}, {"color": [[0.5370363259350279]], "id": "", "name": "cube262_cluster0", "size": 4, "tooltip": {"cluster_stats": {"above": [], "below": [], "size": 29}, "custom_tooltips": [130, 328, 357, 382, 441, 464, 512, 564, 594, 725, 824, 855, 935, 957, 1002, 1029, 1039, 1099, 1128, 1157, 1297, 1415, 1451, 1463, 1464, 1494, 1541, 1579, 1745], "dist_label": "Member", "histogram": [[{"color": "rgb(70, 18, 100)", "height": 17.0, "perc": 3.4}, {"color": "rgb(68, 51, 125)", "height": 33.0, "perc": 6.9}, {"color": "rgb(58, 80, 138)", "height": 67.0, "perc": 13.8}, {"color": "rgb(46, 107, 141)", "height": 33.0, "perc": 6.9}, {"color": "rgb(36, 131, 141)", "height": 50.0, "perc": 10.3}, {"color": "rgb(33, 155, 136)", "height": 83.0, "perc": 17.2}, {"color": "rgb(51, 178, 121)", "height": 50.0, "perc": 10.3}, {"color": "rgb(94, 199, 96)", "height": 33.0, "perc": 6.9}, {"color": "rgb(155, 215, 59)", "height": 100.0, "perc": 20.7}, {"color": "rgb(220, 226, 37)", "height": 17.0, "perc": 3.4}]], "node_id": "cube262_cluster0", "projection_stats": []}, "type": "circle"}, {"color": [[0.47735708982925007]], "id": "", "name": "cube263_cluster0", "size": 4, "tooltip": {"cluster_stats": {"above": [], "below": [], "size": 30}, "custom_tooltips": [0, 10, 276, 305, 311, 328, 334, 335, 441, 464, 526, 725, 806, 812, 855, 877, 941, 957, 1002, 1029, 1128, 1167, 1177, 1365, 1415, 1435, 1541, 1697, 1716, 1745], "dist_label": "Member", "histogram": [[{"color": "rgb(70, 18, 100)", "height": 33.0, "perc": 6.7}, {"color": "rgb(68, 51, 125)", "height": 100.0, "perc": 20.0}, {"color": "rgb(58, 80, 138)", "height": 50.0, "perc": 10.0}, {"color": "rgb(46, 107, 141)", "height": 0.0, "perc": 0.0}, {"color": "rgb(36, 131, 141)", "height": 83.0, "perc": 16.7}, {"color": "rgb(33, 155, 136)", "height": 67.0, "perc": 13.3}, {"color": "rgb(51, 178, 121)", "height": 50.0, "perc": 10.0}, {"color": "rgb(94, 199, 96)", "height": 50.0, "perc": 10.0}, {"color": "rgb(155, 215, 59)", "height": 17.0, "perc": 3.3}, {"color": "rgb(220, 226, 37)", "height": 50.0, "perc": 10.0}]], "node_id": "cube263_cluster0", "projection_stats": []}, "type": "circle"}, {"color": [[0.33542374868128005]], "id": "", "name": "cube264_cluster0", "size": 3, "tooltip": {"cluster_stats": {"above": [], "below": [], "size": 19}, "custom_tooltips": [10, 48, 256, 276, 286, 292, 304, 305, 311, 334, 526, 776, 796, 806, 812, 980, 1177, 1435, 1716], "dist_label": "Member", "histogram": [[{"color": "rgb(70, 18, 100)", "height": 25.0, "perc": 10.5}, {"color": "rgb(68, 51, 125)", "height": 100.0, "perc": 42.1}, {"color": "rgb(58, 80, 138)", "height": 13.0, "perc": 5.3}, {"color": "rgb(46, 107, 141)", "height": 0.0, "perc": 0.0}, {"color": "rgb(36, 131, 141)", "height": 50.0, "perc": 21.1}, {"color": "rgb(33, 155, 136)", "height": 13.0, "perc": 5.3}, {"color": "rgb(51, 178, 121)", "height": 13.0, "perc": 5.3}, {"color": "rgb(94, 199, 96)", "height": 13.0, "perc": 5.3}, {"color": "rgb(155, 215, 59)", "height": 0.0, "perc": 0.0}, {"color": "rgb(220, 226, 37)", "height": 13.0, "perc": 5.3}]], "node_id": "cube264_cluster0", "projection_stats": []}, "type": "circle"}, {"color": [[0.4050521627007384]], "id": "", "name": "cube270_cluster0", "size": 3, "tooltip": {"cluster_stats": {"above": [], "below": [], "size": 19}, "custom_tooltips": [257, 267, 277, 303, 336, 341, 346, 647, 702, 726, 797, 846, 861, 883, 1040, 1117, 1120, 1199, 1757], "dist_label": "Member", "histogram": [[{"color": "rgb(70, 18, 100)", "height": 0.0, "perc": 0.0}, {"color": "rgb(68, 51, 125)", "height": 100.0, "perc": 36.8}, {"color": "rgb(58, 80, 138)", "height": 0.0, "perc": 0.0}, {"color": "rgb(46, 107, 141)", "height": 29.0, "perc": 10.5}, {"color": "rgb(36, 131, 141)", "height": 71.0, "perc": 26.3}, {"color": "rgb(33, 155, 136)", "height": 14.0, "perc": 5.3}, {"color": "rgb(51, 178, 121)", "height": 43.0, "perc": 15.8}, {"color": "rgb(94, 199, 96)", "height": 0.0, "perc": 0.0}, {"color": "rgb(155, 215, 59)", "height": 0.0, "perc": 0.0}, {"color": "rgb(220, 226, 37)", "height": 14.0, "perc": 5.3}]], "node_id": "cube270_cluster0", "projection_stats": []}, "type": "circle"}, {"color": [[0.5785921576567457]], "id": "", "name": "cube271_cluster0", "size": 4, "tooltip": {"cluster_stats": {"above": [], "below": [], "size": 33}, "custom_tooltips": [257, 326, 346, 349, 355, 702, 726, 777, 787, 797, 861, 866, 869, 875, 1050, 1076, 1097, 1112, 1120, 1134, 1237, 1247, 1334, 1357, 1372, 1377, 1380, 1386, 1585, 1613, 1634, 1640, 1648], "dist_label": "Member", "histogram": [[{"color": "rgb(70, 18, 100)", "height": 0.0, "perc": 0.0}, {"color": "rgb(68, 51, 125)", "height": 63.0, "perc": 15.2}, {"color": "rgb(58, 80, 138)", "height": 0.0, "perc": 0.0}, {"color": "rgb(46, 107, 141)", "height": 13.0, "perc": 3.0}, {"color": "rgb(36, 131, 141)", "height": 100.0, "perc": 24.2}, {"color": "rgb(33, 155, 136)", "height": 25.0, "perc": 6.1}, {"color": "rgb(51, 178, 121)", "height": 75.0, "perc": 18.2}, {"color": "rgb(94, 199, 96)", "height": 75.0, "perc": 18.2}, {"color": "rgb(155, 215, 59)", "height": 25.0, "perc": 6.1}, {"color": "rgb(220, 226, 37)", "height": 38.0, "perc": 9.1}]], "node_id": "cube271_cluster0", "projection_stats": []}, "type": "circle"}, {"color": [[0.7345541532623938]], "id": "", "name": "cube272_cluster0", "size": 4, "tooltip": {"cluster_stats": {"above": [], "below": [], "size": 27}, "custom_tooltips": [349, 777, 869, 1050, 1076, 1097, 1112, 1134, 1213, 1237, 1329, 1334, 1372, 1377, 1380, 1386, 1394, 1546, 1585, 1590, 1613, 1621, 1626, 1631, 1634, 1640, 1648], "dist_label": "Member", "histogram": [[{"color": "rgb(70, 18, 100)", "height": 0.0, "perc": 0.0}, {"color": "rgb(68, 51, 125)", "height": 14.0, "perc": 3.7}, {"color": "rgb(58, 80, 138)", "height": 0.0, "perc": 0.0}, {"color": "rgb(46, 107, 141)", "height": 0.0, "perc": 0.0}, {"color": "rgb(36, 131, 141)", "height": 29.0, "perc": 7.4}, {"color": "rgb(33, 155, 136)", "height": 29.0, "perc": 7.4}, {"color": "rgb(51, 178, 121)", "height": 71.0, "perc": 18.5}, {"color": "rgb(94, 199, 96)", "height": 100.0, "perc": 25.9}, {"color": "rgb(155, 215, 59)", "height": 57.0, "perc": 14.8}, {"color": "rgb(220, 226, 37)", "height": 86.0, "perc": 22.2}]], "node_id": "cube272_cluster0", "projection_stats": []}, "type": "circle"}, {"color": [[0.4589166401527204]], "id": "", "name": "cube275_cluster0", "size": 4, "tooltip": {"cluster_stats": {"above": [], "below": [], "size": 28}, "custom_tooltips": [20, 55, 72, 101, 126, 150, 179, 185, 202, 208, 209, 252, 406, 701, 747, 848, 1335, 1336, 1366, 1545, 1555, 1563, 1591, 1598, 1615, 1642, 1703, 1768], "dist_label": "Member", "histogram": [[{"color": "rgb(70, 18, 100)", "height": 100.0, "perc": 25.0}, {"color": "rgb(68, 51, 125)", "height": 71.0, "perc": 17.9}, {"color": "rgb(58, 80, 138)", "height": 14.0, "perc": 3.6}, {"color": "rgb(46, 107, 141)", "height": 14.0, "perc": 3.6}, {"color": "rgb(36, 131, 141)", "height": 29.0, "perc": 7.1}, {"color": "rgb(33, 155, 136)", "height": 0.0, "perc": 0.0}, {"color": "rgb(51, 178, 121)", "height": 0.0, "perc": 0.0}, {"color": "rgb(94, 199, 96)", "height": 43.0, "perc": 10.7}, {"color": "rgb(155, 215, 59)", "height": 86.0, "perc": 21.4}, {"color": "rgb(220, 226, 37)", "height": 43.0, "perc": 10.7}]], "node_id": "cube275_cluster0", "projection_stats": []}, "type": "circle"}, {"color": [[0.5618736080178174]], "id": "", "name": "cube276_cluster0", "size": 4, "tooltip": {"cluster_stats": {"above": [], "below": [], "size": 24}, "custom_tooltips": [166, 202, 406, 458, 564, 588, 694, 718, 747, 772, 824, 848, 1258, 1297, 1307, 1335, 1336, 1366, 1388, 1545, 1555, 1563, 1579, 1703], "dist_label": "Member", "histogram": [[{"color": "rgb(70, 18, 100)", "height": 14.0, "perc": 4.2}, {"color": "rgb(68, 51, 125)", "height": 14.0, "perc": 4.2}, {"color": "rgb(58, 80, 138)", "height": 29.0, "perc": 8.3}, {"color": "rgb(46, 107, 141)", "height": 57.0, "perc": 16.7}, {"color": "rgb(36, 131, 141)", "height": 57.0, "perc": 16.7}, {"color": "rgb(33, 155, 136)", "height": 0.0, "perc": 0.0}, {"color": "rgb(51, 178, 121)", "height": 0.0, "perc": 0.0}, {"color": "rgb(94, 199, 96)", "height": 100.0, "perc": 29.2}, {"color": "rgb(155, 215, 59)", "height": 57.0, "perc": 16.7}, {"color": "rgb(220, 226, 37)", "height": 14.0, "perc": 4.2}]], "node_id": "cube276_cluster0", "projection_stats": []}, "type": "circle"}, {"color": [[0.4657572383073496]], "id": "", "name": "cube277_cluster0", "size": 4, "tooltip": {"cluster_stats": {"above": [], "below": [], "size": 24}, "custom_tooltips": [166, 328, 458, 512, 516, 536, 546, 564, 588, 595, 617, 642, 725, 772, 824, 902, 1029, 1128, 1157, 1258, 1297, 1579, 1592, 1745], "dist_label": "Member", "histogram": [[{"color": "rgb(70, 18, 100)", "height": 17.0, "perc": 4.2}, {"color": "rgb(68, 51, 125)", "height": 17.0, "perc": 4.2}, {"color": "rgb(58, 80, 138)", "height": 67.0, "perc": 16.7}, {"color": "rgb(46, 107, 141)", "height": 100.0, "perc": 25.0}, {"color": "rgb(36, 131, 141)", "height": 50.0, "perc": 12.5}, {"color": "rgb(33, 155, 136)", "height": 33.0, "perc": 8.3}, {"color": "rgb(51, 178, 121)", "height": 33.0, "perc": 8.3}, {"color": "rgb(94, 199, 96)", "height": 33.0, "perc": 8.3}, {"color": "rgb(155, 215, 59)", "height": 33.0, "perc": 8.3}, {"color": "rgb(220, 226, 37)", "height": 17.0, "perc": 4.2}]], "node_id": "cube277_cluster0", "projection_stats": []}, "type": "circle"}, {"color": [[0.47216035634743875]], "id": "", "name": "cube278_cluster0", "size": 4, "tooltip": {"cluster_stats": {"above": [], "below": [], "size": 26}, "custom_tooltips": [0, 10, 276, 328, 334, 335, 536, 571, 595, 617, 676, 695, 725, 825, 877, 1029, 1128, 1167, 1177, 1187, 1236, 1359, 1365, 1592, 1663, 1745], "dist_label": "Member", "histogram": [[{"color": "rgb(70, 18, 100)", "height": 40.0, "perc": 7.7}, {"color": "rgb(68, 51, 125)", "height": 80.0, "perc": 15.4}, {"color": "rgb(58, 80, 138)", "height": 20.0, "perc": 3.8}, {"color": "rgb(46, 107, 141)", "height": 100.0, "perc": 19.2}, {"color": "rgb(36, 131, 141)", "height": 60.0, "perc": 11.5}, {"color": "rgb(33, 155, 136)", "height": 20.0, "perc": 3.8}, {"color": "rgb(51, 178, 121)", "height": 100.0, "perc": 19.2}, {"color": "rgb(94, 199, 96)", "height": 40.0, "perc": 7.7}, {"color": "rgb(155, 215, 59)", "height": 20.0, "perc": 3.8}, {"color": "rgb(220, 226, 37)", "height": 40.0, "perc": 7.7}]], "node_id": "cube278_cluster0", "projection_stats": []}, "type": "circle"}, {"color": [[0.5706144373116729]], "id": "", "name": "cube283_cluster0", "size": 3, "tooltip": {"cluster_stats": {"above": [], "below": [], "size": 17}, "custom_tooltips": [1, 93, 355, 702, 726, 777, 787, 797, 1237, 1334, 1357, 1372, 1377, 1585, 1634, 1640, 1648], "dist_label": "Member", "histogram": [[{"color": "rgb(70, 18, 100)", "height": 50.0, "perc": 11.8}, {"color": "rgb(68, 51, 125)", "height": 25.0, "perc": 5.9}, {"color": "rgb(58, 80, 138)", "height": 0.0, "perc": 0.0}, {"color": "rgb(46, 107, 141)", "height": 25.0, "perc": 5.9}, {"color": "rgb(36, 131, 141)", "height": 100.0, "perc": 23.5}, {"color": "rgb(33, 155, 136)", "height": 0.0, "perc": 0.0}, {"color": "rgb(51, 178, 121)", "height": 25.0, "perc": 5.9}, {"color": "rgb(94, 199, 96)", "height": 100.0, "perc": 23.5}, {"color": "rgb(155, 215, 59)", "height": 25.0, "perc": 5.9}, {"color": "rgb(220, 226, 37)", "height": 75.0, "perc": 17.6}]], "node_id": "cube283_cluster0", "projection_stats": []}, "type": "circle"}, {"color": [[0.5150041026843277]], "id": "", "name": "cube286_cluster0", "size": 3, "tooltip": {"cluster_stats": {"above": [], "below": [], "size": 19}, "custom_tooltips": [20, 36, 55, 140, 179, 208, 416, 701, 848, 854, 1323, 1413, 1545, 1563, 1591, 1615, 1642, 1703, 1722], "dist_label": "Member", "histogram": [[{"color": "rgb(70, 18, 100)", "height": 100.0, "perc": 26.3}, {"color": "rgb(68, 51, 125)", "height": 20.0, "perc": 5.3}, {"color": "rgb(58, 80, 138)", "height": 20.0, "perc": 5.3}, {"color": "rgb(46, 107, 141)", "height": 20.0, "perc": 5.3}, {"color": "rgb(36, 131, 141)", "height": 40.0, "perc": 10.5}, {"color": "rgb(33, 155, 136)", "height": 0.0, "perc": 0.0}, {"color": "rgb(51, 178, 121)", "height": 0.0, "perc": 0.0}, {"color": "rgb(94, 199, 96)", "height": 40.0, "perc": 10.5}, {"color": "rgb(155, 215, 59)", "height": 80.0, "perc": 21.1}, {"color": "rgb(220, 226, 37)", "height": 60.0, "perc": 15.8}]], "node_id": "cube286_cluster0", "projection_stats": []}, "type": "circle"}, {"color": [[0.45687948527592176]], "id": "", "name": "cube287_cluster0", "size": 3, "tooltip": {"cluster_stats": {"above": [], "below": [], "size": 18}, "custom_tooltips": [36, 140, 160, 166, 416, 458, 646, 666, 694, 718, 724, 772, 848, 1545, 1563, 1703, 1722, 1793], "dist_label": "Member", "histogram": [[{"color": "rgb(70, 18, 100)", "height": 100.0, "perc": 22.2}, {"color": "rgb(68, 51, 125)", "height": 0.0, "perc": 0.0}, {"color": "rgb(58, 80, 138)", "height": 50.0, "perc": 11.1}, {"color": "rgb(46, 107, 141)", "height": 100.0, "perc": 22.2}, {"color": "rgb(36, 131, 141)", "height": 75.0, "perc": 16.7}, {"color": "rgb(33, 155, 136)", "height": 0.0, "perc": 0.0}, {"color": "rgb(51, 178, 121)", "height": 0.0, "perc": 0.0}, {"color": "rgb(94, 199, 96)", "height": 0.0, "perc": 0.0}, {"color": "rgb(155, 215, 59)", "height": 50.0, "perc": 11.1}, {"color": "rgb(220, 226, 37)", "height": 75.0, "perc": 16.7}]], "node_id": "cube287_cluster0", "projection_stats": []}, "type": "circle"}, {"color": [[0.35515961395694134]], "id": "", "name": "cube288_cluster0", "size": 3, "tooltip": {"cluster_stats": {"above": [], "below": [], "size": 15}, "custom_tooltips": [30, 166, 458, 516, 536, 546, 595, 617, 642, 646, 666, 772, 831, 1205, 1342], "dist_label": "Member", "histogram": [[{"color": "rgb(70, 18, 100)", "height": 33.0, "perc": 13.3}, {"color": "rgb(68, 51, 125)", "height": 0.0, "perc": 0.0}, {"color": "rgb(58, 80, 138)", "height": 50.0, "perc": 20.0}, {"color": "rgb(46, 107, 141)", "height": 100.0, "perc": 40.0}, {"color": "rgb(36, 131, 141)", "height": 33.0, "perc": 13.3}, {"color": "rgb(33, 155, 136)", "height": 0.0, "perc": 0.0}, {"color": "rgb(51, 178, 121)", "height": 17.0, "perc": 6.7}, {"color": "rgb(94, 199, 96)", "height": 17.0, "perc": 6.7}, {"color": "rgb(155, 215, 59)", "height": 0.0, "perc": 0.0}, {"color": "rgb(220, 226, 37)", "height": 0.0, "perc": 0.0}]], "node_id": "cube288_cluster0", "projection_stats": []}, "type": "circle"}, {"color": [[0.542242019302153]], "id": "", "name": "cube289_cluster0", "size": 3, "tooltip": {"cluster_stats": {"above": [], "below": [], "size": 15}, "custom_tooltips": [30, 536, 595, 617, 656, 695, 1187, 1193, 1205, 1206, 1212, 1235, 1236, 1342, 1663], "dist_label": "Member", "histogram": [[{"color": "rgb(70, 18, 100)", "height": 14.0, "perc": 6.7}, {"color": "rgb(68, 51, 125)", "height": 0.0, "perc": 0.0}, {"color": "rgb(58, 80, 138)", "height": 14.0, "perc": 6.7}, {"color": "rgb(46, 107, 141)", "height": 57.0, "perc": 26.7}, {"color": "rgb(36, 131, 141)", "height": 0.0, "perc": 0.0}, {"color": "rgb(33, 155, 136)", "height": 0.0, "perc": 0.0}, {"color": "rgb(51, 178, 121)", "height": 100.0, "perc": 46.7}, {"color": "rgb(94, 199, 96)", "height": 14.0, "perc": 6.7}, {"color": "rgb(155, 215, 59)", "height": 0.0, "perc": 0.0}, {"color": "rgb(220, 226, 37)", "height": 14.0, "perc": 6.7}]], "node_id": "cube289_cluster0", "projection_stats": []}, "type": "circle"}, {"color": [[0.567027256336833]], "id": "", "name": "cube302_cluster0", "size": 4, "tooltip": {"cluster_stats": {"above": [], "below": [], "size": 21}, "custom_tooltips": [7, 44, 211, 523, 533, 568, 597, 894, 1164, 1200, 1201, 1218, 1238, 1265, 1294, 1348, 1368, 1570, 1674, 1694, 1775], "dist_label": "Member", "histogram": [[{"color": "rgb(70, 18, 100)", "height": 40.0, "perc": 9.5}, {"color": "rgb(68, 51, 125)", "height": 20.0, "perc": 4.8}, {"color": "rgb(58, 80, 138)", "height": 40.0, "perc": 9.5}, {"color": "rgb(46, 107, 141)", "height": 40.0, "perc": 9.5}, {"color": "rgb(36, 131, 141)", "height": 20.0, "perc": 4.8}, {"color": "rgb(33, 155, 136)", "height": 0.0, "perc": 0.0}, {"color": "rgb(51, 178, 121)", "height": 100.0, "perc": 23.8}, {"color": "rgb(94, 199, 96)", "height": 80.0, "perc": 19.0}, {"color": "rgb(155, 215, 59)", "height": 20.0, "perc": 4.8}, {"color": "rgb(220, 226, 37)", "height": 60.0, "perc": 14.3}]], "node_id": "cube302_cluster0", "projection_stats": []}, "type": "circle"}, {"color": [[0.5016332590942836]], "id": "", "name": "cube303_cluster0", "size": 3, "tooltip": {"cluster_stats": {"above": [], "below": [], "size": 15}, "custom_tooltips": [7, 44, 533, 560, 597, 602, 634, 1108, 1135, 1139, 1201, 1218, 1368, 1674, 1694], "dist_label": "Member", "histogram": [[{"color": "rgb(70, 18, 100)", "height": 40.0, "perc": 13.3}, {"color": "rgb(68, 51, 125)", "height": 0.0, "perc": 0.0}, {"color": "rgb(58, 80, 138)", "height": 20.0, "perc": 6.7}, {"color": "rgb(46, 107, 141)", "height": 80.0, "perc": 26.7}, {"color": "rgb(36, 131, 141)", "height": 0.0, "perc": 0.0}, {"color": "rgb(33, 155, 136)", "height": 0.0, "perc": 0.0}, {"color": "rgb(51, 178, 121)", "height": 100.0, "perc": 33.3}, {"color": "rgb(94, 199, 96)", "height": 20.0, "perc": 6.7}, {"color": "rgb(155, 215, 59)", "height": 0.0, "perc": 0.0}, {"color": "rgb(220, 226, 37)", "height": 40.0, "perc": 13.3}]], "node_id": "cube303_cluster0", "projection_stats": []}, "type": "circle"}, {"color": [[0.29330611234842857]], "id": "", "name": "cube311_cluster0", "size": 3, "tooltip": {"cluster_stats": {"above": [], "below": [], "size": 18}, "custom_tooltips": [21, 56, 80, 387, 397, 407, 428, 433, 456, 466, 471, 476, 479, 485, 493, 1168, 1343, 1436], "dist_label": "Member", "histogram": [[{"color": "rgb(70, 18, 100)", "height": 25.0, "perc": 16.7}, {"color": "rgb(68, 51, 125)", "height": 0.0, "perc": 0.0}, {"color": "rgb(58, 80, 138)", "height": 100.0, "perc": 66.7}, {"color": "rgb(46, 107, 141)", "height": 0.0, "perc": 0.0}, {"color": "rgb(36, 131, 141)", "height": 0.0, "perc": 0.0}, {"color": "rgb(33, 155, 136)", "height": 0.0, "perc": 0.0}, {"color": "rgb(51, 178, 121)", "height": 8.0, "perc": 5.6}, {"color": "rgb(94, 199, 96)", "height": 17.0, "perc": 11.1}, {"color": "rgb(155, 215, 59)", "height": 0.0, "perc": 0.0}, {"color": "rgb(220, 226, 37)", "height": 0.0, "perc": 0.0}]], "node_id": "cube311_cluster0", "projection_stats": []}, "type": "circle"}, {"color": [[0.28463837768139727]], "id": "", "name": "cube312_cluster0", "size": 3, "tooltip": {"cluster_stats": {"above": [], "below": [], "size": 19}, "custom_tooltips": [21, 47, 56, 70, 80, 85, 397, 433, 456, 466, 471, 476, 479, 485, 794, 1158, 1168, 1204, 1367], "dist_label": "Member", "histogram": [[{"color": "rgb(70, 18, 100)", "height": 75.0, "perc": 31.6}, {"color": "rgb(68, 51, 125)", "height": 0.0, "perc": 0.0}, {"color": "rgb(58, 80, 138)", "height": 100.0, "perc": 42.1}, {"color": "rgb(46, 107, 141)", "height": 0.0, "perc": 0.0}, {"color": "rgb(36, 131, 141)", "height": 13.0, "perc": 5.3}, {"color": "rgb(33, 155, 136)", "height": 0.0, "perc": 0.0}, {"color": "rgb(51, 178, 121)", "height": 38.0, "perc": 15.8}, {"color": "rgb(94, 199, 96)", "height": 13.0, "perc": 5.3}, {"color": "rgb(155, 215, 59)", "height": 0.0, "perc": 0.0}, {"color": "rgb(220, 226, 37)", "height": 0.0, "perc": 0.0}]], "node_id": "cube312_cluster0", "projection_stats": []}, "type": "circle"}, {"color": [[0.7457962138084632]], "id": "", "name": "cube314_cluster0", "size": 4, "tooltip": {"cluster_stats": {"above": [], "below": [], "size": 20}, "custom_tooltips": [236, 628, 819, 870, 1200, 1238, 1243, 1294, 1348, 1373, 1587, 1595, 1604, 1622, 1627, 1635, 1653, 1657, 1775, 1785], "dist_label": "Member", "histogram": [[{"color": "rgb(70, 18, 100)", "height": 0.0, "perc": 0.0}, {"color": "rgb(68, 51, 125)", "height": 14.0, "perc": 5.0}, {"color": "rgb(58, 80, 138)", "height": 0.0, "perc": 0.0}, {"color": "rgb(46, 107, 141)", "height": 14.0, "perc": 5.0}, {"color": "rgb(36, 131, 141)", "height": 29.0, "perc": 10.0}, {"color": "rgb(33, 155, 136)", "height": 0.0, "perc": 0.0}, {"color": "rgb(51, 178, 121)", "height": 43.0, "perc": 15.0}, {"color": "rgb(94, 199, 96)", "height": 43.0, "perc": 15.0}, {"color": "rgb(155, 215, 59)", "height": 43.0, "perc": 15.0}, {"color": "rgb(220, 226, 37)", "height": 100.0, "perc": 35.0}]], "node_id": "cube314_cluster0", "projection_stats": []}, "type": "circle"}, {"color": [[0.6060319227913883]], "id": "", "name": "cube315_cluster0", "size": 4, "tooltip": {"cluster_stats": {"above": [], "below": [], "size": 30}, "custom_tooltips": [44, 236, 273, 299, 533, 568, 597, 610, 628, 653, 793, 1164, 1200, 1201, 1209, 1238, 1243, 1251, 1294, 1348, 1368, 1395, 1586, 1622, 1653, 1674, 1694, 1719, 1775, 1785], "dist_label": "Member", "histogram": [[{"color": "rgb(70, 18, 100)", "height": 14.0, "perc": 3.3}, {"color": "rgb(68, 51, 125)", "height": 43.0, "perc": 10.0}, {"color": "rgb(58, 80, 138)", "height": 14.0, "perc": 3.3}, {"color": "rgb(46, 107, 141)", "height": 71.0, "perc": 16.7}, {"color": "rgb(36, 131, 141)", "height": 14.0, "perc": 3.3}, {"color": "rgb(33, 155, 136)", "height": 0.0, "perc": 0.0}, {"color": "rgb(51, 178, 121)", "height": 100.0, "perc": 23.3}, {"color": "rgb(94, 199, 96)", "height": 57.0, "perc": 13.3}, {"color": "rgb(155, 215, 59)", "height": 14.0, "perc": 3.3}, {"color": "rgb(220, 226, 37)", "height": 100.0, "perc": 23.3}]], "node_id": "cube315_cluster0", "projection_stats": []}, "type": "circle"}, {"color": [[0.5068052462261816]], "id": "", "name": "cube316_cluster0", "size": 4, "tooltip": {"cluster_stats": {"above": [], "below": [], "size": 27}, "custom_tooltips": [44, 81, 112, 273, 299, 533, 560, 597, 602, 610, 624, 634, 653, 764, 793, 1135, 1201, 1209, 1251, 1331, 1368, 1405, 1649, 1674, 1694, 1719, 1761], "dist_label": "Member", "histogram": [[{"color": "rgb(70, 18, 100)", "height": 43.0, "perc": 11.1}, {"color": "rgb(68, 51, 125)", "height": 29.0, "perc": 7.4}, {"color": "rgb(58, 80, 138)", "height": 14.0, "perc": 3.7}, {"color": "rgb(46, 107, 141)", "height": 100.0, "perc": 25.9}, {"color": "rgb(36, 131, 141)", "height": 29.0, "perc": 7.4}, {"color": "rgb(33, 155, 136)", "height": 0.0, "perc": 0.0}, {"color": "rgb(51, 178, 121)", "height": 57.0, "perc": 14.8}, {"color": "rgb(94, 199, 96)", "height": 43.0, "perc": 11.1}, {"color": "rgb(155, 215, 59)", "height": 0.0, "perc": 0.0}, {"color": "rgb(220, 226, 37)", "height": 71.0, "perc": 18.5}]], "node_id": "cube316_cluster0", "projection_stats": []}, "type": "circle"}, {"color": [[0.5342761692650334]], "id": "", "name": "cube318_cluster0", "size": 4, "tooltip": {"cluster_stats": {"above": [], "below": [], "size": 25}, "custom_tooltips": [17, 94, 337, 342, 368, 783, 820, 922, 948, 954, 983, 1013, 1019, 1036, 1046, 1056, 1073, 1121, 1304, 1330, 1458, 1459, 1496, 1501, 1509], "dist_label": "Member", "histogram": [[{"color": "rgb(70, 18, 100)", "height": 20.0, "perc": 8.0}, {"color": "rgb(68, 51, 125)", "height": 20.0, "perc": 8.0}, {"color": "rgb(58, 80, 138)", "height": 10.0, "perc": 4.0}, {"color": "rgb(46, 107, 141)", "height": 0.0, "perc": 0.0}, {"color": "rgb(36, 131, 141)", "height": 20.0, "perc": 8.0}, {"color": "rgb(33, 155, 136)", "height": 100.0, "perc": 40.0}, {"color": "rgb(51, 178, 121)", "height": 10.0, "perc": 4.0}, {"color": "rgb(94, 199, 96)", "height": 20.0, "perc": 8.0}, {"color": "rgb(155, 215, 59)", "height": 50.0, "perc": 20.0}, {"color": "rgb(220, 226, 37)", "height": 0.0, "perc": 0.0}]], "node_id": "cube318_cluster0", "projection_stats": []}, "type": "circle"}, {"color": [[0.6994770988670476]], "id": "", "name": "cube319_cluster0", "size": 4, "tooltip": {"cluster_stats": {"above": [], "below": [], "size": 23}, "custom_tooltips": [912, 922, 932, 948, 949, 954, 963, 995, 1009, 1019, 1330, 1422, 1432, 1442, 1458, 1459, 1476, 1496, 1501, 1509, 1523, 1533, 1710], "dist_label": "Member", "histogram": [[{"color": "rgb(70, 18, 100)", "height": 0.0, "perc": 0.0}, {"color": "rgb(68, 51, 125)", "height": 0.0, "perc": 0.0}, {"color": "rgb(58, 80, 138)", "height": 0.0, "perc": 0.0}, {"color": "rgb(46, 107, 141)", "height": 0.0, "perc": 0.0}, {"color": "rgb(36, 131, 141)", "height": 0.0, "perc": 0.0}, {"color": "rgb(33, 155, 136)", "height": 100.0, "perc": 43.5}, {"color": "rgb(51, 178, 121)", "height": 0.0, "perc": 0.0}, {"color": "rgb(94, 199, 96)", "height": 30.0, "perc": 13.0}, {"color": "rgb(155, 215, 59)", "height": 90.0, "perc": 39.1}, {"color": "rgb(220, 226, 37)", "height": 10.0, "perc": 4.3}]], "node_id": "cube319_cluster0", "projection_stats": []}, "type": "circle"}, {"color": [[0.3546770601336303]], "id": "", "name": "cube322_cluster0", "size": 3, "tooltip": {"cluster_stats": {"above": [], "below": [], "size": 16}, "custom_tooltips": [265, 325, 348, 361, 384, 403, 413, 429, 447, 467, 480, 494, 498, 1580, 1633, 1665], "dist_label": "Member", "histogram": [[{"color": "rgb(70, 18, 100)", "height": 0.0, "perc": 0.0}, {"color": "rgb(68, 51, 125)", "height": 30.0, "perc": 18.8}, {"color": "rgb(58, 80, 138)", "height": 100.0, "perc": 62.5}, {"color": "rgb(46, 107, 141)", "height": 0.0, "perc": 0.0}, {"color": "rgb(36, 131, 141)", "height": 0.0, "perc": 0.0}, {"color": "rgb(33, 155, 136)", "height": 0.0, "perc": 0.0}, {"color": "rgb(51, 178, 121)", "height": 0.0, "perc": 0.0}, {"color": "rgb(94, 199, 96)", "height": 0.0, "perc": 0.0}, {"color": "rgb(155, 215, 59)", "height": 10.0, "perc": 6.2}, {"color": "rgb(220, 226, 37)", "height": 20.0, "perc": 12.5}]], "node_id": "cube322_cluster0", "projection_stats": []}, "type": "circle"}, {"color": [[0.696702548874041]], "id": "", "name": "cube325_cluster0", "size": 3, "tooltip": {"cluster_stats": {"above": [], "below": [], "size": 18}, "custom_tooltips": [131, 177, 387, 1288, 1343, 1416, 1426, 1436, 1457, 1462, 1471, 1485, 1495, 1500, 1505, 1508, 1514, 1522], "dist_label": "Member", "histogram": [[{"color": "rgb(70, 18, 100)", "height": 20.0, "perc": 11.1}, {"color": "rgb(68, 51, 125)", "height": 0.0, "perc": 0.0}, {"color": "rgb(58, 80, 138)", "height": 10.0, "perc": 5.6}, {"color": "rgb(46, 107, 141)", "height": 0.0, "perc": 0.0}, {"color": "rgb(36, 131, 141)", "height": 0.0, "perc": 0.0}, {"color": "rgb(33, 155, 136)", "height": 0.0, "perc": 0.0}, {"color": "rgb(51, 178, 121)", "height": 0.0, "perc": 0.0}, {"color": "rgb(94, 199, 96)", "height": 50.0, "perc": 27.8}, {"color": "rgb(155, 215, 59)", "height": 100.0, "perc": 55.6}, {"color": "rgb(220, 226, 37)", "height": 0.0, "perc": 0.0}]], "node_id": "cube325_cluster0", "projection_stats": []}, "type": "circle"}, {"color": [[0.24151370862452962]], "id": "", "name": "cube326_cluster0", "size": 4, "tooltip": {"cluster_stats": {"above": [], "below": [], "size": 29}, "custom_tooltips": [11, 21, 56, 80, 107, 131, 141, 151, 172, 177, 186, 200, 210, 218, 221, 227, 235, 387, 407, 428, 456, 476, 479, 493, 1168, 1343, 1436, 1457, 1505], "dist_label": "Member", "histogram": [[{"color": "rgb(70, 18, 100)", "height": 100.0, "perc": 34.5}, {"color": "rgb(68, 51, 125)", "height": 70.0, "perc": 24.1}, {"color": "rgb(58, 80, 138)", "height": 70.0, "perc": 24.1}, {"color": "rgb(46, 107, 141)", "height": 0.0, "perc": 0.0}, {"color": "rgb(36, 131, 141)", "height": 0.0, "perc": 0.0}, {"color": "rgb(33, 155, 136)", "height": 0.0, "perc": 0.0}, {"color": "rgb(51, 178, 121)", "height": 10.0, "perc": 3.4}, {"color": "rgb(94, 199, 96)", "height": 20.0, "perc": 6.9}, {"color": "rgb(155, 215, 59)", "height": 20.0, "perc": 6.9}, {"color": "rgb(220, 226, 37)", "height": 0.0, "perc": 0.0}]], "node_id": "cube326_cluster0", "projection_stats": []}, "type": "circle"}, {"color": [[0.17584971434104774]], "id": "", "name": "cube327_cluster0", "size": 4, "tooltip": {"cluster_stats": {"above": [], "below": [], "size": 23}, "custom_tooltips": [11, 21, 42, 47, 56, 70, 80, 85, 90, 107, 141, 200, 215, 221, 227, 235, 312, 456, 476, 479, 1158, 1168, 1367], "dist_label": "Member", "histogram": [[{"color": "rgb(70, 18, 100)", "height": 100.0, "perc": 47.8}, {"color": "rgb(68, 51, 125)", "height": 55.0, "perc": 26.1}, {"color": "rgb(58, 80, 138)", "height": 27.0, "perc": 13.0}, {"color": "rgb(46, 107, 141)", "height": 0.0, "perc": 0.0}, {"color": "rgb(36, 131, 141)", "height": 0.0, "perc": 0.0}, {"color": "rgb(33, 155, 136)", "height": 0.0, "perc": 0.0}, {"color": "rgb(51, 178, 121)", "height": 18.0, "perc": 8.7}, {"color": "rgb(94, 199, 96)", "height": 9.0, "perc": 4.3}, {"color": "rgb(155, 215, 59)", "height": 0.0, "perc": 0.0}, {"color": "rgb(220, 226, 37)", "height": 0.0, "perc": 0.0}]], "node_id": "cube327_cluster0", "projection_stats": []}, "type": "circle"}, {"color": [[0.5144766146993318]], "id": "", "name": "cube329_cluster0", "size": 3, "tooltip": {"cluster_stats": {"above": [], "below": [], "size": 15}, "custom_tooltips": [157, 191, 216, 236, 240, 364, 819, 828, 870, 1373, 1627, 1653, 1748, 1753, 1785], "dist_label": "Member", "histogram": [[{"color": "rgb(70, 18, 100)", "height": 20.0, "perc": 6.7}, {"color": "rgb(68, 51, 125)", "height": 80.0, "perc": 26.7}, {"color": "rgb(58, 80, 138)", "height": 20.0, "perc": 6.7}, {"color": "rgb(46, 107, 141)", "height": 0.0, "perc": 0.0}, {"color": "rgb(36, 131, 141)", "height": 60.0, "perc": 20.0}, {"color": "rgb(33, 155, 136)", "height": 0.0, "perc": 0.0}, {"color": "rgb(51, 178, 121)", "height": 0.0, "perc": 0.0}, {"color": "rgb(94, 199, 96)", "height": 20.0, "perc": 6.7}, {"color": "rgb(155, 215, 59)", "height": 0.0, "perc": 0.0}, {"color": "rgb(220, 226, 37)", "height": 100.0, "perc": 33.3}]], "node_id": "cube329_cluster0", "projection_stats": []}, "type": "circle"}, {"color": [[0.5024549503948167]], "id": "", "name": "cube330_cluster0", "size": 4, "tooltip": {"cluster_stats": {"above": [], "below": [], "size": 22}, "custom_tooltips": [137, 147, 157, 182, 236, 273, 299, 350, 364, 610, 793, 803, 884, 1251, 1395, 1586, 1653, 1719, 1728, 1748, 1753, 1785], "dist_label": "Member", "histogram": [[{"color": "rgb(70, 18, 100)", "height": 50.0, "perc": 13.6}, {"color": "rgb(68, 51, 125)", "height": 83.0, "perc": 22.7}, {"color": "rgb(58, 80, 138)", "height": 17.0, "perc": 4.5}, {"color": "rgb(46, 107, 141)", "height": 17.0, "perc": 4.5}, {"color": "rgb(36, 131, 141)", "height": 50.0, "perc": 13.6}, {"color": "rgb(33, 155, 136)", "height": 0.0, "perc": 0.0}, {"color": "rgb(51, 178, 121)", "height": 17.0, "perc": 4.5}, {"color": "rgb(94, 199, 96)", "height": 17.0, "perc": 4.5}, {"color": "rgb(155, 215, 59)", "height": 17.0, "perc": 4.5}, {"color": "rgb(220, 226, 37)", "height": 100.0, "perc": 27.3}]], "node_id": "cube330_cluster0", "projection_stats": []}, "type": "circle"}, {"color": [[0.4628467301073092]], "id": "", "name": "cube331_cluster0", "size": 4, "tooltip": {"cluster_stats": {"above": [], "below": [], "size": 22}, "custom_tooltips": [81, 112, 137, 147, 182, 273, 299, 610, 624, 793, 803, 837, 857, 884, 888, 1251, 1314, 1339, 1649, 1719, 1728, 1761], "dist_label": "Member", "histogram": [[{"color": "rgb(70, 18, 100)", "height": 67.0, "perc": 18.2}, {"color": "rgb(68, 51, 125)", "height": 50.0, "perc": 13.6}, {"color": "rgb(58, 80, 138)", "height": 0.0, "perc": 0.0}, {"color": "rgb(46, 107, 141)", "height": 33.0, "perc": 9.1}, {"color": "rgb(36, 131, 141)", "height": 100.0, "perc": 27.3}, {"color": "rgb(33, 155, 136)", "height": 0.0, "perc": 0.0}, {"color": "rgb(51, 178, 121)", "height": 17.0, "perc": 4.5}, {"color": "rgb(94, 199, 96)", "height": 33.0, "perc": 9.1}, {"color": "rgb(155, 215, 59)", "height": 0.0, "perc": 0.0}, {"color": "rgb(220, 226, 37)", "height": 67.0, "perc": 18.2}]], "node_id": "cube331_cluster0", "projection_stats": []}, "type": "circle"}, {"color": [[0.3879918337045286]], "id": "", "name": "cube332_cluster0", "size": 3, "tooltip": {"cluster_stats": {"above": [], "below": [], "size": 18}, "custom_tooltips": [17, 43, 61, 108, 112, 118, 222, 342, 368, 559, 862, 983, 1174, 1314, 1339, 1381, 1761, 1779], "dist_label": "Member", "histogram": [[{"color": "rgb(70, 18, 100)", "height": 100.0, "perc": 33.3}, {"color": "rgb(68, 51, 125)", "height": 33.0, "perc": 11.1}, {"color": "rgb(58, 80, 138)", "height": 17.0, "perc": 5.6}, {"color": "rgb(46, 107, 141)", "height": 17.0, "perc": 5.6}, {"color": "rgb(36, 131, 141)", "height": 17.0, "perc": 5.6}, {"color": "rgb(33, 155, 136)", "height": 17.0, "perc": 5.6}, {"color": "rgb(51, 178, 121)", "height": 17.0, "perc": 5.6}, {"color": "rgb(94, 199, 96)", "height": 50.0, "perc": 16.7}, {"color": "rgb(155, 215, 59)", "height": 0.0, "perc": 0.0}, {"color": "rgb(220, 226, 37)", "height": 33.0, "perc": 11.1}]], "node_id": "cube332_cluster0", "projection_stats": []}, "type": "circle"}, {"color": [[0.47148756495916855]], "id": "", "name": "cube333_cluster0", "size": 4, "tooltip": {"cluster_stats": {"above": [], "below": [], "size": 24}, "custom_tooltips": [17, 43, 52, 61, 108, 174, 342, 368, 374, 559, 783, 820, 983, 1118, 1304, 1330, 1381, 1399, 1458, 1459, 1496, 1501, 1509, 1684], "dist_label": "Member", "histogram": [[{"color": "rgb(70, 18, 100)", "height": 100.0, "perc": 25.0}, {"color": "rgb(68, 51, 125)", "height": 17.0, "perc": 4.2}, {"color": "rgb(58, 80, 138)", "height": 33.0, "perc": 8.3}, {"color": "rgb(46, 107, 141)", "height": 17.0, "perc": 4.2}, {"color": "rgb(36, 131, 141)", "height": 33.0, "perc": 8.3}, {"color": "rgb(33, 155, 136)", "height": 17.0, "perc": 4.2}, {"color": "rgb(51, 178, 121)", "height": 17.0, "perc": 4.2}, {"color": "rgb(94, 199, 96)", "height": 67.0, "perc": 16.7}, {"color": "rgb(155, 215, 59)", "height": 83.0, "perc": 20.8}, {"color": "rgb(220, 226, 37)", "height": 17.0, "perc": 4.2}]], "node_id": "cube333_cluster0", "projection_stats": []}, "type": "circle"}, {"color": [[0.6450951609637579]], "id": "", "name": "cube334_cluster0", "size": 4, "tooltip": {"cluster_stats": {"above": [], "below": [], "size": 22}, "custom_tooltips": [174, 283, 300, 317, 374, 949, 1118, 1330, 1399, 1422, 1432, 1442, 1458, 1459, 1467, 1476, 1496, 1501, 1509, 1523, 1527, 1533], "dist_label": "Member", "histogram": [[{"color": "rgb(70, 18, 100)", "height": 9.0, "perc": 4.5}, {"color": "rgb(68, 51, 125)", "height": 27.0, "perc": 13.6}, {"color": "rgb(58, 80, 138)", "height": 9.0, "perc": 4.5}, {"color": "rgb(46, 107, 141)", "height": 0.0, "perc": 0.0}, {"color": "rgb(36, 131, 141)", "height": 0.0, "perc": 0.0}, {"color": "rgb(33, 155, 136)", "height": 9.0, "perc": 4.5}, {"color": "rgb(51, 178, 121)", "height": 9.0, "perc": 4.5}, {"color": "rgb(94, 199, 96)", "height": 36.0, "perc": 18.2}, {"color": "rgb(155, 215, 59)", "height": 100.0, "perc": 50.0}, {"color": "rgb(220, 226, 37)", "height": 0.0, "perc": 0.0}]], "node_id": "cube334_cluster0", "projection_stats": []}, "type": "circle"}, {"color": [[0.4568485523385301]], "id": "", "name": "cube339_cluster0", "size": 3, "tooltip": {"cluster_stats": {"above": [], "below": [], "size": 18}, "custom_tooltips": [375, 381, 655, 665, 675, 677, 683, 685, 715, 719, 738, 751, 765, 771, 774, 1554, 1574, 1612], "dist_label": "Member", "histogram": [[{"color": "rgb(70, 18, 100)", "height": 0.0, "perc": 0.0}, {"color": "rgb(68, 51, 125)", "height": 0.0, "perc": 0.0}, {"color": "rgb(58, 80, 138)", "height": 29.0, "perc": 11.1}, {"color": "rgb(46, 107, 141)", "height": 100.0, "perc": 38.9}, {"color": "rgb(36, 131, 141)", "height": 86.0, "perc": 33.3}, {"color": "rgb(33, 155, 136)", "height": 0.0, "perc": 0.0}, {"color": "rgb(51, 178, 121)", "height": 0.0, "perc": 0.0}, {"color": "rgb(94, 199, 96)", "height": 0.0, "perc": 0.0}, {"color": "rgb(155, 215, 59)", "height": 43.0, "perc": 16.7}, {"color": "rgb(220, 226, 37)", "height": 0.0, "perc": 0.0}]], "node_id": "cube339_cluster0", "projection_stats": []}, "type": "circle"}, {"color": [[0.3844291662631935]], "id": "", "name": "cube347_cluster0", "size": 4, "tooltip": {"cluster_stats": {"above": [], "below": [], "size": 23}, "custom_tooltips": [27, 43, 52, 108, 173, 263, 308, 374, 543, 577, 663, 698, 707, 727, 740, 754, 758, 1118, 1184, 1269, 1399, 1684, 1711], "dist_label": "Member", "histogram": [[{"color": "rgb(70, 18, 100)", "height": 100.0, "perc": 21.7}, {"color": "rgb(68, 51, 125)", "height": 40.0, "perc": 8.7}, {"color": "rgb(58, 80, 138)", "height": 20.0, "perc": 4.3}, {"color": "rgb(46, 107, 141)", "height": 100.0, "perc": 21.7}, {"color": "rgb(36, 131, 141)", "height": 80.0, "perc": 17.4}, {"color": "rgb(33, 155, 136)", "height": 0.0, "perc": 0.0}, {"color": "rgb(51, 178, 121)", "height": 40.0, "perc": 8.7}, {"color": "rgb(94, 199, 96)", "height": 40.0, "perc": 8.7}, {"color": "rgb(155, 215, 59)", "height": 0.0, "perc": 0.0}, {"color": "rgb(220, 226, 37)", "height": 40.0, "perc": 8.7}]], "node_id": "cube347_cluster0", "projection_stats": []}, "type": "circle"}, {"color": [[0.3528101663828115]], "id": "", "name": "cube348_cluster0", "size": 3, "tooltip": {"cluster_stats": {"above": [], "below": [], "size": 17}, "custom_tooltips": [27, 86, 283, 317, 374, 673, 689, 690, 698, 707, 727, 732, 740, 754, 758, 1118, 1399], "dist_label": "Member", "histogram": [[{"color": "rgb(70, 18, 100)", "height": 40.0, "perc": 11.8}, {"color": "rgb(68, 51, 125)", "height": 40.0, "perc": 11.8}, {"color": "rgb(58, 80, 138)", "height": 20.0, "perc": 5.9}, {"color": "rgb(46, 107, 141)", "height": 100.0, "perc": 29.4}, {"color": "rgb(36, 131, 141)", "height": 100.0, "perc": 29.4}, {"color": "rgb(33, 155, 136)", "height": 0.0, "perc": 0.0}, {"color": "rgb(51, 178, 121)", "height": 20.0, "perc": 5.9}, {"color": "rgb(94, 199, 96)", "height": 20.0, "perc": 5.9}, {"color": "rgb(155, 215, 59)", "height": 0.0, "perc": 0.0}, {"color": "rgb(220, 226, 37)", "height": 0.0, "perc": 0.0}]], "node_id": "cube348_cluster0", "projection_stats": []}, "type": "circle"}, {"color": [[0.4357089829250186]], "id": "", "name": "cube351_cluster0", "size": 3, "tooltip": {"cluster_stats": {"above": [], "below": [], "size": 15}, "custom_tooltips": [375, 381, 655, 665, 675, 677, 685, 715, 719, 738, 751, 765, 771, 1554, 1612], "dist_label": "Member", "histogram": [[{"color": "rgb(70, 18, 100)", "height": 0.0, "perc": 0.0}, {"color": "rgb(68, 51, 125)", "height": 0.0, "perc": 0.0}, {"color": "rgb(58, 80, 138)", "height": 33.0, "perc": 13.3}, {"color": "rgb(46, 107, 141)", "height": 100.0, "perc": 40.0}, {"color": "rgb(36, 131, 141)", "height": 83.0, "perc": 33.3}, {"color": "rgb(33, 155, 136)", "height": 0.0, "perc": 0.0}, {"color": "rgb(51, 178, 121)", "height": 0.0, "perc": 0.0}, {"color": "rgb(94, 199, 96)", "height": 0.0, "perc": 0.0}, {"color": "rgb(155, 215, 59)", "height": 33.0, "perc": 13.3}, {"color": "rgb(220, 226, 37)", "height": 0.0, "perc": 0.0}]], "node_id": "cube351_cluster0", "projection_stats": []}, "type": "circle"}, {"color": [[0.23295816099268216]], "id": "", "name": "cube361_cluster0", "size": 4, "tooltip": {"cluster_stats": {"above": [], "below": [], "size": 28}, "custom_tooltips": [144, 154, 171, 194, 198, 225, 228, 238, 239, 247, 250, 390, 410, 427, 450, 454, 483, 486, 496, 497, 510, 650, 660, 670, 687, 710, 714, 733], "dist_label": "Member", "histogram": [[{"color": "rgb(70, 18, 100)", "height": 30.0, "perc": 10.7}, {"color": "rgb(68, 51, 125)", "height": 80.0, "perc": 28.6}, {"color": "rgb(58, 80, 138)", "height": 100.0, "perc": 35.7}, {"color": "rgb(46, 107, 141)", "height": 60.0, "perc": 21.4}, {"color": "rgb(36, 131, 141)", "height": 10.0, "perc": 3.6}, {"color": "rgb(33, 155, 136)", "height": 0.0, "perc": 0.0}, {"color": "rgb(51, 178, 121)", "height": 0.0, "perc": 0.0}, {"color": "rgb(94, 199, 96)", "height": 0.0, "perc": 0.0}, {"color": "rgb(155, 215, 59)", "height": 0.0, "perc": 0.0}, {"color": "rgb(220, 226, 37)", "height": 0.0, "perc": 0.0}]], "node_id": "cube361_cluster0", "projection_stats": []}, "type": "circle"}, {"color": [[0.3520786933927246]], "id": "", "name": "cube364_cluster0", "size": 3, "tooltip": {"cluster_stats": {"above": [], "below": [], "size": 18}, "custom_tooltips": [4, 24, 97, 100, 427, 450, 473, 483, 496, 497, 507, 670, 710, 929, 970, 1001, 1767, 1777], "dist_label": "Member", "histogram": [[{"color": "rgb(70, 18, 100)", "height": 57.0, "perc": 22.2}, {"color": "rgb(68, 51, 125)", "height": 0.0, "perc": 0.0}, {"color": "rgb(58, 80, 138)", "height": 100.0, "perc": 38.9}, {"color": "rgb(46, 107, 141)", "height": 29.0, "perc": 11.1}, {"color": "rgb(36, 131, 141)", "height": 0.0, "perc": 0.0}, {"color": "rgb(33, 155, 136)", "height": 43.0, "perc": 16.7}, {"color": "rgb(51, 178, 121)", "height": 0.0, "perc": 0.0}, {"color": "rgb(94, 199, 96)", "height": 0.0, "perc": 0.0}, {"color": "rgb(155, 215, 59)", "height": 0.0, "perc": 0.0}, {"color": "rgb(220, 226, 37)", "height": 29.0, "perc": 11.1}]], "node_id": "cube364_cluster0", "projection_stats": []}, "type": "circle"}, {"color": [[0.568207126948775]], "id": "", "name": "cube369_cluster0", "size": 4, "tooltip": {"cluster_stats": {"above": [], "below": [], "size": 22}, "custom_tooltips": [4, 64, 97, 100, 887, 909, 919, 929, 970, 1001, 1011, 1137, 1198, 1225, 1244, 1278, 1397, 1398, 1408, 1731, 1767, 1777], "dist_label": "Member", "histogram": [[{"color": "rgb(70, 18, 100)", "height": 67.0, "perc": 18.2}, {"color": "rgb(68, 51, 125)", "height": 0.0, "perc": 0.0}, {"color": "rgb(58, 80, 138)", "height": 0.0, "perc": 0.0}, {"color": "rgb(46, 107, 141)", "height": 0.0, "perc": 0.0}, {"color": "rgb(36, 131, 141)", "height": 17.0, "perc": 4.5}, {"color": "rgb(33, 155, 136)", "height": 100.0, "perc": 27.3}, {"color": "rgb(51, 178, 121)", "height": 67.0, "perc": 18.2}, {"color": "rgb(94, 199, 96)", "height": 67.0, "perc": 18.2}, {"color": "rgb(155, 215, 59)", "height": 0.0, "perc": 0.0}, {"color": "rgb(220, 226, 37)", "height": 50.0, "perc": 13.6}]], "node_id": "cube369_cluster0", "projection_stats": []}, "type": "circle"}, {"color": [[0.7039034110889696]], "id": "", "name": "cube370_cluster0", "size": 3, "tooltip": {"cluster_stats": {"above": [], "below": [], "size": 19}, "custom_tooltips": [4, 863, 887, 909, 919, 1001, 1011, 1171, 1198, 1351, 1397, 1398, 1408, 1671, 1735, 1754, 1777, 1778, 1788], "dist_label": "Member", "histogram": [[{"color": "rgb(70, 18, 100)", "height": 17.0, "perc": 5.3}, {"color": "rgb(68, 51, 125)", "height": 0.0, "perc": 0.0}, {"color": "rgb(58, 80, 138)", "height": 0.0, "perc": 0.0}, {"color": "rgb(46, 107, 141)", "height": 0.0, "perc": 0.0}, {"color": "rgb(36, 131, 141)", "height": 33.0, "perc": 10.5}, {"color": "rgb(33, 155, 136)", "height": 67.0, "perc": 21.1}, {"color": "rgb(51, 178, 121)", "height": 33.0, "perc": 10.5}, {"color": "rgb(94, 199, 96)", "height": 67.0, "perc": 21.1}, {"color": "rgb(155, 215, 59)", "height": 0.0, "perc": 0.0}, {"color": "rgb(220, 226, 37)", "height": 100.0, "perc": 31.6}]], "node_id": "cube370_cluster0", "projection_stats": []}, "type": "circle"}, {"color": [[0.4385300668151448]], "id": "", "name": "cube374_cluster0", "size": 3, "tooltip": {"cluster_stats": {"above": [], "below": [], "size": 15}, "custom_tooltips": [68, 87, 110, 121, 356, 1022, 1023, 1033, 1091, 1095, 1114, 1124, 1138, 1151, 1281], "dist_label": "Member", "histogram": [[{"color": "rgb(70, 18, 100)", "height": 67.0, "perc": 26.7}, {"color": "rgb(68, 51, 125)", "height": 17.0, "perc": 6.7}, {"color": "rgb(58, 80, 138)", "height": 0.0, "perc": 0.0}, {"color": "rgb(46, 107, 141)", "height": 0.0, "perc": 0.0}, {"color": "rgb(36, 131, 141)", "height": 0.0, "perc": 0.0}, {"color": "rgb(33, 155, 136)", "height": 50.0, "perc": 20.0}, {"color": "rgb(51, 178, 121)", "height": 100.0, "perc": 40.0}, {"color": "rgb(94, 199, 96)", "height": 17.0, "perc": 6.7}, {"color": "rgb(155, 215, 59)", "height": 0.0, "perc": 0.0}, {"color": "rgb(220, 226, 37)", "height": 0.0, "perc": 0.0}]], "node_id": "cube374_cluster0", "projection_stats": []}, "type": "circle"}, {"color": [[0.5188897137672194]], "id": "", "name": "cube375_cluster0", "size": 4, "tooltip": {"cluster_stats": {"above": [], "below": [], "size": 27}, "custom_tooltips": [68, 110, 111, 260, 270, 320, 343, 356, 946, 1012, 1022, 1023, 1033, 1053, 1091, 1114, 1124, 1127, 1138, 1148, 1151, 1281, 1549, 1559, 1641, 1651, 1661], "dist_label": "Member", "histogram": [[{"color": "rgb(70, 18, 100)", "height": 43.0, "perc": 11.1}, {"color": "rgb(68, 51, 125)", "height": 71.0, "perc": 18.5}, {"color": "rgb(58, 80, 138)", "height": 0.0, "perc": 0.0}, {"color": "rgb(46, 107, 141)", "height": 0.0, "perc": 0.0}, {"color": "rgb(36, 131, 141)", "height": 0.0, "perc": 0.0}, {"color": "rgb(33, 155, 136)", "height": 86.0, "perc": 22.2}, {"color": "rgb(51, 178, 121)", "height": 100.0, "perc": 25.9}, {"color": "rgb(94, 199, 96)", "height": 14.0, "perc": 3.7}, {"color": "rgb(155, 215, 59)", "height": 29.0, "perc": 7.4}, {"color": "rgb(220, 226, 37)", "height": 43.0, "perc": 11.1}]], "node_id": "cube375_cluster0", "projection_stats": []}, "type": "circle"}, {"color": [[0.5277932442464737]], "id": "", "name": "cube376_cluster0", "size": 4, "tooltip": {"cluster_stats": {"above": [], "below": [], "size": 24}, "custom_tooltips": [14, 41, 124, 270, 297, 320, 343, 367, 380, 946, 1127, 1137, 1148, 1161, 1225, 1254, 1268, 1387, 1549, 1641, 1651, 1661, 1708, 1731], "dist_label": "Member", "histogram": [[{"color": "rgb(70, 18, 100)", "height": 50.0, "perc": 12.5}, {"color": "rgb(68, 51, 125)", "height": 67.0, "perc": 16.7}, {"color": "rgb(58, 80, 138)", "height": 33.0, "perc": 8.3}, {"color": "rgb(46, 107, 141)", "height": 0.0, "perc": 0.0}, {"color": "rgb(36, 131, 141)", "height": 0.0, "perc": 0.0}, {"color": "rgb(33, 155, 136)", "height": 17.0, "perc": 4.2}, {"color": "rgb(51, 178, 121)", "height": 100.0, "perc": 25.0}, {"color": "rgb(94, 199, 96)", "height": 33.0, "perc": 8.3}, {"color": "rgb(155, 215, 59)", "height": 17.0, "perc": 4.2}, {"color": "rgb(220, 226, 37)", "height": 83.0, "perc": 20.8}]], "node_id": "cube376_cluster0", "projection_stats": []}, "type": "circle"}, {"color": [[0.6700869657439812]], "id": "", "name": "cube377_cluster0", "size": 4, "tooltip": {"cluster_stats": {"above": [], "below": [], "size": 21}, "custom_tooltips": [64, 297, 353, 817, 887, 1137, 1225, 1244, 1254, 1257, 1268, 1278, 1387, 1397, 1398, 1408, 1681, 1691, 1708, 1731, 1791], "dist_label": "Member", "histogram": [[{"color": "rgb(70, 18, 100)", "height": 17.0, "perc": 4.8}, {"color": "rgb(68, 51, 125)", "height": 33.0, "perc": 9.5}, {"color": "rgb(58, 80, 138)", "height": 0.0, "perc": 0.0}, {"color": "rgb(46, 107, 141)", "height": 0.0, "perc": 0.0}, {"color": "rgb(36, 131, 141)", "height": 33.0, "perc": 9.5}, {"color": "rgb(33, 155, 136)", "height": 0.0, "perc": 0.0}, {"color": "rgb(51, 178, 121)", "height": 83.0, "perc": 23.8}, {"color": "rgb(94, 199, 96)", "height": 100.0, "perc": 28.6}, {"color": "rgb(155, 215, 59)", "height": 0.0, "perc": 0.0}, {"color": "rgb(220, 226, 37)", "height": 83.0, "perc": 23.8}]], "node_id": "cube377_cluster0", "projection_stats": []}, "type": "circle"}, {"color": [[0.6807640166553695]], "id": "", "name": "cube378_cluster0", "size": 4, "tooltip": {"cluster_stats": {"above": [], "below": [], "size": 23}, "custom_tooltips": [353, 366, 817, 863, 876, 887, 900, 1171, 1221, 1257, 1267, 1328, 1351, 1355, 1374, 1397, 1398, 1408, 1411, 1764, 1778, 1788, 1791], "dist_label": "Member", "histogram": [[{"color": "rgb(70, 18, 100)", "height": 0.0, "perc": 0.0}, {"color": "rgb(68, 51, 125)", "height": 11.0, "perc": 4.3}, {"color": "rgb(58, 80, 138)", "height": 11.0, "perc": 4.3}, {"color": "rgb(46, 107, 141)", "height": 0.0, "perc": 0.0}, {"color": "rgb(36, 131, 141)", "height": 44.0, "perc": 17.4}, {"color": "rgb(33, 155, 136)", "height": 11.0, "perc": 4.3}, {"color": "rgb(51, 178, 121)", "height": 33.0, "perc": 13.0}, {"color": "rgb(94, 199, 96)", "height": 100.0, "perc": 39.1}, {"color": "rgb(155, 215, 59)", "height": 0.0, "perc": 0.0}, {"color": "rgb(220, 226, 37)", "height": 44.0, "perc": 17.4}]], "node_id": "cube378_cluster0", "projection_stats": []}, "type": "circle"}, {"color": [[0.49239049740163326]], "id": "", "name": "cube383_cluster0", "size": 4, "tooltip": {"cluster_stats": {"above": [], "below": [], "size": 21}, "custom_tooltips": [68, 110, 111, 260, 270, 280, 320, 324, 343, 356, 377, 1281, 1549, 1559, 1567, 1584, 1607, 1641, 1651, 1652, 1661], "dist_label": "Member", "histogram": [[{"color": "rgb(70, 18, 100)", "height": 43.0, "perc": 14.3}, {"color": "rgb(68, 51, 125)", "height": 100.0, "perc": 33.3}, {"color": "rgb(58, 80, 138)", "height": 14.0, "perc": 4.8}, {"color": "rgb(46, 107, 141)", "height": 0.0, "perc": 0.0}, {"color": "rgb(36, 131, 141)", "height": 0.0, "perc": 0.0}, {"color": "rgb(33, 155, 136)", "height": 0.0, "perc": 0.0}, {"color": "rgb(51, 178, 121)", "height": 0.0, "perc": 0.0}, {"color": "rgb(94, 199, 96)", "height": 14.0, "perc": 4.8}, {"color": "rgb(155, 215, 59)", "height": 71.0, "perc": 23.8}, {"color": "rgb(220, 226, 37)", "height": 57.0, "perc": 19.0}]], "node_id": "cube383_cluster0", "projection_stats": []}, "type": "circle"}, {"color": [[0.5833407572383074]], "id": "", "name": "cube384_cluster0", "size": 4, "tooltip": {"cluster_stats": {"above": [], "below": [], "size": 25}, "custom_tooltips": [270, 280, 297, 320, 324, 343, 367, 377, 580, 627, 840, 1181, 1439, 1456, 1483, 1515, 1525, 1536, 1549, 1584, 1638, 1641, 1651, 1661, 1708], "dist_label": "Member", "histogram": [[{"color": "rgb(70, 18, 100)", "height": 0.0, "perc": 0.0}, {"color": "rgb(68, 51, 125)", "height": 75.0, "perc": 24.0}, {"color": "rgb(58, 80, 138)", "height": 25.0, "perc": 8.0}, {"color": "rgb(46, 107, 141)", "height": 25.0, "perc": 8.0}, {"color": "rgb(36, 131, 141)", "height": 13.0, "perc": 4.0}, {"color": "rgb(33, 155, 136)", "height": 0.0, "perc": 0.0}, {"color": "rgb(51, 178, 121)", "height": 13.0, "perc": 4.0}, {"color": "rgb(94, 199, 96)", "height": 0.0, "perc": 0.0}, {"color": "rgb(155, 215, 59)", "height": 100.0, "perc": 32.0}, {"color": "rgb(220, 226, 37)", "height": 63.0, "perc": 20.0}]], "node_id": "cube384_cluster0", "projection_stats": []}, "type": "circle"}, {"color": [[0.6459075723830734]], "id": "", "name": "cube385_cluster0", "size": 4, "tooltip": {"cluster_stats": {"above": [], "below": [], "size": 20}, "custom_tooltips": [297, 353, 780, 790, 840, 844, 873, 886, 897, 1257, 1439, 1456, 1483, 1502, 1515, 1525, 1536, 1539, 1681, 1708], "dist_label": "Member", "histogram": [[{"color": "rgb(70, 18, 100)", "height": 0.0, "perc": 0.0}, {"color": "rgb(68, 51, 125)", "height": 25.0, "perc": 10.0}, {"color": "rgb(58, 80, 138)", "height": 0.0, "perc": 0.0}, {"color": "rgb(46, 107, 141)", "height": 0.0, "perc": 0.0}, {"color": "rgb(36, 131, 141)", "height": 88.0, "perc": 35.0}, {"color": "rgb(33, 155, 136)", "height": 0.0, "perc": 0.0}, {"color": "rgb(51, 178, 121)", "height": 13.0, "perc": 5.0}, {"color": "rgb(94, 199, 96)", "height": 0.0, "perc": 0.0}, {"color": "rgb(155, 215, 59)", "height": 100.0, "perc": 40.0}, {"color": "rgb(220, 226, 37)", "height": 25.0, "perc": 10.0}]], "node_id": "cube385_cluster0", "projection_stats": []}, "type": "circle"}, {"color": [[0.5378619153674833]], "id": "", "name": "cube391_cluster0", "size": 4, "tooltip": {"cluster_stats": {"above": [], "below": [], "size": 23}, "custom_tooltips": [324, 400, 520, 557, 580, 603, 613, 616, 627, 637, 640, 743, 840, 1181, 1419, 1429, 1439, 1479, 1483, 1512, 1515, 1525, 1536], "dist_label": "Member", "histogram": [[{"color": "rgb(70, 18, 100)", "height": 0.0, "perc": 0.0}, {"color": "rgb(68, 51, 125)", "height": 13.0, "perc": 4.3}, {"color": "rgb(58, 80, 138)", "height": 25.0, "perc": 8.7}, {"color": "rgb(46, 107, 141)", "height": 100.0, "perc": 34.8}, {"color": "rgb(36, 131, 141)", "height": 25.0, "perc": 8.7}, {"color": "rgb(33, 155, 136)", "height": 0.0, "perc": 0.0}, {"color": "rgb(51, 178, 121)", "height": 13.0, "perc": 4.3}, {"color": "rgb(94, 199, 96)", "height": 25.0, "perc": 8.7}, {"color": "rgb(155, 215, 59)", "height": 88.0, "perc": 30.4}, {"color": "rgb(220, 226, 37)", "height": 0.0, "perc": 0.0}]], "node_id": "cube391_cluster0", "projection_stats": []}, "type": "circle"}, {"color": [[0.6066005264223526]], "id": "", "name": "cube392_cluster0", "size": 4, "tooltip": {"cluster_stats": {"above": [], "below": [], "size": 22}, "custom_tooltips": [400, 540, 626, 756, 767, 780, 800, 840, 844, 873, 886, 897, 1429, 1439, 1479, 1483, 1502, 1512, 1515, 1525, 1536, 1539], "dist_label": "Member", "histogram": [[{"color": "rgb(70, 18, 100)", "height": 0.0, "perc": 0.0}, {"color": "rgb(68, 51, 125)", "height": 0.0, "perc": 0.0}, {"color": "rgb(58, 80, 138)", "height": 11.0, "perc": 4.5}, {"color": "rgb(46, 107, 141)", "height": 22.0, "perc": 9.1}, {"color": "rgb(36, 131, 141)", "height": 100.0, "perc": 40.9}, {"color": "rgb(33, 155, 136)", "height": 0.0, "perc": 0.0}, {"color": "rgb(51, 178, 121)", "height": 0.0, "perc": 0.0}, {"color": "rgb(94, 199, 96)", "height": 11.0, "perc": 4.5}, {"color": "rgb(155, 215, 59)", "height": 100.0, "perc": 40.9}, {"color": "rgb(220, 226, 37)", "height": 0.0, "perc": 0.0}]], "node_id": "cube392_cluster0", "projection_stats": []}, "type": "circle"}]};
const colorscale = [[0.0, "rgb(68, 1, 84)"], [0.1, "rgb(72, 35, 116)"], [0.2, "rgb(64, 67, 135)"], [0.3, "rgb(52, 94, 141)"], [0.4, "rgb(41, 120, 142)"], [0.5, "rgb(32, 144, 140)"], [0.6, "rgb(34, 167, 132)"], [0.7, "rgb(68, 190, 112)"], [0.8, "rgb(121, 209, 81)"], [0.9, "rgb(189, 222, 38)"], [1.0, "rgb(253, 231, 36)"]];
const summary = {"color_function_name": ["Row number"], "custom_meta": {"clusterer": "DBSCAN(eps=0.3, min_samples=15)", "n_cubes": 35, "perc_overlap": 0.4, "projection": "TSNE()", "scaler": "MinMaxScaler()"}, "n_edges": 347, "n_nodes": 155, "n_total": 3349, "n_unique": 1624, "node_color_function": ["mean"]};
const summary_histogram = [[[{"color": "rgb(70, 18, 100)", "height": 2.0, "perc": 0.6}, {"color": "rgb(68, 51, 125)", "height": 2.0, "perc": 0.6}, {"color": "rgb(58, 80, 138)", "height": 14.0, "perc": 4.5}, {"color": "rgb(46, 107, 141)", "height": 38.0, "perc": 12.3}, {"color": "rgb(36, 131, 141)", "height": 100.0, "perc": 32.3}, {"color": "rgb(33, 155, 136)", "height": 80.0, "perc": 25.8}, {"color": "rgb(51, 178, 121)", "height": 58.0, "perc": 18.7}, {"color": "rgb(94, 199, 96)", "height": 16.0, "perc": 5.2}, {"color": "rgb(155, 215, 59)", "height": 0.0, "perc": 0.0}, {"color": "rgb(220, 226, 37)", "height": 0.0, "perc": 0.0}]]];
</script>
<div id="header">
<div class="wrap wrap-header">
<div class="">
<!-- toolbar -->
<div class="toolbar-container">
<div id="toolbar" class='wrap'>
<div id="tooltip_control" class="tool_item">
<h3>
<a href="#"><small id="tooltip_tag">[+]</small></a>
Cluster Details
</h3>
</div>
<div id="meta_control" class="tool_item">
<h3>
<a href="#"><small id="meta_tag">[+]</small></a>
Mapper Summary
</h3>
</div>
<div id="help_control" class="tool_item">
<h3>
<a href="#"><small id="helptip_tag">[+]</small></a>
Help
</h3>
</div>
</div>
</div>
<!-- /toolbar -->
<div class='banner'>
<noscript><b>Requires JavaScript (d3.js) for visualizations</b></noscript>
<h1> MNIST_PCA_keplermapper </h1>
</div>
</div>
<div class="wrap-logo">
<img id="logo" class='logo' src="data:image/png;base64, iVBORw0KGgoAAAANSUhEUgAAAFoAAABaCAIAAAC3ytZVAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAACK1SURBVHhevdxXrJVV0wdw9NhfsfdeUVREEJHeFJCmgCg2jEaRmCCWxAtDYrwy8cJojAZRmgUJRZpUAUFBREGQpoK99977+9t71tnss5v7oDgX+13PembNmvnPf2at58j3bdfgP5eaWvlfVn755Zd99tnnxx9//PXXX41/+umn33777Y8//vjzzz/Tgv9Q/gs4tttuu1133XXffffdaaed9t9//++++26XXXb56quvBH/44YefdtppHufNm/fzzz9vv/32DRs23GuvvSBC/9tvv/36668/+OADA2Alc9tStiEcUBDS7rvvfsQRR4jqk08+kXmBpddZmpx55pmDBw9GjfHjxy9fvjy9qJUdd9zxkEMOadSoEXT23HPP995777XXXoNmer0NZJvAAQJpF8wPP/zw0UcfQeGvv/5K7/KkSZMm559/ft++fT/88ENVc+GFF4IsvSsS4B555JGNGzf+/fff8eX111/fFnypSf/7L8lxxx3XrFkzQLz55pucVhESm97VlYj/oIMOQhA1EtE+88wzok0aRYJiUGAZ6U499VR19+WXX1bQ3wr5d+AIVnPxs88+W7t27aefflrZS8F37dq1RYsWxsccc4zwVq9efckllwjvhRdeCJ0K8vnnnwMFOqeccspJJ52EU+VAr6/8UzjUvwwfeuihKmLjxo1VFrYyufjii7VSiOgse++9t5o6+OCDW7ZsuW7dOqEmvYoCAgTUUIBywAEHYKLzKL3bWvlHcOyxxx6KmR/vvvtu9R1OUxw0aNBRRx31xRdfNG3a1CmLU8j16quvnnzyyQwiSIUmUiDOY60HXyDr/MKv9GKrZOvh0CZw/p133qlXq99hhx0GDBjQpk0bXda5e+KJJ/rVaHfeeWe8gAWioZtzF3fSmioEKMrz9NNPZ/+bb77ZappsDRy77bYbtr/99ttSUd+NNU6nCVpppSBQKfoo2us+fqWX8eOPP94dBEeqaZOWwHTIkCFDhw4Fh8djjz0W3fJP9Oql3nDYT9k3b968X79+jjpSPTtUuFUap3uXsu/QoYPJ/fbbT99xNqOJruGEBpC7mX68Zs2aWFgsoETPc84559Zbb73lllt69+6tBpUMI7fddhtrMNWPknbVsn363+oE8LZR88gpFfPnz3/66aefeOKJyy67zLECqaRXSjRd8btTiQQcMo/YoFH5IhG8yyiMQllzHTZsWI8ePeIxJxYedthhAwcOHDly5LRp08aOHXvuueceeOCB2PTcc885pOgoPTYZ7NixI2RjYZVSD3bAgvVXXnnFb69evdavXw8CLRBAcg6Rnj174q043TJJWlYrXbp0USlqRKiaDnSEARog4pdLBHoDyLzcUvCW5vvvv689xUHubL7mmmtuv/129HQGWUKZJlFZgJYkjWPy5MkQYY1ZaqCpvqKrhUOzwENYGHOuW7duDvzp06fbTwwcEpi8tW7d+qKLLoKLahIM4OSTZw5R83qktSbfeuutuEopEz1V++S0+L1y0XIfY1BIEuDcYdlFXkVcfvnl7du3N8OT8Couu9a6gxiwb/mMGTMifsY//vjjPn36ALTKi0lVcGh4wtiwYUM8yuell176/fff88zpCBfexysCHYEppfPOO69///6dOnVq27atNDo1vMIaMLksXHnllWoblVhGbBBs2rTp6KOP9ovzmYxnxQw43NCCSuybjI1CMMJdFrjsKxnLlXDuVGIfFnJmi2oQ+Xs4xAyOl156KT1nTxZlKULba6W2kV6JigBCqPmlieQaZLwVs5CQRckIgGXIAshB88YbbyCgLzRmKesmYcEjfnlri5jJeFArHp999lnUsxEj8FUsDmmMSxrZ2xos0NblKNhUQf6m0+A/xhZfnFGDE5ym4C1OFjiak82bNzv23K94zFcz3JJS1zDntEnuahaaDk1cQHhNMd9vmn6dGvGYL25r8IVXw4YN2eGPcwrd0utagbiPAIik5/JSCQ47oeiLL76YnmsF58VjECHJ+bhx4/ITEiIk8atkjMUFBwdegAaTlY+EI46jxOlLGaXjniowxnPgxkAnUgJyEJOEca1h6dKlbujmuWovPQXvuJeU8sTVOaomPZeRsnDw44wzztAaIvJ80fBsaXs3MX7gs66urabXebJ48WL9X2MTPDWVBQsN3yq0shzcggETDip7NPH2hBNOwKBkIiuccXixFqyJ31WrVrVr144bOGULsOIFQIvZEaJhQZByei4lZeHgn/5fnHMCDk6IRGwS4lcXAH8Bj5YtW8ZjkXgbKCCIeSgbqGflZhWG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">
</div>
</div>
</div>
<div id="canvas" class='canvas'>
<!-- Graph will go in here -->
<svg id='svg'>
<defs>
<filter id="drop-shadow-glow" filterUnits="userSpaceOnUse" width="250%" height="250%">
<feGaussianBlur in="SourceGraphic" stdDeviation="12" result="blur-out"/>
<feColorMatrix in="blur-out" type="hueRotate" values="0" result="color-out"/>
<feOffset in="color-out" dx="0" dy="0" result="the-shadow"/>
<feComponentTransfer type="linear" slope="0.2" result="shadow-opacity"/>
<feBlend in="SourceGraphic" in2="the-shadow" mode="normal"/>
</filter>
<filter id="drop-shadow-pulse" filterUnits="userSpaceOnUse" width="250%" height="250%">
<feGaussianBlur in="SourceGraphic" stdDeviation="12" result="blur-out">
<animate attributeName="stdDeviation" from="0" to="100" dur="1.5s" repeatCount="indefinite" />
</feGaussianBlur>
<feColorMatrix in="blur-out" type="hueRotate" values="0" result="color-out"/>
<feOffset in="color-out" dx="0" dy="0" result="the-shadow"/>
<feComponentTransfer type="linear" slope="0.2" result="shadow-opacity"/>
<feBlend in="SourceGraphic" in2="the-shadow" mode="normal"/>
</filter>
</defs>
</svg>
<!-- Panes for each of the tips -->
<div id="tooltip" class='pane pane-left'>
<div id="tooltip_content" class="pane_content">
<div id='tooltip_content_no_focus_node'>
Hover over a node to see attributes about it.
</div>
<div id='tooltip_content_focus_node' style='display:none'>
<div>
<div class='actions'>
<h3>Actions</h3>
<p>
<button class='btn center-on-node'>Center viewport on node</button>
</p>
</div>
<div class='details'>
<h2>Cluster Details <span style="font-size:0.7em">(node id: <span class='node_id'></span>)</span></h2>
<!-- histogram -->
<div class='histogram-wrapper'>
<hr><br/>
<h3><span class='distribution_label'></span> Distribution</h3>
<div class="histogram"></div>
<br><br>
</div>
<!-- /histogram -->
<!-- Projection Statistics -->
<div class='projection_stats' style='display:none'>
<hr><br/>
<h3>Projection Statistics</h3>
<table>
<thead>
<tr>
<th>Lens</th>
<th style="width:50px;"><small>Mean</small></th>
<th style="width:50px;"><small>Max</small></th>
<th style="width:50px;"><small>Min</small></th>
</tr>
</thead>
<tbody></tbody>
</table>
</div>
<!-- Cluster Statistics -->
<div class='cluster_stats'>
<hr><br/>
<h3>Cluster Statistics</h3>
<div class='above-wrapper'>
<h3>Above Average</h3>
<table>
<thead>
<tr>
<th>Feature</th>
<th style="width:50px;"><small>Mean</small></th>
<th style="width:50px;"><small>STD</small></th>
</tr>
</thead>
<tbody></tbody>
</table>
</div>
<div class='below-wrapper'>
<h3>Below Average</h3>
<table>
<thead>
<tr>
<th>Feature</th>
<th style="width:50px;"><small>Mean</small></th>
<th style="width:50px;"><small>STD</small></th>
</tr>
</thead>
<tbody></tbody>
</table>
</div>
<h3>Size</h3>
<p class='cluster-size'></p>
</div>
<!-- Membership information -->
<div class='membership-information'>
<hr> <br/>
<h3>Members</h3>
<div class='list-of-members'></div>
<br><br>
<hr><br>
</div>
<!-- /membership information -->
</div>
</div>
</div>
</div>
</div>
<div id="helptip" class='pane pane-right'>
<div id="helptip_content" class="pane_content">
<!-- Help pane.
TODO: Add more information here. -->
<ul>
<li>Click on a node to lock focus on that node. The node with the current focus will pulse. Click off of a node to release the lock.</li>
<li>Dragging a node will fix its position on the screen. Double-click a fixed-position node to unfreeze it.</li>
</ul>
<table>
<tr>
<th>Key</th>
<th><small>Action</small></th>
</tr>
<tr>
<td>s</td>
<td><small>Nodes glow :D</small></td>
</tr>
<tr>
<td>c</td>
<td><small>remove glow</small></td>
</tr>
<tr>
<td>p</td>
<td><small>Print mode - white backgrounds</small></td>
</tr>
<tr>
<td>d</td>
<td><small>Display mode - black backgrounds</small></td>
</tr>
<tr>
<td>z</td>
<td><small>Turn off gravity</small></td>
</tr>
<tr>
<td>m</td>
<td><small>Spacious layout</small></td>
</tr>
<tr>
<td>e</td>
<td><small>Tight layout</small></td>
</tr>
<tr>
<td>f</td>
<td><small>Freeze layout</small></td>
</tr>
<tr>
<td>x</td>
<td><small>Unfreeze all nodes</small></td>
</tr>
</table>
<div class="control-wrapper">
<div class="control-row">
<button class='btn' type="button" id="download-config" name="download-config">Save config</button>
</div>
<div class="control-row">
<label for="config-file-loader">Load config file</label>
<input type="file" id="config-file-loader" name="config-file-loader" accept="application/json">
<button class='btn' id='load-config' disabled>Load</button>
</div>
</div>
</div>
</div>
<div id="meta" class='pane pane-right'>
<div id="meta_content" class="pane_content">
<h2>Mapper Summary</h2>
<hr><br>
<h3>projection </h3> <p> TSNE()</p>
<h3>n_cubes </h3> <p> 35</p>
<h3>perc_overlap </h3> <p> 0.4</p>
<h3>clusterer </h3> <p> DBSCAN(eps=0.3, min_samples=15)</p>
<h3>scaler </h3> <p> MinMaxScaler()</p>
<h3>Nodes</h3><p> 155 </p>
<h3>Edges</h3><p> 347 </p>
<h3>Total Samples</h3><p> 3349</p>
<h3>Unique Samples</h3><p> 1624</p>
<h3>Color function</h3><p>
Row number
</p>
<h3>Node Color Function</h3><p> mean</p>
<!-- histogram -->
<hr><br/>
<h3>Node Distribution</h3>
<div class="histogram"></div>
<br><br>
<!-- /histogram -->
<hr><br>
</div>
</div>
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/d3/6.1.1/d3.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/FileSaver.min.js"></script>
<script>// Height and width settings
var page_height = window.innerHeight - 5;
var header_height = document.getElementById('header').offsetHeight;
var canvas_height = page_height - header_height;
document.getElementById("canvas").style.height = canvas_height + "px";
var width = document.getElementById("canvas").offsetWidth;
var height = document.getElementById("canvas").offsetHeight;
var w = width;
var h = height;
var padding = 40;
var focus_node_id = null;
var focus_node = null;
var text_center = false;
var outline = false;
// Size for zooming
var size = d3.scalePow().exponent(1)
.domain([1,100])
.range([8,24]);
// Variety of variable inits
var default_node_color = "#ccc";
var default_node_color = "rgba(160,160,160, 0.5)";
var default_link_color = "rgba(160,160,160, 0.5)";
var nominal_base_node_size = 8;
var nominal_text_size = 15;
var max_text_size = 24;
var nominal_stroke = 1.0;
var max_stroke = 4.5;
var max_base_node_size = 36;
var min_zoom = 0.1;
var max_zoom = 7;
var zoom;
var svg, g;
var simulation;
var link, node;
var drag;
var dragging = false;
var circle;
var text;
var focus_via_click = false;
var nodes = [];
var links = [];
var tocolor = "fill";
var towhite = "stroke";
if (outline) {
tocolor = "stroke";
towhite = "fill";
}
/**
* Side panes
*/
// Show/Hide Functionality
function toggle_pane(content, content_id, tag) {
var active = content.active ? false : true;
if (active) {
content_id.style("display", "block");
tag.node().textContent = "[-]";
} else {
content_id.style("display", "none");
tag.node().textContent = "[+]";
}
// TODO: This is probably not the best way to find the correct height.
var h = canvas_height - content.offsetTop - padding;
content_id.style("height", h + "px")
content.active = active;
}
d3.select("#tooltip_control").on("click", function(e) {
toggle_pane(tooltip_content,
d3.select("#tooltip_content"),
d3.select("#tooltip_tag"))
});
d3.select("#meta_control").on("click", function(e) {
toggle_pane(meta_content,
d3.select("#meta_content"),
d3.select("#meta_tag"))
});
d3.select("#help_control").on("click", function(e) {
toggle_pane(helptip_content,
d3.select("#helptip_content"),
d3.select("#helptip_tag"))
});
d3.select('#select-color-function').on('input', function(e){
color_function_index = parseInt(e.target.value);
update_color_functions()
})
d3.select('#select-node-color-function').on('input', function(e){
node_color_function_index = parseInt(e.target.value);
update_color_functions()
})
/**
*
* Set up color scale
*
*
*/
// var colorscale defined in base.html
var domain = colorscale.map((x)=>x[0])
var palette = colorscale.map((x)=>x[1])
var color = d3.scaleLinear()
.domain(domain)
.range(palette);
/*
* one-time setups, like SVG and force init
*/
function init() {
zoom = d3.zoom()
.scaleExtent([min_zoom, max_zoom])
.on('zoom', zoomed)
// We draw the graph in SVG
svg = d3.select("#canvas svg")
.attr("width", width)
.attr("height", height)
.style("cursor","move")
.call(zoom)
.on('dblclick.zoom', null); // prevent default zoom-in on dblclick
svg.on('click.focus', function(e){
set_focus_via_click(null);
});
g = svg.append("g")
link = g.selectAll(".link")
node = g.selectAll(".node")
text = g.selectAll(".text")
simulation = d3.forceSimulation()
.force('charge', d3.forceManyBody().strength(-1200))
.force('center', d3.forceCenter(width / 2, height / 2))
.force('link', d3.forceLink().distance(5))
.force('x', d3.forceX()) // not sure what this does...
.force('y', d3.forceY())
.on('tick', ticked)
drag = d3.drag()
.on("start", function(e, d){
svg.style('cursor','grabbing');
if (!e.active) {
simulation.alphaTarget(0.3).restart()
}
d.fx = d.x
d.fy = d.y
dragging = true;
})
.on('drag', function(e, d){
d.fx = e.x
d.fy = e.y
})
.on('end', function(e, d){
if (!e.active) {
simulation.alphaTarget(0)
}
dragging = false;
});
resize();
d3.select(window).on("resize", resize);
d3.select(window).on("mouseup.focus", function(e){
if (focus_node == null) {
set_cursor('move');
} else {
set_cursor('pointer');
}
});
}
function set_histogram(selection, data){
selection.selectAll('.bin')
.data(data)
.join(
enter => enter.append('div')
.attr('class', 'bin')
.call(enter => enter.append('div')
.text(d => d.perc + '%'))
,
update => update
.call(update => update.select('div')
.text(d => d.perc + '%'))
)
.style('height', (d) => (d.height || 1) + 'px')
.style('background', (d) => d.color);
}
var color_function_index = 0;
var node_color_function_index = 0;
function reset_color_functions(){
color_function_index = 0;
node_color_function_index = 0;
update_color_functions()
}
function update_color_functions(){
// update_meta_content_histogram
set_histogram(d3.select('#meta_content .histogram'), summary_histogram[node_color_function_index][color_function_index])
// update node colors
node.style(tocolor, function(d) {
return color(d.color[node_color_function_index][color_function_index]);
})
// update focus node display, if focus_node
if (focus_node != null){
set_focus_node_histogram(focus_node)
}
}
function update_meta_content_histogram(){
}
function draw_circle_size(d) {
return (d3.symbol()
.size(function(d) {
if (!d.size_modifier) {
d.size_modifier = 1;
}
return d.size * 50 * d.size_modifier;
})
.type(d3.symbolCircle))(d)
}
function start() {
/*
* Force-related things
*
*/
// shallow copy to enable restarting,
// because otherwise, starting the force simulation mutates the links (replaces indeces with refs)
nodes = graph.nodes.map(n => Object.assign({}, n));
links = graph.links.map(l => Object.assign({}, l));
// draw links first so that they appear behind nodes
link = link
.data(links)
.join("line")
.attr("class", "link")
.style("stroke-width", function(d) { return d.w * nominal_stroke; })
.style("stroke-width", function(d) { return d.w * nominal_stroke; });
node = node
.data(nodes, d => d.name)
.join(enter => enter.append("g")
.attr("class", "node")
.attr("id", function(d){ return "node-" + d.name })
// append circles...
.append("path")
.attr("d", draw_circle_size )
.attr("class", "circle")
.on("mouseover.focus", node_mouseover)
.on("mouseout.focus", node_mouseout)
.on('mousedown.focus', node_mousedown)
.on("dblclick.freeze", (e, d) => unfreeze_node(d) )
.on('click.zoom', node_click)
.on('center_viewport', center_on_node)
.call(drag));
simulation.nodes(nodes);
simulation.force('link').links(links);
simulation.alpha(1).restart()
reset_color_functions()
}
init();
start();
function restart() {
// nodes = []
// links = []
// node.remove()
// link.remove()
focus_via_click = false;
start()
}
function zoomed({transform}){
g.attr('transform', transform)
}
function ticked() {
node.attr("transform", function(d) { return "translate(" + d.x + "," + d.y + ")"; })
.attr("cx", function(d) { return d.x; })
.attr("cy", function(d) { return d.y; })
link.attr("x1", function(d) { return d.source.x; })
.attr("y1", function(d) { return d.source.y; })
.attr("x2", function(d) { return d.target.x; })
.attr("y2", function(d) { return d.target.y; });
}
/*
* Resizing window and redraws
*/
function resize() {
var width = document.getElementById("canvas").offsetWidth;
var height = document.getElementById("canvas").offsetHeight;
svg.attr("width", width)