-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathelite.html
More file actions
1826 lines (1809 loc) · 71.4 KB
/
elite.html
File metadata and controls
1826 lines (1809 loc) · 71.4 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><meta charset="UTF-8">
<head>
<title>ELITE : FTM.guru | FTM1337</title>
<meta name="description" content="ELITE | FTM.guru : Fantom Opera blockchain tools, DEX pair Explorer, Fantom Scan, Top FTM Tokens on-chain voting.">
<meta name="keywords" content="Fantom Opera, FTM, Decentralized Finance, ELITE, 1337, defi, farming, FTM1337">
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<link rel="shortcut icon" href="img/ftm1337.jpg" />
<style>
* {
color:#e3e9f2;
overflow-wrap:break-word;
}
a{text-decoration-line:none;padding:0 2px}
*{text-shadow:10px 10px 5px black;color:#e3e9f2}
html{background:radial-gradient(circle at center,#071430 ,#020611);color:#e3e9f2;font-family:helvetica nueve, helvetica, robotica, ubuntu, roboto, sans-serif}
html{background:radial-gradient(circle at bottom, #125, #122, #100);background-attachment: fixed;}
.mainpanel,.mainstage{background: rgba(15,15,31,0.5);}
*{text-shadow:6px 6px 5px black;color:#e3e9f2}
input,button{border-radius:25px;background:black;text-align:center}
button:hover{ box-shadow: 0 0px 10px 5px rgba(255,255,255,.2), 0px 0px 10px 5px rgba(255,255,255,0.1);transition: 0.2s}
pre{overflow-x:auto;max-width:80%}
.mainpanels,.mainpanels2,.mainpanels3,.mainpanels4{display:grid}
.mainpanel{padding:15px;box-shadow: rgba(0,255,255,0.2) 0px 0px 10px 10px;background: #090919;margin:5%;border-radius: 15px;border:aqua 2px solid;grid-template-columns:auto;}
.mainpanel button{font-size: 1em}
hr{box-shadow: rgba(0,255,255,0.2) 0px 0px 10px 10px;background: #090919;border-radius: 15px;border:aqua 2px solid;}
.lpapr{text-shadow: rgba(0,255,255,1) 0px 0px 10px;color:aqua;font-size:2em}
.farmable{background: linear-gradient(45deg, rgba(255,0,0,0.25), rgba(0,0,255,0.25))}
.gotofarm{display: grid;grid-template-columns: auto auto;
padding:0 0 0 5px;margin:2px -15px 2px -5px;
border-radius:15px;background:linear-gradient(to left, rgba(0,0,0,1) 10%, transparent 90%);
max-width:300px;}
.gotofarm div:nth-child(2){font-weight:bolder;font-family: 'Courier New', "Lucida Console", Monaco,"FreeMono","Andale Mono", monospace;}
.advert{background: linear-gradient(45deg, rgba(255,0,0,0.25), rgba(0,0,255,0.25));padding:15px}
.lowercat {text-align: left;padding:10px}
.lowercat a{text-decoration-line: none}
.lowercat span{font-size: 1.25em; font-weight:bold}
.lowerbar{display: grid;grid-template-columns: auto;text-align:center}
.centerstage{overflow: auto}
thead{line-height: }
td a{text-decoration-line: none}
tbody tr:hover{cursor: zoom-in;background: rgba(0,255,255,0.25)}
table td{padding: 0 5px;min-width:max-content;width:max-content;}
table{width:max-content;padding:15px;box-shadow: rgba(0,255,255,0.2) 0px 0px 10px 10px;background: #090919;margin:5%;border-radius: 15px;border:aqua 2px solid;text-align:center}
td button{padding: 0;margin: 0;width: 20px;height: 20px}
.liqdis .mainpanel{padding-bottom: 8px;padding-top: 8px;}
.donut{width: 256px}
.p1td{display: grid;grid-template-columns:auto}
#consmark{margin: auto}
.p1td div{margin:auto;width:90vw}
@media(min-width:641px){
.mainpanels{grid-template-columns:auto auto auto}
.liqdis{grid-template-columns:auto auto}
.mainpanels2{grid-template-columns: auto auto auto auto}
.mainpanels3{grid-template-columns: auto 40% 40% auto}
.mainpanels4{grid-template-columns: auto auto auto}
.hhr{width:555px}
.lowerbar{display: grid;grid-template-columns: auto auto auto auto;text-align:center}
.p1td{grid-template-columns:auto auto;}
.p1td div{margin:auto;width:40vw}
.donut{width: 360px}
}
@media(min-width:800px){
.liqdis{grid-template-columns:auto auto auto !important;}
}
#c2a{
display: grid;
grid-template-columns: auto;
}
.c2a{
border: 2px solid ;
width:220px;
margin: auto;
padding:5px;
margin: 5px auto;
background: rgba(0,255,255,0.2);
border-radius: 10px;
cursor: grab;
}
.c2a:hover{box-shadow: rgba(0,255,195,0.2) 0px 0px 10px 10px;}
@media(min-width:641px){
#c2a{
display: grid;
grid-template-columns: auto 280px 280px auto;
}
.donut{position: relative;top:-300px}
}
#consmark div{color:beige !important}
.chart-text {
/*font: 16px/1.4em "Montserrat", Arial, sans-serif;*/
fill: #000;
-moz-transform: translateY(0.25em);
-ms-transform: translateY(0.25em);
-webkit-transform: translateY(0.25em);
transform: translateY(0.25em);
}
.chart-number {
font-size: 0.5em;
line-height: 1;
text-anchor: middle;
-moz-transform: translateY(-0.25em);
-ms-transform: translateY(-0.25em);
-webkit-transform: translateY(-0.25em);
transform: translateY(-0.25em);
fill:aqua;
}
.chart-label {
font-size: 0.2em;
text-transform: uppercase;
text-anchor: middle;
-moz-transform: translateY(0.7em);
-ms-transform: translateY(0.7em);
-webkit-transform: translateY(0.7em);
transform: translateY(0.7em);
fill:aqua;
}
</style>
</head>
<div class="topbar">
<div align="center">
<a href="index.html"><b style="font-size:2em">FTM.guru</b></a><br><br>
<!--<a href="farmlands.html">Farmlands👽</a>
<a href="index.html">FTM-Gems</a>-->
<a href="LF/index.html">LITE Farmlands👽</a>
<a href="pair.html">DEX-Explorer</a>
<a href="fantomscan.html">FantomScan</a>
<a href="elite.html">ELITE</a>
<a href="fmc.html">FantomMarketCap</a>
<a href="yieldstate.html">YieldState</a>
<!--<a href="airdrop.html">Airdrop-Tool</a>-->
<a href="apelist.html">Ape-List</a>
<a href="approver.html">Approver</a>
<a href="casino.html">CASINO🎰</a>
</div>
</div>
<br>
<hr class="hhr">
<br>
<br>
<h2 align="center">ELITE Tokenomics</h2>
<div class="mainpanel" align="center">
<br><h4>$ELITE</h4>
Elite Token offers holder's special privileges, access to exclusive content and voting rights on the TopElites smart contract showcased on the Front page of FTM.guru and its other mediums.<br><br>The Maximum Supply of Elite is Fixed at 1337.<br><br>
Supply is consistently decreasing due to a 1.337% transfer tax, which is burned to Death, facilitating an elite & authentic deflation.
<br><br>
</div>
<h4 align="center">LIVE MARKET DATA</h4>
<div class="mainpanels" align="center">
<div class="mainpanel">
<h4>Average Price</h4>
$<span id="ap_u" style="font-size:2em">?</span><br>
<span id="ap">?</span> FTM
<br><br>
</div>
<div class="mainpanel">
<h4>Market Cap</h4>
$<span id="mc_u" style="font-size:2em">?</span><br>
<span id="mc">?</span> FTM
<br><br>
</div>
<div class="mainpanel">
<h4>Total Liquidity</h4>
$<span id="tl_u" style="font-size:2em">?</span><br>
<span id="tl">?</span> FTM
<br><br>
</div>
</div>
<br><br>
<h4 align="center" onclick="mkpi3(allp.sort(function(a, b){return a-b}));">LIQUIDITY DISTRIBUTION</h4>
<div align="center" class="p1td">
<div align="center" >
<svg class="donut" width="" height="" viewBox="0 0 42 42">
<circle class="donut-hole" cx="21" cy="21" r="15.91549430918954" fill="transparent"></circle>
<circle id="donut-segment-0" cx="21" cy="21" r="15.91549430918954" fill="transparent" stroke="#0ff" stroke-width="4" stroke-dasharray="0 100" stroke-dashoffset="25"></circle>
<g id="dos"></g>
<g class="chart-text">
<text x="21" y="50%" class="chart-number" id="totalValue">
?
</text>
<text x="21" y="50%" class="chart-label">ELITE Pooled</text>
</g>
</svg>
</div>
<div id="consmark" align="center" >
<b>Constituent Markets</b><br><br>
<div style="overflow:auto">
<table id="maintable" class="centerstage">
<thead>
<tr>
<th onclick="sortit(0)">Base⇅</th>
<th onclick="sortit(1)">ELITEs⇅</th>
<th onclick="sortit(2)">DEX⇅</th>
<th onclick="sortit(2)">Links</th>
</tr>
</thead>
<tbody>
<tr class="">
<td>FTM</td>
<td id="p1tpl1">0</td>
<td>Spooky</td>
<td><span><a href="https://" target="_blank">💱</a><a href="https://" target="_blank">🌐</a><a href="https://" target="_blank">🚜</a></span></td>
</tr>
<tr class="">
<td>FTM</td>
<td id="p1tpl2">0</td>
<td>Sushi</td>
<td><span><a href="https://" target="_blank">💱</a><a href="https://" target="_blank">🌐</a><a href="https://" target="_blank">🚜</a></span></td>
</tr>
<tr class="">
<td>FTM</td>
<td id="p1tpl3">0</td>
<td>Spirit</td>
<td><span><a href="https://" target="_blank">💱</a><a href="https://" target="_blank">🌐</a><a href="https://" target="_blank">🚜</a></span></td>
</tr>
<tr class="">
<td>FTM</td>
<td id="p1tpl4">0</td>
<td>Zoo</td>
<td><span><a href="https://" target="_blank">💱</a><a href="https://" target="_blank">🌐</a><a href="https://" target="_blank">🚜</a></span></td>
</tr>
<tr class="">
<td>ZOO</td>
<td id="p1tpl5">0</td>
<td>Zoo</td>
<td><span><a href="https://" target="_blank">💱</a><a href="https://" target="_blank">🌐</a><a href="https://" target="_blank">🚜</a></span></td>
</tr>
<tr class="">
<td>USDC</td>
<td id="p1tpl6">0</td>
<td>Sushi</td>
<td><span><a href="https://" target="_blank">💱</a><a href="https://" target="_blank">🌐</a><a href="https://" target="_blank">🚜</a></span></td>
</tr>
<tr class="">
<td>USDC</td>
<td id="p1tpl7">0</td>
<td>Spooky</td>
<td><span><a href="https://" target="_blank">💱</a><a href="https://" target="_blank">🌐</a><a href="https://" target="_blank">🚜</a></span></td>
</tr>
<tr class="">
<td>FTM</td>
<td id="p1tpl8">0</td>
<td>Elk</td>
<td><span><a href="https://" target="_blank">💱</a><a href="https://" target="_blank">🌐</a><a href="https://" target="_blank">🚜</a></span></td>
</tr>
<tr class="">
<td>USDC</td>
<td id="p1tpl9">0</td>
<td>Elk</td>
<td><span><a href="https://" target="_blank">💱</a><a href="https://" target="_blank">🌐</a><a href="https://" target="_blank">🚜</a></span></td>
</tr>
<tr class="">
<td>FTM</td>
<td id="p1tpl10">0</td>
<td>Shiba</td>
<td><span><a href="https://" target="_blank">💱</a><a href="https://" target="_blank">🌐</a><a href="https://" target="_blank">🚜</a></span></td>
</tr>
<tr class="">
<td>USDC</td>
<td id="p1tpl11">0</td>
<td>Shiba</td>
<td><span><a href="https://" target="_blank">💱</a><a href="https://" target="_blank">🌐</a><a href="https://" target="_blank">🚜</a></span></td>
</tr>
<tr class="">
<td>FTM</td>
<td id="p1tpl12">0</td>
<td>NipdEx</td>
<td><span><a href="https://" target="_blank">💱</a><a href="https://" target="_blank">🌐</a><a href="https://" target="_blank">🚜</a></span></td>
</tr>
<tr class="">
<td>FTM</td>
<td id="p1tpl13">0</td>
<td>Hyper</td>
<td><span><a href="https://" target="_blank">💱</a><a href="https://" target="_blank">🌐</a><a href="https://" target="_blank">🚜</a></span></td>
</tr>
<tr class="">
<td>FTM</td>
<td id="p1tpl14">0</td>
<td>Cyber</td>
<td><span><a href="https://" target="_blank">💱</a><a href="https://" target="_blank">🌐</a><a href="https://" target="_blank">🚜</a></span></td>
</tr>
<tr class="">
<td>FTM</td>
<td id="p1tpl15">0</td>
<td>Paint</td>
<td><span><a href="https://" target="_blank">💱</a><a href="https://" target="_blank">🌐</a><a href="https://" target="_blank">🚜</a></span></td>
</tr>
<tr class="">
<td>FTM</td>
<td id="p1tpl16">0</td>
<td>Totem</td>
<td><span><a href="https://" target="_blank">💱</a><a href="https://" target="_blank">🌐</a><a href="https://" target="_blank">🚜</a></span></td>
</tr>
<tr class="">
<td>FTM</td>
<td id="p1tpl17">0</td>
<td>Soul</td>
<td><span><a href="https://" target="_blank">💱</a><a href="https://" target="_blank">🌐</a><a href="https://" target="_blank">🚜</a></span></td>
</tr>
<tr class="">
<td>FTM</td>
<td id="p1tpl18">0</td>
<td>Wraith</td>
<td><span><a href="https://" target="_blank">💱</a><a href="https://" target="_blank">🌐</a><a href="https://" target="_blank">🚜</a></span></td>
</tr>
<tr class="">
<td>SUN</td>
<td id="p1tpl19">0</td>
<td>Spirit</td>
<td><span><a href="https://" target="_blank">💱</a><a href="https://" target="_blank">🌐</a><a href="https://" target="_blank">🚜</a></span></td>
</tr>
<tr class="">
<td>WRA</td>
<td id="p1tpl20">0</td>
<td>Wraith</td>
<td><span><a href="https://" target="_blank">💱</a><a href="https://" target="_blank">🌐</a><a href="https://" target="_blank">🚜</a></span></td>
</tr>
<tr class="">
<td>USDC</td>
<td id="p1tpl21">0</td>
<td>Empire</td>
<td><span><a href="https://" target="_blank">💱</a><a href="https://" target="_blank">🌐</a><a href="https://" target="_blank">🚜</a></span></td>
</tr>
<tr class="">
<td>USDC</td>
<td id="p1tpl22">0</td>
<td>Spirit</td>
<td><span><a href="https://" target="_blank">💱</a><a href="https://" target="_blank">🌐</a><a href="https://" target="_blank">🚜</a></span></td>
</tr>
<tr class="">
<td>USDC</td>
<td id="p1tpl23">0</td>
<td>Wraith</td>
<td><span><a href="https://" target="_blank">💱</a><a href="https://" target="_blank">🌐</a><a href="https://" target="_blank">🚜</a></span></td>
</tr>
<tr class="">
<td>FTM</td>
<td id="p1tpl24">0</td>
<td>DMM</td>
<td><span><a href="https://dmm.exchange/#/swap" target="_blank">💱</a><a href="https://dmm.exchange" target="_blank">🌐</a><a href="https://" target="_blank">🚜</a></span></td>
</tr>
<tr class="">
<td>USDC</td>
<td id="p1tpl25">0</td>
<td>DMM</td>
<td><span><a href="https://dmm.exchange/#/swap" target="_blank">💱</a><a href="https://dmm.exchange" target="_blank">🌐</a><a href="https://" target="_blank">🚜</a></span></td>
</tr>
<tr class="">
<td>FTM</td>
<td id="p1tpl26">0</td>
<td>Dfyn</td>
<td><span><a href="https://dfyn.network/#/swap" target="_blank">💱</a><a href="https://dfyn.network" target="_blank">🌐</a><a href="https://" target="_blank">🚜</a></span></td>
</tr>
<tr class="">
<td>USDC</td>
<td id="p1tpl27">0</td>
<td>Morpheus</td>
<td><span><a href="https://swap.morpheusswap.app/#/swap/0xf43Cc235E686d7BC513F53Fbffb61F760c3a1882/0x04068DA6C83AFCFA0e13ba15A6696662335D5B75" target="_blank">💱</a><a href="https://swap.morpheusswap.app/add/0xf43Cc235E686d7BC513F53Fbffb61F760c3a1882/0x04068DA6C83AFCFA0e13ba15A6696662335D5B75" target="_blank">🌐</a><a href="https://" target="_blank">🚜</a></span></td>
</tr>
<tr class="">
<td>DAI</td>
<td id="p1tpl28">0</td>
<td>Spooky</td>
<td><span><a href="https://spookyswap.finance" target="_blank">💱</a><a href="https://" target="_blank">🌐</a><a href="https://" target="_blank">🚜</a></span></td>
</tr>
<tr class="">
<td>ETH</td>
<td id="p1tpl29">0</td>
<td>Spooky</td>
<td><span><a href="https://spookyswap.finance" target="_blank">💱</a><a href="https://" target="_blank">🌐</a><a href="https://" target="_blank">🚜</a></span></td>
</tr>
<tr class="">
<td>UST</td>
<td id="p1tpl30">0</td>
<td>Spooky</td>
<td><span><a href="https://spookyswap.finance" target="_blank">💱</a><a href="https://" target="_blank">🌐</a><a href="https://" target="_blank">🚜</a></span></td>
</tr>
<tr class="">
<td>SPIRIT</td>
<td id="p1tpl31">0</td>
<td>Spirit</td>
<td><span><a href="https://spiritswap.finance" target="_blank">💱</a><a href="https://" target="_blank">🌐</a><a href="https://" target="_blank">🚜</a></span></td>
</tr>
<tr class="">
<td>FTM</td>
<td id="p1tpl32">0</td>
<td>Jet</td>
<td><span><a href="https://fantom-exchange.jetswap.finance/#/swap" target="_blank">💱</a><a href="https://" target="_blank">🌐</a><a href="https://" target="_blank">🚜</a></span></td>
</tr>
<tr class="">
<td>XELITE</td>
<td id="p1tpl33">0</td>
<td>Wraith</td>
<td><span><a href="https://fantom-exchange.jetswap.finance/#/swap" target="_blank">💱</a><a href="https://" target="_blank">🌐</a><a href="https://" target="_blank">🚜</a></span></td>
</tr>
<tr class="">
<td>XELITE</td>
<td id="p1tpl34">0</td>
<td>Spooky</td>
<td><span><a href="https://spookyswap.finance" target="_blank">💱</a><a href="https://" target="_blank">🌐</a><a href="https://" target="_blank">🚜</a></span></td>
</tr>
<tr class="">
<td>XELITE</td>
<td id="p1tpl35">0</td>
<td>Zoo</td>
<td><span><a href="https://dex.zoocoin.cash/pool/add?inputCurrency=0x1BE23c78038B6057172848534AcD62667fA2620d&outputCurrency=0xf43Cc235E686d7BC513F53Fbffb61F760c3a1882" target="_blank">💱</a><a href="https://" target="_blank">🌐</a><a href="https://" target="_blank">🚜</a></span></td>
</tr>
<tr class="">
<td>XELITE</td>
<td id="p1tpl36">0</td>
<td>Knight</td>
<td><span><a href="https://darkdex.knight.financial/pool/add?inputCurrency=0x1BE23c78038B6057172848534AcD62667fA2620d&outputCurrency=0xf43Cc235E686d7BC513F53Fbffb61F760c3a1882" target="_blank">💱</a><a href="https://" target="_blank">🌐</a><a href="https://" target="_blank">🚜</a></span></td>
</tr>
<tr class="">
<td>NIPS</td>
<td id="p1tpl37">0</td>
<td>NipdEx</td>
<td><span><a href="https://exchange.nipplelabs.finance/#/add/0x3a6a2f68F2d556446348028Bc215d2F17Cb5cc49/0xf43Cc235E686d7BC513F53Fbffb61F760c3a1882" target="_blank">💱</a><a href="https://" target="_blank">🌐</a><a href="https://" target="_blank">🚜</a></span></td>
</tr>
<tr class="">
<td>FTM</td>
<td id="p1tpl38">0</td>
<td>Defy</td>
<td><span><a href="https://dex.zoocoin.cash/pool/add?inputCurrency=0x1BE23c78038B6057172848534AcD62667fA2620d&outputCurrency=0xf43Cc235E686d7BC513F53Fbffb61F760c3a1882" target="_blank">💱</a><a href="https://" target="_blank">🌐</a><a href="https://" target="_blank">🚜</a></span></td>
</tr>
<tr class="">
<td>FTM</td>
<td id="p1tpl39">0</td>
<td>Knight</td>
<td><span><a href="https://darkdex.knight.financial/pool/add?inputCurrency=0x1BE23c78038B6057172848534AcD62667fA2620d&outputCurrency=0xf43Cc235E686d7BC513F53Fbffb61F760c3a1882" target="_blank">💱</a><a href="https://" target="_blank">🌐</a><a href="https://" target="_blank">🚜</a></span></td>
</tr>
<tr class="">
<td>FTM</td>
<td id="p1tpl40">0</td>
<td>Solidly</td>
<td><span><a href="https://solidly.exchange" target="_blank">💱</a><a href="https://" target="_blank">🌐</a><a href="https://" target="_blank">🚜</a></span></td>
</tr>
<tr class="">
<td>USDC</td>
<td id="p1tpl41">0</td>
<td>Solidly</td>
<td><span><a href="https://solidly.exchange" target="_blank">💱</a><a href="https://" target="_blank">🌐</a><a href="https://" target="_blank">🚜</a></span></td>
</tr>
<tr class="">
<td>BEETS</td>
<td id="p1tpl42">0</td>
<td>Solidly</td>
<td><span><a href="https://solidly.exchange" target="_blank">💱</a><a href="https://" target="_blank">🌐</a><a href="https://" target="_blank">🚜</a></span></td>
</tr>
<tr class="">
<td>BOMB</td>
<td id="p1tpl43">0</td>
<td>Solidly</td>
<td><span><a href="https://solidly.exchange" target="_blank">💱</a><a href="https://" target="_blank">🌐</a><a href="https://" target="_blank">🚜</a></span></td>
</tr>
<tr class="">
<td>yvwETH</td>
<td id="p1tpl44">0</td>
<td>Panic</td>
<td><span><a href="https://panicswap.com" target="_blank">💱</a><a href="https://panicswap.com" target="_blank">🌐</a><a href="https://panicswap.com" target="_blank">🚜</a></span></td>
</tr>
<tr class="">
<td>ETH</td>
<td id="p1tpl45">0</td>
<td>Solidly</td>
<td><span><a href="https://solidly.exchange" target="_blank">💱</a><a href="https://solidly.exchange" target="_blank">🌐</a><a href="https://solidexfinance.com" target="_blank">🚜</a></span></td>
</tr>
<tr class="">
<td>ECH</td>
<td id="p1tpl46">0</td>
<td>Solidly</td>
<td><span><a href="https://solidly.exchange" target="_blank">💱</a><a href="https://solidly.exchange" target="_blank">🌐</a><a href="https://solidexfinance.com" target="_blank">🚜</a></span></td>
</tr>
<tr class="">
<td>FTM</td>
<td id="p1tpl47">0</td>
<td>Equalizer</td>
<td><span><a href="https://Equalizer.exchange" target="_blank">💱</a><a href="https://EqualizerEqualizer" target="_blank">🌐</a><a href="https://Equalizer.exchange" target="_blank">🚜</a></span></td>
</tr>
<tr class="">
<td>ETH</td>
<td id="p1tpl48">0</td>
<td>Equalizer</td>
<td><span><a href="https://Equalizer.exchange" target="_blank">💱</a><a href="https://EqualizerEqualizer" target="_blank">🌐</a><a href="https://Equalizer.exchange" target="_blank">🚜</a></span></td>
</tr>
<tr class="">
<td>SCARAB</td>
<td id="p1tpl49">0</td>
<td>Equalizer</td>
<td><span><a href="https://Equalizer.exchange" target="_blank">💱</a><a href="https://EqualizerEqualizer" target="_blank">🌐</a><a href="https://Equalizer.exchange" target="_blank">🚜</a></span></td>
</tr>
<tr class="">
<td>GSCARAB</td>
<td id="p1tpl50">0</td>
<td>Equalizer</td>
<td><span><a href="https://Equalizer.exchange" target="_blank">💱</a><a href="https://EqualizerEqualizer" target="_blank">🌐</a><a href="https://Equalizer.exchange" target="_blank">🚜</a></span></td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
<br><br>
<!--
<div class="centerstage" align="center">
<table id="maintable" class="centerstage" align="center">
<thead>
<tr>
<th onclick="sortit(0)">ELITEs⇅</th>
<th onclick="sortit(1)">Amount ⇅</th>
<th onclick="sortit(2)">Base ⇅</th>
<th onclick="sortit(3)">Platform ⇅</th>
<th onclick="sortit(4)">FTM TVL⇅</th>
<th onclick="sortit(5)">Links ⇅</th>
</tr>
</thead>
<tbody>
<tr class="" id="" onclick="">
<td><span id="">1</span></td>
<td><span id="">600</span></td>
<td>WFTM</td>
<td>Spooky</td>
<td>1200</td>
<td>B P</td>
</tr>
<tr class="" id="" onclick="">
<td><span id="">1</span></td>
<td><span id="">600</span></td>
<td>WFTM</td>
<td>Sushi</td>
<td>1200</td>
<td>B P</td>
</tr>
<tr class="" id="" onclick="">
<td><span id="">1</span></td>
<td><span id="">600</span></td>
<td>WFTM</td>
<td>ZooDEX</td>
<td>1200</td>
<td>B P</td>
</tr>
<tr class="" id="" onclick="">
<td><span id="">1</span></td>
<td><span id="">800</span></td>
<td>USDC</td>
<td>Spooky</td>
<td>1200</td>
<td>B P</td>
</tr>
<tr class="" id="" onclick="">
<td><span id="">1</span></td>
<td><span id="">800</span></td>
<td>USDC</td>
<td>Sushi</td>
<td>1200</td>
<td>B P</td>
</tr>
<tr class="" id="" onclick="">
<td><span id="">1</span></td>
<td><span id="">30000</span></td>
<td>ZOO</td>
<td>ZooDEX</td>
<td>1200</td>
<td>B P</td>
</tr>
<tr class="" id="" onclick="">
<td><span id="">1</span></td>
<td><span id="">600</span></td>
<td>WFTM</td>
<td>Elk</td>
<td>1200</td>
<td>B P</td>
</tr>
<tr class="" id="" onclick="">
<td><span id="">1</span></td>
<td><span id="">800</span></td>
<td>USDC</td>
<td>Elk</td>
<td>1200</td>
<td>B P</td>
</tr>
<tr class="" id="" onclick="">
<td><span id="">1</span></td>
<td><span id="">600</span></td>
<td>WFTM</td>
<td>Shiba</td>
<td>1200</td>
<td>B P</td>
</tr>
<tr class="" id="" onclick="">
<td><span id="">1</span></td>
<td><span id="">800</span></td>
<td>USDC</td>
<td>Shiba</td>
<td>1200</td>
<td>B P</td>
</tr>
<tr class="" id="" onclick="">
<td><span id="">1</span></td>
<td><span id="">600</span></td>
<td>WFTM</td>
<td>Cyber</td>
<td>1200</td>
<td>B P</td>
</tr>
<tr class="" id="" onclick="">
<td><span id="">1</span></td>
<td><span id="">600</span></td>
<td>WFTM</td>
<td>Totem</td>
<td>1200</td>
<td>B P</td>
</tr>
<tr class="" id="" onclick="">
<td><span id="">1</span></td>
<td><span id="">600</span></td>
<td>WFTM</td>
<td>NipdEx</td>
<td>1200</td>
<td>B P</td>
</tr>
</tbody>
</table>
</div>
<br><br>
<h4 align="center">MOST USED PAIRS</h4>-->
<div class="mainpanels liqdis" align="center">
<div class="mainpanel farmable">
<b>Spooky:ELITE/WFTM</b><br><br>
<span id="p0a">?</span> ELITE<br>+
<span id="p0b">?</span> FTM<br><br>
1 ELITE = <b><span id="p0p">?</span></b> FTM
<a href="yieldstate.html"><div class="gotofarm">
<div><span class="lpapr" id="p0apr">? %</span></div>
<div><i>Boost with<br>YieldState</i></div>
</div></a>
24h Realized APY<br><br>
<a href="https://spookyswap.finance/#/add/FTM/0xf43cc235e686d7bc513f53fbffb61f760c3a1882" target="_blank"><button>Pool</button></a>
<a href="https://spookyswap.finance/#/swap?outputCurrency=0xf43cc235e686d7bc513f53fbffb61f760c3a1882" target="_blank"><button>Swap</button></a>
<a href="https://info.spookyswap.finance/#/pair/0xea035a13b64cb49d85e2f0a2736c9604cb21599c" target="_blank"><button>Detail</button></a>
</div>
<div class="mainpanel farmable">
<b>Sushi:ELITE/WFTM</b><br><br>
<span id="p1a">?</span> ELITE<br>+
<span id="p1b">?</span> FTM<br><br>
1 ELITE = <b><span id="p1p">?</span></b> FTM
<a href="yieldstate.html"><div class="gotofarm">
<div><span class="lpapr" id="p1apr">? %</span></div>
<div><i>Boost with<br>YieldState</i></div>
</div></a>
24h Realized APY<br><br>
<a href="https://app.sushi.com/#/add/ETH/0xf43cc235e686d7bc513f53fbffb61f760c3a1882" target="_blank"><button>Pool</button></a>
<a href="https://app.sushi.com/#/swap?outputCurrency=0xf43cc235e686d7bc513f53fbffb61f760c3a1882" target="_blank"><button>Swap</button></a>
<a href="https://analytics-ftm.sushi.com/pairs/0x50576ed9d94cf934bc32abf76e08ec6ddcd54bf0" target="_blank"><button>Detail</button></a>
</div>
<div class="mainpanel">
<b>Sushi:ELITE/USDC</b><br><br>
<span id="p5a">?</span> ELITE<br>+
<span id="p5b">?</span> USDC<br><br>
1 ELITE = <b><span id="p5p">?</span></b> USDC<br>
<span class="lpapr" id="p5apr">? %</span>
<br>24h Realized APY
<br><br>
<a href="https://app.sushi.com/#/add/ETH/0xf43cc235e686d7bc513f53fbffb61f760c3a1882" target="_blank"><button>Pool</button></a>
<a href="https://app.sushi.com/#/swap?outputCurrency=0xf43cc235e686d7bc513f53fbffb61f760c3a1882" target="_blank"><button>Swap</button></a>
<a href="https://analytics-ftm.sushi.com/pairs/0x1dfcddf675038ead27f1d75b435b5b05ba825e9a" target="_blank"><button>Detail</button></a>
</div><!--
<div class="mainpanel">
<b>Spooky:ELITE/USDC</b><br><br>
<span id="p6a">?</span> ELITE<br>+
<span id="p6b">?</span> USDC<br><br>
1 ELITE = <b><span id="p6p">?</span></b> USDC<br>
<span class="lpapr" id="p6apr">? %</span>
<br>24h Realized APY
<br><br>
<a href="https://app.sushi.com/#/add/ETH/0xf43cc235e686d7bc513f53fbffb61f760c3a1882" target="_blank"><button>Pool</button></a>
<a href="https://app.sushi.com/#/swap?outputCurrency=0xf43cc235e686d7bc513f53fbffb61f760c3a1882" target="_blank"><button>Swap</button></a>
<a href="https://analytics-ftm.sushi.com/pairs/0x1dfcddf675038ead27f1d75b435b5b05ba825e9a" target="_blank"><button>Detail</button></a>
</div>-->
<div class="mainpanel">
<b>Spirit:ELITE/WFTM</b><br><br>
<span id="p2a">?</span> ELITE<br>+
<span id="p2b">?</span> FTM<br><br>
1 ELITE = <b><span id="p2p">?</span></b> FTM<br>
<span class="lpapr" id="p2apr">? %</span>
<br>24h Realized APY
<br><br>
<a href="https://swap.spiritswap.finance/#/add/FTM/0xf43cc235e686d7bc513f53fbffb61f760c3a1882" target="_blank"><button>Pool</button></a>
<a href="https://swap.spiritswap.finance/#/swap?outputCurrency=0xf43cc235e686d7bc513f53fbffb61f760c3a1882" target="_blank"><button>Swap</button></a>
<a href="https://info.spiritswap.finance/#/pair/0x7c8f47d2d151cedfdb847ab3c5b67d05daf3539b" target="_blank"><button>Detail</button></a>
</div>
<div class="mainpanel">
<b>ZDEX:ELITE/WFTM</b><br><br>
<span id="p3a">?</span> ELITE<br>+
<span id="p3b">?</span> FTM<br><br>
1 ELITE = <b><span id="p3p">?</span></b> FTM<br>
<span class="lpapr" id="p3apr">? %</span>
<br>24h Realized APY
<br><br>
<a href="https://swap.spiritswap.finance/#/add/FTM/0xf43cc235e686d7bc513f53fbffb61f760c3a1882" target="_blank"><button>Pool</button></a>
<a href="https://dex.zoocoin.cash/orders/market?inputCurrency=0xf43Cc235E686d7BC513F53Fbffb61F760c3a1882&outputCurrency=FTM" target="_blank"><button>Swap</button></a>
<a href="https://info.zoocoin.cash/#/pair/0xad28B6C529714954AE2B6d390c8eaD874ddc4970" target="_blank"><button>Detail</button></a>
</div>
<div class="mainpanel">
<b>ZDEX:ZOO/ELITE</b><br><br>
<span id="p4a">?</span> ELITE<br>+
<span id="p4b">?</span> ZOO<br><br>
1 ELITE = <b><span id="p4p">?</span></b> ZOO<br>
<span class="lpapr" id="p4apr">? %</span>
<br>24h Realized APY
<br><br>
<a href="https://swap.spiritswap.finance/#/add/FTM/0xf43cc235e686d7bc513f53fbffb61f760c3a1882" target="_blank"><button>Pool</button></a>
<a href="https://dex.zoocoin.cash/orders/market?outputCurrency=0xf43Cc235E686d7BC513F53Fbffb61F760c3a1882&inputCurrency=FTM" target="_blank"><button>Swap</button></a>
<a href="https://info.zoocoin.cash/#/pair/0x7618793c51e0dc954ba1dd2eeeb3dfa08f777d0a" target="_blank"><button>Detail</button></a>
</div>
</div>
</div>
<br><br>
<h4 align="center">SPECIAL NUMBERS</h4>
<div class="mainpanels3" align="center">
<div></div>
<div class="mainpanel">
<h4>Anti-Whale Limits</h4>
<span class="numpal" id="aw">?</span> ELITE
<br><br>
<ul style="text-align:left;">
<li>Each address can hold no more than this number of ELITE.</li>
<li>The limit applies on transfers as well.</li>
<li>It increases gradually to 1.337% of Total Supply, which is about 17.29 ELITE.</li>
</ul>
</div>
<div class="mainpanel">
<h4>Permanent Liquidity</h4>
<span id="PBa">?</span> ELITE<br>+<br>
<span id="PBb">?</span> FTM<br><br>
These are the current amounts locked into Liquidity permanently that cannot be removed. It was burned to <a href="https://ftmscan.com/address/0x00000000000000000000000000000000dead1337#balances" target="_blank">0x1337DEAD</a> on Genesis Day.<br><br>
</div>
<div></div>
</div>
<br><br>
<h3 align="center">E.L.I.T.E. D.A.O.</h3>
<h4 align="center">Liquid Reserves Of Treasury</h4>
<div align="center"><pre>0x167d87a906da361a10061fe42bbe89451c2ee584</pre></div>
<div class="mainpanels2" align="center">
<div></div>
<div class="mainpanel">
<h4>Taxation</h4>
<span id="daot">?</span> ELITE
<br><br>
</div>
<div class="mainpanel">
<h4>Revenues</h4>
<span id="daor">?</span> FTM
<br><br>
</div>
<div></div><!--
<div class="mainpanel">
<h4>TVL/MC ratio</h4>
<span id="rtm">?</span> %
<br><br>
</div>-->
</div>
<br><br>
<h3 align="center">Genesis LPT Burn.</h3>
<div class="mainpanel" align="center">
<br><br>The Elite Devs burnt 267.4 ELITE worth <span id="lwt">?</span> FTM today to bootstrap the Fantom Opera # 1337.<br><br>
<a href="https://ftmscan.com/tx/0xa4130f0738277cca77ff7a0a790c8d73cebb2e581784b30ae89dfc65d5a2899b" target="_blank"><b>Proof of Burn (Spooky LP)↗</b><br>
Current Worth: <span id="lw0">?</span> FTM<br><br></a>
<a href="https://ftmscan.com/tx/0x9912832af64e1ff0db71934770a3c924ac550c3448979428cfe6c789f831c781" target="_blank"><b>Proof of Burn (Sushi LP)↗</b><br>
Current Worth: <span id="lw1">?</span> FTM<br><br><br></a>
These serve as a Source of Guarantee to the Elites that instill trust in this Fraternity and it's endeavours.<br>
</div>
<br><br>
<h3 align="center">Farming with ELITE</h3>
<div align="center">There are multiple projects on Fantom Opera that offer rewards for contributing liquidity to ELITE pairs.</div>
<div class="centerstage" align="center">
<table id="maintable" class="centerstage" align="center">
<thead>
<tr>
<th onclick="sortit(0)">Pledged Tokens ⇅</th>
<th onclick="sortit(1)">Rewards ⇅</th>
<th onclick="sortit(2)">DEX ⇅</th>
<th onclick="sortit(3)">Farm ⇅</th>
<th onclick="sortit(4)">Fees ⇅</th>
</tr>
</thead>
<tbody>
<tr class="" id="" onclick="">
<td>ELITE-WFTM LP</td>
<td>SOLID</td>
<td><a target="_blank" href="https://solidly.exchange">Solidly.Exchange</a></td>
<td><b><a target="_blank" href="https://ftm.guru/YS/1">veNFT Gauge</a></b></td>
<td>0%</td>
</tr>
<tr class="" id="" onclick="">
<td>ELITE-WFTM LP</td>
<td>SOLID+SEX</td>
<td><a target="_blank" href="https://SolidexFinance.com">SolidexFinance.com</a></td>
<td><b><a target="_blank" href="https://ftm.guru/YS/1">Solidex Pool</a></b></td>
<td>0%</td>
</tr>
<tr class="" id="" onclick="">
<td>ELITE-WFTM LP</td>
<td>SOLID+OXD</td>
<td><a target="_blank" href="https://oxdao.fi">OxDAO.fi</a></td>
<td><b><a target="_blank" href="https://ftm.guru/YS/1">0xD Farms</a></b></td>
<td>0%</td>
</tr>
<tr class="" id="" onclick="">
<td>ELITE-WFTM LP</td>
<td>SOLID</td>
<td><a target="_blank" href="https://tarot.to/boost">Tarot.to</a></td>
<td><b><a target="_blank" href="https://ftm.guru/YS/1">BoostMax</a></b></td>
<td>0%</td>
</tr>
<tr class="" id="" onclick="">
<td>ELITE-USDC LP</td>
<td>SOLID</td>
<td><a target="_blank" href="https://solidly.exchange">Solidly.Exchange</a></td>
<td><b><a target="_blank" href="https://ftm.guru/YS/1">veNFT Gauge</a></b></td>
<td>0%</td>
</tr>
<tr class="" id="" onclick="">
<td>ELITE-USDC LP</td>
<td>SOLID+SEX</td>
<td><a target="_blank" href="https://SolidexFinance.com">SolidexFinance.com</a></td>
<td><b><a target="_blank" href="https://ftm.guru/YS/1">Solidex Pool</a></b></td>
<td>0%</td>
</tr>
<tr class="" id="" onclick="">
<td>ELITE-USDC LP</td>
<td>SOLID+OXD</td>
<td><a target="_blank" href="https://oxdao.fi">OxDAO.fi</a></td>
<td><b><a target="_blank" href="https://ftm.guru/YS/1">0xD Farms</a></b></td>
<td>0%</td>
</tr>
<tr class="" id="" onclick="">
<td>ELITE-USDC LP</td>
<td>SOLID</td>
<td><a target="_blank" href="https://tarot.to/boost">Tarot.to</a></td>
<td><b><a target="_blank" href="https://ftm.guru/YS/1">BoostMax</a></b></td>
<td>0%</td>
</tr>
<tr class="" id="" onclick="">
<td>ELITE-BOMB LP</td>
<td>SOLID</td>
<td><a target="_blank" href="https://solidly.exchange">Solidly.Exchange</a></td>
<td><b><a target="_blank" href="https://ftm.guru/YS/1">veNFT Gauge</a></b></td>
<td>0%</td>
</tr>
<tr class="" id="" onclick="">
<td>ELITE-BOMB LP</td>
<td>SOLID+SEX</td>
<td><a target="_blank" href="https://SolidexFinance.com">SolidexFinance.com</a></td>
<td><b><a target="_blank" href="https://ftm.guru/YS/1">Solidex Pool</a></b></td>
<td>0%</td>
</tr>
<tr class="" id="" onclick="">
<td>ELITE-BOMB LP</td>
<td>SOLID+OXD</td>
<td><a target="_blank" href="https://oxdao.fi">OxDAO.fi</a></td>
<td><b><a target="_blank" href="https://ftm.guru/YS/1">0xD Farms</a></b></td>
<td>0%</td>
</tr>
<tr class="" id="" onclick="">
<td>ELITE-WFTM LP</td>
<td>ELITE</td>
<td><a target="_blank" href="https://app.sushi.com/swap?outputCurrency=0xf43cc235e686d7bc513f53fbffb61f760c3a1882">Sushi.com</a></td>
<td><b><a target="_blank" href="https://ftm.guru/YS/1">YieldState</a></b></td>
<td>0%</td>
</tr>
<tr class="" id="" onclick="">
<td>ELITE-WFTM LP</td>
<td>ELITE</td>
<td><a target="_blank" href="https://spookyswap.finance/swap?outputCurrency=0xf43cc235e686d7bc513f53fbffb61f760c3a1882">Spookyswap</a></td>
<td><b><a target="_blank" href="https://ftm.guru/YS/2">YieldState 2</a></b></td>
<td>0%</td>
</tr>
<tr class="" id="" onclick="">
<td>ELITE-WFTM LP</td>
<td>BOOB</td>
<td><a target="_blank" href="https://exchange.nipplelabs.finance/#/add/FTM/0xf43Cc235E686d7BC513F53Fbffb61F760c3a1882">NipdEx</a></td>
<td><b><a target="_blank" href="https://nipplelabs.finance">Nipple Labs</a></b></td>
<td>4%</td>
</tr>
<tr class="" id="" onclick="">
<td>ELITE-WRA LP</td>
<td>WRA</td>
<td><a target="_blank" href="https://wraithswap.finance/add/0xf43Cc235E686d7BC513F53Fbffb61F760c3a1882/FTM">Wraithswap</a></td>
<td><b><a target="_blank" href="https://wraithswap.finance">SyFin's Wraith</a></b></td>
<td>?%</td>
</tr>
<tr class="advert" id="" onclick="">
<td>ELITE</td>
<td>ELITE</td>
<td><a target="_blank" href="https://ftm.guru/xelite">XELITE</a></td>
<td><b><a target="_blank" href="https://ftm.guru/xelite">ftm.guru</a></b></td>
<td>1.337%</td>
</tr>
</tbody>
</table>
</div>
<br>
<br>
<h3 align="center">Supply Distribution</h3>
<div align="center">
<div class="mainpanels4" align="center">
<div class="mainpanel">
<h4>Circulating Supply</h4>
<span id="cs">?</span> ELITE
<br><br>
</div>
<div class="mainpanel">
<h4>Burnt Supply</h4>
<span id="bs">?</span> ELITE
<br><br>
</div>
<div class="mainpanel">
<h4>Staked as XELITE</h4>
<span id="xs">?</span> ELITE
<br><br>
</div>
</div>
</div>
<!--
<div class="mainpanel">
<h4>TVL/MC ratio</h4>
<span id="rtm">?</span> %
<br><br>
</div>
//sushi ftm 0x0652Dec650566439CFFEB4BEb201F062fc13243F
//spooky ftm 0x0652Dec650566439CFFEB4BEb201F062fc13243F
//zoo ftm 0x0652Dec650566439CFFEB4BEb201F062fc13243F
//zoo zoo 0x0652Dec650566439CFFEB4BEb201F062fc13243F
//spirit usdc 0x2221b4ed9d5f2a706f6bf4fcd40ee36da88d2476
//shiba ftm 0x0652Dec650566439CFFEB4BEb201F062fc13243F
//shiba ftm 0x0652Dec650566439CFFEB4BEb201F062fc13243F 3.18
//elk ftm 0xf25417182FbfdEbf1a92142b31A1B32135f1Fd60 3.28
//spooky usdc 0x20DD18EcA4Bd91B4d23534603D836174Fd5123c9 3.25
//nipdex ftm 0x736c1462feEc9D936dF0B99F4BE5eD019118534a 1.03
//cyber ftm 0x2668141243eCbFEb1b7556D5F08c11Bd94d9b6db 0.35
//elk usdc 0xDeC1a7eF080B22fEe247aCD033a8Aca8666bDdcb 0.34
//shiba usdc 0xe2121F534316CD3fc91E70a39AAa25785e1c20C1 0.34
//hyper ftm 0xdc79C700EeDc83bE8d19Ad2d245717c7539DFA1c 0.03
//paint ftm 0xF33c436E3C1f0AD9EcB400aA28183910585eFe21 0.15
//sushi usdc 0x1DFcDdF675038EAd27F1D75B435B5B05BA825E9A 0.035
//--------------------------------------------------------------- +12.00
-->
<br>
<br>
<div align="center" class="advert">
<pre>Get $ELITE Tokens
0xf43Cc235E686d7BC513F53Fbffb61F760c3a1882</pre>
<div id="c2a">
<div class="">
</div>
<div class="c2a" id="a2m">
🦊 Add ELITE to MetaMask
</div>
<div class="c2a" id="ibe" onclick="c1()">
Insta-Buy 15 FTM of ELITE
</div>
<div class="">
</div>
</div>
<br>
<a href="https://ftmscan.com/token/0xf43cc235e686d7bc513f53fbffb61f760c3a1882" target="_blank"><button>ftmScan</button></a>
<a href="https://app.sushi.com/swap?outputCurrency=0xf43cc235e686d7bc513f53fbffb61f760c3a1882" target="_blank"><button>Sushi</button></a>
<a href="https://spookyswap.finance/swap?outputCurrency=0xf43cc235e686d7bc513f53fbffb61f760c3a1882" target="_blank"><button>Spooky</button></a>
<a href="https://swap.spiritswap.finance/#/add/FTM/0xf43cc235e686d7bc513f53fbffb61f760c3a1882" target="_blank"><button>Spirit</button></a>
<a href="https://dex.zoocoin.cash/orders/market?inputCurrency=0xf43Cc235E686d7BC513F53Fbffb61F760c3a1882&outputCurrency=FTM" target="_blank"><button>ZDEX</button></a><br><br>
<a href="https://t.me/Sam4x" target="_blank">To Advertise Here, Contact @Sam4x✈</a>
</div>
<hr><br><br>
<div class="topbar">
<div align="center">
<a href="index.html"><b style="font-size:2em">FTM.guru</b></a><br><br><!--
<a href="farmlands.html">LITE Farmlands👽</a>
<a href="index.html">FTM-Gems</a>
<a href="pair.html">DEX-Explorer</a>
<a href="fantomscan.html">FantomScan</a>
<a href="elite.html">ELITE</a>
<a href="fmc" target="_blank">FantomMarketCap</a>
<a href="yieldstate.html">YieldState</a>
<a href="vfat.tools/fantom/guru">vfat</a>
<a href="airdrop.html">Airdrop-Tool</a>
<a href="apelist.html">Ape-List</a>
<a href="approver.html">Approver</a>
<a href="degam.html">CASINO✨</a>-->
<h3><a href="https://t.me/FTM1337">✈t.me/FTM1337<br>Come, Join us!</a></h3>
<i>Shoutout to vfat.tools, ftmscan & rpc.ftm.tools for their benign Services!</i>