-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtest.gexf
5253 lines (5253 loc) · 398 KB
/
test.gexf
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
<?xml version='1.0' encoding='utf-8'?>
<gexf xmlns="http://www.gexf.net/1.2draft" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.gexf.net/1.2draft http://www.gexf.net/1.2draft/gexf.xsd" version="1.2">
<meta lastmodifieddate="2022-10-08">
<creator>NetworkX 2.8.4</creator>
</meta>
<graph defaultedgetype="undirected" mode="static" name="">
<nodes>
<node id="Archer Queen" label="Archer Queen" />
<node id="Archers" label="Archers" />
<node id="Arrows" label="Arrows" />
<node id="Baby Dragon" label="Baby Dragon" />
<node id="Balloon" label="Balloon" />
<node id="Bandit" label="Bandit" />
<node id="Barbarian Barrel" label="Barbarian Barrel" />
<node id="Barbarians" label="Barbarians" />
<node id="Bats" label="Bats" />
<node id="Battle Ram" label="Battle Ram" />
<node id="Bomb Tower" label="Bomb Tower" />
<node id="Bomber" label="Bomber" />
<node id="Bowler" label="Bowler" />
<node id="Cannon" label="Cannon" />
<node id="Cannon Cart" label="Cannon Cart" />
<node id="Clone" label="Clone" />
<node id="Dark Prince" label="Dark Prince" />
<node id="Dart Goblin" label="Dart Goblin" />
<node id="Earthquake" label="Earthquake" />
<node id="Electro Dragon" label="Electro Dragon" />
<node id="Electro Giant" label="Electro Giant" />
<node id="Electro Spirit" label="Electro Spirit" />
<node id="Electro Wizard" label="Electro Wizard" />
<node id="Elite Barbarians" label="Elite Barbarians" />
<node id="Elixir Collector" label="Elixir Collector" />
<node id="Fire Spirit" label="Fire Spirit" />
<node id="Fireball" label="Fireball" />
<node id="Firecracker" label="Firecracker" />
<node id="Fisherman" label="Fisherman" />
<node id="Flying Machine" label="Flying Machine" />
<node id="Freeze" label="Freeze" />
<node id="Furnace" label="Furnace" />
<node id="Giant" label="Giant" />
<node id="Giant Skeleton" label="Giant Skeleton" />
<node id="Giant Snowball" label="Giant Snowball" />
<node id="Goblin Barrel" label="Goblin Barrel" />
<node id="Goblin Cage" label="Goblin Cage" />
<node id="Goblin Drill" label="Goblin Drill" />
<node id="Goblin Gang" label="Goblin Gang" />
<node id="Goblin Giant" label="Goblin Giant" />
<node id="Goblin Hut" label="Goblin Hut" />
<node id="Goblins" label="Goblins" />
<node id="Golem" label="Golem" />
<node id="Graveyard" label="Graveyard" />
<node id="Guards" label="Guards" />
<node id="Heal Spirit" label="Heal Spirit" />
<node id="Hog Rider" label="Hog Rider" />
<node id="Hunter" label="Hunter" />
<node id="Ice Golem" label="Ice Golem" />
<node id="Ice Spirit" label="Ice Spirit" />
<node id="Inferno Dragon" label="Inferno Dragon" />
<node id="Inferno Tower" label="Inferno Tower" />
<node id="Knight" label="Knight" />
<node id="Lava Hound" label="Lava Hound" />
<node id="Lightning" label="Lightning" />
<node id="Lumberjack" label="Lumberjack" />
<node id="Magic Archer" label="Magic Archer" />
<node id="Mega Knight" label="Mega Knight" />
<node id="Mega Minion" label="Mega Minion" />
<node id="Miner" label="Miner" />
<node id="Mini P.E.K.K.A" label="Mini P.E.K.K.A" />
<node id="Minion Horde" label="Minion Horde" />
<node id="Minions" label="Minions" />
<node id="Mirror" label="Mirror" />
<node id="Mortar" label="Mortar" />
<node id="Mother Witch" label="Mother Witch" />
<node id="Musketeer" label="Musketeer" />
<node id="Night Witch" label="Night Witch" />
<node id="P.E.K.K.A" label="P.E.K.K.A" />
<node id="Poison" label="Poison" />
<node id="Prince" label="Prince" />
<node id="Princess" label="Princess" />
<node id="Rage" label="Rage" />
<node id="Ram Rider" label="Ram Rider" />
<node id="Rocket" label="Rocket" />
<node id="Royal Delivery" label="Royal Delivery" />
<node id="Royal Ghost" label="Royal Ghost" />
<node id="Royal Giant" label="Royal Giant" />
<node id="Royal Hogs" label="Royal Hogs" />
<node id="Royal Recruits" label="Royal Recruits" />
<node id="Skeleton Army" label="Skeleton Army" />
<node id="Skeleton Barrel" label="Skeleton Barrel" />
<node id="Skeleton Dragons" label="Skeleton Dragons" />
<node id="Skeletons" label="Skeletons" />
<node id="Sparky" label="Sparky" />
<node id="Spear Goblins" label="Spear Goblins" />
<node id="Tesla" label="Tesla" />
<node id="The Log" label="The Log" />
<node id="Three Musketeers" label="Three Musketeers" />
<node id="Tombstone" label="Tombstone" />
<node id="Tornado" label="Tornado" />
<node id="Valkyrie" label="Valkyrie" />
<node id="Wall Breakers" label="Wall Breakers" />
<node id="X-Bow" label="X-Bow" />
<node id="Zap" label="Zap" />
<node id="Zappies" label="Zappies" />
<node id="Barbarian Hut" label="Barbarian Hut" />
<node id="Golden Knight" label="Golden Knight" />
<node id="Ice Wizard" label="Ice Wizard" />
<node id="Mighty Miner" label="Mighty Miner" />
<node id="Rascals" label="Rascals" />
<node id="Skeleton King" label="Skeleton King" />
<node id="Battle Healer" label="Battle Healer" />
<node id="Elixir Golem" label="Elixir Golem" />
<node id="Executioner" label="Executioner" />
<node id="Witch" label="Witch" />
<node id="Wizard" label="Wizard" />
</nodes>
<edges>
<edge source="Archer Queen" target="Archers" id="0" weight="1.0" />
<edge source="Archer Queen" target="Arrows" id="1" weight="167.0" />
<edge source="Archer Queen" target="Baby Dragon" id="2" weight="37.0" />
<edge source="Archer Queen" target="Balloon" id="3" weight="31.0" />
<edge source="Archer Queen" target="Bandit" id="4" weight="178.0" />
<edge source="Archer Queen" target="Barbarian Barrel" id="5" weight="142.0" />
<edge source="Archer Queen" target="Barbarians" id="6" weight="35.0" />
<edge source="Archer Queen" target="Bats" id="7" weight="163.0" />
<edge source="Archer Queen" target="Battle Ram" id="8" weight="64.0" />
<edge source="Archer Queen" target="Bomb Tower" id="9" weight="30.0" />
<edge source="Archer Queen" target="Bomber" id="10" weight="174.0" />
<edge source="Archer Queen" target="Bowler" id="11" weight="15.0" />
<edge source="Archer Queen" target="Cannon" id="12" weight="601.0" />
<edge source="Archer Queen" target="Cannon Cart" id="13" weight="51.0" />
<edge source="Archer Queen" target="Clone" id="14" weight="4.0" />
<edge source="Archer Queen" target="Dark Prince" id="15" weight="286.0" />
<edge source="Archer Queen" target="Dart Goblin" id="16" weight="3.0" />
<edge source="Archer Queen" target="Earthquake" id="17" weight="611.0" />
<edge source="Archer Queen" target="Electro Dragon" id="18" weight="3.0" />
<edge source="Archer Queen" target="Electro Giant" id="19" weight="288.0" />
<edge source="Archer Queen" target="Electro Spirit" id="20" weight="491.0" />
<edge source="Archer Queen" target="Electro Wizard" id="21" weight="60.0" />
<edge source="Archer Queen" target="Elite Barbarians" id="22" weight="85.0" />
<edge source="Archer Queen" target="Elixir Collector" id="23" weight="136.0" />
<edge source="Archer Queen" target="Fire Spirit" id="24" weight="848.0" />
<edge source="Archer Queen" target="Fireball" id="25" weight="441.0" />
<edge source="Archer Queen" target="Firecracker" id="26" weight="14.0" />
<edge source="Archer Queen" target="Fisherman" id="27" weight="238.0" />
<edge source="Archer Queen" target="Flying Machine" id="28" weight="3.0" />
<edge source="Archer Queen" target="Freeze" id="29" weight="25.0" />
<edge source="Archer Queen" target="Furnace" id="30" weight="8.0" />
<edge source="Archer Queen" target="Giant" id="31" weight="97.0" />
<edge source="Archer Queen" target="Giant Skeleton" id="32" weight="397.0" />
<edge source="Archer Queen" target="Giant Snowball" id="33" weight="180.0" />
<edge source="Archer Queen" target="Goblin Barrel" id="34" weight="6.0" />
<edge source="Archer Queen" target="Goblin Cage" id="35" weight="139.0" />
<edge source="Archer Queen" target="Goblin Drill" id="36" weight="49.0" />
<edge source="Archer Queen" target="Goblin Gang" id="37" weight="4.0" />
<edge source="Archer Queen" target="Goblin Giant" id="38" weight="9.0" />
<edge source="Archer Queen" target="Goblin Hut" id="39" weight="1.0" />
<edge source="Archer Queen" target="Goblins" id="40" weight="15.0" />
<edge source="Archer Queen" target="Golem" id="41" weight="17.0" />
<edge source="Archer Queen" target="Graveyard" id="42" weight="114.0" />
<edge source="Archer Queen" target="Guards" id="43" weight="160.0" />
<edge source="Archer Queen" target="Heal Spirit" id="44" weight="62.0" />
<edge source="Archer Queen" target="Hog Rider" id="45" weight="322.0" />
<edge source="Archer Queen" target="Hunter" id="46" weight="111.0" />
<edge source="Archer Queen" target="Ice Golem" id="47" weight="78.0" />
<edge source="Archer Queen" target="Ice Spirit" id="48" weight="51.0" />
<edge source="Archer Queen" target="Inferno Dragon" id="49" weight="53.0" />
<edge source="Archer Queen" target="Inferno Tower" id="50" weight="23.0" />
<edge source="Archer Queen" target="Knight" id="51" weight="73.0" />
<edge source="Archer Queen" target="Lava Hound" id="52" weight="3.0" />
<edge source="Archer Queen" target="Lightning" id="53" weight="380.0" />
<edge source="Archer Queen" target="Lumberjack" id="54" weight="30.0" />
<edge source="Archer Queen" target="Magic Archer" id="55" weight="69.0" />
<edge source="Archer Queen" target="Mega Knight" id="56" weight="98.0" />
<edge source="Archer Queen" target="Mega Minion" id="57" weight="33.0" />
<edge source="Archer Queen" target="Miner" id="58" weight="353.0" />
<edge source="Archer Queen" target="Mini P.E.K.K.A" id="59" weight="166.0" />
<edge source="Archer Queen" target="Minion Horde" id="60" weight="4.0" />
<edge source="Archer Queen" target="Minions" id="61" weight="80.0" />
<edge source="Archer Queen" target="Mirror" id="62" weight="220.0" />
<edge source="Archer Queen" target="Mortar" id="63" weight="326.0" />
<edge source="Archer Queen" target="Mother Witch" id="64" weight="23.0" />
<edge source="Archer Queen" target="Musketeer" id="65" weight="4.0" />
<edge source="Archer Queen" target="Night Witch" id="66" weight="13.0" />
<edge source="Archer Queen" target="P.E.K.K.A" id="67" weight="42.0" />
<edge source="Archer Queen" target="Poison" id="68" weight="130.0" />
<edge source="Archer Queen" target="Prince" id="69" weight="28.0" />
<edge source="Archer Queen" target="Princess" id="70" weight="5.0" />
<edge source="Archer Queen" target="Rage" id="71" weight="7.0" />
<edge source="Archer Queen" target="Ram Rider" id="72" weight="62.0" />
<edge source="Archer Queen" target="Rocket" id="73" weight="95.0" />
<edge source="Archer Queen" target="Royal Delivery" id="74" weight="309.0" />
<edge source="Archer Queen" target="Royal Ghost" id="75" weight="260.0" />
<edge source="Archer Queen" target="Royal Giant" id="76" weight="229.0" />
<edge source="Archer Queen" target="Royal Hogs" id="77" weight="268.0" />
<edge source="Archer Queen" target="Royal Recruits" id="78" weight="13.0" />
<edge source="Archer Queen" target="Skeleton Army" id="79" weight="104.0" />
<edge source="Archer Queen" target="Skeleton Barrel" id="80" weight="5.0" />
<edge source="Archer Queen" target="Skeleton Dragons" id="81" weight="1.0" />
<edge source="Archer Queen" target="Skeletons" id="82" weight="1052.0" />
<edge source="Archer Queen" target="Sparky" id="83" weight="25.0" />
<edge source="Archer Queen" target="Spear Goblins" id="84" weight="18.0" />
<edge source="Archer Queen" target="Tesla" id="85" weight="143.0" />
<edge source="Archer Queen" target="The Log" id="86" weight="1299.0" />
<edge source="Archer Queen" target="Three Musketeers" id="87" weight="12.0" />
<edge source="Archer Queen" target="Tombstone" id="88" weight="41.0" />
<edge source="Archer Queen" target="Tornado" id="89" weight="372.0" />
<edge source="Archer Queen" target="Valkyrie" id="90" weight="396.0" />
<edge source="Archer Queen" target="Wall Breakers" id="91" weight="66.0" />
<edge source="Archer Queen" target="X-Bow" id="92" weight="196.0" />
<edge source="Archer Queen" target="Zap" id="93" weight="147.0" />
<edge source="Archer Queen" target="Zappies" id="94" weight="50.0" />
<edge source="Archers" target="Arrows" id="95" weight="68.0" />
<edge source="Archers" target="Baby Dragon" id="96" weight="7.0" />
<edge source="Archers" target="Balloon" id="97" weight="13.0" />
<edge source="Archers" target="Bandit" id="98" weight="4.0" />
<edge source="Archers" target="Barbarian Barrel" id="99" weight="30.0" />
<edge source="Archers" target="Barbarian Hut" id="100" weight="1.0" />
<edge source="Archers" target="Barbarians" id="101" weight="8.0" />
<edge source="Archers" target="Bats" id="102" weight="31.0" />
<edge source="Archers" target="Battle Ram" id="103" weight="1.0" />
<edge source="Archers" target="Bomb Tower" id="104" weight="8.0" />
<edge source="Archers" target="Bomber" id="105" weight="4.0" />
<edge source="Archers" target="Bowler" id="106" weight="42.0" />
<edge source="Archers" target="Cannon" id="107" weight="10.0" />
<edge source="Archers" target="Cannon Cart" id="108" weight="21.0" />
<edge source="Archers" target="Dark Prince" id="109" weight="21.0" />
<edge source="Archers" target="Earthquake" id="110" weight="25.0" />
<edge source="Archers" target="Electro Giant" id="111" weight="5.0" />
<edge source="Archers" target="Electro Spirit" id="112" weight="128.0" />
<edge source="Archers" target="Electro Wizard" id="113" weight="5.0" />
<edge source="Archers" target="Elite Barbarians" id="114" weight="1.0" />
<edge source="Archers" target="Elixir Collector" id="115" weight="7.0" />
<edge source="Archers" target="Fire Spirit" id="116" weight="51.0" />
<edge source="Archers" target="Fireball" id="117" weight="270.0" />
<edge source="Archers" target="Fisherman" id="118" weight="6.0" />
<edge source="Archers" target="Flying Machine" id="119" weight="2.0" />
<edge source="Archers" target="Freeze" id="120" weight="56.0" />
<edge source="Archers" target="Furnace" id="121" weight="4.0" />
<edge source="Archers" target="Giant" id="122" weight="22.0" />
<edge source="Archers" target="Giant Skeleton" id="123" weight="36.0" />
<edge source="Archers" target="Giant Snowball" id="124" weight="56.0" />
<edge source="Archers" target="Goblin Barrel" id="125" weight="5.0" />
<edge source="Archers" target="Goblin Cage" id="126" weight="4.0" />
<edge source="Archers" target="Goblin Drill" id="127" weight="5.0" />
<edge source="Archers" target="Goblin Gang" id="128" weight="11.0" />
<edge source="Archers" target="Goblin Giant" id="129" weight="3.0" />
<edge source="Archers" target="Goblin Hut" id="130" weight="2.0" />
<edge source="Archers" target="Goblins" id="131" weight="3.0" />
<edge source="Archers" target="Golden Knight" id="132" weight="9.0" />
<edge source="Archers" target="Golem" id="133" weight="6.0" />
<edge source="Archers" target="Graveyard" id="134" weight="83.0" />
<edge source="Archers" target="Guards" id="135" weight="11.0" />
<edge source="Archers" target="Heal Spirit" id="136" weight="2.0" />
<edge source="Archers" target="Hog Rider" id="137" weight="35.0" />
<edge source="Archers" target="Hunter" id="138" weight="9.0" />
<edge source="Archers" target="Ice Golem" id="139" weight="21.0" />
<edge source="Archers" target="Ice Spirit" id="140" weight="206.0" />
<edge source="Archers" target="Ice Wizard" id="141" weight="6.0" />
<edge source="Archers" target="Inferno Dragon" id="142" weight="15.0" />
<edge source="Archers" target="Inferno Tower" id="143" weight="49.0" />
<edge source="Archers" target="Knight" id="144" weight="292.0" />
<edge source="Archers" target="Lightning" id="145" weight="18.0" />
<edge source="Archers" target="Lumberjack" id="146" weight="2.0" />
<edge source="Archers" target="Magic Archer" id="147" weight="5.0" />
<edge source="Archers" target="Mega Knight" id="148" weight="4.0" />
<edge source="Archers" target="Mega Minion" id="149" weight="75.0" />
<edge source="Archers" target="Mighty Miner" id="150" weight="4.0" />
<edge source="Archers" target="Miner" id="151" weight="30.0" />
<edge source="Archers" target="Mini P.E.K.K.A" id="152" weight="14.0" />
<edge source="Archers" target="Minion Horde" id="153" weight="13.0" />
<edge source="Archers" target="Minions" id="154" weight="7.0" />
<edge source="Archers" target="Mirror" id="155" weight="12.0" />
<edge source="Archers" target="Mortar" id="156" weight="122.0" />
<edge source="Archers" target="Mother Witch" id="157" weight="3.0" />
<edge source="Archers" target="Musketeer" id="158" weight="9.0" />
<edge source="Archers" target="Night Witch" id="159" weight="8.0" />
<edge source="Archers" target="P.E.K.K.A" id="160" weight="9.0" />
<edge source="Archers" target="Poison" id="161" weight="21.0" />
<edge source="Archers" target="Prince" id="162" weight="1.0" />
<edge source="Archers" target="Princess" id="163" weight="2.0" />
<edge source="Archers" target="Rage" id="164" weight="2.0" />
<edge source="Archers" target="Rascals" id="165" weight="5.0" />
<edge source="Archers" target="Rocket" id="166" weight="132.0" />
<edge source="Archers" target="Royal Delivery" id="167" weight="27.0" />
<edge source="Archers" target="Royal Giant" id="168" weight="6.0" />
<edge source="Archers" target="Royal Hogs" id="169" weight="5.0" />
<edge source="Archers" target="Royal Recruits" id="170" weight="3.0" />
<edge source="Archers" target="Skeleton Army" id="171" weight="8.0" />
<edge source="Archers" target="Skeleton Barrel" id="172" weight="13.0" />
<edge source="Archers" target="Skeleton Dragons" id="173" weight="2.0" />
<edge source="Archers" target="Skeleton King" id="174" weight="11.0" />
<edge source="Archers" target="Skeletons" id="175" weight="391.0" />
<edge source="Archers" target="Sparky" id="176" weight="6.0" />
<edge source="Archers" target="Spear Goblins" id="177" weight="3.0" />
<edge source="Archers" target="Tesla" id="178" weight="278.0" />
<edge source="Archers" target="The Log" id="179" weight="400.0" />
<edge source="Archers" target="Tombstone" id="180" weight="38.0" />
<edge source="Archers" target="Tornado" id="181" weight="82.0" />
<edge source="Archers" target="Valkyrie" id="182" weight="132.0" />
<edge source="Archers" target="Wall Breakers" id="183" weight="4.0" />
<edge source="Archers" target="X-Bow" id="184" weight="278.0" />
<edge source="Archers" target="Zap" id="185" weight="41.0" />
<edge source="Archers" target="Zappies" id="186" weight="1.0" />
<edge source="Arrows" target="Baby Dragon" id="187" weight="141.0" />
<edge source="Arrows" target="Balloon" id="188" weight="322.0" />
<edge source="Arrows" target="Bandit" id="189" weight="65.0" />
<edge source="Arrows" target="Barbarian Barrel" id="190" weight="205.0" />
<edge source="Arrows" target="Barbarian Hut" id="191" weight="3.0" />
<edge source="Arrows" target="Barbarians" id="192" weight="273.0" />
<edge source="Arrows" target="Bats" id="193" weight="488.0" />
<edge source="Arrows" target="Battle Healer" id="194" weight="65.0" />
<edge source="Arrows" target="Battle Ram" id="195" weight="8.0" />
<edge source="Arrows" target="Bomb Tower" id="196" weight="17.0" />
<edge source="Arrows" target="Bomber" id="197" weight="220.0" />
<edge source="Arrows" target="Bowler" id="198" weight="160.0" />
<edge source="Arrows" target="Cannon" id="199" weight="25.0" />
<edge source="Arrows" target="Cannon Cart" id="200" weight="97.0" />
<edge source="Arrows" target="Clone" id="201" weight="66.0" />
<edge source="Arrows" target="Dark Prince" id="202" weight="356.0" />
<edge source="Arrows" target="Dart Goblin" id="203" weight="58.0" />
<edge source="Arrows" target="Earthquake" id="204" weight="13.0" />
<edge source="Arrows" target="Electro Dragon" id="205" weight="94.0" />
<edge source="Arrows" target="Electro Giant" id="206" weight="26.0" />
<edge source="Arrows" target="Electro Spirit" id="207" weight="37.0" />
<edge source="Arrows" target="Electro Wizard" id="208" weight="237.0" />
<edge source="Arrows" target="Elite Barbarians" id="209" weight="247.0" />
<edge source="Arrows" target="Elixir Collector" id="210" weight="50.0" />
<edge source="Arrows" target="Elixir Golem" id="211" weight="89.0" />
<edge source="Arrows" target="Executioner" id="212" weight="17.0" />
<edge source="Arrows" target="Fire Spirit" id="213" weight="19.0" />
<edge source="Arrows" target="Fireball" id="214" weight="528.0" />
<edge source="Arrows" target="Firecracker" id="215" weight="28.0" />
<edge source="Arrows" target="Fisherman" id="216" weight="96.0" />
<edge source="Arrows" target="Flying Machine" id="217" weight="414.0" />
<edge source="Arrows" target="Freeze" id="218" weight="132.0" />
<edge source="Arrows" target="Furnace" id="219" weight="16.0" />
<edge source="Arrows" target="Giant" id="220" weight="676.0" />
<edge source="Arrows" target="Giant Skeleton" id="221" weight="283.0" />
<edge source="Arrows" target="Giant Snowball" id="222" weight="313.0" />
<edge source="Arrows" target="Goblin Barrel" id="223" weight="42.0" />
<edge source="Arrows" target="Goblin Cage" id="224" weight="247.0" />
<edge source="Arrows" target="Goblin Drill" id="225" weight="45.0" />
<edge source="Arrows" target="Goblin Gang" id="226" weight="34.0" />
<edge source="Arrows" target="Goblin Giant" id="227" weight="31.0" />
<edge source="Arrows" target="Goblin Hut" id="228" weight="39.0" />
<edge source="Arrows" target="Goblins" id="229" weight="18.0" />
<edge source="Arrows" target="Golden Knight" id="230" weight="167.0" />
<edge source="Arrows" target="Golem" id="231" weight="240.0" />
<edge source="Arrows" target="Graveyard" id="232" weight="792.0" />
<edge source="Arrows" target="Guards" id="233" weight="122.0" />
<edge source="Arrows" target="Heal Spirit" id="234" weight="30.0" />
<edge source="Arrows" target="Hog Rider" id="235" weight="62.0" />
<edge source="Arrows" target="Hunter" id="236" weight="118.0" />
<edge source="Arrows" target="Ice Golem" id="237" weight="14.0" />
<edge source="Arrows" target="Ice Spirit" id="238" weight="17.0" />
<edge source="Arrows" target="Ice Wizard" id="239" weight="33.0" />
<edge source="Arrows" target="Inferno Dragon" id="240" weight="713.0" />
<edge source="Arrows" target="Inferno Tower" id="241" weight="71.0" />
<edge source="Arrows" target="Knight" id="242" weight="25.0" />
<edge source="Arrows" target="Lava Hound" id="243" weight="432.0" />
<edge source="Arrows" target="Lightning" id="244" weight="156.0" />
<edge source="Arrows" target="Lumberjack" id="245" weight="190.0" />
<edge source="Arrows" target="Magic Archer" id="246" weight="29.0" />
<edge source="Arrows" target="Mega Knight" id="247" weight="140.0" />
<edge source="Arrows" target="Mega Minion" id="248" weight="520.0" />
<edge source="Arrows" target="Mighty Miner" id="249" weight="24.0" />
<edge source="Arrows" target="Miner" id="250" weight="529.0" />
<edge source="Arrows" target="Mini P.E.K.K.A" id="251" weight="351.0" />
<edge source="Arrows" target="Minion Horde" id="252" weight="290.0" />
<edge source="Arrows" target="Minions" id="253" weight="308.0" />
<edge source="Arrows" target="Mirror" id="254" weight="255.0" />
<edge source="Arrows" target="Mortar" id="255" weight="98.0" />
<edge source="Arrows" target="Mother Witch" id="256" weight="90.0" />
<edge source="Arrows" target="Musketeer" id="257" weight="180.0" />
<edge source="Arrows" target="Night Witch" id="258" weight="359.0" />
<edge source="Arrows" target="P.E.K.K.A" id="259" weight="89.0" />
<edge source="Arrows" target="Poison" id="260" weight="27.0" />
<edge source="Arrows" target="Prince" id="261" weight="144.0" />
<edge source="Arrows" target="Princess" id="262" weight="19.0" />
<edge source="Arrows" target="Rage" id="263" weight="119.0" />
<edge source="Arrows" target="Ram Rider" id="264" weight="14.0" />
<edge source="Arrows" target="Rascals" id="265" weight="6.0" />
<edge source="Arrows" target="Rocket" id="266" weight="23.0" />
<edge source="Arrows" target="Royal Delivery" id="267" weight="6.0" />
<edge source="Arrows" target="Royal Ghost" id="268" weight="19.0" />
<edge source="Arrows" target="Royal Giant" id="269" weight="46.0" />
<edge source="Arrows" target="Royal Hogs" id="270" weight="218.0" />
<edge source="Arrows" target="Royal Recruits" id="271" weight="228.0" />
<edge source="Arrows" target="Skeleton Army" id="272" weight="641.0" />
<edge source="Arrows" target="Skeleton Barrel" id="273" weight="35.0" />
<edge source="Arrows" target="Skeleton Dragons" id="274" weight="272.0" />
<edge source="Arrows" target="Skeleton King" id="275" weight="527.0" />
<edge source="Arrows" target="Skeletons" id="276" weight="70.0" />
<edge source="Arrows" target="Sparky" id="277" weight="280.0" />
<edge source="Arrows" target="Spear Goblins" id="278" weight="52.0" />
<edge source="Arrows" target="Tesla" id="279" weight="24.0" />
<edge source="Arrows" target="The Log" id="280" weight="45.0" />
<edge source="Arrows" target="Three Musketeers" id="281" weight="18.0" />
<edge source="Arrows" target="Tombstone" id="282" weight="511.0" />
<edge source="Arrows" target="Tornado" id="283" weight="92.0" />
<edge source="Arrows" target="Valkyrie" id="284" weight="225.0" />
<edge source="Arrows" target="Wall Breakers" id="285" weight="54.0" />
<edge source="Arrows" target="Witch" id="286" weight="150.0" />
<edge source="Arrows" target="Wizard" id="287" weight="13.0" />
<edge source="Arrows" target="Zap" id="288" weight="739.0" />
<edge source="Arrows" target="Zappies" id="289" weight="571.0" />
<edge source="Baby Dragon" target="Balloon" id="290" weight="217.0" />
<edge source="Baby Dragon" target="Bandit" id="291" weight="68.0" />
<edge source="Baby Dragon" target="Barbarian Barrel" id="292" weight="1088.0" />
<edge source="Baby Dragon" target="Barbarian Hut" id="293" weight="51.0" />
<edge source="Baby Dragon" target="Barbarians" id="294" weight="49.0" />
<edge source="Baby Dragon" target="Bats" id="295" weight="177.0" />
<edge source="Baby Dragon" target="Battle Healer" id="296" weight="78.0" />
<edge source="Baby Dragon" target="Battle Ram" id="297" weight="3.0" />
<edge source="Baby Dragon" target="Bomb Tower" id="298" weight="20.0" />
<edge source="Baby Dragon" target="Bomber" id="299" weight="153.0" />
<edge source="Baby Dragon" target="Bowler" id="300" weight="288.0" />
<edge source="Baby Dragon" target="Cannon" id="301" weight="15.0" />
<edge source="Baby Dragon" target="Cannon Cart" id="302" weight="78.0" />
<edge source="Baby Dragon" target="Clone" id="303" weight="182.0" />
<edge source="Baby Dragon" target="Dark Prince" id="304" weight="216.0" />
<edge source="Baby Dragon" target="Dart Goblin" id="305" weight="6.0" />
<edge source="Baby Dragon" target="Earthquake" id="306" weight="16.0" />
<edge source="Baby Dragon" target="Electro Dragon" id="307" weight="207.0" />
<edge source="Baby Dragon" target="Electro Giant" id="308" weight="284.0" />
<edge source="Baby Dragon" target="Electro Spirit" id="309" weight="21.0" />
<edge source="Baby Dragon" target="Electro Wizard" id="310" weight="173.0" />
<edge source="Baby Dragon" target="Elite Barbarians" id="311" weight="81.0" />
<edge source="Baby Dragon" target="Elixir Collector" id="312" weight="59.0" />
<edge source="Baby Dragon" target="Elixir Golem" id="313" weight="78.0" />
<edge source="Baby Dragon" target="Executioner" id="314" weight="3.0" />
<edge source="Baby Dragon" target="Fire Spirit" id="315" weight="4.0" />
<edge source="Baby Dragon" target="Fireball" id="316" weight="327.0" />
<edge source="Baby Dragon" target="Firecracker" id="317" weight="1.0" />
<edge source="Baby Dragon" target="Fisherman" id="318" weight="50.0" />
<edge source="Baby Dragon" target="Flying Machine" id="319" weight="184.0" />
<edge source="Baby Dragon" target="Freeze" id="320" weight="305.0" />
<edge source="Baby Dragon" target="Furnace" id="321" weight="10.0" />
<edge source="Baby Dragon" target="Giant" id="322" weight="11.0" />
<edge source="Baby Dragon" target="Giant Skeleton" id="323" weight="53.0" />
<edge source="Baby Dragon" target="Giant Snowball" id="324" weight="74.0" />
<edge source="Baby Dragon" target="Goblin Barrel" id="325" weight="4.0" />
<edge source="Baby Dragon" target="Goblin Cage" id="326" weight="317.0" />
<edge source="Baby Dragon" target="Goblin Drill" id="327" weight="2.0" />
<edge source="Baby Dragon" target="Goblin Gang" id="328" weight="5.0" />
<edge source="Baby Dragon" target="Goblin Giant" id="329" weight="7.0" />
<edge source="Baby Dragon" target="Goblin Hut" id="330" weight="8.0" />
<edge source="Baby Dragon" target="Goblins" id="331" weight="4.0" />
<edge source="Baby Dragon" target="Golden Knight" id="332" weight="302.0" />
<edge source="Baby Dragon" target="Golem" id="333" weight="513.0" />
<edge source="Baby Dragon" target="Graveyard" id="334" weight="485.0" />
<edge source="Baby Dragon" target="Guards" id="335" weight="57.0" />
<edge source="Baby Dragon" target="Heal Spirit" id="336" weight="39.0" />
<edge source="Baby Dragon" target="Hog Rider" id="337" weight="11.0" />
<edge source="Baby Dragon" target="Hunter" id="338" weight="14.0" />
<edge source="Baby Dragon" target="Ice Spirit" id="339" weight="4.0" />
<edge source="Baby Dragon" target="Ice Wizard" id="340" weight="400.0" />
<edge source="Baby Dragon" target="Inferno Dragon" id="341" weight="304.0" />
<edge source="Baby Dragon" target="Inferno Tower" id="342" weight="8.0" />
<edge source="Baby Dragon" target="Knight" id="343" weight="47.0" />
<edge source="Baby Dragon" target="Lava Hound" id="344" weight="268.0" />
<edge source="Baby Dragon" target="Lightning" id="345" weight="697.0" />
<edge source="Baby Dragon" target="Lumberjack" id="346" weight="491.0" />
<edge source="Baby Dragon" target="Magic Archer" id="347" weight="7.0" />
<edge source="Baby Dragon" target="Mega Knight" id="348" weight="12.0" />
<edge source="Baby Dragon" target="Mega Minion" id="349" weight="412.0" />
<edge source="Baby Dragon" target="Mighty Miner" id="350" weight="26.0" />
<edge source="Baby Dragon" target="Miner" id="351" weight="112.0" />
<edge source="Baby Dragon" target="Mini P.E.K.K.A" id="352" weight="108.0" />
<edge source="Baby Dragon" target="Minion Horde" id="353" weight="4.0" />
<edge source="Baby Dragon" target="Minions" id="354" weight="20.0" />
<edge source="Baby Dragon" target="Mirror" id="355" weight="105.0" />
<edge source="Baby Dragon" target="Mortar" id="356" weight="2.0" />
<edge source="Baby Dragon" target="Mother Witch" id="357" weight="15.0" />
<edge source="Baby Dragon" target="Musketeer" id="358" weight="21.0" />
<edge source="Baby Dragon" target="Night Witch" id="359" weight="391.0" />
<edge source="Baby Dragon" target="P.E.K.K.A" id="360" weight="168.0" />
<edge source="Baby Dragon" target="Poison" id="361" weight="339.0" />
<edge source="Baby Dragon" target="Prince" id="362" weight="23.0" />
<edge source="Baby Dragon" target="Rage" id="363" weight="24.0" />
<edge source="Baby Dragon" target="Ram Rider" id="364" weight="68.0" />
<edge source="Baby Dragon" target="Rocket" id="365" weight="8.0" />
<edge source="Baby Dragon" target="Royal Delivery" id="366" weight="4.0" />
<edge source="Baby Dragon" target="Royal Ghost" id="367" weight="10.0" />
<edge source="Baby Dragon" target="Royal Giant" id="368" weight="61.0" />
<edge source="Baby Dragon" target="Royal Hogs" id="369" weight="2.0" />
<edge source="Baby Dragon" target="Royal Recruits" id="370" weight="1.0" />
<edge source="Baby Dragon" target="Skeleton Army" id="371" weight="229.0" />
<edge source="Baby Dragon" target="Skeleton Barrel" id="372" weight="2.0" />
<edge source="Baby Dragon" target="Skeleton Dragons" id="373" weight="16.0" />
<edge source="Baby Dragon" target="Skeleton King" id="374" weight="281.0" />
<edge source="Baby Dragon" target="Skeletons" id="375" weight="28.0" />
<edge source="Baby Dragon" target="Sparky" id="376" weight="12.0" />
<edge source="Baby Dragon" target="Spear Goblins" id="377" weight="5.0" />
<edge source="Baby Dragon" target="Tesla" id="378" weight="3.0" />
<edge source="Baby Dragon" target="The Log" id="379" weight="45.0" />
<edge source="Baby Dragon" target="Three Musketeers" id="380" weight="2.0" />
<edge source="Baby Dragon" target="Tombstone" id="381" weight="561.0" />
<edge source="Baby Dragon" target="Tornado" id="382" weight="1483.0" />
<edge source="Baby Dragon" target="Valkyrie" id="383" weight="220.0" />
<edge source="Baby Dragon" target="Witch" id="384" weight="4.0" />
<edge source="Baby Dragon" target="Wizard" id="385" weight="1.0" />
<edge source="Baby Dragon" target="X-Bow" id="386" weight="1.0" />
<edge source="Baby Dragon" target="Zap" id="387" weight="148.0" />
<edge source="Baby Dragon" target="Zappies" id="388" weight="60.0" />
<edge source="Balloon" target="Bandit" id="389" weight="14.0" />
<edge source="Balloon" target="Barbarian Barrel" id="390" weight="395.0" />
<edge source="Balloon" target="Barbarian Hut" id="391" weight="2.0" />
<edge source="Balloon" target="Barbarians" id="392" weight="296.0" />
<edge source="Balloon" target="Bats" id="393" weight="144.0" />
<edge source="Balloon" target="Battle Healer" id="394" weight="1.0" />
<edge source="Balloon" target="Bomb Tower" id="395" weight="88.0" />
<edge source="Balloon" target="Bomber" id="396" weight="67.0" />
<edge source="Balloon" target="Bowler" id="397" weight="247.0" />
<edge source="Balloon" target="Cannon" id="398" weight="30.0" />
<edge source="Balloon" target="Cannon Cart" id="399" weight="8.0" />
<edge source="Balloon" target="Clone" id="400" weight="4.0" />
<edge source="Balloon" target="Dark Prince" id="401" weight="38.0" />
<edge source="Balloon" target="Dart Goblin" id="402" weight="4.0" />
<edge source="Balloon" target="Earthquake" id="403" weight="11.0" />
<edge source="Balloon" target="Electro Dragon" id="404" weight="197.0" />
<edge source="Balloon" target="Electro Giant" id="405" weight="14.0" />
<edge source="Balloon" target="Electro Spirit" id="406" weight="60.0" />
<edge source="Balloon" target="Electro Wizard" id="407" weight="113.0" />
<edge source="Balloon" target="Elite Barbarians" id="408" weight="7.0" />
<edge source="Balloon" target="Elixir Collector" id="409" weight="8.0" />
<edge source="Balloon" target="Executioner" id="410" weight="51.0" />
<edge source="Balloon" target="Fire Spirit" id="411" weight="12.0" />
<edge source="Balloon" target="Fireball" id="412" weight="491.0" />
<edge source="Balloon" target="Firecracker" id="413" weight="8.0" />
<edge source="Balloon" target="Fisherman" id="414" weight="57.0" />
<edge source="Balloon" target="Flying Machine" id="415" weight="4.0" />
<edge source="Balloon" target="Freeze" id="416" weight="401.0" />
<edge source="Balloon" target="Furnace" id="417" weight="1.0" />
<edge source="Balloon" target="Giant" id="418" weight="15.0" />
<edge source="Balloon" target="Giant Skeleton" id="419" weight="180.0" />
<edge source="Balloon" target="Giant Snowball" id="420" weight="248.0" />
<edge source="Balloon" target="Goblin Barrel" id="421" weight="3.0" />
<edge source="Balloon" target="Goblin Cage" id="422" weight="40.0" />
<edge source="Balloon" target="Goblin Drill" id="423" weight="4.0" />
<edge source="Balloon" target="Goblin Gang" id="424" weight="15.0" />
<edge source="Balloon" target="Goblin Giant" id="425" weight="2.0" />
<edge source="Balloon" target="Goblin Hut" id="426" weight="1.0" />
<edge source="Balloon" target="Goblins" id="427" weight="8.0" />
<edge source="Balloon" target="Golden Knight" id="428" weight="42.0" />
<edge source="Balloon" target="Golem" id="429" weight="1.0" />
<edge source="Balloon" target="Graveyard" id="430" weight="17.0" />
<edge source="Balloon" target="Guards" id="431" weight="96.0" />
<edge source="Balloon" target="Heal Spirit" id="432" weight="7.0" />
<edge source="Balloon" target="Hog Rider" id="433" weight="5.0" />
<edge source="Balloon" target="Hunter" id="434" weight="83.0" />
<edge source="Balloon" target="Ice Golem" id="435" weight="132.0" />
<edge source="Balloon" target="Ice Spirit" id="436" weight="25.0" />
<edge source="Balloon" target="Ice Wizard" id="437" weight="40.0" />
<edge source="Balloon" target="Inferno Dragon" id="438" weight="614.0" />
<edge source="Balloon" target="Inferno Tower" id="439" weight="34.0" />
<edge source="Balloon" target="Knight" id="440" weight="12.0" />
<edge source="Balloon" target="Lava Hound" id="441" weight="560.0" />
<edge source="Balloon" target="Lightning" id="442" weight="41.0" />
<edge source="Balloon" target="Lumberjack" id="443" weight="444.0" />
<edge source="Balloon" target="Magic Archer" id="444" weight="10.0" />
<edge source="Balloon" target="Mega Knight" id="445" weight="68.0" />
<edge source="Balloon" target="Mega Minion" id="446" weight="339.0" />
<edge source="Balloon" target="Mighty Miner" id="447" weight="31.0" />
<edge source="Balloon" target="Miner" id="448" weight="417.0" />
<edge source="Balloon" target="Mini P.E.K.K.A" id="449" weight="50.0" />
<edge source="Balloon" target="Minion Horde" id="450" weight="74.0" />
<edge source="Balloon" target="Minions" id="451" weight="245.0" />
<edge source="Balloon" target="Mirror" id="452" weight="55.0" />
<edge source="Balloon" target="Mortar" id="453" weight="8.0" />
<edge source="Balloon" target="Mother Witch" id="454" weight="7.0" />
<edge source="Balloon" target="Musketeer" id="455" weight="132.0" />
<edge source="Balloon" target="Night Witch" id="456" weight="8.0" />
<edge source="Balloon" target="P.E.K.K.A" id="457" weight="141.0" />
<edge source="Balloon" target="Poison" id="458" weight="3.0" />
<edge source="Balloon" target="Prince" id="459" weight="8.0" />
<edge source="Balloon" target="Princess" id="460" weight="6.0" />
<edge source="Balloon" target="Rage" id="461" weight="13.0" />
<edge source="Balloon" target="Rascals" id="462" weight="3.0" />
<edge source="Balloon" target="Rocket" id="463" weight="2.0" />
<edge source="Balloon" target="Royal Delivery" id="464" weight="31.0" />
<edge source="Balloon" target="Royal Ghost" id="465" weight="6.0" />
<edge source="Balloon" target="Royal Hogs" id="466" weight="3.0" />
<edge source="Balloon" target="Royal Recruits" id="467" weight="11.0" />
<edge source="Balloon" target="Skeleton Army" id="468" weight="126.0" />
<edge source="Balloon" target="Skeleton Barrel" id="469" weight="5.0" />
<edge source="Balloon" target="Skeleton Dragons" id="470" weight="327.0" />
<edge source="Balloon" target="Skeleton King" id="471" weight="18.0" />
<edge source="Balloon" target="Skeletons" id="472" weight="164.0" />
<edge source="Balloon" target="Sparky" id="473" weight="2.0" />
<edge source="Balloon" target="Spear Goblins" id="474" weight="7.0" />
<edge source="Balloon" target="Tesla" id="475" weight="16.0" />
<edge source="Balloon" target="The Log" id="476" weight="56.0" />
<edge source="Balloon" target="Tombstone" id="477" weight="356.0" />
<edge source="Balloon" target="Tornado" id="478" weight="477.0" />
<edge source="Balloon" target="Valkyrie" id="479" weight="163.0" />
<edge source="Balloon" target="Wall Breakers" id="480" weight="1.0" />
<edge source="Balloon" target="Witch" id="481" weight="13.0" />
<edge source="Balloon" target="Wizard" id="482" weight="16.0" />
<edge source="Balloon" target="Zap" id="483" weight="626.0" />
<edge source="Balloon" target="Zappies" id="484" weight="18.0" />
<edge source="Bandit" target="Barbarian Barrel" id="485" weight="330.0" />
<edge source="Bandit" target="Barbarian Hut" id="486" weight="1.0" />
<edge source="Bandit" target="Barbarians" id="487" weight="9.0" />
<edge source="Bandit" target="Bats" id="488" weight="106.0" />
<edge source="Bandit" target="Battle Healer" id="489" weight="1.0" />
<edge source="Bandit" target="Battle Ram" id="490" weight="491.0" />
<edge source="Bandit" target="Bomb Tower" id="491" weight="40.0" />
<edge source="Bandit" target="Bomber" id="492" weight="91.0" />
<edge source="Bandit" target="Bowler" id="493" weight="1.0" />
<edge source="Bandit" target="Cannon" id="494" weight="2.0" />
<edge source="Bandit" target="Cannon Cart" id="495" weight="133.0" />
<edge source="Bandit" target="Clone" id="496" weight="1.0" />
<edge source="Bandit" target="Dark Prince" id="497" weight="216.0" />
<edge source="Bandit" target="Dart Goblin" id="498" weight="26.0" />
<edge source="Bandit" target="Earthquake" id="499" weight="11.0" />
<edge source="Bandit" target="Electro Dragon" id="500" weight="4.0" />
<edge source="Bandit" target="Electro Giant" id="501" weight="12.0" />
<edge source="Bandit" target="Electro Spirit" id="502" weight="29.0" />
<edge source="Bandit" target="Electro Wizard" id="503" weight="631.0" />
<edge source="Bandit" target="Elite Barbarians" id="504" weight="237.0" />
<edge source="Bandit" target="Elixir Collector" id="505" weight="147.0" />
<edge source="Bandit" target="Executioner" id="506" weight="12.0" />
<edge source="Bandit" target="Fire Spirit" id="507" weight="108.0" />
<edge source="Bandit" target="Fireball" id="508" weight="492.0" />
<edge source="Bandit" target="Firecracker" id="509" weight="26.0" />
<edge source="Bandit" target="Fisherman" id="510" weight="8.0" />
<edge source="Bandit" target="Flying Machine" id="511" weight="4.0" />
<edge source="Bandit" target="Freeze" id="512" weight="3.0" />
<edge source="Bandit" target="Furnace" id="513" weight="3.0" />
<edge source="Bandit" target="Giant" id="514" weight="2.0" />
<edge source="Bandit" target="Giant Skeleton" id="515" weight="28.0" />
<edge source="Bandit" target="Giant Snowball" id="516" weight="152.0" />
<edge source="Bandit" target="Goblin Barrel" id="517" weight="79.0" />
<edge source="Bandit" target="Goblin Cage" id="518" weight="8.0" />
<edge source="Bandit" target="Goblin Drill" id="519" weight="235.0" />
<edge source="Bandit" target="Goblin Gang" id="520" weight="12.0" />
<edge source="Bandit" target="Goblin Giant" id="521" weight="5.0" />
<edge source="Bandit" target="Goblin Hut" id="522" weight="3.0" />
<edge source="Bandit" target="Goblins" id="523" weight="6.0" />
<edge source="Bandit" target="Golden Knight" id="524" weight="111.0" />
<edge source="Bandit" target="Golem" id="525" weight="11.0" />
<edge source="Bandit" target="Graveyard" id="526" weight="4.0" />
<edge source="Bandit" target="Guards" id="527" weight="24.0" />
<edge source="Bandit" target="Heal Spirit" id="528" weight="224.0" />
<edge source="Bandit" target="Hog Rider" id="529" weight="21.0" />
<edge source="Bandit" target="Hunter" id="530" weight="91.0" />
<edge source="Bandit" target="Ice Golem" id="531" weight="136.0" />
<edge source="Bandit" target="Ice Spirit" id="532" weight="3.0" />
<edge source="Bandit" target="Ice Wizard" id="533" weight="1.0" />
<edge source="Bandit" target="Inferno Dragon" id="534" weight="117.0" />
<edge source="Bandit" target="Inferno Tower" id="535" weight="95.0" />
<edge source="Bandit" target="Knight" id="536" weight="5.0" />
<edge source="Bandit" target="Lava Hound" id="537" weight="1.0" />
<edge source="Bandit" target="Lightning" id="538" weight="87.0" />
<edge source="Bandit" target="Lumberjack" id="539" weight="47.0" />
<edge source="Bandit" target="Magic Archer" id="540" weight="516.0" />
<edge source="Bandit" target="Mega Knight" id="541" weight="181.0" />
<edge source="Bandit" target="Mega Minion" id="542" weight="14.0" />
<edge source="Bandit" target="Mighty Miner" id="543" weight="5.0" />
<edge source="Bandit" target="Miner" id="544" weight="79.0" />
<edge source="Bandit" target="Mini P.E.K.K.A" id="545" weight="12.0" />
<edge source="Bandit" target="Minion Horde" id="546" weight="15.0" />
<edge source="Bandit" target="Minions" id="547" weight="99.0" />
<edge source="Bandit" target="Mirror" id="548" weight="115.0" />
<edge source="Bandit" target="Mortar" id="549" weight="5.0" />
<edge source="Bandit" target="Mother Witch" id="550" weight="67.0" />
<edge source="Bandit" target="Musketeer" id="551" weight="45.0" />
<edge source="Bandit" target="Night Witch" id="552" weight="6.0" />
<edge source="Bandit" target="P.E.K.K.A" id="553" weight="534.0" />
<edge source="Bandit" target="Poison" id="554" weight="160.0" />
<edge source="Bandit" target="Prince" id="555" weight="32.0" />
<edge source="Bandit" target="Princess" id="556" weight="116.0" />
<edge source="Bandit" target="Rage" id="557" weight="5.0" />
<edge source="Bandit" target="Ram Rider" id="558" weight="206.0" />
<edge source="Bandit" target="Rascals" id="559" weight="68.0" />
<edge source="Bandit" target="Rocket" id="560" weight="133.0" />
<edge source="Bandit" target="Royal Delivery" id="561" weight="7.0" />
<edge source="Bandit" target="Royal Ghost" id="562" weight="722.0" />
<edge source="Bandit" target="Royal Giant" id="563" weight="2.0" />
<edge source="Bandit" target="Royal Hogs" id="564" weight="63.0" />
<edge source="Bandit" target="Royal Recruits" id="565" weight="36.0" />
<edge source="Bandit" target="Skeleton Army" id="566" weight="23.0" />
<edge source="Bandit" target="Skeleton Barrel" id="567" weight="11.0" />
<edge source="Bandit" target="Skeleton Dragons" id="568" weight="3.0" />
<edge source="Bandit" target="Skeleton King" id="569" weight="2.0" />
<edge source="Bandit" target="Skeletons" id="570" weight="153.0" />
<edge source="Bandit" target="Sparky" id="571" weight="6.0" />
<edge source="Bandit" target="Spear Goblins" id="572" weight="11.0" />
<edge source="Bandit" target="Tesla" id="573" weight="8.0" />
<edge source="Bandit" target="The Log" id="574" weight="217.0" />
<edge source="Bandit" target="Three Musketeers" id="575" weight="183.0" />
<edge source="Bandit" target="Tombstone" id="576" weight="2.0" />
<edge source="Bandit" target="Tornado" id="577" weight="88.0" />
<edge source="Bandit" target="Valkyrie" id="578" weight="7.0" />
<edge source="Bandit" target="Wall Breakers" id="579" weight="158.0" />
<edge source="Bandit" target="Witch" id="580" weight="3.0" />
<edge source="Bandit" target="Wizard" id="581" weight="5.0" />
<edge source="Bandit" target="X-Bow" id="582" weight="3.0" />
<edge source="Bandit" target="Zap" id="583" weight="613.0" />
<edge source="Bandit" target="Zappies" id="584" weight="14.0" />
<edge source="Barbarian Barrel" target="Barbarian Hut" id="585" weight="31.0" />
<edge source="Barbarian Barrel" target="Barbarians" id="586" weight="27.0" />
<edge source="Barbarian Barrel" target="Bats" id="587" weight="143.0" />
<edge source="Barbarian Barrel" target="Battle Healer" id="588" weight="25.0" />
<edge source="Barbarian Barrel" target="Battle Ram" id="589" weight="60.0" />
<edge source="Barbarian Barrel" target="Bomb Tower" id="590" weight="91.0" />
<edge source="Barbarian Barrel" target="Bomber" id="591" weight="40.0" />
<edge source="Barbarian Barrel" target="Bowler" id="592" weight="309.0" />
<edge source="Barbarian Barrel" target="Cannon" id="593" weight="30.0" />
<edge source="Barbarian Barrel" target="Cannon Cart" id="594" weight="215.0" />
<edge source="Barbarian Barrel" target="Clone" id="595" weight="3.0" />
<edge source="Barbarian Barrel" target="Dark Prince" id="596" weight="289.0" />
<edge source="Barbarian Barrel" target="Dart Goblin" id="597" weight="11.0" />
<edge source="Barbarian Barrel" target="Earthquake" id="598" weight="40.0" />
<edge source="Barbarian Barrel" target="Electro Dragon" id="599" weight="325.0" />
<edge source="Barbarian Barrel" target="Electro Giant" id="600" weight="295.0" />
<edge source="Barbarian Barrel" target="Electro Spirit" id="601" weight="156.0" />
<edge source="Barbarian Barrel" target="Electro Wizard" id="602" weight="372.0" />
<edge source="Barbarian Barrel" target="Elite Barbarians" id="603" weight="242.0" />
<edge source="Barbarian Barrel" target="Elixir Collector" id="604" weight="244.0" />
<edge source="Barbarian Barrel" target="Elixir Golem" id="605" weight="27.0" />
<edge source="Barbarian Barrel" target="Executioner" id="606" weight="10.0" />
<edge source="Barbarian Barrel" target="Fire Spirit" id="607" weight="21.0" />
<edge source="Barbarian Barrel" target="Fireball" id="608" weight="436.0" />
<edge source="Barbarian Barrel" target="Firecracker" id="609" weight="11.0" />
<edge source="Barbarian Barrel" target="Fisherman" id="610" weight="87.0" />
<edge source="Barbarian Barrel" target="Flying Machine" id="611" weight="249.0" />
<edge source="Barbarian Barrel" target="Freeze" id="612" weight="319.0" />
<edge source="Barbarian Barrel" target="Furnace" id="613" weight="32.0" />
<edge source="Barbarian Barrel" target="Giant" id="614" weight="3.0" />
<edge source="Barbarian Barrel" target="Giant Skeleton" id="615" weight="164.0" />
<edge source="Barbarian Barrel" target="Giant Snowball" id="616" weight="231.0" />
<edge source="Barbarian Barrel" target="Goblin Barrel" id="617" weight="8.0" />
<edge source="Barbarian Barrel" target="Goblin Cage" id="618" weight="546.0" />
<edge source="Barbarian Barrel" target="Goblin Drill" id="619" weight="94.0" />
<edge source="Barbarian Barrel" target="Goblin Gang" id="620" weight="5.0" />
<edge source="Barbarian Barrel" target="Goblin Giant" id="621" weight="25.0" />
<edge source="Barbarian Barrel" target="Goblin Hut" id="622" weight="27.0" />
<edge source="Barbarian Barrel" target="Goblins" id="623" weight="12.0" />
<edge source="Barbarian Barrel" target="Golden Knight" id="624" weight="683.0" />
<edge source="Barbarian Barrel" target="Golem" id="625" weight="392.0" />
<edge source="Barbarian Barrel" target="Graveyard" id="626" weight="458.0" />
<edge source="Barbarian Barrel" target="Guards" id="627" weight="24.0" />
<edge source="Barbarian Barrel" target="Heal Spirit" id="628" weight="273.0" />
<edge source="Barbarian Barrel" target="Hog Rider" id="629" weight="8.0" />
<edge source="Barbarian Barrel" target="Hunter" id="630" weight="234.0" />
<edge source="Barbarian Barrel" target="Ice Golem" id="631" weight="323.0" />
<edge source="Barbarian Barrel" target="Ice Spirit" id="632" weight="16.0" />
<edge source="Barbarian Barrel" target="Ice Wizard" id="633" weight="373.0" />
<edge source="Barbarian Barrel" target="Inferno Dragon" id="634" weight="456.0" />
<edge source="Barbarian Barrel" target="Inferno Tower" id="635" weight="19.0" />
<edge source="Barbarian Barrel" target="Knight" id="636" weight="57.0" />
<edge source="Barbarian Barrel" target="Lava Hound" id="637" weight="27.0" />
<edge source="Barbarian Barrel" target="Lightning" id="638" weight="662.0" />
<edge source="Barbarian Barrel" target="Lumberjack" id="639" weight="489.0" />
<edge source="Barbarian Barrel" target="Magic Archer" id="640" weight="196.0" />
<edge source="Barbarian Barrel" target="Mega Knight" id="641" weight="162.0" />
<edge source="Barbarian Barrel" target="Mega Minion" id="642" weight="396.0" />
<edge source="Barbarian Barrel" target="Mighty Miner" id="643" weight="23.0" />
<edge source="Barbarian Barrel" target="Miner" id="644" weight="241.0" />
<edge source="Barbarian Barrel" target="Mini P.E.K.K.A" id="645" weight="118.0" />
<edge source="Barbarian Barrel" target="Minion Horde" id="646" weight="15.0" />
<edge source="Barbarian Barrel" target="Minions" id="647" weight="14.0" />
<edge source="Barbarian Barrel" target="Mirror" id="648" weight="125.0" />
<edge source="Barbarian Barrel" target="Mortar" id="649" weight="59.0" />
<edge source="Barbarian Barrel" target="Mother Witch" id="650" weight="227.0" />
<edge source="Barbarian Barrel" target="Musketeer" id="651" weight="187.0" />
<edge source="Barbarian Barrel" target="Night Witch" id="652" weight="213.0" />
<edge source="Barbarian Barrel" target="P.E.K.K.A" id="653" weight="197.0" />
<edge source="Barbarian Barrel" target="Poison" id="654" weight="420.0" />
<edge source="Barbarian Barrel" target="Prince" id="655" weight="20.0" />
<edge source="Barbarian Barrel" target="Princess" id="656" weight="6.0" />
<edge source="Barbarian Barrel" target="Rage" id="657" weight="6.0" />
<edge source="Barbarian Barrel" target="Ram Rider" id="658" weight="219.0" />
<edge source="Barbarian Barrel" target="Rascals" id="659" weight="9.0" />
<edge source="Barbarian Barrel" target="Rocket" id="660" weight="9.0" />
<edge source="Barbarian Barrel" target="Royal Delivery" id="661" weight="4.0" />
<edge source="Barbarian Barrel" target="Royal Ghost" id="662" weight="380.0" />
<edge source="Barbarian Barrel" target="Royal Giant" id="663" weight="109.0" />
<edge source="Barbarian Barrel" target="Royal Hogs" id="664" weight="376.0" />
<edge source="Barbarian Barrel" target="Royal Recruits" id="665" weight="222.0" />
<edge source="Barbarian Barrel" target="Skeleton Army" id="666" weight="13.0" />
<edge source="Barbarian Barrel" target="Skeleton Barrel" id="667" weight="7.0" />
<edge source="Barbarian Barrel" target="Skeleton Dragons" id="668" weight="89.0" />
<edge source="Barbarian Barrel" target="Skeleton King" id="669" weight="249.0" />
<edge source="Barbarian Barrel" target="Skeletons" id="670" weight="122.0" />
<edge source="Barbarian Barrel" target="Sparky" id="671" weight="31.0" />
<edge source="Barbarian Barrel" target="Spear Goblins" id="672" weight="21.0" />
<edge source="Barbarian Barrel" target="Tesla" id="673" weight="11.0" />
<edge source="Barbarian Barrel" target="The Log" id="674" weight="9.0" />
<edge source="Barbarian Barrel" target="Three Musketeers" id="675" weight="276.0" />
<edge source="Barbarian Barrel" target="Tombstone" id="676" weight="518.0" />
<edge source="Barbarian Barrel" target="Tornado" id="677" weight="1407.0" />
<edge source="Barbarian Barrel" target="Valkyrie" id="678" weight="159.0" />
<edge source="Barbarian Barrel" target="Wall Breakers" id="679" weight="93.0" />
<edge source="Barbarian Barrel" target="Witch" id="680" weight="8.0" />
<edge source="Barbarian Barrel" target="Wizard" id="681" weight="2.0" />
<edge source="Barbarian Barrel" target="X-Bow" id="682" weight="2.0" />
<edge source="Barbarian Barrel" target="Zap" id="683" weight="127.0" />
<edge source="Barbarian Barrel" target="Zappies" id="684" weight="298.0" />
<edge source="Barbarians" target="Barbarian Hut" id="685" weight="1.0" />
<edge source="Barbarians" target="Bats" id="686" weight="18.0" />
<edge source="Barbarians" target="Bomb Tower" id="687" weight="4.0" />
<edge source="Barbarians" target="Bomber" id="688" weight="13.0" />
<edge source="Barbarians" target="Bowler" id="689" weight="15.0" />
<edge source="Barbarians" target="Cannon" id="690" weight="5.0" />
<edge source="Barbarians" target="Cannon Cart" id="691" weight="13.0" />
<edge source="Barbarians" target="Clone" id="692" weight="21.0" />
<edge source="Barbarians" target="Dark Prince" id="693" weight="13.0" />
<edge source="Barbarians" target="Dart Goblin" id="694" weight="6.0" />
<edge source="Barbarians" target="Earthquake" id="695" weight="21.0" />
<edge source="Barbarians" target="Electro Dragon" id="696" weight="19.0" />
<edge source="Barbarians" target="Electro Giant" id="697" weight="5.0" />
<edge source="Barbarians" target="Electro Spirit" id="698" weight="30.0" />
<edge source="Barbarians" target="Electro Wizard" id="699" weight="12.0" />
<edge source="Barbarians" target="Elite Barbarians" id="700" weight="4.0" />
<edge source="Barbarians" target="Elixir Collector" id="701" weight="28.0" />
<edge source="Barbarians" target="Elixir Golem" id="702" weight="1.0" />
<edge source="Barbarians" target="Executioner" id="703" weight="4.0" />
<edge source="Barbarians" target="Fire Spirit" id="704" weight="10.0" />
<edge source="Barbarians" target="Fireball" id="705" weight="244.0" />
<edge source="Barbarians" target="Firecracker" id="706" weight="21.0" />
<edge source="Barbarians" target="Fisherman" id="707" weight="10.0" />
<edge source="Barbarians" target="Flying Machine" id="708" weight="68.0" />
<edge source="Barbarians" target="Freeze" id="709" weight="27.0" />
<edge source="Barbarians" target="Furnace" id="710" weight="8.0" />
<edge source="Barbarians" target="Giant" id="711" weight="66.0" />
<edge source="Barbarians" target="Giant Skeleton" id="712" weight="24.0" />
<edge source="Barbarians" target="Giant Snowball" id="713" weight="19.0" />
<edge source="Barbarians" target="Goblin Barrel" id="714" weight="8.0" />
<edge source="Barbarians" target="Goblin Cage" id="715" weight="18.0" />
<edge source="Barbarians" target="Goblin Drill" id="716" weight="2.0" />
<edge source="Barbarians" target="Goblin Gang" id="717" weight="6.0" />
<edge source="Barbarians" target="Goblin Giant" id="718" weight="5.0" />
<edge source="Barbarians" target="Goblin Hut" id="719" weight="9.0" />
<edge source="Barbarians" target="Goblins" id="720" weight="14.0" />
<edge source="Barbarians" target="Golden Knight" id="721" weight="9.0" />
<edge source="Barbarians" target="Golem" id="722" weight="5.0" />
<edge source="Barbarians" target="Graveyard" id="723" weight="46.0" />
<edge source="Barbarians" target="Guards" id="724" weight="5.0" />
<edge source="Barbarians" target="Heal Spirit" id="725" weight="8.0" />
<edge source="Barbarians" target="Hog Rider" id="726" weight="33.0" />
<edge source="Barbarians" target="Hunter" id="727" weight="36.0" />
<edge source="Barbarians" target="Ice Golem" id="728" weight="8.0" />
<edge source="Barbarians" target="Ice Spirit" id="729" weight="3.0" />
<edge source="Barbarians" target="Ice Wizard" id="730" weight="17.0" />
<edge source="Barbarians" target="Inferno Dragon" id="731" weight="151.0" />
<edge source="Barbarians" target="Inferno Tower" id="732" weight="5.0" />
<edge source="Barbarians" target="Knight" id="733" weight="8.0" />
<edge source="Barbarians" target="Lava Hound" id="734" weight="372.0" />
<edge source="Barbarians" target="Lightning" id="735" weight="28.0" />
<edge source="Barbarians" target="Lumberjack" id="736" weight="5.0" />
<edge source="Barbarians" target="Magic Archer" id="737" weight="9.0" />
<edge source="Barbarians" target="Mega Knight" id="738" weight="2.0" />
<edge source="Barbarians" target="Mega Minion" id="739" weight="224.0" />
<edge source="Barbarians" target="Mighty Miner" id="740" weight="2.0" />
<edge source="Barbarians" target="Miner" id="741" weight="204.0" />
<edge source="Barbarians" target="Mini P.E.K.K.A" id="742" weight="11.0" />
<edge source="Barbarians" target="Minion Horde" id="743" weight="49.0" />
<edge source="Barbarians" target="Minions" id="744" weight="118.0" />
<edge source="Barbarians" target="Mirror" id="745" weight="54.0" />
<edge source="Barbarians" target="Mortar" id="746" weight="13.0" />
<edge source="Barbarians" target="Mother Witch" id="747" weight="11.0" />
<edge source="Barbarians" target="Musketeer" id="748" weight="26.0" />
<edge source="Barbarians" target="Night Witch" id="749" weight="22.0" />
<edge source="Barbarians" target="P.E.K.K.A" id="750" weight="3.0" />
<edge source="Barbarians" target="Poison" id="751" weight="12.0" />
<edge source="Barbarians" target="Prince" id="752" weight="7.0" />
<edge source="Barbarians" target="Princess" id="753" weight="14.0" />
<edge source="Barbarians" target="Rage" id="754" weight="6.0" />
<edge source="Barbarians" target="Rocket" id="755" weight="7.0" />
<edge source="Barbarians" target="Royal Delivery" id="756" weight="18.0" />
<edge source="Barbarians" target="Royal Ghost" id="757" weight="4.0" />
<edge source="Barbarians" target="Royal Giant" id="758" weight="28.0" />
<edge source="Barbarians" target="Royal Hogs" id="759" weight="34.0" />
<edge source="Barbarians" target="Royal Recruits" id="760" weight="1.0" />
<edge source="Barbarians" target="Skeleton Army" id="761" weight="20.0" />
<edge source="Barbarians" target="Skeleton Barrel" id="762" weight="12.0" />
<edge source="Barbarians" target="Skeleton Dragons" id="763" weight="257.0" />
<edge source="Barbarians" target="Skeleton King" id="764" weight="20.0" />
<edge source="Barbarians" target="Skeletons" id="765" weight="14.0" />
<edge source="Barbarians" target="Sparky" id="766" weight="42.0" />
<edge source="Barbarians" target="Spear Goblins" id="767" weight="8.0" />
<edge source="Barbarians" target="Tesla" id="768" weight="3.0" />
<edge source="Barbarians" target="The Log" id="769" weight="29.0" />
<edge source="Barbarians" target="Three Musketeers" id="770" weight="6.0" />
<edge source="Barbarians" target="Tombstone" id="771" weight="212.0" />
<edge source="Barbarians" target="Tornado" id="772" weight="16.0" />
<edge source="Barbarians" target="Valkyrie" id="773" weight="10.0" />
<edge source="Barbarians" target="Wall Breakers" id="774" weight="7.0" />
<edge source="Barbarians" target="Witch" id="775" weight="8.0" />
<edge source="Barbarians" target="Wizard" id="776" weight="18.0" />
<edge source="Barbarians" target="X-Bow" id="777" weight="13.0" />
<edge source="Barbarians" target="Zap" id="778" weight="344.0" />
<edge source="Barbarians" target="Zappies" id="779" weight="33.0" />
<edge source="Bats" target="Battle Healer" id="780" weight="1.0" />
<edge source="Bats" target="Battle Ram" id="781" weight="17.0" />
<edge source="Bats" target="Bomb Tower" id="782" weight="45.0" />
<edge source="Bats" target="Bomber" id="783" weight="37.0" />
<edge source="Bats" target="Bowler" id="784" weight="46.0" />
<edge source="Bats" target="Cannon" id="785" weight="30.0" />
<edge source="Bats" target="Cannon Cart" id="786" weight="111.0" />
<edge source="Bats" target="Clone" id="787" weight="195.0" />
<edge source="Bats" target="Dark Prince" id="788" weight="161.0" />
<edge source="Bats" target="Dart Goblin" id="789" weight="153.0" />
<edge source="Bats" target="Earthquake" id="790" weight="48.0" />
<edge source="Bats" target="Electro Dragon" id="791" weight="3.0" />
<edge source="Bats" target="Electro Giant" id="792" weight="32.0" />
<edge source="Bats" target="Electro Spirit" id="793" weight="84.0" />
<edge source="Bats" target="Electro Wizard" id="794" weight="46.0" />
<edge source="Bats" target="Elite Barbarians" id="795" weight="33.0" />
<edge source="Bats" target="Elixir Collector" id="796" weight="49.0" />
<edge source="Bats" target="Elixir Golem" id="797" weight="1.0" />
<edge source="Bats" target="Executioner" id="798" weight="17.0" />
<edge source="Bats" target="Fire Spirit" id="799" weight="94.0" />
<edge source="Bats" target="Fireball" id="800" weight="597.0" />
<edge source="Bats" target="Firecracker" id="801" weight="52.0" />
<edge source="Bats" target="Fisherman" id="802" weight="107.0" />
<edge source="Bats" target="Flying Machine" id="803" weight="164.0" />
<edge source="Bats" target="Freeze" id="804" weight="40.0" />
<edge source="Bats" target="Furnace" id="805" weight="8.0" />
<edge source="Bats" target="Giant" id="806" weight="310.0" />
<edge source="Bats" target="Giant Skeleton" id="807" weight="252.0" />
<edge source="Bats" target="Giant Snowball" id="808" weight="280.0" />
<edge source="Bats" target="Goblin Barrel" id="809" weight="36.0" />
<edge source="Bats" target="Goblin Cage" id="810" weight="27.0" />
<edge source="Bats" target="Goblin Drill" id="811" weight="63.0" />
<edge source="Bats" target="Goblin Gang" id="812" weight="147.0" />
<edge source="Bats" target="Goblin Giant" id="813" weight="122.0" />
<edge source="Bats" target="Goblin Hut" id="814" weight="14.0" />
<edge source="Bats" target="Goblins" id="815" weight="33.0" />
<edge source="Bats" target="Golden Knight" id="816" weight="131.0" />
<edge source="Bats" target="Golem" id="817" weight="52.0" />
<edge source="Bats" target="Graveyard" id="818" weight="129.0" />
<edge source="Bats" target="Guards" id="819" weight="294.0" />
<edge source="Bats" target="Heal Spirit" id="820" weight="13.0" />
<edge source="Bats" target="Hog Rider" id="821" weight="155.0" />
<edge source="Bats" target="Hunter" id="822" weight="137.0" />
<edge source="Bats" target="Ice Golem" id="823" weight="156.0" />
<edge source="Bats" target="Ice Spirit" id="824" weight="35.0" />
<edge source="Bats" target="Ice Wizard" id="825" weight="13.0" />
<edge source="Bats" target="Inferno Dragon" id="826" weight="164.0" />
<edge source="Bats" target="Inferno Tower" id="827" weight="38.0" />
<edge source="Bats" target="Knight" id="828" weight="58.0" />
<edge source="Bats" target="Lava Hound" id="829" weight="152.0" />
<edge source="Bats" target="Lightning" id="830" weight="64.0" />
<edge source="Bats" target="Lumberjack" id="831" weight="219.0" />
<edge source="Bats" target="Magic Archer" id="832" weight="27.0" />
<edge source="Bats" target="Mega Knight" id="833" weight="324.0" />
<edge source="Bats" target="Mega Minion" id="834" weight="30.0" />
<edge source="Bats" target="Mighty Miner" id="835" weight="29.0" />
<edge source="Bats" target="Miner" id="836" weight="941.0" />
<edge source="Bats" target="Mini P.E.K.K.A" id="837" weight="407.0" />
<edge source="Bats" target="Minion Horde" id="838" weight="219.0" />
<edge source="Bats" target="Minions" id="839" weight="10.0" />
<edge source="Bats" target="Mirror" id="840" weight="156.0" />
<edge source="Bats" target="Mortar" id="841" weight="567.0" />
<edge source="Bats" target="Mother Witch" id="842" weight="25.0" />
<edge source="Bats" target="Musketeer" id="843" weight="497.0" />
<edge source="Bats" target="Night Witch" id="844" weight="90.0" />
<edge source="Bats" target="P.E.K.K.A" id="845" weight="30.0" />
<edge source="Bats" target="Poison" id="846" weight="323.0" />
<edge source="Bats" target="Prince" id="847" weight="139.0" />
<edge source="Bats" target="Princess" id="848" weight="94.0" />
<edge source="Bats" target="Rage" id="849" weight="54.0" />
<edge source="Bats" target="Ram Rider" id="850" weight="13.0" />
<edge source="Bats" target="Rascals" id="851" weight="15.0" />
<edge source="Bats" target="Rocket" id="852" weight="81.0" />
<edge source="Bats" target="Royal Delivery" id="853" weight="51.0" />
<edge source="Bats" target="Royal Ghost" id="854" weight="42.0" />
<edge source="Bats" target="Royal Giant" id="855" weight="82.0" />
<edge source="Bats" target="Royal Hogs" id="856" weight="47.0" />
<edge source="Bats" target="Royal Recruits" id="857" weight="12.0" />
<edge source="Bats" target="Skeleton Army" id="858" weight="640.0" />
<edge source="Bats" target="Skeleton Barrel" id="859" weight="151.0" />
<edge source="Bats" target="Skeleton Dragons" id="860" weight="18.0" />
<edge source="Bats" target="Skeleton King" id="861" weight="267.0" />
<edge source="Bats" target="Skeletons" id="862" weight="238.0" />
<edge source="Bats" target="Sparky" id="863" weight="232.0" />
<edge source="Bats" target="Spear Goblins" id="864" weight="315.0" />
<edge source="Bats" target="Tesla" id="865" weight="39.0" />
<edge source="Bats" target="The Log" id="866" weight="700.0" />
<edge source="Bats" target="Three Musketeers" id="867" weight="29.0" />
<edge source="Bats" target="Tombstone" id="868" weight="16.0" />
<edge source="Bats" target="Tornado" id="869" weight="106.0" />
<edge source="Bats" target="Valkyrie" id="870" weight="200.0" />
<edge source="Bats" target="Wall Breakers" id="871" weight="269.0" />
<edge source="Bats" target="Witch" id="872" weight="52.0" />
<edge source="Bats" target="Wizard" id="873" weight="14.0" />
<edge source="Bats" target="X-Bow" id="874" weight="8.0" />
<edge source="Bats" target="Zap" id="875" weight="683.0" />
<edge source="Bats" target="Zappies" id="876" weight="37.0" />
<edge source="Battle Ram" target="Barbarian Hut" id="877" weight="2.0" />
<edge source="Battle Ram" target="Bomb Tower" id="878" weight="1.0" />
<edge source="Battle Ram" target="Cannon Cart" id="879" weight="18.0" />
<edge source="Battle Ram" target="Dark Prince" id="880" weight="47.0" />
<edge source="Battle Ram" target="Dart Goblin" id="881" weight="3.0" />
<edge source="Battle Ram" target="Earthquake" id="882" weight="1.0" />
<edge source="Battle Ram" target="Electro Dragon" id="883" weight="2.0" />