-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathindex.php
814 lines (736 loc) · 31.6 KB
/
index.php
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
<?php
include 'conectarbanco.php';
$conn = new mysqli('localhost', $config['db_user'], $config['db_pass'], $config['db_name']);
if ($conn->connect_error) {
die("Conexão falhou: " . $conn->connect_error);
}
$sql = "SELECT nome_unico, nome_um, nome_dois FROM app";
$result = $conn->query($sql);
if ($result->num_rows > 0) {
$row = $result->fetch_assoc();
$nomeUnico = $row['nome_unico'];
$nomeUm = $row['nome_um'];
$nomeDois = $row['nome_dois'];
} else {
return false;
}
$conn->close();
?>
<!DOCTYPE html>
<html lang="pt-br" class="w-mod-js wf-spacemono-n4-active wf-spacemono-n7-active wf-active w-mod-ix">
<script src="https://code.jquery.com/jquery-3.7.1.min.js" integrity="sha256-/JqT3SQfawRcv/BIHPThkBvs0OEvtFFmqPF/lYI/Cxo=" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/toastr.js/latest/toastr.min.js"></script>
<link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/toastr.js/latest/toastr.min.css">
<link href="./files/page.css" rel="stylesheet" type="text/css">
<head>
<script>
localStorage.setItem('realBetPage', 'false');
window.addEventListener('pageshow', function (event) {
// Verificar o localStorage quando a página for exibida ou recarregada
localStorage.setItem("realBetPage", 'false');
});
</script>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<style>
.wf-force-outline-none[tabindex="-1"]:focus {
outline: none;
}
</style>
<meta charset="pt-br">
<title> <?= $nomeUnico ?> 🌊 </title>
<meta content="Já imaginou ganhar R$1.000 com apenas R$1 único real? O jogo do surfista vai fazer você faturar muito." name="description">
<meta property="og:image" content="img/logo.png">
<meta content="
<?= $nomeUnico ?> 🌊" property="og:title">
<meta content="width=device-width, initial-scale=1" name="viewport">
<link href="arquivos/page.css" rel="stylesheet" type="text/css">
<script src="arquivos/webfont.js" type="text/javascript"></script>
<script type="text/javascript">
WebFont.load({
google: {
families: ["Space Mono:regular,700"]
}
});
</script>
<script type="text/javascript">
! function(o, c) {
var n = c.documentElement,
t = " w-mod-";
n.className += t + "js", ("ontouchstart" in o || o.DocumentTouch && c instanceof DocumentTouch) && (n.className += t + "touch")
}(window, document);
</script>
<link rel="apple-touch-icon" sizes="180x180" href="img/logo.png">
<link rel="icon" type="image/png" sizes="32x32" href="img/logo.png">
<link rel="icon" type="image/png" sizes="16x16" href="img/logo.png">
<link rel="icon" type="image/x-icon" href="img/logo.png">
<link rel="stylesheet" href="arquivos/css" media="all">
</head>
<body>
<!-- Meta Pixel Code -->
<script>
!function(f,b,e,v,n,t,s)
{if(f.fbq)return;n=f.fbq=function(){n.callMethod?
n.callMethod.apply(n,arguments):n.queue.push(arguments)};
if(!f._fbq)f._fbq=n;n.push=n;n.loaded=!0;n.version='2.0';
n.queue=[];t=b.createElement(e);t.async=!0;
t.src=v;s=b.getElementsByTagName(e)[0];
s.parentNode.insertBefore(t,s)}(window, document,'script',
'https://connect.facebook.net/en_US/fbevents.js');
fbq('init', '1448254109452932');
fbq('track', 'PageView');
fbq('track', 'ViewContent');
</script>
<noscript><img height="1" width="1" style="display:none"
src="https://www.facebook.com/tr?id=1448254109452932&ev=PageView&noscript=1"
/></noscript>
<!-- End Meta Pixel Code -->
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-BCWD1PDH15"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-BCWD1PDH15');
</script>
<div>
<div data-collapse="small" data-animation="default" data-duration="400" role="banner" class="navbar w-nav" style='z-index: 9999'>
<div class="container w-container">
<a href="" aria-current="page" class="brand w-nav-brand w--current" aria-label="home">
<img src="arquivos/l2.png" loading="lazy" height="28" alt="" class="image-6">
<div class="nav-link logo"> <?= $nomeUnico ?> </div>
</a>
<nav role="navigation" class="nav-menu w-nav-menu">
<a href="cadastrar/" class="nav-link w-nav-link" style="max-width: 940px;">Jogar</a>
<a href="login/" class="nav-link w-nav-link" style="max-width: 940px;">Login</a>
<a href="cadastrar/" class="button nav w-button">Cadastrar</a>
</nav>
<style>
.nav-bar {
display: none;
background-color: #333;
/* Cor de fundo do menu */
padding: 20px;
/* Espaçamento interno do menu */
width: 90%;
/* Largura total do menu */
position: fixed;
/* Fixa o menu na parte superior */
top: 0;
left: 0;
z-index: 1000;
/* Garante que o menu está acima de outros elementos */
}
.nav-bar a {
color: white;
/* Cor dos links no menu */
text-decoration: none;
padding: 10px;
/* Espaçamento interno dos itens do menu */
display: block;
margin-bottom: 10px;
/* Espaçamento entre os itens do menu */
}
.nav-bar a.login {
color: white;
/* Cor do texto para o botão Login */
}
.button.w-button {
text-align: center;
}
</style>
<script>
document.addEventListener('DOMContentLoaded', function() {
var menuButton = document.querySelector('.menu-button');
var navBar = document.querySelector('.nav-bar');
menuButton.addEventListener('click', function() {
// Toggle the visibility of the navigation bar
if (navBar.style.display === 'block') {
navBar.style.display = 'none';
} else {
navBar.style.display = 'block';
}
});
});
</script>
<div class="menu-button w-nav-button" style="-webkit-user-select: text;" aria-label="menu" role="button" tabindex="0" aria-controls="w-nav-overlay-0" aria-haspopup="menu" aria-expanded="false">
<div class="icon w-icon-nav-menu"></div>
</div>
</div>
<div class="w-nav-overlay" data-wf-ignore="" id="w-nav-overlay-0"></div>
</div>
<section id="hero" class="hero-section wf-section">
<div class="hero-container">
<div class="hero-letters">
<h1 data-w-id="00c96275-55a4-2839-457b-174c20d342ba" class="hero-heading"> <?= $nomeUm ?> <br> <?= $nomeDois ?> </h1>
</div>
<img src="arquivos/1.png" loading="lazy" width="132" alt="" class="image cr1">
<img src="arquivos/2.png" loading="lazy" width="132" alt="" class="image cl1">
<img src="arquivos/3.png" loading="eager" width="132" alt="" class="image tr">
<img src="arquivos/4.png" loading="eager" width="132" alt="" class="image tl">
<img src="arquivos/5.png" loading="lazy" width="132" alt="" class="image cr2">
<img src="arquivos/6.png" loading="lazy" width="132" alt="" class="image cl2">
<img src="arquivos/7.png" loading="lazy" width="132" alt="" class="image bl1">
<img src="arquivos/1.png" loading="lazy" width="132" alt="" class="image br1">
<img src="arquivos/2.png" loading="lazy" width="132" alt="" class="image br">
<img src="arquivos/3.png" loading="lazy" width="132" alt="" class="image bc">
<img src="arquivos/4.png" loading="eager" width="132" alt="" class="image">
<a href="presell/" class="primary-button hero w-button">JOGAR AGORA</a>
<div class="hero-price">
<strong style="color:#2b2b2b">Rodadas de boas vindas disponível <br>Cadastre-se agora
</strong>
</div>
</div>
</section>
<section id="mint" class="mint-section wf-section">
<div class="minting-container w-container">
<img src="arquivos/money.png" loading="lazy" width="240" alt="" class="mint-card-image">
<h2> <?= $nomeUnico ?> </h2>
<p class="paragraph">Bem-vindo ao mundo emocionante de <?= $nomeUnico ?>! Prepare-se para uma aventura eletrizante nos trilhos, onde cada curva guarda a promessa de fortuna. Desvie dos obstáculos, colete moedas reluzentes e desbloqueie novos percursos enquanto corre em busca da riqueza. Sua jornada pela cidade começa agora – acelere, desfrute e acumule sua fortuna nos trilhos de <?= $nomeUnico ?>!. </p>
<a href="presell/" class="primary-button w-button">JOGAR AGORA</a>
<div class="price">
<strong>Rodadas de boas vindas disponível</strong>
</div>
</div>
</section>
<div class="intermission wf-section">
<div data-w-id="aa174648-9ada-54b0-13ed-6d6e7fd17602" class="center-image-block">
<img src="arquivos/60f8c4536d62687b8a9cee75_row 01.svg" loading="eager" alt="">
</div>
<div data-w-id="6d7abe68-30ca-d561-87e1-a0ecfd613036" class="center-image-block _2">
<img src="arquivos/60f8c453ca9716f569e837ee_row 02.svg" loading="eager" alt="">
</div>
<div data-w-id="e04b4de1-df2a-410e-ce98-53cd027861f6" class="center-image-block _2">
<img src="arquivos/60f8c453bf76d73ecbc14a1d_row 03.svg" loading="eager" alt="" class="image-3">
</div>
</div>
<div id="faq" class="faq-section">
<div class="faq-container w-container">
<h2>faq</h2>
<div class="question first">
<img src="arquivos/60f8d0c642c4405fe15e5ee0_80s Pop.svg" loading="lazy" width="110" alt="">
<h3>Como funciona?</h3>
<div> <?= $nomeUnico ?> é o mais novo jogo divertido e lucrativo da galera! Lembra daquele joguinho de surfar por cima dos trens que todo mundo era viciado? Ele voltou e agora dá para ganhar dinheiro de verdade, mas cuidado com os obstáculos para você garantir o seu prêmio. É super simples, surf, desvie dos obstáculos e colete seus prêmios. </div>
</div>
<div class="question">
<img src="arquivos/60fa0061a0450e3b6f52e12f_Body.svg" loading="lazy" width="90" alt="">
<h3>Como posso jogar?</h3>
<div class="w-richtext">
<p>Você precisa fazer um depósito inicial na plataforma para começar a jogar e faturar. Lembrando que você indicando amigos, você ganhará dinheiro de verdade na sua conta bancária.</p>
</div>
</div>
<div class="question">
<img src="arquivos/61070a430f976c13396eee00_Gradient Shades.svg" loading="lazy" width="120" alt="">
<h3>Como posso sacar? <br>
</h3>
<p>O saque é instantâneo. Utilizamos a sua chave PIX como CPF para enviar o pagamento, é na hora e no PIX. 7 dias por semana e 24 horas por dia. <br>
</p>
</div>
<div class="question">
<img src="arquivos/60fa004b7690e70dded91f9a_light.svg" loading="lazy" width="80" alt="">
<h3>É tipo foguetinho?</h3>
<div>
<b>Não</b>! <?= $nomeUnico ?> é totalmente diferente, basta apenas estar atento para desviar dos obstáculos na hora certa. Não existe sua sorte em jogo, basta ter foco e completar o percurso até resgatar o máximo de moedas que conseguir.
</div>
</div>
<div class="question">
<img src="arquivos/60f8d0c69b41fe00d53e8807_Helmet.svg" loading="lazy" width="90" alt="">
<h3>Existem eventos?</h3>
<div class="w-richtext">
<ul role="list">
<li>
<strong>Jogatina</strong>. Quanto mais você correr, mais moedas você coleta e mais dinheiro você ganha. Mas cuidado! Há trens escondidas entre as ruas.
</li>
<li>
<strong>Torneios</strong>. Além disso, você pode competir com outros jogadores em torneios e desafios diários para ver quem consegue a maior pontuação e fatura mais dinheiro. A emoção da competição e a chance de ganhar grandes prêmios adicionam uma camada extra de adrenalina ao jogo.
</li>
</ul>
<p>Clique <a href="https://t.me/">aqui</a> e acesse nosso grupo no Telegram para participar de eventos exclusivos. </p>
</div>
</div>
<div class="question last">
<img src="arquivos/60f8d0c657c9a88fe4b40335_Exploded Head.svg" loading="lazy" width="72" alt="">
<h3>Dá para ganhar mais?</h3>
<div class="w-richtext">
<p>Chame um amigo para jogar e após o depósito e a primeira partida será creditado em sua conta R$5 para sacar a qualquer momento. </p>
<ol role="list">
<li>O saldo é adicionado diretamente ao seu saldo em dinheiro, com o qual você pode jogar ou sacar. </li>
<li>Seu amigo deve se inscrever através do seu link de convite pessoal. </li>
<li>Seu amigo deve ter depositado pelo menos R$25.00 BRL para receber o prêmio do convite. </li>
<li>Você não pode criar novas contas na <?= $nomeUnico ?> e se inscrever através do seu próprio link para receber a recompensa. O programa Indique um Amigo é feito para nossos jogadores convidarem amigos para a plataforma <?= $nomeUnico ?>. Qualquer outro uso deste programa é estritamente proibido. </li>
</ol>
<p></p>
</div>
</div>
</div>
<div class="faq-left">
<img src="arquivos/60f988c7c856f076b39f8fa4_head 04.svg" loading="eager" width="238.5" alt="" class="faq-img" style="opacity: 0;">
<img src="arquivos/60f988c9402afc1dd3f629fe_head 26.svg" loading="eager" width="234" alt="" class="faq-img _1" style="opacity: 0;">
<img src="arquivos/60f988c9bc584ead82ad8416_head 29.svg" loading="lazy" width="234" alt="" class="faq-img _2" style="opacity: 0;">
<img src="arquivos/60f988c913f0ba744c9aa13e_head 27.svg" loading="lazy" width="234" alt="" class="faq-img _3" style="opacity: 0;">
<img src="arquivos/60f988c9d3d37e14794eca22_head 25.svg" loading="lazy" width="234" alt="" class="faq-img _1" style="opacity: 0;">
<img src="arquivos/60f988c98b7854f0327f5394_head 24.svg" loading="lazy" width="234" alt="" class="faq-img _2" style="opacity: 0;">
<img src="arquivos/60f988c82f5c199c4d2f6b9f_head 05.svg" loading="lazy" width="234" alt="" class="faq-img _3" style="opacity: 0;">
</div>
<div class="faq-right">
<img src="arquivos/60f988c88b7854b5127f5393_head 23.svg" loading="eager" width="238.5" alt="" class="faq-img" style="opacity: 0;">
<img src="arquivos/60f988c8bf76d754b9c48573_head 12.svg" loading="eager" width="234" alt="" class="faq-img _1" style="opacity: 0;">
<img src="arquivos/60f988c8f2b58f55b60d858f_head 21.svg" loading="lazy" width="234" alt="" class="faq-img _2" style="opacity: 0;">
<img src="arquivos/60f988c8e83a994a38909bc4_head 22.svg" loading="lazy" width="234" alt="" class="faq-img _3" style="opacity: 0;">
<img src="arquivos/60f988c8a97a7c125d72046d_head 20.svg" loading="lazy" width="234" alt="" class="faq-img _1" style="opacity: 0;">
<img src="arquivos/60f988c8fbbbfe5fc68169e0_head 14.svg" loading="lazy" width="234" alt="" class="faq-img _2" style="opacity: 0;">
<img src="arquivos/60f988c88b7854b35e7f5390_head 18.svg" loading="lazy" width="234" alt="" class="faq-img _3" style="opacity: 0;">
</div>
<div class="faq-bottom">
<img src="arquivos/60f988c8ba5339712b3317c0_head 16.svg" loading="lazy" width="234" alt="" class="faq-img _3" style="opacity: 0;">
<img src="arquivos/60f988c86e8603bce1c16a98_head 17.svg" loading="lazy" width="234" alt="" class="faq-img" style="opacity: 0;">
<img src="arquivos/60f988c889b7b12755035f2f_head 19.svg" loading="lazy" width="234" alt="" class="faq-img _1" style="opacity: 0;">
</div>
<div class="faq-top">
<img src="arquivos/60f988c8a97a7ccf6f72046a_head 11.svg" loading="eager" width="234" alt="" class="faq-img _3" style="opacity: 0;">
<img src="arquivos/60f988c7fbbbfed6f88169df_head 02.svg" loading="eager" width="234" alt="" class="faq-img" style="opacity: 0;">
<img src="arquivos/60f8dbc385822360571c62e0_icon-256w.png" loading="eager" width="234" alt="" class="faq-img _1" style="opacity: 0;">
</div>
</div>
<div class="footer-section wf-section">
<div class="domo-text"> <?= $nomeUm ?> <br>
</div>
<div class="domo-text purple"> <?= $nomeDois ?> <br>
</div>
<div class="follow-test">© Copyright xlk Limited, with registered offices at Dr. M.L. King Boulevard 117, accredited by license GLH-16289876512. </div>
<div class="follow-test">
<a href="/legal">
<strong class="bold-white-link">Termos de uso</strong>
</a>
</br></br>
<a href="https://t.me/ROX_BR" target='_blank'>
<strong class="bold-white-link">Telegram</strong> <img src='https://upload.wikimedia.org/wikipedia/commons/thumb/8/82/Telegram_logo.svg/512px-Telegram_logo.svg.png' style='width: 20px'/>
</a>
</div>
<div class="follow-test">contato@<?php
$nomeUnico = strtolower(str_replace(' ', '', $nomeUnico));
echo $nomeUnico;
?>.com</div>
</div>
</div>
<div id="imageDownloaderSidebarContainer">
<div class="image-downloader-ext-container">
<div tabindex="-1" class="b-sidebar-outer">
<!---->
<div id="image-downloader-sidebar" tabindex="-1" role="dialog" aria-modal="false" aria-hidden="true" class="b-sidebar shadow b-sidebar-right bg-light text-dark" style="width: 500px; display: none;">
<!---->
<div class="b-sidebar-body">
<div></div>
</div>
<!---->
</div>
<!---->
<!---->
</div>
</div>
</div>
<div style="visibility: visible;">
<div></div>
<div>
<div style="display: flex; flex-direction: column; z-index: 999999; bottom: 88px; position: fixed; right: 16px; direction: ltr; align-items: end; gap: 8px;">
<style>
@-webkit-keyframes ww-abb68936-6b37-448e-a699-2cb58ad2262d-launcherOnOpen {
0% {
-webkit-transform: translateY(0px) rotate(0deg);
transform: translateY(0px) rotate(0deg);
}
30% {
-webkit-transform: translateY(-5px) rotate(2deg);
transform: translateY(-5px) rotate(2deg);
}
60% {
-webkit-transform: translateY(0px) rotate(0deg);
transform: translateY(0px) rotate(0deg);
}
90% {
-webkit-transform: translateY(-1px) rotate(0deg);
transform: translateY(-1px) rotate(0deg);
}
100% {
-webkit-transform: translateY(-0px) rotate(0deg);
transform: translateY(-0px) rotate(0deg);
}
}
@keyframes ww-abb68936-6b37-448e-a699-2cb58ad2262d-launcherOnOpen {
0% {
-webkit-transform: translateY(0px) rotate(0deg);
transform: translateY(0px) rotate(0deg);
}
30% {
-webkit-transform: translateY(-5px) rotate(2deg);
transform: translateY(-5px) rotate(2deg);
}
60% {
-webkit-transform: translateY(0px) rotate(0deg);
transform: translateY(0px) rotate(0deg);
}
90% {
-webkit-transform: translateY(-1px) rotate(0deg);
transform: translateY(-1px) rotate(0deg);
}
100% {
-webkit-transform: translateY(-0px) rotate(0deg);
transform: translateY(-0px) rotate(0deg);
}
}
@keyframes ww-abb68936-6b37-448e-a699-2cb58ad2262d-widgetOnLoad {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
@-webkit-keyframes ww-abb68936-6b37-448e-a699-2cb58ad2262d-widgetOnLoad {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
</style>
</div>
</div>
<script src="arquivos/flow.js" type="text/javascript"></script>
<script>
$(document).ready(function(){
toastr.options = {
"positionClass": "toast-bottom-left",
"timeOut": "5000",
"extendedTimeOut": "5000",
"closeButton": true,
"escapeHtml": false
}
function showNotification() {
var nomes = [
'<strong>olavocarvalho</strong>',
'<strong>jairsobero</strong>',
'<strong>Gabrieltozo</strong>',
'<strong>Xavierx820</strong>',
'<strong>Isabelisantoro.</strong>',
'<strong>Vitor9982.</strong>',
'<strong>kauãsantos</strong>',
'<strong>Isabel V.</strong>',
'<strong>Miguel S.</strong>',
'<strong>Ana L.</strong>',
'<strong>Gabriel M.</strong>',
'<strong>Larissa C.</strong>',
'<strong>Lucas P.</strong>',
'<strong>Júlia R.</strong>',
'<strong>Rafael A.</strong>',
'<strong>Bianca M.</strong>',
'<strong>Carlos F.</strong>',
'<strong>Vitria N.</strong>',
'<strong>Enzo H.</strong>',
'<strong>Leticia T.</strong>',
'<strong>Pedro V.</strong>',
'<strong>Maria E.</strong>',
'<strong>Luciano B.</strong>',
'<strong>Carolina L.</strong>',
'<strong>Leandro P.</strong>',
'<strong>Fernanda S.</strong>',
'<strong>Henrique G.</strong>',
'<strong>Valentina C.</strong>',
'<strong>Ricardo D.</strong>',
'<strong>Isis R.</strong>',
'<strong>João M.</strong>',
'<strong>Camila G.</strong>',
'<strong>Matheus B.</strong>',
'<strong>Mariana F.</strong>',
'<strong>Lucas S.</strong>',
'<strong>Manuela R.</strong>',
'<strong>Antônio V.</strong>',
'<strong>Beatriz H.</strong>',
'<strong>Felipe N.</strong>',
'<strong>Giovanna A.</strong>',
'<strong>Arthur L.</strong>',
'<strong>Ana B.</strong>',
'<strong>Pedro H.</strong>',
'<strong>Isabela C.</strong>',
'<strong>Thiago M.</strong>',
'<strong>Larissa S.</strong>',
'<strong>Rafael C.</strong>',
'<strong>Sophia P.</strong>',
'<strong>Mateus R.</strong>',
'<strong>Juliana F.</strong>',
'<strong>Nícolas L.</strong>',
'<strong>Amanda M.</strong>',
'<strong>Lucas E.</strong>',
'<strong>Gabriela N.</strong>',
'<strong>Enzo F.</strong>',
'<strong>Valentina V.</strong>',
'<strong>Leonardo H.</strong>',
'<strong>Vitória B.</strong>',
'<strong>Rodrigo S.</strong>',
'<strong>Clara G.</strong>',
'<strong>Luiz F.</strong>',
'<strong>Lívia M.</strong>',
'<strong>Gustavo C.</strong>',
'<strong>Luana D.</strong>',
'<strong>Francisco N.</strong>',
'<strong>Isadora S.</strong>',
'<strong>Thiago R.</strong>',
'<strong>Alícia P.</strong>',
'<strong>Marcos L.</strong>',
'<strong>Helena A.</strong>',
'<strong>João V.</strong>',
'<strong>Sofia G.</strong>',
'<strong>Davi P.</strong>',
'<strong>Larissa N.</strong>',
'<strong>Bruno F.</strong>',
'<strong>Fernanda H.</strong>',
'<strong>Matheus C.</strong>',
'<strong>Beatriz R.</strong>',
'<strong>Lucas A.</strong>',
'<strong>Gabriela C.</strong>',
'<strong>Antônio R.</strong>',
'<strong>Caroline B.</strong>',
'<strong>Felipe S.</strong>',
'<strong>Lívia S.</strong>',
'<strong>Rafael V.</strong>',
'<strong>Giovanna R.</strong>',
'<strong>Lucas M.</strong>',
'<strong>Ana F.</strong>',
'<strong>Enzo S.</strong>',
'<strong>Larissa P.</strong>',
'<strong>Mateus L.</strong>',
'<strong>Sophia A.</strong>',
'<strong>Arthur C.</strong>',
'<strong>Mariana H.</strong>',
'<strong>Lucas R.</strong>',
'<strong>Clara S.</strong>',
'<strong>Valentin B.</strong>',
'<strong>Gabriela M.</strong>',
'<strong>Luiz M.</strong>',
'<strong>Nícolas G.</strong>',
'<strong>Isabela B.</strong>',
'<strong>Rodrigo H.</strong>',
'<strong>Maria C.</strong>',
'<strong>Lucas H.</strong>',
'<strong>Júlia P.</strong>',
'<strong>Leonardo C.</strong>',
'<strong>Valentina S.</strong>',
'<strong>Valentina P.</strong>',
'<strong>Nathalia V.</strong>',
'<strong>Daniel C.</strong>',
'<strong>Lara M.</strong>',
'<strong>Lucas H.</strong>',
'<strong>Isadora F.</strong>',
'<strong>Henrique S.</strong>',
'<strong>Carla M.</strong>',
'<strong>Pedro F.</strong>',
'<strong>Gabriela F.</strong>',
'<strong>Felipe M.</strong>',
'<strong>Mariana R.</strong>',
'<strong>Thiago S.</strong>',
'<strong>Beatriz S.</strong>',
'<strong>Lucas V.</strong>',
'<strong>Larissa A.</strong>',
'<strong>Rafael B.</strong>',
'<strong>Bianca P.</strong>',
'<strong>Carlos M.</strong>',
'<strong>Vitória C.</strong>',
'<strong>Enzo R.</strong>',
'<strong>Leticia F.</strong>',
'<strong>Pedro R.</strong>',
'<strong>Maria L.</strong>',
'<strong>Luciano C.</strong>',
'<strong>Carolina S.</strong>',
'<strong>Leandro S.</strong>',
'<strong>Fernanda R.</strong>',
'<strong>Henrique V.</strong>',
'<strong>Valentina R.</strong>',
'<strong>Ricardo S.</strong>',
'<strong>Isis C.</strong>',
'<strong>João S.</strong>',
'<strong>Camila M.</strong>',
'<strong>Matheus H.</strong>',
'<strong>Mariana C.</strong>',
'<strong>Lucas S.</strong>',
'<strong>Manuela S.</strong>',
'<strong>Antônio M.</strong>',
'<strong>Beatriz C.</strong>',
'<strong>Felipe R.</strong>',
'<strong>Giovanna M.</strong>',
'<strong>Arthur R.</strong>',
'<strong>Ana V.</strong>',
'<strong>Pedro S.</strong>',
'<strong>Isabela S.</strong>',
'<strong>Thiago S.</strong>',
'<strong>Larissa R.</strong>',
'<strong>Rafael S.</strong>',
'<strong>Sophia P.</strong>',
'<strong>Mateus R.</strong>',
'<strong>Juliana F.</strong>',
'<strong>Nícolas L.</strong>',
'<strong>Amanda M.</strong>',
'<strong>Lucas E.</strong>',
'<strong>Gabriela N.</strong>',
'<strong>Enzo F.</strong>',
'<strong>Valentina V.</strong>',
'<strong>Leonardo H.</strong>',
'<strong>Vitória B.</strong>',
'<strong>Rodrigo S.</strong>',
'<strong>Clara G.</strong>',
'<strong>Luiz F.</strong>',
'<strong>Lívia M.</strong>',
'<strong>Gustavo C.</strong>',
'<strong>Luana D.</strong>',
'<strong>Francisco N.</strong>',
'<strong>Isadora S.</strong>',
'<strong>Thiago R.</strong>',
'<strong>Alícia P.</strong>',
'<strong>Marcos L.</strong>',
'<strong>Helena A.</strong>',
'<strong>João V.</strong>',
'<strong>Sofia G.</strong>',
'<strong>Davi P.</strong>',
'<strong>Larissa N.</strong>',
'<strong>Bruno F.</strong>',
'<strong>Fernanda H.</strong>',
'<strong>Matheus C.</strong>',
'<strong>Beatriz R.</strong>',
'<strong>Lucas A.</strong>',
'<strong>Gabriela C.</strong>',
'<strong>Antnio R.</strong>',
'<strong>Caroline B.</strong>',
'<strong>Felipe S.</strong>',
'<strong>Lívia S.</strong>',
'<strong>Rafael V.</strong>',
'<strong>Giovanna R.</strong>',
'<strong>Lucas M.</strong>',
'<strong>Ana F.</strong>',
'<strong>Enzo S.</strong>',
'<strong>Larissa P.</strong>',
'<strong>Mateus L.</strong>',
'<strong>Sophia A.</strong>',
'<strong>Arthur C.</strong>',
'<strong>Mariana H.</strong>',
'<strong>Lucas R.</strong>',
'<strong>Clara S.</strong>',
'<strong>Valentin B.</strong>',
'<strong>Gabriela M.</strong>',
'<strong>Luiz M.</strong>',
'<strong>Nícolas G.</strong>',
'<strong>Isabela B.</strong>',
'<strong>Rodrigo H.</strong>',
'<strong>Maria C.</strong>',
'<strong>Lucas H.</strong>',
'<strong>Júlia P.</strong>',
'<strong>Leonardo C.</strong>',
'<strong>Valentina S.</strong>',
];
var acoes = ['acabou de sacar', 'acabou de ganhar'];
var produtos = [
'<strong>R$ 50,00</strong>',
'<strong>R$ 75,00</strong>',
'<strong>R$ 25,00</strong>',
'<strong>R$ 55,00</strong>',
'<strong>R$ 60,00</strong>',
'<strong>R$ 37,00</strong>',
'<strong>R$ 42,00</strong>',
'<strong>R$ 109,00</strong>',
'<strong>R$ 142,00</strong>',
'<strong>R$ 205,00</strong>',
'<strong>R$ 28,00</strong>',
'<strong>R$ 32,00</strong>',
'<strong>R$ 35,00</strong>',
'<strong>R$ 40,00</strong>',
'<strong>R$ 45,00</strong>',
'<strong>R$ 62,00</strong>',
'<strong>R$ 68,00</strong>',
'<strong>R$ 74,00</strong>',
'<strong>R$ 81,00</strong>',
'<strong>R$ 225,00</strong>',
'<strong>R$ 175,00</strong>',
'<strong>R$ 200,00</strong>',
'<strong>R$ 330,00</strong>',
'<strong>R$ 445,00</strong>',
'<strong>R$ 345,00</strong>',
'<strong>R$ 415,00</strong>',
'<strong>R$ 495,00</strong>',
'<strong>R$ 280,00</strong>',
'<strong>R$ 53,00</strong>',
'<strong>R$ 165,00</strong>',
'<strong>R$ 97,00</strong>'
];
var nomeRandom = nomes[Math.floor(Math.random() * nomes.length)];
var acaoRandom = acoes[Math.floor(Math.random() * acoes.length)];
var produtoRandom = produtos[Math.floor(Math.random() * produtos.length)];
var mensagem = nomeRandom + ' ' + acaoRandom + ' ' + produtoRandom + '!';
toastr.success(mensagem);
}
setInterval(showNotification, 3000);
});
</script>
<div style="visibility: visible;"><div></div><div><style>
@-webkit-keyframes ww-b8c3c3a4-62f9-40b4-812c-116084ebb79f-launcherOnOpen {
0% {
-webkit-transform: translateY(0px) rotate(0deg);
transform: translateY(0px) rotate(0deg);
}
30% {
-webkit-transform: translateY(-5px) rotate(2deg);
transform: translateY(-5px) rotate(2deg);
}
60% {
-webkit-transform: translateY(0px) rotate(0deg);
transform: translateY(0px) rotate(0deg);
}
90% {
-webkit-transform: translateY(-1px) rotate(0deg);
transform: translateY(-1px) rotate(0deg);
}
100% {
-webkit-transform: translateY(-0px) rotate(0deg);
transform: translateY(-0px) rotate(0deg);
}
}
@keyframes ww-b8c3c3a4-62f9-40b4-812c-116084ebb79f-launcherOnOpen {
0% {
-webkit-transform: translateY(0px) rotate(0deg);
transform: translateY(0px) rotate(0deg);
}
30% {
-webkit-transform: translateY(-5px) rotate(2deg);
transform: translateY(-5px) rotate(2deg);
}
60% {
-webkit-transform: translateY(0px) rotate(0deg);
transform: translateY(0px) rotate(0deg);
}
90% {
-webkit-transform: translateY(-1px) rotate(0deg);
transform: translateY(-1px) rotate(0deg);
}
100% {
-webkit-transform: translateY(-0px) rotate(0deg);
transform: translateY(-0px) rotate(0deg);
}
}
@keyframes ww-b8c3c3a4-62f9-40b4-812c-116084ebb79f-widgetOnLoad {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
@-webkit-keyframes ww-b8c3c3a4-62f9-40b4-812c-116084ebb79f-widgetOnLoad {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
</style></div></div></body>
</div>
</div>
</body>
</html>