-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtweet_json.txt
2331 lines (2331 loc) · 181 KB
/
tweet_json.txt
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
{"tweet_id": 892420643555336193, "retweet_count": 7651, "favorite_count": 35959}
{"tweet_id": 892177421306343426, "retweet_count": 5650, "favorite_count": 31042}
{"tweet_id": 891815181378084864, "retweet_count": 3748, "favorite_count": 23357}
{"tweet_id": 891689557279858688, "retweet_count": 7815, "favorite_count": 39263}
{"tweet_id": 891327558926688256, "retweet_count": 8411, "favorite_count": 37504}
{"tweet_id": 891087950875897856, "retweet_count": 2823, "favorite_count": 18898}
{"tweet_id": 890971913173991426, "retweet_count": 1839, "favorite_count": 10980}
{"tweet_id": 890729181411237888, "retweet_count": 17067, "favorite_count": 60605}
{"tweet_id": 890609185150312448, "retweet_count": 3886, "favorite_count": 25995}
{"tweet_id": 890240255349198849, "retweet_count": 6644, "favorite_count": 29714}
{"tweet_id": 890006608113172480, "retweet_count": 6627, "favorite_count": 28591}
{"tweet_id": 889880896479866881, "retweet_count": 4509, "favorite_count": 26008}
{"tweet_id": 889665388333682689, "retweet_count": 9040, "favorite_count": 44766}
{"tweet_id": 889638837579907072, "retweet_count": 4054, "favorite_count": 25197}
{"tweet_id": 889531135344209921, "retweet_count": 2044, "favorite_count": 14128}
{"tweet_id": 889278841981685760, "retweet_count": 4826, "favorite_count": 23480}
{"tweet_id": 888917238123831296, "retweet_count": 4064, "favorite_count": 27129}
{"tweet_id": 888804989199671297, "retweet_count": 3833, "favorite_count": 23826}
{"tweet_id": 888554962724278272, "retweet_count": 3148, "favorite_count": 18392}
{"tweet_id": 888078434458587136, "retweet_count": 3140, "favorite_count": 20302}
{"tweet_id": 887705289381826560, "retweet_count": 4887, "favorite_count": 28194}
{"tweet_id": 887517139158093824, "retweet_count": 10661, "favorite_count": 43241}
{"tweet_id": 887473957103951883, "retweet_count": 16286, "favorite_count": 64077}
{"tweet_id": 887343217045368832, "retweet_count": 9483, "favorite_count": 31373}
{"tweet_id": 887101392804085760, "retweet_count": 5403, "favorite_count": 28560}
{"tweet_id": 886983233522544640, "retweet_count": 6938, "favorite_count": 32539}
{"tweet_id": 886736880519319552, "retweet_count": 2910, "favorite_count": 11165}
{"tweet_id": 886680336477933568, "retweet_count": 4055, "favorite_count": 20955}
{"tweet_id": 886366144734445568, "retweet_count": 2870, "favorite_count": 19697}
{"tweet_id": 886267009285017600, "retweet_count": 4, "favorite_count": 111}
{"tweet_id": 886258384151887873, "retweet_count": 5718, "favorite_count": 26094}
{"tweet_id": 886054160059072513, "retweet_count": 100, "favorite_count": 0}
{"tweet_id": 885984800019947520, "retweet_count": 6082, "favorite_count": 30371}
{"tweet_id": 885528943205470208, "retweet_count": 5784, "favorite_count": 33494}
{"tweet_id": 885518971528720385, "retweet_count": 3382, "favorite_count": 19091}
{"tweet_id": 885311592912609280, "retweet_count": 16762, "favorite_count": 0}
{"tweet_id": 885167619883638784, "retweet_count": 3956, "favorite_count": 20399}
{"tweet_id": 884925521741709313, "retweet_count": 16366, "favorite_count": 71835}
{"tweet_id": 884876753390489601, "retweet_count": 5048, "favorite_count": 25949}
{"tweet_id": 884562892145688576, "retweet_count": 4254, "favorite_count": 22663}
{"tweet_id": 884441805382717440, "retweet_count": 5156, "favorite_count": 25274}
{"tweet_id": 884247878851493888, "retweet_count": 18389, "favorite_count": 67645}
{"tweet_id": 884162670584377345, "retweet_count": 2712, "favorite_count": 19020}
{"tweet_id": 883838122936631299, "retweet_count": 3105, "favorite_count": 20374}
{"tweet_id": 883482846933004288, "retweet_count": 8947, "favorite_count": 42723}
{"tweet_id": 883360690899218434, "retweet_count": 3351, "favorite_count": 21137}
{"tweet_id": 883117836046086144, "retweet_count": 6017, "favorite_count": 34604}
{"tweet_id": 882992080364220416, "retweet_count": 3520, "favorite_count": 22276}
{"tweet_id": 882762694511734784, "retweet_count": 4426, "favorite_count": 26330}
{"tweet_id": 882627270321602560, "retweet_count": 5502, "favorite_count": 26098}
{"tweet_id": 882268110199369728, "retweet_count": 10482, "favorite_count": 41779}
{"tweet_id": 882045870035918850, "retweet_count": 4420, "favorite_count": 27339}
{"tweet_id": 881906580714921986, "retweet_count": 3081, "favorite_count": 22702}
{"tweet_id": 881666595344535552, "retweet_count": 9661, "favorite_count": 47256}
{"tweet_id": 881633300179243008, "retweet_count": 7, "favorite_count": 117}
{"tweet_id": 881536004380872706, "retweet_count": 14476, "favorite_count": 46126}
{"tweet_id": 881268444196462592, "retweet_count": 4783, "favorite_count": 21666}
{"tweet_id": 880935762899988482, "retweet_count": 2534, "favorite_count": 15953}
{"tweet_id": 880872448815771648, "retweet_count": 3470, "favorite_count": 19850}
{"tweet_id": 880465832366813184, "retweet_count": 5634, "favorite_count": 26544}
{"tweet_id": 880221127280381952, "retweet_count": 3780, "favorite_count": 25148}
{"tweet_id": 880095782870896641, "retweet_count": 3932, "favorite_count": 25761}
{"tweet_id": 879862464715927552, "retweet_count": 3167, "favorite_count": 20866}
{"tweet_id": 879674319642796034, "retweet_count": 10, "favorite_count": 293}
{"tweet_id": 879492040517615616, "retweet_count": 2896, "favorite_count": 21910}
{"tweet_id": 879415818425184262, "retweet_count": 40312, "favorite_count": 98673}
{"tweet_id": 879376492567855104, "retweet_count": 2837, "favorite_count": 15696}
{"tweet_id": 879130579576475649, "retweet_count": 6171, "favorite_count": 0}
{"tweet_id": 879050749262655488, "retweet_count": 4266, "favorite_count": 21027}
{"tweet_id": 879008229531029506, "retweet_count": 2429, "favorite_count": 17747}
{"tweet_id": 878776093423087618, "retweet_count": 3709, "favorite_count": 18091}
{"tweet_id": 878604707211726852, "retweet_count": 6430, "favorite_count": 28123}
{"tweet_id": 878404777348136964, "retweet_count": 1167, "favorite_count": 0}
{"tweet_id": 878316110768087041, "retweet_count": 6041, "favorite_count": 0}
{"tweet_id": 878281511006478336, "retweet_count": 1167, "favorite_count": 7217}
{"tweet_id": 878057613040115712, "retweet_count": 6171, "favorite_count": 39288}
{"tweet_id": 877736472329191424, "retweet_count": 17219, "favorite_count": 74039}
{"tweet_id": 877611172832227328, "retweet_count": 73, "favorite_count": 0}
{"tweet_id": 877556246731214848, "retweet_count": 3456, "favorite_count": 21196}
{"tweet_id": 877316821321428993, "retweet_count": 4734, "favorite_count": 25596}
{"tweet_id": 877201837425926144, "retweet_count": 5067, "favorite_count": 25320}
{"tweet_id": 876838120628539392, "retweet_count": 3031, "favorite_count": 19337}
{"tweet_id": 876537666061221889, "retweet_count": 4270, "favorite_count": 22134}
{"tweet_id": 876484053909872640, "retweet_count": 2154, "favorite_count": 17556}
{"tweet_id": 876120275196170240, "retweet_count": 4246, "favorite_count": 26158}
{"tweet_id": 875747767867523072, "retweet_count": 3891, "favorite_count": 23521}
{"tweet_id": 875144289856114688, "retweet_count": 4463, "favorite_count": 20504}
{"tweet_id": 875097192612077568, "retweet_count": 5532, "favorite_count": 25650}
{"tweet_id": 875021211251597312, "retweet_count": 4296, "favorite_count": 23853}
{"tweet_id": 874680097055178752, "retweet_count": 4218, "favorite_count": 26026}
{"tweet_id": 874434818259525634, "retweet_count": 13245, "favorite_count": 0}
{"tweet_id": 874296783580663808, "retweet_count": 3751, "favorite_count": 24374}
{"tweet_id": 874057562936811520, "retweet_count": 3630, "favorite_count": 21274}
{"tweet_id": 874012996292530176, "retweet_count": 9346, "favorite_count": 32086}
{"tweet_id": 873580283840344065, "retweet_count": 3599, "favorite_count": 22700}
{"tweet_id": 873337748698140672, "retweet_count": 1454, "favorite_count": 0}
{"tweet_id": 873213775632977920, "retweet_count": 1454, "favorite_count": 6709}
{"tweet_id": 872967104147763200, "retweet_count": 4952, "favorite_count": 25539}
{"tweet_id": 872820683541237760, "retweet_count": 3406, "favorite_count": 13820}
{"tweet_id": 872620804844003328, "retweet_count": 3335, "favorite_count": 19446}
{"tweet_id": 872486979161796608, "retweet_count": 8277, "favorite_count": 38251}
{"tweet_id": 872122724285648897, "retweet_count": 7405, "favorite_count": 32193}
{"tweet_id": 871879754684805121, "retweet_count": 10060, "favorite_count": 35299}
{"tweet_id": 871762521631449091, "retweet_count": 3200, "favorite_count": 18999}
{"tweet_id": 871515927908634625, "retweet_count": 3190, "favorite_count": 18953}
{"tweet_id": 871166179821445120, "retweet_count": 5246, "favorite_count": 0}
{"tweet_id": 871102520638267392, "retweet_count": 5055, "favorite_count": 19663}
{"tweet_id": 871032628920680449, "retweet_count": 3513, "favorite_count": 21368}
{"tweet_id": 870804317367881728, "retweet_count": 5691, "favorite_count": 31653}
{"tweet_id": 870726314365509632, "retweet_count": 3, "favorite_count": 114}
{"tweet_id": 870656317836468226, "retweet_count": 2419, "favorite_count": 11620}
{"tweet_id": 870374049280663552, "retweet_count": 24397, "favorite_count": 78169}
{"tweet_id": 870308999962521604, "retweet_count": 3813, "favorite_count": 20627}
{"tweet_id": 870063196459192321, "retweet_count": 7653, "favorite_count": 34399}
{"tweet_id": 869772420881756160, "retweet_count": 9337, "favorite_count": 40136}
{"tweet_id": 869702957897576449, "retweet_count": 5809, "favorite_count": 26597}
{"tweet_id": 869596645499047938, "retweet_count": 2882, "favorite_count": 15052}
{"tweet_id": 869227993411051520, "retweet_count": 3481, "favorite_count": 19263}
{"tweet_id": 868880397819494401, "retweet_count": 13334, "favorite_count": 61720}
{"tweet_id": 868639477480148993, "retweet_count": 1918, "favorite_count": 0}
{"tweet_id": 868622495443632128, "retweet_count": 4898, "favorite_count": 25168}
{"tweet_id": 868552278524837888, "retweet_count": 1918, "favorite_count": 9513}
{"tweet_id": 867900495410671616, "retweet_count": 3870, "favorite_count": 22880}
{"tweet_id": 867774946302451713, "retweet_count": 6805, "favorite_count": 32101}
{"tweet_id": 867421006826221569, "retweet_count": 2303, "favorite_count": 15204}
{"tweet_id": 867072653475098625, "retweet_count": 110, "favorite_count": 0}
{"tweet_id": 867051520902168576, "retweet_count": 7314, "favorite_count": 30493}
{"tweet_id": 866720684873056260, "retweet_count": 4452, "favorite_count": 18942}
{"tweet_id": 866686824827068416, "retweet_count": 3239, "favorite_count": 18244}
{"tweet_id": 866450705531457537, "retweet_count": 32689, "favorite_count": 115778}
{"tweet_id": 866334964761202691, "retweet_count": 13245, "favorite_count": 49605}
{"tweet_id": 866094527597207552, "retweet_count": 7795, "favorite_count": 0}
{"tweet_id": 865718153858494464, "retweet_count": 5224, "favorite_count": 24325}
{"tweet_id": 865359393868664832, "retweet_count": 4659, "favorite_count": 25079}
{"tweet_id": 865006731092295680, "retweet_count": 7163, "favorite_count": 26583}
{"tweet_id": 864873206498414592, "retweet_count": 8099, "favorite_count": 30624}
{"tweet_id": 864279568663928832, "retweet_count": 2815, "favorite_count": 13838}
{"tweet_id": 864197398364647424, "retweet_count": 8256, "favorite_count": 28463}
{"tweet_id": 863907417377173506, "retweet_count": 3862, "favorite_count": 19561}
{"tweet_id": 863553081350529029, "retweet_count": 3919, "favorite_count": 14520}
{"tweet_id": 863471782782697472, "retweet_count": 2270, "favorite_count": 0}
{"tweet_id": 863432100342583297, "retweet_count": 4904, "favorite_count": 22601}
{"tweet_id": 863427515083354112, "retweet_count": 89, "favorite_count": 2096}
{"tweet_id": 863079547188785154, "retweet_count": 1040, "favorite_count": 8356}
{"tweet_id": 863062471531167744, "retweet_count": 2270, "favorite_count": 8036}
{"tweet_id": 862831371563274240, "retweet_count": 4823, "favorite_count": 18268}
{"tweet_id": 862722525377298433, "retweet_count": 3308, "favorite_count": 16284}
{"tweet_id": 862457590147678208, "retweet_count": 4615, "favorite_count": 19461}
{"tweet_id": 862096992088072192, "retweet_count": 21674, "favorite_count": 70706}
{"tweet_id": 861383897657036800, "retweet_count": 10042, "favorite_count": 34377}
{"tweet_id": 861288531465048066, "retweet_count": 3882, "favorite_count": 16357}
{"tweet_id": 861005113778896900, "retweet_count": 3579, "favorite_count": 15916}
{"tweet_id": 860981674716409858, "retweet_count": 2014, "favorite_count": 0}
{"tweet_id": 860924035999428608, "retweet_count": 749, "favorite_count": 0}
{"tweet_id": 860563773140209665, "retweet_count": 2014, "favorite_count": 7148}
{"tweet_id": 860524505164394496, "retweet_count": 4988, "favorite_count": 22575}
{"tweet_id": 860276583193509888, "retweet_count": 3297, "favorite_count": 17542}
{"tweet_id": 860184849394610176, "retweet_count": 5496, "favorite_count": 15922}
{"tweet_id": 860177593139703809, "retweet_count": 29132, "favorite_count": 0}
{"tweet_id": 859924526012018688, "retweet_count": 3869, "favorite_count": 18715}
{"tweet_id": 859851578198683649, "retweet_count": 3310, "favorite_count": 14753}
{"tweet_id": 859607811541651456, "retweet_count": 1473, "favorite_count": 17816}
{"tweet_id": 859196978902773760, "retweet_count": 28444, "favorite_count": 85975}
{"tweet_id": 859074603037188101, "retweet_count": 12867, "favorite_count": 32363}
{"tweet_id": 858860390427611136, "retweet_count": 7664, "favorite_count": 0}
{"tweet_id": 858843525470990336, "retweet_count": 3292, "favorite_count": 14941}
{"tweet_id": 858471635011153920, "retweet_count": 4602, "favorite_count": 20627}
{"tweet_id": 858107933456039936, "retweet_count": 2744, "favorite_count": 15113}
{"tweet_id": 857989990357356544, "retweet_count": 2460, "favorite_count": 15443}
{"tweet_id": 857746408056729600, "retweet_count": 10085, "favorite_count": 32888}
{"tweet_id": 857393404942143489, "retweet_count": 1559, "favorite_count": 5647}
{"tweet_id": 857263160327368704, "retweet_count": 4291, "favorite_count": 19274}
{"tweet_id": 857214891891077121, "retweet_count": 17, "favorite_count": 215}
{"tweet_id": 857062103051644929, "retweet_count": 161, "favorite_count": 0}
{"tweet_id": 857029823797047296, "retweet_count": 3781, "favorite_count": 18125}
{"tweet_id": 856543823941562368, "retweet_count": 2744, "favorite_count": 15716}
{"tweet_id": 856526610513747968, "retweet_count": 1787, "favorite_count": 11431}
{"tweet_id": 856330835276025856, "retweet_count": 639, "favorite_count": 0}
{"tweet_id": 856288084350160898, "retweet_count": 15, "favorite_count": 495}
{"tweet_id": 856282028240666624, "retweet_count": 6002, "favorite_count": 26755}
{"tweet_id": 855862651834028034, "retweet_count": 24, "favorite_count": 324}
{"tweet_id": 855860136149123072, "retweet_count": 934, "favorite_count": 4743}
{"tweet_id": 855857698524602368, "retweet_count": 2016, "favorite_count": 11460}
{"tweet_id": 855851453814013952, "retweet_count": 17241, "favorite_count": 44196}
{"tweet_id": 855818117272018944, "retweet_count": 5192, "favorite_count": 25748}
{"tweet_id": 855459453768019968, "retweet_count": 7876, "favorite_count": 28793}
{"tweet_id": 855245323840757760, "retweet_count": 5704, "favorite_count": 0}
{"tweet_id": 855138241867124737, "retweet_count": 43, "favorite_count": 0}
{"tweet_id": 854732716440526848, "retweet_count": 5817, "favorite_count": 22032}
{"tweet_id": 854482394044301312, "retweet_count": 6588, "favorite_count": 28364}
{"tweet_id": 854365224396361728, "retweet_count": 4509, "favorite_count": 18310}
{"tweet_id": 854120357044912130, "retweet_count": 7173, "favorite_count": 31027}
{"tweet_id": 854010172552949760, "retweet_count": 3028, "favorite_count": 15747}
{"tweet_id": 853760880890318849, "retweet_count": 5532, "favorite_count": 27752}
{"tweet_id": 853639147608842240, "retweet_count": 9682, "favorite_count": 33663}
{"tweet_id": 853299958564483072, "retweet_count": 3437, "favorite_count": 15070}
{"tweet_id": 852936405516943360, "retweet_count": 1925, "favorite_count": 0}
{"tweet_id": 852912242202992640, "retweet_count": 1748, "favorite_count": 8784}
{"tweet_id": 852672615818899456, "retweet_count": 2082, "favorite_count": 14504}
{"tweet_id": 852553447878664193, "retweet_count": 3350, "favorite_count": 15874}
{"tweet_id": 852311364735569921, "retweet_count": 9616, "favorite_count": 32305}
{"tweet_id": 852226086759018497, "retweet_count": 6629, "favorite_count": 19492}
{"tweet_id": 852189679701164033, "retweet_count": 1542, "favorite_count": 11173}
{"tweet_id": 851861385021730816, "retweet_count": 19, "favorite_count": 0}
{"tweet_id": 851591660324737024, "retweet_count": 3366, "favorite_count": 15880}
{"tweet_id": 851464819735769094, "retweet_count": 6849, "favorite_count": 23697}
{"tweet_id": 851224888060895234, "retweet_count": 5574, "favorite_count": 20227}
{"tweet_id": 850753642995093505, "retweet_count": 8855, "favorite_count": 30132}
{"tweet_id": 850380195714523136, "retweet_count": 2536, "favorite_count": 12817}
{"tweet_id": 850333567704068097, "retweet_count": 319, "favorite_count": 3380}
{"tweet_id": 850145622816686080, "retweet_count": 3692, "favorite_count": 15988}
{"tweet_id": 850019790995546112, "retweet_count": 4741, "favorite_count": 19969}
{"tweet_id": 849776966551130114, "retweet_count": 7387, "favorite_count": 29806}
{"tweet_id": 849668094696017920, "retweet_count": 4823, "favorite_count": 0}
{"tweet_id": 849412302885593088, "retweet_count": 3078, "favorite_count": 15556}
{"tweet_id": 849336543269576704, "retweet_count": 1850, "favorite_count": 11199}
{"tweet_id": 849051919805034497, "retweet_count": 8256, "favorite_count": 41526}
{"tweet_id": 848690551926992896, "retweet_count": 4225, "favorite_count": 24721}
{"tweet_id": 848324959059550208, "retweet_count": 4511, "favorite_count": 24236}
{"tweet_id": 848213670039564288, "retweet_count": 711, "favorite_count": 8030}
{"tweet_id": 848212111729840128, "retweet_count": 2964, "favorite_count": 16019}
{"tweet_id": 847978865427394560, "retweet_count": 3181, "favorite_count": 0}
{"tweet_id": 847971574464610304, "retweet_count": 422, "favorite_count": 0}
{"tweet_id": 847962785489326080, "retweet_count": 4953, "favorite_count": 23108}
{"tweet_id": 847842811428974592, "retweet_count": 1296, "favorite_count": 5340}
{"tweet_id": 847617282490613760, "retweet_count": 404, "favorite_count": 6867}
{"tweet_id": 847606175596138505, "retweet_count": 3356, "favorite_count": 18468}
{"tweet_id": 847251039262605312, "retweet_count": 4227, "favorite_count": 20166}
{"tweet_id": 847157206088847362, "retweet_count": 5735, "favorite_count": 19580}
{"tweet_id": 847116187444137987, "retweet_count": 3117, "favorite_count": 21130}
{"tweet_id": 846874817362120707, "retweet_count": 3850, "favorite_count": 19783}
{"tweet_id": 846514051647705089, "retweet_count": 11302, "favorite_count": 43931}
{"tweet_id": 846505985330044928, "retweet_count": 3010, "favorite_count": 13894}
{"tweet_id": 846153765933735936, "retweet_count": 8857, "favorite_count": 31121}
{"tweet_id": 846139713627017216, "retweet_count": 9834, "favorite_count": 30606}
{"tweet_id": 846042936437604353, "retweet_count": 2805, "favorite_count": 15743}
{"tweet_id": 845812042753855489, "retweet_count": 8523, "favorite_count": 28802}
{"tweet_id": 845677943972139009, "retweet_count": 4708, "favorite_count": 24849}
{"tweet_id": 845397057150107648, "retweet_count": 1766, "favorite_count": 7525}
{"tweet_id": 845306882940190720, "retweet_count": 5295, "favorite_count": 23028}
{"tweet_id": 845098359547420673, "retweet_count": 7515, "favorite_count": 0}
{"tweet_id": 844979544864018432, "retweet_count": 2513, "favorite_count": 13457}
{"tweet_id": 844973813909606400, "retweet_count": 3130, "favorite_count": 14882}
{"tweet_id": 844580511645339650, "retweet_count": 3068, "favorite_count": 16267}
{"tweet_id": 844223788422217728, "retweet_count": 2162, "favorite_count": 13493}
{"tweet_id": 843981021012017153, "retweet_count": 2902, "favorite_count": 15008}
{"tweet_id": 843856843873095681, "retweet_count": 4551, "favorite_count": 21198}
{"tweet_id": 843604394117681152, "retweet_count": 2698, "favorite_count": 16696}
{"tweet_id": 843235543001513987, "retweet_count": 5930, "favorite_count": 21287}
{"tweet_id": 842846295480000512, "retweet_count": 3589, "favorite_count": 15115}
{"tweet_id": 842765311967449089, "retweet_count": 1259, "favorite_count": 6661}
{"tweet_id": 842535590457499648, "retweet_count": 3461, "favorite_count": 17922}
{"tweet_id": 842163532590374912, "retweet_count": 5704, "favorite_count": 24178}
{"tweet_id": 842115215311396866, "retweet_count": 2995, "favorite_count": 13847}
{"tweet_id": 841833993020538882, "retweet_count": 14859, "favorite_count": 0}
{"tweet_id": 841680585030541313, "retweet_count": 7714, "favorite_count": 25499}
{"tweet_id": 841439858740625411, "retweet_count": 3638, "favorite_count": 12530}
{"tweet_id": 841320156043304961, "retweet_count": 5434, "favorite_count": 19629}
{"tweet_id": 841314665196081154, "retweet_count": 4596, "favorite_count": 15688}
{"tweet_id": 841077006473256960, "retweet_count": 5246, "favorite_count": 22658}
{"tweet_id": 840761248237133825, "retweet_count": 1747, "favorite_count": 0}
{"tweet_id": 840728873075638272, "retweet_count": 15920, "favorite_count": 0}
{"tweet_id": 840698636975636481, "retweet_count": 2, "favorite_count": 174}
{"tweet_id": 840696689258311684, "retweet_count": 962, "favorite_count": 12185}
{"tweet_id": 840632337062862849, "retweet_count": 1747, "favorite_count": 8921}
{"tweet_id": 840370681858686976, "retweet_count": 4495, "favorite_count": 16324}
{"tweet_id": 840268004936019968, "retweet_count": 5661, "favorite_count": 19118}
{"tweet_id": 839990271299457024, "retweet_count": 2253, "favorite_count": 13323}
{"tweet_id": 839549326359670784, "retweet_count": 7664, "favorite_count": 27275}
{"tweet_id": 839290600511926273, "retweet_count": 141, "favorite_count": 0}
{"tweet_id": 839239871831150596, "retweet_count": 6460, "favorite_count": 26936}
{"tweet_id": 838952994649550848, "retweet_count": 3955, "favorite_count": 19530}
{"tweet_id": 838921590096166913, "retweet_count": 2045, "favorite_count": 11078}
{"tweet_id": 838916489579200512, "retweet_count": 35, "favorite_count": 0}
{"tweet_id": 838831947270979586, "retweet_count": 10899, "favorite_count": 0}
{"tweet_id": 838561493054533637, "retweet_count": 1322, "favorite_count": 10880}
{"tweet_id": 838476387338051585, "retweet_count": 4726, "favorite_count": 22363}
{"tweet_id": 838201503651401729, "retweet_count": 9954, "favorite_count": 0}
{"tweet_id": 838150277551247360, "retweet_count": 329, "favorite_count": 1666}
{"tweet_id": 838085839343206401, "retweet_count": 1, "favorite_count": 138}
{"tweet_id": 838083903487373313, "retweet_count": 3105, "favorite_count": 17513}
{"tweet_id": 837820167694528512, "retweet_count": 7795, "favorite_count": 33909}
{"tweet_id": 837482249356513284, "retweet_count": 440, "favorite_count": 3832}
{"tweet_id": 837471256429613056, "retweet_count": 2257, "favorite_count": 12712}
{"tweet_id": 837110210464448512, "retweet_count": 2348, "favorite_count": 15978}
{"tweet_id": 836989968035819520, "retweet_count": 2278, "favorite_count": 12704}
{"tweet_id": 836753516572119041, "retweet_count": 4611, "favorite_count": 19244}
{"tweet_id": 836677758902222849, "retweet_count": 2213, "favorite_count": 12563}
{"tweet_id": 836648853927522308, "retweet_count": 554, "favorite_count": 0}
{"tweet_id": 836397794269200385, "retweet_count": 27333, "favorite_count": 0}
{"tweet_id": 836380477523124226, "retweet_count": 2970, "favorite_count": 14700}
{"tweet_id": 836260088725786625, "retweet_count": 4273, "favorite_count": 21227}
{"tweet_id": 836001077879255040, "retweet_count": 4232, "favorite_count": 19017}
{"tweet_id": 835685285446955009, "retweet_count": 8078, "favorite_count": 0}
{"tweet_id": 835574547218894849, "retweet_count": 3598, "favorite_count": 17725}
{"tweet_id": 835536468978302976, "retweet_count": 1689, "favorite_count": 0}
{"tweet_id": 835309094223372289, "retweet_count": 20813, "favorite_count": 0}
{"tweet_id": 835297930240217089, "retweet_count": 2993, "favorite_count": 16420}
{"tweet_id": 835264098648616962, "retweet_count": 1689, "favorite_count": 7711}
{"tweet_id": 835246439529840640, "retweet_count": 73, "favorite_count": 2090}
{"tweet_id": 835172783151792128, "retweet_count": 5739, "favorite_count": 26081}
{"tweet_id": 835152434251116546, "retweet_count": 2997, "favorite_count": 22327}
{"tweet_id": 834931633769889797, "retweet_count": 1632, "favorite_count": 10766}
{"tweet_id": 834786237630337024, "retweet_count": 5469, "favorite_count": 21310}
{"tweet_id": 834574053763584002, "retweet_count": 2522, "favorite_count": 13618}
{"tweet_id": 834477809192075265, "retweet_count": 10596, "favorite_count": 0}
{"tweet_id": 834458053273591808, "retweet_count": 1675, "favorite_count": 9594}
{"tweet_id": 834209720923721728, "retweet_count": 4734, "favorite_count": 20533}
{"tweet_id": 834167344700198914, "retweet_count": 3647, "favorite_count": 15793}
{"tweet_id": 834089966724603904, "retweet_count": 2128, "favorite_count": 10024}
{"tweet_id": 834086379323871233, "retweet_count": 2198, "favorite_count": 13037}
{"tweet_id": 833863086058651648, "retweet_count": 2401, "favorite_count": 13407}
{"tweet_id": 833826103416520705, "retweet_count": 3760, "favorite_count": 18037}
{"tweet_id": 833732339549220864, "retweet_count": 221, "favorite_count": 0}
{"tweet_id": 833722901757046785, "retweet_count": 3212, "favorite_count": 20760}
{"tweet_id": 833479644947025920, "retweet_count": 2045, "favorite_count": 14829}
{"tweet_id": 833124694597443584, "retweet_count": 4823, "favorite_count": 20175}
{"tweet_id": 832998151111966721, "retweet_count": 2201, "favorite_count": 13239}
{"tweet_id": 832769181346996225, "retweet_count": 39, "favorite_count": 0}
{"tweet_id": 832757312314028032, "retweet_count": 3613, "favorite_count": 16843}
{"tweet_id": 832682457690300417, "retweet_count": 2903, "favorite_count": 11866}
{"tweet_id": 832645525019123713, "retweet_count": 531, "favorite_count": 2916}
{"tweet_id": 832636094638288896, "retweet_count": 2776, "favorite_count": 15830}
{"tweet_id": 832397543355072512, "retweet_count": 2217, "favorite_count": 11951}
{"tweet_id": 832369877331693569, "retweet_count": 3181, "favorite_count": 17173}
{"tweet_id": 832273440279240704, "retweet_count": 2337, "favorite_count": 11349}
{"tweet_id": 832215909146226688, "retweet_count": 6197, "favorite_count": 0}
{"tweet_id": 832215726631055365, "retweet_count": 9307, "favorite_count": 0}
{"tweet_id": 832088576586297345, "retweet_count": 2, "favorite_count": 62}
{"tweet_id": 832040443403784192, "retweet_count": 9615, "favorite_count": 0}
{"tweet_id": 832032802820481025, "retweet_count": 4652, "favorite_count": 17860}
{"tweet_id": 831939777352105988, "retweet_count": 6126, "favorite_count": 23979}
{"tweet_id": 831926988323639298, "retweet_count": 34, "favorite_count": 335}
{"tweet_id": 831911600680497154, "retweet_count": 6499, "favorite_count": 27609}
{"tweet_id": 831670449226514432, "retweet_count": 1816, "favorite_count": 10432}
{"tweet_id": 831650051525054464, "retweet_count": 1925, "favorite_count": 7125}
{"tweet_id": 831552930092285952, "retweet_count": 2313, "favorite_count": 8974}
{"tweet_id": 831322785565769729, "retweet_count": 1551, "favorite_count": 9269}
{"tweet_id": 831315979191906304, "retweet_count": 1127, "favorite_count": 6534}
{"tweet_id": 831309418084069378, "retweet_count": 2466, "favorite_count": 11759}
{"tweet_id": 831262627380748289, "retweet_count": 2044, "favorite_count": 11902}
{"tweet_id": 830956169170665475, "retweet_count": 1501, "favorite_count": 7967}
{"tweet_id": 830583320585068544, "retweet_count": 16762, "favorite_count": 66844}
{"tweet_id": 830173239259324417, "retweet_count": 5684, "favorite_count": 0}
{"tweet_id": 830097400375152640, "retweet_count": 2942, "favorite_count": 9796}
{"tweet_id": 829878982036299777, "retweet_count": 5015, "favorite_count": 0}
{"tweet_id": 829861396166877184, "retweet_count": 1948, "favorite_count": 12250}
{"tweet_id": 829501995190984704, "retweet_count": 10596, "favorite_count": 31765}
{"tweet_id": 829449946868879360, "retweet_count": 2018, "favorite_count": 10472}
{"tweet_id": 829141528400556032, "retweet_count": 7347, "favorite_count": 24418}
{"tweet_id": 829011960981237760, "retweet_count": 16311, "favorite_count": 53212}
{"tweet_id": 828801551087042563, "retweet_count": 3422, "favorite_count": 0}
{"tweet_id": 828770345708580865, "retweet_count": 5869, "favorite_count": 25609}
{"tweet_id": 828708714936930305, "retweet_count": 11181, "favorite_count": 36556}
{"tweet_id": 828650029636317184, "retweet_count": 1349, "favorite_count": 9511}
{"tweet_id": 828409743546925057, "retweet_count": 1166, "favorite_count": 6351}
{"tweet_id": 828408677031882754, "retweet_count": 1294, "favorite_count": 7689}
{"tweet_id": 828381636999917570, "retweet_count": 2219, "favorite_count": 12595}
{"tweet_id": 828376505180889089, "retweet_count": 1072, "favorite_count": 7384}
{"tweet_id": 828372645993398273, "retweet_count": 2937, "favorite_count": 12591}
{"tweet_id": 828361771580813312, "retweet_count": 173, "favorite_count": 2197}
{"tweet_id": 828046555563323392, "retweet_count": 2880, "favorite_count": 11759}
{"tweet_id": 828011680017821696, "retweet_count": 2154, "favorite_count": 10371}
{"tweet_id": 827933404142436356, "retweet_count": 5255, "favorite_count": 20141}
{"tweet_id": 827653905312006145, "retweet_count": 3027, "favorite_count": 15534}
{"tweet_id": 827600520311402496, "retweet_count": 950, "favorite_count": 7465}
{"tweet_id": 827324948884643840, "retweet_count": 3055, "favorite_count": 15882}
{"tweet_id": 827199976799354881, "retweet_count": 2224, "favorite_count": 10593}
{"tweet_id": 826958653328592898, "retweet_count": 5015, "favorite_count": 21620}
{"tweet_id": 826848821049180160, "retweet_count": 10197, "favorite_count": 36446}
{"tweet_id": 826615380357632002, "retweet_count": 3999, "favorite_count": 0}
{"tweet_id": 826598799820865537, "retweet_count": 253, "favorite_count": 5133}
{"tweet_id": 826598365270007810, "retweet_count": 2346, "favorite_count": 10088}
{"tweet_id": 826476773533745153, "retweet_count": 4206, "favorite_count": 18453}
{"tweet_id": 826240494070030336, "retweet_count": 2621, "favorite_count": 13331}
{"tweet_id": 826204788643753985, "retweet_count": 927, "favorite_count": 4894}
{"tweet_id": 826115272272650244, "retweet_count": 3129, "favorite_count": 15689}
{"tweet_id": 825876512159186944, "retweet_count": 1876, "favorite_count": 10513}
{"tweet_id": 825829644528148480, "retweet_count": 2499, "favorite_count": 12777}
{"tweet_id": 825535076884762624, "retweet_count": 17621, "favorite_count": 57061}
{"tweet_id": 825147591692263424, "retweet_count": 4568, "favorite_count": 18353}
{"tweet_id": 825120256414846976, "retweet_count": 1263, "favorite_count": 0}
{"tweet_id": 825026590719483904, "retweet_count": 1263, "favorite_count": 6329}
{"tweet_id": 824796380199809024, "retweet_count": 5514, "favorite_count": 0}
{"tweet_id": 824775126675836928, "retweet_count": 3530, "favorite_count": 14964}
{"tweet_id": 824663926340194305, "retweet_count": 1782, "favorite_count": 10565}
{"tweet_id": 824325613288833024, "retweet_count": 10570, "favorite_count": 11887}
{"tweet_id": 824297048279236611, "retweet_count": 3881, "favorite_count": 15109}
{"tweet_id": 824025158776213504, "retweet_count": 603, "favorite_count": 4849}
{"tweet_id": 823939628516474880, "retweet_count": 2719, "favorite_count": 10670}
{"tweet_id": 823719002937630720, "retweet_count": 11255, "favorite_count": 0}
{"tweet_id": 823699002998870016, "retweet_count": 2537, "favorite_count": 14041}
{"tweet_id": 823581115634085888, "retweet_count": 2633, "favorite_count": 13094}
{"tweet_id": 823333489516937216, "retweet_count": 25, "favorite_count": 703}
{"tweet_id": 823322678127919110, "retweet_count": 4045, "favorite_count": 15814}
{"tweet_id": 823269594223824897, "retweet_count": 9942, "favorite_count": 0}
{"tweet_id": 822975315408461824, "retweet_count": 3470, "favorite_count": 17403}
{"tweet_id": 822872901745569793, "retweet_count": 43493, "favorite_count": 132273}
{"tweet_id": 822859134160621569, "retweet_count": 2289, "favorite_count": 13328}
{"tweet_id": 822647212903690241, "retweet_count": 6447, "favorite_count": 0}
{"tweet_id": 822610361945911296, "retweet_count": 2976, "favorite_count": 14901}
{"tweet_id": 822489057087389700, "retweet_count": 6447, "favorite_count": 18259}
{"tweet_id": 822462944365645825, "retweet_count": 14401, "favorite_count": 28187}
{"tweet_id": 822244816520155136, "retweet_count": 9942, "favorite_count": 35138}
{"tweet_id": 822163064745328640, "retweet_count": 4802, "favorite_count": 0}
{"tweet_id": 821886076407029760, "retweet_count": 2327, "favorite_count": 11381}
{"tweet_id": 821813639212650496, "retweet_count": 3381, "favorite_count": 0}
{"tweet_id": 821765923262631936, "retweet_count": 1670, "favorite_count": 8457}
{"tweet_id": 821522889702862852, "retweet_count": 1772, "favorite_count": 8074}
{"tweet_id": 821421320206483457, "retweet_count": 5621, "favorite_count": 0}
{"tweet_id": 821407182352777218, "retweet_count": 4366, "favorite_count": 11848}
{"tweet_id": 821153421864615936, "retweet_count": 10, "favorite_count": 257}
{"tweet_id": 821149554670182400, "retweet_count": 2000, "favorite_count": 8697}
{"tweet_id": 821107785811234820, "retweet_count": 2151, "favorite_count": 9660}
{"tweet_id": 821044531881721856, "retweet_count": 2299, "favorite_count": 12746}
{"tweet_id": 820837357901512704, "retweet_count": 6780, "favorite_count": 0}
{"tweet_id": 820749716845686786, "retweet_count": 9954, "favorite_count": 31759}
{"tweet_id": 820690176645140481, "retweet_count": 3255, "favorite_count": 12289}
{"tweet_id": 820494788566847489, "retweet_count": 569, "favorite_count": 0}
{"tweet_id": 820446719150292993, "retweet_count": 2584, "favorite_count": 0}
{"tweet_id": 820314633777061888, "retweet_count": 569, "favorite_count": 3369}
{"tweet_id": 820078625395449857, "retweet_count": 6338, "favorite_count": 19949}
{"tweet_id": 820013781606658049, "retweet_count": 1183, "favorite_count": 0}
{"tweet_id": 819952236453363712, "retweet_count": 1183, "favorite_count": 5365}
{"tweet_id": 819924195358416896, "retweet_count": 4918, "favorite_count": 12998}
{"tweet_id": 819711362133872643, "retweet_count": 3137, "favorite_count": 13460}
{"tweet_id": 819588359383371776, "retweet_count": 2004, "favorite_count": 9712}
{"tweet_id": 819347104292290561, "retweet_count": 1217, "favorite_count": 7267}
{"tweet_id": 819238181065359361, "retweet_count": 410, "favorite_count": 2285}
{"tweet_id": 819227688460238848, "retweet_count": 6780, "favorite_count": 23237}
{"tweet_id": 819015337530290176, "retweet_count": 37174, "favorite_count": 0}
{"tweet_id": 819015331746349057, "retweet_count": 19106, "favorite_count": 0}
{"tweet_id": 819006400881917954, "retweet_count": 19106, "favorite_count": 45651}
{"tweet_id": 819004803107983360, "retweet_count": 37174, "favorite_count": 87622}
{"tweet_id": 818646164899774465, "retweet_count": 21192, "favorite_count": 0}
{"tweet_id": 818627210458333184, "retweet_count": 7605, "favorite_count": 22590}
{"tweet_id": 818614493328580609, "retweet_count": 2586, "favorite_count": 9922}
{"tweet_id": 818588835076603904, "retweet_count": 6201, "favorite_count": 0}
{"tweet_id": 818536468981415936, "retweet_count": 2478, "favorite_count": 10997}
{"tweet_id": 818307523543449600, "retweet_count": 8169, "favorite_count": 0}
{"tweet_id": 818259473185828864, "retweet_count": 2287, "favorite_count": 11113}
{"tweet_id": 818145370475810820, "retweet_count": 2598, "favorite_count": 12372}
{"tweet_id": 817908911860748288, "retweet_count": 812, "favorite_count": 4898}
{"tweet_id": 817827839487737858, "retweet_count": 27333, "favorite_count": 52104}
{"tweet_id": 817777686764523521, "retweet_count": 2717, "favorite_count": 10838}
{"tweet_id": 817536400337801217, "retweet_count": 2994, "favorite_count": 11878}
{"tweet_id": 817502432452313088, "retweet_count": 3423, "favorite_count": 0}
{"tweet_id": 817423860136083457, "retweet_count": 14859, "favorite_count": 34134}
{"tweet_id": 817415592588222464, "retweet_count": 955, "favorite_count": 5644}
{"tweet_id": 817181837579653120, "retweet_count": 8543, "favorite_count": 0}
{"tweet_id": 817171292965273600, "retweet_count": 2044, "favorite_count": 8849}
{"tweet_id": 817120970343411712, "retweet_count": 2622, "favorite_count": 12332}
{"tweet_id": 817056546584727552, "retweet_count": 1658, "favorite_count": 8677}
{"tweet_id": 816829038950027264, "retweet_count": 4761, "favorite_count": 0}
{"tweet_id": 816816676327063552, "retweet_count": 2063, "favorite_count": 10104}
{"tweet_id": 816697700272001025, "retweet_count": 2218, "favorite_count": 9888}
{"tweet_id": 816450570814898180, "retweet_count": 8169, "favorite_count": 30712}
{"tweet_id": 816336735214911488, "retweet_count": 1961, "favorite_count": 8680}
{"tweet_id": 816091915477250048, "retweet_count": 2168, "favorite_count": 9021}
{"tweet_id": 816062466425819140, "retweet_count": 1030, "favorite_count": 0}
{"tweet_id": 816014286006976512, "retweet_count": 5325, "favorite_count": 0}
{"tweet_id": 815990720817401858, "retweet_count": 1030, "favorite_count": 4991}
{"tweet_id": 815966073409433600, "retweet_count": 8543, "favorite_count": 22638}
{"tweet_id": 815745968457060357, "retweet_count": 4180, "favorite_count": 0}
{"tweet_id": 815736392542261248, "retweet_count": 2285, "favorite_count": 9937}
{"tweet_id": 815639385530101762, "retweet_count": 1670, "favorite_count": 8314}
{"tweet_id": 815390420867969024, "retweet_count": 3842, "favorite_count": 10465}
{"tweet_id": 814986499976527872, "retweet_count": 1290, "favorite_count": 7735}
{"tweet_id": 814638523311648768, "retweet_count": 2729, "favorite_count": 11391}
{"tweet_id": 814578408554463233, "retweet_count": 5908, "favorite_count": 0}
{"tweet_id": 814530161257443328, "retweet_count": 1884, "favorite_count": 8728}
{"tweet_id": 814153002265309185, "retweet_count": 8780, "favorite_count": 29045}
{"tweet_id": 813944609378369540, "retweet_count": 3223, "favorite_count": 0}
{"tweet_id": 813910438903693312, "retweet_count": 1889, "favorite_count": 9397}
{"tweet_id": 813812741911748608, "retweet_count": 14153, "favorite_count": 36813}
{"tweet_id": 813800681631023104, "retweet_count": 1785, "favorite_count": 8398}
{"tweet_id": 813217897535406080, "retweet_count": 7381, "favorite_count": 18841}
{"tweet_id": 813202720496779264, "retweet_count": 1835, "favorite_count": 9338}
{"tweet_id": 813187593374461952, "retweet_count": 4416, "favorite_count": 20097}
{"tweet_id": 813172488309972993, "retweet_count": 1951, "favorite_count": 9370}
{"tweet_id": 813157409116065792, "retweet_count": 2235, "favorite_count": 7857}
{"tweet_id": 813142292504645637, "retweet_count": 2414, "favorite_count": 8573}
{"tweet_id": 813130366689148928, "retweet_count": 455, "favorite_count": 4523}
{"tweet_id": 813127251579564032, "retweet_count": 3178, "favorite_count": 11977}
{"tweet_id": 813112105746448384, "retweet_count": 2779, "favorite_count": 10417}
{"tweet_id": 813096984823349248, "retweet_count": 3668, "favorite_count": 10695}
{"tweet_id": 813081950185472002, "retweet_count": 2814, "favorite_count": 10003}
{"tweet_id": 813066809284972545, "retweet_count": 1979, "favorite_count": 8046}
{"tweet_id": 813051746834595840, "retweet_count": 7459, "favorite_count": 21222}
{"tweet_id": 812781120811126785, "retweet_count": 1928, "favorite_count": 7663}
{"tweet_id": 812709060537683968, "retweet_count": 1449, "favorite_count": 6691}
{"tweet_id": 812503143955202048, "retweet_count": 1236, "favorite_count": 6155}
{"tweet_id": 812466873996607488, "retweet_count": 1956, "favorite_count": 8059}
{"tweet_id": 812372279581671427, "retweet_count": 3707, "favorite_count": 13808}
{"tweet_id": 811985624773361665, "retweet_count": 1422, "favorite_count": 7347}
{"tweet_id": 811744202451197953, "retweet_count": 1622, "favorite_count": 7634}
{"tweet_id": 811647686436880384, "retweet_count": 753, "favorite_count": 5680}
{"tweet_id": 811627233043480576, "retweet_count": 3124, "favorite_count": 12922}
{"tweet_id": 811386762094317568, "retweet_count": 6470, "favorite_count": 21172}
{"tweet_id": 810984652412424192, "retweet_count": 1459, "favorite_count": 5405}
{"tweet_id": 810896069567610880, "retweet_count": 1797, "favorite_count": 9123}
{"tweet_id": 810657578271330305, "retweet_count": 2687, "favorite_count": 11103}
{"tweet_id": 810284430598270976, "retweet_count": 11459, "favorite_count": 35696}
{"tweet_id": 810254108431155201, "retweet_count": 3422, "favorite_count": 14884}
{"tweet_id": 809920764300447744, "retweet_count": 3999, "favorite_count": 15729}
{"tweet_id": 809808892968534016, "retweet_count": 4962, "favorite_count": 0}
{"tweet_id": 809448704142938112, "retweet_count": 1486, "favorite_count": 7026}
{"tweet_id": 809220051211603969, "retweet_count": 5684, "favorite_count": 20175}
{"tweet_id": 809084759137812480, "retweet_count": 3576, "favorite_count": 13409}
{"tweet_id": 808838249661788160, "retweet_count": 3087, "favorite_count": 10245}
{"tweet_id": 808733504066486276, "retweet_count": 2195, "favorite_count": 8003}
{"tweet_id": 808501579447930884, "retweet_count": 2640, "favorite_count": 11453}
{"tweet_id": 808344865868283904, "retweet_count": 21192, "favorite_count": 43126}
{"tweet_id": 808134635716833280, "retweet_count": 6029, "favorite_count": 0}
{"tweet_id": 808106460588765185, "retweet_count": 2234, "favorite_count": 8907}
{"tweet_id": 808001312164028416, "retweet_count": 3593, "favorite_count": 12690}
{"tweet_id": 807621403335917568, "retweet_count": 3674, "favorite_count": 14775}
{"tweet_id": 807106840509214720, "retweet_count": 56220, "favorite_count": 119847}
{"tweet_id": 807059379405148160, "retweet_count": 7462, "favorite_count": 0}
{"tweet_id": 807010152071229440, "retweet_count": 3922, "favorite_count": 13258}
{"tweet_id": 806629075125202948, "retweet_count": 35156, "favorite_count": 75716}
{"tweet_id": 806620845233815552, "retweet_count": 5618, "favorite_count": 0}
{"tweet_id": 806576416489959424, "retweet_count": 1974, "favorite_count": 4956}
{"tweet_id": 806542213899489280, "retweet_count": 2392, "favorite_count": 10355}
{"tweet_id": 806242860592926720, "retweet_count": 11813, "favorite_count": 0}
{"tweet_id": 806219024703037440, "retweet_count": 1213, "favorite_count": 6519}
{"tweet_id": 805958939288408065, "retweet_count": 5450, "favorite_count": 0}
{"tweet_id": 805932879469572096, "retweet_count": 1951, "favorite_count": 8385}
{"tweet_id": 805826884734976000, "retweet_count": 1860, "favorite_count": 6655}
{"tweet_id": 805823200554876929, "retweet_count": 8151, "favorite_count": 0}
{"tweet_id": 805520635690676224, "retweet_count": 1680, "favorite_count": 5830}
{"tweet_id": 805487436403003392, "retweet_count": 2559, "favorite_count": 8910}
{"tweet_id": 805207613751304193, "retweet_count": 1747, "favorite_count": 7941}
{"tweet_id": 804738756058218496, "retweet_count": 3869, "favorite_count": 13886}
{"tweet_id": 804475857670639616, "retweet_count": 2041, "favorite_count": 6220}
{"tweet_id": 804413760345620481, "retweet_count": 3284, "favorite_count": 0}
{"tweet_id": 804026241225523202, "retweet_count": 16411, "favorite_count": 45084}
{"tweet_id": 803773340896923648, "retweet_count": 2785, "favorite_count": 10194}
{"tweet_id": 803692223237865472, "retweet_count": 7546, "favorite_count": 0}
{"tweet_id": 803638050916102144, "retweet_count": 4205, "favorite_count": 11086}
{"tweet_id": 803380650405482500, "retweet_count": 1895, "favorite_count": 7882}
{"tweet_id": 803321560782307329, "retweet_count": 5411, "favorite_count": 0}
{"tweet_id": 803276597545603072, "retweet_count": 2493, "favorite_count": 10167}
{"tweet_id": 802952499103731712, "retweet_count": 2039, "favorite_count": 9141}
{"tweet_id": 802624713319034886, "retweet_count": 2958, "favorite_count": 0}
{"tweet_id": 802600418706604034, "retweet_count": 1490, "favorite_count": 7202}
{"tweet_id": 802572683846291456, "retweet_count": 2550, "favorite_count": 9057}
{"tweet_id": 802323869084381190, "retweet_count": 5924, "favorite_count": 16438}
{"tweet_id": 802265048156610565, "retweet_count": 1399, "favorite_count": 6860}
{"tweet_id": 802239329049477120, "retweet_count": 2665, "favorite_count": 9207}
{"tweet_id": 802185808107208704, "retweet_count": 277, "favorite_count": 0}
{"tweet_id": 801958328846974976, "retweet_count": 1744, "favorite_count": 7863}
{"tweet_id": 801854953262350336, "retweet_count": 240, "favorite_count": 1806}
{"tweet_id": 801538201127157760, "retweet_count": 2103, "favorite_count": 8341}
{"tweet_id": 801285448605831168, "retweet_count": 836, "favorite_count": 6137}
{"tweet_id": 801167903437357056, "retweet_count": 6029, "favorite_count": 24797}
{"tweet_id": 801127390143516673, "retweet_count": 4008, "favorite_count": 0}
{"tweet_id": 801115127852503040, "retweet_count": 2134, "favorite_count": 8187}
{"tweet_id": 800859414831898624, "retweet_count": 98, "favorite_count": 695}
{"tweet_id": 800855607700029440, "retweet_count": 1636, "favorite_count": 0}
{"tweet_id": 800751577355128832, "retweet_count": 2839, "favorite_count": 10712}
{"tweet_id": 800513324630806528, "retweet_count": 3035, "favorite_count": 13306}
{"tweet_id": 800459316964663297, "retweet_count": 2202, "favorite_count": 9641}
{"tweet_id": 800443802682937345, "retweet_count": 4389, "favorite_count": 0}
{"tweet_id": 800388270626521089, "retweet_count": 2852, "favorite_count": 11299}
{"tweet_id": 800188575492947969, "retweet_count": 4010, "favorite_count": 0}
{"tweet_id": 800141422401830912, "retweet_count": 2584, "favorite_count": 15497}
{"tweet_id": 800018252395122689, "retweet_count": 13376, "favorite_count": 28773}
{"tweet_id": 799774291445383169, "retweet_count": 4767, "favorite_count": 0}
{"tweet_id": 799757965289017345, "retweet_count": 2202, "favorite_count": 8519}
{"tweet_id": 799422933579902976, "retweet_count": 1956, "favorite_count": 8179}
{"tweet_id": 799308762079035393, "retweet_count": 5556, "favorite_count": 0}
{"tweet_id": 799297110730567681, "retweet_count": 2804, "favorite_count": 10036}
{"tweet_id": 799063482566066176, "retweet_count": 2505, "favorite_count": 8181}
{"tweet_id": 798933969379225600, "retweet_count": 4538, "favorite_count": 13274}
{"tweet_id": 798925684722855936, "retweet_count": 1467, "favorite_count": 7608}
{"tweet_id": 798705661114773508, "retweet_count": 6752, "favorite_count": 0}
{"tweet_id": 798701998996647937, "retweet_count": 7916, "favorite_count": 0}
{"tweet_id": 798697898615730177, "retweet_count": 6631, "favorite_count": 0}
{"tweet_id": 798694562394996736, "retweet_count": 5045, "favorite_count": 0}
{"tweet_id": 798686750113755136, "retweet_count": 2373, "favorite_count": 0}
{"tweet_id": 798682547630837760, "retweet_count": 4791, "favorite_count": 0}
{"tweet_id": 798673117451325440, "retweet_count": 5638, "favorite_count": 0}
{"tweet_id": 798665375516884993, "retweet_count": 3975, "favorite_count": 0}
{"tweet_id": 798644042770751489, "retweet_count": 1882, "favorite_count": 0}
{"tweet_id": 798628517273620480, "retweet_count": 2009, "favorite_count": 0}
{"tweet_id": 798585098161549313, "retweet_count": 5803, "favorite_count": 0}
{"tweet_id": 798576900688019456, "retweet_count": 5941, "favorite_count": 0}
{"tweet_id": 798340744599797760, "retweet_count": 3402, "favorite_count": 0}
{"tweet_id": 798209839306514432, "retweet_count": 2607, "favorite_count": 10567}
{"tweet_id": 797971864723324932, "retweet_count": 3162, "favorite_count": 11760}
{"tweet_id": 797545162159308800, "retweet_count": 4948, "favorite_count": 14748}
{"tweet_id": 797236660651966464, "retweet_count": 6692, "favorite_count": 20243}
{"tweet_id": 797165961484890113, "retweet_count": 26, "favorite_count": 227}
{"tweet_id": 796904159865868288, "retweet_count": 9075, "favorite_count": 0}
{"tweet_id": 796865951799083009, "retweet_count": 1952, "favorite_count": 7803}
{"tweet_id": 796759840936919040, "retweet_count": 3078, "favorite_count": 11999}
{"tweet_id": 796563435802726400, "retweet_count": 7395, "favorite_count": 0}
{"tweet_id": 796484825502875648, "retweet_count": 1787, "favorite_count": 7681}
{"tweet_id": 796387464403357696, "retweet_count": 4216, "favorite_count": 11151}
{"tweet_id": 796177847564038144, "retweet_count": 14485, "favorite_count": 0}
{"tweet_id": 796149749086875649, "retweet_count": 14485, "favorite_count": 32692}
{"tweet_id": 796125600683540480, "retweet_count": 1836, "favorite_count": 5031}
{"tweet_id": 796116448414461957, "retweet_count": 2454, "favorite_count": 9224}
{"tweet_id": 796080075804475393, "retweet_count": 2346, "favorite_count": 8583}
{"tweet_id": 796031486298386433, "retweet_count": 3767, "favorite_count": 10956}
{"tweet_id": 795464331001561088, "retweet_count": 24006, "favorite_count": 50287}
{"tweet_id": 795400264262053889, "retweet_count": 2922, "favorite_count": 10216}
{"tweet_id": 795076730285391872, "retweet_count": 5514, "favorite_count": 16425}
{"tweet_id": 794983741416415232, "retweet_count": 3425, "favorite_count": 0}
{"tweet_id": 794926597468000259, "retweet_count": 2338, "favorite_count": 10377}
{"tweet_id": 794355576146903043, "retweet_count": 10469, "favorite_count": 0}
{"tweet_id": 794332329137291264, "retweet_count": 2724, "favorite_count": 9714}
{"tweet_id": 794205286408003585, "retweet_count": 3379, "favorite_count": 9354}
{"tweet_id": 793962221541933056, "retweet_count": 4962, "favorite_count": 17042}
{"tweet_id": 793845145112371200, "retweet_count": 1899, "favorite_count": 9356}
{"tweet_id": 793614319594401792, "retweet_count": 3185, "favorite_count": 0}
{"tweet_id": 793601777308463104, "retweet_count": 1650, "favorite_count": 8098}
{"tweet_id": 793500921481273345, "retweet_count": 2414, "favorite_count": 10816}
{"tweet_id": 793286476301799424, "retweet_count": 9307, "favorite_count": 24919}
{"tweet_id": 793271401113350145, "retweet_count": 2428, "favorite_count": 8824}
{"tweet_id": 793256262322548741, "retweet_count": 8472, "favorite_count": 20248}
{"tweet_id": 793241302385262592, "retweet_count": 3352, "favorite_count": 10654}
{"tweet_id": 793226087023144960, "retweet_count": 2915, "favorite_count": 9972}
{"tweet_id": 793210959003287553, "retweet_count": 2840, "favorite_count": 9054}
{"tweet_id": 793195938047070209, "retweet_count": 5718, "favorite_count": 15500}
{"tweet_id": 793180763617361921, "retweet_count": 2031, "favorite_count": 7033}
{"tweet_id": 793165685325201412, "retweet_count": 2832, "favorite_count": 9536}
{"tweet_id": 793150605191548928, "retweet_count": 1726, "favorite_count": 6263}
{"tweet_id": 793135492858580992, "retweet_count": 2538, "favorite_count": 6518}
{"tweet_id": 793120401413079041, "retweet_count": 3980, "favorite_count": 12843}
{"tweet_id": 792913359805018113, "retweet_count": 4042, "favorite_count": 14534}
{"tweet_id": 792883833364439040, "retweet_count": 4340, "favorite_count": 11463}
{"tweet_id": 792773781206999040, "retweet_count": 1703, "favorite_count": 7457}
{"tweet_id": 792394556390137856, "retweet_count": 4359, "favorite_count": 13634}
{"tweet_id": 792050063153438720, "retweet_count": 1829, "favorite_count": 7247}
{"tweet_id": 791821351946420224, "retweet_count": 21418, "favorite_count": 0}
{"tweet_id": 791784077045166082, "retweet_count": 9737, "favorite_count": 0}
{"tweet_id": 791780927877898241, "retweet_count": 3880, "favorite_count": 0}
{"tweet_id": 791774931465953280, "retweet_count": 22521, "favorite_count": 45750}
{"tweet_id": 791672322847637504, "retweet_count": 3185, "favorite_count": 11905}
{"tweet_id": 791406955684368384, "retweet_count": 4180, "favorite_count": 13322}
{"tweet_id": 791312159183634433, "retweet_count": 2574, "favorite_count": 8914}
{"tweet_id": 791026214425268224, "retweet_count": 4169, "favorite_count": 0}
{"tweet_id": 790987426131050500, "retweet_count": 2168, "favorite_count": 9958}
{"tweet_id": 790946055508652032, "retweet_count": 4761, "favorite_count": 16875}
{"tweet_id": 790723298204217344, "retweet_count": 2346, "favorite_count": 0}
{"tweet_id": 790698755171364864, "retweet_count": 1955, "favorite_count": 8328}
{"tweet_id": 790581949425475584, "retweet_count": 7262, "favorite_count": 20934}
{"tweet_id": 790337589677002753, "retweet_count": 1911, "favorite_count": 7934}
{"tweet_id": 790277117346975746, "retweet_count": 3223, "favorite_count": 12738}
{"tweet_id": 790227638568808452, "retweet_count": 3625, "favorite_count": 0}
{"tweet_id": 789986466051088384, "retweet_count": 2346, "favorite_count": 9386}
{"tweet_id": 789960241177853952, "retweet_count": 4181, "favorite_count": 0}
{"tweet_id": 789903600034189313, "retweet_count": 4198, "favorite_count": 10493}
{"tweet_id": 789628658055020548, "retweet_count": 1793, "favorite_count": 7594}
{"tweet_id": 789599242079838210, "retweet_count": 1955, "favorite_count": 6862}
{"tweet_id": 789530877013393408, "retweet_count": 3425, "favorite_count": 11880}
{"tweet_id": 789314372632018944, "retweet_count": 2325, "favorite_count": 8767}
{"tweet_id": 789280767834746880, "retweet_count": 5016, "favorite_count": 0}
{"tweet_id": 789268448748703744, "retweet_count": 2641, "favorite_count": 9225}
{"tweet_id": 789137962068021249, "retweet_count": 2837, "favorite_count": 9844}
{"tweet_id": 788908386943430656, "retweet_count": 12653, "favorite_count": 27792}
{"tweet_id": 788765914992902144, "retweet_count": 10469, "favorite_count": 27685}
{"tweet_id": 788552643979468800, "retweet_count": 7280, "favorite_count": 0}
{"tweet_id": 788412144018661376, "retweet_count": 5343, "favorite_count": 15751}
{"tweet_id": 788178268662984705, "retweet_count": 2123, "favorite_count": 7319}
{"tweet_id": 788150585577050112, "retweet_count": 1305, "favorite_count": 6199}
{"tweet_id": 788070120937619456, "retweet_count": 3475, "favorite_count": 0}
{"tweet_id": 788039637453406209, "retweet_count": 1341, "favorite_count": 6208}
{"tweet_id": 787810552592695296, "retweet_count": 3092, "favorite_count": 8740}
{"tweet_id": 787717603741622272, "retweet_count": 2816, "favorite_count": 10392}
{"tweet_id": 787397959788929025, "retweet_count": 2882, "favorite_count": 11032}
{"tweet_id": 787322443945877504, "retweet_count": 1763, "favorite_count": 7879}
{"tweet_id": 787111942498508800, "retweet_count": 6843, "favorite_count": 0}
{"tweet_id": 786963064373534720, "retweet_count": 8078, "favorite_count": 26951}
{"tweet_id": 786729988674449408, "retweet_count": 2453, "favorite_count": 0}
{"tweet_id": 786709082849828864, "retweet_count": 6197, "favorite_count": 18453}
{"tweet_id": 786664955043049472, "retweet_count": 2592, "favorite_count": 10728}
{"tweet_id": 786595970293370880, "retweet_count": 3158, "favorite_count": 9564}
{"tweet_id": 786363235746385920, "retweet_count": 3556, "favorite_count": 11019}
{"tweet_id": 786286427768250368, "retweet_count": 2885, "favorite_count": 8065}
{"tweet_id": 786233965241827333, "retweet_count": 4802, "favorite_count": 15442}
{"tweet_id": 786051337297522688, "retweet_count": 156, "favorite_count": 1436}
{"tweet_id": 786036967502913536, "retweet_count": 7110, "favorite_count": 0}
{"tweet_id": 785927819176054784, "retweet_count": 3233, "favorite_count": 11528}
{"tweet_id": 785872687017132033, "retweet_count": 1837, "favorite_count": 6774}
{"tweet_id": 785639753186217984, "retweet_count": 2264, "favorite_count": 7938}
{"tweet_id": 785533386513321988, "retweet_count": 2023, "favorite_count": 9231}
{"tweet_id": 785515384317313025, "retweet_count": 1278, "favorite_count": 6188}
{"tweet_id": 785264754247995392, "retweet_count": 1655, "favorite_count": 7347}
{"tweet_id": 785170936622350336, "retweet_count": 4891, "favorite_count": 12172}
{"tweet_id": 784826020293709826, "retweet_count": 3284, "favorite_count": 10222}
{"tweet_id": 784517518371221505, "retweet_count": 2569, "favorite_count": 9072}
{"tweet_id": 784431430411685888, "retweet_count": 1286, "favorite_count": 5769}
{"tweet_id": 784183165795655680, "retweet_count": 8151, "favorite_count": 20288}
{"tweet_id": 784057939640352768, "retweet_count": 11255, "favorite_count": 30080}
{"tweet_id": 783839966405230592, "retweet_count": 10899, "favorite_count": 30370}
{"tweet_id": 783821107061198850, "retweet_count": 1996, "favorite_count": 7433}
{"tweet_id": 783695101801398276, "retweet_count": 3254, "favorite_count": 10571}
{"tweet_id": 783466772167098368, "retweet_count": 2275, "favorite_count": 8551}
{"tweet_id": 783391753726550016, "retweet_count": 5541, "favorite_count": 17059}
{"tweet_id": 783347506784731136, "retweet_count": 5615, "favorite_count": 0}
{"tweet_id": 783334639985389568, "retweet_count": 11813, "favorite_count": 29451}
{"tweet_id": 783085703974514689, "retweet_count": 2229, "favorite_count": 8230}
{"tweet_id": 782969140009107456, "retweet_count": 7462, "favorite_count": 24363}
{"tweet_id": 782747134529531904, "retweet_count": 1423, "favorite_count": 7543}
{"tweet_id": 782722598790725632, "retweet_count": 5450, "favorite_count": 17437}
{"tweet_id": 782598640137187329, "retweet_count": 1893, "favorite_count": 7875}
{"tweet_id": 782305867769217024, "retweet_count": 5621, "favorite_count": 16811}
{"tweet_id": 782021823840026624, "retweet_count": 6266, "favorite_count": 0}
{"tweet_id": 781955203444699136, "retweet_count": 3406, "favorite_count": 11237}
{"tweet_id": 781661882474196992, "retweet_count": 2742, "favorite_count": 10520}
{"tweet_id": 781655249211752448, "retweet_count": 1142, "favorite_count": 4028}
{"tweet_id": 781524693396357120, "retweet_count": 5618, "favorite_count": 20933}
{"tweet_id": 781308096455073793, "retweet_count": 2576, "favorite_count": 7205}
{"tweet_id": 781251288990355457, "retweet_count": 2098, "favorite_count": 8524}
{"tweet_id": 781163403222056960, "retweet_count": 2769, "favorite_count": 9895}
{"tweet_id": 780931614150983680, "retweet_count": 7395, "favorite_count": 21816}
{"tweet_id": 780858289093574656, "retweet_count": 2036, "favorite_count": 7248}
{"tweet_id": 780800785462489090, "retweet_count": 1315, "favorite_count": 5534}
{"tweet_id": 780601303617732608, "retweet_count": 3381, "favorite_count": 12220}
{"tweet_id": 780543529827336192, "retweet_count": 1757, "favorite_count": 6360}
{"tweet_id": 780496263422808064, "retweet_count": 3727, "favorite_count": 0}
{"tweet_id": 780476555013349377, "retweet_count": 114, "favorite_count": 0}
{"tweet_id": 780459368902959104, "retweet_count": 1088, "favorite_count": 5344}
{"tweet_id": 780192070812196864, "retweet_count": 2258, "favorite_count": 8784}
{"tweet_id": 780092040432480260, "retweet_count": 2321, "favorite_count": 0}
{"tweet_id": 780074436359819264, "retweet_count": 5021, "favorite_count": 12271}
{"tweet_id": 779834332596887552, "retweet_count": 7110, "favorite_count": 19063}
{"tweet_id": 779377524342161408, "retweet_count": 3136, "favorite_count": 8870}
{"tweet_id": 779124354206535695, "retweet_count": 18455, "favorite_count": 0}
{"tweet_id": 779056095788752897, "retweet_count": 4574, "favorite_count": 14873}
{"tweet_id": 778990705243029504, "retweet_count": 7252, "favorite_count": 20134}
{"tweet_id": 778774459159379968, "retweet_count": 9974, "favorite_count": 0}
{"tweet_id": 778764940568104960, "retweet_count": 366, "favorite_count": 873}
{"tweet_id": 778748913645780993, "retweet_count": 1323, "favorite_count": 6946}
{"tweet_id": 778650543019483137, "retweet_count": 1513, "favorite_count": 5820}
{"tweet_id": 778624900596654080, "retweet_count": 1018, "favorite_count": 4671}
{"tweet_id": 778408200802557953, "retweet_count": 4357, "favorite_count": 13712}
{"tweet_id": 778396591732486144, "retweet_count": 12328, "favorite_count": 0}
{"tweet_id": 778383385161035776, "retweet_count": 1111, "favorite_count": 5884}
{"tweet_id": 778286810187399168, "retweet_count": 3322, "favorite_count": 10446}
{"tweet_id": 778039087836069888, "retweet_count": 2664, "favorite_count": 8566}
{"tweet_id": 778027034220126208, "retweet_count": 1626, "favorite_count": 6591}
{"tweet_id": 777953400541634568, "retweet_count": 3556, "favorite_count": 0}
{"tweet_id": 777885040357281792, "retweet_count": 1638, "favorite_count": 6386}
{"tweet_id": 777684233540206592, "retweet_count": 2958, "favorite_count": 11298}
{"tweet_id": 777641927919427584, "retweet_count": 4258, "favorite_count": 0}
{"tweet_id": 777621514455814149, "retweet_count": 2520, "favorite_count": 8805}
{"tweet_id": 777189768882946048, "retweet_count": 4334, "favorite_count": 14378}
{"tweet_id": 776819012571455488, "retweet_count": 13783, "favorite_count": 0}
{"tweet_id": 776813020089548800, "retweet_count": 1217, "favorite_count": 4916}
{"tweet_id": 776477788987613185, "retweet_count": 2800, "favorite_count": 8871}
{"tweet_id": 776249906839351296, "retweet_count": 9197, "favorite_count": 0}
{"tweet_id": 776218204058357768, "retweet_count": 15978, "favorite_count": 30092}
{"tweet_id": 776201521193218049, "retweet_count": 2533, "favorite_count": 9680}
{"tweet_id": 776113305656188928, "retweet_count": 4389, "favorite_count": 11842}
{"tweet_id": 776088319444877312, "retweet_count": 152, "favorite_count": 1854}
{"tweet_id": 775898661951791106, "retweet_count": 16631, "favorite_count": 0}
{"tweet_id": 775842724423557120, "retweet_count": 2671, "favorite_count": 11779}
{"tweet_id": 775733305207554048, "retweet_count": 4008, "favorite_count": 13948}
{"tweet_id": 775729183532220416, "retweet_count": 4627, "favorite_count": 13066}
{"tweet_id": 775364825476165632, "retweet_count": 2990, "favorite_count": 7445}
{"tweet_id": 775350846108426240, "retweet_count": 3930, "favorite_count": 10228}
{"tweet_id": 775085132600442880, "retweet_count": 4767, "favorite_count": 15645}
{"tweet_id": 774757898236878852, "retweet_count": 1794, "favorite_count": 8646}
{"tweet_id": 774639387460112384, "retweet_count": 1742, "favorite_count": 6768}
{"tweet_id": 774314403806253056, "retweet_count": 5556, "favorite_count": 21889}
{"tweet_id": 773985732834758656, "retweet_count": 3889, "favorite_count": 10780}
{"tweet_id": 773922284943896577, "retweet_count": 1759, "favorite_count": 6432}
{"tweet_id": 773704687002451968, "retweet_count": 1639, "favorite_count": 6635}
{"tweet_id": 773670353721753600, "retweet_count": 1315, "favorite_count": 5378}
{"tweet_id": 773547596996571136, "retweet_count": 6201, "favorite_count": 22219}
{"tweet_id": 773336787167145985, "retweet_count": 5113, "favorite_count": 0}
{"tweet_id": 773308824254029826, "retweet_count": 7515, "favorite_count": 23422}
{"tweet_id": 773247561583001600, "retweet_count": 3272, "favorite_count": 9519}
{"tweet_id": 773191612633579521, "retweet_count": 4157, "favorite_count": 10048}
{"tweet_id": 772877495989305348, "retweet_count": 3893, "favorite_count": 8604}
{"tweet_id": 772826264096874500, "retweet_count": 2361, "favorite_count": 8100}
{"tweet_id": 772615324260794368, "retweet_count": 3399, "favorite_count": 0}
{"tweet_id": 772581559778025472, "retweet_count": 1704, "favorite_count": 6533}
{"tweet_id": 772193107915964416, "retweet_count": 1397, "favorite_count": 6077}
{"tweet_id": 772152991789019136, "retweet_count": 1136, "favorite_count": 3819}
{"tweet_id": 772117678702071809, "retweet_count": 745, "favorite_count": 3795}
{"tweet_id": 772114945936949249, "retweet_count": 471, "favorite_count": 2738}
{"tweet_id": 772102971039580160, "retweet_count": 947, "favorite_count": 4016}
{"tweet_id": 771908950375665664, "retweet_count": 1915, "favorite_count": 6621}
{"tweet_id": 771770456517009408, "retweet_count": 3402, "favorite_count": 12057}
{"tweet_id": 771500966810099713, "retweet_count": 2626, "favorite_count": 8296}
{"tweet_id": 771380798096281600, "retweet_count": 5113, "favorite_count": 10527}
{"tweet_id": 771171053431250945, "retweet_count": 7500, "favorite_count": 0}
{"tweet_id": 771136648247640064, "retweet_count": 2937, "favorite_count": 9192}
{"tweet_id": 771102124360998913, "retweet_count": 1450, "favorite_count": 6267}
{"tweet_id": 771014301343748096, "retweet_count": 1666, "favorite_count": 6893}
{"tweet_id": 770787852854652928, "retweet_count": 1204, "favorite_count": 4945}
{"tweet_id": 770772759874076672, "retweet_count": 1420, "favorite_count": 5192}
{"tweet_id": 770655142660169732, "retweet_count": 1774, "favorite_count": 7362}
{"tweet_id": 770414278348247044, "retweet_count": 2106, "favorite_count": 6345}
{"tweet_id": 770293558247038976, "retweet_count": 1487, "favorite_count": 6269}
{"tweet_id": 770093767776997377, "retweet_count": 3066, "favorite_count": 0}
{"tweet_id": 770069151037685760, "retweet_count": 2310, "favorite_count": 7626}
{"tweet_id": 769940425801170949, "retweet_count": 9615, "favorite_count": 31467}
{"tweet_id": 769695466921623552, "retweet_count": 1689, "favorite_count": 6437}
{"tweet_id": 769335591808995329, "retweet_count": 7761, "favorite_count": 0}
{"tweet_id": 769212283578875904, "retweet_count": 1729, "favorite_count": 5412}
{"tweet_id": 768970937022709760, "retweet_count": 6539, "favorite_count": 14394}
{"tweet_id": 768909767477751808, "retweet_count": 2682, "favorite_count": 0}
{"tweet_id": 768855141948723200, "retweet_count": 894, "favorite_count": 4214}
{"tweet_id": 768609597686943744, "retweet_count": 1207, "favorite_count": 4139}
{"tweet_id": 768596291618299904, "retweet_count": 1288, "favorite_count": 5051}
{"tweet_id": 768554158521745409, "retweet_count": 5867, "favorite_count": 0}
{"tweet_id": 768473857036525572, "retweet_count": 3443, "favorite_count": 13665}
{"tweet_id": 768193404517830656, "retweet_count": 3556, "favorite_count": 10892}
{"tweet_id": 767884188863397888, "retweet_count": 1386, "favorite_count": 4754}
{"tweet_id": 767754930266464257, "retweet_count": 5411, "favorite_count": 16053}
{"tweet_id": 767500508068192258, "retweet_count": 2342, "favorite_count": 7523}
{"tweet_id": 767191397493538821, "retweet_count": 3774, "favorite_count": 12347}
{"tweet_id": 767122157629476866, "retweet_count": 2863, "favorite_count": 10203}
{"tweet_id": 766864461642756096, "retweet_count": 5644, "favorite_count": 0}
{"tweet_id": 766793450729734144, "retweet_count": 1359, "favorite_count": 5080}
{"tweet_id": 766714921925144576, "retweet_count": 380, "favorite_count": 2619}
{"tweet_id": 766693177336135680, "retweet_count": 797, "favorite_count": 4024}
{"tweet_id": 766423258543644672, "retweet_count": 1592, "favorite_count": 6012}
{"tweet_id": 766313316352462849, "retweet_count": 1891, "favorite_count": 6813}
{"tweet_id": 766078092750233600, "retweet_count": 2632, "favorite_count": 0}
{"tweet_id": 766069199026450432, "retweet_count": 853, "favorite_count": 4234}
{"tweet_id": 766008592277377025, "retweet_count": 500, "favorite_count": 3747}
{"tweet_id": 765719909049503744, "retweet_count": 2157, "favorite_count": 7250}
{"tweet_id": 765669560888528897, "retweet_count": 1224, "favorite_count": 5199}
{"tweet_id": 765395769549590528, "retweet_count": 3389, "favorite_count": 26655}
{"tweet_id": 765371061932261376, "retweet_count": 2168, "favorite_count": 7083}
{"tweet_id": 765222098633691136, "retweet_count": 3399, "favorite_count": 11637}
{"tweet_id": 764857477905154048, "retweet_count": 1781, "favorite_count": 6461}
{"tweet_id": 764259802650378240, "retweet_count": 1501, "favorite_count": 6030}
{"tweet_id": 763956972077010945, "retweet_count": 54, "favorite_count": 759}
{"tweet_id": 763837565564780549, "retweet_count": 4169, "favorite_count": 12597}
{"tweet_id": 763183847194451968, "retweet_count": 1473, "favorite_count": 5394}
{"tweet_id": 763167063695355904, "retweet_count": 3024, "favorite_count": 0}
{"tweet_id": 763103485927849985, "retweet_count": 2298, "favorite_count": 7369}
{"tweet_id": 762699858130116608, "retweet_count": 3625, "favorite_count": 12148}
{"tweet_id": 762471784394268675, "retweet_count": 6422, "favorite_count": 11228}
{"tweet_id": 762464539388485633, "retweet_count": 4181, "favorite_count": 10316}
{"tweet_id": 762316489655476224, "retweet_count": 1126, "favorite_count": 4807}
{"tweet_id": 762035686371364864, "retweet_count": 15563, "favorite_count": 31886}
{"tweet_id": 761976711479193600, "retweet_count": 2009, "favorite_count": 5407}
{"tweet_id": 761750502866649088, "retweet_count": 3923, "favorite_count": 0}
{"tweet_id": 761745352076779520, "retweet_count": 864, "favorite_count": 4277}
{"tweet_id": 761672994376806400, "retweet_count": 29132, "favorite_count": 49536}
{"tweet_id": 761599872357261312, "retweet_count": 1191, "favorite_count": 4118}
{"tweet_id": 761371037149827077, "retweet_count": 18073, "favorite_count": 0}
{"tweet_id": 761334018830917632, "retweet_count": 1451, "favorite_count": 5196}
{"tweet_id": 761292947749015552, "retweet_count": 1087, "favorite_count": 4491}
{"tweet_id": 761227390836215808, "retweet_count": 1565, "favorite_count": 5325}
{"tweet_id": 761004547850530816, "retweet_count": 3475, "favorite_count": 11339}
{"tweet_id": 760893934457552897, "retweet_count": 979, "favorite_count": 3818}
{"tweet_id": 760656994973933572, "retweet_count": 1908, "favorite_count": 6586}
{"tweet_id": 760641137271070720, "retweet_count": 1297, "favorite_count": 4981}
{"tweet_id": 760539183865880579, "retweet_count": 3621, "favorite_count": 7565}
{"tweet_id": 760521673607086080, "retweet_count": 1386, "favorite_count": 4222}
{"tweet_id": 760290219849637889, "retweet_count": 11493, "favorite_count": 26786}
{"tweet_id": 760252756032651264, "retweet_count": 868, "favorite_count": 3949}
{"tweet_id": 760190180481531904, "retweet_count": 1803, "favorite_count": 5703}
{"tweet_id": 760153949710192640, "retweet_count": 31, "favorite_count": 0}
{"tweet_id": 759943073749200896, "retweet_count": 2081, "favorite_count": 5946}
{"tweet_id": 759923798737051648, "retweet_count": 5644, "favorite_count": 14678}
{"tweet_id": 759846353224826880, "retweet_count": 1968, "favorite_count": 6739}
{"tweet_id": 759793422261743616, "retweet_count": 1909, "favorite_count": 5957}
{"tweet_id": 759557299618865152, "retweet_count": 1183, "favorite_count": 4698}
{"tweet_id": 759447681597108224, "retweet_count": 2453, "favorite_count": 8488}
{"tweet_id": 759446261539934208, "retweet_count": 488, "favorite_count": 1673}
{"tweet_id": 759197388317847553, "retweet_count": 1945, "favorite_count": 6078}
{"tweet_id": 759159934323924993, "retweet_count": 1154, "favorite_count": 0}
{"tweet_id": 759099523532779520, "retweet_count": 4169, "favorite_count": 14499}
{"tweet_id": 759047813560868866, "retweet_count": 2009, "favorite_count": 6483}
{"tweet_id": 758854675097526272, "retweet_count": 894, "favorite_count": 3546}
{"tweet_id": 758828659922702336, "retweet_count": 3828, "favorite_count": 11208}
{"tweet_id": 758740312047005698, "retweet_count": 1613, "favorite_count": 5734}
{"tweet_id": 758474966123810816, "retweet_count": 999, "favorite_count": 3800}
{"tweet_id": 758467244762497024, "retweet_count": 2209, "favorite_count": 4777}
{"tweet_id": 758405701903519748, "retweet_count": 1909, "favorite_count": 5214}
{"tweet_id": 758355060040593408, "retweet_count": 1067, "favorite_count": 3389}
{"tweet_id": 758099635764359168, "retweet_count": 9974, "favorite_count": 19046}
{"tweet_id": 758041019896193024, "retweet_count": 374, "favorite_count": 2699}
{"tweet_id": 757741869644341248, "retweet_count": 3242, "favorite_count": 6865}
{"tweet_id": 757729163776290825, "retweet_count": 7920, "favorite_count": 0}
{"tweet_id": 757725642876129280, "retweet_count": 1211, "favorite_count": 4538}
{"tweet_id": 757611664640446465, "retweet_count": 1108, "favorite_count": 4561}
{"tweet_id": 757597904299253760, "retweet_count": 300, "favorite_count": 0}
{"tweet_id": 757596066325864448, "retweet_count": 1054, "favorite_count": 4330}
{"tweet_id": 757400162377592832, "retweet_count": 6845, "favorite_count": 15123}
{"tweet_id": 757393109802180609, "retweet_count": 1735, "favorite_count": 5805}
{"tweet_id": 757354760399941633, "retweet_count": 1419, "favorite_count": 4516}
{"tweet_id": 756998049151549440, "retweet_count": 1981, "favorite_count": 6277}
{"tweet_id": 756939218950160384, "retweet_count": 2002, "favorite_count": 6640}
{"tweet_id": 756651752796094464, "retweet_count": 1303, "favorite_count": 5038}
{"tweet_id": 756526248105566208, "retweet_count": 3578, "favorite_count": 10395}
{"tweet_id": 756303284449767430, "retweet_count": 1091, "favorite_count": 3923}
{"tweet_id": 756288534030475264, "retweet_count": 17679, "favorite_count": 43930}
{"tweet_id": 756275833623502848, "retweet_count": 1529, "favorite_count": 6400}
{"tweet_id": 755955933503782912, "retweet_count": 2873, "favorite_count": 7308}
{"tweet_id": 755206590534418437, "retweet_count": 5352, "favorite_count": 16411}
{"tweet_id": 755110668769038337, "retweet_count": 11064, "favorite_count": 21165}
{"tweet_id": 754874841593970688, "retweet_count": 7892, "favorite_count": 0}
{"tweet_id": 754856583969079297, "retweet_count": 2513, "favorite_count": 6891}
{"tweet_id": 754747087846248448, "retweet_count": 520, "favorite_count": 2585}
{"tweet_id": 754482103782404096, "retweet_count": 1950, "favorite_count": 5278}
{"tweet_id": 754449512966619136, "retweet_count": 730, "favorite_count": 3747}
{"tweet_id": 754120377874386944, "retweet_count": 2357, "favorite_count": 7864}
{"tweet_id": 753655901052166144, "retweet_count": 2164, "favorite_count": 5827}
{"tweet_id": 753420520834629632, "retweet_count": 3561, "favorite_count": 7887}
{"tweet_id": 753398408988139520, "retweet_count": 1896, "favorite_count": 5742}
{"tweet_id": 753375668877008896, "retweet_count": 2321, "favorite_count": 7622}
{"tweet_id": 753298634498793472, "retweet_count": 5685, "favorite_count": 0}
{"tweet_id": 753294487569522689, "retweet_count": 1037, "favorite_count": 3363}
{"tweet_id": 753039830821511168, "retweet_count": 20813, "favorite_count": 37032}
{"tweet_id": 753026973505581056, "retweet_count": 962, "favorite_count": 3911}
{"tweet_id": 752932432744185856, "retweet_count": 6843, "favorite_count": 12602}
{"tweet_id": 752917284578922496, "retweet_count": 1570, "favorite_count": 6921}
{"tweet_id": 752701944171524096, "retweet_count": 2852, "favorite_count": 0}
{"tweet_id": 752682090207055872, "retweet_count": 1588, "favorite_count": 5991}
{"tweet_id": 752660715232722944, "retweet_count": 1550, "favorite_count": 4368}
{"tweet_id": 752568224206688256, "retweet_count": 2275, "favorite_count": 5481}
{"tweet_id": 752519690950500352, "retweet_count": 3428, "favorite_count": 7349}
{"tweet_id": 752334515931054080, "retweet_count": 1090, "favorite_count": 3805}
{"tweet_id": 752309394570878976, "retweet_count": 16190, "favorite_count": 0}
{"tweet_id": 752173152931807232, "retweet_count": 1833, "favorite_count": 5955}
{"tweet_id": 751950017322246144, "retweet_count": 911, "favorite_count": 3050}
{"tweet_id": 751937170840121344, "retweet_count": 1326, "favorite_count": 5174}
{"tweet_id": 751830394383790080, "retweet_count": 1938, "favorite_count": 5797}
{"tweet_id": 751793661361422336, "retweet_count": 2889, "favorite_count": 5808}
{"tweet_id": 751598357617971201, "retweet_count": 3030, "favorite_count": 7898}
{"tweet_id": 751583847268179968, "retweet_count": 1096, "favorite_count": 4381}
{"tweet_id": 751538714308972544, "retweet_count": 1258, "favorite_count": 5023}
{"tweet_id": 751456908746354688, "retweet_count": 995, "favorite_count": 3207}
{"tweet_id": 751251247299190784, "retweet_count": 5854, "favorite_count": 12467}
{"tweet_id": 751205363882532864, "retweet_count": 1805, "favorite_count": 6304}
{"tweet_id": 751132876104687617, "retweet_count": 1294, "favorite_count": 5052}
{"tweet_id": 750868782890057730, "retweet_count": 1355, "favorite_count": 4771}
{"tweet_id": 750719632563142656, "retweet_count": 5016, "favorite_count": 13129}
{"tweet_id": 750506206503038976, "retweet_count": 1137, "favorite_count": 4424}
{"tweet_id": 750429297815552001, "retweet_count": 4258, "favorite_count": 13125}
{"tweet_id": 750383411068534784, "retweet_count": 1147, "favorite_count": 4540}
{"tweet_id": 750381685133418496, "retweet_count": 27, "favorite_count": 692}
{"tweet_id": 750147208377409536, "retweet_count": 958, "favorite_count": 3094}
{"tweet_id": 750132105863102464, "retweet_count": 1291, "favorite_count": 3599}
{"tweet_id": 750117059602808832, "retweet_count": 1303, "favorite_count": 4316}
{"tweet_id": 750101899009982464, "retweet_count": 837, "favorite_count": 3032}
{"tweet_id": 750086836815486976, "retweet_count": 529, "favorite_count": 2162}
{"tweet_id": 750071704093859840, "retweet_count": 3318, "favorite_count": 7809}
{"tweet_id": 750056684286914561, "retweet_count": 893, "favorite_count": 3151}
{"tweet_id": 750041628174217216, "retweet_count": 613, "favorite_count": 3171}
{"tweet_id": 750026558547456000, "retweet_count": 788, "favorite_count": 2713}
{"tweet_id": 750011400160841729, "retweet_count": 905, "favorite_count": 3236}
{"tweet_id": 749996283729883136, "retweet_count": 811, "favorite_count": 3060}
{"tweet_id": 749981277374128128, "retweet_count": 2454, "favorite_count": 5103}
{"tweet_id": 749774190421639168, "retweet_count": 1309, "favorite_count": 4643}
{"tweet_id": 749417653287129088, "retweet_count": 1630, "favorite_count": 6090}
{"tweet_id": 749403093750648834, "retweet_count": 531, "favorite_count": 2612}
{"tweet_id": 749395845976588288, "retweet_count": 3416, "favorite_count": 8525}
{"tweet_id": 749317047558017024, "retweet_count": 2221, "favorite_count": 5482}
{"tweet_id": 749075273010798592, "retweet_count": 2062, "favorite_count": 5731}
{"tweet_id": 749064354620928000, "retweet_count": 1510, "favorite_count": 4786}
{"tweet_id": 749036806121881602, "retweet_count": 790, "favorite_count": 3082}
{"tweet_id": 748977405889503236, "retweet_count": 3384, "favorite_count": 10714}
{"tweet_id": 748932637671223296, "retweet_count": 2233, "favorite_count": 5784}
{"tweet_id": 748705597323898880, "retweet_count": 945, "favorite_count": 2770}
{"tweet_id": 748699167502000129, "retweet_count": 1575, "favorite_count": 4720}
{"tweet_id": 748692773788876800, "retweet_count": 1322, "favorite_count": 4228}
{"tweet_id": 748575535303884801, "retweet_count": 1963, "favorite_count": 6035}
{"tweet_id": 748568946752774144, "retweet_count": 666, "favorite_count": 2189}
{"tweet_id": 748346686624440324, "retweet_count": 1221, "favorite_count": 5195}
{"tweet_id": 748337862848962560, "retweet_count": 4079, "favorite_count": 7593}
{"tweet_id": 748324050481647620, "retweet_count": 752, "favorite_count": 3664}
{"tweet_id": 748307329658011649, "retweet_count": 704, "favorite_count": 3652}
{"tweet_id": 748220828303695873, "retweet_count": 7731, "favorite_count": 14050}
{"tweet_id": 747963614829678593, "retweet_count": 2127, "favorite_count": 5736}
{"tweet_id": 747933425676525569, "retweet_count": 2518, "favorite_count": 6556}
{"tweet_id": 747885874273214464, "retweet_count": 968, "favorite_count": 2923}
{"tweet_id": 747844099428986880, "retweet_count": 746, "favorite_count": 2802}
{"tweet_id": 747816857231626240, "retweet_count": 1150, "favorite_count": 4821}
{"tweet_id": 747651430853525504, "retweet_count": 153, "favorite_count": 1375}
{"tweet_id": 747648653817413632, "retweet_count": 5803, "favorite_count": 12814}
{"tweet_id": 747600769478692864, "retweet_count": 553, "favorite_count": 2312}
{"tweet_id": 747594051852075008, "retweet_count": 1051, "favorite_count": 3654}
{"tweet_id": 747512671126323200, "retweet_count": 1597, "favorite_count": 5506}
{"tweet_id": 747461612269887489, "retweet_count": 1033, "favorite_count": 3842}
{"tweet_id": 747439450712596480, "retweet_count": 1899, "favorite_count": 5384}
{"tweet_id": 747242308580548608, "retweet_count": 2886, "favorite_count": 0}
{"tweet_id": 747219827526344708, "retweet_count": 1552, "favorite_count": 5222}
{"tweet_id": 747204161125646336, "retweet_count": 915, "favorite_count": 3355}
{"tweet_id": 747103485104099331, "retweet_count": 3936, "favorite_count": 9495}
{"tweet_id": 746906459439529985, "retweet_count": 294, "favorite_count": 2876}
{"tweet_id": 746872823977771008, "retweet_count": 2115, "favorite_count": 5938}
{"tweet_id": 746818907684614144, "retweet_count": 1725, "favorite_count": 5283}
{"tweet_id": 746790600704425984, "retweet_count": 1590, "favorite_count": 4834}
{"tweet_id": 746757706116112384, "retweet_count": 3880, "favorite_count": 9516}
{"tweet_id": 746726898085036033, "retweet_count": 1781, "favorite_count": 6007}
{"tweet_id": 746542875601690625, "retweet_count": 1865, "favorite_count": 5002}
{"tweet_id": 746521445350707200, "retweet_count": 978, "favorite_count": 0}