-
Notifications
You must be signed in to change notification settings - Fork 17
/
index.html
1061 lines (810 loc) · 91.5 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="">
<meta name="author" content="">
<!--Bee sender 2.1-->
<title > Bee Sender-ERC20 Token Multi Sender.Packer your multi transfer in one transaction and save your cost.Ethereum,Binance,Polygon...</title>
<style type="text/css">
.avatar.avatar-online:after {
background-color: #71dd37;
}
.avatar {
position: relative;
width: 2.375rem;
height: 2.375rem;
cursor: pointer;
}
.rightIcon{
width: : 30px;
}
#loader1 {
width: 200px;
display: none;
}
#loader2 {
width: 200px;
display: none;
}
.bg-nav-white {
background-color: #ffffff33!important;
}
.Gradient-Background {
background: linear-gradient(to left top, rgb(249, 168, 212), rgb(216, 180, 254), rgb(129, 140, 248));
color: #fff;
}
.btn-success {
background-color:#7cffcb;
background-image:linear-gradient(to right, rgba(55, 236, 186, 1), rgba(114, 175, 211, 1));
}
.btn-info {
background-color: #eec0c6;
background-image: linear-gradient(to right, rgba(106, 17, 203, 1), rgba(37, 117, 252, 1));
}
.btn-secondary {
background-color: #7f5a83;
background-image: linear-gradient(to right, rgba(106, 133, 182, 1), rgba(186, 200, 224, 1));
}
.btn-primary {
background-color: #2a2a72;
background-image: linear-gradient(to right, rgba(85, 221, 94, 1), rgba(102, 166, 255, 1));
}
.btn-warning {
background-color: #f8ceec;
background-image: linear-gradient(to right, rgba(94, 231, 223, 1), rgba(180, 144, 202, 1));
}
.btn- {
background-color: #b1bfd8;
background-image: linear-gradient(315deg, #b1bfd8 0%, #6782b4 74%);
}
.btn-light {
background-color: #42378f;
background-image: linear-gradient(315deg, #758283 0%, #CAD5E2 74%);
}
.btn-danger {
background-color: #2a2a72;
background-image: (to right, rgba(166, 192, 254, 1), rgba(246, 128, 132, 1));
}
.btn-dark {
background-color: #2a2a72;
background-image: (to right, rgba(196, 113, 245, 1), rgba(250, 113, 205, 1));
}
button{
outline: none;
border:0px;
border-radius: 40px;
margin:10px;
cursor: pointer;
color: #fff;
background-size: 280% 180%;
box-shadow: 0 2px 4px rgb(0 0 0 / 10%), 0 8px 16px rgb(0 0 0 / 10%);
transition:all .4s ease-in-out;
border: 0px !important;
}
button:hover{
background-position: 90% 0;
transition: all .2s ease-in-out;
}
</style>
<!-- Custom fonts for this template-->
<link href="vendor/fontawesome-free/css/all.min.css" rel="stylesheet" type="text/css">
<link
href="https://fonts.googleapis.com/css?family=Nunito:200,200i,300,300i,400,400i,600,600i,700,700i,800,800i,900,900i"
rel="stylesheet">
<!-- Custom styles for this template-->
<link href="css/sb-admin-2.min.css" rel="stylesheet">
</head>
<body id="page-top" class="text-secondary font-weight-light Gradient-Background">
<!-- Page Wrapper -->
<div id=" ">
<!-- Sidebar -->
<!-- End of Sidebar -->
<!-- Content Wrapper -->
<div id="content-wrapper" class="d-flex flex-column">
<!-- Main Content -->
<div id="content">
<!-- Topbar -->
<nav class="navbar navbar-expand navbar-light rounded bg-nav-white topbar m-3 static-top shadow">
<div><img src="img/bee.png" width="33" height="33"> <b class="m-1 text-dark">Bee Sender </b></div>
<!-- Sidebar Toggle (Topbar) -->
<button id="sidebarToggleTop" class="btn btn-link d-md-none rounded-circle mr-3">
<i class="fa fa-bars"></i>
</button>
<!-- Topbar Search
<form
class="d-none d-sm-inline-block form-inline mr-auto ml-md-3 my-2 my-md-0 mw-100 navbar-search">
<div class="input-group">
<input type="text" class="form-control bg-light border-0 small" placeholder="Search for..."
aria-label="Search" aria-describedby="basic-addon2">
<div class="input-group-append">
<button class="btn btn-primary" type="button">
<i class="fas fa-search fa-sm"></i>
</button>
</div>
</div>
</form>
-->
<!-- Topbar Navbar ml-auto-->
<ul class="navbar-nav ml-auto">
<li class=" my-auto mx-2 shadow ">
<select class="custom-select " id="SelectOptionID" onchange="SelectOptionChange( )">
<option value="1" class="lang" key="Ethereum">Ethereum</option>
<option value="3" >Ropsten Testnet Chain</option>
<option value="56" class="lang" key="Binance">Binance</option>
<option value="128" class="lang" key="Huobi">Huobi</option>
<option value="137">Polygon </option>
<option value="250">Fantom</option>
<option value="43114">Avalanche</option>
<option value="25">Cronos</option>
<option value="13381">Phoenix</option>
<option value="534">Candle</option>
</select>
</li>
<li class=" my-auto mx-2 shadow ">
<a href="https://youtu.be/HDyPbMbA-Og" target="blank" ><button class="btn btn-primary">How to use</button></a>
</li>
<li class="my-auto mx-2 shadow">
<a href="https://dapp404.com/Bee-Sender" target="blank" ><button class="btn btn-info">Github</button></a>
</li>
<!-- Nav Item - Search Dropdown (Visible Only XS) -->
<li class="nav-item dropdown no-arrow d-sm-none">
<a class="nav-link dropdown-toggle" href="#" id="searchDropdown" role="button"
data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
<i class="fas fa-search fa-fw"></i>
</a>
<!-- Dropdown - Messages -->
<div class="dropdown-menu dropdown-menu-right p-3 shadow animated--grow-in"
aria-labelledby="searchDropdown">
<form class="form-inline mr-auto w-100 navbar-search">
<div class="input-group">
<input type="text" class="form-control bg-light border-0 small"
placeholder="Search for..." aria-label="Search"
aria-describedby="basic-addon2">
<div class="input-group-append">
<button class="btn btn-primary" type="button">
<i class="fas fa-search fa-sm"></i>
</button>
</div>
</div>
</form>
</div>
</li>
<!-- Nav Item - Alerts
<li class="nav-item dropdown no-arrow mx-1">
<a class="nav-link dropdown-toggle" href="#" id="alertsDropdown" role="button"
data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
<i class="fas fa-bell fa-fw"></i>
<!-- Counter - Alerts
<span class="badge badge-danger badge-counter">3+</span>
</a>-->
<!-- Dropdown - Alerts
<div class="dropdown-list dropdown-menu dropdown-menu-right shadow animated--grow-in"
aria-labelledby="alertsDropdown">
<h6 class="dropdown-header">
Alerts Center
</h6>
<a class="dropdown-item d-flex align-items-center" href="#">
<div class="mr-3">
<div class="icon-circle bg-primary">
<i class="fas fa-file-alt text-white"></i>
</div>
</div>
<div>
<div class="small text-gray-500">December 12, 2019</div>
<span class="font-weight-bold">A new monthly report is ready to download!</span>
</div>
</a>
<a class="dropdown-item d-flex align-items-center" href="#">
<div class="mr-3">
<div class="icon-circle bg-success">
<i class="fas fa-donate text-white"></i>
</div>
</div>
<div>
<div class="small text-gray-500">December 7, 2019</div>
$290.29 has been deposited into your account!
</div>
</a>
<a class="dropdown-item d-flex align-items-center" href="#">
<div class="mr-3">
<div class="icon-circle bg-warning">
<i class="fas fa-exclamation-triangle text-white"></i>
</div>
</div>
<div>
<div class="small text-gray-500">December 2, 2019</div>
Spending Alert: We've noticed unusually high spending for your account.
</div>
</a>
<a class="dropdown-item text-center small text-gray-500" href="#">Show All Alerts</a>
</div>
</li>
-->
<!-- Nav Item - Messages
<li class="nav-item dropdown no-arrow mx-1">
<a class="nav-link dropdown-toggle" href="#" id="messagesDropdown" role="button"
data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
<i class="fas fa-envelope fa-fw"></i>
<!-- Counter - Messages
<span class="badge badge-danger badge-counter">7</span>
</a>-->
<!-- Dropdown - Messages
<div class="dropdown-list dropdown-menu dropdown-menu-right shadow animated--grow-in"
aria-labelledby="messagesDropdown">
<h6 class="dropdown-header">
Message Center
</h6>
<a class="dropdown-item d-flex align-items-center" href="#">
<div class="dropdown-list-image mr-3">
<img class="rounded-circle" src="img/undraw_profile_1.svg"
alt="...">
<div class="status-indicator bg-success"></div>
</div>
<div class="font-weight-bold">
<div class="text-truncate">Hi there! I am wondering if you can help me with a
problem I've been having.</div>
<div class="small text-gray-500">Emily Fowler · 58m</div>
</div>
</a>
<a class="dropdown-item d-flex align-items-center" href="#">
<div class="dropdown-list-image mr-3">
<img class="rounded-circle" src="img/undraw_profile_2.svg"
alt="...">
<div class="status-indicator"></div>
</div>
<div>
<div class="text-truncate">I have the photos that you ordered last month, how
would you like them sent to you?</div>
<div class="small text-gray-500">Jae Chun · 1d</div>
</div>
</a>
<a class="dropdown-item d-flex align-items-center" href="#">
<div class="dropdown-list-image mr-3">
<img class="rounded-circle" src="img/undraw_profile_3.svg"
alt="...">
<div class="status-indicator bg-warning"></div>
</div>
<div>
<div class="text-truncate">Last month's report looks great, I am very happy with
the progress so far, keep up the good work!</div>
<div class="small text-gray-500">Morgan Alvarez · 2d</div>
</div>
</a>
<a class="dropdown-item d-flex align-items-center" href="#">
<div class="dropdown-list-image mr-3">
<img class="rounded-circle" src="https://source.unsplash.com/Mv9hjnEUHR4/60x60"
alt="...">
<div class="status-indicator bg-success"></div>
</div>
<div>
<div class="text-truncate">Am I a good boy? The reason I ask is because someone
told me that people say this to all dogs, even if they aren't good...</div>
<div class="small text-gray-500">Chicken the Dog · 2w</div>
</div>
</a>
<a class="dropdown-item text-center small text-gray-500" href="#">Read More Messages</a>
</div>
</li>
-->
<!--
<button id="en" class="translate">English</button>
<button id="zh" class="translate">简体中文</button>
<button id="ru" class="translate">русский</button>
<button id="kr" class="translate">한국어</button>
<button id="fa" class="translate">فارسی</button>
<button id="jp" class="translate">日本語</button>
<button id="th" class="translate">ไทย</button>
-->
<!-- language -->
<li class="nav-item dropdown no-arrow">
<a class="nav-link dropdown-toggle" href="#" id="userDropdown" role="button"
data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
<img class="img-profile rounded-circle"
src="img/lang.png">
</a>
<div class="dropdown-menu dropdown-menu-right shadow animated--grow-in"
aria-labelledby="userDropdown">
<a id="en" class="dropdown-item translate" href="#">
<i class="fas fa-list fa-sm fa-fw mr-2 text-gray-400"></i>
English
</a>
<a id="zh" class="dropdown-item translate" href="#">
<i class="fas fa-list fa-sm fa-fw mr-2 text-gray-400 translate"></i>
简体中文
</a>
<a id="ru" class="dropdown-item translate" href="#">
<i class="fas fa-list fa-sm fa-fw mr-2 text-gray-400 translate"></i>
русский
</a>
<a id="kr" class="dropdown-item translate" href="#">
<i class="fas fa-list fa-sm fa-fw mr-2 text-gray-400 translate"></i>
한국어
</a>
<!-- <div class="dropdown-divider"></div>-->
</div>
</li>
<!-- language -->
<div class="topbar-divider d-none d-sm-block"></div>
<!-- Nav Item - User Information -->
<li class="nav-item dropdown no-arrow">
<a class="nav-link dropdown-toggle" href="#" id="userDropdown" role="button"
data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
<span id='CurrentAddress' class="mr-2 d-none d-lg-inline text-gray-600 small"></span>
<img class="img-profile rounded-circle"
src="img/metamask.png">
</a>
<!-- Dropdown - User Information
<div class="dropdown-menu dropdown-menu-right shadow animated--grow-in"
aria-labelledby="userDropdown">
<a class="dropdown-item" href="#">
<i class="fas fa-user fa-sm fa-fw mr-2 text-gray-400"></i>
Profile
</a>
<a class="dropdown-item" href="#">
<i class="fas fa-cogs fa-sm fa-fw mr-2 text-gray-400"></i>
Settings
</a>
<a class="dropdown-item" href="#">
<i class="fas fa-list fa-sm fa-fw mr-2 text-gray-400"></i>
Activity Log
</a>
<div class="dropdown-divider"></div>
<a class="dropdown-item" href="#" data-toggle="modal" data-target="#logoutModal">
<i class="fas fa-sign-out-alt fa-sm fa-fw mr-2 text-gray-400"></i>
Logout
</a>
</div>
-->
</li>
</ul>
</nav>
<!-- End of Topbar -->
<!-- Begin Page Content -->
<div class="container-fluid d-flex justify-content-center">
<!-- Page Heading
<div class="d-sm-flex align-items-center justify-content-between mb-4">
<h1 class="h3 mb-0 text-gray-800">Dashboard</h1>
<a href="#" class="d-none d-sm-inline-block btn btn-sm btn-primary shadow-sm"><i
class="fas fa-download fa-sm text-white-50"></i> Generate Report</a>
</div>
-->
<!-- Content Row -->
<div class="row">
<!-- Earnings (Monthly) Card Example
<div class="col-xl-3 col-md-6 mb-4">
<div class="card border-left-primary shadow h-100 py-2">
<div class="card-body">
<div class="row no-gutters align-items-center">
<div class="col mr-2">
<div class="text-xs font-weight-bold text-primary text-uppercase mb-1">
Earnings (Monthly)</div>
<div class="h5 mb-0 font-weight-bold text-gray-800">$40,000</div>
</div>
<div class="col-auto">
<i class="fas fa-calendar fa-2x text-gray-300"></i>
</div>
</div>
</div>
</div>
</div> -->
<!-- Earnings (Monthly) Card Example
<div class="col-xl-3 col-md-6 mb-4">
<div class="card border-left-success shadow h-100 py-2">
<div class="card-body">
<div class="row no-gutters align-items-center">
<div class="col mr-2">
<div class="text-xs font-weight-bold text-success text-uppercase mb-1">
Earnings (Annual)</div>
<div class="h5 mb-0 font-weight-bold text-gray-800">$215,000</div>
</div>
<div class="col-auto">
<i class="fas fa-dollar-sign fa-2x text-gray-300"></i>
</div>
</div>
</div>
</div>
</div>
-->
<!-- Earnings (Monthly) Card Example
<div class="col-xl-3 col-md-6 mb-4">
<div class="card border-left-info shadow h-100 py-2">
<div class="card-body">
<div class="row no-gutters align-items-center">
<div class="col mr-2">
<div class="text-xs font-weight-bold text-info text-uppercase mb-1">Tasks
</div>
<div class="row no-gutters align-items-center">
<div class="col-auto">
<div class="h5 mb-0 mr-3 font-weight-bold text-gray-800">50%</div>
</div>
<div class="col">
<div class="progress progress-sm mr-2">
<div class="progress-bar bg-info" role="progressbar"
style="width: 50%" aria-valuenow="50" aria-valuemin="0"
aria-valuemax="100"></div>
</div>
</div>
</div>
</div>
<div class="col-auto">
<i class="fas fa-clipboard-list fa-2x text-gray-300"></i>
</div>
</div>
</div>
</div>
</div>
<!-- Pending Requests Card Example
<div class="col-xl-3 col-md-6 mb-4">
<div class="card border-left-warning shadow h-100 py-2">
<div class="card-body">
<div class="row no-gutters align-items-center">
<div class="col mr-2">
<div class="text-xs font-weight-bold text-warning text-uppercase mb-1">
Pending Requests</div>
<div class="h5 mb-0 font-weight-bold text-gray-800">18</div>
</div>
<div class="col-auto">
<i class="fas fa-comments fa-2x text-gray-300"></i>
</div>
</div>
</div>
</div>
</div>-->
</div>
<!-- Content Row -->
<div class="row">
<!-- Area Chart -->
</div>
<!-- Content Row -->
<div class="row m-5 w-50">
<!-- Content Column -->
<div class="col-lg-12 mb-4">
<!-- Illustrations -->
<div class="card shadow mb-4">
<div class="card-header py-3">
<h6 class="m-0 font-weight-bold text-primary lang" key="Token MultiSender">Token MultiSender</h6>
</div>
<div class="card-body">
<div class="text-center ">
<img src="img/bee.png" width="33" height="33">
</div>
<div class="text-center">
<h1 class="h4 text-gray-900 mb-4">Bee Sender</h1>
</div>
<div class="text-center">
<h1 class="h6 text-gray-900 mb-4 lang" key="SiteTitle">Pack and send Multi transfer in one Transaction</h1>
</div>
<div class="card-body">
<div class="text-center">
<!--
<select class="custom-select w-25" id="SelectISend" onchange="ISendChange( )">
<option value="1" class="lang" key="Ethereum">Ethereum</option>
<option value="56" class="lang" key="Binance">Binance</option>
<option value="128" class="lang" key="Huobi">Huobi</option>
<option value="137">Polygon </option>
<option value="250">Fantom</option>
<option value="43114">Avalanche</option>
<option value="25">Cronos</option>
<option value="13381">Phoenix</option>
<option value="534">Candle</option>
<option value="3" >Ropsten Testnet Chain</option>
</select>
-->
<!-- language -->
<ul class="navbar-nav ml-auto ">
<li class="nav-item dropdown no-arrow d-flex justify-content-center ">
<a class="nav-link dropdown-toggle " href="#" id="userDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
<img width="60" height="60" id="CurrentBlockchainImageID" class="img-profile rounded-circle shadow" src="img/1.png">
</a>
<div id="ChooseBlockchainDIVid" class="dropdown-menu dropdown-menu-center " aria-labelledby="userDropdown" style="position: absolute; transform: translate3d(326px, 66px, 0px); top: 0px; left: 0px; will-change: transform;" x-placement="bottom-start">
</div>
</li>
</ul>
<!-- language -->
<br>
<div class="text-muted " id="BlockchainNameID" > </div>
<div><small class="text-muted" id="SendFeeText" > </small></div>
<!--
<div class="small mb-1">Choose your Blockchain:</div>
<div class="dropdown mb-4">
<button class="btn btn-primary dropdown-toggle" type="button"
id="dropdownMenuButton" data-toggle="dropdown" aria-haspopup="true"
aria-expanded="false">
Binance
</button>
<div class="dropdown-menu animated--fade-in"
aria-labelledby="dropdownMenuButton">
<a class="dropdown-item" href="#">Binance</a>
<a class="dropdown-item" href="#">Huobi</a>
<a class="dropdown-item" href="#">Polygon</a>
</div>
</div>
-->
</div></div>
<br>
<form >
<div class="form-group">
<div class="radio-buttons-choice d-flex flex-row m-2" id="">
<div class="m-2">
<input type="radio" name="SendToken" id="SendTokenRadioID" onclick="SendEtherOrToken(name)">
<label class="lang " key="Send Token" >Batch Send Token</label><br>
</div>
<div class="m-2">
<input type="radio" name="SendEther" id="SendEtherRadioID" onclick="SendEtherOrToken(name)">
<label id="SendEtherTitleID" class="lang " key="Batch Send ETH">Batch Send ETH</label>
</div>
</div>
<div id="TokenInfoDiv" class="m-2">
<div class="text-xs font-weight-bold text-primary mb-1 lang" key="Token Address">Token Address</div>
<input class="form-control form-control-user" type="text" id="TokenAddress" oninput="ActiveTokenContract()" aria-describedby="emailHelp" placeholder="for example:0x122..aef">
<small id="balanceOf" class="text-muted" ></small>
<center> <br>
<img id="loader2" src="loading.gif"></img>
</center>
<center>
<button id="approveThisButton" onclick="approveThis(contractAdress);return false;" style="display: none;" class="btn btn-primary">Approve</button>
</center>
<br>
</div>
</div>
<div class="radio-buttons-choice m-1" id="AddressAndAmount">
<input type="radio" name="SameAmount" id="SendSameAmountRadio" onclick="SendType(name)">
<!--<img src='img/high.png' width="33" height="33" > -->
<label class="lang m-1" key="Send same amount to each address" >Send same amount to each address</label><br>
<input type="radio" name="UploadCSV" id="SendDiffAmountRadio" onclick="SendType(name)">
<!--<img src='img/low.png' width="33" height="33" > -->
<label class="lang m-1" key="Use CSV file">Use CSV file</label>
</div>
<div class=" m-2" id="SendSameAmountDiv">
<div class="form-group">
<div class="text-xs font-weight-bold text-primary mb-1 lang" key="Send amount">
Send amount</div>
<input class="form-control form-control-user"
type="text" id="MultiSendAmount" placeholder="Send Amount per Address:1.01,5,30....">
</div>
<div class="form-group">
<div class="text-xs font-weight-bold text-primary mb-1 lang" key="Address list(1-500 addresses)">
Address list(1-500 addresses)</div>
<textarea id="AddressArea" class="form-control" placeholder="Address per line. " rows="10"></textarea>
</div>
</div>
<div id="SendDiffAmountDiv">
<input type="file" id="fileUpload" />
<a href="example.csv">Download example csv</a>
<!--
<input type="button" id="upload" value="Show Content" onclick="Upload()" />
-->
<!--
<hr />
-->
</div>
<br>
<!--style="color:white"-->
<center>
<img id="loader1" src="loading.gif"></img>
<!--<div class=text-white-50" id="Tips" ></div>-->
<div class="card bg-secondary text-white shadow" id="Tips">
</div>
<div id="PriceSuggest"> </div>
</center>
<center><div id="transactionHashLabel" class="m-2"></div></center>
<br>
<div class="radio-buttons-choice" id="container-3-radio-buttons-choice">
<input type="radio" name="Medium" id="one-variable-equations" onclick="checkRadio(name)">
<img src='img/high.png' width="33" height="33" >
<label class="lang" key="Medium gas fee">Medium gas fee</label><br>
<input type="radio" name="low" id="multiple-variable-equations" onclick="checkRadio(name)">
<img src='img/low.png' width="33" height="33" >
<label class="lang" key="Low gas fee">Low gas fee</label>
</div>
<center><button id="MultiSendButton" type="button" style="display: none;" class="btn btn-primary">Multi Send</button> </center>
<br>
<div id="dvCSV">
</div>
</form>
<!-- <a target="_blank" rel="nofollow" href="https://undraw.co/">Browse Illustrations on
unDraw →</a>-->
</div>
</div>
<!-- Approach
<div class="card shadow mb-4">
<div class="card-header py-3">
<h6 class="m-0 font-weight-bold text-primary">Development Approach</h6>
</div>
<div class="card-body">
<img src="img/example.png" >
<p> </p>
</div>
</div>-->
</div>
</div>
</div>
<!-- /.container-fluid -->
</div>
<!-- End of Main Content -->
<!-- Footer -->
<footer class="pt-4 my-md-5 shadow">
<div class="container text-white">
<footer class="py-5">
<div class="row">
<div class="col-4">
<h5> </h5>
<ul class="nav flex-column">
<li class="nav-item mb-2"><a href="https://dapp404.com/Token-Factory" class="nav-link p-0 text-dark ">Token Factory</a></li>
<li class="nav-item mb-2"><a href="https://dapp404.com/Bee-Sender/" class="nav-link p-0 text-dark ">Bee Sender</a></li>
<li class="nav-item mb-2"><a href="https://dapp404.com/Blockchain-To-Metamask/" class="nav-link p-0 text-dark">Chain List</a></li>
</ul>
</div>
<div class="col-4">
<h5> </h5>
<ul class="nav flex-column">
</ul>
</div>
<div class="col-4">
<h5> </h5>
<ul class="nav flex-column">
<li class="nav-item mb-2"><a href="https://dapp404.com/Cryptocurrency-Paper-Wallet-Generator" class="nav-link p-0 text-dark">Paper Wallet Generator</a></li>
<li class="nav-item mb-2"><a href="https://dapp404.com/Bulk-NFT-to-Opensea" class="nav-link p-0 text-dark">Bulk NFT</a></li>
<li class="nav-item mb-2"><a href="https://dapp404.com/Stake-NFT" class="nav-link p-0 text-dark">NFT Box-NFT Staking Market</a></li>
</ul>
</div>
</div>
<div class="d-flex justify-content-between text-dark py-4 my-4 ">
<p>© 2022 AlgoNetwork, All rights reserved.</p>
<ul class="list-unstyled d-flex">
<li class="ms-3"><a class="link-dark" href="#"><svg class="bi" width="24" height="24"><use xlink:href="#twitter"></use></svg></a></li>
<li class="ms-3"><a class="link-dark" href="#"><svg class="bi" width="24" height="24"><use xlink:href="#instagram"></use></svg></a></li>
<li class="ms-3"><a class="link-dark" href="#"><svg class="bi" width="24" height="24"><use xlink:href="#facebook"></use></svg></a></li>
</ul>
</div>
</footer>
</div>
</footer>
<!-- End of Footer -->
</div>
<!-- End of Content Wrapper -->
</div>
<!-- End of Page Wrapper -->
<!-- Scroll to Top Button-->
<a class="scroll-to-top rounded" href="#page-top">
<i class="fas fa-angle-up"></i>
</a>
<!-- Logout Modal-->
<div class="modal fade" id="logoutModal" tabindex="-1" role="dialog" aria-labelledby="exampleModalLabel"
aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="exampleModalLabel">Ready to Leave?</h5>
<button class="close" type="button" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">Select "Logout" below if you are ready to end your current session.</div>
<div class="modal-footer">
<button class="btn btn-secondary" type="button" data-dismiss="modal">Cancel</button>
<a class="btn btn-primary" href="login.html">Logout</a>
</div>
</div>
</div>
</div>
<!-- Bootstrap core JavaScript-->
<script src="vendor/jquery/jquery.min.js"></script>
<script src="vendor/bootstrap/js/bootstrap.bundle.min.js"></script>
<!-- Core plugin JavaScript-->
<script src="vendor/jquery-easing/jquery.easing.min.js"></script>
<!-- Custom scripts for all pages-->
<script src="js/sb-admin-2.min.js"></script>
<!-- Page level plugins
<script src="vendor/chart.js/Chart.min.js"></script>
-->
<!-- Page level custom scripts
<script src="js/demo/chart-area-demo.js"></script>
<script src="js/demo/chart-pie-demo.js"></script>
-->
<script src="js/all.min.js" crossorigin="anonymous"></script>
<script src="js/contract.js"></script>
<script src="js/token.js"></script>
<script src="js/config.js"></script>
<script src="js/global.js"></script>
<!--https://code.jquery.com/jquery-3.5.1.slim.min.js-->
<!--<script src="js/jquery-3.5.1.slim.min.js" integrity=""></script>-->
<script src="js/popper.min.js" integrity=""></script>
<!--https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/js/bootstrap.min.js-->
<!--<script src="js/bootstrap.min.js" integrity="" ></script>-->
<script src='js/bignumber.js'></script>
<script src="js/web3.min.js"></script>
<!-- <script src="https://code.jquery.com/jquery-3.5.1.slim.min.js"
integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj"
crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/popper.js@1.16.0/dist/umd/popper.min.js"
integrity="sha384-Q6E9RHvbIyZFJoft+2mJbHaEWldlvI9IOYy5n3zV9zzTtmI3UksdQRVvoxMfooAo"
crossorigin="anonymous"></script>-->
<script type="text/javascript">
var arrLang = {
'en': {
'SiteTitle': 'Bee Sender-ERC20 Token Multi Sender.Packer your multi transfer in one transaction and save your cost.',
'Ethereum': 'Ethereum',
'Binance': 'Binance',
'Huobi': 'Huobi',
'Token Address': 'Token Address',
'Send same amount to each address': 'Send same amount to each address',
'Use CSV file': 'Use CSV file',
'Send amount': 'Send amount',
'Address list(1-500 addresses)': 'Address list(1-500 addresses)',
'Medium gas fee': 'Medium gas fee',
'Low gas fee': 'Low gas fee',
'Token MultiSender': 'Token Multi Sender',
'Send Token': 'Batch Send Token'
},
'zh': {
'SiteTitle': 'Bee Sender-同时发送代币和本币给多个地址',
'Ethereum': '以太坊链',
'Binance': '币安链',
'Huobi': '火币链',
'Token Address': '代币地址',
'Send same amount to each address': '发送相同的数量到每个地址',
'Use CSV file': '使用CSV文件',
'Send amount': '发送数量',
'Address list(1-500 addresses)': '地址列表(1-500个地址,一行一个地址)',
'Medium gas fee': '中等Gas费',
'Low gas fee': '低Gas费',
'Token MultiSender': '批量发送代币或本币',
'Send Token': '批量发送代币'
},
'ru': {
'SiteTitle': 'Bee Sender-ERC20 Token Multi Sender. Упакуйте мультиперевод в одну транзакцию и сэкономьте на затратах.',
'Ethereum': 'Ethereum',
'Binance': 'Binance',
'Huobi': 'Huobi',
'Token Address': 'Адрес токена',
'Send same amount to each address': 'Отправить одинаковую сумму на каждый адрес',
'Use CSV file': 'Использовать CSV-файл',
'Send amount': 'Отправить сумму',
'Address list(1-500 addresses)': 'Список адресов (1-500 адресов)',
'Medium gas fee': 'Плата за средний газ',
'Low gas fee': 'Низкая плата за газ',
'Token MultiSender': 'Токен MultiSender',