-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmessages19.html
10073 lines (10072 loc) · 454 KB
/
messages19.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>
<head>
<meta charset="utf-8"/>
<title>Exported Data</title>
<meta content="width=device-width, initial-scale=1.0" name="viewport"/>
<link href="css/style.css" rel="stylesheet"/>
<script src="js/script.js" type="text/javascript">
</script>
</head>
<body onload="CheckLocation();">
<div class="page_wrap">
<div class="page_header">
<div class="content">
<div class="text bold">
🚨OFFICIAL BUY & HOLD XRP
</div>
</div>
</div>
<div class="page_body chat_page">
<div class="history">
<a class="pagination block_link" href="messages18.html">
Previous messages
</a>
<div class="message service" id="message-20">35135aaa6cc23891b40cb3f378c53a17a1127210ce60e125ccf03efcfdaec458 invited 37082e68df858e0ba76442174128811135890ae4c2c5df8b6f31aef5885d0be7</div>
<div class="message default clearfix" id="message18753">
<div class="pull_left userpic_wrap">
<div class="userpic userpic6" style="width: 42px; height: 42px">
<div class="initials" style="line-height: 42px">#</div>
</div>
</div>
<div class="body">
<div class="pull_right date details" title="29.01.2021 16:05:59">
16:05
</div>
<div class="from_name">db605e8f71913d1f3966ad908d78b8a8084f5047122037b2b91a7192b598a9ad</div>
<div class="text">
🔥🔥🔥🔥<br/><br/>‼️IT IS HAPPENING! ‼️<br/><br/>We don't <a href="" onclick='return ShowHashtag("PUMP")'>#PUMP</a> XRP, we buy with strong hands and send the mf to the moon. We need to make this BIGGER than the SEC case can handle. 🔥<br/><br/>*IMPORTANT RULES*<br/>✅ INVITE EVERYONE YOU KNOW<br/>✅ WE DO NOT SELL<br/>✅ WE DO NOT STOP AT $1, WE DO NOT STOP AT FUCKING ATH, WE GO ALL THE WAY!<br/>❌SPAM OR FUD GETS INSTANT BAN<br/><br/>BUY XRP VIA:<br/><a href="https://accounts.binance.com/en/register?ref=11165285🌏">https://accounts.binance.com/en/register?ref=11165285🌏</a><br/><a href="https://www.bitrue.com/activity/task/task-landing?inviteCode=LLHZEA🌍">https://www.bitrue.com/activity/task/task-landing?inviteCode=LLHZEA🌍</a><br/><a href="https://uphold.com/">https://uphold.com/</a> 🇺🇸<br/><br/>🔥🔥COPY AND PASTE THIS FOR EVERYONE!🔥🔥
</div>
</div>
</div>
<div class="message default clearfix" id="message18754">
<div class="pull_left userpic_wrap">
<div class="userpic userpic6" style="width: 42px; height: 42px">
<div class="initials" style="line-height: 42px">#</div>
</div>
</div>
<div class="body">
<div class="pull_right date details" title="29.01.2021 16:06:00">
16:06
</div>
<div class="from_name">08088e42573b217bf0b085ed238f3cd81edf40744281634b6eec3efcccd201e9</div>
<div class="reply_to details">
In reply to <a href="messages18.html#go_to_message18739">this message</a>
</div>
<div class="text">
Zou dan ff bewaren
</div>
</div>
</div>
<div class="message service" id="message18755">9e92ce112b3d761a92f7ad2afdb078c477e206a744b0a511b26500f7358ec84d invited 307128ff4d35a7e2b87909cebfd2c3fdf24b412fcc1a978d286ffa46b7c32546</div>
<div class="message default clearfix" id="message18756">
<div class="pull_left userpic_wrap">
<div class="userpic userpic5" style="width: 42px; height: 42px">
<div class="initials" style="line-height: 42px">#</div>
</div>
</div>
<div class="body">
<div class="pull_right date details" title="29.01.2021 16:06:01">
16:06
</div>
<div class="from_name">40707d89ba6103921cebb24c7b8cbd670de360e3dd38e78d557a41e010882c87</div>
<div class="text">
If you must buy now, buy and HODL otherwise wait for us the 1st. Im buying small amounts daily till the 22nd. Good morning XRP community!!! 💚💚💚🚀🚀🚀 we are at 10k!!! Im off to work remember to be KIND to each other!!! And share this group please!!!
</div>
</div>
</div>
<div class="message default clearfix" id="message18757">
<div class="pull_left userpic_wrap">
<div class="userpic userpic6" style="width: 42px; height: 42px">
<div class="initials" style="line-height: 42px">#</div>
</div>
</div>
<div class="body">
<div class="pull_right date details" title="29.01.2021 16:06:05">
16:06
</div>
<div class="from_name">3b123c4b6b4aa367a6c31aec0ca35b70c6de9ed72b7ec082c51c2ca9c3aec6bf</div>
<div class="text">
⚠️ Join our NEW unofficial telegram discussion group of r/wallstreetbets ⚠️<br/><br/>➡️ @c63832c80ad35c9b0e397aa22363b1c3951e94ea032697f0787df39958e95a5b ⬅️<br/><br/>Come chat with us 🙃
</div>
</div>
</div>
<div class="message default clearfix" id="message18759">
<div class="pull_left userpic_wrap">
<div class="userpic userpic8" style="width: 42px; height: 42px">
<div class="initials" style="line-height: 42px">#</div>
</div>
</div>
<div class="body">
<div class="pull_right date details" title="29.01.2021 16:06:09">
16:06
</div>
<div class="from_name">84a4b19e19aa4e2a562ae0286b1e188ef4f4f9a98a92b8730d20a1e0f2882523</div>
<div class="text">
@2de734f903250b05049c838fb2e37514253522d8988528cd28955b258b90504f QUIT SPAMMING YOUR REFERRAL. BAN FRAK
</div>
</div>
</div>
<div class="message service" id="message18760">7b32a0f49ff8bf795882979afa65943a544216d4a13995453caa6da58911bd96 invited 307128ff4d35a7e2b87909cebfd2c3fdf24b412fcc1a978d286ffa46b7c32546</div>
<div class="message default clearfix" id="message18761">
<div class="pull_left userpic_wrap">
<div class="userpic userpic2" style="width: 42px; height: 42px">
<div class="initials" style="line-height: 42px">#</div>
</div>
</div>
<div class="body">
<div class="pull_right date details" title="29.01.2021 16:06:11">
16:06
</div>
<div class="from_name">da5acfe3eece01fb9a533edb2d434ea41201d61f4482ad6671e751c340955330</div>
<div class="text">
If you don’t understand and buy now, this plan won’t work.<br/><br/>Everyone needs to buy at 8:30am (EST) on the 1st February.<br/><br/>If you buy beforehand, the plan doesn’t work!!!!<br/>*AMERICANS CAN BUY XRP ON BITRUE OR UPHOLD!!*<br/><br/>READ THE TITLE OF THE CHAT!!!<br/><br/>*<br/>BUY XRP ON THE<br/><br/>1st FEB at 8:30am (EST).<br/>1st FEB at 9:30am (CT). MX<br/><br/>*<br/><br/>We need to all work together. We need everyone to share on social media’s. Any groups like reddit we need the links to help promote this.<br/>We need a countdown timer also so everyone buys at the same time.<br/><br/>The plan is if 10,000 people buy at once, the price will skyrocket and their algorithms won’t be able to stop this (same as GameStop). <br/>Once Stockmarket people see the price jump, they buy in and we all sell later in the day when the price is massive. <br/>10,000 people that buy $100 worth of XRP (or what you can afford).<br/><br/>Copy paste so everyone will see it<br/><br/>Dont buy now, wait untill FEB 1st!!<br/>Dont buy now, wait untill FEB 1st!!!<br/>Dont buy now, wait untill FEB 1st!!<br/>Dont buy now, wait untill FEB 1st!!!<br/>Dont buy now, wait untill FEB 1st!!<br/>Dont buy now, wait untill FEB 1st!!!<br/>Dont buy now, wait untill FEB 1st!!<br/>Dont buy now, wait untill FEB 1st!!!<br/>✅✅✅✅✅✅✅✅✅✅✅<br/>Close the conversation<br/><br/>Clarify everyone<br/><br/><br/>• 8:30 AM Eastern Standard Time conversion to worldwide times:<br/><br/>Adelaide*<br/><br/>0:00 AM Next Day<br/><br/>Athens<br/><br/>3:30 PM<br/><br/>Auckland*<br/><br/>2:30 AM Next Day<br/><br/>Beijing<br/><br/>9:30 PM<br/><br/>Berlin<br/><br/>2:30 PM<br/><br/>Brisbane<br/><br/>11:30 PM<br/><br/>Cairo<br/><br/>3:30 PM<br/><br/>Calgary<br/><br/>6:30 AM<br/><br/>Cape Town<br/><br/>3:30 PM<br/><br/>Chicago<br/><br/>7:30 AM<br/><br/>Denver<br/><br/>6:30 AM<br/><br/>Dubai<br/><br/>5:30 PM<br/><br/>Hong Kong<br/><br/>9:30 PM<br/><br/>Honolulu<br/><br/>3:30 AM<br/><br/>Houston<br/><br/>7:30 AM<br/><br/>Jakarta<br/><br/>8:30 PM<br/><br/>Karachi<br/><br/>6:30 PM<br/><br/>Kiev<br/><br/>3:30 PM<br/><br/>Kuala Lumpur<br/><br/>9:30 PM<br/><br/>Lagos<br/><br/>2:30 PM<br/><br/>London<br/><br/>1:30 PM<br/><br/>Los Angeles<br/><br/>5:30 AM<br/><br/>Manila<br/><br/>9:30 PM<br/><br/>Melbourne*<br/><br/>0:30 AM Next Day<br/><br/>Mexico City<br/><br/>7:30 AM<br/><br/>Moscow<br/><br/>5:30 PM<br/><br/>Mumbai<br/><br/>7:00 PM<br/><br/>Nairobi<br/><br/>4:30 PM<br/><br/>New York<br/><br/>8:30 AM<br/><br/>Paris<br/><br/>2:30 PM<br/><br/>Perth<br/><br/>9:30 PM<br/><br/>Phoenix<br/><br/>6:30 AM<br/><br/>Riyadh<br/><br/>4:30 PM<br/><br/>Santiago*<br/><br/>10:30 AM<br/><br/>Sao Paulo*<br/><br/>11:30 AM<br/><br/>Singapore<br/><br/>9:30 PM<br/><br/>Sydney*<br/><br/>0:30 AM Next Day<br/><br/>Tel Aviv<br/><br/>3:30 PM<br/><br/>Toronto<br/><br/>8:30 AM<br/><br/>Vancouver<br/><br/>5:30 AM<br/><br/><br/>* : Under daylight saving time (DST) or summer time adjustment
</div>
</div>
</div>
<div class="message default clearfix" id="message18762">
<div class="pull_left userpic_wrap">
<div class="userpic userpic1" style="width: 42px; height: 42px">
<div class="initials" style="line-height: 42px">#</div>
</div>
</div>
<div class="body">
<div class="pull_right date details" title="29.01.2021 16:06:12">
16:06
</div>
<div class="from_name">d5b328741843c751e6276fdd1805ece2e0c8d887ba710c430bffe55198a420bc</div>
<div class="reply_to details">
In reply to <a href="messages18.html#go_to_message18707">this message</a>
</div>
<div class="text">
14:30
</div>
</div>
</div>
<div class="message default clearfix" id="message18763">
<div class="pull_left userpic_wrap">
<div class="userpic userpic6" style="width: 42px; height: 42px">
<div class="initials" style="line-height: 42px">#</div>
</div>
</div>
<div class="body">
<div class="pull_right date details" title="29.01.2021 16:06:12">
16:06
</div>
<div class="from_name">8bfa77141bac0938dc83c2ccb40b9feb2c3bfcde8a784ef2815743c86d5e26e6</div>
<div class="reply_to details">
In reply to <a href="messages18.html#go_to_message18742">this message</a>
</div>
<div class="text">
Español!! Que hora seria en españa?
</div>
</div>
</div>
<div class="message default clearfix" id="message18764">
<div class="pull_left userpic_wrap">
<div class="userpic userpic1" style="width: 42px; height: 42px">
<div class="initials" style="line-height: 42px">#</div>
</div>
</div>
<div class="body">
<div class="pull_right date details" title="29.01.2021 16:06:14">
16:06
</div>
<div class="from_name">80d480a6e388e2520624283ac929dec7c810b6b56e758adfe06c414a047774e6</div>
<div class="reply_to details">
In reply to <a href="messages18.html#go_to_message18735">this message</a>
</div>
<div class="text">
Zarar değil de 1 Şubat sonrası bende bir yükseliş olacak diye duydum ama nedir aslı astarı bilmiyorum
</div>
</div>
</div>
<div class="message default clearfix" id="message18765">
<div class="pull_left userpic_wrap">
<div class="userpic userpic4" style="width: 42px; height: 42px">
<div class="initials" style="line-height: 42px">#</div>
</div>
</div>
<div class="body">
<div class="pull_right date details" title="29.01.2021 16:06:14">
16:06
</div>
<div class="from_name">9d5d5573f3e8c10da828d824650f579b72d6f9f361b6728c93c2d05fb989b1e0</div>
<div class="reply_to details">
In reply to <a href="messages18.html#go_to_message18596">this message</a>
</div>
<div class="text">
I used many wallets but I like Bitvavo the most. It's cheap. Especially for all the Dutchies out here, Use bitvavo! It's easy and so much more user friendly than Binance for example!
</div>
</div>
</div>
<div class="message service" id="message18766">4bcbcdc0677d47284ab716e2737d9bdeeea5d717c6f065487b6086eeae5b0b83 invited 307128ff4d35a7e2b87909cebfd2c3fdf24b412fcc1a978d286ffa46b7c32546</div>
<div class="message default clearfix" id="message18767">
<div class="pull_left userpic_wrap">
<div class="userpic userpic8" style="width: 42px; height: 42px">
<div class="initials" style="line-height: 42px">#</div>
</div>
</div>
<div class="body">
<div class="pull_right date details" title="29.01.2021 16:06:16">
16:06
</div>
<div class="from_name">cda948890d105accc862f450648edc3e78735e272f68eceb1e732fe7e0652625</div>
<div class="text">
If you buy it now, who will buy then?We need more people , more money so The plan won't work if you buy it now. Wait on the 1st February.
</div>
</div>
</div>
<div class="message service" id="message18768">48cf6c91c1d1eb864e1d7d6d38e65e6c02249083aca96740ba82f2f123a18177 invited 90c52462b833bec748ac5bcd4c73f591c686bf6aad6d0f4d80ce8cf5dd563b21</div>
<div class="message default clearfix" id="message18769">
<div class="pull_left userpic_wrap">
<div class="userpic userpic2" style="width: 42px; height: 42px">
<div class="initials" style="line-height: 42px">#</div>
</div>
</div>
<div class="body">
<div class="pull_right date details" title="29.01.2021 16:06:20">
16:06
</div>
<div class="from_name">4742de85f617d08e6059b02e459cb4eae55077529922e66a6b0d89e0dbfbdb10</div>
<div class="text">
Fuh tired already sharing to all trending tweet
</div>
</div>
</div>
<div class="message default clearfix" id="message18770">
<div class="pull_left userpic_wrap">
<div class="userpic userpic1" style="width: 42px; height: 42px">
<div class="initials" style="line-height: 42px">#</div>
</div>
</div>
<div class="body">
<div class="pull_right date details" title="29.01.2021 16:06:20">
16:06
</div>
<div class="from_name">ff39e6e0dd2b1f6f1be5c35388df7e41adbaeaf825e0e777df9b53c140e57b7f</div>
<div class="text">
Wait don't buy
</div>
</div>
</div>
<div class="message service" id="message18771">f3b6151d5a0734ab2af432d46071ec73dccb06175609fbeab19de8ceafbafd31 invited 307128ff4d35a7e2b87909cebfd2c3fdf24b412fcc1a978d286ffa46b7c32546</div>
<div class="message default clearfix" id="message18772">
<div class="pull_left userpic_wrap">
<div class="userpic userpic8" style="width: 42px; height: 42px">
<div class="initials" style="line-height: 42px">#</div>
</div>
</div>
<div class="body">
<div class="pull_right date details" title="29.01.2021 16:06:24">
16:06
</div>
<div class="from_name">ba273c47cc4eb7b412e04cd37bf84fe0baea1d6abc66eb559d198704bb455e1c</div>
<div class="text">
🚀🚀🚀🚀🚀🚀🚀
</div>
</div>
</div>
<div class="message default clearfix" id="message18773">
<div class="pull_left userpic_wrap">
<div class="userpic userpic6" style="width: 42px; height: 42px">
<div class="initials" style="line-height: 42px">#</div>
</div>
</div>
<div class="body">
<div class="pull_right date details" title="29.01.2021 16:06:26">
16:06
</div>
<div class="from_name">f321afe9d21fa386bf47b07418fef73a34f27edc21b96c1a65f78c712f160551</div>
<div class="reply_to details">
In reply to <a href="messages18.html#go_to_message18752">this message</a>
</div>
<div class="text">
we want more people to join
</div>
</div>
</div>
<div class="message default clearfix" id="message18774">
<div class="pull_left userpic_wrap">
<div class="userpic userpic4" style="width: 42px; height: 42px">
<div class="initials" style="line-height: 42px">#</div>
</div>
</div>
<div class="body">
<div class="pull_right date details" title="29.01.2021 16:06:27">
16:06
</div>
<div class="from_name">27fe0f5102bcde668ac881cb526e3f1310436769e8e843a0124f16862b2a7595</div>
<div class="text">
XRP Will replace Gold. Its the new world order. If anyone has any information relating to this send me a private message !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! WAKE UP PEOPLE
</div>
</div>
</div>
<div class="message default clearfix" id="message18775">
<div class="pull_left userpic_wrap">
<div class="userpic userpic1" style="width: 42px; height: 42px">
<div class="initials" style="line-height: 42px">#</div>
</div>
</div>
<div class="body">
<div class="pull_right date details" title="29.01.2021 16:06:27">
16:06
</div>
<div class="from_name">39f1a5d91015d185f5360b4dc70cbbea8449657cc56cdfaf561d1105050b9427</div>
<div class="reply_to details">
In reply to <a href="messages18.html#go_to_message18128">this message</a>
</div>
<div class="text">
What's the best to buy in Canada?
</div>
</div>
</div>
<div class="message default clearfix" id="message18776">
<div class="pull_left userpic_wrap">
<div class="userpic userpic8" style="width: 42px; height: 42px">
<div class="initials" style="line-height: 42px">#</div>
</div>
</div>
<div class="body">
<div class="pull_right date details" title="29.01.2021 16:06:28">
16:06
</div>
<div class="from_name">d1854170b5c1f55ed0b76d8e17d037d586787a2ae12101f798a799ff288a1129</div>
<div class="text">
🔥🔥🔥🔥<br/><br/>‼️IT IS HAPPENING! ‼️<br/><br/>We don't <a href="" onclick='return ShowHashtag("PUMP")'>#PUMP</a> XRP, we buy with strong hands and send the mf to the moon. We need to make this BIGGER than the SEC case can handle. 🔥<br/><br/>*IMPORTANT RULES*<br/>✅ INVITE EVERYONE YOU KNOW<br/>✅ WE DO NOT SELL<br/>✅ WE DO NOT STOP AT $1, WE DO NOT STOP AT FUCKING ATH, WE GO ALL THE WAY!<br/>❌SPAM OR FUD GETS INSTANT BAN<br/><br/>BUY XRP VIA:<br/><a href="https://www.binance.com/en/register?ref=20131323">https://www.binance.com/en/register?ref=20131323</a> 🌏<br/><a href="https://www.bitrue.com/activity/task/task-landing?inviteCode=LWZAVZ&cn=900000">https://www.bitrue.com/activity/task/task-landing?inviteCode=LWZAVZ&cn=900000</a> 🌍<br/><a href="https://uphold.com/">https://uphold.com/</a> 🇺🇸<br/><br/>🔥🔥COPY AND PASTE THIS FOR EVERYONE!🔥🔥
</div>
</div>
</div>
<div class="message default clearfix" id="message18777">
<div class="pull_left userpic_wrap">
<div class="userpic userpic4" style="width: 42px; height: 42px">
<div class="initials" style="line-height: 42px">#</div>
</div>
</div>
<div class="body">
<div class="pull_right date details" title="29.01.2021 16:06:28">
16:06
</div>
<div class="from_name">4af70fb668de24c8290b5a3ffd6cd5375ab22b45a88043bc452b2c87fdeaab90</div>
<div class="text">
Lets pump nem xem letsgooooo!!!
</div>
</div>
</div>
<div class="message service" id="message18778">78adaa2b9042f22f488a8ef62468985fe084e6dfc6132e306791ff6b524eab2b invited 407ab98d94d791cb5baf0fd791678ba2843c846d8c7bde5fc5c246c5bb0e7b69</div>
<div class="message service" id="message18779">6d7746490cd6c711430e5013a2e42b551f2fd21d0698a6889bb64ec04af2ac65 invited a6c16e9b2b33218da4f58688c7b98509cd574b28f6a565c7078db010f3fee56d</div>
<div class="message default clearfix" id="message18780">
<div class="pull_left userpic_wrap">
<div class="userpic userpic2" style="width: 42px; height: 42px">
<div class="initials" style="line-height: 42px">#</div>
</div>
</div>
<div class="body">
<div class="pull_right date details" title="29.01.2021 16:06:32">
16:06
</div>
<div class="from_name">fc76e648953d6447541e9074dd75332ca3d1598c9daf18b127800d08e037a9b2</div>
<div class="text">
Get WSB to be aware
</div>
</div>
</div>
<div class="message default clearfix" id="message18781">
<div class="pull_left userpic_wrap">
<div class="userpic userpic8" style="width: 42px; height: 42px">
<div class="initials" style="line-height: 42px">#</div>
</div>
</div>
<div class="body">
<div class="pull_right date details" title="29.01.2021 16:06:33">
16:06
</div>
<div class="from_name">b02473fc7ef6022fd554e37f74022366e38b07ab9c3eeb5cd23b787b1dfde290</div>
<div class="text">
MEN WE NEED THE SUPPORT OF WALLSTREET BET BOYS
</div>
</div>
</div>
<div class="message service" id="message18782">d17f2dad0808e8665054786b6de4299d2819719f216aae419fb54d82fe4568dc invited 307128ff4d35a7e2b87909cebfd2c3fdf24b412fcc1a978d286ffa46b7c32546</div>
<div class="message service" id="message18783">89b6a19e2590851dcb33345c3895441be381d814eaec6b6b5b2435dddcd20e71 invited 307128ff4d35a7e2b87909cebfd2c3fdf24b412fcc1a978d286ffa46b7c32546</div>
<div class="message default clearfix" id="message18784">
<div class="pull_left userpic_wrap">
<div class="userpic userpic8" style="width: 42px; height: 42px">
<div class="initials" style="line-height: 42px">#</div>
</div>
</div>
<div class="body">
<div class="pull_right date details" title="29.01.2021 16:06:37">
16:06
</div>
<div class="from_name">cca457407f24b80c72d89dd061837112cb99a0aa050c155514b320b7aaffe95c</div>
<div class="reply_to details">
In reply to <a href="#go_to_message18762" onclick="return GoToMessage(18762)">this message</a>
</div>
<div class="text">
🙏
</div>
</div>
</div>
<div class="message default clearfix" id="message18785">
<div class="pull_left userpic_wrap">
<div class="userpic userpic4" style="width: 42px; height: 42px">
<div class="initials" style="line-height: 42px">#</div>
</div>
</div>
<div class="body">
<div class="pull_right date details" title="29.01.2021 16:06:40">
16:06
</div>
<div class="from_name">a8ab3d5805c9214bc66b794f599cbccd5a5958dc5a6a322ee81e3a68344c6db7</div>
<div class="reply_to details">
In reply to <a href="messages18.html#go_to_message18649">this message</a>
</div>
<div class="text">
Camarada
</div>
</div>
</div>
<div class="message service" id="message18786">3f0c9b03e8e39b03773c7ea7621035cb6fc947cd41ca7c44056d7e7bbaebb3d4 invited e1309d73c9004fb78dc46e6974fe68b06f706bb8e532c69ebb029bfb3e9b0d89</div>
<div class="message service" id="message18787">dcfc0ce7e8fc72005c095da22ab4aee8d2ae2405dd8e5fd429feae2e1c85665c invited 307128ff4d35a7e2b87909cebfd2c3fdf24b412fcc1a978d286ffa46b7c32546</div>
<div class="message default clearfix" id="message18788">
<div class="pull_left userpic_wrap">
<div class="userpic userpic4" style="width: 42px; height: 42px">
<div class="initials" style="line-height: 42px">#</div>
</div>
</div>
<div class="body">
<div class="pull_right date details" title="29.01.2021 16:06:43">
16:06
</div>
<div class="from_name">b84cb959e3ee9d35072d2188e1dd5b3df1312e8b1ad6db6dca25eba3e44da309</div>
<div class="reply_to details">
In reply to <a href="#go_to_message18764" onclick="return GoToMessage(18764)">this message</a>
</div>
<div class="text">
Güncellemesi var oda yürüyecek
</div>
</div>
</div>
<div class="message service" id="message18789">59e7d31e6d5755532a278af14a87dd9ddce3b8f5342a8eb479871a40d8858333 invited 307128ff4d35a7e2b87909cebfd2c3fdf24b412fcc1a978d286ffa46b7c32546</div>
<div class="message default clearfix" id="message18790">
<div class="pull_left userpic_wrap">
<div class="userpic userpic2" style="width: 42px; height: 42px">
<div class="initials" style="line-height: 42px">#</div>
</div>
</div>
<div class="body">
<div class="pull_right date details" title="29.01.2021 16:06:44">
16:06
</div>
<div class="from_name">da5acfe3eece01fb9a533edb2d434ea41201d61f4482ad6671e751c340955330</div>
<div class="text">
If you don’t understand and buy now, this plan won’t work.<br/><br/>Everyone needs to buy at 8:30am (EST) on the 1st February.<br/><br/>If you buy beforehand, the plan doesn’t work!!!!<br/>*AMERICANS CAN BUY XRP ON BITRUE OR UPHOLD!!*<br/><br/>READ THE TITLE OF THE CHAT!!!<br/><br/>*<br/>BUY XRP ON THE<br/><br/>1st FEB at 8:30am (EST).<br/>1st FEB at 9:30am (CT). MX<br/><br/>*<br/><br/>We need to all work together. We need everyone to share on social media’s. Any groups like reddit we need the links to help promote this.<br/>We need a countdown timer also so everyone buys at the same time.<br/><br/>The plan is if 10,000 people buy at once, the price will skyrocket and their algorithms won’t be able to stop this (same as GameStop). <br/>Once Stockmarket people see the price jump, they buy in and we all sell later in the day when the price is massive. <br/>10,000 people that buy $100 worth of XRP (or what you can afford).<br/><br/>Copy paste so everyone will see it<br/><br/>Dont buy now, wait untill FEB 1st!!<br/>Dont buy now, wait untill FEB 1st!!!<br/>Dont buy now, wait untill FEB 1st!!<br/>Dont buy now, wait untill FEB 1st!!!<br/>Dont buy now, wait untill FEB 1st!!<br/>Dont buy now, wait untill FEB 1st!!!<br/>Dont buy now, wait untill FEB 1st!!<br/>Dont buy now, wait untill FEB 1st!!!<br/>✅✅✅✅✅✅✅✅✅✅✅<br/>Close the conversation<br/><br/>Clarify everyone<br/><br/><br/>• 8:30 AM Eastern Standard Time conversion to worldwide times:<br/><br/>Adelaide*<br/><br/>0:00 AM Next Day<br/><br/>Athens<br/><br/>3:30 PM<br/><br/>Auckland*<br/><br/>2:30 AM Next Day<br/><br/>Beijing<br/><br/>9:30 PM<br/><br/>Berlin<br/><br/>2:30 PM<br/><br/>Brisbane<br/><br/>11:30 PM<br/><br/>Cairo<br/><br/>3:30 PM<br/><br/>Calgary<br/><br/>6:30 AM<br/><br/>Cape Town<br/><br/>3:30 PM<br/><br/>Chicago<br/><br/>7:30 AM<br/><br/>Denver<br/><br/>6:30 AM<br/><br/>Dubai<br/><br/>5:30 PM<br/><br/>Hong Kong<br/><br/>9:30 PM<br/><br/>Honolulu<br/><br/>3:30 AM<br/><br/>Houston<br/><br/>7:30 AM<br/><br/>Jakarta<br/><br/>8:30 PM<br/><br/>Karachi<br/><br/>6:30 PM<br/><br/>Kiev<br/><br/>3:30 PM<br/><br/>Kuala Lumpur<br/><br/>9:30 PM<br/><br/>Lagos<br/><br/>2:30 PM<br/><br/>London<br/><br/>1:30 PM<br/><br/>Los Angeles<br/><br/>5:30 AM<br/><br/>Manila<br/><br/>9:30 PM<br/><br/>Melbourne*<br/><br/>0:30 AM Next Day<br/><br/>Mexico City<br/><br/>7:30 AM<br/><br/>Moscow<br/><br/>5:30 PM<br/><br/>Mumbai<br/><br/>7:00 PM<br/><br/>Nairobi<br/><br/>4:30 PM<br/><br/>New York<br/><br/>8:30 AM<br/><br/>Paris<br/><br/>2:30 PM<br/><br/>Perth<br/><br/>9:30 PM<br/><br/>Phoenix<br/><br/>6:30 AM<br/><br/>Riyadh<br/><br/>4:30 PM<br/><br/>Santiago*<br/><br/>10:30 AM<br/><br/>Sao Paulo*<br/><br/>11:30 AM<br/><br/>Singapore<br/><br/>9:30 PM<br/><br/>Sydney*<br/><br/>0:30 AM Next Day<br/><br/>Tel Aviv<br/><br/>3:30 PM<br/><br/>Toronto<br/><br/>8:30 AM<br/><br/>Vancouver<br/><br/>5:30 AM<br/><br/><br/>* : Under daylight saving time (DST) or summer time adjustment
</div>
</div>
</div>
<div class="message service" id="message18791">eb5442705969dc8da5dfac8f9658dc68acdab5bb7635ba7cc551e389416ac34e invited 307128ff4d35a7e2b87909cebfd2c3fdf24b412fcc1a978d286ffa46b7c32546</div>
<div class="message default clearfix" id="message18792">
<div class="pull_left userpic_wrap">
<div class="userpic userpic2" style="width: 42px; height: 42px">
<div class="initials" style="line-height: 42px">#</div>
</div>
</div>
<div class="body">
<div class="pull_right date details" title="29.01.2021 16:06:47">
16:06
</div>
<div class="from_name">e1b791b1fa39399a71d94f51f482fc32e21e461482f315f21d08f2e6e538d2b0</div>
<div class="text">
If you don’t understand and buy now, this plan won’t work.<br/><br/>Everyone needs to buy at 8:30am (EST) on the 1st February.<br/><br/>If you buy beforehand, the plan doesn’t work!!!!<br/>*AMERICANS CAN BUY XRP ON BITRUE OR UPHOLD!!*<br/><br/>READ THE TITLE OF THE CHAT!!!<br/><br/>*<br/>BUY XRP ON THE<br/><br/>1st FEB at 8:30am (EST).<br/>1st FEB at 9:30am (CT). MX<br/><br/>*<br/><br/>We need to all work together. We need everyone to share on social media’s. Any groups like reddit we need the links to help promote this.<br/>We need a countdown timer also so everyone buys at the same time.<br/><br/>The plan is if 10,000 people buy at once, the price will skyrocket and their algorithms won’t be able to stop this (same as GameStop). <br/>Once Stockmarket people see the price jump, they buy in and we all sell later in the day when the price is massive. <br/>10,000 people that buy $100 worth of XRP (or what you can afford).<br/><br/>Copy paste so everyone will see it<br/><br/>Dont buy now, wait untill FEB 1st!!<br/>Dont buy now, wait untill FEB 1st!!!<br/>Dont buy now, wait untill FEB 1st!!<br/>Dont buy now, wait untill FEB 1st!!!<br/>Dont buy now, wait untill FEB 1st!!<br/>Dont buy now, wait untill FEB 1st!!!<br/>Dont buy now, wait untill FEB 1st!!<br/>Dont buy now, wait untill FEB 1st!!!<br/>✅✅✅✅✅✅✅✅✅✅✅<br/>Close the conversation<br/><br/>Clarify everyone<br/><br/><br/>• 8:30 AM Eastern Standard Time conversion to worldwide times:<br/><br/>Adelaide*<br/><br/>0:00 AM Next Day<br/><br/>Athens<br/><br/>3:30 PM<br/><br/>Auckland*<br/><br/>2:30 AM Next Day<br/><br/>Beijing<br/><br/>9:30 PM<br/><br/>Berlin<br/><br/>2:30 PM<br/><br/>Brisbane<br/><br/>11:30 PM<br/><br/>Cairo<br/><br/>3:30 PM<br/><br/>Calgary<br/><br/>6:30 AM<br/><br/>Cape Town<br/><br/>3:30 PM<br/><br/>Chicago<br/><br/>7:30 AM<br/><br/>Denver<br/><br/>6:30 AM<br/><br/>Dubai<br/><br/>5:30 PM<br/><br/>Hong Kong<br/><br/>9:30 PM<br/><br/>Honolulu<br/><br/>3:30 AM<br/><br/>Houston<br/><br/>7:30 AM<br/><br/>Jakarta<br/><br/>8:30 PM<br/><br/>Karachi<br/><br/>6:30 PM<br/><br/>Kiev<br/><br/>3:30 PM<br/><br/>Kuala Lumpur<br/><br/>9:30 PM<br/><br/>Lagos<br/><br/>2:30 PM<br/><br/>London<br/><br/>1:30 PM<br/><br/>Los Angeles<br/><br/>5:30 AM<br/><br/>Manila<br/><br/>9:30 PM<br/><br/>Melbourne*<br/><br/>0:30 AM Next Day<br/><br/>Mexico City<br/><br/>7:30 AM<br/><br/>Moscow<br/><br/>5:30 PM<br/><br/>Mumbai<br/><br/>7:00 PM<br/><br/>Nairobi<br/><br/>4:30 PM<br/><br/>New York<br/><br/>8:30 AM<br/><br/>Paris<br/><br/>2:30 PM<br/><br/>Perth<br/><br/>9:30 PM<br/><br/>Phoenix<br/><br/>6:30 AM<br/><br/>Riyadh<br/><br/>4:30 PM<br/><br/>Santiago*<br/><br/>10:30 AM<br/><br/>Sao Paulo*<br/><br/>11:30 AM<br/><br/>Singapore<br/><br/>9:30 PM<br/><br/>Sydney*<br/><br/>0:30 AM Next Day<br/><br/>Tel Aviv<br/><br/>3:30 PM<br/><br/>Toronto<br/><br/>8:30 AM<br/><br/>Vancouver<br/><br/>5:30 AM<br/><br/><br/>* : Under daylight saving time (DST) or summer time adjustment
</div>
</div>
</div>
<div class="message default clearfix" id="message18793">
<div class="pull_left userpic_wrap">
<div class="userpic userpic8" style="width: 42px; height: 42px">
<div class="initials" style="line-height: 42px">#</div>
</div>
</div>
<div class="body">
<div class="pull_right date details" title="29.01.2021 16:06:49">
16:06
</div>
<div class="from_name">cda948890d105accc862f450648edc3e78735e272f68eceb1e732fe7e0652625</div>
<div class="text">
If you buy it now, who will buy then?We need more people , more money so The plan won't work if you buy it now. Wait on the 1st February.
</div>
</div>
</div>
<div class="message default clearfix" id="message18794">
<div class="pull_left userpic_wrap">
<div class="userpic userpic7" style="width: 42px; height: 42px">
<div class="initials" style="line-height: 42px">#</div>
</div>
</div>
<div class="body">
<div class="pull_right date details" title="29.01.2021 16:06:49">
16:06
</div>
<div class="from_name">52879fe67eca2ec5838a4ca5a40100a844673f360621860539e2e2a378e52c09</div>
<div class="text">
Vamoooos
</div>
</div>
</div>
<div class="message default clearfix" id="message18795">
<div class="pull_left userpic_wrap">
<div class="userpic userpic5" style="width: 42px; height: 42px">
<div class="initials" style="line-height: 42px">#</div>
</div>
</div>
<div class="body">
<div class="pull_right date details" title="29.01.2021 16:06:52">
16:06
</div>
<div class="from_name">899ca970ae9f1a7f7b40c1c5af9a10f19763cbf00b083c49901e39ee7b5873d8</div>
<div class="text">
GO MAKE A POST ON WSB AND SEND THE LINK HERE SO WE CAN UPVOTE THIS MF THREAD AND LET THEM JOIN US TO FUCK OFF THESES SEC SUCKERS AND JAY CLAYTON BITCH ; GO MAKE A POST ON WSB AND SEND THE LINK HERE SO WE CAN UPVOTE THIS MF THREAD AND LET THEM JOIN US ; <br/><br/><br/>IF WE DON’T COORDINATE THIS WILL NOT WORK GUYS <br/><br/>NEED SOMEONE WITH A REDDIT HIGH KARMA ACCOUNT AND PIN THE LINK ON HERE MODS
</div>
</div>
</div>
<div class="message default clearfix" id="message18797">
<div class="pull_left userpic_wrap">
<div class="userpic userpic5" style="width: 42px; height: 42px">
<div class="initials" style="line-height: 42px">#</div>
</div>
</div>
<div class="body">
<div class="pull_right date details" title="29.01.2021 16:06:56">
16:06
</div>
<div class="from_name">40707d89ba6103921cebb24c7b8cbd670de360e3dd38e78d557a41e010882c87</div>
<div class="reply_to details">
In reply to <a href="#go_to_message18781" onclick="return GoToMessage(18781)">this message</a>
</div>
<div class="text">
Invite them...🚀🚀🚀
</div>
</div>
</div>
<div class="message default clearfix" id="message18798">
<div class="pull_left userpic_wrap">
<div class="userpic userpic4" style="width: 42px; height: 42px">
<div class="initials" style="line-height: 42px">#</div>
</div>
</div>
<div class="body">
<div class="pull_right date details" title="29.01.2021 16:06:57">
16:06
</div>
<div class="from_name">8c71997c7876b575d84069bf3fb712347d2d2451453bed4a935bf8615764756e</div>
<div class="text">
What's the buying time for turkey amk evlatları?
</div>
</div>
</div>
<div class="message service" id="message18799">a7c26aa6a6ad30ae59ba8f810c71f207bb586e9a2511865446936a2d5673efa9 invited 307128ff4d35a7e2b87909cebfd2c3fdf24b412fcc1a978d286ffa46b7c32546</div>
<div class="message default clearfix" id="message18800">
<div class="pull_left userpic_wrap">
<div class="userpic userpic1" style="width: 42px; height: 42px">
<div class="initials" style="line-height: 42px">#</div>
</div>
</div>
<div class="body">
<div class="pull_right date details" title="29.01.2021 16:06:59">
16:06
</div>
<div class="from_name">b18b5f3b46a9483e28cb41937701a03ea5f962ca381d4097fd2d296f52cbd779</div>
<div class="reply_to details">
In reply to <a href="messages18.html#go_to_message18735">this message</a>
</div>
<div class="text">
tamamdır bende müdür :)
</div>
</div>
</div>
<div class="message default clearfix" id="message18801">
<div class="pull_left userpic_wrap">
<div class="userpic userpic4" style="width: 42px; height: 42px">
<div class="initials" style="line-height: 42px">#</div>
</div>
</div>
<div class="body">
<div class="pull_right date details" title="29.01.2021 16:07:00">
16:07
</div>
<div class="from_name">4046a81639af5c317c492f4555450f99af36f1c8749abbd56c9da4f4f9cb8aba</div>
<div class="reply_to details">
In reply to <a href="#go_to_message18754" onclick="return GoToMessage(18754)">this message</a>
</div>
<div class="text">
Als deze pump lukt en ik geraak op mijn instapprijs ga ik eruit denk ik
</div>
</div>
</div>
<div class="message default clearfix" id="message18802">
<div class="pull_left userpic_wrap">
<div class="userpic userpic4" style="width: 42px; height: 42px">
<div class="initials" style="line-height: 42px">#</div>
</div>
</div>
<div class="body">
<div class="pull_right date details" title="29.01.2021 16:07:00">
16:07
</div>
<div class="from_name">e73ed5a5b6b8fce7747f8c146534380cee65dfac3345f32626ce63183a2d4e10</div>
<div class="text">
VAMOOOOS
</div>
</div>
</div>
<div class="message default clearfix" id="message18803">
<div class="pull_left userpic_wrap">
<div class="userpic userpic5" style="width: 42px; height: 42px">
<div class="initials" style="line-height: 42px">#</div>
</div>
</div>
<div class="body">
<div class="pull_right date details" title="29.01.2021 16:07:00">
16:07
</div>
<div class="from_name">3656956a44e44d80c27e965db0075768a4302693cf8011467cf948134195464a</div>
<div class="text">
DONT BUY OR SELL JUST HOLD WAIT TILL FEB 1.<br/>DONT BUY OR SELL JUST HOLD WAIT TILL FEB 1.<br/>DONT BUY OR SELL JUST HOLD WAIT TILL FEB 1.<br/>DONT BUY OR SELL JUST HOLD WAIT TILL FEB 1.<br/>If the price goes up today no one wil buy at feb 1 ur lose idiots
</div>
</div>
</div>
<div class="message default clearfix" id="message18804">
<div class="pull_left userpic_wrap">
<div class="userpic userpic5" style="width: 42px; height: 42px">
<div class="initials" style="line-height: 42px">#</div>
</div>
</div>
<div class="body">
<div class="pull_right date details" title="29.01.2021 16:07:01">
16:07
</div>
<div class="from_name">b206c93ad3c036bf66d840b9fe5b5a672bf21a1db4b8241af8004315975ddfd4</div>
<div class="text">
130 pm UK
</div>
</div>
</div>
<div class="message service" id="message18805">6c00e6ff6ea6bcc6ac122ec314eb16749ca88f03760adfb71a9de657527c6396 invited 307128ff4d35a7e2b87909cebfd2c3fdf24b412fcc1a978d286ffa46b7c32546</div>
<div class="message default clearfix" id="message18806">
<div class="pull_left userpic_wrap">
<div class="userpic userpic8" style="width: 42px; height: 42px">
<div class="initials" style="line-height: 42px">#</div>
</div>
</div>
<div class="body">
<div class="pull_right date details" title="29.01.2021 16:07:04">
16:07
</div>
<div class="from_name">d1854170b5c1f55ed0b76d8e17d037d586787a2ae12101f798a799ff288a1129</div>
<div class="reply_to details">
In reply to <a href="#go_to_message18775" onclick="return GoToMessage(18775)">this message</a>
</div>
<div class="text">
Binance, see below:<br/><br/>🔥🔥🔥🔥<br/><br/>‼️IT IS HAPPENING! ‼️<br/><br/>We don't <a href="" onclick='return ShowHashtag("PUMP")'>#PUMP</a> XRP, we buy with strong hands and send the mf to the moon. We need to make this BIGGER than the SEC case can handle. 🔥<br/><br/>*IMPORTANT RULES*<br/>✅ INVITE EVERYONE YOU KNOW<br/>✅ WE DO NOT SELL<br/>✅ WE DO NOT STOP AT $1, WE DO NOT STOP AT FUCKING ATH, WE GO ALL THE WAY!<br/>❌SPAM OR FUD GETS INSTANT BAN<br/><br/>BUY XRP VIA:<br/><a href="https://www.binance.com/en/register?ref=20131323">https://www.binance.com/en/register?ref=20131323</a> 🌏<br/><a href="https://www.bitrue.com/activity/task/task-landing?inviteCode=LWZAVZ&cn=900000">https://www.bitrue.com/activity/task/task-landing?inviteCode=LWZAVZ&cn=900000</a> 🌍<br/><a href="https://uphold.com/">https://uphold.com/</a> 🇺🇸<br/><br/>🔥🔥COPY AND PASTE THIS FOR EVERYONE!🔥🔥
</div>
</div>
</div>
<div class="message default clearfix" id="message18807">
<div class="pull_left userpic_wrap">
<div class="userpic userpic4" style="width: 42px; height: 42px">
<div class="initials" style="line-height: 42px">#</div>
</div>
</div>
<div class="body">
<div class="pull_right date details" title="29.01.2021 16:07:06">
16:07
</div>
<div class="from_name">077926ac0a7ee68857b6bb425ed819fc383ca30e85c938d03940aac19e92a857</div>
<div class="text">
Lan bu ne
</div>
</div>
</div>
<div class="message service" id="message18808">69c33174130c891a417e852e87e4efa5b7ded0dfe116180360b08bbd730d8600 invited 307128ff4d35a7e2b87909cebfd2c3fdf24b412fcc1a978d286ffa46b7c32546</div>
<div class="message default clearfix" id="message18809">
<div class="pull_left userpic_wrap">
<div class="userpic userpic6" style="width: 42px; height: 42px">
<div class="initials" style="line-height: 42px">#</div>
</div>
</div>
<div class="body">
<div class="pull_right date details" title="29.01.2021 16:07:12">
16:07
</div>
<div class="from_name">74921f0f26a22e6541e3d647343fe9314c836b77094d252c17d270f8ba6c3304</div>
<div class="text">
France
</div>
</div>
</div>
<div class="message default clearfix" id="message18810">
<div class="pull_left userpic_wrap">
<div class="userpic userpic7" style="width: 42px; height: 42px">
<div class="initials" style="line-height: 42px">#</div>
</div>
</div>
<div class="body">
<div class="pull_right date details" title="29.01.2021 16:07:13">
16:07
</div>
<div class="from_name">c34d39bd4366113852cb438dae55ea8ec1b5d323e809f62604015cc7b13f62cd</div>
<div class="text">
Send it🚀🚀🚀🚀🚀🚀🚀🚀
</div>
</div>
</div>
<div class="message service" id="message18811">7fd49e0f325d1098675a8531e4c83eb8c151274ec80f98ef9477ffb1db5b13fb invited 307128ff4d35a7e2b87909cebfd2c3fdf24b412fcc1a978d286ffa46b7c32546</div>
<div class="message default clearfix" id="message18812">
<div class="pull_left userpic_wrap">
<div class="userpic userpic4" style="width: 42px; height: 42px">
<div class="initials" style="line-height: 42px">#</div>
</div>
</div>
<div class="body">
<div class="pull_right date details" title="29.01.2021 16:07:14">
16:07
</div>
<div class="from_name">27fe0f5102bcde668ac881cb526e3f1310436769e8e843a0124f16862b2a7595</div>
<div class="text">
XRP Will replace Gold. Its the new world order. If anyone has any information relating to this send me a private message !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! WAKE UP PEOPLE
</div>
</div>
</div>
<div class="message service" id="message18813">f6c9942480df35714a411502ca264ae1abe147a0fa765961457a193fad3fdeb0 invited ecc4f77cf213133424a79389981368da6d212ef84d247a91be12da532863062f</div>
<div class="message service" id="message18814">7ca0ea5bd69615158f392e9f3a966f6f3560365c0ea735a8a7db5e52743aca00 invited 36b67993c84515546c194f85e1dcc861d79fca1c16ea809c381efff813c936db</div>
<div class="message service" id="message18815">aac09a648fc382b6f78897595486e691d00de9dfc742f3ba1930464b56eecda6 invited 307128ff4d35a7e2b87909cebfd2c3fdf24b412fcc1a978d286ffa46b7c32546</div>
<div class="message service" id="message18816">580ce4fcc9cac067b963ab35eb7fb0d23f5a5927e0b242135739cf34b19fa0e2 invited 64ccbda205d7eecf9be5aeb41914c905cf24689687497ff8d89c30d208be061f</div>
<div class="message service" id="message18817">58dcf618906a1daa1ad49f6b76bb2dbf0ef8b0933180c07d74d5e9272128c7c3 invited 3f39d5c348e5b79d06e842c114e6cc571583bbf44e4b0ebfda1a01ec05745d43</div>
<div class="message default clearfix" id="message18818">
<div class="pull_left userpic_wrap">
<div class="userpic userpic6" style="width: 42px; height: 42px">
<div class="initials" style="line-height: 42px">#</div>
</div>
</div>
<div class="body">
<div class="pull_right date details" title="29.01.2021 16:07:23">
16:07
</div>
<div class="from_name">08088e42573b217bf0b085ed238f3cd81edf40744281634b6eec3efcccd201e9</div>
<div class="reply_to details">
In reply to <a href="#go_to_message18801" onclick="return GoToMessage(18801)">this message</a>
</div>
<div class="text">
Geef je groot gelijk.
</div>
</div>
</div>
<div class="message default clearfix" id="message18819">
<div class="pull_left userpic_wrap">
<div class="userpic userpic7" style="width: 42px; height: 42px">
<div class="initials" style="line-height: 42px">#</div>
</div>
</div>
<div class="body">
<div class="pull_right date details" title="29.01.2021 16:07:27">
16:07
</div>
<div class="from_name">c0dae56ef7ba74d5f2d9ba7f18265560a4ec25489c790a648b8512b8e63750d1</div>
<div class="text">
🔥🔥🔥🔥<br/><br/>‼️IT IS HAPPENING! ‼️<br/><br/>We don't <a href="" onclick='return ShowHashtag("PUMP")'>#PUMP</a> XRP, we buy with strong hands and send the mf to the moon. We need to make this BIGGER than the SEC case can handle. 🔥<br/><br/>*IMPORTANT RULES*<br/>✅ INVITE EVERYONE YOU KNOW<br/>✅ WE DO NOT SELL<br/>✅ WE DO NOT STOP AT $1, WE DO NOT STOP AT FUCKING ATH, WE GO ALL THE WAY!<br/>❌SPAM OR FUD GETS INSTANT BAN<br/><br/>BUY XRP Via Binance<br/><br/><a href="https://accounts.binance.com/en/register?ref=TVKJ6BN5">https://accounts.binance.com/en/register?ref=TVKJ6BN5</a><br/><br/>🔥🔥COPY AND PASTE THIS FOR EVERYONE!🔥🔥
</div>
</div>
</div>
<div class="message service" id="message18820">d389e0c290ef5aaf0beb87b24760bdb3f1e9003f299359988bd4e4c5fd9db100 invited 307128ff4d35a7e2b87909cebfd2c3fdf24b412fcc1a978d286ffa46b7c32546</div>
<div class="message default clearfix" id="message18821">
<div class="pull_left userpic_wrap">
<div class="userpic userpic4" style="width: 42px; height: 42px">
<div class="initials" style="line-height: 42px">#</div>
</div>
</div>
<div class="body">
<div class="pull_right date details" title="29.01.2021 16:07:30">
16:07
</div>
<div class="from_name">e73ed5a5b6b8fce7747f8c146534380cee65dfac3345f32626ce63183a2d4e10</div>
<div class="text">
TO THE MOOON
</div>
</div>
</div>
<div class="message service" id="message18822">ba4e64037fff403caa1b2a6b0ffe64bcf33a74d8e9971d78cc9a9eca5fd4e794 invited 307128ff4d35a7e2b87909cebfd2c3fdf24b412fcc1a978d286ffa46b7c32546</div>
<div class="message default clearfix" id="message18823">
<div class="pull_left userpic_wrap">
<div class="userpic userpic6" style="width: 42px; height: 42px">
<div class="initials" style="line-height: 42px">#</div>
</div>
</div>
<div class="body">
<div class="pull_right date details" title="29.01.2021 16:07:35">
16:07
</div>
<div class="from_name">493c93bece75a330b5270c6dc483f761c122d6d4f4fbfacdc0bb495c21f75a82</div>
<div class="text">
Go pump Juld, this easy
</div>
</div>
</div>
<div class="message service" id="message18824">52d7d8604bf71e968bf07d468c7d394bff7cb0bb142fd4da7a85dd6f8056a940 invited cdc59f9719eb526eba5e249037f4a4296eda7a7dea0fb158b49cb38840e61f19</div>
<div class="message service" id="message18825">5a99c57b24b4f79e6a5043b39af1a1b4574b3bfd78d12c6c394b087ea76048c6 invited 328ba6c7fc10023780136df9a918310ef941a1332156d50af8814a194cb27f5a</div>
<div class="message default clearfix" id="message18826">
<div class="pull_left userpic_wrap">
<div class="userpic userpic5" style="width: 42px; height: 42px">
<div class="initials" style="line-height: 42px">#</div>
</div>
</div>
<div class="body">
<div class="pull_right date details" title="29.01.2021 16:07:44">
16:07
</div>
<div class="from_name">30d4afa35329c2cbc58e87803b9d66469030c3b52dd69cb2f36157a8be9915de</div>
<div class="text">
Can I get the invite link for this group?
</div>
</div>
</div>
<div class="message default clearfix" id="message18827">
<div class="pull_left userpic_wrap">
<div class="userpic userpic4" style="width: 42px; height: 42px">
<div class="initials" style="line-height: 42px">#</div>
</div>
</div>
<div class="body">
<div class="pull_right date details" title="29.01.2021 16:07:50">
16:07
</div>
<div class="from_name">27fe0f5102bcde668ac881cb526e3f1310436769e8e843a0124f16862b2a7595</div>
<div class="text">
XRP Will replace Gold. Its the new world order. If anyone has any information relating to this send me a private message !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! WAKE UP PEOPLE
</div>
</div>
</div>
<div class="message service" id="message18828">d6dbfaec76a54ef81437f09fea1dc5c0606301fc77353f5fd814eeb6d7d34783 invited 307128ff4d35a7e2b87909cebfd2c3fdf24b412fcc1a978d286ffa46b7c32546</div>
<div class="message service" id="message18829">6acad5e292888b46e7b74eb7e2c0b56553a32990a8dc8c96f21a622cf0dcf1f3 invited c11e844bc717e792437f1d2d32746430e004777fff42447d0d13d8b77276c5b6</div>
<div class="message default clearfix" id="message18830">
<div class="pull_left userpic_wrap">
<div class="userpic userpic4" style="width: 42px; height: 42px">
<div class="initials" style="line-height: 42px">#</div>
</div>
</div>
<div class="body">
<div class="pull_right date details" title="29.01.2021 16:07:55">
16:07
</div>
<div class="from_name">6aaec7a36d581ece924d1aa83cc44dea4569ba1a4c3140da5c0a69bd81c3dbb9</div>
<div class="text">
@97d9ff5a26a50a7e2f1c5d91ad4b1cee7740657bb637268089830da1dd6ecf4f
</div>
</div>
</div>
<div class="message service" id="message18831">b3e4cb8c018684b3834c960b913c8e9ed63b35575605e032b847b8a6b3302baf invited 307128ff4d35a7e2b87909cebfd2c3fdf24b412fcc1a978d286ffa46b7c32546</div>
<div class="message default clearfix" id="message18832">
<div class="pull_left userpic_wrap">
<div class="userpic userpic6" style="width: 42px; height: 42px">
<div class="initials" style="line-height: 42px">#</div>
</div>
</div>
<div class="body">
<div class="pull_right date details" title="29.01.2021 16:07:56">
16:07
</div>
<div class="from_name">130cdeaace35709500c366010d5fd912b320e5b6c37860e3c1ea5ce0ea15360b</div>
<div class="text">
<strong>Dont buy now, wait untill FEB 1st!!<br/>Dont buy now, wait untill FEB 1st!!!<br/>Dont buy now, wait untill FEB 1st!!<br/>Dont buy now, wait untill FEB 1st!!!<br/>Dont buy now, wait untill FEB 1st!!<br/>Dont buy now, wait untill FEB 1st!!!<br/>Dont buy now, wait untill FEB 1st!!<br/>Dont buy now, wait untill FEB 1st!!!<br/>✅✅✅✅✅✅✅✅✅✅✅<br/>Close the conversation</strong>
</div>
</div>
</div>
<div class="message service" id="message18833">9f00e092e64bf233310f765b261dd4c93be268d6733bdee6d5db9c91b8345bdc invited 307128ff4d35a7e2b87909cebfd2c3fdf24b412fcc1a978d286ffa46b7c32546</div>
<div class="message service" id="message18834">f76ea921edc2e55df3e0a8eef0ddc499bdb4c39fc74356fb49b0c9ed2fab6642 invited c666591df0537cf226cc7d33d50a72a2d9d4c7651ff7caeae045f723528c3917</div>
<div class="message service" id="message18835">8614ee33d6fd062d64f0fe47bf75ea8168cb99e3077731bd38d707b5c9ed120e invited 307128ff4d35a7e2b87909cebfd2c3fdf24b412fcc1a978d286ffa46b7c32546</div>
<div class="message service" id="message18836">22229825111ae5283c2f85dcd431a443c003c192dee6ba2a3c9e5546bea05380 invited 307128ff4d35a7e2b87909cebfd2c3fdf24b412fcc1a978d286ffa46b7c32546</div>
<div class="message default clearfix" id="message18837">
<div class="pull_left userpic_wrap">
<div class="userpic userpic7" style="width: 42px; height: 42px">
<div class="initials" style="line-height: 42px">#</div>
</div>
</div>
<div class="body">
<div class="pull_right date details" title="29.01.2021 16:08:05">
16:08
</div>
<div class="from_name">c0dae56ef7ba74d5f2d9ba7f18265560a4ec25489c790a648b8512b8e63750d1</div>
<div class="text">
🔥🔥🔥🔥<br/><br/>‼️IT IS HAPPENING! ‼️<br/><br/>We don't <a href="" onclick='return ShowHashtag("PUMP")'>#PUMP</a> XRP, we buy with strong hands and send the mf to the moon. We need to make this BIGGER than the SEC case can handle. 🔥<br/><br/>*IMPORTANT RULES*<br/>✅ INVITE EVERYONE YOU KNOW<br/>✅ WE DO NOT SELL<br/>✅ WE DO NOT STOP AT $1, WE DO NOT STOP AT FUCKING ATH, WE GO ALL THE WAY!<br/>❌SPAM OR FUD GETS INSTANT BAN<br/><br/>BUY XRP Via Binance<br/><br/><a href="https://accounts.binance.com/en/register?ref=TVKJ6BN5">https://accounts.binance.com/en/register?ref=TVKJ6BN5</a><br/><br/>🔥🔥COPY AND PASTE THIS FOR EVERYONE!🔥🔥
</div>
</div>
</div>
<div class="message default clearfix" id="message18838">
<div class="pull_left userpic_wrap">
<div class="userpic userpic6" style="width: 42px; height: 42px">
<div class="initials" style="line-height: 42px">#</div>
</div>
</div>
<div class="body">
<div class="pull_right date details" title="29.01.2021 16:08:07">
16:08
</div>
<div class="from_name">7486642b76794348b47465657d60a97e72dbc95d65574cb696c9aba0aa045c84</div>
<div class="text">
If you don’t understand and buy now, this plan won’t work.<br/><br/>Everyone needs to buy at 8:30am (EST) on the 1st February.<br/><br/>If you buy beforehand, the plan doesn’t work!!!!<br/>*AMERICANS CAN BUY XRP ON BITRUE OR UPHOLD!!*<br/><br/>READ THE TITLE OF THE CHAT!!!<br/><br/>*<br/>BUY XRP ON THE<br/><br/>1st FEB at 8:30am (EST).<br/>1st FEB at 9:30am (CT). MX<br/><br/>*<br/><br/>We need to all work together. We need everyone to share on social media’s. Any groups like reddit we need the links to help promote this.<br/>We need a countdown timer also so everyone buys at the same time.<br/><br/>The plan is if 10,000 people buy at once, the price will skyrocket and their algorithms won’t be able to stop this (same as GameStop). <br/>Once Stockmarket people see the price jump, they buy in and we all sell later in the day when the price is massive. <br/>10,000 people that buy $100 worth of XRP (or what you can afford).<br/><br/>Copy paste so everyone will see it<br/><br/>Dont buy now, wait untill FEB 1st!!<br/>Dont buy now, wait untill FEB 1st!!!<br/>Dont buy now, wait untill FEB 1st!!<br/>Dont buy now, wait untill FEB 1st!!!<br/>Dont buy now, wait untill FEB 1st!!<br/>Dont buy now, wait untill FEB 1st!!!<br/>Dont buy now, wait untill FEB 1st!!<br/>Dont buy now, wait untill FEB 1st!!!<br/>✅✅✅✅✅✅✅✅✅✅✅<br/>Close the conversation<br/><br/>Clarify everyone<br/><br/><br/>• 8:30 AM Eastern Standard Time conversion to worldwide times:<br/><br/>Adelaide*<br/><br/>0:00 AM Next Day<br/><br/>Athens<br/><br/>3:30 PM<br/><br/>Auckland*<br/><br/>2:30 AM Next Day<br/><br/>Beijing<br/><br/>9:30 PM<br/><br/>Berlin<br/><br/>2:30 PM<br/><br/>Brisbane<br/><br/>11:30 PM<br/><br/>Cairo<br/><br/>3:30 PM<br/><br/>Calgary<br/><br/>6:30 AM<br/><br/>Cape Town<br/><br/>3:30 PM<br/><br/>Chicago<br/><br/>7:30 AM<br/><br/>Denver<br/><br/>6:30 AM<br/><br/>Dubai<br/><br/>5:30 PM<br/><br/>Hong Kong<br/><br/>9:30 PM<br/><br/>Honolulu<br/><br/>3:30 AM<br/><br/>Houston<br/><br/>7:30 AM<br/><br/>Jakarta<br/><br/>8:30 PM<br/><br/>Karachi<br/><br/>6:30 PM<br/><br/>Kiev<br/><br/>3:30 PM<br/><br/>Kuala Lumpur<br/><br/>9:30 PM<br/><br/>Lagos<br/><br/>2:30 PM<br/><br/>London<br/><br/>1:30 PM<br/><br/>Los Angeles<br/><br/>5:30 AM<br/><br/>Manila<br/><br/>9:30 PM<br/><br/>Melbourne*<br/><br/>0:30 AM Next Day<br/><br/>Mexico City<br/><br/>7:30 AM<br/><br/>Moscow<br/><br/>5:30 PM<br/><br/>Mumbai<br/><br/>7:00 PM<br/><br/>Nairobi<br/><br/>4:30 PM<br/><br/>New York<br/><br/>8:30 AM<br/><br/>Paris<br/><br/>2:30 PM<br/><br/>Perth<br/><br/>9:30 PM<br/><br/>Phoenix<br/><br/>6:30 AM<br/><br/>Riyadh<br/><br/>4:30 PM<br/><br/>Santiago*<br/><br/>10:30 AM<br/><br/>Sao Paulo*<br/><br/>11:30 AM<br/><br/>Singapore<br/><br/>9:30 PM<br/><br/>Sydney*<br/><br/>0:30 AM Next Day<br/><br/>Tel Aviv<br/><br/>3:30 PM<br/><br/>Toronto<br/><br/>8:30 AM<br/><br/>Vancouver<br/><br/>5:30 AM<br/><br/><br/>* : Under daylight saving time (DST) or summer time adjustment
</div>
</div>
</div>
<div class="message default clearfix" id="message18839">
<div class="pull_left userpic_wrap">
<div class="userpic userpic2" style="width: 42px; height: 42px">
<div class="initials" style="line-height: 42px">#</div>
</div>
</div>
<div class="body">
<div class="pull_right date details" title="29.01.2021 16:08:07">
16:08
</div>
<div class="from_name">52578a6151d33989b352a2e7c15db9272671801479f91cf6f472152700ccbefb</div>
<div class="text">
Let’s make sure that we are putting a disclaimer for Americans. Americans can only buy XRP on either Bitrue or Uphold
</div>
</div>
</div>
<div class="message service" id="message18840">84d28ab6103f8b6aa1e72b7b74cb2385209ad04f5f6c1c6e1801b2d159585389 invited 3cb99a84349a25c0dd4b840fc8da21edd2dddfeb41d0b6fb79bac1123a4c2086</div>
<div class="message default clearfix" id="message18841">
<div class="pull_left userpic_wrap">
<div class="userpic userpic6" style="width: 42px; height: 42px">
<div class="initials" style="line-height: 42px">#</div>
</div>
</div>
<div class="body">
<div class="pull_right date details" title="29.01.2021 16:08:10">
16:08
</div>
<div class="from_name">f35f851f7def83ae821b2aab45cd56d1b52c2984df415932530ed611c8801ef4</div>
<div class="text">
You guys seen coinmarket cap lately? Lol Rank #0 is WSB
</div>
</div>
</div>
<div class="message service" id="message18842">b1259567b8a27cd0ee0ce4c79d0670c75bada9e86dcdeff374ffd922d41cbe7e invited 15a7b9a58cdbd584ce0e6830ffd859516d617ce470ad26ecae65d674543bd77b</div>
<div class="message default clearfix" id="message18843">
<div class="pull_left userpic_wrap">
<div class="userpic userpic5" style="width: 42px; height: 42px">
<div class="initials" style="line-height: 42px">#</div>
</div>
</div>
<div class="body">
<div class="pull_right date details" title="29.01.2021 16:08:20">
16:08
</div>
<div class="from_name">928ddb92545a06250b8453b5434bdbfab2a77d6b8fb0465a7cb23da43c531d60</div>
<div class="text">
MUTE
</div>
</div>
</div>
<div class="message service" id="message18844">300648cea31d54fdec1ce29f8771bcae5107e97e6a9d3b98567a28cf85306b64 invited d45a7a7607ee853188de8fb9029320c2cecd60131265a7fe66995ab7178aca04</div>
<div class="message service" id="message18845">d7cda0ca2c8586e512c425368fcb2bba62e81475bfceb4284f4906de8ec242bc invited f5aa5054a5747dba29f9df50e5130e24d9425a654443137ab5040d6d3e3fafcb</div>
<div class="message service" id="message18846">005ae7b7827a191d38f93665d58b3101d25087e2874d4db5112a9dbd0a61c2dd invited 307128ff4d35a7e2b87909cebfd2c3fdf24b412fcc1a978d286ffa46b7c32546</div>
<div class="message default clearfix" id="message18847">
<div class="pull_left userpic_wrap">
<div class="userpic userpic5" style="width: 42px; height: 42px">
<div class="initials" style="line-height: 42px">#</div>
</div>
</div>
<div class="body">
<div class="pull_right date details" title="29.01.2021 16:08:20">
16:08
</div>
<div class="from_name">30d4afa35329c2cbc58e87803b9d66469030c3b52dd69cb2f36157a8be9915de</div>
<div class="reply_to details">
In reply to <a href="#go_to_message18830" onclick="return GoToMessage(18830)">this message</a>
</div>
<div class="text">
Thank you.
</div>
</div>
</div>
<div class="message service" id="message18848">136d2b5f00e7ca3ccfa7e74846000997fb0baa9c1ed653053e1406f4b0c2901e invited 41f0dae57fff6926face689f438eaf398ef9bbff2719b8f8c348e9ec54b30f8e</div>
<div class="message default clearfix" id="message18849">
<div class="pull_left userpic_wrap">
<div class="userpic userpic5" style="width: 42px; height: 42px">
<div class="initials" style="line-height: 42px">#</div>
</div>
</div>
<div class="body">