-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathscival_collaboration_map.html
More file actions
2121 lines (1041 loc) · 245 KB
/
scival_collaboration_map.html
File metadata and controls
2121 lines (1041 loc) · 245 KB
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 http-equiv="content-type" content="text/html; charset=UTF-8" />
<script>
L_NO_TOUCH = false;
L_DISABLE_3D = false;
</script>
<style>html, body {width: 100%;height: 100%;margin: 0;padding: 0;}</style>
<style>#map {position:absolute;top:0;bottom:0;right:0;left:0;}</style>
<script src="https://cdn.jsdelivr.net/npm/leaflet@1.9.3/dist/leaflet.js"></script>
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/js/bootstrap.bundle.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.js"></script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/leaflet@1.9.3/dist/leaflet.css"/>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/css/bootstrap.min.css"/>
<link rel="stylesheet" href="https://netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap-glyphicons.css"/>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@6.2.0/css/all.min.css"/>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.css"/>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/python-visualization/folium/folium/templates/leaflet.awesome.rotate.min.css"/>
<meta name="viewport" content="width=device-width,
initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<style>
#map_a09e832e68650bb45a643111fa87596d {
position: relative;
width: 100.0%;
height: 100.0%;
left: 0.0%;
top: 0.0%;
}
.leaflet-container { font-size: 1rem; }
</style>
</head>
<body>
<div class="folium-map" id="map_a09e832e68650bb45a643111fa87596d" ></div>
</body>
<script>
var map_a09e832e68650bb45a643111fa87596d = L.map(
"map_a09e832e68650bb45a643111fa87596d",
{
center: [-27.4975, 153.0137],
crs: L.CRS.EPSG3857,
maxBounds: [[-90, -180], [90, 180]],
zoom: 2,
zoomControl: true,
preferCanvas: false,
worldCopyJump: false,
noWrap: true,
}
);
var tile_layer_0414d0209d6ccc30acc2fd6a79cb2087 = L.tileLayer(
"https://tile.openstreetmap.org/{z}/{x}/{y}.png",
{"attribution": "\u0026copy; \u003ca href=\"https://www.openstreetmap.org/copyright\"\u003eOpenStreetMap\u003c/a\u003e contributors", "detectRetina": false, "maxNativeZoom": 19, "maxZoom": 19, "minZoom": 0, "noWrap": false, "opacity": 1, "subdomains": "abc", "tms": false}
);
tile_layer_0414d0209d6ccc30acc2fd6a79cb2087.addTo(map_a09e832e68650bb45a643111fa87596d);
var circle_marker_7a088239f73794b41259c423f590bb27 = L.circleMarker(
[-27.4975, 153.0137],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "black", "fillOpacity": 0.9, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 3}
).addTo(map_a09e832e68650bb45a643111fa87596d);
var popup_ea1c64f7ab94e55a6c5f6091a08cb427 = L.popup({"maxWidth": "100%"});
var html_46845cf583b82c5d96ab17db3b478bce = $(`<div id="html_46845cf583b82c5d96ab17db3b478bce" style="width: 100.0%; height: 100.0%;">You</div>`)[0];
popup_ea1c64f7ab94e55a6c5f6091a08cb427.setContent(html_46845cf583b82c5d96ab17db3b478bce);
circle_marker_7a088239f73794b41259c423f590bb27.bindPopup(popup_ea1c64f7ab94e55a6c5f6091a08cb427)
;
var circle_marker_001b6d12243023f0b52ec1cb9afcb66e = L.circleMarker(
[52.2109456, 0.092005],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 14.0, "stroke": true, "weight": 3}
).addTo(map_a09e832e68650bb45a643111fa87596d);
var popup_7ca98ad1f45f7078588d430bcd48a7d1 = L.popup({"maxWidth": "100%"});
var html_e4240623a1b39073282bfee741bd02c4 = $(`<div id="html_e4240623a1b39073282bfee741bd02c4" style="width: 100.0%; height: 100.0%;">University of Cambridge (United Kingdom) - 33 papers</div>`)[0];
popup_7ca98ad1f45f7078588d430bcd48a7d1.setContent(html_e4240623a1b39073282bfee741bd02c4);
circle_marker_001b6d12243023f0b52ec1cb9afcb66e.bindPopup(popup_7ca98ad1f45f7078588d430bcd48a7d1)
;
var poly_line_38ef5c49da8dc89c0161d0c07dce9a76 = L.polyline(
[[-27.497500000000002, 153.01369999999997], [-24.919275986191717, 151.25602953141117], [-22.32129556438622, 149.570653525662], [-19.70653626562259, 147.94711046874022], [-17.07764409648677, 146.3759587614279], [-14.436995004077145, 144.8486061750375], [-11.786746986604875, 143.35715847927554], [-9.128884793071787, 141.89428449908291], [-6.465258840227655, 140.45309477154467], [-3.7976197226414614, 139.02703103962938], [-1.1276494967285797, 137.60976394537772], [1.543009224115089, 136.19509641787147], [4.212725423868949, 134.7768703605018], [6.879852204166215, 133.34887431121888], [9.542698803279745, 131.90474977063207], [12.199501224198315, 130.43789386391177], [14.848390520023626, 128.9413559263595], [17.487357680327356, 127.40772548830955], [20.114213910816805, 125.8290090009341], [22.72654489514563, 124.1964925237719], [25.321657365879446, 122.50058754547194], [27.896515986264177, 120.73065723029276], [30.44766815402281, 118.87482083953626], [32.971153890399336, 116.91973514016343], [35.46239749814042, 114.85035371833612], [37.91607722256418, 112.64966895100656], [40.32596885588931, 110.29844801038826], [42.68475932313516, 107.77498525101225], [44.98382719869239, 105.05491085952326], [47.212989535713206, 102.1111225618572], [49.360219475603785, 98.91394650707514], [51.41134850600735, 95.4316869735303], [53.349783114929636, 91.6317893689112], [55.15629011419059, 87.48290268074413], [56.808938738931424, 82.9581492226913], [58.28332667082373, 78.0398204097205], [59.553247354993886, 72.72541441008639], [60.591948708177604, 67.03432506409445], [61.37404849958073, 61.013626302923285], [61.87798100070736, 54.74062051773376], [62.08858167195354, 48.31981398905236], [61.999192628016615, 41.87336783028775], [61.612663694627244, 35.52663856139702], [60.94091814508486, 29.39277671789307], [60.00322918994574, 23.56083674524473], [58.823747955832324, 18.090096535677844], [57.42893807075711, 13.010587071181021], [55.845415795470124, 8.32787349390071], [54.09842495091649, 4.0296171147967925], [52.2109456, 0.09200499999997191]],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "black", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 0.5, "smoothFactor": 1.0, "stroke": true, "weight": 7.6}
).addTo(map_a09e832e68650bb45a643111fa87596d);
var circle_marker_17d9a3fdaaf33f6f609f1864bc0fa348 = L.circleMarker(
[51.5255433, -0.1348864],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 13.666666666666666, "stroke": true, "weight": 3}
).addTo(map_a09e832e68650bb45a643111fa87596d);
var popup_d8abdfffa3a99f2046abca8b35223034 = L.popup({"maxWidth": "100%"});
var html_283ad9ce166ac8cbb874d2557493605e = $(`<div id="html_283ad9ce166ac8cbb874d2557493605e" style="width: 100.0%; height: 100.0%;">Wellcome Trust (United Kingdom) - 32 papers</div>`)[0];
popup_d8abdfffa3a99f2046abca8b35223034.setContent(html_283ad9ce166ac8cbb874d2557493605e);
circle_marker_17d9a3fdaaf33f6f609f1864bc0fa348.bindPopup(popup_d8abdfffa3a99f2046abca8b35223034)
;
var poly_line_a33a29ef7c8ef8cd5a3cbf129a7a8bc3 = L.polyline(
[[-27.497500000000002, 153.01369999999997], [-24.932645020688554, 151.20835055666282], [-22.346935228203456, 149.47693948035237], [-19.743499227776724, 147.80884624362102], [-17.12511964857172, 146.19446794972214], [-14.49429670611563, 144.62505250018125], [-11.853302255692842, 143.09254936849163], [-9.204226273336575, 141.5894757492963], [-6.549017401610598, 140.1087956127186], [-3.889518953555256, 138.6438091521236], [-1.227501577360717, 137.18805016647502], [1.4353063577433385, 135.73518900300132], [4.097189691497783, 134.27893876539622], [6.756417812181735, 132.81296254663448], [9.411215517017244, 131.33077946342644], [12.059732484075072, 129.82566724840137], [14.70001038669474, 128.29055909976796], [17.329946580492287, 126.71793240739589], [19.947253147313425, 125.09968689059667], [22.54940988568579, 123.42700963469088], [25.13360958922247, 121.69022456588152], [27.69669365064105, 119.87862416522455], [30.2350756723018, 117.98028186896579], [32.7446503681089, 115.98184491698589], [35.22068464121068, 113.86830983865661], [37.657687390925965, 111.62278699179558], [40.04925448218173, 109.22626762216089], [42.387885656420835, 106.65741826343708], [44.66477141118833, 103.89244493926128], [46.869550737655764, 100.90509594996297], [48.990046170511036, 97.66690924458271], [51.01199240118888, 94.1478589475173], [52.918790577426016, 90.31761074019096], [54.69134391628581, 86.14764113264619], [56.30806109287515, 81.61447422661877], [57.74514682900141, 76.70417635565059], [58.977319800254676, 71.41793875059068], [59.979079949566334, 65.77801374555816], [60.72655742464577, 59.832528939852864], [61.19979629992274, 53.657123666157645], [61.385093860926396, 47.35150650464425], [61.27684105620054, 41.03035958631381], [60.87833192618612, 34.810217238656946], [60.20128427292169, 28.795821103033518], [59.2642258646472, 23.06971298900328], [58.090229077584084, 17.68727950328457], [56.70456645759646, 12.677204503814892], [55.13272400378303, 8.045658243984235], [53.39897820803162, 3.782111988622887], [51.525543299999995, -0.1348864000000276]],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "black", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 0.5, "smoothFactor": 1.0, "stroke": true, "weight": 7.4}
).addTo(map_a09e832e68650bb45a643111fa87596d);
var circle_marker_cd91a1212b6d07af28c2fc2f968a5653 = L.circleMarker(
[52.0794238, 0.1849843],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 13.666666666666666, "stroke": true, "weight": 3}
).addTo(map_a09e832e68650bb45a643111fa87596d);
var popup_5bdead38eb6e459f07b7935500961d84 = L.popup({"maxWidth": "100%"});
var html_2dc303b4498f24b2789a47da2a89d728 = $(`<div id="html_2dc303b4498f24b2789a47da2a89d728" style="width: 100.0%; height: 100.0%;">Wellcome Sanger Institute (United Kingdom) - 32 papers</div>`)[0];
popup_5bdead38eb6e459f07b7935500961d84.setContent(html_2dc303b4498f24b2789a47da2a89d728);
circle_marker_cd91a1212b6d07af28c2fc2f968a5653.bindPopup(popup_5bdead38eb6e459f07b7935500961d84)
;
var poly_line_60d51a276bd9cfdde6c0df247b16ecfc = L.polyline(
[[-27.497500000000002, 153.01369999999997], [-24.9256625598777, 151.24261919281196], [-22.333760529437843, 149.5442329710561], [-19.724811006992216, 147.9080549832787], [-17.101496096369065, 146.32461508535255], [-14.466224788396628, 144.78529058967422], [-11.821185479978366, 143.2821561187625], [-9.16839106238571, 141.80784949393035], [-6.509718201709173, 140.3554509564235], [-3.846942185969821, 138.91837305036847], [-1.1817685206234914, 137.4902585993841], [1.4841376883910864, 136.06488432588708], [4.149123622295845, 134.6360677617555], [6.81152102205633, 133.19757516343066], [9.469617977127065, 131.7430281650768], [12.121629340245814, 130.2658068776759], [14.765664817606101, 128.7589470729614], [17.399693681440496, 127.21502898835763], [20.02150490404281, 125.62605517163115], [22.628661313446763, 123.98331468606409], [25.218446115899855, 122.27723097808064], [27.787799814586, 120.49719086973118], [30.33324517746952, 118.63135264448226], [32.850797478783555, 116.6664323168585], [35.33585678676478, 114.58746934689907], [37.7830786587606, 112.37757695576897], [40.18621936186495, 110.01768885080924], [42.53795190062731, 107.48632509291645], [44.82965012115286, 104.75941714316173], [47.051140670997036, 101.81025846963973], [49.190427725680685, 98.60968523605595], [51.233404743228604, 95.12664294134834], [53.16358311725421, 91.32935611772609], [54.96189143956789, 87.18737473677777], [56.60663157334108, 82.67478683042589], [58.07371462378665, 77.77479438959085], [59.337327436909426, 72.48555273204352], [60.371171063747994, 66.82659201384001], [61.15032924921939, 60.844323199854216], [61.65364203037658, 54.61441260555978], [61.86620564611054, 48.23882445067045], [61.78140942933554, 41.83664710771245], [61.40191385508465, 35.53023026171127], [60.73925136733197, 29.430375346541723], [59.81218231936139, 23.62480193353076], [58.644315491080775, 18.172496265874543], [57.261618564032155, 13.104015592069118], [55.69030275154289, 8.425941480332426], [53.955311801701136, 4.12714092757119], [52.079423799999994, 0.18498429999999644]],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "black", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 0.5, "smoothFactor": 1.0, "stroke": true, "weight": 7.4}
).addTo(map_a09e832e68650bb45a643111fa87596d);
var circle_marker_0d7f85a7ce9407307d98b5831f981563 = L.circleMarker(
[-27.4981424, 153.0111536],
{"bubblingMouseEvents": true, "color": "cyan", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "cyan", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10.333333333333332, "stroke": true, "weight": 3}
).addTo(map_a09e832e68650bb45a643111fa87596d);
var popup_e4f514cab65aa9438daeb7db4479e0d3 = L.popup({"maxWidth": "100%"});
var html_c87fa1529db3ca3317ab2ce6edbe89fc = $(`<div id="html_c87fa1529db3ca3317ab2ce6edbe89fc" style="width: 100.0%; height: 100.0%;">University of Queensland (Australia) - 22 papers</div>`)[0];
popup_e4f514cab65aa9438daeb7db4479e0d3.setContent(html_c87fa1529db3ca3317ab2ce6edbe89fc);
circle_marker_0d7f85a7ce9407307d98b5831f981563.bindPopup(popup_e4f514cab65aa9438daeb7db4479e0d3)
;
var poly_line_692879dc2361d835e5acf7806861d460 = L.polyline(
[[-27.497500000000002, 153.01369999999997], [-27.497513110667377, 153.0136480329502], [-27.49752622131545, 153.0135960658879], [-27.49753933194422, 153.01354409881333], [-27.497552442553687, 153.01349213172637], [-27.49756555314385, 153.013440164627], [-27.497578663714705, 153.01338819751527], [-27.49759177426626, 153.01333623039113], [-27.497604884798516, 153.0132842632546], [-27.497617995311458, 153.0132322961058], [-27.4976311058051, 153.0131803289445], [-27.497644216279447, 153.0131283617709], [-27.49765732673448, 153.0130763945849], [-27.497670437170207, 153.01302442738643], [-27.49768354758664, 153.01297246017566], [-27.497696657983763, 153.01292049295262], [-27.49770976836158, 153.01286852571707], [-27.497722878720097, 153.01281655846913], [-27.497735989059308, 153.0127645912088], [-27.497749099379213, 153.01271262393618], [-27.497762209679816, 153.01266065665118], [-27.497775319961114, 153.01260868935367], [-27.497788430223114, 153.01255672204388], [-27.497801540465804, 153.0125047547217], [-27.497814650689193, 153.01245278738713], [-27.497827760893276, 153.01240082004028], [-27.497840871078058, 153.01234885268093], [-27.497853981243534, 153.01229688530918], [-27.4978670913897, 153.01224491792516], [-27.497880201516566, 153.01219295052863], [-27.49789331162413, 153.01214098311982], [-27.497906421712386, 153.01208901569862], [-27.497919531781346, 153.01203704826503], [-27.497932641830992, 153.01198508081904], [-27.49794575186133, 153.01193311336067], [-27.49795886187238, 153.0118811458899], [-27.497971971864118, 153.01182917840686], [-27.49798508183655, 153.01177721091142], [-27.497998191789677, 153.0117252434036], [-27.4980113017235, 153.01167327588325], [-27.498024411638017, 153.01162130835064], [-27.49803752153324, 153.01156934080564], [-27.498050631409143, 153.01151737324824], [-27.498063741265753, 153.01146540567845], [-27.498076851103058, 153.01141343809638], [-27.49808996092105, 153.01136147050192], [-27.498103070719747, 153.01130950289496], [-27.498116180499135, 153.01125753527572], [-27.49812929025922, 153.01120556764408], [-27.4981424, 153.01115359999994]],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "black", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 0.5, "smoothFactor": 1.0, "stroke": true, "weight": 5.4}
).addTo(map_a09e832e68650bb45a643111fa87596d);
var circle_marker_abe3e63cea790b06b2039e1ef0bcbd4e = L.circleMarker(
[-27.4451858, 153.0286726],
{"bubblingMouseEvents": true, "color": "cyan", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "cyan", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 6.666666666666666, "stroke": true, "weight": 3}
).addTo(map_a09e832e68650bb45a643111fa87596d);
var popup_ca2ce800b172b652c23129f72406b5a8 = L.popup({"maxWidth": "100%"});
var html_62267b3774a980d3d31ad6362b5856da = $(`<div id="html_62267b3774a980d3d31ad6362b5856da" style="width: 100.0%; height: 100.0%;">Queensland Health (Australia) - 11 papers</div>`)[0];
popup_ca2ce800b172b652c23129f72406b5a8.setContent(html_62267b3774a980d3d31ad6362b5856da);
circle_marker_abe3e63cea790b06b2039e1ef0bcbd4e.bindPopup(popup_ca2ce800b172b652c23129f72406b5a8)
;
var poly_line_e18064a490a95fb0ac6926ba375a5003 = L.polyline(
[[-27.497500000000002, 153.01369999999997], [-27.49643237928085, 153.01400570543535], [-27.495364757893707, 153.01431140494105], [-27.494297135838615, 153.0146170985173], [-27.493229513115615, 153.01492278616468], [-27.492161889724752, 153.0152284678834], [-27.49109426566607, 153.01553414367402], [-27.490026640939615, 153.0158398135368], [-27.48895901554542, 153.01614547747204], [-27.487891389483543, 153.01645113548034], [-27.486823762754025, 153.01675678756192], [-27.48575613535689, 153.01706243371734], [-27.4846885072922, 153.01736807394673], [-27.483620878559996, 153.01767370825064], [-27.48255324916032, 153.0179793366293], [-27.481485619093213, 153.0182849590833], [-27.480417988358713, 153.01859057561285], [-27.47935035695688, 153.0188961862184], [-27.47828272488774, 153.0192017909004], [-27.47721509215135, 153.0195073896591], [-27.476147458747743, 153.01981298249495], [-27.475079824676964, 153.0201185694084], [-27.47401218993906, 153.02042415039966], [-27.472944554534077, 153.0207297254692], [-27.471876918462055, 153.02103529461738], [-27.470809281723028, 153.02134085784462], [-27.469741644317054, 153.02164641515128], [-27.468674006244164, 153.0219519665378], [-27.467606367504413, 153.02225751200444], [-27.466538728097838, 153.02256305155163], [-27.46547108802448, 153.02286858517982], [-27.464403447284383, 153.02317411288925], [-27.4633358058776, 153.02347963468048], [-27.46226816380416, 153.02378515055375], [-27.461200521064114, 153.0240906605095], [-27.460132877657507, 153.02439616454808], [-27.459065233584376, 153.02470166266994], [-27.457997588844773, 153.0250071548753], [-27.456929943438737, 153.02531264116465], [-27.4558622973663, 153.0256181215384], [-27.454794650627527, 153.02592359599703], [-27.453727003222436, 153.02622906454064], [-27.452659355151095, 153.02653452716982], [-27.45159170641353, 153.02683998388477], [-27.450524057009794, 153.0271454346862], [-27.449456406939923, 153.02745087957408], [-27.448388756203972, 153.0277563185491], [-27.44732110480197, 153.0280617516114], [-27.446253452733966, 153.02836717876164], [-27.445185800000004, 153.02867259999994]],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "black", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 0.5, "smoothFactor": 1.0, "stroke": true, "weight": 3.2}
).addTo(map_a09e832e68650bb45a643111fa87596d);
var circle_marker_43dcced1b0d8aeb1fe5c725530671998 = L.circleMarker(
[-27.4987917, 153.0328694],
{"bubblingMouseEvents": true, "color": "cyan", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "cyan", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 6.666666666666666, "stroke": true, "weight": 3}
).addTo(map_a09e832e68650bb45a643111fa87596d);
var popup_e9defdbf46778191120425809be5b223 = L.popup({"maxWidth": "100%"});
var html_26b525068a18602606074732a253c8c1 = $(`<div id="html_26b525068a18602606074732a253c8c1" style="width: 100.0%; height: 100.0%;">Princess Alexandra Hospital Brisbane (Australia) - 11 papers</div>`)[0];
popup_e9defdbf46778191120425809be5b223.setContent(html_26b525068a18602606074732a253c8c1);
circle_marker_43dcced1b0d8aeb1fe5c725530671998.bindPopup(popup_e9defdbf46778191120425809be5b223)
;
var poly_line_ad5e4b8ec226aa160b4ba47c18de3122 = L.polyline(
[[-27.497500000000002, 153.01369999999997], [-27.497526387480143, 153.01409120774633], [-27.497552773866335, 153.01448241568028], [-27.497579159158565, 153.01487362380158], [-27.497605543356826, 153.0152648321107], [-27.497631926461132, 153.01565604060715], [-27.497658308471472, 153.0160472492912], [-27.497684689387835, 153.01643845816272], [-27.497711069210244, 153.01682966722183], [-27.497737447938672, 153.0172208764684], [-27.49776382557313, 153.01761208590244], [-27.497790202113617, 153.01800329552407], [-27.497816577560126, 153.01839450533305], [-27.49784295191266, 153.0187857153296], [-27.497869325171212, 153.01917692551365], [-27.49789569733578, 153.01956813588504], [-27.497922068406375, 153.019959346444], [-27.497948438382977, 153.02035055719034], [-27.497974807265592, 153.02074176812403], [-27.498001175054227, 153.0211329792453], [-27.498027541748865, 153.02152419055392], [-27.49805390734951, 153.02191540205], [-27.498080271856168, 153.02230661373346], [-27.498106635268833, 153.02269782560438], [-27.498132997587494, 153.02308903766266], [-27.49815935881216, 153.0234802499083], [-27.49818571894282, 153.02387146234128], [-27.49821207797949, 153.02426267496162], [-27.498238435922143, 153.02465388776943], [-27.498264792770794, 153.0250451007646], [-27.498291148525446, 153.025436313947], [-27.49831750318608, 153.02582752731678], [-27.49834385675271, 153.0262187408739], [-27.49837020922532, 153.02660995461838], [-27.49839656060392, 153.0270011685502], [-27.498422910888504, 153.0273923826693], [-27.498449260079074, 153.02778359697572], [-27.498475608175617, 153.0281748114694], [-27.498501955178142, 153.02856602615032], [-27.49852830108664, 153.0289572410186], [-27.49855464590112, 153.0293484560741], [-27.498580989621566, 153.02973967131697], [-27.498607332247992, 153.03013088674697], [-27.498633673780382, 153.03052210236433], [-27.498660014218746, 153.0309133181688], [-27.498686353563066, 153.03130453416065], [-27.498712691813363, 153.03169575033962], [-27.498739028969613, 153.03208696670595], [-27.498765365031826, 153.0324781832594], [-27.4987917, 153.03286939999998]],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "black", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 0.5, "smoothFactor": 1.0, "stroke": true, "weight": 3.2}
).addTo(map_a09e832e68650bb45a643111fa87596d);
var circle_marker_5c2a5c076b80d9bcc9ab31ac0a10662c = L.circleMarker(
[51.492649, -0.2596571],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5.333333333333334, "stroke": true, "weight": 3}
).addTo(map_a09e832e68650bb45a643111fa87596d);
var popup_2fea54507c8a5fceafd0b67f316907a8 = L.popup({"maxWidth": "100%"});
var html_597a0313f259cd98d3d46db0f1fa2601 = $(`<div id="html_597a0313f259cd98d3d46db0f1fa2601" style="width: 100.0%; height: 100.0%;">Cancer Research UK (United Kingdom) - 7 papers</div>`)[0];
popup_2fea54507c8a5fceafd0b67f316907a8.setContent(html_597a0313f259cd98d3d46db0f1fa2601);
circle_marker_5c2a5c076b80d9bcc9ab31ac0a10662c.bindPopup(popup_2fea54507c8a5fceafd0b67f316907a8)
;
var poly_line_e9f36b177e00f7d329a036d36001c5e9 = L.polyline(
[[-27.497500000000002, 153.01369999999997], [-24.92993687855441, 151.20971393048876], [-22.34155289459307, 149.47967717814856], [-19.73547469388641, 147.81295513317036], [-17.114482821119733, 146.19993381623817], [-14.481075386082429, 144.63185222550305], [-11.837522190326801, 143.10065245669682], [-9.185911260992674, 141.5988453233041], [-6.528189436430301, 140.11938897213327], [-3.866198402625757, 138.65557795464622], [-1.201707387422014, 137.2009402720687], [1.4635564232768457, 135.7491400002043], [4.127878781093677, 134.29388318148312], [6.789529672915435, 132.82882472664642], [9.446734128503635, 131.34747408642215], [12.097641624537046, 129.84309743173537], [14.740293111117042, 128.30861402291123], [17.37258458456986, 126.73648436499298], [19.99222598294196, 125.11858765941815], [22.596693983491527, 123.44608601044524], [25.183177030384897, 121.70927289356291], [27.74851061318609, 119.89740365184286], [30.289100455170658, 117.9985064330657], [32.800830868646045, 115.99917330161873], [35.278955127459476, 113.88433370564906], [37.717964369149634, 111.63701674743743], [40.11143141386022, 109.23811583625456], [42.45182623256148, 106.66618079864736], [44.73030105663895, 103.89728040613977], [46.9364460173819, 100.90500499239454], [49.05802184577959, 97.66071663552168], [51.0806861068157, 94.13420374330667], [52.987745566941626, 90.29495290699151], [54.75999118180561, 86.11429684695747], [56.37570352077846, 81.5686953192369], [57.81094986451984, 76.64428946943781], [59.04031495605794, 71.34255233709155], [60.038188380831336, 65.68628135342112], [60.78063909353456, 59.72442495256496], [61.24772455485719, 53.5336534179454], [61.42584602840141, 47.21476032616533], [61.30958661745817, 40.88335351312378], [60.9024968056058, 34.656539446039915], [60.21657611931051, 28.639182297846787], [59.27061824038887, 22.91353034190888], [58.08791491330023, 17.534391258649634], [56.69389700985819, 12.529746004245453], [55.114148115449765, 7.905072999440563], [53.372991191114636, 3.649245913092159], [51.49264899999999, -0.25965710000002673]],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "black", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 0.5, "smoothFactor": 1.0, "stroke": true, "weight": 2.4}
).addTo(map_a09e832e68650bb45a643111fa87596d);
var circle_marker_da9c215d898c12996fff7f95b6fad28e = L.circleMarker(
[39.0000142, -77.1040039],
{"bubblingMouseEvents": true, "color": "green", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "green", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5.0, "stroke": true, "weight": 3}
).addTo(map_a09e832e68650bb45a643111fa87596d);
var popup_2f42f510f63a655fa87eb7da9de38fa7 = L.popup({"maxWidth": "100%"});
var html_4f00d60902bda1fe9d86bb19e996aed2 = $(`<div id="html_4f00d60902bda1fe9d86bb19e996aed2" style="width: 100.0%; height: 100.0%;">National Institutes of Health (United States) - 6 papers</div>`)[0];
popup_2f42f510f63a655fa87eb7da9de38fa7.setContent(html_4f00d60902bda1fe9d86bb19e996aed2);
circle_marker_da9c215d898c12996fff7f95b6fad28e.bindPopup(popup_2f42f510f63a655fa87eb7da9de38fa7)
;
var poly_line_be1b725378b358eb4cb03b9e2b612d4e = L.polyline(
[[-27.4975, 153.0137], [39.0000142, -77.1040039]],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "black", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 0.5, "smoothFactor": 1.0, "stroke": true, "weight": 2.2}
).addTo(map_a09e832e68650bb45a643111fa87596d);
var circle_marker_4bda7d11cc0ef990ae4a434dba47a62b = L.circleMarker(
[51.752546, -1.21433],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5.0, "stroke": true, "weight": 3}
).addTo(map_a09e832e68650bb45a643111fa87596d);
var popup_78c4940472cb330dfa118e503102b527 = L.popup({"maxWidth": "100%"});
var html_b9d825ca62291dd29697a0206d26cbe9 = $(`<div id="html_b9d825ca62291dd29697a0206d26cbe9" style="width: 100.0%; height: 100.0%;">University of Oxford (United Kingdom) - 6 papers</div>`)[0];
popup_78c4940472cb330dfa118e503102b527.setContent(html_b9d825ca62291dd29697a0206d26cbe9);
circle_marker_4bda7d11cc0ef990ae4a434dba47a62b.bindPopup(popup_78c4940472cb330dfa118e503102b527)
;
var poly_line_1919badbb31c72fb804e1ed56f7b18a5 = L.polyline(
[[-27.497500000000002, 153.01369999999997], [-24.894016658670317, 151.26276377817726], [-22.2709496637738, 149.58444987105202], [-19.631278145171255, 147.96813784179335], [-16.977646625803324, 146.4042562136152], [-14.312427751984288, 144.88410428925079], [-11.637775357281617, 143.39969461087423], [-8.955669900084047, 141.94361294920327], [-6.267957976086925, 140.50889269124184], [-3.576387338082048, 139.08890061453656], [-0.8826386494598775, 137.6772312011442], [1.8116449525536487, 136.26760680455698], [4.5048295088457095, 134.85378110858903], [7.195262186457225, 133.42944339326834], [9.88124261726015, 131.98812114198586], [12.56099269374774, 130.52307848491728], [15.232623817317823, 129.02720787940336], [17.89410047703571, 127.4929122881124], [20.543198868075176, 125.91197494972903], [23.177459032231894, 124.2754136803245], [25.794128710659667, 122.57331655978146], [28.390096734653717, 120.7946559560205], [30.96181334115197, 118.92707830517429], [33.50519429283412, 116.95666820471854], [36.01550513640289, 114.86768768744264], [38.48722141555241, 112.64229582085795], [40.91386031032152, 110.26026125044586], [43.287779275282524, 107.69869281764068], [45.5999382866853, 104.93183354170162], [47.83962512009603, 101.930994420572], [49.994149006828756, 98.66475025984448], [52.04851904147556, 95.09958206819567], [53.98514239637513, 91.20122545444883], [55.783606229892406, 86.93705321905907], [57.42064659132974, 82.27983591316206], [58.87045182325659, 77.21309769859545], [60.105478487129375, 71.73789203333979], [61.097938513535254, 65.88006891409418], [61.821999923028024, 59.69609222273664], [62.2565048150628, 53.27468267191057], [62.38770080336677, 46.73185364384983], [62.211268012228416, 40.19887181991862], [61.7329974149224, 33.80573344627328], [60.96788605739443, 27.66502785945636], [59.937959853749966, 21.860854155750076], [58.66950175211135, 16.444926468538256], [57.19038570032324, 11.439009914425469], [55.527975815783385, 6.841111701378509], [53.707745024011714, 2.632772713696909], [51.752545999999995, -1.2143300000000181]],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "black", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 0.5, "smoothFactor": 1.0, "stroke": true, "weight": 2.2}
).addTo(map_a09e832e68650bb45a643111fa87596d);
var circle_marker_64b3588fa6b0ec32ef9e95d9453680ed = L.circleMarker(
[54.980175, -1.6146802],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5.0, "stroke": true, "weight": 3}
).addTo(map_a09e832e68650bb45a643111fa87596d);
var popup_a6b4b1e4e5c3f6294b59fa71c48ecb82 = L.popup({"maxWidth": "100%"});
var html_5d2b08a33732de3b6f44e137d4dd25b8 = $(`<div id="html_5d2b08a33732de3b6f44e137d4dd25b8" style="width: 100.0%; height: 100.0%;">Newcastle University (United Kingdom) - 6 papers</div>`)[0];
popup_a6b4b1e4e5c3f6294b59fa71c48ecb82.setContent(html_5d2b08a33732de3b6f44e137d4dd25b8);
circle_marker_64b3588fa6b0ec32ef9e95d9453680ed.bindPopup(popup_a6b4b1e4e5c3f6294b59fa71c48ecb82)
;
var poly_line_3c2a149f81ebd74e0ae9f99f3da36567 = L.polyline(
[[-27.497500000000002, 153.01369999999997], [-24.812779999177835, 151.52528433177406], [-22.113958260934268, 150.10019172951695], [-19.403240296216904, 148.72877693158034], [-16.68257467107612, 147.40242925486314], [-13.953703531401745, 146.11338050419363], [-11.218204700178916, 144.85454068031947], [-8.477527288645746, 143.61935583614206], [-5.7330223796986965, 142.40168322633917], [-2.9859700559956797, 141.19567956046956], [-0.23760383687451705, 139.99569869436482], [2.510866557142594, 138.79619548172002], [5.2582332861184495, 137.5916327639228], [8.003268539093527, 136.3763886075518], [10.744701973099382, 135.14466090936742], [13.481196627857695, 133.8903663783243], [16.211322416949283, 132.60703066997007], [18.93352616063033, 131.2876660846349], [21.64609692894225, 129.92463274027], [24.347125192526967, 128.50947848989517], [27.034453913955712, 127.03275207904346], [29.70561923022535, 125.48378316141964], [32.35777774750452, 123.85042189210571], [34.98761665782198, 122.11873007358395], [37.59124185951304, 120.2726155939464], [40.164037994898024, 118.29340284045475], [42.700492821066184, 116.1593351258092], [45.19397670014514, 113.84501311715178], [47.63646651814265, 111.32078958027694], [50.018202676323384, 108.5521716982878], [52.327269318316894, 105.49933759965495], [54.54909429469932, 102.11696750735132], [56.66588119908551, 98.35473844546516], [58.65601860037806, 94.159044348787], [60.49357128983761, 89.47675756723083], [62.148053262304316, 84.26203125724112], [63.5848058308567, 78.48697035638747], [64.76640892871474, 72.15597556203932], [65.65552006928405, 65.32121752011312], [66.21919112928094, 58.09338581165912], [66.43398486671585, 50.63983134152954], [66.29039037521231, 43.1650719998687], [65.7948028718243, 35.8772962716763], [64.96818042740475, 28.953388487080133], [63.84198663938599, 22.516015302042206], [62.45307327921869, 16.62844551802914], [60.839121526977166, 11.303414998398011], [59.0354942204933, 6.518230993643897], [57.073565941342366, 2.2296437923243957], [54.980174999999996, -1.6146801999999525]],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "black", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 0.5, "smoothFactor": 1.0, "stroke": true, "weight": 2.2}
).addTo(map_a09e832e68650bb45a643111fa87596d);
var circle_marker_8d9bf1ca8359d768b751f2ac190d8639 = L.circleMarker(
[51.5242031, -0.1330007],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5.0, "stroke": true, "weight": 3}
).addTo(map_a09e832e68650bb45a643111fa87596d);
var popup_328cb3d3cf8634c5b62c585f7abed2a7 = L.popup({"maxWidth": "100%"});
var html_88df051b130349f4dbc83e446b54287e = $(`<div id="html_88df051b130349f4dbc83e446b54287e" style="width: 100.0%; height: 100.0%;">University College London (United Kingdom) - 6 papers</div>`)[0];
popup_328cb3d3cf8634c5b62c585f7abed2a7.setContent(html_88df051b130349f4dbc83e446b54287e);
circle_marker_8d9bf1ca8359d768b751f2ac190d8639.bindPopup(popup_328cb3d3cf8634c5b62c585f7abed2a7)
;
var poly_line_b74ae5bf315833c2a028fdf6d78cad95 = L.polyline(
[[-27.497500000000002, 153.01369999999997], [-24.93274143880102, 151.208181617744], [-22.347124073748624, 149.47660617884503], [-19.74377700004136, 147.80835299558169], [-17.12548329686622, 146.19381893835566], [-14.49474359373619, 144.6242516321247], [-11.853830128014236, 143.09160025069127], [-9.204833230015824, 141.58838168064085], [-6.549701872742997, 140.10755958639254], [-3.8902796795506562, 138.64243386599878], [-1.2283375922745443, 137.18653803988377], [1.4343957397023412, 135.7335421990516], [4.096204886564326, 134.27715921866775], [6.755358975020908, 132.81105199670753], [9.410082546400043, 131.3287394952947], [12.058525026571338, 129.82349934145986], [14.698727838767455, 128.2882646878029], [17.328588089471893, 126.71551295288623], [19.9458176118764, 125.0971439777403], [22.547895956684393, 123.42434508694828], [25.13201567203798, 121.68744059559526], [27.695017910705246, 119.87572356508213], [30.233316046104015, 117.97726825783116], [32.742804582956886, 115.97872305594888], [35.21875024833531, 113.86508603699428], [37.6556618183322, 111.61946962659545], [40.04713511607648, 109.22286779892045], [42.38566996319765, 106.65395064645077], [44.662457115825426, 103.88892877711032], [46.867136078744906, 100.90155630767413], [48.98753025619658, 97.66337842148971], [51.009375692273395, 94.14437799595169], [52.916075520330985, 90.31423088935344], [54.688535733685846, 86.1444247519272], [56.30516870566996, 81.6114947399119], [57.74218382206335, 76.70151629882366], [58.97430525550615, 71.41568509121635], [59.97603887258681, 65.7762498945433], [60.72352043628638, 59.83132380940833], [61.19679832871528, 53.656519623677355], [61.3821718096451, 47.35150951841081], [61.274030781632995, 41.030935159212504], [60.8756651897811, 34.81129412528912], [60.19878638447038, 28.79730186816471], [59.26191448902461, 23.071487943524858], [58.088114256600015, 17.689239928563325], [56.70265155071331, 12.679252333626891], [55.131007110196784, 8.047711330292827], [53.39745368064463, 3.784105580342839], [51.524203099999994, -0.13300070000002506]],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "black", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 0.5, "smoothFactor": 1.0, "stroke": true, "weight": 2.2}
).addTo(map_a09e832e68650bb45a643111fa87596d);
var circle_marker_5b919a26311af35d06b37ab661a1cc74 = L.circleMarker(
[49.3851022, 8.7100519],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 4.666666666666667, "stroke": true, "weight": 3}
).addTo(map_a09e832e68650bb45a643111fa87596d);
var popup_2c455935e1db918d55782ebf7c9aeb68 = L.popup({"maxWidth": "100%"});
var html_013442a33f877d8cc6ee826ba2a331bd = $(`<div id="html_013442a33f877d8cc6ee826ba2a331bd" style="width: 100.0%; height: 100.0%;">European Molecular Biology Laboratory (Germany) - 5 papers</div>`)[0];
popup_2c455935e1db918d55782ebf7c9aeb68.setContent(html_013442a33f877d8cc6ee826ba2a331bd);
circle_marker_5b919a26311af35d06b37ab661a1cc74.bindPopup(popup_2c455935e1db918d55782ebf7c9aeb68)
;
var poly_line_212fe9daca6a8d16c676e8de015be6b4 = L.polyline(
[[-27.497500000000002, 153.01369999999997], [-25.264226149451357, 150.84533063555625], [-23.00043057750275, 148.75584231800372], [-20.710137505154652, 146.73570422216608], [-18.396989416779512, 144.77603220293042], [-16.06430408650881, 142.86852524242659], [-13.715125708257238, 141.00539720408563], [-11.352270798706968, 139.17930693624976], [-8.978369597411827, 137.38328856555881], [-6.595903696109304, 135.6106829741782], [-4.207240612259718, 133.85507086936843], [-1.8146659941178565, 132.11020745619976], [0.5795858845302306, 130.36995846096693], [2.9733027067501325, 128.62823708634608], [5.364265155999317, 126.8789413843657], [7.750217812605674, 125.11589149491465], [10.128839292472561, 123.33276620958793], [12.497711004799472, 121.52303838514604], [14.854283884329996, 119.67990885801419], [17.195842426115128, 117.79623872073591], [19.519465321417833, 115.86448014403709], [21.821981969405748, 113.8766064090272], [24.099924132116996, 111.8240425153657], [26.34947202750585, 109.69759873638918], [28.56639424385056, 107.48741090894123], [30.745981047768243, 105.18289320637825], [32.88297100400674, 102.77271179904619], [34.9714714065674, 100.24479130783061], [37.004873942091905, 97.5863704090176], [38.97576839878822, 94.7841283286117], [40.87585924632232, 91.8244099688186], [42.695892684258936, 88.69358322330652], [44.42560536231636, 85.37856600861858], [46.05371031602308, 81.86755980991836], [47.56794029989603, 78.15101680462328], [48.955172650014084, 74.22284337357974], [50.20166133779764, 70.08179863330611], [51.293398500634595, 65.73298029090188], [52.21661664891985, 61.18920750377629], [52.95842199017101, 56.472030802745394], [53.50751962783626, 51.612056771793505], [53.85495813032291, 46.64831119291671], [53.994794426490216, 41.62650587024541], [53.924572614414934, 36.59630790887127], [53.645530652789056, 31.607969089565813], [53.16249552398652, 26.708857612925158], [52.48348702544665, 21.94046379486042], [51.619103223919595, 17.336311793253913], [50.58179047610959, 12.920963866642296], [49.38510219999999, 8.710051900000053]],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "black", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 0.5, "smoothFactor": 1.0, "stroke": true, "weight": 2.0}
).addTo(map_a09e832e68650bb45a643111fa87596d);
var circle_marker_58659ea5c452082807cd52aedb3efd26 = L.circleMarker(
[52.4522956, -1.9312857],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 4.333333333333333, "stroke": true, "weight": 3}
).addTo(map_a09e832e68650bb45a643111fa87596d);
var popup_dc49acaa499d2ef17ca4c62aa0389620 = L.popup({"maxWidth": "100%"});
var html_7d3ec50ebc6ac1f2d27c7359793823e5 = $(`<div id="html_7d3ec50ebc6ac1f2d27c7359793823e5" style="width: 100.0%; height: 100.0%;">University of Birmingham (United Kingdom) - 4 papers</div>`)[0];
popup_dc49acaa499d2ef17ca4c62aa0389620.setContent(html_7d3ec50ebc6ac1f2d27c7359793823e5);
circle_marker_58659ea5c452082807cd52aedb3efd26.bindPopup(popup_dc49acaa499d2ef17ca4c62aa0389620)
;
var poly_line_0137f1fac0953dfda397a1c4c1007596 = L.polyline(
[[-27.497500000000002, 153.01369999999997], [-24.854912298673874, 151.34420673914042], [-22.19455064636013, 149.74482820189382], [-19.519156246080144, 148.20511843220038], [-16.831157357795032, 146.71569865381798], [-14.13272922666256, 145.26806897898246], [-11.425844470081525, 143.85444411262915], [-8.712316014569971, 142.46760887434493], [-5.993834299631319, 141.1007896433897], [-3.27200017689379, 139.7475381608134], [-0.5483547162801218, 138.40162443066833], [2.1755930239346593, 137.05693571498819], [4.898339307801265, 135.70737879749004], [7.6183592113986345, 134.34678279106743], [10.3340793987244, 132.9687997810097], [13.043849255525544, 131.56680052909996], [15.745909371118342, 130.13376231513325], [18.43835622569436, 128.66214576747518], [21.119101750045516, 127.14375724563536], [23.7858261663313, 125.56959301170605], [26.435922180455638, 123.92966111518717], [29.06642816556254, 122.21277671285043], [31.673947439973272, 120.4063266241053], [34.254550095763726, 118.49599958428882], [36.80365308694021, 116.465480418693], [39.31587348598301, 114.29611008007714], [41.784849084017495, 111.96652057581286], [44.203020098912404, 109.45226647731533], [46.56136616698492, 106.7254963138223], [48.84909494216167, 103.75474245279167], [51.05328408482386, 100.5049629805344], [53.15848970651948, 96.93804909586675], [55.14635505440921, 93.01411672007418], [56.9952876030958, 88.69401477957126], [58.680323485179414, 83.94355077240118], [60.17336105681699, 78.73983811717426], [61.44399918616647, 73.0797179739476], [62.46121175276736, 66.98921259303302], [63.19595512508797, 60.53148822557], [63.62448850733776, 53.80951789928281], [63.731750640726574, 46.95987545237472], [63.51382071492747, 40.1369240201991], [62.9786002717998, 33.49122224196606], [62.14445648735782, 27.149205520170312], [61.037334894335984, 21.200460012428948], [59.6873023071769, 15.694824253796924], [58.1254184524789, 10.64732236947566], [56.38144188844388, 6.047015963498325], [54.48246206934101, 1.8663085894559117], [52.4522956, -1.9312856999999894]],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "black", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 0.5, "smoothFactor": 1.0, "stroke": true, "weight": 1.8}
).addTo(map_a09e832e68650bb45a643111fa87596d);
var circle_marker_11fa5de17eebe2d138230baf86732236 = L.circleMarker(
[52.1904838, 0.1343192],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 4.0, "stroke": true, "weight": 3}
).addTo(map_a09e832e68650bb45a643111fa87596d);
var popup_af248c105aabd1d626b5282078dfa25d = L.popup({"maxWidth": "100%"});
var html_34e82b0db53c9befcba4f69dd6c983d0 = $(`<div id="html_34e82b0db53c9befcba4f69dd6c983d0" style="width: 100.0%; height: 100.0%;">AstraZeneca (United Kingdom) - 3 papers</div>`)[0];
popup_af248c105aabd1d626b5282078dfa25d.setContent(html_34e82b0db53c9befcba4f69dd6c983d0);
circle_marker_11fa5de17eebe2d138230baf86732236.bindPopup(popup_af248c105aabd1d626b5282078dfa25d)
;
var poly_line_2f2b4c24b649853e0cd7efabd833f180 = L.polyline(
[[-27.497500000000002, 153.01369999999997], [-24.92105855770696, 151.25305951240796], [-22.324792346799953, 149.5647934011481], [-19.71168728541538, 147.93843745192498], [-17.084397079131787, 146.36454610549242], [-14.445304754147493, 144.83452241875534], [-11.79657483935936, 143.34046705346532], [-9.140198136735423, 141.87504359230707], [-6.478030705901056, 140.43135738522062], [-3.811828437586304, 139.00284518643934], [-1.1432783962364546, 137.58317296298037], [1.5259720312615057, 136.16613938428873], [4.194287241404911, 134.74558260962317], [6.860015890992893, 133.31528805781932], [9.52146287820327, 131.86889486514337], [12.176859938811338, 130.39979870888374], [14.824333906863467, 128.90104860004612], [17.461871585218432, 127.36523513718362], [20.087280021057214, 125.78436758336716], [22.69814077932184, 124.14973701301051], [25.29175654713672, 122.45176273301877], [27.865088079586183, 120.67981931259794], [30.414679110523956, 118.82204202320327], [32.9365664092134, 116.86510956472603], [35.426171691028514, 114.79400507038736], [37.878171650128564, 112.5917602244549], [40.286342099804216, 110.23919394232018], [42.643372318367604, 107.71466800345297], [44.94064662396761, 104.99389947004056], [47.16799264577743, 102.04989645190926], [49.31340084166478, 98.8531227508962], [51.36272917862789, 95.37204984060884], [53.29942267156626, 91.57431853248829], [55.104301789052016, 87.42879313286005], [56.755507192838586, 82.90881138401096], [58.22872676982016, 77.99684415434558], [59.49786053970691, 72.69047854348571], [60.53627149099569, 67.00903920143014], [61.31868634421503, 60.999310491613414], [61.82362195762617, 54.73805943180355], [62.0359489636102, 48.32905461517885], [61.9489831177916, 41.893637962695834], [61.565486089936975, 35.556429802143384], [60.89724622143789, 29.430071278290143], [59.96337977611241, 23.603401780221702], [58.78788427150851, 18.135757173240222], [57.39709157881588, 13.057418961707867], [55.81751700926353, 8.374299675040106], [54.07433503653255, 4.074426118671795], [52.1904838, 0.13431920000004993]],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "black", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 0.5, "smoothFactor": 1.0, "stroke": true, "weight": 1.6}
).addTo(map_a09e832e68650bb45a643111fa87596d);
var circle_marker_22961ffef320b8f0f44cae0bd777cf91 = L.circleMarker(
[53.4660226, -2.2330858],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 4.0, "stroke": true, "weight": 3}
).addTo(map_a09e832e68650bb45a643111fa87596d);
var popup_dad0925e350b32ab9e0be6759359b612 = L.popup({"maxWidth": "100%"});
var html_78caaaed015463cb804ea50f2c32803a = $(`<div id="html_78caaaed015463cb804ea50f2c32803a" style="width: 100.0%; height: 100.0%;">University of Manchester (United Kingdom) - 3 papers</div>`)[0];
popup_dad0925e350b32ab9e0be6759359b612.setContent(html_78caaaed015463cb804ea50f2c32803a);
circle_marker_22961ffef320b8f0f44cae0bd777cf91.bindPopup(popup_dad0925e350b32ab9e0be6759359b612)
;
var poly_line_896136a71db71032925a9082c1cd6bb1 = L.polyline(
[[-27.497500000000002, 153.01369999999997], [-24.824159964927038, 151.43420841074294], [-22.134931910673497, 149.92169126985505], [-19.432292057910086, 148.46601978802812], [-16.718430137860874, 147.05813053241422], [-13.99530521533555, 145.68983146216613], [-11.264692373032785, 144.35363461825932], [-8.528222322652372, 143.0426103561972], [-5.787415616782806, 141.75025858895117], [-3.043712839252948, 140.4703930344998], [-0.29850193339836917, 139.197034900581], [2.4468563259110208, 137.92431277391142], [5.191003809332402, 136.64636570787866], [7.932560602197741, 135.35724662152222], [10.670099813597865, 134.05082313424873], [13.402120733129726, 132.72067286527886], [16.127019355323966, 131.35997002359898], [18.84305515081188, 129.9613598028709], [21.54831276011599, 128.51681667926368], [24.240657007975415, 127.01748220031652], [26.917679266926214, 125.4534772805581], [29.57663271835935, 123.81368345262138], [32.21435344490832, 122.08548709738363], [34.82716351813205, 120.25448065197054], [37.41075130731895, 118.30411564239694], [39.960023141869925, 116.21530494429237], [42.46891928347494, 113.96597738259788], [44.930186100756536, 111.53059905750797], [47.33509582344157, 108.87969654485016], [49.67310616196646, 105.97945339215187], [51.93145605406534, 102.79151165633027], [54.09470371034609, 99.27320489360909], [56.14423355631132, 95.3785858064889], [58.057795947170696, 91.06078356897433], [59.809204091254266, 86.27638322318751], [61.36839702003804, 80.99252480707025], [62.70216692841234, 75.19700483811243], [63.77588582566592, 68.91047925762803], [64.55644473230396, 62.197800432030476], [65.01623407037225, 55.173325713204235], [65.13738394971963, 47.994716146605356], [64.91497010336127, 40.84336286735527], [64.35796217897729, 33.89634628803253], [63.48751746535235, 27.29998971474322], [62.33332313167798, 21.15405583721099], [60.92931404217759, 15.509390270881], [59.30994851802627, 10.37563150773883], [57.507632720776584, 5.733256645115148], [55.551321487273874, 1.5453649424473497], [53.466022599999995, -2.233085800000026]],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "black", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 0.5, "smoothFactor": 1.0, "stroke": true, "weight": 1.6}
).addTo(map_a09e832e68650bb45a643111fa87596d);
var circle_marker_135fc26a104c423c0d03ddc356bdb426 = L.circleMarker(
[-35.2812742, 149.1172023],
{"bubblingMouseEvents": true, "color": "cyan", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "cyan", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 4.0, "stroke": true, "weight": 3}
).addTo(map_a09e832e68650bb45a643111fa87596d);
var popup_3f1ef4da1d38e3bb096a2a25c1abb9c6 = L.popup({"maxWidth": "100%"});
var html_e058d6df35c40dabe75abc459ee32688 = $(`<div id="html_e058d6df35c40dabe75abc459ee32688" style="width: 100.0%; height: 100.0%;">Australian National University (Australia) - 3 papers</div>`)[0];
popup_3f1ef4da1d38e3bb096a2a25c1abb9c6.setContent(html_e058d6df35c40dabe75abc459ee32688);
circle_marker_135fc26a104c423c0d03ddc356bdb426.bindPopup(popup_3f1ef4da1d38e3bb096a2a25c1abb9c6)
;
var poly_line_31b5c95aa5f839ec04b4b00737323cf3 = L.polyline(
[[-27.497500000000002, 153.01369999999997], [-27.657444753196383, 152.9402010040169], [-27.817350628134346, 152.86648666659835], [-27.97721724545987, 152.7925549396724], [-28.137044222445493, 152.71840375804163], [-28.296831172946078, 152.64403103917084], [-28.456577707353837, 152.56943468297288], [-28.616283432552873, 152.49461257159282], [-28.775947951872954, 152.41956256918752], [-28.935570865042774, 152.34428252170414], [-29.095151768142507, 152.268770256655], [-29.25469025355569, 152.19302358288996], [-29.414185909920473, 152.1170402903656], [-29.573638322080143, 152.04081814991252], [-29.73304707103304, 151.96435491299837], [-29.892411733881623, 151.887648311489], [-30.051731883781002, 151.81069605740595], [-30.21100708988656, 151.73349584268135], [-30.370236917301025, 151.6560453389095], [-30.5294209270206, 151.5783421970956], [-30.688558675880476, 151.50038404740053], [-30.847649716499493, 151.42216849888348], [-31.006693597224032, 151.34369313924094], [-31.165689862071137, 151.26495553454185], [-31.324638050670718, 151.18595322896022], [-31.483537698207087, 151.1066837445037], [-31.642388335359474, 151.0271445807391], [-31.80118948824185, 150.94733321451452], [-31.959940678341727, 150.86724709967746], [-32.118641422458204, 150.7868836667899], [-32.277291232639044, 150.706240322839], [-32.4358896161168, 150.62531445094544], [-32.594436075244104, 150.5441034100662], [-32.75293010742797, 150.4626045346954], [-32.91137120506306, 150.38081513455995], [-33.06975885546412, 150.29873249431193], [-33.228092540797284, 150.21635387321703], [-33.3863717380104, 150.13367650483883], [-33.54459591876246, 150.05069759671903], [-33.70276454935173, 149.96741433005377], [-33.86087709064303, 149.88382385936552], [-34.01893299799386, 149.7999233121709], [-34.176931721179436, 149.71570978864474], [-34.33487270431659, 149.63118036127844], [-34.4927553857865, 149.54633207453548], [-34.65057919815635, 149.46116194450178], [-34.808343568099794, 149.37566695853127], [-34.96604791631612, 149.2898440748877], [-35.12369165744835, 149.20369022238117], [-35.2812742, 149.11720230000003]],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "black", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 0.5, "smoothFactor": 1.0, "stroke": true, "weight": 1.6}
).addTo(map_a09e832e68650bb45a643111fa87596d);
var circle_marker_0b21ea7d7965ed4b6222cdcda21d79c3 = L.circleMarker(
[52.1365539, 0.2077278],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3.6666666666666665, "stroke": true, "weight": 3}
).addTo(map_a09e832e68650bb45a643111fa87596d);
var popup_67d2dc037999655a86caca8eda76c1eb = L.popup({"maxWidth": "100%"});
var html_ec625c72c3894c1fbe7c507f4b1c4262 = $(`<div id="html_ec625c72c3894c1fbe7c507f4b1c4262" style="width: 100.0%; height: 100.0%;">Babraham Institute (United Kingdom) - 2 papers</div>`)[0];
popup_67d2dc037999655a86caca8eda76c1eb.setContent(html_ec625c72c3894c1fbe7c507f4b1c4262);
circle_marker_0b21ea7d7965ed4b6222cdcda21d79c3.bindPopup(popup_67d2dc037999655a86caca8eda76c1eb)
;
var poly_line_c52971d227a834a7d41c2fdc91c84d67 = L.polyline(
[[-27.497500000000002, 153.01369999999997], [-24.924682885144236, 151.24644957538817], [-22.33188871893488, 149.5517591735072], [-19.72212244471425, 147.91915605748386], [-17.09805518931661, 146.33918373301606], [-14.462085969364612, 144.80323293669676], [-11.816394049336617, 143.30339134736278], [-9.16298388303642, 141.8323094116795], [-6.503724260283073, 140.3830795539717], [-3.8403830316096723, 138.9491260806235], [-1.1746585907213534, 137.52410319755165], [1.4917908482069366, 136.10179868016655], [4.157319238687274, 134.6760408371597], [6.82026507177388, 133.24060647506144], [9.478923260740551, 131.78912759129935], [12.131515652247824, 130.31499449714192], [14.776159214945695, 128.81125300140695], [17.410830853924644, 127.27049318049967], [20.033327651053295, 125.68472713893766], [22.64122113183566, 124.04525306092637], [25.231803903377767, 122.34250282659559], [27.80202669081469, 120.56587061573532], [30.348423420487237, 118.70352041251431], [32.8670215659075, 116.74217142603743], [35.35323451458359, 114.66686258493871], [37.80173229308388, 112.46070112574148], [40.206286731003445, 110.10460690757873], [42.55958728793726, 107.57707497214085], [44.85302472751647, 104.85399614939934], [47.07644229616756, 101.90860188013244], [49.2178591526859, 98.71163770472504], [51.26318010506205, 95.23192157283006], [53.19592130624384, 91.43750510328789], [54.9970054612763, 87.297713762895], [56.64471280227866, 82.78635971449876], [58.114911440620496, 77.8863308229362], [59.38171902440878, 72.59546354231145], [60.41873938089793, 66.93302327244601], [61.20093503160691, 60.94529001473279], [61.70701280117793, 54.70801280270064], [61.92194315549549, 48.32349677213324], [61.83901928284782, 41.911404550570865], [61.460852495153276, 35.59479274889827], [60.798979003250636, 29.485159998725294], [59.87220888222501, 23.670785977495598], [58.70423082741256, 18.21101109939559], [57.32110475648081, 13.13653855427981], [55.749131829863394, 8.453930722846167], [54.013334388343345, 4.151929458239579], [52.136553899999996, 0.20772780000004332]],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "black", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 0.5, "smoothFactor": 1.0, "stroke": true, "weight": 1.4}
).addTo(map_a09e832e68650bb45a643111fa87596d);
var circle_marker_81dd6ed71caaf98afbebef54cd450845 = L.circleMarker(
[51.5247403, -0.0393136],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3.6666666666666665, "stroke": true, "weight": 3}
).addTo(map_a09e832e68650bb45a643111fa87596d);
var popup_87adda6ad1a1f01a420d4538517a80b3 = L.popup({"maxWidth": "100%"});
var html_cc7e993bc787dcdbcebdc4092b27b83e = $(`<div id="html_cc7e993bc787dcdbcebdc4092b27b83e" style="width: 100.0%; height: 100.0%;">Queen Mary University of London (United Kingdom) - 2 papers</div>`)[0];
popup_87adda6ad1a1f01a420d4538517a80b3.setContent(html_cc7e993bc787dcdbcebdc4092b27b83e);
circle_marker_81dd6ed71caaf98afbebef54cd450845.bindPopup(popup_87adda6ad1a1f01a420d4538517a80b3)
;
var poly_line_44ae9454271daf91b98a0062bfaacb05 = L.polyline(
[[-27.497500000000002, 153.01369999999997], [-24.935498493943854, 151.20522634131123], [-22.352567329172285, 149.470748963294], [-19.751843063076656, 147.7996529401845], [-17.13611578813335, 146.18233829101234], [-14.507892691030717, 144.61005400699344], [-11.869452122930507, 143.07474947671426], [-9.22289010847248, 141.568941135949], [-6.5701609246195805, 140.08559191599545], [-3.913113138554522, 138.61800101316612], [-1.2535223042505876, 137.15970154782917], [1.4068786240252034, 135.70436376107705], [4.066370200298697, 134.24570147355837], [6.723217813114702, 132.77737958334046], [9.37564254283449, 131.29292039742268], [12.021790643358932, 129.7856065716328], [14.659700682825589, 128.24837837954055], [17.287267278106338, 126.67372295369853], [19.90220021390515, 125.05355306358342], [22.50197754475649, 123.37907295242258], [25.08379103322346, 121.6406288146253], [27.644481977944377, 119.82754176453363], [30.18046513385626, 117.92792180088304], [32.687638037887126, 115.92846259005921], [35.16127266179658, 113.81421931540353], [37.59588599330862, 111.56837604656357], [39.98508603792474, 109.17201608376877], [42.321390089577356, 106.60391997719228], [44.59601337039308, 103.84043336005061], [46.79862898964517, 100.85547269893368], [48.91710569090279, 97.62077370173108], [50.93723954333549, 94.10653482422174], [52.8425113902035, 90.28266230866052], [54.61392500513226, 86.12086736055403], [56.23001120464899, 81.59786418858425], [57.66711550182683, 76.69980617812655], [58.9001071665195, 71.42779334653062], [59.90362993341476, 65.8037315422323], [60.65392671690318, 59.87509815188548], [61.1310954554604, 53.71659811645782], [61.3214051689418, 47.42683617632349], [61.21912786687697, 41.11941783641032], [60.827360319323674, 34.91004331278896], [60.157575535929965, 28.903012447884635], [59.228047716071195, 23.18084871822873], [58.06162091999093, 17.799264218901158], [56.68338574209154, 12.787474884813719], [55.118699463014686, 8.15225350353603], [53.391759303042214, 3.883644823275631], [51.52474029999999, -0.03931360000001405]],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "black", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 0.5, "smoothFactor": 1.0, "stroke": true, "weight": 1.4}
).addTo(map_a09e832e68650bb45a643111fa87596d);
var circle_marker_b83184856e1adf2d216b73b63702b1cd = L.circleMarker(
[51.4989595, -0.1756407],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3.6666666666666665, "stroke": true, "weight": 3}
).addTo(map_a09e832e68650bb45a643111fa87596d);
var popup_79386b84e327b3df54e296e43e885a36 = L.popup({"maxWidth": "100%"});
var html_ef242650b83645c3624ff8225e5b3640 = $(`<div id="html_ef242650b83645c3624ff8225e5b3640" style="width: 100.0%; height: 100.0%;">Imperial College London (United Kingdom) - 2 papers</div>`)[0];
popup_79386b84e327b3df54e296e43e885a36.setContent(html_ef242650b83645c3624ff8225e5b3640);
circle_marker_b83184856e1adf2d216b73b63702b1cd.bindPopup(popup_79386b84e327b3df54e296e43e885a36)
;
var poly_line_25309bc8e00079f5b54bf5743cbf9098 = L.polyline(
[[-27.497500000000002, 153.01369999999997], [-24.93224154841568, 151.2075108288111], [-22.34610925043107, 149.4753047056695], [-19.742235061273075, 147.80645326788294], [-17.123404556470735, 146.19134652708692], [-14.492120575668435, 144.6212259117284], [-11.850657345393572, 143.08803492032507], [-9.20110701989543, 141.58428515655964], [-6.545420279444785, 140.10293527583008], [-3.8854423814103014, 138.63728033047937], [-1.22294586841034, 137.18084905322394], [1.4403390043849646, 135.72730670250974], [4.10269515841823, 134.2703611728341], [6.7623899895621795, 132.80367012679483], [9.417646184356547, 131.32074692348692], [12.066611143713805, 129.81486309688023], [14.70732404331646, 128.27894508150143], [17.337679458743715, 126.70546280208578], [19.95538633732592, 125.08630766060492], [22.5579209035279, 123.41265740671895], [25.14247183610269, 121.67482543172696], [27.705875750989957, 119.86209229018641], [30.24454066673706, 117.96251790471217], [32.75435473292801, 115.96273423200171], [35.23057710193325, 113.84772060878504], [37.667707494483615, 111.60056824345338], [40.059330892425464, 109.20224740271988], [42.3979341438475, 106.63140224253084], [44.674692525482655, 103.8642159412957], [46.87922718921268, 100.87441520339223], [48.99934001697636, 97.63352052169625], [51.020742253726986, 94.11149724449456], [52.92680922664349, 90.2780176232202], [54.698417039253314, 86.10458912015497], [56.313948021229876, 81.5678021299666], [57.74958464963527, 76.65383565011052], [58.980032135375126, 71.36404705347172], [59.97979132520837, 65.7209052755079], [60.725012899416434, 59.77278522476638], [61.19578400967687, 53.59556517882879], [61.37846601385853, 47.289132703246764], [61.26752797429822, 40.96824228194646], [60.866345070332855, 34.74937282020949], [60.18670758592792, 28.737097709326463], [59.24719847715888, 23.01372143186404], [58.07092447076114, 17.634376947882856], [56.68317287707982, 12.62752079115046], [55.10942908572775, 7.999145636604794], [53.37395872357426, 3.738600331617704], [51.49895949999999, -0.17564070000003085]],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "black", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 0.5, "smoothFactor": 1.0, "stroke": true, "weight": 1.4}
).addTo(map_a09e832e68650bb45a643111fa87596d);
var circle_marker_bb0d0e3b0fbe6c94e7bc46b8e33b72a0 = L.circleMarker(
[43.2597529, 5.4051971],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3.6666666666666665, "stroke": true, "weight": 3}
).addTo(map_a09e832e68650bb45a643111fa87596d);
var popup_f546f715ae237159f6892ae5c2322117 = L.popup({"maxWidth": "100%"});
var html_746adad1e86e5c8f63afe27473e18871 = $(`<div id="html_746adad1e86e5c8f63afe27473e18871" style="width: 100.0%; height: 100.0%;">Institut national de la santé et de la recherche médicale (France) - 2 papers</div>`)[0];
popup_f546f715ae237159f6892ae5c2322117.setContent(html_746adad1e86e5c8f63afe27473e18871);
circle_marker_bb0d0e3b0fbe6c94e7bc46b8e33b72a0.bindPopup(popup_f546f715ae237159f6892ae5c2322117)
;
var poly_line_4516e6960ac12776070bb59f941ea86d = L.polyline(
[[-27.497500000000002, 153.01369999999997], [-25.5238980565189, 150.4124418858172], [-23.50587708699518, 147.89630527762608], [-21.448674192526216, 145.45682848395404], [-19.35711406307812, 143.08578629266367], [-17.23565421700797, 140.77522338891458], [-15.088429568594401, 138.51746523795987], [-12.919295532296404, 136.3051122250563], [-10.73186925864806, 134.1310215934991], [-8.529568873411598, 131.98828066010344], [-6.315650785078922, 129.8701739208716], [-4.093245257799221, 127.77014597470429], [-1.8653905345136563, 125.68176166867283], [0.3649341484599522, 123.59866448211335], [2.5947762794540346, 121.51453389874348], [4.821178126746043, 119.42304235050278], [7.041144727711133, 117.31781224357792], [9.25161140996301, 115.1923735912901], [11.449410454095604, 113.04012288115689], [13.631236531497056, 110.85428400108731], [15.793610591676282, 108.62787235445956], [17.9328419390231, 106.35366372289297], [20.044988339489457, 104.02417000990181], [22.12581414767341, 101.63162474082446], [24.170746662872034, 99.16798212401773], [26.174831232119598, 96.6249346039749], [28.13268604654795, 93.9939551436521], [30.038458154625744, 91.26637190196766], [31.885782970438328, 88.43348439174258], [33.66775050634842, 85.48673137140736], [35.376882703845915, 82.4179212443122], [37.00512752841195, 79.21953502212068], [38.54387681842837, 75.88510915613449], [39.984016018120435, 72.40969980063562], [41.31601453558906, 68.79042041254502], [42.530065071025476, 65.02703045030569], [43.61627828905741, 61.12253467661071], [44.56493512797552, 57.083732164728985], [45.36679256665166, 52.92163567903208], [46.01343007478004, 48.65167187109955], [46.49761433860639, 44.293577847380675], [46.813651156185415, 39.870935632190026], [46.95768818262987, 35.41033337696069], [46.927932840707655, 30.940203760525947], [46.72475736435525, 26.48945143209005], [46.350676794608496, 22.08602493914168], [45.810202933573294, 17.755600469499427], [45.10959373108458, 13.520520968033907], [44.256529538764624, 9.399082598861582], [43.2597529, 5.405197100000009]],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "black", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 0.5, "smoothFactor": 1.0, "stroke": true, "weight": 1.4}
).addTo(map_a09e832e68650bb45a643111fa87596d);
var circle_marker_70d243ec8757317bad02ee9c070e4be3 = L.circleMarker(
[47.5761841, 7.5741507],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3.6666666666666665, "stroke": true, "weight": 3}
).addTo(map_a09e832e68650bb45a643111fa87596d);
var popup_ec82991c3494dfa389c3210289d5bbd3 = L.popup({"maxWidth": "100%"});
var html_99dd15bb87bd7187c0cd74ba90dbdad6 = $(`<div id="html_99dd15bb87bd7187c0cd74ba90dbdad6" style="width: 100.0%; height: 100.0%;">Novartis (Switzerland) - 2 papers</div>`)[0];
popup_ec82991c3494dfa389c3210289d5bbd3.setContent(html_99dd15bb87bd7187c0cd74ba90dbdad6);
circle_marker_70d243ec8757317bad02ee9c070e4be3.bindPopup(popup_ec82991c3494dfa389c3210289d5bbd3)
;
var poly_line_ede80df8d19eec9d485586ff636c7851 = L.polyline(
[[-27.497500000000002, 153.01369999999997], [-25.323377790150392, 150.72284657557657], [-23.11510137977649, 148.51345194822716], [-20.877066434397374, 146.37606876685277], [-18.61326749562901, 144.30181032329097], [-16.327354499896643, 142.28231081276908], [-14.022684364108933, 140.30967557365716], [-11.702367972740765, 138.3764254543978], [-9.369313050423145, 136.47543809160322], [-7.026263482806991, 134.59988788002215], [-4.675835682905171, 132.74318569060392], [-2.320552608890751, 130.89891887987983], [0.03712396496138733, 129.06079177979416], [2.3947623315476987, 127.2225666229142], [4.749930304302152, 125.37800471634796], [7.100164661457431, 123.52080761151569], [9.442940001919396, 121.64455801796385], [11.775636428409369, 119.74266027778879], [14.095505464933538, 117.80828036144965], [16.399633606650664, 115.83428558324943], [18.68490289618309, 113.81318459319539], [20.94794792978041, 111.73706872074047], [23.185108732254456, 109.59755647805343], [25.39237902005162, 107.38574404378994], [27.565349524258856, 105.0921659250414], [29.699146307716553, 102.70677182744475], [31.788364434424995, 100.21892814161743], [33.82699800277025, 97.61745544087523], [35.80836852058984, 94.89071696804444], [37.72505497496208, 92.02677709910415], [39.56883082502484, 89.01365275729825], [41.33061558026943, 85.83968380566102], [43.0004515875302, 82.49404900040179], [44.5675199263, 78.96744974820456], [46.02021239480113, 75.25297148771688], [47.346278526127605, 71.3471085204792], [48.53306598711139, 67.250900070081], [49.56786780353681, 62.97107413140259], [50.43837895253036, 58.52103859796716], [51.133247310254056, 53.92151233064055], [51.64268129295068, 49.20057607417971], [51.95905343841156, 44.39296858511807], [52.07742305831944, 39.53856775416091], [51.99589981390127, 34.68016317343188], [51.7157880917097, 29.86079809126909], [51.24148706697485, 25.12107288151151], [50.580163910766245, 20.496812692415688], [49.74125488496055, 16.017404390904858], [48.73587063419302, 11.7049423465171], [47.576184100000006, 7.574150700000018]],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "black", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 0.5, "smoothFactor": 1.0, "stroke": true, "weight": 1.4}
).addTo(map_a09e832e68650bb45a643111fa87596d);
var circle_marker_5609c238921bb88e4787586950925410 = L.circleMarker(
[47.5612651, 7.5752961],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3.6666666666666665, "stroke": true, "weight": 3}
).addTo(map_a09e832e68650bb45a643111fa87596d);
var popup_3390e79be1f538aeaf6f5c0f1939ef2b = L.popup({"maxWidth": "100%"});
var html_2046ef41e595369b9a39da7908a83d14 = $(`<div id="html_2046ef41e595369b9a39da7908a83d14" style="width: 100.0%; height: 100.0%;">University of Basel (Switzerland) - 2 papers</div>`)[0];
popup_3390e79be1f538aeaf6f5c0f1939ef2b.setContent(html_2046ef41e595369b9a39da7908a83d14);
circle_marker_5609c238921bb88e4787586950925410.bindPopup(popup_3390e79be1f538aeaf6f5c0f1939ef2b)
;
var poly_line_5e8786ce86ee0e0cfa027189ea0fed3b = L.polyline(
[[-27.497500000000002, 153.01369999999997], [-25.324189624676997, 150.72169757953725], [-23.116689580296786, 148.51116868511338], [-20.879398593432985, 146.3726693694898], [-18.61631419023323, 144.2973151645599], [-16.331089182763577, 142.2767416254094], [-14.027083236357253, 140.30305479989647], [-11.70740984829768, 138.3687757809871], [-9.374979218799352, 136.46678213455743], [-7.03253757469204, 134.59024799111626], [-4.682703541235447, 132.7325838643951], [-2.328002166697976, 130.88737674578203], [0.029102799654692126, 129.0483306686658], [2.3861777843579794, 127.20920770189514], [4.740788837935864, 125.36376918945359], [7.090471075956902, 123.50571698692659], [9.432697534374693, 121.62863444614663], [11.764846855580876, 119.72592696766742], [14.08416921313739, 117.79076208486254], [16.38774987435862, 115.81600928089472], [18.672469796135637, 113.79418009812457], [20.934962659066805, 111.71736961801957], [23.17156778082449, 109.5772011211534], [25.378278430525512, 107.36477674899174], [27.550685218690248, 105.07063836372458], [29.683914500060677, 102.68474463114148], [31.772562150672208, 100.19647272408872], [33.81062373361702, 97.59465602231296], [35.791423033419626, 94.86767275507668], [37.70754231162469, 92.00360452610619], [39.55075950766819, 88.99048762502446], [41.3120000368206, 85.81668305932214], [42.98131378823433, 82.47139177221209], [44.547891189665215, 78.94533715929765], [46.00013527283962, 75.23162458642673], [47.325808615146016, 71.32676367452086], [48.512273437267645, 67.23180119749418], [49.54683823234639, 62.95346142869539], [50.417213428921485, 58.50513396315705], [51.112061098020156, 53.907502471162275], [51.62160115341272, 49.18859519491036], [51.93821349905866, 44.38308328657274], [52.05695952715296, 39.53076697997801], [51.97594508771211, 34.674355470587784], [51.696464980300895, 29.85681711109305], [51.222903864668965, 25.11869033188873], [50.562410879944345, 20.49575643821595], [49.7244024296214, 16.017378595993137], [48.7199691299641, 11.705646635215544], [47.56126509999999, 7.575296099999946]],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "black", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 0.5, "smoothFactor": 1.0, "stroke": true, "weight": 1.4}
).addTo(map_a09e832e68650bb45a643111fa87596d);
var circle_marker_91a80c45a6c65da67e1d348450a96ae0 = L.circleMarker(
[-33.8791528, 151.2215252],
{"bubblingMouseEvents": true, "color": "cyan", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "cyan", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3.6666666666666665, "stroke": true, "weight": 3}
).addTo(map_a09e832e68650bb45a643111fa87596d);
var popup_c586b6409ce2cb659c830e8c06c860d9 = L.popup({"maxWidth": "100%"});
var html_9ce702c7686adde51402493a538702c8 = $(`<div id="html_9ce702c7686adde51402493a538702c8" style="width: 100.0%; height: 100.0%;">Garvan Institute of Medical Research (Australia) - 2 papers</div>`)[0];
popup_c586b6409ce2cb659c830e8c06c860d9.setContent(html_9ce702c7686adde51402493a538702c8);
circle_marker_91a80c45a6c65da67e1d348450a96ae0.bindPopup(popup_c586b6409ce2cb659c830e8c06c860d9)
;
var poly_line_8ad7bdf4826d769542cb367a88559a9d = L.polyline(
[[-27.497500000000002, 153.01369999999997], [-27.627969010895704, 152.9793575095307], [-27.75842954439255, 152.94493306088089], [-27.88888153305284, 152.91042600746277], [-28.01932490894166, 152.87583569801006], [-28.149759603621387, 152.84116147652787], [-28.280185548146118, 152.8064026822408], [-28.410602673056044, 152.7715586495408], [-28.541010908371742, 152.7366287079351], [-28.67141018358841, 152.70161218199212], [-28.80180042767005, 152.66650839128806], [-28.932181569043525, 152.63131665035246], [-29.062553535592603, 152.5960362686127], [-29.192916254651912, 152.56066655033817], [-29.323269653000782, 152.52520679458405], [-29.4536136568571, 152.48965629513418], [-29.583948191870967, 152.45401434044265], [-29.714273183118404, 152.41828021357594], [-29.84458855509488, 152.38245319215332], [-29.974894231708834, 152.34653254828686], [-30.105190136275063, 152.31051754852115], [-30.235476191508038, 152.27440745377157], [-30.3657523195152, 152.2382015192618], [-30.496018441790078, 152.2018989944621], [-30.626274479205374, 152.16549912302435], [-30.756520352005936, 152.12900114271838], [-30.8867559798017, 152.09240428536657], [-31.016981281560486, 152.0557077767778], [-31.147196175600683, 152.01891083668102], [-31.27740057958393, 151.9820126786566], [-31.40759441050764, 151.9450125100692], [-31.537777584697395, 151.90790953199735], [-31.66795001779937, 151.87070293916418], [-31.79811162477252, 151.83339191986533], [-31.928262319880755, 151.79597565589825], [-32.058402016684965, 151.75845332248832], [-32.18853062803502, 151.7208240882161], [-32.31864806606153, 151.6830871149416], [-32.44875424216766, 151.64524155772972], [-32.57884906702073, 151.60728656477318], [-32.708932450543706, 151.5692212773149], [-32.83900430190667, 151.5310448295703], [-32.969064529518086, 151.49275634864682], [-33.09911304101597, 151.45435495446418], [-33.229149743258986, 151.41583975967274], [-33.35917454231744, 151.37720986957095], [-33.489187343464, 151.3384643820217], [-33.61918805116452, 151.2996023873676], [-33.749176569068595, 151.26062296834561], [-33.8791528, 151.22152519999997]],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "black", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 0.5, "smoothFactor": 1.0, "stroke": true, "weight": 1.4}
).addTo(map_a09e832e68650bb45a643111fa87596d);
var circle_marker_04c327e0dca5f0ad8b2ed5a244ae44c7 = L.circleMarker(
[42.3628605, -71.068753],
{"bubblingMouseEvents": true, "color": "green", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "green", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3.3333333333333335, "stroke": true, "weight": 3}
).addTo(map_a09e832e68650bb45a643111fa87596d);
var popup_49c9cf1b479f018175dea49dabe76b11 = L.popup({"maxWidth": "100%"});
var html_39adb59ffa6a20fd83e03a34d64e3f25 = $(`<div id="html_39adb59ffa6a20fd83e03a34d64e3f25" style="width: 100.0%; height: 100.0%;">Massachusetts General Hospital (United States) - 1 papers</div>`)[0];
popup_49c9cf1b479f018175dea49dabe76b11.setContent(html_39adb59ffa6a20fd83e03a34d64e3f25);
circle_marker_04c327e0dca5f0ad8b2ed5a244ae44c7.bindPopup(popup_49c9cf1b479f018175dea49dabe76b11)
;
var poly_line_655d768bdc3723b3cce3e3e3ddfeecd9 = L.polyline(
[[-27.4975, 153.0137], [42.3628605, -71.068753]],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "black", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 0.5, "smoothFactor": 1.0, "stroke": true, "weight": 1.2}
).addTo(map_a09e832e68650bb45a643111fa87596d);
var circle_marker_0114cc8a6e571d20d5cb1b8aa2e50afc = L.circleMarker(
[41.383587, 2.1940251],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3.3333333333333335, "stroke": true, "weight": 3}
).addTo(map_a09e832e68650bb45a643111fa87596d);
var popup_2772d30c09e8f6c1ebb5a4c8ca805743 = L.popup({"maxWidth": "100%"});
var html_a0f24673226085f5e6193201cfb5e97b = $(`<div id="html_a0f24673226085f5e6193201cfb5e97b" style="width: 100.0%; height: 100.0%;">Hospital del Mar (Spain) - 1 papers</div>`)[0];
popup_2772d30c09e8f6c1ebb5a4c8ca805743.setContent(html_a0f24673226085f5e6193201cfb5e97b);
circle_marker_0114cc8a6e571d20d5cb1b8aa2e50afc.bindPopup(popup_2772d30c09e8f6c1ebb5a4c8ca805743)
;
var poly_line_a14367f301899ef91b052f063306c301 = L.polyline(
[[-27.497500000000002, 153.01369999999997], [-25.563842887213745, 150.29026623218965], [-23.581413345726915, 147.6544428209388], [-21.55586275296976, 145.09789769125382], [-19.492416902697997, 142.6124329901827], [-17.395918351736896, 140.19004234181466], [-15.270869661641461, 137.82294120991958], [-13.121476328434918, 135.5035766635309], [-10.951688667687003, 133.22462166145783], [-8.765242275062565, 130.9789579087518], [-6.565696938756766, 128.75965043132476], [-4.35647406209955, 126.55991627318326], [-2.1408927805880427, 124.37308913669233], [0.0777949576425435, 122.1925813454443], [2.296370024343045, 120.01184419594165], [4.511612100962092, 117.82432756473179], [6.720265655398094, 115.62343954205801], [8.919005535862086, 113.40250686653508], [11.10440182778528, 111.15473703800126], [13.272883653225582, 108.87318319287749], [15.420701648610951, 106.55071314818235], [17.543888943900654, 104.1799844707134], [19.638220595616648, 101.75342802258058], [21.699171612633407, 99.26324318747061], [23.721873975910338, 96.70140890035327], [25.70107341389961, 94.05971567622521], [27.631087178903073, 91.32982501827928], [29.50576470031621, 88.50336378667669], [31.318453786342193, 85.57206214831604], [33.06197600828566, 82.52794431304119], [34.728616002075604, 79.36358095254354], [36.31013058005285, 76.07241039075416], [37.79778460612248, 72.64913160556864], [39.182421293335224, 69.09016501395138], [40.454574568382775, 65.39416634359588], [41.60462995553082, 61.56256462019974], [42.62303759125683, 57.60007850221882], [43.500576152924324, 53.51514853512026], [44.22865968674472, 49.32021079467097], [44.79967115953279, 45.031735492712414], [45.207298375337174, 40.66996775542327], [45.4468416612061, 36.258339511037434], [45.5154605814634, 31.82256855024582], [45.41233045696857, 27.38951437027481], [45.13868886286566, 22.985906846590183], [44.69776602933507, 18.637089530801518], [44.09460820804084, 14.365916362575035], [43.33581614476996, 10.19190977110918], [42.42922907911934, 6.130739107295312], [41.383587, 2.194025099999976]],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "black", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 0.5, "smoothFactor": 1.0, "stroke": true, "weight": 1.2}
).addTo(map_a09e832e68650bb45a643111fa87596d);
var circle_marker_b82213f2911bb39147aeb84453e8cd22 = L.circleMarker(
[-27.4845102, 153.0256839],
{"bubblingMouseEvents": true, "color": "cyan", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "cyan", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3.3333333333333335, "stroke": true, "weight": 3}
).addTo(map_a09e832e68650bb45a643111fa87596d);
var popup_6b83586c4ae0a643ef92ca83e7a12776 = L.popup({"maxWidth": "100%"});
var html_9fa0eb44583a5c1100989b8738433c8d = $(`<div id="html_9fa0eb44583a5c1100989b8738433c8d" style="width: 100.0%; height: 100.0%;">Children’s Health Queensland (Australia) - 1 papers</div>`)[0];
popup_6b83586c4ae0a643ef92ca83e7a12776.setContent(html_9fa0eb44583a5c1100989b8738433c8d);
circle_marker_b82213f2911bb39147aeb84453e8cd22.bindPopup(popup_6b83586c4ae0a643ef92ca83e7a12776)
;
var poly_line_e9c04d7c3e9197b04fb03b2c237d31d7 = L.polyline(
[[-27.497500000000002, 153.01369999999997], [-27.497234912301746, 153.01394459765515], [-27.49696982417584, 153.0141891941323], [-27.4967047356223, 153.01443378943145], [-27.496439646641125, 153.01467838355245], [-27.496174557232322, 153.01492297649543], [-27.495909467395897, 153.01516756826038], [-27.49564437713187, 153.01541215884743], [-27.495379286440233, 153.01565674825633], [-27.495114195320998, 153.01590133648745], [-27.49484910377417, 153.01614592354053], [-27.49458401179976, 153.01639050941571], [-27.494318919397767, 153.0166350941131], [-27.494053826568205, 153.01687967763246], [-27.49378873331109, 153.01712425997403], [-27.493523639626407, 153.01736884113757], [-27.493258545514173, 153.01761342112343], [-27.492993450974396, 153.0178579999315], [-27.49272835600709, 153.01810257756165], [-27.492463260612247, 153.01834715401412], [-27.492198164789883, 153.0185917292888], [-27.491933068540007, 153.01883630338557], [-27.491667971862615, 153.01908087630477], [-27.49140287475773, 153.01932544804617], [-27.491137777225344, 153.0195700186099], [-27.490872679265472, 153.01981458799605], [-27.49060758087812, 153.0200591562044], [-27.49034248206329, 153.0203037232351], [-27.490077382820996, 153.0205482890882], [-27.489812283151238, 153.02079285376362], [-27.48954718305402, 153.0210374172616], [-27.489282082529368, 153.02128197958177], [-27.489016981577276, 153.0215265407246], [-27.488751880197743, 153.02177110068976], [-27.488486778390794, 153.02201565947735], [-27.488221676156414, 153.02226021708748], [-27.48795657349463, 153.02250477352015], [-27.487691470405434, 153.02274932877538], [-27.487426366888844, 153.02299388285303], [-27.48716126294486, 153.02323843575323], [-27.486896158573494, 153.0234829874761], [-27.486631053774747, 153.0237275380215], [-27.486365948548634, 153.02397208738955], [-27.48610084289515, 153.02421663558016], [-27.48583573681431, 153.02446118259343], [-27.485570630306118, 153.02470572842935], [-27.485305523370585, 153.02495027308794], [-27.485040416007724, 153.02519481656918], [-27.484775308217518, 153.0254393588732], [-27.4845102, 153.0256839]],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "black", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 0.5, "smoothFactor": 1.0, "stroke": true, "weight": 1.2}
).addTo(map_a09e832e68650bb45a643111fa87596d);
var circle_marker_9ef732fe83ecd94c95f63ed99685f930 = L.circleMarker(
[48.8553937, 2.3316437],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3.3333333333333335, "stroke": true, "weight": 3}
).addTo(map_a09e832e68650bb45a643111fa87596d);
var popup_5326335af61a0f98b152a4656366d33f = L.popup({"maxWidth": "100%"});
var html_88f7cea714b157ebfae85268aebafc0f = $(`<div id="html_88f7cea714b157ebfae85268aebafc0f" style="width: 100.0%; height: 100.0%;">Université Paris Cité (France) - 1 papers</div>`)[0];
popup_5326335af61a0f98b152a4656366d33f.setContent(html_88f7cea714b157ebfae85268aebafc0f);
circle_marker_9ef732fe83ecd94c95f63ed99685f930.bindPopup(popup_5326335af61a0f98b152a4656366d33f)
;
var poly_line_2f5078c00223a8709a941b4f6f96f624 = L.polyline(
[[-27.497500000000002, 153.01369999999997], [-25.10760325894427, 150.9185726577607], [-22.689405430803255, 148.904273374073], [-20.246884643402666, 146.9602020741089], [-17.783613455200506, 145.07660007081722], [-15.30282565286237, 143.2444424564261], [-12.807474822258703, 141.4553327797047], [-10.300285978845404, 139.7014018784339], [-7.783801473079274, 137.9752115606334], [-5.260422295890526, 136.26966306775648], [-2.7324458177145163, 134.57790977223453], [-0.20210091337653907, 132.89327326562557], [2.3284186395858044, 131.20916181785776], [4.856921646554961, 129.5189900907559], [7.381187046494773, 127.816098944916], [9.898930710474733, 126.09367417590363], [12.407770650685483, 124.34466305280182], [14.90518976092388, 122.56168761962942], [17.388495147806857, 120.73695388105318], [19.85477303308141, 118.86215626707053], [22.30083811693426, 116.92837721721571], [24.72317620039124, 114.92598243261807], [27.11787878957109, 112.84451344258355], [29.480568375711947, 110.67258080188105], [31.80631315131998, 108.39776372168603], [34.08953016151039, 106.00652556268324], [36.32387641833266, 103.48415977716729], [38.50212849807966, 100.81478800916943], [40.6160528413448, 97.98144151263352], [42.65627170452045, 94.96626889665288], [44.612133851126835, 91.75092678697865], [46.47160499035966, 88.31722315763318], [48.22120084593445, 84.64809112773276], [49.84599521222065, 80.72896544567698], [51.329744982605966, 76.54960179761895], [52.655180709170885, 72.10630480810607], [53.80450934946355, 67.40440217850232], [54.76015839284162, 62.46062498754111], [55.505751436271645, 57.304868051759286], [56.02724460352703, 51.98069514165775], [56.31408329753879, 46.54403326384045], [56.36018581991113, 41.05984064302584], [56.164555629557064, 35.59708277334539], [55.73138487396931, 30.222903785998597], [55.06962496645268, 24.997167570622878], [54.19212282825994, 19.968409336629634], [53.11450563715092, 15.171757041857632], [51.85401651811773, 10.628800089295055], [50.42846559686391, 6.348947648902254], [48.8553937, 2.3316436999999723]],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "black", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 0.5, "smoothFactor": 1.0, "stroke": true, "weight": 1.2}
).addTo(map_a09e832e68650bb45a643111fa87596d);
var circle_marker_f0c88c17e25cd23ff2bbc17fe7df4134 = L.circleMarker(
[51.4819473, -0.2000304],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3.3333333333333335, "stroke": true, "weight": 3}
).addTo(map_a09e832e68650bb45a643111fa87596d);
var popup_2c8a94cd2f590f1ca581294f9dc027ad = L.popup({"maxWidth": "100%"});
var html_e15f7f53321223cce5f1401170218a84 = $(`<div id="html_e15f7f53321223cce5f1401170218a84" style="width: 100.0%; height: 100.0%;">British Heart Foundation (United Kingdom) - 1 papers</div>`)[0];
popup_2c8a94cd2f590f1ca581294f9dc027ad.setContent(html_e15f7f53321223cce5f1401170218a84);
circle_marker_f0c88c17e25cd23ff2bbc17fe7df4134.bindPopup(popup_2c8a94cd2f590f1ca581294f9dc027ad)
;
var poly_line_baa32ae6d86eb17df66bc7091593fe73 = L.polyline(
[[-27.497500000000002, 153.01369999999997], [-24.93203296814603, 151.20691978254763], [-22.345678619309354, 149.47415219308346], [-19.741571189765775, 147.80476395394112], [-17.122498269349695, 146.18914059089616], [-14.490964497290433, 144.6185194105542], [-11.849245729669455, 143.08484008786297], [-9.199435619045119, 141.58061063690002], [-6.5434862469352435, 140.09878629529635], [-3.883244205644326, 138.63265880944334], [-1.2204833347937305, 137.17575365942162], [1.4430648243933017, 135.72173284649853], [4.105681891743094, 134.26430094516968], [6.7656339189953405, 132.7971121753311], [9.421142177715677, 131.3136762679694], [12.070352552318973, 129.8072608767592], [14.711302566341462, 128.27078823169973], [17.34188496877862, 126.69672365042902], [19.959806661089438, 125.07695343993032], [22.562541550057986, 123.4026496746344], [25.14727566290553, 121.6641193920891], [27.71084255654365, 119.85063601341699], [30.24964669548174, 117.95025145036323], [32.759572076582266, 115.94958868852268], [35.23587297899399, 113.83361708531936], [37.67304338873917, 111.58541688128594], [40.064661532409126, 109.185946526311], [42.403206310391056, 106.61383785086082], [44.67984368718649, 103.84526186056314], [46.88418399084539, 100.85393439300469], [49.0040166909198, 97.61136825199299], [51.02503909903913, 94.08752713184776], [52.9306114136117, 90.25209175476414], [54.70159415294401, 86.07659357698708], [56.31635494000026, 81.53766884164963], [57.751064508211115, 76.62157026847524], [58.980422129216024, 71.32976002389557], [59.978931797956484, 65.68483957649573], [60.722759363540945, 59.73533056520046], [61.192020529567934, 53.55724750956733], [61.373117173094535, 47.25057276238965], [61.26056623239231, 40.93008783198536], [60.85779128876548, 34.71222126908299], [60.176624635041016, 28.70143101480835], [59.23568001754691, 22.979869546178747], [58.0580820818094, 17.60251354245736], [56.669124364056046, 12.59768375400472], [55.09428960075621, 7.97127008870973], [53.35783508837827, 3.712553325296426], [51.48194730000001, -0.20003039999994598]],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "black", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 0.5, "smoothFactor": 1.0, "stroke": true, "weight": 1.2}
).addTo(map_a09e832e68650bb45a643111fa87596d);
var circle_marker_f14611fd8e05fbd45a2ef89ad1c9637e = L.circleMarker(
[-27.5124505, 153.0459444],
{"bubblingMouseEvents": true, "color": "cyan", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "cyan", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3.3333333333333335, "stroke": true, "weight": 3}
).addTo(map_a09e832e68650bb45a643111fa87596d);
var popup_cb6211d7d32386c791cf8e32c7078abe = L.popup({"maxWidth": "100%"});
var html_e43280b9e0df3f56e4b518c119d6c5f3 = $(`<div id="html_e43280b9e0df3f56e4b518c119d6c5f3" style="width: 100.0%; height: 100.0%;">Greenslopes Private Hospital (Australia) - 1 papers</div>`)[0];
popup_cb6211d7d32386c791cf8e32c7078abe.setContent(html_e43280b9e0df3f56e4b518c119d6c5f3);
circle_marker_f14611fd8e05fbd45a2ef89ad1c9637e.bindPopup(popup_cb6211d7d32386c791cf8e32c7078abe)
;
var poly_line_4c4a33d2d43d708877cf29c9d6119c7f = L.polyline(
[[-27.497500000000002, 153.01369999999997], [-27.497805186534713, 153.01435796140527], [-27.498110369974917, 153.015015926459], [-27.49841555032056, 153.01567389516129], [-27.49872072757157, 153.016331867512], [-27.499025901727908, 153.01698984351128], [-27.4993310727895, 153.0176478231591], [-27.499636240756292, 153.0183058064556], [-27.49994140562824, 153.01896379340064], [-27.50024656740527, 153.01962178399435], [-27.500551726087327, 153.02027977823684], [-27.500856881674366, 153.020937776128], [-27.501162034166324, 153.02159577766793], [-27.50146718356313, 153.02225378285664], [-27.501772329864743, 153.02291179169413], [-27.5020774730711, 153.0235698041805], [-27.50238261318214, 153.0242278203158], [-27.502687750197815, 153.02488584009996], [-27.502992884118058, 153.02554386353302], [-27.503298014942814, 153.02620189061508], [-27.50360314267203, 153.02685992134616], [-27.50390826730565, 153.02751795572624], [-27.504213388843603, 153.02817599375544], [-27.504518507285848, 153.02883403543365], [-27.50482362263232, 153.02949208076097], [-27.505128734882955, 153.03015012973754], [-27.505433844037707, 153.03080818236322], [-27.505738950096514, 153.03146623863825], [-27.50604405305932, 153.0321242985624], [-27.506349152926067, 153.03278236213578], [-27.506654249696698, 153.03344042935862], [-27.50695934337115, 153.0340985002307], [-27.50726443394937, 153.03475657475212], [-27.507569521431297, 153.035414652923], [-27.507874605816884, 153.03607273474324], [-27.508179687106065, 153.03673082021305], [-27.508484765298785, 153.03738890933232], [-27.50878984039499, 153.03804700210105], [-27.509094912394612, 153.03870509851936], [-27.509399981297605, 153.03936319858724], [-27.509705047103896, 153.0400213023047], [-27.510010109813447, 153.04067940967195], [-27.510315169426192, 153.04133752068878], [-27.51062022594207, 153.0419956353553], [-27.510925279361032, 153.04265375367152], [-27.51123032968301, 153.04331187563753], [-27.511535376907954, 153.04397000125346], [-27.511840421035807, 153.04462813051907], [-27.51214546206651, 153.0452862634346], [-27.512450500000003, 153.04594440000005]],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "black", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 0.5, "smoothFactor": 1.0, "stroke": true, "weight": 1.2}
).addTo(map_a09e832e68650bb45a643111fa87596d);
var circle_marker_26f4bd71ca81cad957e78078ebbe5e07 = L.circleMarker(
[51.5315459, -0.1287946],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3.3333333333333335, "stroke": true, "weight": 3}
).addTo(map_a09e832e68650bb45a643111fa87596d);
var popup_56c855900cec65da39a943ae0c57b173 = L.popup({"maxWidth": "100%"});
var html_d89a36ade34be1e950d5477b7f8a2d7d = $(`<div id="html_d89a36ade34be1e950d5477b7f8a2d7d" style="width: 100.0%; height: 100.0%;">The Francis Crick Institute (United Kingdom) - 1 papers</div>`)[0];
popup_56c855900cec65da39a943ae0c57b173.setContent(html_d89a36ade34be1e950d5477b7f8a2d7d);
circle_marker_26f4bd71ca81cad957e78078ebbe5e07.bindPopup(popup_56c855900cec65da39a943ae0c57b173)
;
var poly_line_87f5c85d02c2180c48470181b786420e = L.polyline(
[[-27.497500000000002, 153.01369999999997], [-24.93264385632076, 151.20864026107415], [-22.346939592082894, 149.4775069626885], [-19.743514802492285, 147.80968116114775], [-17.125151213292206, 146.19556146250522], [-14.494348224980289, 144.62639719059302], [-11.853376950040792, 143.09413916684207], [-9.204326679561678, 141.59130586902086], [-6.549145416130288, 140.1108624971339], [-3.8896758660781487, 138.64611043389777], [-1.227688093342147, 137.1905846404478], [1.435090104854068, 135.7379566127173], [4.096944137890135, 134.28194060358248], [6.756143971139444, 132.81620086980183], [9.410914996408835, 131.33425772074838], [12.059407514369648, 129.82939012497195], [14.699663860280404, 128.29453257421346], [17.329582103380186, 126.72216382353747], [19.946875104631463, 125.10418504234451], [22.549023522703823, 123.4317848624438], [25.133221109988757, 121.69528886121986], [27.69631033662348, 119.88399127830519], [30.23470602366195, 117.9859674093259], [32.74430427029695, 115.98786643280528], [35.2203735592922, 113.87468685104454], [37.65742459316445, 111.62954094815666], [40.04905529247295, 109.23342171469017], [42.38776773153472, 106.6649970335942], [44.66475503243251, 103.9004735553558], [46.86965909616384, 100.91359900284726], [48.99030560918516, 97.6759088600295], [51.01243255274139, 94.15737197584224], [52.919444306391696, 90.3276447825715], [54.69224693604245, 86.158189252174], [56.30925109646251, 81.62550845054682], [57.74666196658386, 76.71564059140667], [58.979196391992254, 71.42974253719876], [59.98134948043222, 65.79002916946752], [60.72924314041404, 59.84459354400849], [61.20291004735076, 53.669051487169554], [61.38863402250528, 47.363106974375], [61.280792317074784, 41.041460557420805], [60.882667111543455, 34.82068582064062], [60.20596781224557, 28.805576338383275], [59.269217947362854, 23.078727733903065], [58.09548951182446, 17.69557305119565], [56.71005757307153, 12.684830060100012], [55.13841239192927, 8.052689516535793], [53.404835437208796, 3.788631752516494], [51.53154589999999, -0.128794599999992]],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "black", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 0.5, "smoothFactor": 1.0, "stroke": true, "weight": 1.2}
).addTo(map_a09e832e68650bb45a643111fa87596d);
var circle_marker_ae4e54928266c08faae86fe7877099fe = L.circleMarker(
[51.3210313, 12.394923],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3.3333333333333335, "stroke": true, "weight": 3}
).addTo(map_a09e832e68650bb45a643111fa87596d);
var popup_21a218aa2f03f6990f568de2039ff4fe = L.popup({"maxWidth": "100%"});
var html_041637f5ff393fd983696349b9ed4b1f = $(`<div id="html_041637f5ff393fd983696349b9ed4b1f" style="width: 100.0%; height: 100.0%;">Max Planck Institute for Evolutionary Anthropology (Germany) - 1 papers</div>`)[0];
popup_21a218aa2f03f6990f568de2039ff4fe.setContent(html_041637f5ff393fd983696349b9ed4b1f);
circle_marker_ae4e54928266c08faae86fe7877099fe.bindPopup(popup_21a218aa2f03f6990f568de2039ff4fe)
;
var poly_line_b11c5f85ff904b63eef0bdc3f66c3c93 = L.polyline(
[[-27.497500000000002, 153.01369999999997], [-25.267085546597723, 150.94506377382095], [-23.008888426499144, 148.95155245307387], [-20.726563156667208, 147.02403970789612], [-18.423415190265295, 145.1540486320273], [-16.102453739433816, 143.33368158305166], [-13.766438808953447, 141.55554830065967], [-11.417923185643591, 139.81269449914112], [-9.059290135290254, 138.0985321507883], [-6.692787535625375, 136.406772001666], [-4.320559136942501, 134.73135840342934], [-1.9446736018513493, 133.06640624023544], [0.4328480610378724, 131.40613953205616], [2.810006084136047, 129.7448311726555], [5.184795983122923, 128.07674319081912], [7.5551824980966105, 126.3960668944651], [9.919072875252235, 124.69686226358374], [12.274288917567752, 122.97299600074871], [14.618537209432068, 121.21807773516707], [16.9493768877392, 119.42539402349132], [19.264184293467356, 117.5878400228828], [21.560113797895482, 115.6978490660008], [23.83405406416358, 113.74732089600695], [26.082578990300156, 111.72755009429488], [28.301892603526564, 109.62915735073818], [30.48776726715941, 107.44202781013212], [32.63547476466997, 105.15526293236178], [34.739710203842655, 102.75715530247442], [36.7945093260494, 100.23519979345201], [38.79316082966231, 97.5761595373607], [40.72811687063128, 94.76621125902852], [42.59090715441483, 91.79120128895875], [44.37206513537125, 88.63704999053618], [46.06107886156248, 85.29034638263852], [47.64638380112751, 81.7391729326173], [49.11542000680731, 77.97418765600241], [50.45478000506945, 73.98996031829085], [51.65047475829446, 69.7865057543371], [52.68834004879929, 65.37087870117989], [53.5545915913909, 60.75860033299682], [54.236512331938194, 55.97460270238662], [54.72322152944189, 51.053345961713035], [55.00643965753745, 46.0378307456499], [55.08113842348836, 40.97741686368249], [54.9459647932098, 35.92463834207149], [54.60335890839271, 30.931482721530188], [54.05934260453526, 26.045764200658482], [53.32301999328031, 21.308191276425873], [52.405882333763465, 16.750523633989246], [51.321031299999994, 12.394922999999949]],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "black", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 0.5, "smoothFactor": 1.0, "stroke": true, "weight": 1.2}
).addTo(map_a09e832e68650bb45a643111fa87596d);
var circle_marker_3d208929991256c2105a68440a38ffc3 = L.circleMarker(
[28.599591, -81.1971284],
{"bubblingMouseEvents": true, "color": "green", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "green", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3.3333333333333335, "stroke": true, "weight": 3}
).addTo(map_a09e832e68650bb45a643111fa87596d);
var popup_75e67af7949597f718deb9e2f1f144ab = L.popup({"maxWidth": "100%"});
var html_ff4c059952bb1b798abb9aeefcabec82 = $(`<div id="html_ff4c059952bb1b798abb9aeefcabec82" style="width: 100.0%; height: 100.0%;">University of Central Florida (United States) - 1 papers</div>`)[0];
popup_75e67af7949597f718deb9e2f1f144ab.setContent(html_ff4c059952bb1b798abb9aeefcabec82);
circle_marker_3d208929991256c2105a68440a38ffc3.bindPopup(popup_75e67af7949597f718deb9e2f1f144ab)
;
var poly_line_35bd82685f6592d5afbbeebffc684002 = L.polyline(
[[-27.4975, 153.0137], [28.599591, -81.1971284]],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "black", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 0.5, "smoothFactor": 1.0, "stroke": true, "weight": 1.2}
).addTo(map_a09e832e68650bb45a643111fa87596d);
var circle_marker_f32547cd84961c3386fd5e26e1430e11 = L.circleMarker(
[33.5016153, -86.8060476],
{"bubblingMouseEvents": true, "color": "green", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "green", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3.3333333333333335, "stroke": true, "weight": 3}
).addTo(map_a09e832e68650bb45a643111fa87596d);
var popup_4e93771bfaa4306987ddbef39e8f2583 = L.popup({"maxWidth": "100%"});
var html_afac9f7faa6ad7c094daca830036c7a0 = $(`<div id="html_afac9f7faa6ad7c094daca830036c7a0" style="width: 100.0%; height: 100.0%;">University of Alabama at Birmingham (United States) - 1 papers</div>`)[0];
popup_4e93771bfaa4306987ddbef39e8f2583.setContent(html_afac9f7faa6ad7c094daca830036c7a0);
circle_marker_f32547cd84961c3386fd5e26e1430e11.bindPopup(popup_4e93771bfaa4306987ddbef39e8f2583)
;
var poly_line_f130dd829d0f098e1a5146dba2707919 = L.polyline(
[[-27.4975, 153.0137], [33.5016153, -86.8060476]],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "black", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 0.5, "smoothFactor": 1.0, "stroke": true, "weight": 1.2}
).addTo(map_a09e832e68650bb45a643111fa87596d);
var circle_marker_29e929ab150fd0d0dfda698bf765769f = L.circleMarker(
[37.4313138, -122.1693654],
{"bubblingMouseEvents": true, "color": "green", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "green", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3.3333333333333335, "stroke": true, "weight": 3}
).addTo(map_a09e832e68650bb45a643111fa87596d);
var popup_f9e82d6810ba997f3e25d13d192be88d = L.popup({"maxWidth": "100%"});
var html_b3476a06eb7ea8af3ae72633e6144b5c = $(`<div id="html_b3476a06eb7ea8af3ae72633e6144b5c" style="width: 100.0%; height: 100.0%;">Stanford University (United States) - 1 papers</div>`)[0];
popup_f9e82d6810ba997f3e25d13d192be88d.setContent(html_b3476a06eb7ea8af3ae72633e6144b5c);