-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1336 lines (1227 loc) · 117 KB
/
index.html
File metadata and controls
1336 lines (1227 loc) · 117 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 lang="en">
<head>
<!-- Made by Junaid Peer | Mr.Peer#6656 Avian developer team... if any bugs found contact on Avian Discord server-->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, shrink-to-fit=no">
<title>Avian Fundraiser</title>
<link rel="icon" type="image/x-icon" href="/assets/avain.png">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<script src="https://unpkg.com/moralis-v1/dist/moralis.js"></script>
<script src="https://cdn.jsdelivr.net/npm/web3@latest/dist/web3.min.js"></script>
<link rel="stylesheet" href="assets/css/styles.css">
<!-- Primary Meta Tags -->
<title>Avian Fundraiser Portal- Donate now 👈</title>
<meta name="title" content="Avian Fundraiser Portal- Donate now 👈">
<meta name="description" content="Help us get listed on exchanges and grow more. Donate now with 250+ options and Paypal too.">
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website">
<meta property="og:url" content="https://fundraiser.avn.network/">
<meta property="og:title" content="Avian Fundraiser Portal- Donate now 👈">
<meta property="og:description" content="Help us get listed on exchanges and grow more. Donate now with 250+ options and Paypal too.">
<meta property="og:image" content="assets/meta.png">
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image">
<meta property="twitter:url" content="https://fundraiser.avn.network/">
<meta property="twitter:title" content="Avian Fundraiser Portal- Donate now 👈">
<meta property="twitter:description" content="Help us get listed on exchanges and grow more. Donate now with 250+ options and Paypal too.">
<meta property="twitter:image" content="assets/meta.png">
</head>
<body>
<div
class="text-center d-md-flex flex-column align-content-center align-self-center order-1 m-auto align-items-md-center">
<div class="card textbody text-center text-body" style="width: 600px;height: auto;" id="startpage">
<div class="card-body justify-content-center align-items-center align-content-center">
<h1 class="card-title">Avian Fundraiser</h1>
<h4 class="text-muted card-subtitle mb-2">Donate below</h4>
<p class="lead">Where will your donations be going?</p>
<p>
Exchange listing and Server maintenance
</p>
<div class="vstack gap-2 text-center d-md-flex">
<!-- ////////polygon//////// -->
<button class="btn btn text-center border rounded-3 mt-auto" type="button" id="poly">
<svg xmlns="http://www.w3.org/2000/svg" width="200" height="100" fill="none"
viewBox="0 0 1024 225">
<g clip-path="url(#clip0)">
<path fill="#212121"
d="M400.613 71.6709C406.895 75.4684 412.211 80.6899 415.593 87.8101 419.459 94.9304 421.392 103.475 421.392 112.968 421.392 122.462 419.459 130.532 415.11 137.652 411.244 144.772 405.445 149.994 398.196 153.316 390.948 157.114 382.249 159.013 373.068 159.013 367.752 159.013 362.919 158.063 358.087 156.165 353.254 154.741 348.905 151.892 345.522 148.57V197.937H317.494V67.8734H341.656L344.073 78.3165C354.704 69.7722 366.302 65.5 378.383 65.5 386.598 65.5 394.33 67.3987 400.613 71.6709zM385.149 130.532C389.981 126.26 392.397 120.563 392.397 113.443 392.397 106.323 389.981 100.627 385.632 95.8798 381.283 91.1329 375.484 89.2342 369.202 89.2342 363.886 89.2342 359.053 90.1836 355.187 92.557 351.321 94.4557 348.422 97.7785 346.006 102.051V123.411C347.455 127.684 350.355 131.006 353.738 133.38 357.604 135.753 361.953 137.177 367.269 137.177 374.517 137.177 380.316 134.804 385.149 130.532zM437.821 88.275C442.171 81.6294 447.969 75.9332 455.701 72.1357 463.433 68.3383 472.132 65.9648 481.797 65.9648 491.462 65.9648 500.16 67.8636 507.892 72.1357 515.141 75.9332 520.94 81.6294 525.289 88.7496 529.638 95.8699 531.571 103.465 531.571 112.484 531.571 121.503 529.638 129.098 525.289 136.218 520.94 143.338 515.624 149.034 507.892 152.832 500.643 156.629 491.462 159.003 481.797 159.003 472.132 159.003 463.433 157.104 455.701 153.307 447.969 149.509 442.171 144.288 437.821 137.167 433.955 130.047 431.539 121.977 431.539 112.484 431.539 103.465 433.955 95.3952 437.821 88.275zM466.333 129.572C470.199 134.319 475.515 136.218 481.797 136.218 488.079 136.218 493.395 133.845 497.261 129.572 501.127 125.3 503.06 119.129 503.06 112.484 503.06 105.364 501.127 99.6674 497.261 95.3952 492.911 90.6484 488.079 88.275 481.314 88.275 475.031 88.275 470.199 90.6484 465.85 94.9205 461.984 99.6674 460.051 105.364 460.051 112.484 460.051 119.129 461.984 124.826 466.333 129.572zM577.001.463867V156.635H548.973V.463867H577.001zM692.01 70.2405L634.987 198.405H607.926L629.188 152.361 588.596 70.2405H620.49L643.686 121.506 666.882 70.2405H692.01zM799.287 70.237V156.629C799.287 164.699 796.871 172.294 792.038 178.94 787.206 185.585 780.923 190.807 772.708 194.604 764.493 198.402 755.795 200.3 746.13 200.3 738.881 200.3 732.599 199.351 727.283 197.927 721.967 196.028 717.618 194.129 714.235 192.231 710.37 189.857 706.504 187.009 702.154 183.212L718.585 164.224C722.451 168.022 726.8 170.87 730.666 172.769 734.532 174.667 739.848 176.091 745.647 176.091 752.895 176.091 758.694 174.193 763.527 170.87 768.359 167.547 770.775 162.326 770.775 156.155V143.813C767.876 148.085 764.01 151.883 758.211 154.731 752.412 157.579 745.647 159.003 737.915 159.003 730.183 159.003 722.451 157.104 715.685 152.832 708.92 149.034 703.604 143.338 699.255 136.218 695.389 129.098 692.973 121.503 692.973 112.959 692.973 104.414 694.906 96.3446 699.255 89.2243 703.604 82.1041 708.92 76.4079 716.168 72.1357 722.934 67.8636 730.183 65.9648 737.915 65.9648 745.163 65.9648 751.445 66.9142 757.244 68.8129 763.043 70.7117 767.393 73.5598 770.292 76.8826L773.192 70.237H799.287zM770.775 123.402V102.041C768.842 97.7687 765.943 94.4459 761.594 92.0724 757.244 89.699 752.412 88.275 746.613 88.275 739.848 88.275 734.049 90.6484 729.216 94.9205 724.384 99.1927 721.967 104.889 721.967 112.009 721.967 118.655 724.384 124.826 729.216 129.572 734.049 134.319 739.848 136.693 746.613 136.693 757.728 136.218 765.943 131.946 770.775 123.402zM822.491 88.2848C826.84 81.1646 832.639 75.943 840.371 71.6709 848.103 67.8734 856.802 65.5 866.467 65.5 876.132 65.5 884.83 67.3987 892.562 71.6709 899.811 75.4684 905.61 81.1646 909.959 88.2848 913.825 95.4051 916.241 103 916.241 112.019 916.241 121.038 914.308 128.633 909.959 135.753 906.093 142.873 900.294 148.57 892.562 152.367 885.313 156.165 876.132 158.538 866.467 158.538 856.802 158.538 848.103 156.639 840.371 152.842 832.639 149.044 826.84 143.823 822.491 136.703 818.142 129.582 816.209 121.513 816.209 111.544 816.209 103.475 818.142 95.4051 822.491 88.2848zM850.52 129.582C854.386 134.329 859.701 136.228 865.983 136.228 872.266 136.228 877.581 133.854 881.447 129.582 885.313 125.31 887.246 119.139 887.246 112.494 887.246 105.373 885.313 99.6772 881.447 95.4051 877.581 91.1329 872.266 88.7595 865.983 88.7595 859.701 88.7595 854.869 91.1329 850.52 95.4051 846.17 99.6772 844.237 105.848 844.237 112.494 844.721 119.139 846.654 124.835 850.52 129.582zM1015.31 73.0851C1021.11 77.8319 1023.52 84.0028 1024 91.5978V156.629H995.493V102.041C995.01 93.4965 990.661 89.2243 982.445 89.2243 976.163 89.2243 970.848 92.0724 966.982 98.2433 963.116 104.414 961.183 112.009 961.183 121.028V156.629H933.154V70.237H958.766L960.699 84.0028C964.082 78.3066 968.431 74.0345 974.23 70.7117 980.029 67.3889 986.795 65.9648 994.527 65.9648 1002.74 65.9648 1009.99 68.3383 1015.31 73.0851z" />
<path fill="#8247E5"
d="M197.648 68.8237C192.815 65.9756 186.533 65.9756 181.218 68.8237L143.524 90.6592L117.912 104.9L80.219 126.735C75.3865 129.583 69.1043 129.583 63.7886 126.735L33.8273 109.646C28.9948 106.798 25.6121 101.577 25.6121 95.8807V62.1781C25.6121 56.4819 28.5116 51.2604 33.8273 48.4123L63.3053 31.7984C68.1378 28.9503 74.42 28.9503 79.7357 31.7984L109.214 48.4123C114.046 51.2604 117.429 56.4819 117.429 62.1781V84.0136L143.041 69.2984V47.463C143.041 41.7667 140.142 36.5452 134.826 33.6971L80.219 2.36801C75.3865 -0.480092 69.1043 -0.480092 63.7886 2.36801L8.2152 33.6971C2.89948 36.5452 0 41.7667 0 47.463V110.596C0 116.292 2.89948 121.514 8.2152 124.362L63.7886 155.691C68.621 158.539 74.9033 158.539 80.219 155.691L117.912 134.33L143.524 119.615L181.218 98.2541C186.05 95.406 192.332 95.406 197.648 98.2541L227.126 114.868C231.958 117.716 235.341 122.938 235.341 128.634V162.336C235.341 168.033 232.442 173.254 227.126 176.102L197.648 193.191C192.815 196.039 186.533 196.039 181.218 193.191L151.74 176.577C146.907 173.729 143.524 168.507 143.524 162.811V140.976L117.912 155.691V177.526C117.912 183.222 120.812 188.444 126.127 191.292L181.701 222.621C186.533 225.469 192.815 225.469 198.131 222.621L253.705 191.292C258.537 188.444 261.92 183.222 261.92 177.526V114.393C261.92 108.697 259.02 103.476 253.705 100.628L197.648 68.8237Z" />
</g>
<defs>
<clipPath id="clip0">
<rect width="1024" height="225" fill="#fff" />
</clipPath>
</defs>
</svg>
</button>
<!-- ////////bsc///////// -->
<button class="btn text-center border rounded-2 mt-auto" type="button" id="bsc"><svg
xmlns="http://www.w3.org/2000/svg" width="200" height="100" viewBox="0 0 600 204">
<path fill="#f0b90b"
d="M63 101.74L51.43 113.3l-11.56-11.56 11.56-11.56zm28.05-28.07l19.81 19.82 11.56-11.56-31.37-31.37-31.37 31.37 11.56 11.56zm39.63 16.51l-11.56 11.56 11.56 11.56 11.55-11.56zm-39.63 39.63L71.24 110l-11.56 11.55 31.37 31.37 31.37-31.37L110.86 110zm0-16.51l11.56-11.56-11.56-11.56-11.56 11.56zm122 1.11v-.16c0-7.54-4-11.31-10.51-13.79 4-2.25 7.38-5.78 7.38-12.11v-.16c0-8.82-7.06-14.52-18.53-14.52h-26.04v56.14h26.7c12.67 0 21.02-5.13 21.02-15.4zm-15.4-24c0 4.17-3.45 5.94-8.9 5.94h-11.37V84.5h12.19c5.21 0 8.1 2.08 8.1 5.77zm3.13 22.46c0 4.17-3.29 6.09-8.75 6.09h-14.65v-12.33h14.27c6.34 0 9.15 2.33 9.15 6.1zM239 129.81V73.67h-12.39v56.14zm66.39 0V73.67h-12.23v34.57l-26.3-34.57h-11.39v56.14h12.19V94.12l27.18 35.69zm68.41 0l-24.1-56.54h-11.39l-24.05 56.54h12.59l5.15-12.59h23.74l5.13 12.59zm-22.45-23.5h-14.96l7.46-18.2zm81.32 23.5V73.67h-12.23v34.57l-26.31-34.57h-11.38v56.14h12.18V94.12l27.19 35.69zm63.75-9.06l-7.85-7.94c-4.41 4-8.34 6.57-14.76 6.57-9.62 0-16.28-8-16.28-17.64v-.16c0-9.62 6.82-17.48 16.28-17.48 5.61 0 10 2.4 14.36 6.33l7.83-9.06c-5.21-5.13-11.54-8.66-22.13-8.66-17.24 0-29.27 13.07-29.27 29v.16c0 16.12 12.27 28.87 28.79 28.87 10.81.03 17.22-3.82 22.99-9.99zm52.7 9.06v-11H518.6V107h26.47V96H518.6V84.66h30.08v-11h-42.35v56.14z" />
<path fill="none" d="M.26 0h600v204H.26z" />
</svg></button>
<!-- <button class="btn text-center border rounded-2 mt-auto" type="button" id="avax"><svg width="200"
height="100" viewBox="0 0 3194 647" fill="none" xmlns="http://www.w3.org/2000/svg">
<path
d="M863.927 210.703H898.649L995.807 436.238H949.936L928.911 384.632H831.116L810.728 436.238H765.812L863.927 210.703ZM914.895 350.229L880.173 258.486L844.813 350.229H914.895Z"
fill="black" />
<path
d="M1038.86 210.703H1085.05L1146.53 381.128L1209.92 210.703H1253.25L1162.14 436.238H1127.42L1038.86 210.703Z"
fill="black" />
<path
d="M1396.69 210.703H1431.42L1528.57 436.238H1482.7L1461.68 384.632H1363.88L1343.49 436.238H1298.58L1396.69 210.703ZM1447.66 350.229L1412.94 258.486L1377.58 350.229H1447.66Z"
fill="black" />
<path d="M1617.35 210.703H1657.49V399.923H1753.37V436.238H1617.35V210.703Z" fill="black" />
<path
d="M1919.19 210.703H1953.92L2051.07 436.238H2005.2L1984.18 384.632H1886.38L1865.99 436.238H1821.08L1919.19 210.703ZM1970.16 350.229L1935.44 258.486L1900.08 350.229H1970.16Z"
fill="black" />
<path
d="M2139.85 210.703H2193.05L2302.31 378.261H2302.95V210.703H2343.08V436.238H2292.12L2180.62 263.264H2179.99V436.238H2139.85V210.703Z"
fill="black" />
<path
d="M2611.91 263.582C2603.63 254.663 2595.56 248.717 2587.7 245.743C2580.05 242.77 2572.3 241.284 2564.45 241.284C2552.77 241.284 2542.15 243.407 2532.59 247.655C2523.25 251.69 2515.18 257.424 2508.38 264.857C2501.58 272.077 2496.28 280.572 2492.45 290.341C2488.84 300.11 2487.04 310.622 2487.04 321.877C2487.04 333.982 2488.84 345.132 2492.45 355.325C2496.28 365.519 2501.58 374.332 2508.38 381.765C2515.18 389.198 2523.25 395.038 2532.59 399.286C2542.15 403.533 2552.77 405.657 2564.45 405.657C2573.58 405.657 2582.39 403.533 2590.89 399.286C2599.59 394.826 2607.66 387.818 2615.1 378.261L2648.22 401.834C2638.03 415.85 2625.61 426.044 2610.95 432.415C2596.3 438.786 2580.69 441.972 2564.13 441.972C2546.71 441.972 2530.68 439.211 2516.03 433.689C2501.58 427.955 2489.05 419.992 2478.44 409.798C2468.03 399.392 2459.85 386.968 2453.91 372.527C2447.96 358.086 2444.99 342.052 2444.99 324.426C2444.99 306.375 2447.96 290.022 2453.91 275.369C2459.85 260.503 2468.03 247.867 2478.44 237.461C2489.05 227.055 2501.58 219.091 2516.03 213.57C2530.68 207.836 2546.71 204.969 2564.13 204.969C2579.42 204.969 2593.54 207.73 2606.49 213.251C2619.66 218.56 2631.87 227.692 2643.13 240.647L2611.91 263.582Z"
fill="black" />
<path
d="M2738.88 210.703H2779.01V300.534H2884.45V210.703H2924.59V436.238H2884.45V336.849H2779.01V436.238H2738.88V210.703Z"
fill="black" />
<path
d="M3038.7 210.703H3188.1V247.018H3078.84V302.446H3182.37V338.761H3078.84V399.923H3193.84V436.238H3038.7V210.703Z"
fill="black" />
<path fill-rule="evenodd" clip-rule="evenodd"
d="M647 323.5C647 502.164 502.164 647 323.5 647C144.836 647 0 502.164 0 323.5C0 144.836 144.836 0 323.5 0C502.164 0 647 144.836 647 323.5ZM231.83 452.23H169.048C155.856 452.23 149.339 452.23 145.365 449.687C141.074 446.905 138.451 442.296 138.133 437.21C137.895 432.521 141.153 426.799 147.67 415.355L302.687 142.116C309.283 130.513 312.621 124.712 316.833 122.566C321.363 120.262 326.767 120.262 331.297 122.566C335.509 124.712 338.847 130.513 345.443 142.116L377.311 197.746L377.474 198.03L377.474 198.03C384.598 210.478 388.211 216.79 389.788 223.415C391.536 230.647 391.536 238.276 389.788 245.508C388.199 252.184 384.622 258.542 377.39 271.178L295.964 415.117L295.753 415.486C288.581 428.036 284.947 434.396 279.91 439.197C274.427 444.442 267.831 448.256 260.599 450.402C254.003 452.23 246.612 452.23 231.83 452.23ZM390.376 452.237h380.338h380.338C493.61 452.237 500.285 452.237 504.259 449.615C508.55 446.833 511.252 442.144 511.491 437.058C511.721 432.524 508.533 427.023 502.286 416.245C502.073 415.877 501.856 415.504 501.636 415.124L456.576 338.037L456.063 337.17C449.731 326.461 446.533 321.054 442.43 318.964C437.9 316.659 432.576 316.659 428.046 318.964C423.913 321.109 420.575 326.752 413.979 338.116L369.078 415.203L368.924 415.469C362.351 426.815 359.066 432.485 359.303 437.138C359.621 442.224 362.243 446.913 366.535 449.694C370.429 452.237 377.104 452.237 390.376 452.237Z"
fill="black" />
</svg>
</button> -->
<!-- ///////////paypal////// -->
<button class="btn text-center border rounded-2 mt-auto" type="button"
onclick="window.location.href='https://www.paypal.com/donate/?hosted_button_id=VDTEJSTXR7P7Q'; ">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="200"
height="100" viewBox="-11.153 -13.144 326.05 105.914">
<g transform="matrix(2.07675 0 0 -2.07675 -11.153 92.77)">
<defs>
<path id="a" d="M-84.525-27.457h326.05V78.457h-326.05z" />
</defs>
<clipPath id="b">
<use overflow="visible" xlink:href="#a" />
</clipPath>
<g clip-path="url(#b)">
<path fill="#003087"
d="M32.419 40.982c-1.674 1.908-4.7 2.726-8.571 2.726H12.613a1.609 1.609 0 0 1-1.59-1.357L6.347 12.68a.964.964 0 0 1 .953-1.114h6.936l1.742 11.049-.054-.346a1.604 1.604 0 0 0 1.583 1.357h3.296c6.475 0 11.545 2.63 13.026 10.238.044.225.082.444.115.658.44 2.812-.003 4.726-1.524 6.459" />
<path fill="#009cde"
d="M117.331 26.863c-.424-2.784-2.55-2.784-4.606-2.784h-1.17l.821 5.198c.05.314.32.545.638.545h.537c1.4 0 2.722 0 3.404-.797.407-.477.53-1.185.376-2.162m-.895 7.264h-7.756a1.08 1.08 0 0 1-1.066-.91L104.48 13.33a.647.647 0 0 1 .638-.747h3.98c.371 0 .687.27.745.636l.89 5.64c.082.523.534.91 1.064.91h2.454c5.11 0 8.058 2.471 8.828 7.372.347 2.142.014 3.826-.989 5.005-1.103 1.296-3.058 1.982-5.653 1.982" />
<path fill="#003087"
d="M62.011 26.863c-.424-2.784-2.55-2.784-4.607-2.784h-1.17l.821 5.198c.05.314.32.545.638.545h.537c1.4 0 2.722 0 3.404-.797.408-.477.531-1.185.377-2.162m-.895 7.264H53.36c-.53 0-.982-.386-1.065-.91L49.16 13.33a.646.646 0 0 1 .638-.747h3.704c.53 0 .981.386 1.064.91l.847 5.365c.082.524.534.91 1.064.91h2.454c5.11 0 8.058 2.472 8.828 7.373.347 2.142.014 3.826-.989 5.005-1.103 1.296-3.058 1.982-5.653 1.982M79.123 19.723c-.36-2.122-2.043-3.547-4.192-3.547-1.077 0-1.94.347-2.494 1.003-.55.65-.756 1.577-.582 2.608.334 2.104 2.046 3.574 4.162 3.574 1.055 0 1.91-.35 2.476-1.012.569-.667.793-1.599.63-2.626m5.176 7.23h-3.714a.647.647 0 0 1-.64-.547l-.162-1.038-.26.376c-.804 1.167-2.597 1.558-4.387 1.558-4.103 0-7.608-3.11-8.29-7.47-.355-2.177.149-4.256 1.383-5.707 1.133-1.333 2.75-1.888 4.677-1.888 3.308 0 5.142 2.124 5.142 2.124l-.166-1.032a.646.646 0 0 1 .639-.747h3.344c.53 0 .982.385 1.065.91l2.008 12.713a.647.647 0 0 1-.64.747" />
<path fill="#009cde"
d="M134.443 19.723c-.36-2.122-2.043-3.547-4.192-3.547-1.077 0-1.94.347-2.494 1.003-.55.65-.756 1.577-.582 2.608.334 2.104 2.045 3.574 4.162 3.574 1.055 0 1.91-.35 2.476-1.012.569-.667.793-1.599.63-2.626m5.176 7.23h-3.714a.647.647 0 0 1-.64-.547l-.162-1.038-.26.376c-.804 1.167-2.597 1.558-4.387 1.558-4.102 0-7.607-3.11-8.29-7.47-.355-2.177.15-4.256 1.384-5.707 1.133-1.333 2.75-1.888 4.677-1.888 3.309 0 5.143 2.124 5.143 2.124l-.166-1.032a.644.644 0 0 1 .637-.747h3.343c.53 0 .982.385 1.066.91l2.008 12.713a.647.647 0 0 1-.64.747" />
<path fill="#003087"
d="M104.08 26.952h-3.734c-.357 0-.69-.177-.89-.473l-5.15-7.584-2.183 7.288a1.08 1.08 0 0 1-1.033.77h-3.669a.647.647 0 0 1-.612-.856l4.11-12.066-3.866-5.455a.647.647 0 0 1 .528-1.02h3.73c.352 0 .683.173.885.463l12.414 17.918a.646.646 0 0 1-.53 1.015" />
<path fill="#009cde"
d="M143.996 33.58l-3.184-20.251a.647.647 0 0 1 .639-.747h3.201c.53 0 .982.386 1.065.91l3.139 19.888a.646.646 0 0 1-.639.747h-3.582a.645.645 0 0 1-.639-.546" />
<path fill="#003087"
d="M32.419 40.982c-1.674 1.908-4.7 2.726-8.571 2.726H12.613a1.609 1.609 0 0 1-1.59-1.357L6.347 12.68a.964.964 0 0 1 .953-1.114h6.936l1.742 11.049-.054-.346a1.604 1.604 0 0 0 1.583 1.357h3.296c6.475 0 11.545 2.63 13.026 10.238.044.225.082.444.115.658.44 2.812-.003 4.726-1.524 6.459" />
<path fill="#003087"
d="M17.849 34.485a1.408 1.408 0 0 0 1.389 1.187h8.808c1.043 0 2.016-.068 2.905-.21a12.206 12.206 0 0 0 1.44-.322 7.957 7.957 0 0 0 1.551-.618c.442 2.813-.002 4.726-1.523 6.46-1.675 1.907-4.7 2.725-8.571 2.725H12.612a1.609 1.609 0 0 1-1.588-1.357L6.346 12.682a.964.964 0 0 1 .952-1.115h6.937l1.742 11.05 1.872 11.868z" />
<path fill="#009cde"
d="M33.943 34.523a18.294 18.294 0 0 0-.115-.658c-1.481-7.607-6.551-10.238-13.026-10.238h-3.297a1.602 1.602 0 0 1-1.582-1.357l-1.688-10.702-.48-3.036a.844.844 0 0 1 .834-.976h5.847c.692 0 1.28.504 1.389 1.187l.057.298 1.102 6.984.07.386a1.407 1.407 0 0 0 1.39 1.187h.875c5.664 0 10.099 2.3 11.395 8.956.54 2.78.26 5.103-1.17 6.734a5.584 5.584 0 0 1-1.601 1.235" />
<path fill="#012169"
d="M32.392 35.14c-.226.067-.459.127-.699.18-.24.053-.488.1-.742.14-.89.145-1.862.213-2.906.213h-8.807a1.404 1.404 0 0 1-1.389-1.188l-1.872-11.87-.054-.345a1.602 1.602 0 0 0 1.582 1.357h3.297c6.475 0 11.545 2.63 13.026 10.238.044.225.081.443.115.658a7.998 7.998 0 0 1-1.218.514c-.109.036-.22.07-.333.104" />
</g>
</g>
</svg></button>
<!-- <button class="btn text-center border rounded-2 mt-auto" type="button" id="xdai">
<?xml version="1.0" standalone="no"?>
<!DOCTYPE svg
PUBLIC "-//W3C//DTD SVG 20010904//EN" "http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd">
<svg version="1.0" xmlns="http://www.w3.org/2000/svg" width="200" height="100"
viewBox="0 0 7524.000000 1680.000000" preserveAspectRatio="xMidYMid meet">
<g transform="translate(0.000000,1680.000000) scale(0.100000,-0.100000)" fill="#000000"
stroke="none">
<path d="M10701 15529 c-1403 -64 -2776 -555 -3906 -1396 -499 -372 -905 -762
-1319 -1267 l-98 -119 2829 -2829 2828 -2828 2829 2829 2830 2830 -75 97
c-260 342 -674 762 -1069 1085 -1360 1112 -3080 1679 -4849 1598z m774 -929
c826 -60 1580 -261 2300 -615 546 -268 1028 -602 1494 -1036 l163 -152 -2196
-2196 -2196 -2196 -2196 2196 -2196 2196 164 151 c288 266 547 470 843 665
872 572 1861 905 2930 986 160 12 727 13 890 1z" />
<path d="M4908 12054 c-51 -81 -178 -315 -255 -469 -815 -1630 -972 -3518
-438 -5274 246 -810 661 -1608 1187 -2284 365 -469 813 -914 1280 -1274 1449
-1116 3257 -1628 5088 -1442 1031 104 2036 438 2924 972 536 321 995 684 1436
1133 1176 1200 1881 2748 2014 4424 95 1197 -94 2347 -564 3425 -104 238 -379
766 -424 812 -9 10 -137 -113 -583 -560 l-572 -572 66 -85 c370 -477 560
-1065 540 -1675 -7 -196 -23 -323 -63 -503 -205 -918 -916 -1673 -1822 -1936
-255 -74 -452 -101 -742 -100 -241 0 -368 13 -575 60 -353 79 -734 260 -1028
487 l-78 61 -630 -630 -629 -629 -629 629 -629 629 -98 -75 c-364 -276 -751
-439 -1205 -509 -205 -32 -562 -32 -764 -1 -388 61 -732 191 -1050 400 -169
111 -300 219 -450 373 -400 410 -636 893 -721 1474 -25 167 -25 533 0 700 67
457 251 900 519 1245 27 36 54 70 58 75 5 7 -214 233 -565 584 l-574 574 -24
-39z" />
<path d="M54700 8750 l0 -3080 650 0 649 0 4 1148 c3 1121 3 1149 24 1237 62
269 189 453 376 545 131 64 187 75 377 74 233 0 343 -33 457 -137 75 -69 124
-147 157 -249 56 -177 56 -181 56 -1450 l0 -1168 655 0 655 0 0 1233 c0 677
-5 1311 -10 1408 -25 482 -129 812 -338 1077 -172 219 -432 362 -768 423 -161
30 -519 33 -664 6 -363 -67 -652 -211 -887 -444 -41 -40 -79 -73 -84 -73 -5 0
-9 487 -9 1265 l0 1265 -650 0 -650 0 0 -3080z" />
<path d="M41271 11760 c-87 -12 -181 -44 -276 -93 -94 -49 -230 -177 -283
-269 -105 -178 -126 -408 -57 -614 79 -235 248 -394 502 -470 78 -24 105 -27
233 -27 129 0 155 3 235 27 342 104 545 370 545 716 0 133 -24 232 -82 342
-97 182 -269 313 -480 367 -92 24 -248 33 -337 21z" />
<path d="M65184 11760 c-123 -17 -255 -69 -359 -140 -77 -53 -180 -173 -224
-262 -55 -113 -75 -199 -75 -333 0 -177 51 -326 159 -463 92 -118 215 -198
382 -248 78 -24 105 -27 233 -27 129 0 155 3 235 27 341 103 545 371 545 715
0 129 -18 210 -70 316 -121 250 -366 404 -667 419 -54 3 -125 1 -159 -4z" />
<path d="M23604 11690 c-553 -46 -1034 -204 -1447 -473 -618 -404 -1040 -1054
-1202 -1852 -79 -389 -92 -861 -34 -1260 173 -1203 928 -2063 2089 -2378 130
-35 318 -72 480 -94 109 -14 202 -18 480 -18 372 1 517 13 810 71 563 111
1125 339 1478 599 l62 45 0 1335 0 1335 -1245 0 -1245 0 0 -575 0 -575 580 0
580 0 0 -355 0 -355 -102 -48 c-277 -132 -523 -193 -838 -208 -374 -17 -710
71 -999 263 -121 81 -310 272 -393 398 -163 246 -257 507 -299 830 -15 115
-15 423 0 540 81 630 388 1093 884 1330 189 91 366 133 602 142 490 19 971
-150 1358 -478 55 -46 104 -88 111 -93 9 -6 165 121 499 404 268 227 487 417
487 422 0 15 -178 194 -275 278 -478 410 -1077 671 -1735 755 -145 19 -538 27
-686 15z" />
<path d="M51395 11693 c-403 -25 -820 -125 -1158 -278 -473 -214 -878 -562
-1159 -995 -412 -635 -579 -1487 -457 -2335 187 -1301 1050 -2191 2359 -2429
290 -53 724 -71 999 -42 681 73 1284 346 1785 809 116 107 278 286 274 303 -2
6 -201 181 -443 389 -242 208 -468 403 -502 433 l-62 54 -92 -97 c-340 -355
-738 -543 -1209 -571 -317 -18 -684 74 -934 234 -152 98 -327 264 -431 412
-276 392 -377 938 -274 1479 127 659 591 1144 1217 1271 402 81 802 16 1162
-191 154 -88 268 -177 419 -325 l135 -133 385 332 c212 182 441 379 508 437
l121 104 -31 41 c-58 76 -332 342 -436 424 -302 239 -600 401 -961 521 -251
84 -446 124 -720 149 -105 10 -371 12 -495 4z" />
<path d="M6556 10287 c-472 -709 -388 -1667 203 -2289 618 -651 1614 -763
2367 -267 57 38 104 72 104 76 0 10 -2582 2593 -2592 2593 -4 0 -41 -51 -82
-113z" />
<path d="M14144 9107 l-1298 -1293 89 -62 c302 -211 665 -322 1055 -322 317 0
576 64 860 211 170 88 287 176 440 329 153 153 241 270 329 440 149 287 211
542 211 870 0 310 -59 558 -198 835 -53 107 -167 285 -182 285 -5 0 -593 -582
-1306 -1293z" />
<path d="M29575 9834 c-381 -41 -730 -209 -995 -478 -35 -36 -68 -66 -72 -66
-4 0 -8 106 -8 235 l0 235 -650 0 -650 0 0 -2045 0 -2045 650 0 650 0 0 1101
c0 1212 0 1221 61 1404 66 199 186 348 341 424 129 63 189 76 363 76 111 0
166 -5 213 -17 255 -71 382 -256 421 -616 7 -69 11 -476 11 -1237 l0 -1135
650 0 651 0 -4 1393 c-3 1371 -3 1394 -24 1524 -119 729 -460 1115 -1079 1224
-116 20 -428 34 -529 23z" />
<path d="M33885 9834 c-513 -51 -887 -185 -1227 -441 -246 -186 -437 -421
-573 -707 -308 -644 -282 -1460 67 -2070 306 -535 852 -885 1548 -993 165 -25
607 -25 770 0 906 141 1550 696 1756 1512 52 207 68 341 68 575 0 293 -28 478
-110 729 -247 753 -872 1251 -1726 1376 -98 15 -488 28 -573 19z m375 -1170
c324 -61 577 -295 674 -624 46 -153 57 -350 31 -506 -40 -229 -132 -404 -293
-555 -161 -150 -320 -216 -548 -226 -251 -11 -458 65 -636 235 -209 200 -310
470 -295 786 19 381 217 696 524 831 57 26 179 60 238 68 75 10 230 6 305 -9z" />
<path d="M38141 9829 c-454 -51 -840 -248 -1061 -541 -72 -95 -161 -272 -190
-378 -47 -168 -63 -393 -40 -555 66 -465 358 -789 921 -1023 52 -21 219 -80
372 -131 477 -158 596 -224 622 -348 12 -58 -19 -136 -72 -182 -74 -66 -154
-86 -338 -86 -168 1 -269 17 -418 66 -182 61 -390 181 -561 323 -44 37 -80 65
-81 64 -1 -2 -139 -192 -305 -422 l-303 -419 29 -25 c396 -329 845 -513 1378
-563 163 -15 532 -6 676 16 453 71 803 252 1005 521 184 244 268 567 236 905
-41 438 -235 701 -681 924 -151 75 -333 149 -619 250 -374 131 -501 189 -583
263 -51 46 -68 80 -68 138 0 88 62 159 176 200 74 27 252 24 368 -4 227 -57
452 -178 629 -340 32 -29 62 -52 67 -50 11 4 610 886 610 899 0 18 -281 194
-425 264 -234 116 -482 190 -755 225 -116 15 -486 21 -589 9z" />
<path d="M44131 9829 c-827 -93 -1331 -621 -1298 -1358 14 -313 113 -546 322
-756 203 -205 466 -347 905 -490 454 -147 602 -214 661 -297 83 -117 11 -269
-152 -320 -64 -20 -95 -23 -224 -23 -166 1 -266 16 -417 66 -178 58 -391 180
-562 323 l-78 66 -18 -23 c-9 -12 -147 -202 -305 -421 l-288 -399 29 -25 c462
-385 998 -572 1638 -572 210 0 363 13 524 46 559 112 926 397 1072 832 100
298 86 697 -33 954 -50 109 -109 192 -198 279 -184 181 -453 318 -1013 515
-369 130 -496 188 -578 262 -51 46 -68 80 -68 138 0 163 207 255 470 210 161
-28 340 -98 485 -189 67 -41 203 -147 239 -186 17 -17 35 -31 40 -31 11 0 608
872 614 896 5 20 -260 189 -423 269 -233 116 -481 190 -755 225 -116 15 -486
21 -589 9z" />
<path d="M61100 9834 c-175 -20 -339 -58 -470 -108 -524 -203 -918 -630 -1105
-1199 -85 -260 -125 -520 -125 -821 0 -520 137 -979 406 -1358 80 -113 297
-328 414 -410 246 -173 531 -282 850 -324 170 -22 472 -15 612 15 285 61 503
183 696 386 49 52 92 92 96 88 3 -3 6 -102 6 -220 l0 -213 620 0 620 0 0 2045
0 2045 -655 0 -655 0 0 -215 c0 -118 -4 -215 -9 -215 -5 0 -26 19 -48 43 -210
226 -477 374 -789 438 -95 19 -376 33 -464 23z m630 -1154 c340 -54 612 -314
706 -676 51 -197 42 -467 -21 -655 -96 -281 -324 -503 -590 -574 -83 -22 -273
-30 -364 -16 -299 47 -543 240 -657 521 -107 265 -105 621 6 883 156 366 533
578 920 517z" />
<path d="M69285 9834 c-369 -40 -715 -203 -975 -460 -47 -46 -89 -84 -93 -84
-4 0 -7 106 -7 235 l0 235 -650 0 -650 0 0 -2045 0 -2045 650 0 650 0 0 1101
c0 1212 0 1221 61 1404 66 199 186 348 341 424 129 63 189 76 363 76 225 0
337 -37 450 -150 72 -72 117 -158 149 -287 44 -172 46 -240 46 -1433 l0 -1135
650 0 651 0 -4 1398 c-3 956 -8 1419 -15 1467 -69 434 -184 710 -383 920 -239
251 -559 372 -1009 380 -102 2 -203 1 -225 -1z" />
<path d="M40740 7715 l0 -2045 650 0 650 0 0 2045 0 2045 -650 0 -650 0 0
-2045z" />
<path d="M64650 7715 l0 -2045 650 0 650 0 0 2045 0 2045 -650 0 -650 0 0
-2045z" />
</g>
</svg>
</button> -->
<!-- /////////////tron////// -->
<button class="btn text-center border rounded-2 mt-auto" type="button" id="trx">
<?xml version="1.0" standalone="no"?>
<!DOCTYPE svg
PUBLIC "-//W3C//DTD SVG 20010904//EN" "http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd">
<svg version="1.0" xmlns="http://www.w3.org/2000/svg" width="200" height="100"
viewBox="0 0 951.000000 373.000000" preserveAspectRatio="xMidYMid meet">
<metadata>
Created by potrace 1.16, written by Peter Selinger 2001-2019
</metadata>
<g transform="translate(0.000000,373.000000) scale(0.100000,-0.100000)" fill="#000000"
stroke="none">
<path d="M643 2978 c8 -20 534 -1353 769 -1948 116 -294 214 -539 218 -543 4
-5 212 241 461 547 588 719 901 1103 917 1125 11 16 -13 42 -233 252 l-244
234 -148 28 c-82 15 -427 79 -768 142 -341 63 -692 128 -780 145 -180 34 -199
35 -192 18z m822 -267 c713 -131 880 -163 884 -167 3 -3 -2 -10 -10 -18 -42
-39 -509 -426 -513 -426 -8 0 -836 690 -836 696 0 2 10 2 23 -1 12 -3 216 -41
452 -84z m-137 -368 c229 -192 422 -352 428 -358 10 -8 -2 -130 -52 -550 -68
-575 -71 -593 -83 -579 -4 5 -69 164 -143 354 -75 190 -234 593 -354 895 -229
582 -230 585 -219 585 4 0 194 -156 423 -347z m1321 11 c78 -75 140 -138 139
-140 -6 -5 -780 -145 -784 -142 -4 4 488 418 497 418 4 0 70 -61 148 -136z
m10 -421 c-61 -76 -153 -189 -203 -251 -260 -324 -688 -843 -692 -840 -5 5
122 1068 128 1073 6 5 824 153 851 154 27 1 22 -7 -84 -136z" />
<path d="M7702 1793 l3 -658 57 -3 58 -3 2 488 3 487 205 -240 c113 -133 320
-376 460 -542 140 -165 258 -301 263 -301 4 -1 6 297 5 662 l-3 662 -57 3 -58
3 0 -486 c0 -267 -4 -485 -8 -485 -5 0 -49 48 -98 106 -295 351 -816 960 -824
962 -7 3 -9 -231 -8 -655z" />
<path d="M3480 2290 l0 -60 525 0 525 0 0 60 0 60 -525 0 -525 0 0 -60z" />
<path d="M4840 1740 l0 -610 55 0 55 0 2 548 3 547 299 3 c247 2 308 0 346
-13 168 -56 225 -267 109 -399 -69 -78 -79 -80 -374 -86 l-260 -5 0 -295 0
-295 58 -3 57 -3 0 241 0 240 158 0 157 0 120 -231 c66 -126 125 -234 132
-240 6 -5 38 -9 71 -7 l60 3 -124 235 c-68 129 -124 240 -124 245 0 6 25 23
55 39 241 126 260 474 34 628 -92 64 -127 68 -531 68 l-358 0 0 -610z" />
<path d="M6693 2340 c-225 -41 -417 -220 -478 -445 -21 -78 -21 -232 0 -310
29 -110 72 -184 159 -271 124 -124 248 -176 421 -176 105 0 169 14 260 58 234
111 373 368 336 621 -42 297 -273 512 -565 528 -44 2 -104 0 -133 -5z m199
-121 c127 -27 258 -121 323 -233 104 -178 78 -422 -62 -577 -45 -50 -129 -105
-201 -131 -84 -31 -235 -30 -317 2 -193 74 -306 225 -322 430 -10 139 40 273
143 376 116 117 277 166 436 133z" />
<path d="M6762 1830 c-32 -14 -52 -66 -40 -103 22 -62 113 -66 144 -6 34 66
-34 138 -104 109z" />
<path d="M3832 1553 l3 -418 55 0 55 0 0 415 0 415 -58 3 -57 3 2 -418z" />
<path d="M4070 1550 l0 -420 55 0 55 0 0 420 0 420 -55 0 -55 0 0 -420z" />
<path d="M7940 1360 l0 -230 60 0 60 0 0 230 0 230 -60 0 -60 0 0 -230z" />
</g>
</svg>
</button>
<!-- /////////avian///////// -->
<button class="btn text-center border rounded-2 mt-auto" type="button" id="avn">
<?xml version="1.0" standalone="no"?>
<!DOCTYPE svg
PUBLIC "-//W3C//DTD SVG 20010904//EN" "http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd">
<svg version="1.0" xmlns="http://www.w3.org/2000/svg" width="200.000000pt" height="100.000000pt"
viewBox="0 0 2791.000000 1395.000000" preserveAspectRatio="xMidYMid meet">
<metadata>
Created by potrace 1.16, written by Peter Selinger 2001-2019
</metadata>
<g transform="translate(0.000000,1395.000000) scale(0.100000,-0.100000)" fill="#000000"
stroke="none">
<path d="M10676 11162 c-11 -26 -22 -49 -26 -52 -4 -3 -12 -18 -18 -35 -6 -16
-33 -84 -60 -150 -27 -66 -75 -183 -107 -260 -31 -77 -60 -144 -65 -150 -4 -5
-58 -134 -120 -285 -62 -151 -128 -309 -147 -350 -19 -41 -57 -129 -83 -195
-96 -238 -150 -368 -165 -394 -8 -14 -39 -86 -69 -159 -44 -106 -52 -134 -41
-139 14 -5 73 20 375 157 152 70 199 91 268 121 47 21 98 44 202 92 51 23 88
40 200 89 25 11 70 31 100 45 30 14 73 33 95 43 22 10 65 29 95 43 30 14 80
36 110 50 235 106 270 126 243 139 -5 2 -41 68 -82 148 -41 80 -95 186 -121
235 -26 50 -107 207 -180 350 -114 222 -262 508 -343 663 -12 23 -26 42 -32
42 -5 0 -19 -21 -29 -48z m149 -237 c59 -115 122 -237 140 -270 18 -33 70
-132 115 -220 149 -290 299 -579 323 -625 l23 -45 -90 -41 c-50 -23 -113 -51
-141 -64 -27 -12 -74 -33 -102 -46 -29 -13 -77 -35 -105 -48 -53 -24 -98 -44
-193 -86 -27 -12 -75 -33 -105 -47 -30 -14 -73 -33 -95 -43 -22 -10 -65 -29
-95 -43 -30 -14 -77 -35 -105 -47 -58 -26 -122 -55 -220 -100 -38 -18 -115
-52 -170 -77 -55 -25 -118 -54 -139 -64 -22 -10 -41 -19 -42 -19 -4 0 186 463
195 474 5 6 58 133 119 281 60 149 125 304 145 345 19 41 78 181 130 310 53
130 113 274 135 320 22 47 66 151 98 232 32 80 62 143 65 140 4 -4 55 -101
114 -217z" />
<path d="M3290 11037 c0 -10 11 -92 66 -482 3 -22 15 -110 27 -195 l22 -155
45 2 c53 2 68 5 178 27 45 10 95 19 110 21 15 2 27 5 27 6 0 1 9 3 20 4 11 1
80 15 154 30 74 15 151 29 170 31 20 3 40 9 44 13 5 5 -49 55 -120 111 -70 57
-132 108 -138 114 -5 7 -89 76 -185 154 -96 77 -228 184 -292 237 -65 52 -120
95 -123 95 -3 0 -5 -6 -5 -13z m231 -194 c174 -140 541 -439 576 -469 l25 -21
-54 -8 c-29 -5 -60 -10 -68 -11 -8 -2 -28 -5 -45 -8 -16 -3 -75 -15 -130 -26
-55 -12 -111 -23 -125 -25 -14 -2 -38 -7 -55 -10 -99 -19 -183 -36 -202 -40
-19 -4 -23 -1 -23 19 0 13 -20 165 -44 338 -24 172 -47 339 -51 372 l-8 58 29
-25 c16 -14 95 -79 175 -144z" />
<path d="M17290 10847 c0 -7 9 -40 19 -73 11 -32 34 -106 51 -164 17 -58 38
-123 45 -145 8 -22 32 -101 55 -175 23 -74 57 -182 75 -240 18 -58 47 -152 65
-210 18 -58 42 -136 55 -175 12 -38 82 -263 155 -500 74 -236 136 -432 138
-435 2 -3 12 5 22 17 17 21 17 25 -5 90 -29 85 -67 205 -69 218 -2 12 -75 242
-118 374 -16 51 -31 99 -32 105 -3 16 -48 162 -109 351 -48 151 -109 347 -111
359 -2 11 -39 127 -98 311 -16 50 -38 121 -48 158 l-19 69 22 -16 c12 -8 96
-59 187 -112 91 -53 194 -116 230 -139 62 -40 141 -88 724 -435 134 -80 274
-164 312 -188 64 -40 179 -109 583 -350 86 -51 206 -124 266 -161 116 -72 292
-178 709 -425 138 -82 253 -153 254 -157 2 -5 7 -9 12 -9 7 0 164 -93 178
-106 2 -1 -11 -7 -30 -13 -99 -29 -645 -221 -718 -252 -14 -6 -70 -26 -125
-45 -255 -86 -259 -87 -236 -123 7 -11 45 0 202 57 107 39 266 95 354 125 88
30 167 57 175 60 8 4 38 14 65 23 28 8 124 43 215 76 91 33 171 61 178 64 38
11 0 41 -193 154 -88 51 -167 98 -175 105 -8 7 -105 66 -214 130 -110 65 -204
122 -210 127 -11 9 -259 158 -656 393 -118 70 -217 131 -220 134 -3 4 -115 71
-250 150 -135 79 -264 156 -287 172 -24 15 -136 83 -250 150 -115 67 -210 125
-213 129 -3 3 -99 62 -215 129 -115 68 -217 129 -225 136 -8 7 -103 64 -210
127 -107 63 -213 127 -234 141 -42 29 -76 35 -76 14z" />
<path d="M8745 9671 c-6 -6 -751 -381 -1656 -834 -905 -453 -1656 -831 -1670
-841 -14 -9 -29 -13 -32 -9 -4 3 -7 0 -7 -7 0 -7 -3 -11 -6 -7 -3 3 -11 2 -18
-4 -15 -12 -414 -211 -421 -210 -3 1 -11 -3 -18 -8 -23 -19 -427 -220 -427
-213 0 4 -4 2 -8 -3 -4 -6 -317 -165 -695 -354 -659 -330 -688 -346 -685 -370
2 -22 11 -28 48 -38 25 -6 83 -23 130 -38 47 -14 96 -29 109 -31 14 -3 50 -13
80 -23 31 -10 76 -24 101 -31 25 -7 56 -16 70 -20 14 -4 43 -13 65 -19 22 -6
69 -19 105 -30 36 -10 94 -27 130 -37 36 -9 71 -22 78 -27 7 -5 15 -7 19 -4 3
3 18 0 34 -9 16 -8 29 -12 29 -10 0 3 12 1 28 -4 15 -4 54 -16 87 -25 33 -9
69 -21 80 -25 16 -6 377 -111 555 -161 19 -6 50 -14 68 -20 81 -23 102 -29
172 -49 41 -12 89 -25 105 -30 17 -5 68 -20 115 -34 47 -15 94 -28 105 -30 11
-1 31 -9 45 -16 14 -7 25 -12 25 -9 0 4 73 -17 113 -32 13 -5 34 -9 47 -9 13
0 26 -4 29 -9 3 -5 18 -11 33 -14 50 -9 227 -60 479 -136 56 -17 104 -31 108
-31 8 0 7 53 -2 66 -7 10 -138 54 -217 73 -22 5 -78 21 -125 36 -47 15 -98 31
-115 35 -28 8 -142 40 -212 61 -18 5 -48 13 -65 18 -18 5 -73 21 -123 35 -49
15 -108 31 -130 37 -22 6 -56 17 -75 24 -19 7 -57 19 -85 25 -27 7 -54 13 -60
15 -5 1 -13 3 -18 4 -4 0 -23 8 -43 16 -20 8 -45 15 -55 15 -11 0 -27 4 -37 9
-17 9 -220 69 -257 76 -11 2 -74 20 -140 40 -66 20 -138 41 -160 46 -22 5 -58
16 -80 23 -22 8 -60 19 -85 26 -25 7 -56 16 -70 20 -28 9 -154 45 -215 62 -22
6 -71 21 -110 33 -38 12 -88 27 -110 33 -51 14 -183 52 -215 62 -14 4 -45 13
-70 20 -134 37 -170 50 -170 59 0 3 159 85 353 183 1736 869 3885 1948 4440
2227 742 373 684 350 663 261 -3 -14 -15 -65 -27 -115 -11 -49 -23 -98 -25
-108 -2 -10 -6 -27 -9 -37 -3 -10 -7 -27 -9 -37 -6 -27 -85 -368 -173 -742 -8
-36 -16 -72 -18 -80 -2 -9 -17 -72 -33 -141 -17 -69 -34 -141 -38 -160 -9 -43
-7 -31 -42 -178 -16 -67 -27 -124 -23 -126 3 -2 18 -6 33 -10 28 -6 35 4 54
94 4 19 8 37 9 40 4 15 64 270 90 385 8 33 23 101 35 150 12 50 28 118 36 153
7 34 21 92 30 129 9 37 17 74 19 82 2 9 8 36 15 61 7 25 13 52 15 60 2 8 36
155 76 325 90 386 93 401 86 420 -7 17 -47 20 -62 6z" />
<path d="M11460 9097 c0 -12 82 -275 129 -417 11 -30 35 -109 55 -175 21 -66
45 -145 55 -175 10 -30 38 -116 61 -190 23 -74 44 -142 47 -150 4 -8 7 -19 9
-25 1 -5 23 -71 47 -145 38 -116 46 -131 52 -107 5 18 2 43 -8 70 -8 23 -32
96 -52 162 -20 66 -47 152 -60 190 -22 64 -108 334 -110 345 -1 3 -19 59 -40
125 -21 66 -39 122 -40 125 -2 11 -77 247 -87 272 -5 15 -8 31 -7 37 2 5 40
-13 84 -39 44 -27 160 -95 257 -152 98 -57 177 -106 178 -110 0 -5 -29 -8 -65
-8 l-65 0 0 -70 0 -70 -71 0 -72 0 5 -140 c3 -77 8 -143 11 -146 3 -4 74 -3
156 1 l151 7 0 69 0 68 68 3 67 3 0 87 0 87 55 -31 c30 -17 78 -45 105 -63 28
-18 126 -77 218 -131 374 -220 429 -253 465 -277 20 -14 74 -46 120 -72 l82
-47 -27 -23 c-57 -49 -332 -272 -401 -325 -66 -51 -86 -80 -63 -94 5 -3 103
72 219 168 115 95 227 186 248 202 63 47 77 62 71 77 -3 8 -52 40 -109 72 -56
32 -132 77 -168 100 -36 23 -130 79 -210 125 -80 46 -147 86 -150 90 -3 3 -86
53 -185 110 -99 57 -182 106 -185 110 -3 3 -24 17 -47 30 -37 20 -43 28 -43
57 l0 33 -57 0 c-52 0 -67 5 -138 49 -44 27 -161 97 -260 155 -99 59 -200 120
-225 136 -50 32 -70 37 -70 17z m672 -419 c29 -17 54 -32 55 -33 1 0 6 -40 11
-88 l8 -87 -68 0 -68 0 0 60 0 60 -42 1 c-24 1 -58 1 -75 0 l-33 -3 0 61 0 61
80 0 c72 0 85 -3 132 -32z m-225 -170 l8 -63 73 -3 72 -3 0 -53 0 -53 -131 -7
c-72 -4 -133 -5 -136 -2 -3 2 -7 59 -10 125 l-6 121 61 0 60 0 9 -62z" />
<path d="M16135 8290 c-66 -4 -129 -8 -140 -9 -19 -1 -20 -6 -17 -71 l4 -70
-33 2 c-19 1 -52 1 -74 0 l-41 -2 3 -97 c2 -54 6 -117 9 -140 l5 -43 102 0
c56 0 126 3 155 7 l54 6 -4 63 -3 63 74 7 74 7 -7 90 c-3 49 -6 114 -6 144 0
44 -3 53 -17 51 -10 -1 -72 -5 -138 -8z m139 -137 c3 -64 5 -117 4 -118 -2 -1
-31 -5 -65 -9 l-63 -7 0 65 c0 36 -5 66 -11 68 -5 2 -39 1 -75 -2 l-64 -5 0
57 c0 57 0 57 33 61 17 2 77 5 133 5 l101 2 7 -117z m-291 -50 c-2 -16 0 -46
4 -67 l9 -39 65 2 c73 3 79 -3 79 -75 0 -30 -2 -31 -52 -38 -29 -3 -90 -6
-134 -6 l-81 0 -7 31 c-3 17 -6 71 -6 120 l0 88 38 4 c90 9 89 9 85 -20z" />
<path d="M18272 8123 l-94 -4 4 -69 3 -69 -70 -3 -70 -3 2 -103 c2 -88 0 -103
-12 -98 -60 22 -188 38 -270 33 -236 -16 -432 -134 -510 -309 -30 -68 -55 -88
-106 -88 -10 0 -23 -9 -29 -21 -10 -17 -6 -25 26 -55 21 -19 40 -34 43 -34 4
0 7 -42 7 -93 4 -319 225 -540 564 -564 94 -6 181 5 279 37 l62 21 247 -164
c136 -90 301 -199 367 -242 66 -43 122 -80 125 -84 3 -3 13 -10 22 -16 67 -40
414 -270 416 -277 2 -4 10 -8 17 -8 7 0 15 -3 17 -8 2 -4 75 -54 163 -111 88
-57 162 -107 163 -112 2 -5 8 -9 14 -9 6 0 25 -11 42 -23 17 -13 117 -79 221
-147 105 -67 192 -126 195 -130 3 -4 10 -9 15 -11 6 -2 130 -83 276 -181 146
-97 320 -211 385 -253 65 -43 121 -81 124 -85 3 -4 10 -9 15 -11 38 -15 355
-234 351 -243 -2 -6 -29 -72 -60 -148 -30 -75 -74 -178 -97 -230 -34 -78 -170
-401 -199 -475 -12 -29 -1 -35 35 -18 17 8 57 26 90 40 56 25 80 36 218 99 28
13 75 34 102 46 56 24 117 52 217 99 37 17 70 31 75 31 4 0 16 7 27 15 17 13
13 24 -83 209 l-102 196 58 -37 c32 -20 150 -98 263 -173 113 -75 268 -178
345 -229 77 -50 164 -108 193 -127 67 -45 87 -42 86 11 -1 33 -74 350 -115
500 -6 22 -13 49 -15 60 -2 11 -14 65 -28 120 -24 97 -67 272 -127 520 -16 66
-31 127 -33 135 -9 36 -78 318 -120 495 -26 105 -49 201 -53 215 -3 14 -7 30
-8 35 -2 6 -7 28 -13 50 -6 22 -13 51 -16 65 -4 20 -130 542 -153 630 -3 14
-7 30 -8 35 -28 119 -60 249 -71 283 -8 23 -14 52 -14 62 0 26 -12 25 -39 -4
-26 -28 -25 -34 14 -196 22 -92 28 -117 41 -165 4 -18 45 -180 49 -195 2 -8 8
-35 14 -60 6 -25 36 -148 67 -275 30 -126 57 -237 59 -245 5 -22 110 -453 151
-618 19 -78 37 -150 39 -160 9 -46 48 -203 61 -246 8 -26 14 -55 14 -64 0 -9
4 -29 10 -46 5 -17 23 -87 39 -156 17 -69 62 -253 100 -410 38 -156 69 -286
67 -287 -4 -4 -159 96 -166 107 -3 4 -10 9 -15 11 -6 2 -132 85 -280 183 -149
99 -313 207 -366 242 -92 59 -97 65 -135 138 -21 42 -44 76 -51 76 -6 0 -16
-13 -22 -30 -5 -16 -12 -30 -15 -30 -8 0 -380 241 -386 250 -3 4 -10 9 -15 11
-6 2 -130 83 -276 181 -146 97 -320 211 -385 253 -65 43 -120 81 -122 86 -2 5
-8 9 -14 9 -6 0 -31 15 -57 34 -25 18 -125 84 -221 146 -96 62 -177 116 -180
120 -3 4 -10 9 -15 11 -6 2 -130 83 -275 180 -146 97 -319 211 -385 254 -66
42 -121 81 -123 86 -2 5 -8 9 -14 9 -6 0 -31 15 -57 34 -25 18 -118 80 -206
136 -88 57 -161 107 -163 111 -2 5 -10 9 -17 9 -7 0 -15 3 -17 8 -1 4 -49 37
-105 73 l-101 66 49 38 c122 93 199 267 199 450 0 141 -46 279 -128 381 -40
51 -40 52 -19 62 12 5 47 17 77 25 73 21 234 69 240 72 3 2 5 -239 5 -535 0
-396 3 -542 12 -551 6 -6 32 -14 56 -16 39 -5 49 -2 71 20 l26 26 0 206 0 205
153 0 c170 0 235 -12 296 -54 58 -41 83 -86 130 -236 46 -150 60 -170 123
-170 46 0 94 39 83 68 -3 9 -22 71 -41 137 -39 130 -81 220 -129 271 l-31 33
43 30 c47 34 98 105 113 161 15 54 12 162 -7 219 -20 62 -71 125 -126 152 -99
51 -109 52 -397 58 l-275 6 69 23 c38 12 76 22 85 22 12 0 140 45 159 55 1 1
-3 16 -9 34 -8 22 -16 30 -28 27 -9 -3 -29 -8 -46 -12 -16 -4 -34 -10 -40 -14
-5 -4 -48 -17 -95 -30 -47 -12 -107 -30 -135 -41 -27 -10 -68 -21 -90 -25 -22
-4 -45 -10 -50 -15 -6 -4 -43 -17 -83 -28 l-72 -20 0 34 0 34 68 3 67 3 3 80
c2 44 0 108 -3 143 l-7 62 -61 -2 c-34 -1 -104 -4 -155 -5z m205 -20 c-3 -5
-2 -61 2 -126 l6 -117 -61 0 -61 0 -7 60 -7 60 -47 2 c-26 1 -56 1 -67 1 -27
-1 -35 14 -35 69 l0 47 93 4 c50 1 114 4 140 5 27 1 46 -1 44 -5z m-285 -205
l3 -63 73 0 72 0 0 -31 c0 -28 -5 -34 -47 -52 -79 -33 -122 -36 -176 -12 -36
16 -47 26 -47 44 0 13 -3 57 -6 99 l-7 77 66 0 66 0 3 -62z m-287 -263 c-10
-4 -168 -51 -220 -65 -16 -5 -75 -22 -130 -39 -55 -16 -101 -28 -103 -26 -6 6
84 73 126 94 24 13 63 26 85 31 41 8 262 12 242 5z m1350 -27 c69 -38 100
-106 85 -188 -9 -51 -36 -88 -81 -115 -31 -18 -55 -20 -266 -23 l-233 -3 0
176 0 177 233 -4 c193 -2 237 -6 262 -20z m-1162 -43 c50 -37 101 -99 123
-151 38 -89 35 -304 -7 -390 -27 -58 -80 -116 -139 -154 l-50 -32 -112 75
c-62 41 -160 105 -218 142 -58 37 -107 70 -110 74 -3 3 -16 13 -30 21 -14 8
-60 38 -102 65 -65 42 -77 54 -77 78 -1 43 20 117 33 117 6 0 54 13 106 30 52
16 140 43 195 59 128 38 307 91 320 96 17 6 19 5 68 -30z m-588 -469 c33 -22
62 -43 65 -46 3 -4 10 -9 15 -11 30 -12 325 -213 325 -222 0 -6 -47 -8 -128
-5 -118 4 -134 7 -193 35 -35 17 -83 47 -106 67 -52 45 -101 142 -110 215 l-6
55 39 -24 c21 -13 66 -42 99 -64z m3838 -2538 c18 -12 34 -26 35 -30 2 -4 9
-8 15 -8 36 -1 81 -65 168 -235 50 -99 98 -190 105 -202 13 -20 12 -23 0 -23
-8 0 -31 -9 -53 -19 -21 -11 -63 -30 -93 -44 -30 -13 -82 -37 -115 -52 -33
-15 -78 -35 -100 -45 -22 -10 -66 -30 -97 -44 -32 -14 -84 -38 -115 -52 -32
-14 -76 -35 -97 -45 -43 -22 -52 -20 -38 8 6 10 36 81 67 158 31 77 69 167 85
200 24 51 153 359 181 432 11 28 13 28 52 1z" />
<path d="M6855 7815 c-122 -26 -204 -55 -220 -78 -17 -25 -21 -179 -5 -221 16
-42 64 -44 151 -5 103 45 240 67 315 51 79 -16 115 -51 128 -123 l6 -37 -172
-4 c-140 -4 -184 -9 -228 -25 -136 -50 -194 -98 -244 -202 -29 -61 -31 -74
-30 -171 0 -97 2 -110 32 -172 40 -81 95 -138 170 -175 53 -26 66 -28 182 -28
119 0 128 1 191 31 37 18 85 48 107 68 l40 37 18 -57 c21 -69 33 -74 164 -74
111 0 142 8 165 44 15 23 15 34 -1 153 -9 74 -20 244 -24 403 -6 257 -8 279
-31 339 -44 117 -144 202 -288 245 -68 20 -336 21 -426 1z m375 -673 c0 -10
-5 -45 -11 -77 -21 -114 -68 -170 -151 -181 -91 -11 -135 25 -145 117 -7 72
14 124 59 144 22 9 70 14 141 15 97 0 107 -2 107 -18z" />
<path d="M9670 7816 c-30 -7 -90 -23 -133 -36 -98 -29 -107 -44 -107 -165 0
-78 2 -88 25 -110 31 -32 58 -31 137 4 127 58 300 76 376 39 35 -18 63 -59 72
-107 l7 -41 -147 0 c-275 0 -416 -62 -492 -218 -31 -63 -33 -72 -33 -177 0
-108 1 -113 38 -188 44 -89 93 -135 186 -172 50 -21 77 -25 161 -25 119 0 192
24 280 93 l55 43 15 -50 c21 -67 39 -76 168 -76 117 0 157 14 169 58 3 15 1
79 -6 142 -7 63 -17 239 -21 390 -7 243 -10 282 -29 334 -43 119 -106 185
-229 238 -77 32 -78 32 -257 35 -118 1 -199 -3 -235 -11z m375 -698 c-16 -108
-27 -139 -70 -186 -43 -47 -43 -47 -109 -47 -58 0 -69 3 -93 28 -26 25 -28 33
-28 106 0 65 4 83 20 101 31 34 51 39 173 39 l114 1 -7 -42z" />
<path d="M11105 7811 c-73 -26 -130 -57 -169 -92 l-35 -30 -18 57 c-21 69 -32
74 -163 74 -178 0 -184 -9 -159 -235 14 -124 18 -243 18 -536 1 -307 4 -379
15 -395 13 -17 27 -19 170 -19 114 0 158 3 168 13 10 10 14 98 18 385 l5 372
31 55 c37 65 79 96 141 106 97 14 154 -28 173 -127 6 -28 10 -212 10 -408 0
-292 3 -361 14 -377 13 -17 29 -19 160 -22 144 -3 146 -3 171 22 l25 25 0 399
c0 370 -1 405 -20 463 -42 138 -124 228 -244 269 -80 27 -239 27 -311 1z" />
<path d="M7699 7791 c-35 -35 -35 -36 -8 -181 41 -229 141 -521 265 -778 41
-84 85 -164 99 -178 23 -23 29 -24 164 -24 77 0 151 4 164 9 17 7 44 48 99
158 127 249 203 452 267 717 59 241 58 231 18 271 l-35 35 -125 0 c-69 0 -137
-4 -151 -10 -29 -11 -32 -22 -65 -220 -13 -74 -27 -157 -32 -185 -9 -54 -90
-340 -109 -390 -12 -30 -12 -29 -42 55 -55 161 -132 497 -145 634 -5 54 -11
75 -29 93 -22 22 -30 23 -164 23 l-142 0 -29 -29z" />
<path d="M8920 7813 c-40 -14 -40 -17 -40 -588 0 -460 2 -554 14 -571 13 -17
29 -19 160 -22 144 -3 146 -3 171 22 l25 25 0 546 0 546 -25 24 c-23 24 -29
25 -157 24 -73 0 -140 -3 -148 -6z" />
<path d="M12213 7780 c-14 -6 -24 -21 -28 -42 -12 -64 -1 -1046 12 -1059 6 -6
32 -14 56 -16 39 -5 49 -2 71 20 l26 26 0 398 1 398 43 -50 c24 -27 182 -212
351 -410 169 -198 316 -366 328 -372 38 -22 95 -16 122 12 l25 24 0 516 0 516
-26 26 c-22 22 -32 25 -71 20 -24 -2 -50 -10 -56 -16 -9 -9 -13 -129 -17 -419
l-5 -408 -340 399 c-187 219 -353 410 -368 423 -30 25 -81 31 -124 14z" />
<path d="M13463 7780 c-14 -6 -24 -21 -28 -42 -3 -18 -5 -261 -3 -540 2 -400
6 -510 16 -520 10 -10 103 -13 438 -13 410 0 426 1 440 19 21 29 18 92 -6 116
-19 19 -33 20 -370 20 l-350 0 0 170 0 169 326 3 c312 3 326 4 341 23 17 23
13 99 -6 118 -9 9 -107 13 -336 15 l-325 3 0 154 0 155 350 0 c337 0 351 1
370 20 24 24 27 87 6 116 -14 18 -31 19 -428 21 -227 1 -423 -2 -435 -7z" />
<path d="M14470 7783 c-43 -16 -56 -97 -20 -133 19 -19 33 -20 215 -20 l195 0
0 -460 0 -461 25 -24 c18 -19 35 -25 65 -25 30 0 47 6 65 25 l25 24 0 461 0
460 195 0 c182 0 196 1 215 20 24 24 27 87 6 116 -14 18 -32 19 -493 21 -263
1 -485 -1 -493 -4z" />
<path d="M15544 7765 c-17 -18 -23 -32 -19 -43 4 -9 29 -80 55 -157 27 -77 78
-225 115 -330 36 -104 82 -237 102 -295 88 -254 89 -255 114 -267 41 -21 107
-16 132 10 15 14 65 151 152 409 71 213 133 384 136 380 3 -4 65 -182 137
-396 72 -214 136 -394 142 -400 14 -14 136 -14 149 -1 6 6 91 244 190 529 126
361 179 527 175 543 -4 14 -18 29 -33 35 -34 13 -102 3 -117 -17 -6 -8 -26
-57 -43 -108 -73 -219 -241 -711 -244 -714 -2 -1 -64 178 -138 400 -94 283
-141 409 -157 426 -20 20 -30 23 -74 19 -29 -3 -56 -12 -62 -21 -7 -8 -72
-195 -146 -416 -74 -220 -137 -401 -140 -401 -3 0 -27 64 -54 143 -188 554
-228 663 -247 680 -32 26 -94 22 -125 -8z" />
<path d="M19727 7784 c-10 -3 -22 -17 -28 -30 -12 -34 -12 -1025 1 -1058 7
-20 19 -27 49 -32 l39 -6 7 -105 7 -106 76 7 c41 3 110 6 154 6 l78 0 0 70 0
69 68 3 67 3 3 40 c2 22 1 86 -3 143 l-7 102 -56 0 c-32 0 -101 -3 -154 -7
l-98 -6 0 -69 0 -68 -35 0 -35 0 0 103 1 102 149 154 149 154 26 -44 c14 -24
89 -155 166 -291 134 -238 141 -247 174 -254 90 -17 142 25 111 88 -8 16 -89
158 -180 317 -91 158 -166 293 -166 299 0 7 71 84 157 172 132 135 156 165
156 191 0 43 -16 54 -85 54 l-61 0 -298 -305 -298 -305 -3 292 c-2 205 -6 295
-15 304 -12 12 -88 21 -116 13z m497 -991 c3 -42 6 -98 6 -125 l0 -48 -64 0
c-45 0 -64 4 -63 13 0 6 -1 36 -1 66 l-2 53 -55 -7 c-85 -10 -95 -4 -95 60 l0
54 73 4 c39 1 99 4 133 5 l61 2 7 -77z m-289 -95 c2 -13 6 -41 7 -63 l3 -40
73 3 72 2 0 -59 0 -58 -132 -5 c-73 -3 -134 -5 -134 -4 -1 0 -5 45 -9 99 -7
86 -6 97 9 97 9 0 21 11 26 25 8 20 16 25 45 25 28 0 36 -4 40 -22z" />
<path d="M20745 7583 c-150 -4 -145 -2 -145 -78 0 -53 -3 -65 -19 -70 -10 -3
-26 -3 -35 1 -9 3 -32 3 -51 0 l-35 -7 0 -87 c0 -48 3 -111 6 -139 l7 -53 77
0 c42 0 111 3 153 6 l77 7 0 62 c0 70 5 75 87 75 23 0 45 5 49 11 3 6 3 71 -1
145 l-7 134 -32 -2 c-17 -1 -76 -3 -131 -5z m145 -46 c0 -19 3 -75 6 -125 l7
-90 -67 -4 -66 -3 0 63 c0 70 5 67 -97 62 l-53 -2 0 56 c0 66 -3 65 145 69 55
2 106 4 113 5 7 1 12 -10 12 -31z m-284 -139 c0 -13 1 -42 2 -65 l2 -43 75 0
75 0 0 -54 0 -53 -82 -6 c-46 -4 -106 -7 -134 -7 l-51 0 -7 53 c-3 28 -6 82
-6 119 0 74 0 75 80 77 41 1 46 -1 46 -21z" />
<path d="M15207 6803 l-68 -4 2 -67 3 -67 -65 -3 c-35 -2 -68 -7 -72 -11 -4
-4 -5 -67 -1 -140 l7 -131 156 2 156 3 -4 68 -3 67 60 0 c91 0 88 -3 85 108
-2 53 -6 116 -9 140 l-5 42 -87 -2 c-48 -1 -118 -3 -155 -5z m228 -55 c3 -24
5 -79 3 -123 l-3 -80 -57 -3 -58 -3 0 34 c0 19 -3 49 -6 67 l-7 32 -67 -7 -67
-7 -7 32 c-3 18 -6 45 -6 61 0 28 1 28 68 32 37 2 97 4 134 5 l67 2 6 -42z
m-285 -160 c0 -77 6 -82 84 -73 l66 7 0 -60 0 -60 -132 -4 c-73 -3 -133 -4
-134 -4 -1 1 -4 56 -8 124 l-6 122 65 0 65 0 0 -52z" />
<path d="M7010 6416 c32 -29 153 -128 328 -266 101 -80 272 -216 380 -302 108
-86 265 -211 348 -277 83 -66 157 -126 165 -133 8 -8 100 -81 204 -162 105
-82 195 -154 200 -160 6 -6 100 -83 210 -169 110 -87 227 -180 260 -207 69
-58 112 -83 119 -72 4 6 -53 400 -99 690 -3 20 -12 82 -20 137 -8 55 -26 174
-40 265 -14 91 -34 224 -45 295 -11 72 -24 157 -30 190 -5 33 -10 61 -10 63 0
1 -9 -2 -21 -8 -16 -9 -19 -18 -14 -37 3 -15 17 -103 30 -197 22 -149 46 -313
60 -396 2 -14 7 -45 10 -70 3 -25 19 -130 35 -235 16 -104 43 -282 60 -395 17
-113 33 -214 37 -225 6 -19 -40 13 -117 82 -28 25 -233 188 -530 422 -107 85
-197 157 -200 161 -3 4 -90 73 -195 155 -104 81 -194 153 -200 159 -5 7 -104
86 -219 176 -114 91 -274 218 -355 283 -307 247 -308 247 -337 247 -24 0 -26
-2 -14 -14z" />
<path d="M6653 6403 l-103 -4 0 -69 0 -70 -70 0 -70 0 0 -84 c0 -45 3 -111 6
-145 l7 -61 47 0 c26 0 95 3 153 7 l107 6 0 69 0 68 64 0 c36 0 68 5 72 11 3
6 3 71 -1 145 l-7 134 -52 -2 c-28 -1 -97 -4 -153 -5z m193 -138 l9 -125 -67
0 -68 0 0 60 0 60 -37 2 c-21 1 -55 0 -75 -1 l-38 -2 0 60 0 60 103 4 c56 1
116 4 133 5 l31 2 9 -125z m-289 -42 c-1 -10 0 -39 1 -65 l2 -48 75 0 75 0 0
-54 0 -53 -131 -8 c-72 -4 -133 -5 -135 -2 -3 2 -8 59 -11 126 l-6 121 65 0
c55 0 65 -3 65 -17z" />
<path d="M17327 6363 c-5 -8 -80 -190 -172 -418 -29 -71 -62 -148 -73 -170
-11 -22 -38 -83 -60 -136 -118 -286 -126 -312 -84 -289 9 5 49 23 87 41 39 17
93 42 120 54 28 13 73 33 100 45 49 22 96 43 205 93 30 14 78 35 105 47 120
53 135 61 135 71 0 10 -104 215 -288 569 -47 89 -64 111 -75 93z m208 -398
c59 -115 114 -220 121 -232 12 -20 10 -22 -39 -46 -29 -14 -74 -35 -102 -47
-27 -12 -74 -33 -102 -46 -29 -13 -77 -35 -105 -48 -29 -13 -75 -34 -103 -46
-51 -22 -125 -56 -205 -93 -25 -12 -48 -22 -51 -24 -7 -3 138 352 164 402 12
22 182 435 225 544 3 8 23 -22 47 -70 23 -46 90 -178 150 -294z" />
<path d="M11778 6233 l-58 -4 0 -64 c0 -72 0 -72 -90 -77 l-45 -3 -3 -45 c-2
-25 -1 -87 3 -137 l7 -93 138 0 c76 0 145 3 154 6 12 5 16 21 16 70 l0 64 48
0 c88 0 92 4 92 75 0 34 -3 96 -6 138 l-7 77 -96 -2 c-53 -1 -122 -3 -153 -5z
m236 -90 c11 -137 9 -160 -16 -167 -33 -8 -108 -7 -107 2 1 4 1 33 0 66 l-1
59 -75 -7 -75 -7 0 60 0 60 58 4 c31 2 91 4 133 5 l76 2 7 -77z m-286 -125 c2
-34 6 -66 9 -71 2 -4 36 -5 74 -1 l69 7 0 -57 c0 -66 7 -63 -157 -69 l-113 -3
-1 35 c0 20 -4 75 -7 123 l-7 87 65 4 c36 2 65 4 65 5 0 1 2 -26 3 -60z" />
<path d="M3950 4433 c0 -5 4 -35 10 -68 5 -33 12 -82 15 -110 3 -27 10 -75 15
-105 5 -30 12 -77 15 -105 40 -322 62 -450 78 -453 9 -2 87 11 174 28 382 76
450 89 488 95 57 9 77 15 73 25 -2 5 -58 53 -124 107 -67 54 -213 172 -324
263 -438 358 -420 344 -420 323z m375 -311 c22 -19 114 -95 205 -167 91 -72
183 -147 204 -167 l39 -36 -39 -10 c-21 -6 -64 -15 -94 -21 -30 -6 -118 -22
-195 -37 -77 -14 -190 -36 -251 -48 l-110 -22 -2 30 c-1 17 -16 130 -33 251
-32 236 -31 229 -54 382 -8 57 -15 107 -15 113 0 10 264 -195 345 -268z" />
</g>
</svg>
</button>
<button class="btn text-center border rounded-2 mt-auto" type="button" id="btc">
<svg xmlns="http://www.w3.org/2000/svg" width="200" height="100" viewBox="-.003 .004 306.507 64"><path fill="#f7931a" d="M63.033 39.744C58.759 56.89 41.396 67.32 24.25 63.046 7.113 58.772-3.32 41.408.956 24.266 5.228 7.12 22.59-3.313 39.73.961c17.144 4.274 27.576 21.64 23.302 38.783z"/><path fill="#fff" d="M46.103 27.445c.637-4.258-2.605-6.547-7.038-8.074l1.438-5.768-3.511-.875-1.4 5.616a148.56 148.56 0 0 0-2.812-.662l1.41-5.653-3.51-.875-1.438 5.766c-.764-.174-1.514-.346-2.242-.527l.004-.018-4.842-1.209-.934 3.75s2.605.597 2.55.634c1.422.355 1.679 1.296 1.636 2.042l-1.638 6.571c.098.025.225.062.365.117l-.371-.092-2.296 9.205c-.174.432-.615 1.08-1.61.834.036.051-2.551-.637-2.551-.637l-1.743 4.02 4.569 1.14c.85.212 1.683.435 2.503.645l-1.453 5.834 3.507.875 1.438-5.773c.958.261 1.888.5 2.798.727l-1.434 5.745 3.51.875 1.454-5.823c5.987 1.133 10.489.676 12.384-4.738 1.527-4.36-.076-6.875-3.226-8.516 2.294-.53 4.022-2.039 4.483-5.156zM38.08 38.693c-1.085 4.36-8.426 2.004-10.806 1.412l1.928-7.729c2.38.595 10.012 1.771 8.878 6.317zm1.086-11.31c-.99 3.965-7.1 1.95-9.082 1.456l1.748-7.01c1.982.494 8.365 1.416 7.334 5.553z"/><path fill="#4d4d4d" d="M93.773 19.365c2.595 0 4.837.465 6.72 1.378 1.894.922 3.456 2.164 4.709 3.726 1.236 1.57 2.156 3.405 2.75 5.508.59 2.11.886 4.376.886 6.802 0 3.73-.683 7.25-2.062 10.57-1.38 3.325-3.25 6.21-5.63 8.67-2.378 2.457-5.186 4.393-8.424 5.824-3.233 1.432-6.748 2.148-10.522 2.148-.488 0-1.346-.014-2.558-.039s-2.605-.15-4.165-.36a48.879 48.879 0 0 1-4.983-.978 24.966 24.966 0 0 1-4.983-1.78L79.523 1.956 92.073.012l-5.017 20.893a19.51 19.51 0 0 1 3.236-1.132 14.426 14.426 0 0 1 3.48-.408zm-10.527 34.67c1.89 0 3.67-.465 5.344-1.377a14.057 14.057 0 0 0 4.339-3.686 18.582 18.582 0 0 0 2.873-5.227 17.794 17.794 0 0 0 1.054-6.078c0-2.592-.433-4.61-1.296-6.073-.863-1.455-2.46-2.187-4.78-2.187-.76 0-1.738.145-2.952.404-1.218.275-2.308.846-3.285 1.705L79.2 53.704c.322.057.607.111.85.162.238.055.5.094.763.121.277.031.594.047.977.047l1.455.001zM121.853 62.865h-11.987l10.123-42.597h12.069l-10.205 42.597zm5.833-47.787a7.438 7.438 0 0 1-4.536-1.496c-1.357-.992-2.03-2.519-2.03-4.577 0-1.132.23-2.194.687-3.196a8.55 8.55 0 0 1 1.826-2.593 8.967 8.967 0 0 1 2.63-1.743 8.032 8.032 0 0 1 3.204-.646c1.672 0 3.18.498 4.532 1.496 1.346 1.003 2.023 2.53 2.023 4.577a7.565 7.565 0 0 1-.69 3.202 8.43 8.43 0 0 1-1.82 2.593 8.805 8.805 0 0 1-2.63 1.738c-1.002.438-2.064.645-3.196.645zM142.563 9.655l12.555-1.945-3.083 12.556h13.446l-2.428 9.878h-13.365l-3.56 14.9c-.328 1.241-.514 2.401-.566 3.48-.06 1.083.078 2.013.402 2.796.322.785.9 1.39 1.74 1.817.837.435 2.034.654 3.604.654 1.293 0 2.554-.123 3.77-.367a26.459 26.459 0 0 0 3.68-1.01l.896 9.235a43.088 43.088 0 0 1-5.264 1.535c-1.893.436-4.134.645-6.724.645-3.724 0-6.611-.553-8.668-1.653-2.054-1.108-3.506-2.624-4.375-4.542-.857-1.91-1.24-4.113-1.133-6.596.11-2.488.486-5.104 1.133-7.857l7.94-33.526zM164.954 45.856c0-3.67.594-7.129 1.78-10.369 1.185-3.242 2.892-6.077 5.106-8.509 2.207-2.42 4.896-4.339 8.062-5.747 3.148-1.4 6.676-2.106 10.562-2.106 2.434 0 4.607.23 6.52.691 1.92.465 3.656 1.066 5.227 1.82l-4.133 9.4a38.615 38.615 0 0 0-3.361-1.174c-1.16-.357-2.575-.529-4.25-.529-4.002 0-7.164 1.38-9.518 4.128-2.346 2.751-3.527 6.454-3.527 11.1 0 2.753.595 4.978 1.787 6.681 1.186 1.703 3.377 2.551 6.558 2.551 1.569 0 3.085-.164 4.536-.484 1.462-.324 2.753-.732 3.89-1.214l.896 9.636a43.424 43.424 0 0 1-5.021 1.584c-1.84.45-4.027.682-6.564.682-3.348 0-6.184-.489-8.502-1.455-2.32-.979-4.237-2.28-5.748-3.928-1.518-1.652-2.607-3.582-3.281-5.795s-1.02-4.54-1.02-6.963zM218.204 63.994c-2.861 0-5.347-.436-7.455-1.299-2.102-.862-3.842-2.074-5.22-3.644-1.38-1.562-2.411-3.413-3.118-5.546-.707-2.132-1.047-4.493-1.047-7.08 0-3.244.52-6.488 1.574-9.725 1.049-3.24 2.604-6.154 4.66-8.743 2.043-2.593 4.563-4.713 7.527-6.366 2.963-1.642 6.37-2.468 10.199-2.468 2.809 0 5.28.437 7.418 1.3 2.127.861 3.879 2.082 5.264 3.644 1.37 1.57 2.412 3.413 3.11 5.55.706 2.127 1.054 4.494 1.054 7.083 0 3.234-.514 6.48-1.533 9.724-1.021 3.23-2.536 6.15-4.536 8.744-1.996 2.59-4.491 4.708-7.49 6.354-2.993 1.647-6.466 2.472-10.407 2.472zm5.99-34.66c-1.777 0-3.348.515-4.693 1.534-1.35 1.031-2.483 2.328-3.397 3.89-.924 1.57-1.608 3.282-2.071 5.143-.46 1.865-.685 3.63-.685 5.303 0 2.703.437 4.81 1.293 6.324.868 1.506 2.43 2.265 4.698 2.265 1.783 0 3.347-.513 4.699-1.542 1.342-1.023 2.478-2.32 3.398-3.887.918-1.56 1.609-3.278 2.072-5.143.453-1.859.684-3.632.684-5.304 0-2.696-.434-4.806-1.3-6.319-.862-1.507-2.431-2.265-4.698-2.265zM255.233 62.865h-11.996l10.123-42.597h12.074l-10.201 42.597zm5.824-47.787a7.42 7.42 0 0 1-4.531-1.496c-1.352-.992-2.03-2.519-2.03-4.577 0-1.132.234-2.194.69-3.196a8.439 8.439 0 0 1 1.824-2.593 8.969 8.969 0 0 1 2.633-1.743 7.975 7.975 0 0 1 3.193-.646c1.677 0 3.19.498 4.539 1.496 1.349 1.003 2.029 2.53 2.029 4.577 0 1.136-.242 2.202-.695 3.202s-1.062 1.861-1.816 2.593a8.907 8.907 0 0 1-2.63 1.738c-1.005.438-2.067.645-3.206.645zM274.073 22.205c.91-.266 1.926-.586 3.03-.934a40.19 40.19 0 0 1 3.733-.964c1.369-.3 2.914-.545 4.613-.734 1.698-.193 3.635-.287 5.785-.287 6.322 0 10.68 1.841 13.086 5.512 2.404 3.671 2.82 8.694 1.26 15.063l-5.514 23H288l5.345-22.517c.325-1.405.58-2.765.77-4.093.192-1.316.18-2.477-.042-3.48a4.168 4.168 0 0 0-1.494-2.433c-.791-.619-1.986-.93-3.606-.93a24.36 24.36 0 0 0-4.776.492l-7.857 32.958h-12.07l9.803-40.653z"/></svg>
</button>
</div>
</div>
</div>
<!- /////////////polygon//////////////////////////////////////////->
<div class="card" style="width: 500px;height: auto;" id="polygon">
<div class="card-body">
<h3 class="card-title">
<svg id="backsvg" xmlns="http://www.w3.org/2000/svg" width="1em" height="1em"
fill="currentColor" viewBox="0 0 16 16"
class="bi bi-arrow-left text-start d-md-flex justify-content-md-start"
style="height: 28px;">
<path fill-rule="evenodd"
d="M15 8a.5.5 0 0 0-.5-.5H2.707l3.147-3.146a.5.5 0 1 0-.708-.708l-4 4a.5.5 0 0 0 0 .708l4 4a.5.5 0 0 0 .708-.708L2.707 8.5H14.5A.5.5 0 0 0 15 8z">
</path>
</svg>Polygon Network
</h3>
<p class="lead">Connect wallet to send MATIC and assets to fundraiser wallet. (e.g. ERC20 tokens)!
</p>
<div
class="vstack gap-2 text-center d-md-flex align-content-center align-self-center align-items-md-center">
<button id="loginpoly" class="btn btn-info text-center border rounded-2" type="button"
style="width: 300px;height: 50px;"><svg xmlns="http://www.w3.org/2000/svg" width="50"
height="40" viewBox="0 0 212 189">
<g fill="none" fill-rule="evenodd">
<polygon fill="#CDBDB2"
points="60.75 173.25 88.313 180.563 88.313 171 90.563 168.75 106.313 168.75 106.313 180 106.313 187.875 89.438 187.875 68.625 178.875" />
<polygon fill="#CDBDB2"
points="105.75 173.25 132.75 180.563 132.75 171 135 168.75 150.75 168.75 150.75 180 150.75 187.875 133.875 187.875 113.063 178.875"
transform="matrix(-1 0 0 1 256.5 0)" />
<polygon fill="#393939"
points="90.563 152.438 88.313 171 91.125 168.75 120.375 168.75 123.75 171 121.5 152.438 117 149.625 94.5 150.188" />
<polygon fill="#F89C35"
points="75.375 27 88.875 58.5 95.063 150.188 117 150.188 123.75 58.5 136.125 27" />
<polygon fill="#F89D35"
points="16.313 96.188 .563 141.75 39.938 139.5 65.25 139.5 65.25 119.813 64.125 79.313 58.5 83.813" />
<polygon fill="#D87C30"
points="46.125 101.25 92.25 102.375 87.188 126 65.25 120.375" />
<polygon fill="#EA8D3A" points="46.125 101.813 65.25 119.813 65.25 137.813" />
<polygon fill="#F89D35"
points="65.25 120.375 87.75 126 95.063 150.188 90 153 65.25 138.375" />
<polygon fill="#EB8F35" points="65.25 138.375 60.75 173.25 90.563 152.438" />
<polygon fill="#EA8E3A" points="92.25 102.375 95.063 150.188 86.625 125.719" />
<polygon fill="#D87C30" points="39.375 138.938 65.25 138.375 60.75 173.25" />
<polygon fill="#EB8F35"
points="12.938 188.438 60.75 173.25 39.375 138.938 .563 141.75" />
<polygon fill="#E8821E"
points="88.875 58.5 64.688 78.75 46.125 101.25 92.25 102.938" />
<polygon fill="#DFCEC3"
points="60.75 173.25 90.563 152.438 88.313 170.438 88.313 180.563 68.063 176.625" />
<polygon fill="#DFCEC3"
points="121.5 173.25 150.75 152.438 148.5 170.438 148.5 180.563 128.25 176.625"
transform="matrix(-1 0 0 1 272.25 0)" />
<polygon fill="#393939" points="70.313 112.5 64.125 125.438 86.063 119.813"
transform="matrix(-1 0 0 1 150.188 0)" />
<polygon fill="#E88F35" points="12.375 .563 88.875 58.5 75.938 27" />
<path fill="#8E5A30"
d="M12.3750002,0.562500008 L2.25000003,31.5000005 L7.87500012,65.250001 L3.93750006,67.500001 L9.56250014,72.5625 L5.06250008,76.5000011 L11.25,82.1250012 L7.31250011,85.5000013 L16.3125002,96.7500014 L58.5000009,83.8125012 C79.1250012,67.3125004 89.2500013,58.8750003 88.8750013,58.5000009 C88.5000013,58.1250009 63.0000009,38.8125006 12.3750002,0.562500008 Z" />
<g transform="matrix(-1 0 0 1 211.5 0)">
<polygon fill="#F89D35"
points="16.313 96.188 .563 141.75 39.938 139.5 65.25 139.5 65.25 119.813 64.125 79.313 58.5 83.813" />
<polygon fill="#D87C30"
points="46.125 101.25 92.25 102.375 87.188 126 65.25 120.375" />
<polygon fill="#EA8D3A" points="46.125 101.813 65.25 119.813 65.25 137.813" />
<polygon fill="#F89D35"
points="65.25 120.375 87.75 126 95.063 150.188 90 153 65.25 138.375" />
<polygon fill="#EB8F35" points="65.25 138.375 60.75 173.25 90 153" />
<polygon fill="#EA8E3A" points="92.25 102.375 95.063 150.188 86.625 125.719" />
<polygon fill="#D87C30" points="39.375 138.938 65.25 138.375 60.75 173.25" />
<polygon fill="#EB8F35"
points="12.938 188.438 60.75 173.25 39.375 138.938 .563 141.75" />
<polygon fill="#E8821E"
points="88.875 58.5 64.688 78.75 46.125 101.25 92.25 102.938" />
<polygon fill="#393939" points="70.313 112.5 64.125 125.438 86.063 119.813"
transform="matrix(-1 0 0 1 150.188 0)" />
<polygon fill="#E88F35" points="12.375 .563 88.875 58.5 75.938 27" />
<path fill="#8E5A30"
d="M12.3750002,0.562500008 L2.25000003,31.5000005 L7.87500012,65.250001 L3.93750006,67.500001 L9.56250014,72.5625 L5.06250008,76.5000011 L11.25,82.1250012 L7.31250011,85.5000013 L16.3125002,96.7500014 L58.5000009,83.8125012 C79.1250012,67.3125004 89.2500013,58.8750003 88.8750013,58.5000009 C88.5000013,58.1250009 63.0000009,38.8125006 12.3750002,0.562500008 Z" />
</g>
</g>
</svg>Connect Wallet</button>
<button id="logoutpoly" class="btn btn-warning text-center border rounded-2" type="button"
style="width: 300px;height: 50px;">Logout</button>
<input type="number" class="form-control" placeholder="Amount" id="polygonamount">
<select class="form-select" aria-label="Choose token to donate" id="selecttoken">
<option selected>Select token</option>
<option value="0x0000000000000000000000000000000000001010">MATIC</option>
<option value="0xc2132D05D31c914a87C6611C10748AEb04B58e8F">(PoS) Tether USD (USDT)</option>
<option value="0x752DC265EAf6Da2Db0F8e4a32D5596D3f18e8701">Wrapped Avian (WAVN)</option>
<option value="0x7ceB23fD6bC0adD59E62ac25578270cFf1b9f619">Wrapped Ether (WETH)</option>
<option value="0x3BA4c387f786bFEE076A58914F5Bd38d668B42c3">BNB</option>
<option value="0x2791Bca1f2de4661ED88A30C99A7a9449Aa84174">USD Coin</option>
<option value="0x692597b009d13C4049a947CAB2239b7d6517875F">Wrapped UST Token (UST)</option>
<option value="0xdAb529f40E671A1D4bF91361c21bf9f0C9712ab7">binance-usd (BUSD)</option>
<option value="0x8f3Cf7ad23Cd3CaDbD9735AFf958023239c6A063">(PoS) Dai Stablecoin (DAI)
</option>
<option value="0x53E0bca35eC356BD5ddDFebbD1Fc0fD03FaBad39">ChainLink Token (LINK)</option>
<option value="0xb33EaAd8d922B1083446DC23f610c2567fB5180f">Uniswap Token</option>
<option value="0xA1c57f48F0Deb89f569dFbE6E2B7f46D33606fD4">Decentraland Token (MANA)
</option>
<option value="0xD6DF932A45C0f255f85145f286eA0b292B21C90B">Aave (AAVE)</option>
<option value="0x9c2C5fd7b07E95EE044DDeba0E97a665F142394f">1INCH Token</option>
<option value="0x0b3F868E0BE5597D5DB7fEB59E1CADBb0fdDa50a">Sushiswap Token</option>
<option value="0x0B220b82F3eA3B7F6d9A1D8ab58930C064A2b5Bf">Golem Network Token</option>
<option value="0xa3Fa99A148fA48D14Ed51d610c367C61876997F1">miMATIC</option>
<option value="0x8A953CfE442c5E8855cc6c61b1293FA648BAE472">PolyDoge</option>
<option value="0x831753DD7087CaC61aB5644b308642cc1c33Dc13">Quickswap Token</option>
</select>
<button id="sendpoly" class="btn btn-primary text-center border rounded-2" type="button"
style="width: 100px;height: 50px;">send</button>
</div>
</div>
</div>
<!- ///////////Binance Smartchain////////////////////->
<div class="card" style="width: 500px;height: auto;" id="binance">
<div class="card-body">
<h3 class="card-title">
<svg id="backsvg1" xmlns="http://www.w3.org/2000/svg" width="1em" height="1em"
fill="currentColor" viewBox="0 0 16 16"
class="bi bi-arrow-left text-start d-md-flex justify-content-md-start"
style="height: 28px;">
<path fill-rule="evenodd"
d="M15 8a.5.5 0 0 0-.5-.5H2.707l3.147-3.146a.5.5 0 1 0-.708-.708l-4 4a.5.5 0 0 0 0 .708l4 4a.5.5 0 0 0 .708-.708L2.707 8.5H14.5A.5.5 0 0 0 15 8z">
</path>
</svg>Binance Smart-chain
</h3>
<p class="lead">
Connect wallet to send BNB and assets to fundraiser wallet. (e.g. BEP20 tokens)!
</p>
<div
class="vstack gap-2 text-center d-md-flex align-content-center align-self-center align-items-md-center">
<button id="loginbsc" class="btn btn-info text-center border rounded-2" type="button"
style="width: 300px;height: 50px;"><svg xmlns="http://www.w3.org/2000/svg" width="50"
height="40" viewBox="0 0 212 189">
<g fill="none" fill-rule="evenodd">
<polygon fill="#CDBDB2"
points="60.75 173.25 88.313 180.563 88.313 171 90.563 168.75 106.313 168.75 106.313 180 106.313 187.875 89.438 187.875 68.625 178.875" />
<polygon fill="#CDBDB2"
points="105.75 173.25 132.75 180.563 132.75 171 135 168.75 150.75 168.75 150.75 180 150.75 187.875 133.875 187.875 113.063 178.875"
transform="matrix(-1 0 0 1 256.5 0)" />
<polygon fill="#393939"
points="90.563 152.438 88.313 171 91.125 168.75 120.375 168.75 123.75 171 121.5 152.438 117 149.625 94.5 150.188" />
<polygon fill="#F89C35"
points="75.375 27 88.875 58.5 95.063 150.188 117 150.188 123.75 58.5 136.125 27" />
<polygon fill="#F89D35"
points="16.313 96.188 .563 141.75 39.938 139.5 65.25 139.5 65.25 119.813 64.125 79.313 58.5 83.813" />
<polygon fill="#D87C30"
points="46.125 101.25 92.25 102.375 87.188 126 65.25 120.375" />
<polygon fill="#EA8D3A" points="46.125 101.813 65.25 119.813 65.25 137.813" />
<polygon fill="#F89D35"
points="65.25 120.375 87.75 126 95.063 150.188 90 153 65.25 138.375" />
<polygon fill="#EB8F35" points="65.25 138.375 60.75 173.25 90.563 152.438" />
<polygon fill="#EA8E3A" points="92.25 102.375 95.063 150.188 86.625 125.719" />
<polygon fill="#D87C30" points="39.375 138.938 65.25 138.375 60.75 173.25" />
<polygon fill="#EB8F35"
points="12.938 188.438 60.75 173.25 39.375 138.938 .563 141.75" />
<polygon fill="#E8821E"
points="88.875 58.5 64.688 78.75 46.125 101.25 92.25 102.938" />
<polygon fill="#DFCEC3"
points="60.75 173.25 90.563 152.438 88.313 170.438 88.313 180.563 68.063 176.625" />
<polygon fill="#DFCEC3"
points="121.5 173.25 150.75 152.438 148.5 170.438 148.5 180.563 128.25 176.625"
transform="matrix(-1 0 0 1 272.25 0)" />
<polygon fill="#393939" points="70.313 112.5 64.125 125.438 86.063 119.813"
transform="matrix(-1 0 0 1 150.188 0)" />
<polygon fill="#E88F35" points="12.375 .563 88.875 58.5 75.938 27" />
<path fill="#8E5A30"
d="M12.3750002,0.562500008 L2.25000003,31.5000005 L7.87500012,65.250001 L3.93750006,67.500001 L9.56250014,72.5625 L5.06250008,76.5000011 L11.25,82.1250012 L7.31250011,85.5000013 L16.3125002,96.7500014 L58.5000009,83.8125012 C79.1250012,67.3125004 89.2500013,58.8750003 88.8750013,58.5000009 C88.5000013,58.1250009 63.0000009,38.8125006 12.3750002,0.562500008 Z" />
<g transform="matrix(-1 0 0 1 211.5 0)">
<polygon fill="#F89D35"
points="16.313 96.188 .563 141.75 39.938 139.5 65.25 139.5 65.25 119.813 64.125 79.313 58.5 83.813" />
<polygon fill="#D87C30"
points="46.125 101.25 92.25 102.375 87.188 126 65.25 120.375" />
<polygon fill="#EA8D3A"
points="46.125 101.813 65.25 119.813 65.25 137.813" />
<polygon fill="#F89D35"
points="65.25 120.375 87.75 126 95.063 150.188 90 153 65.25 138.375" />
<polygon fill="#EB8F35" points="65.25 138.375 60.75 173.25 90 153" />
<polygon fill="#EA8E3A"
points="92.25 102.375 95.063 150.188 86.625 125.719" />
<polygon fill="#D87C30"
points="39.375 138.938 65.25 138.375 60.75 173.25" />
<polygon fill="#EB8F35"
points="12.938 188.438 60.75 173.25 39.375 138.938 .563 141.75" />
<polygon fill="#E8821E"
points="88.875 58.5 64.688 78.75 46.125 101.25 92.25 102.938" />
<polygon fill="#393939" points="70.313 112.5 64.125 125.438 86.063 119.813"
transform="matrix(-1 0 0 1 150.188 0)" />
<polygon fill="#E88F35" points="12.375 .563 88.875 58.5 75.938 27" />
<path fill="#8E5A30"
d="M12.3750002,0.562500008 L2.25000003,31.5000005 L7.87500012,65.250001 L3.93750006,67.500001 L9.56250014,72.5625 L5.06250008,76.5000011 L11.25,82.1250012 L7.31250011,85.5000013 L16.3125002,96.7500014 L58.5000009,83.8125012 C79.1250012,67.3125004 89.2500013,58.8750003 88.8750013,58.5000009 C88.5000013,58.1250009 63.0000009,38.8125006 12.3750002,0.562500008 Z" />
</g>
</g>
</svg>Connect Wallet</button>
<button id="logoutbsc" class="btn btn-warning text-center border rounded-2" type="button"
style="width: 300px;height: 50px;">Logout</button>
<input type="number" class="form-control" placeholder="Amount" id="bscamount">
<select class="form-select" aria-label="Choose token to donate" id="selecttokenbsc">
<option selected>Select token</option>
<option value="1">BNB</option>
<option value="0x2170Ed0880ac9A755fd29B2688956BD959F933F8">Binance-Peg Ethereum Token
(ETH)</option>
<option value="0x55d398326f99059fF775485246999027B3197955">Binance-Peg BSC-USD</option>
<option value="0xbb4CdB9CBd36B01bD1cBaEBF2De08d9173bc095c">Wrapped BNB</option>
<option value="0x8AC76a51cc950d9822D68b83fE1Ad97B32Cd580d">Binance-Peg USD Coin (USDC)
</option>
<option value="0x1D2F0da169ceB9fC7B3144628dB156f3F6c60dBE">Binance-Peg XRP Token (XRP)
</option>
<option value="0x3EE2200Efb3400fAbB9AacF31297cBdD1d435D47">Binance-Peg Cardano Token
</option>
<option value="0x1CE0c2827e2eF14D5C4f29a091d735A204794041">Binance-Peg Avalanche Token
</option>
<option value="0x2859e4544C4bB03966803b044A93563Bd2D0DD4D">Binance-Peg SHIBA INU Token
</option>
<option value="0x4338665CBB7B2485A8855A139b75D5e34AB0DB94">Binance-Peg Litecoin Token
</option>
<option value="0xe9e7CEA3DedcA5984780Bafc599bD69ADd087D56">Binance-Peg BUSD Token
</option>
<option value="0xbA2aE424d960c26247Dd6c32edC70B295c744C43">Binance-Peg Dogecoin Token
</option>
<option value="0x1AF3F329e8BE154074D8769D1FFa4eE058B1DBc3">Dai Token</option>
<option value="0xBf5140A22578168FD562DCcF235E5D43A02ce9B1">Uniswap Token</option>
</select>
<button id="sendbsc" class="btn btn-primary text-center border rounded-2" type="button"
style="width: 100px;height: 50px;">send</button>
</div>
</div>
</div>
<!- //////////Avax//////////////////////////////////->
<!-- <div class="card" style="width: 500px;height: auto;" id="avalanche">
<div class="card-body">
<h3 class="card-title">
<svg id="backsvg2" xmlns="http://www.w3.org/2000/svg" width="1em" height="1em"
fill="currentColor" viewBox="0 0 16 16"
class="bi bi-arrow-left text-start d-md-flex justify-content-md-start"
style="height: 28px;">
<path fill-rule="evenodd"
d="M15 8a.5.5 0 0 0-.5-.5H2.707l3.147-3.146a.5.5 0 1 0-.708-.708l-4 4a.5.5 0 0 0 0 .708l4 4a.5.5 0 0 0 .708-.708L2.707 8.5H14.5A.5.5 0 0 0 15 8z">
</path>
</svg>Avalanche Chain
</h3>
<p class="lead">
Connect wallet to send AVAX and assets to fundraiser wallet. (e.g. ERC20 tokens)!
</p>
<div <div
class="vstack gap-2 text-center d-md-flex align-content-center align-self-center align-items-md-center">
<button id="loginavax" class="btn btn-info text-center border rounded-2" type="button"
style="width: 300px;height: 50px;"><svg xmlns="http://www.w3.org/2000/svg"
width="50" height="40" viewBox="0 0 212 189">
<g fill="none" fill-rule="evenodd">
<polygon fill="#CDBDB2"
points="60.75 173.25 88.313 180.563 88.313 171 90.563 168.75 106.313 168.75 106.313 180 106.313 187.875 89.438 187.875 68.625 178.875" />
<polygon fill="#CDBDB2"
points="105.75 173.25 132.75 180.563 132.75 171 135 168.75 150.75 168.75 150.75 180 150.75 187.875 133.875 187.875 113.063 178.875"
transform="matrix(-1 0 0 1 256.5 0)" />
<polygon fill="#393939"
points="90.563 152.438 88.313 171 91.125 168.75 120.375 168.75 123.75 171 121.5 152.438 117 149.625 94.5 150.188" />
<polygon fill="#F89C35"
points="75.375 27 88.875 58.5 95.063 150.188 117 150.188 123.75 58.5 136.125 27" />
<polygon fill="#F89D35"
points="16.313 96.188 .563 141.75 39.938 139.5 65.25 139.5 65.25 119.813 64.125 79.313 58.5 83.813" />
<polygon fill="#D87C30"
points="46.125 101.25 92.25 102.375 87.188 126 65.25 120.375" />
<polygon fill="#EA8D3A"
points="46.125 101.813 65.25 119.813 65.25 137.813" />
<polygon fill="#F89D35"
points="65.25 120.375 87.75 126 95.063 150.188 90 153 65.25 138.375" />
<polygon fill="#EB8F35"
points="65.25 138.375 60.75 173.25 90.563 152.438" />
<polygon fill="#EA8E3A"
points="92.25 102.375 95.063 150.188 86.625 125.719" />
<polygon fill="#D87C30"
points="39.375 138.938 65.25 138.375 60.75 173.25" />
<polygon fill="#EB8F35"
points="12.938 188.438 60.75 173.25 39.375 138.938 .563 141.75" />
<polygon fill="#E8821E"
points="88.875 58.5 64.688 78.75 46.125 101.25 92.25 102.938" />
<polygon fill="#DFCEC3"
points="60.75 173.25 90.563 152.438 88.313 170.438 88.313 180.563 68.063 176.625" />
<polygon fill="#DFCEC3"
points="121.5 173.25 150.75 152.438 148.5 170.438 148.5 180.563 128.25 176.625"
transform="matrix(-1 0 0 1 272.25 0)" />
<polygon fill="#393939" points="70.313 112.5 64.125 125.438 86.063 119.813"
transform="matrix(-1 0 0 1 150.188 0)" />
<polygon fill="#E88F35" points="12.375 .563 88.875 58.5 75.938 27" />
<path fill="#8E5A30"
d="M12.3750002,0.562500008 L2.25000003,31.5000005 L7.87500012,65.250001 L3.93750006,67.500001 L9.56250014,72.5625 L5.06250008,76.5000011 L11.25,82.1250012 L7.31250011,85.5000013 L16.3125002,96.7500014 L58.5000009,83.8125012 C79.1250012,67.3125004 89.2500013,58.8750003 88.8750013,58.5000009 C88.5000013,58.1250009 63.0000009,38.8125006 12.3750002,0.562500008 Z" />
<g transform="matrix(-1 0 0 1 211.5 0)">
<polygon fill="#F89D35"
points="16.313 96.188 .563 141.75 39.938 139.5 65.25 139.5 65.25 119.813 64.125 79.313 58.5 83.813" />
<polygon fill="#D87C30"
points="46.125 101.25 92.25 102.375 87.188 126 65.25 120.375" />
<polygon fill="#EA8D3A"
points="46.125 101.813 65.25 119.813 65.25 137.813" />
<polygon fill="#F89D35"
points="65.25 120.375 87.75 126 95.063 150.188 90 153 65.25 138.375" />
<polygon fill="#EB8F35" points="65.25 138.375 60.75 173.25 90 153" />
<polygon fill="#EA8E3A"
points="92.25 102.375 95.063 150.188 86.625 125.719" />
<polygon fill="#D87C30"
points="39.375 138.938 65.25 138.375 60.75 173.25" />
<polygon fill="#EB8F35"
points="12.938 188.438 60.75 173.25 39.375 138.938 .563 141.75" />
<polygon fill="#E8821E"
points="88.875 58.5 64.688 78.75 46.125 101.25 92.25 102.938" />
<polygon fill="#393939"
points="70.313 112.5 64.125 125.438 86.063 119.813"
transform="matrix(-1 0 0 1 150.188 0)" />
<polygon fill="#E88F35" points="12.375 .563 88.875 58.5 75.938 27" />
<path fill="#8E5A30"
d="M12.3750002,0.562500008 L2.25000003,31.5000005 L7.87500012,65.250001 L3.93750006,67.500001 L9.56250014,72.5625 L5.06250008,76.5000011 L11.25,82.1250012 L7.31250011,85.5000013 L16.3125002,96.7500014 L58.5000009,83.8125012 C79.1250012,67.3125004 89.2500013,58.8750003 88.8750013,58.5000009 C88.5000013,58.1250009 63.0000009,38.8125006 12.3750002,0.562500008 Z" />
</g>
</g>
</svg>Connect Wallet</button>
<button id="logoutavax" class="btn btn-warning text-center border rounded-2"
type="button" style="width: 300px;height: 50px;">Logout</button>
<input type="number" class="form-control" placeholder="Amount" id="avaxamount">
<select class="form-select" aria-label="Choose token to donate" id="selecttokenavax">
<option selected>Select token</option>
<option value="1">AVAX</option>
<option value="0xB31f66AA3C1e785363F0875A1B74E27b85FD66c7">Wrapped AVAX</option>
<option value="0x19860CCB0A68fd4213aB9D8266F7bBf05A8dDe98">Binance USD</option>
<option value="0xbb4CdB9CBd36B01bD1cBaEBF2De08d9173bc095c">Wrapped BNB</option>
<option value="0x02D980A0D7AF3fb7Cf7Df8cB35d9eDBCF355f665">SHIBA INU</option>
<option value="0xd586E7F844cEa2F87f50152665BCbc2C279D8d70">Dai Stablecoin</option>
<option value="0x5947BB275c521040051D82396192181b413227A3">Chainlink Token</option>
<option value="0x8eBAf22B6F053dFFeaf46f4Dd9eFA95D89ba8580">Uniswap Token</option>
<option value="0x63a72806098Bd3D9520cC43356dD78afe5D386D9">Aave Token</option>
<option value="0xd501281565bf7789224523144Fe5D98e8B28f267">1INCH Token</option>
<option value="0x596fA47043f99A4e0F122243B841E55375cdE0d2">ZRX</option>
<option value="0x37B608519F91f70F2EeB0e5Ed9AF4061722e4F76">SushiToken</option>
</select>
<button id="sendavax" class="btn btn-primary text-center border rounded-2" type="button"
style="width: 100px;height: 50px;">send</button>
</div>
</div>
</div> -->
<!- //////////Gnosis////////////////////////////////->
<!-- <div class="card" style="width: 500px;height: auto;" id="gnosis">
<div class="card-body">
<h3 class="card-title">
<svg id="backsvg3" xmlns="http://www.w3.org/2000/svg" width="1em" height="1em"
fill="currentColor" viewBox="0 0 16 16"
class="bi bi-arrow-left text-start d-md-flex justify-content-md-start"
style="height: 28px;">
<path fill-rule="evenodd"
d="M15 8a.5.5 0 0 0-.5-.5H2.707l3.147-3.146a.5.5 0 1 0-.708-.708l-4 4a.5.5 0 0 0 0 .708l4 4a.5.5 0 0 0 .708-.708L2.707 8.5H14.5A.5.5 0 0 0 15 8z">
</path>
</svg>Gnosis Chain (XDAI)
</h3>
<p class="lead">This is the address of Avian Fundraiser Gnosis chain wallet. Deposit
funds by
scanning the QR code or copying the address below. Only send XDAI and assets to this
address. (e.g. ERC-20 tokens)!
</p>
<div
class="vstack gap-2 text-center d-md-flex align-content-center align-self-center align-items-md-center">
<input type="text" class="form-control"
value="0xDe0DE663345Fb6c24aB340E38a574dF31E9cFB88" id="myInput">
<button class="btn btn-info text-center border rounded-2"
onclick="myFunction()">Cick to copy address</button>
<img src="/assets/gnosis.png" style="width:100px;height:100px;">
</div>
</div>
</div> -->
<!- //////////Tron////////////////////////////////->
<div class="card" style="width: 500px;height: auto;" id="tron">
<div class="card-body">
<h3 class="card-title">
<svg id="backsvg4" xmlns="http://www.w3.org/2000/svg" width="1em" height="1em"
fill="currentColor" viewBox="0 0 16 16"
class="bi bi-arrow-left text-start d-md-flex justify-content-md-start"
style="height: 28px;">