-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathen.html
1357 lines (904 loc) · 59.1 KB
/
en.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>
<!-- Google Tag Manager -->
<script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
})(window,document,'script','dataLayer','GTM-MKG9LSW');
</script>
<!-- End Google Tag Manager -->
<!-- GOOGLE ANALYTICS -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-VQC0CXPM96"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-VQC0CXPM96');
</script>
<!-- SEARCH CONSOLE -->
<meta name="google-site-verification" content="GQcREF8te2oKEUrHhHPaxepgML1WcP72kAJbOH57_AY" />
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>$REAU · Brazil's Deflationary, Secure and Self-Sustaining Crypto</title>
<meta name="description" content="Doge and Royal? Thing of the past. The caramel mutt came to replace them with a smart contract that benefits those with diamond hands. 🖐💎">
<link rel="stylesheet" href="./styles/main.css">
<link rel="stylesheet" href="./styles/default.css">
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
<script src="scripts/side-menu.js" defer></script>
<!-- <script src="scripts/lazy-video.js" defer></script> -->
<script src="scripts/stars.js" defer></script>
<script src="scripts/lazyload.js"></script>
</head>
<body id="top">
<!-- Google Tag Manager (noscript) -->
<noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-MKG9LSW"
height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
<!-- End Google Tag Manager (noscript) -->
<header>
<div class="ctnr">
<div class="logo">
<picture class="business_doggo" loading="lazy" title="Vira-lata Finance REAU">
<source srcset="assets/logo-REAU.webp" type="image/webp">
<source srcset="assets/logo-REAU.png" type="image/png">
<img src="assets/logo-REAU.png" alt="Logo REAU" draggable="false">
</picture>
<!-- REAU -->
<div class="icon bsc" title="Binance Smart Chain"></div>
<div class="icon pancakeswap" title="PancakeSwap"></div>
</div>
<nav>
<!-- <a>Home</a> -->
<div class="bt pre cta comprar_reau">Buy <span><span>$</span>REAU</span></div>
<a class="bt external" href="https://bscscan.com/address/0x4c79b8c9cB0BD62B047880603a9DEcf36dE28344" target="_blank" title="contrato na BSCScan">
<svg id="Camada_1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64.88 87.44"><defs><style>.cls-1{fill:#fff;}</style></defs><path class="cls-1" d="m38.47,0H4.61C2.07,0,0,2.07,0,4.61v78.21c0,2.55,2.07,4.61,4.61,4.61h55.65c2.55,0,4.61-2.07,4.61-4.61V26.41c0-1.22-.49-2.4-1.35-3.26L41.73,1.35c-.87-.87-2.04-1.35-3.26-1.35Z"></path></svg>
Contract
</a>
<!-- <a class="bt" href="#top-hodlers" title="Placar de hodlers Viralata">
<?xml version="1.0" encoding="UTF-8"?><svg id="Camada_1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 533.33 800"><defs><style>.cls-1{fill:#fff;}</style></defs><path class="cls-1" d="m266.67,0C119.39,0,0,119.39,0,266.67s119.39,266.67,266.67,266.67,266.67-119.39,266.67-266.67S413.94,0,266.67,0Z"/><path class="cls-1" d="m66.67,533.36c55.71,41.85,124.96,66.64,200,66.64s144.29-24.8,200-66.64v233.31c0,12.81-7.34,24.49-18.89,30.04-11.55,5.55-25.26,3.99-35.26-4.01l-145.84-92.7-145.84,92.7c-10.01,8-23.71,9.56-35.26,4.01-11.55-5.55-18.89-17.23-18.89-30.04v-233.31Z"/></svg>
Top Hodlers
</a> -->
<a class="bt" href="#raridades" title="NFTs Viralata">
<?xml version="1.0" encoding="UTF-8"?><svg id="Camada_1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 66.66 26.21"><defs><style>.cls-1{fill:#fff;}</style></defs><path class="cls-1" d="m.52,26.21c-.35,0-.52-.19-.52-.56V.56C0,.19.17,0,.52,0h6.72c.29,0,.49.13.6.4l4.8,10.2c.37.75.75,1.54,1.12,2.38.37.84.72,1.67,1.04,2.5s.59,1.57.8,2.24h.12c-.05-.72-.11-1.55-.18-2.48-.07-.93-.12-1.87-.16-2.8s-.06-1.75-.06-2.44V.56c0-.37.17-.56.52-.56h5.12c.35,0,.52.19.52.56v25.09c0,.37-.17.56-.52.56h-6.72c-.27,0-.47-.13-.6-.4l-4.64-9.8c-.35-.72-.7-1.51-1.06-2.38-.36-.87-.7-1.72-1.02-2.56-.32-.84-.61-1.61-.88-2.3h-.12c.05.75.1,1.59.14,2.54.04.95.07,1.89.08,2.82.01.93.02,1.79.02,2.56v8.96c0,.37-.19.56-.56.56H.52Z"/><path class="cls-1" d="m27.29,26.21c-.35,0-.52-.19-.52-.56V.56c0-.37.17-.56.52-.56h16.01c.32,0,.48.19.48.56v4.48c0,.35-.16.52-.48.52h-10.16v5.16h8.68c.35,0,.52.19.52.56v4.36c0,.35-.17.52-.52.52h-8.68v9.48c0,.37-.16.56-.48.56h-5.36Z"/><path class="cls-1" d="m54.02,26.21c-.32,0-.48-.19-.48-.56V5.56h-6.2c-.37,0-.56-.17-.56-.52V.56c0-.37.19-.56.56-.56h18.81c.35,0,.52.19.52.56v4.48c0,.35-.17.52-.52.52h-6.2v20.09c0,.37-.19.56-.56.56h-5.36Z"/></svg>
Collectibles</a>
<a class="bt external" href="buraco-negro/index.html">
<?xml version="1.0" encoding="UTF-8"?><svg id="Camada_1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 504 490.46"><defs><style>.cls-1{fill:#fff;}</style></defs><path class="cls-1" d="m218.85,408.39c43.61,17.54,93.38,20.49,141.57,4.83,109.11-35.45,168.81-152.63,133.36-261.74-1.58-4.86-3.38-9.59-5.27-14.25,19.93,83.04-22.16,168.52-99.37,203.65,30.16-36.06,48.34-82.47,48.34-133.16C437.48,93,344.48,0,229.77,0c-5.11,0-10.16.25-15.19.62,85.13,6.7,153.42,73.15,162.98,157.44-24.97-39.82-63.5-71.46-111.7-87.12C156.75,35.49,39.56,95.19,4.11,204.29c-1.58,4.86-2.91,9.75-4.11,14.63,32.68-78.89,116.98-123.3,200.09-106.35-45.59,11.45-87.59,38.31-117.38,79.31-67.43,92.81-46.85,222.71,45.95,290.14,4.14,3.01,8.37,5.77,12.65,8.43-64.93-55.46-81.12-149.36-39.32-223.17-3.2,46.89,9.37,95.13,39.16,136.14,67.43,92.81,197.33,113.38,290.14,45.95,4.14-3.01,8.07-6.18,11.93-9.43-72.81,44.62-167.11,31-224.39-31.57h.01Zm38.68-200.13c27.16,0,49.18,22.02,49.18,49.18s-22.02,49.18-49.18,49.18-49.18-22.02-49.18-49.18,22.02-49.18,49.18-49.18Z"/></svg>
Black Hole
</a>
<a class="bt external" href="https://app.viralata.finance/pt-br/farm" target="_blank" title="ViralataSwap">
<?xml version="1.0" encoding="UTF-8"?><svg id="Camada_1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 593.14 790.86"><defs><style>.cls-133{fill:none;stroke:#fff;stroke-linecap:round;stroke-linejoin:round;stroke-width:80px;}</style></defs><path class="cls-133" d="m502.53,168.88l-17.34-13.62c-26.13-20.53-58.39-31.69-91.62-31.69h-208.21c-75.07,0-135.93,60.86-135.93,135.93h0c0,75.07,60.86,135.93,135.93,135.93h222.43c75.07,0,135.93,60.86,135.93,135.93h0c0,75.07-60.86,135.93-135.93,135.93h-251.25c-37.1,0-72.85-13.91-100.2-38.97l-6.91-6.34"/><path class="cls-133" d="m296.57,741.43V49.43"/></svg>
Farming
</a>
<div class="bt redes" class="wrapper">
<?xml version="1.0" encoding="UTF-8"?><svg id="_2" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 780.06 800"><defs><style>.cls-1{fill:#fff;}</style></defs><path class="cls-1" d="m310.52,239.18c49.27,18.04,108.43-19.88,132.16-84.7,23.71-64.82,2.99-131.97-46.27-150-49.28-18.02-108.44,19.9-132.16,84.72-23.71,64.82-2.99,131.97,46.28,149.99Z"/><path class="cls-1" d="m123.3,342.56c51.54-4.47,88.56-63.04,82.7-130.86-5.87-67.8-52.41-119.15-103.96-114.7-51.54,4.48-88.55,63.06-82.69,130.87,5.87,67.8,52.41,119.14,103.94,114.69Z"/><path class="cls-1" d="m524.71,340.26c45.24,26.59,110.24-.11,145.2-59.62,34.96-59.54,26.63-129.31-18.62-155.9-45.24-26.56-110.25.15-145.2,59.65-34.96,59.53-26.61,129.3,18.62,155.86Z"/><path class="cls-1" d="m767,410.8c-29.33-42.61-98.55-45.9-154.62-7.33-56.08,38.6-77.75,104.41-48.43,147.03,29.32,42.61,98.55,45.91,154.62,7.32,56.06-38.58,77.75-104.4,48.43-147.02Z"/><path class="cls-1" d="m465.83,418.84c-5.59-38.71-29.32-74.01-67.25-91.91-37.92-17.89-80.26-13.76-113.68,6.51-36.95,22.42-60.58,51.71-92.4,64.52-31.82,12.8-120.94-25.33-176.43,75.43-39.19,71.17-3.21,161.14,70.25,195.8,55.84,26.35,100.04,23.41,132.48,38.71,32.44,15.3,58.27,51.3,114.1,77.64,73.47,34.67,165.78,5.25,195.8-70.25,42.51-106.89-43.59-151.44-53.94-184.14-10.34-32.7-2.75-69.56-8.94-112.32Z"/></svg>
Community
<div class="social">
<a class="telegram" href="https://t.me/viralatafinance" target="_blank" title="Grupo do Telegram"></a>
<a class="instagram" href="https://www.instagram.com/viralatafinance/" target="_blank" title="Instagram $REAU"></a>
<a class="youtube" href="https://www.youtube.com/@reauviralatafinance" target="_blank" title="YouTube Viralata"></a>
<a class="tiktok" href="https://www.tiktok.com/@viralata_finance" target="_blank" title="TikTok ViralataFunks"></a>
</div>
</div>
<!-- <a>Sobre o REAU</a> -->
</nav>
<a id="abrir_reauapp" href="https://pwa.viralata.finance/" class="conectar_wallet">
Open REAUapp
</a>
<!-- <div class="conectar_wallet conectada" role="button">
<div class="icon"></div>
0x4c79b...93dS3
</div> -->
</div>
<a href="index.html" class="lang" title="Switch to portuguese">PT</a>
</header>
<!--
- Qte. de REAUs na carteira
- Qte. de REAUs queimados pela carteira
- Botão redirecionando pro endereço na BSC
- Itens enterrados: row de NFTs associados à carteira
-->
<!-- <div class="wallet_stats">
<div class="flex">
<button class="close" type="button" title="fechar"></button>
<a class="external" href="https://bscscan.com/" target="_blank">BSCScan</a>
</div>
<div class="ctnr">
<div class="row">
<p>💰 Seu saldo</p>
<hr>
<p>934.837.486.342 $REAUs</p>
</div>
<div class="row">
<p>🔥 Queima acumulada</p>
<hr>
<p>9.308.374.863 $REAUs</p>
</div>
<div class="row">
<p>🤑 Auto Staking (30d)</p>
<hr>
<p>+40.336.152 $REAUs</p>
</div>
<hr>
<div class="row">
<p>🧬 XP acumulado</p>
<hr>
<p>233<sup>XP</sup></p>
</div>
<div class="row">
<p>🏆 Posição de Hodler</p>
<hr>
<p>245º de 57.913</p>
</div>
<hr>
<div class="seus_nfts">
<p>🦴 Itens enterrados</p>
<div class="row">
<img src="https://i.seadn.io/gcs/files/a7b41697c0fdddc4a208b8dadfa4c907.png?auto=format&w=1000" alt="">
<img src="https://i.seadn.io/gcs/files/4b9b45c92c733e8c9003e6c3dcbaf0b3.png?auto=format&w=1000" alt="">
<img src="https://i.seadn.io/gcs/files/c62d0d849972fc738e386a983c6d7f41.png?auto=format&w=1000" alt="">
<img src="assets/dogira-bg.webp" alt="">
<img src="assets/bitcao-01.png" alt="">
</div>
</div>
</div>
</div> -->
<div class="menu_bt" role="button">
<div></div>
<div></div>
<div></div>
</div>
<section class="intro_sec">
<div class="ctnr">
<picture class="business_doggo" loading="lazy">
<source srcset="assets/businessdoggo.webp" type="image/webp">
<source srcset="assets/businessdoggo.png" type="image/png">
<img src="assets/businessdoggo.png" width="281" height="325" alt="Business Doggo" draggable="false">
</picture>
<div class="content">
<h1>
<span class="bg">
<span>DOGE & REAL?</span>
<div class="doggo_loco"></div>
<div class="moscas"></div>
</span>
Past stuff.
</h1>
<h2>Now <strong>$REAUUU</strong> has come to replace them, with a <strong>smart contract</strong> that benefits those who have <b>diamond hands</b>. 🖐💎</h2>
<div class="ctas_ctnr">
<div class="pre cta comprar_reau">Buy <span>$</span>REAU</div>
<div class="horscroll">
<a class="vfunk_cta external" target="_blank" href="https://viralatafunk.com">
<div class="icon"></div>
Mint ViralataFunk
</a>
<a href="https://t.me/viralatafinance" target="_blank" class="social external">
<div class="icon"></div>
Telegram
</a>
<a href="https://viralata.com.vc" target="_blank" class="comvc external">
<div class="icon"></div>
Viralata.com.vc
</a>
</div>
</div>
<div class="stats horscroll">
<a class="external" href="buraco-negro/index.html">🔥 $REAUs burning</a>
<span>💎 + than 50k hodlers</span>
<a class="external" href="https://www.certik.com/projects/viralatafinance" target="_blank">✅ Audited by: CertiK</a>
<a class="external" href="https://bscscan.com/token/0x4c79b8c9cB0BD62B047880603a9DEcf36dE28344" target="_blank">⛓️ Renounced contract: 0x4c79b8c9cB0BD62B047880603a9DEcf36dE28344</a>
<span>🚀 Weekly forecast: MOON</span>
</div>
</div>
</div>
</section>
<section class="sobre_sec">
<div class="ctnr">
<div class="content">
<div class="txt">
<p class="heading">Why?</p>
<p>Since our government, despite printing money non-stop, wouldn't let us <strong>put the caramel mutt on the R$200.00 bill</strong>, so we'll do the <b>$REAUUUUU</b> worth (much) more than 1 real.</p>
<p><b>Dogecoin? Never.</b> Dogecoin is worse than real (R$)! Both are, in extremely technical terms, <b>two shitcoins</b>: inflationary, dominated by "whales" and full of insiders.</p>
</div>
<!-- <img class="bottom_doggo" src="assets/dog-dance.gif" alt="doggo dançando" loading="lazy"> -->
<picture loading="lazy" class="bottom_doggo">
<source srcset="assets/nota-200.webp" type="image/webp">
<source srcset="assets/nota-200.jpg" type="image/jpg">
<img src="assets/nota-200.jpg" alt="Nota de dozentos REAUS" draggable="false">
</picture>
</div>
<div class="tokenomics">
<div class="ctnr">
<div class="card supply">
<div class="icon"></div>
<div>
<p><b>Number of tokens:</b> 1 quadrillion</p>
</div>
</div>
<div class="card circulacao">
<div class="icon"></div>
<div>
<p><b>Tokens in circulation</b> progressively decreasing</p>
</div>
</div>
<div class="card queima">
<div class="icon"></div>
<div>
<p><b>Burns:</b> 3% of the value of each transaction is "burned" into the liquidity pool</p>
</div>
</div>
</div>
<div class="doggo"></div>
<div class="ctnr">
<div class="card staking">
<div class="icon"></div>
<div>
<p><b>Staking:</b> 1% distributed to hodlers on each transaction</p>
</div>
</div>
<div class="card liquidez">
<div class="icon"></div>
<div>
<p><b>Liquidity:</b> Half of tokens added to liquidity at launch</p>
</div>
</div>
<div class="card circulacao">
<div class="icon"></div>
<div>
<p><b>Anti-whale mechanism:</b> Maximum buy and sell of 5 trillion $REAUs</p>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="space_sec">
<div class="ctnr">
<h3>
<span class="br">100% <span>B</span><span>R</span><span>A</span><span>Z</span><span>I</span><span>L</span><span>I</span><span>A</span><span>N</span></span>
<span>100% <span>PULGUENT</span></span>
<span>100% <span>BUSINESS</span></span>
<span>REFUSE IMITATIONS</span>
</h3>
</div>
<div class="tokenomics">
<h2>· Tokenomics ·</h2>
<div class="content">
<div class="box">
<p class="heading">🪙 Number of tokens</p>
<p>1 quadrillion</p>
</div>
<div class="box">
<p class="heading">🔄 Circulating Tokens</p>
<p>454 trillion</p>
</div>
<div class="box">
<p class="heading">🔥 Queima</p>
<p>3% of the value of each transaction is "burned" into the liquidity pool</p>
</div>
<div class="box">
<p class="heading">💸 Staking</p>
<p>1% distributed to hodlers with each transaction</p>
</div>
<div class="box">
<p class="heading">💧 Liquidez</p>
<p>Half of tokens added to liquidity</p>
</div>
<p>$REAU is a waived contract and its characteristics on the blockchain are <u>immutable</u>.</p>
</div>
</div>
<picture class="rocket_doggo" loading="lazy">
<source srcset="assets/rocket_doggo.webp" type="image/webp">
<source srcset="assets/rocket_doggo.png" type="image/png">
<img src="assets/rocket_doggo.png" alt="Rocket Doggo" draggable="false">
</picture>
<canvas id="stars"></canvas>
</section>
<!-- <section class="placar_sec" id="top-hodlers">
<div class="ctnr">
<h2>
<span>· Placar ·</span>
Top Hodlers
</h2>
<div class="flex">
<div class="placar geral">
<div class="colocado dead">
<div class="img_perfil"></div>
<div class="flex">
<div class="row">
<p class="nome">Buraco negro</p>
<a href="https://bscscan.com/token/0x4c79b8c9cB0BD62B047880603a9DEcf36dE28344?a=0x000000000000000000000000000000000000dead" class="address">0x000000000000000000000000000000000000dead</a>
</div>
<div class="status">
<div class="flex queima">
<div class="icon" title="Quantidade de $REAUs queimados"></div>
<span>545,596,495,199,331 $REAUs</span>
</div>
</div>
</div>
</div>
<div class="divider"></div>
<span class="title">Geral</span>
<div class="flex">
<div class="colocado anonimo">
<div class="img_perfil"></div>
<div class="flex">
<div class="row">
<p class="nome">Caramelito</p>
<a class="address">0x98b12d686e76ee7e032e86eddcf3a5ec3da5551c</a>
</div>
<div class="status">
<div class="flex queima">
<div class="icon" title="Quantidade de $REAUs queimados"></div>
<span>114.459.385.402 $REAUs</span>
</div>
<div class="flex tempo">
<div class="icon" title="Hodler desde..."></div>
<span>21/03/2021</span>
</div>
</div>
</div>
<span class="xp">32560<sup>XP</sup></span>
</div>
<div class="colocado anonimo">
<div class="img_perfil"></div>
<div class="flex">
<div class="row">
<p class="nome">Vira-lata foragido</p>
<a class="address">0x98b12d686e76ee7e032e86eddcf3a5ec3da5551c</a>
</div>
<div class="status">
<div class="flex queima">
<div class="icon" title="Quantidade de $REAUs queimados"></div>
<span>86.445.724.456 $REAUs</span>
</div>
<div class="flex tempo">
<div class="icon" title="Hodler desde..."></div>
<span>21/03/2021</span>
</div>
</div>
</div>
<span class="xp">21610<sup>XP</sup></span>
</div>
<div class="colocado anonimo">
<div class="img_perfil"></div>
<div class="flex">
<div class="row">
<p class="nome">Sadog Nakamoto</p>
<a class="address">0x98b12d686e76ee7e032e86eddcf3a5ec3da5551c</a>
</div>
<div class="status">
<div class="flex queima">
<div class="icon" title="Quantidade de $REAUs queimados"></div>
<span>45.543.274.457 $REAUs</span>
</div>
<div class="flex tempo">
<div class="icon" title="Hodler desde..."></div>
<span>21/03/2021</span>
</div>
</div>
<span class="xp">15230<sup>XP</sup></span>
</div>
</div>
<div class="colocado anonimo">
<div class="img_perfil"></div>
<div class="flex">
<div class="row">
<p class="nome">Wojak feliz</p>
<a class="address">0x98b12d686e76ee7e032e86eddcf3a5ec3da5551c</a>
</div>
<div class="status">
<div class="flex queima">
<div class="icon" title="Quantidade de $REAUs queimados"></div>
<span>15.543.274.457 $REAUs</span>
</div>
<div class="flex tempo">
<div class="icon" title="Hodler desde..."></div>
<span>21/03/2021</span>
</div>
</div>
<span class="xp">4990<sup>XP</sup></span>
</div>
</div>
<div class="colocado verificado">
<div class="img_perfil"></div>
<div class="flex">
<div class="row">
<p class="nome">ET Bilu</p>
<a class="address">0x98b12d686e76ee7e032e86eddcf3a5ec3da5551c</a>
</div>
<div class="status">
<div class="flex queima">
<div class="icon"></div>
<span>843.274.457 $REAUs</span>
</div>
<div class="flex tempo">
<div class="icon" title="Hodler desde..."></div>
<span>21/03/2021</span>
</div>
</div>
</div>
<span class="xp">3860<sup>XP</sup></span>
</div>
</div>
</div>
<div class="wrapper">
<div class="info">
<video src="assets/dog-moon.mp4" autoplay muted loop loading="lazy"></video>
<p>O Ranking Viralata leva em conta fatores como engajamento nas redes, tempo de HODL, queima/acúmulo de $REAU e mais!</p>
</div>
<div class="placar semanal">
<div class="divider"></div>
<span class="title">Mensal</span>
<div class="flex">
<div class="colocado anonimo">
<div class="img_perfil"></div>
<div class="flex">
<div class="row">
<p class="nome">Tinhoso</p>
<a class="address">0x98b12d686e76ee7e032e86eddcf3a5ec3da5551c</a>
</div>
<div class="status">
<div class="flex queima">
<div class="icon"></div>
<span>843.274.457 $REAUs</span>
</div>
<div class="flex tempo">
<div class="icon" title="Hodler desde..."></div>
<span>21/03/2021</span>
</div>
</div>
</div>
<span class="xp">
+280<sup>XP</sup>
<span class="soma" title="XP Total">
1680<sup>XP</sup>
</span>
</span>
</div>
<div class="colocado anonimo">
<div class="img_perfil"></div>
<div class="flex">
<div class="row">
<p class="nome">Sarnento</p>
<a class="address">0x98b12d686e76ee7e032e86eddcf3a5ec3da5551c</a>
</div>
<div class="status">
<div class="flex queima">
<div class="icon"></div>
<span>1.843.274.457 $REAUs</span>
</div>
<div class="flex tempo">
<div class="icon" title="Hodler desde..."></div>
<span>02/05/2022</span>
</div>
</div>
</div>
<span class="xp">
+200<sup>XP</sup>
<span class="soma" title="XP Total">
740<sup>XP</sup>
</span>
</span>
</div>
<div class="colocado verificado">
<div class="img_perfil"></div>
<div class="flex">
<div class="row">
<p class="nome">Cãocursado</p>
<a class="address">0x98b12d686e76ee7e032e86eddcf3a5ec3da5551c</a>
</div>
<div class="status">
<div class="flex queima">
<div class="icon"></div>
<span>843.274.457 $REAUs</span>
</div>
<div class="flex tempo">
<div class="icon" title="Hodler desde..."></div>
<span>21/03/2021</span>
</div>
</div>
</div>
<span class="xp">
+140<sup>XP</sup>
<span class="soma" title="XP Total">
1140<sup>XP</sup>
</span>
</span>
</div>
<div class="colocado anonimo">
<div class="img_perfil"></div>
<div class="flex">
<div class="row">
<p class="nome">Pepe</p>
<a class="address">0x98b12d686e76ee7e032e86eddcf3a5ec3da5551c</a>
</div>
<div class="status">
<div class="flex queima">
<div class="icon"></div>
<span>43.274.457 $REAUs</span>
</div>
<div class="flex tempo">
<div class="icon" title="Hodler desde..."></div>
<span>21/03/2021</span>
</div>
</div>
</div>
<span class="xp">
+130<sup>XP</sup>
<span class="soma" title="XP Total">
1340<sup>XP</sup>
</span>
</span>
</div>
<div class="colocado anonimo">
<div class="img_perfil"></div>
<div class="flex">
<div class="row">
<p class="nome">Terror dos motoca</p>
<a class="address">0x98b12d686e76ee7e032e86eddcf3a5ec3da5551c</a>
</div>
<div class="status">
<div class="flex queima">
<div class="icon"></div>
<span>577.274.457 $REAUs</span>
</div>
<div class="flex tempo">
<div class="icon" title="Hodler desde..."></div>
<span>25/09/2021</span>
</div>
</div>
</div>
<span class="xp">
+160<sup>XP</sup>
<span class="soma" title="XP Total">
220<sup>XP</sup>
</span>
</span>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="expandir" role="button">
<span>Expandir</span>
</div>
</section> -->
<section class="nfts_sec" id="raridades">
<div class="ctnr">
<h2>
<span>· Viralata NFTs ·</span>
Digital Collectibles
</h2>
<div class="content">
<article>
<img class="cover" src="assets/vfunks.gif" alt="ViralataFunks preview" loading="lazy">
<div class="txt">
<h3>ViralataFunks</h3>
<div class="wrapper">
<p><b>FROM STREETS TO BLOCKCHAIN.</b></p>
<p>It's no use being an obedient Yorkshire or a tagged Shiba Inu: <b>mutts really like a designer flea.</b></p>
<p>There is no escape. You need to show off, have a rare shape, an exclusive suit and a gourmet snack.</p>
<p>You know what, but I think it's hard to talk... Can I talk?</p>
<p><b>I have a ViralataFunk with the shape of nudes.</b></p>
<p>Peladão really, with a caressing Argentine paw, agroboy suit and <b>ET Bilu</b> face 😏</p>
<p><b>Where? On the blockchain itself.</b></p>
</div>
</div>
<a class="external" href="https://viralatafunk.com/" target="_blank">Join the box</a>
<a class="external" href="https://opensea.io/collection/viralatafunkcamarotebonde" target="_blank">OpenSea Marketplace</a>
</article>
<article>
<picture class="cover" loading="lazy">
<source srcset="assets/bitcao.webp" type="image/webp">
<source srcset="assets/bitcao.png" type="image/png">
<img src="assets/bitcao.png" alt="Bitcao" draggable="false">
</picture>
<div class="txt">
<h3>Bitcão</h3>
<div class="wrapper">
<p><strong>Bitcão is the non-fungible token</strong> that rewards investors for having contributed to Viralata Finance's social actions in the special moment known as <b>Hora da Ração</b>.</p>
<p>Charity tokens are a way to engage and reward investors who have made <b>donations to Hora da Ração shelters and NGOs</b>, in accordance with the rules for obtaining the collectible.</p>
</div>
</div>
</article>
<article>
<video class="cover" src="assets/I-Voted.mp4" muted autoplay loop loading="lazy"></video>
<div class="txt">
<h3>Community Rewards</h3>
<div class="wrapper">
<p>Collection intended as a gift to investors who participated in <b>historic moments for our mongrel.</b> In general, they are <b>NFTs</b> that serve as a reward or incentive to participate in activities of engagement.</p>
<p><b>1# Dog on the Moon</b> - After winning a fiercely contested popular vote on CryptoMoonWatch, all those who voted and registered their e-mail on the Viralata hotsite for this campaign received this souvenir for free . More than 3,000 NFTs were distributed, possibly being the largest distribution of NFTs in Brazil.</p>
<p><b>I Voted!</b> - Collection prepared especially for those who registered their vote at the moment they decided on the Golden Path: Viralata's first DAO (Decentralized Autonomous Organization) vote.</p>
</div>
</div>
</article>
<article>
<picture class="cover" loading="lazy">
<source srcset="assets/dogira-bg.webp" type="image/webp">
<source srcset="assets/dogira-bg.png" type="image/png">
<img src="assets/dogira-bg.png" alt="Bitcao" draggable="false">
</picture>
<div class="txt">
<h3>Viralata x Dogira</h3>
<div class="wrapper">
<p>In partnership with the <strong>Dogira</strong> token of the Ethereum network, REAU raised more than 150 thousand reais for the Charity Fund with the sale of these NFTs on. Two collections were made, one for each network.</p>
<p>Launched on the BSC network with art signed by the artist <b>@mabiruna</b>, the NFTs were sold through the Viralata hotsite. <b>The unsold NFTs were not issued, so there was no "excess stock".</b></p>
</div>
</div>
<a class="external" href="https://dogira.viralata.finance/" target="_blank">Know more</a>
</article>
<article>
<video class="cover" src="assets/dogira-reau.webm" muted autoplay loop loading="lazy"></video>
<div class="txt">
<h3>Dogira x REAU</h3>
<div class="wrapper">
<p>The <b>DOGIRA x REAU</b> NFT collection on the Ethereum network contains a selection of NFTs that offer an investment and charitable incentive to all holders; with a guaranteed airdrop of 3,000 Dogira, along with 84% of all proceeds going directly to selected animal charities across Brazil, vetted and approved by <strong>Vira-Lata Finance ($REAU)</strong>. </p>
</div>
</div>
<a class="external" href="https://rarible.com/dogirareau/items" target="_blank">Rarible Marketplace</a>
<a class="external" href="https://opensea.io/collection/dogira-x-reau-charity-campaign" target="_blank">OpenSea Marketplace</a>
</article>
</div>
</div>
</section>
<section class="doacoes_sec">
<div class="ctnr">
<video class="lazy" playsinline controls poster="assets/sos_bichos_poster.jpg">
<source data-src="assets/sos_bichos.mp4" type="video/mp4">
</video>
<div class="content">
<h3>Social actions of the Viralata community</h3>
<p><strong>At the moment, the articulation of donations is carried out almost exclusively by the power of our community.</strong></p>
<p>It is Viralata Finance's goal, however, to integrate this aspect into our future plans – <b>allocating portions of transactions carried out in a decentralized marketplace</b>, for example, to a “social fund”, such as the portfolio from Viralata, which today accumulates more than 16 ETH (<a href="https://etherscan.io/address/0x9220557A6dDa69a1837c1B88359D55Aa6bE9A77e" target="_blank">see EtherScan</a>).</p>
<p>The allocation of these funds will be voted on by the community through a <strong>DAO (Autonomous Decentralized Organization)</strong> and directed to different causes – which may or may not extend beyond animal causes, depending on the will of the community .</p>
<p>For more information, <a href="https://www.viralatometro.com/#/fundo-caridade" target="_blank">access the Viralatômetro</a>.</p>
</div>
</div>
</section>
<!-- <section id="PDG" class="pdg_sec">
<div class="ctnr">
<h2>
<span>· PDG ·</span>
Plano de Dominância dos Guapecas
</h2>
</div>
<div class="roadmap_ctnr">
<picture class="journey_path" loading="lazy" alt="Plano de Dominância dos Guapecas">
<source srcset="assets/PDG.webp" type="image/webp">
<source srcset="assets/PDG.png" type="image/png">
<img src="assets/PDG.png" alt="Rocket Doggo" draggable="false">
</picture>
</div>
</section> -->
<div class="outdoor">
<picture loading="lazy">
<source srcset="assets/outdoor.webp" type="image/webp">
<source srcset="assets/outdoor.png" type="image/png">
<img src="assets/outdoor.png" alt="Business Doggo" draggable="false">
</picture>
</div>
<section class="meme_sec">
<video class="lazy" data-src="assets/memes/ronaldinho-dia-da-mentira.mp4" autoplay muted controls playsinline></video>
<video class="lazy" data-src="assets/memes/dadinho.mp4" autoplay muted controls playsinline></video>
<video class="lazy" data-src="assets/memes/brasil-bitcoin.mp4" autoplay muted controls playsinline></video>
<img class="lazy" data-src="assets/memes/coca.jpg" alt="meme $REAU">
<video class="lazy" data-src="assets/memes/flow.mp4" autoplay muted controls playsinline></video>
<img class="lazy" data-src="assets/memes/cz-leao.jpg" alt="meme $REAU">
<video class="lazy" data-src="assets/memes/Viralata_Carlos Villagran Kiko.mp4" autoplay muted controls playsinline></video>
<video class="lazy" data-src="assets/memes/compre-reau-carro.mp4" autoplay muted controls playsinline></video>
<img class="lazy" data-src="assets/memes/buy.jpg" alt="meme $REAU">