-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsmerp_labeled_test.json
More file actions
11082 lines (11082 loc) · 398 KB
/
smerp_labeled_test.json
File metadata and controls
11082 lines (11082 loc) · 398 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"769271848055902208": {
"classes": [
2
],
"parsed_tweet": "brits romanians among foreigners killed italy quake spain's foreign ministry said least one urlurl",
"urls": [
"http://bit.ly/2aRnsMH"
],
"tweet_text": "Brits, Romanians among the foreigners killed in Italy quake: Spain's Foreign Ministry said that at least one ... https://t.co/SKLe1qs2Z7",
"retweet_count": 0,
"users": [],
"hashtags": []
},
"769183981497487364": {
"classes": [
2
],
"parsed_tweet": "quake-damaged roads threaten access italy town ctv news",
"urls": [],
"tweet_text": "RT Quake-damaged roads threaten access to Italy town - CTV News",
"retweet_count": 0,
"users": [],
"hashtags": []
},
"768678060807770112": {
"classes": [
2
],
"parsed_tweet": "death toll italy earthquake risen 247, according italian civil protection agency",
"urls": [],
"tweet_text": "The death toll from the Italy earthquake has risen to 247, according to the Italian Civil Protection agency.",
"retweet_count": 0,
"users": [],
"hashtags": []
},
"768367586945949696": {
"classes": [
2
],
"parsed_tweet": "breaking italian officials confirm 21 dead earthquake many injured missing urlurl wsj",
"urls": [
"http://on.wsj.com/2buM6Do"
],
"tweet_text": "Breaking: Italian officials confirm 21 dead in earthquake, with many more injured or missing https://t.co/jIICuNd0zd (RT WSJ)",
"retweet_count": 0,
"users": [],
"hashtags": []
},
"768585207993733120": {
"classes": [
2
],
"parsed_tweet": "dwnews since major tourist attraction photos video strong damage caused 6.8 quake like italy",
"urls": [],
"tweet_text": "@dwnews since this is a major tourist attraction, why are there no photos or video of strong damage caused by a 6.8 quake, like in Italy?",
"retweet_count": 0,
"users": [
"dwnews"
],
"hashtags": []
},
"768447022076727296": {
"classes": [
2
],
"parsed_tweet": "earthquake italy 73 dead far 100 injured many missed fortunately many rescued",
"urls": [],
"tweet_text": "#Earthquake #Italy 73 dead so far, 100 injured and many missed, but fortunately many have been rescued",
"retweet_count": 0,
"users": [],
"hashtags": [
"Earthquake",
"Italy"
]
},
"768354915760562177": {
"classes": [
2
],
"parsed_tweet": "la missing in action bella italia accumoli amatrice posta amp arquata del tronto hit 6.2 earthquake leaving casualties amp ruins urlurl",
"urls": [],
"tweet_text": "La mia bella Italia! Accumoli, Amatrice, Posta & Arquata del Tronto hit by 6.2 earthquake leaving casualties & ruins https://t.co/VIF1bSYGOM",
"retweet_count": 3,
"users": [],
"hashtags": []
},
"768830981717516288": {
"classes": [
1
],
"parsed_tweet": "italian earthquake victims asked disable wifi passwords urlurl urlurl engadget engadget august",
"urls": [
"http://engt.co/2bzKXdS"
],
"tweet_text": "Italian earthquake victims asked to disable WiFi passwords https://t.co/8Ti3DCVBDb https://t.co/gyg1CcN1TJ\n\n Engadget (engadget) August ...",
"retweet_count": 0,
"users": [],
"hashtags": []
},
"769197616357863424": {
"classes": [
2
],
"parsed_tweet": "gobarireport italy prepares mourn quake dead toll reaches 267 amatrice italy afp urlurl",
"urls": [
"http://goo.gl/fb/eDcrNh"
],
"tweet_text": "@Gobarireport #Italy prepares to mourn quake dead as toll reaches 267: Amatrice (Italy) (AFP... https://t.co/WlNUNAGqQG",
"retweet_count": 0,
"users": [
"GobariReport"
],
"hashtags": [
"Italy"
]
},
"768283243166765056": {
"classes": [
2
],
"parsed_tweet": "italian civil protection agency says received reports building collapses quake central italy reuters reports",
"urls": [],
"tweet_text": "JUST IN: Italian Civil Protection Agency says it has received reports of building collapses after quake in central Italy, Reuters reports.",
"retweet_count": 104,
"users": [],
"hashtags": []
},
"768403727220781057": {
"classes": [
2
],
"parsed_tweet": "italy quake death toll rises 37, 150 injured urlurl",
"urls": [
"https://newtelegraphonline.com/italy-quake-death-toll-rises-to-37-150-injured/"
],
"tweet_text": "Italy quake: Death toll rises to 37, 150 injured https://t.co/HqB7S6xdy6",
"retweet_count": 0,
"users": [],
"hashtags": []
},
"768754587692130304": {
"classes": [
3
],
"parsed_tweet": "earthquake italy every brownie buy donate 1 italian red cross stay together glasgowfood urlurl",
"urls": [],
"tweet_text": "earthquake/italy :for every Brownie you buy,we donate 1 to the Italian Red Cross. Stay together #glasgowfood https://t.co/b3bOdKuR2t",
"retweet_count": 4,
"users": [],
"hashtags": [
"glasgowfood"
]
},
"768920433555042304": {
"classes": [
2
],
"parsed_tweet": "247 dead earthquake italy sad",
"urls": [],
"tweet_text": "247 dead from an earthquake in Italy. Sad.",
"retweet_count": 0,
"users": [],
"hashtags": []
},
"768500600069824512": {
"classes": [
1
],
"parsed_tweet": "laurenjauregui prayforitaly donate money help us please donate 45500 thanks you'll earthquake",
"urls": [],
"tweet_text": "@LaurenJauregui #PrayForItaly, donate money for help us, please. Donate at 45500. Thanks you if you'll do it. #earthquake",
"retweet_count": 0,
"users": [
"LaurenJauregui"
],
"hashtags": [
"PrayForItaly",
"earthquake"
]
},
"768928914920001536": {
"classes": [
2
],
"parsed_tweet": "update ottawa says one canadian dead another injured earthquake central italy yesterday death toll 250",
"urls": [],
"tweet_text": "UPDATE: Ottawa now says one Canadian is dead and another is injured after the earthquake in central Italy yesterday. Death toll is at 250.",
"retweet_count": 0,
"users": [],
"hashtags": []
},
"768428541276979200": {
"classes": [
1,
3
],
"parsed_tweet": "please help italian people hit earthquake donating money crocerossa urlurl",
"urls": [
"https://www.cri.it/terremoto-centro-italia"
],
"tweet_text": "Please help the italian people hit by the earthquake donating money @crocerossa https://t.co/0aBIuNtMgf",
"retweet_count": 1,
"users": [
"crocerossa"
],
"hashtags": []
},
"768357734387441664": {
"classes": [
2
],
"parsed_tweet": "death toll italy earthquake least 20 ansa news agency",
"urls": [],
"tweet_text": "Death toll of Italy earthquake at least 20 - Ansa news agency",
"retweet_count": 0,
"users": [],
"hashtags": []
},
"768726200986591232": {
"classes": [
0
],
"parsed_tweet": "restaurants donate 2 every plate amatriciana help reconstruction london restaurants earthquake urlurl",
"urls": [],
"tweet_text": "Restaurants to donate 2 for every plate of Amatriciana to help the reconstruction. London restaurants? #earthquake https://t.co/GAPoMagozC",
"retweet_count": 5,
"users": [],
"hashtags": [
"earthquake"
]
},
"768407144861470720": {
"classes": [
2
],
"parsed_tweet": "italy earthquake leaves 37 dead towns ruins cnn cnn italy earthquake leaves 37 dead urlurl",
"urls": [
"http://goo.gl/fb/Ybt6lT"
],
"tweet_text": "Italy earthquake leaves 37 dead, towns in ruins - CNN: CNN Italy earthquake leaves 37 dead... https://t.co/QqpJT0KnvO",
"retweet_count": 0,
"users": [],
"hashtags": []
},
"768511007065051136": {
"classes": [
2
],
"parsed_tweet": "karennoelovando thanks yes i'm okay earthquake come back every hour 120 dead 368 wounded still searching",
"urls": [],
"tweet_text": "@karennoelovando thanks,yes I'm okay!But the earthquake come back every hour,there are 120 dead and 368 wounded and they are still searching",
"retweet_count": 1,
"users": [
"karennoelovando"
],
"hashtags": []
},
"768360416791539712": {
"classes": [
3
],
"parsed_tweet": "russian emergencies minster offers italy help coping quake aftermath ap photo alessandra tarantino urlurl",
"urls": [
"http://bit.ly/2bDTjjT"
],
"tweet_text": "Russian emergencies minster offers Italy help in coping with quake aftermath: AP Photo/Alessandra Tarantino... https://t.co/XAEvRCeulL",
"retweet_count": 0,
"users": [],
"hashtags": []
},
"768759688288727040": {
"classes": [
1
],
"parsed_tweet": "earthquake central italy 247 dead far blood donations needed urlurl",
"urls": [
"http://www.bbc.co.uk/news/world-europe-37171953"
],
"tweet_text": "Earthquake in central Italy, 247 dead so far. Blood donations needed: https://t.co/pjN7pRxnlX",
"retweet_count": 0,
"users": [],
"hashtags": []
},
"768347993527377921": {
"classes": [
2
],
"parsed_tweet": "earthquake leaves death destruction italy urlurl",
"urls": [
"https://www.google.com/amp/www.bbc.co.uk/news/amp/37171953"
],
"tweet_text": "Earthquake leaves death and destruction in Italy.\nhttps://t.co/EKoQIQwWTO",
"retweet_count": 3,
"users": [],
"hashtags": []
},
"768786353412775937": {
"classes": [
2
],
"parsed_tweet": "help raise 10,000 help people injured night earthquake amatrice we have lost friends homes urlurl",
"urls": [
"http://fb.me/7KUQB4S9N"
],
"tweet_text": "Help raise 10,000 to help people injured during this night earthquake in Amatrice. We've lost our friends, homes... https://t.co/Ks7ZzYsFNV",
"retweet_count": 0,
"users": [],
"hashtags": []
},
"768678617194856448": {
"classes": [
2
],
"parsed_tweet": "abc death toll climbs 247 6.2 magnitude quake central italy 368 injured urlurl",
"urls": [],
"tweet_text": "RT ABC: JUST IN: Death toll climbs to 247 after 6.2-magnitude quake in central Italy, 368 injured. ... https://t.co/q2AKeBNQY5",
"retweet_count": 0,
"users": [],
"hashtags": []
},
"768357149529350144": {
"classes": [
2
],
"parsed_tweet": "earthquake update damage injury reported aur students arriving many present present safe",
"urls": [],
"tweet_text": "Earthquake update: no damage or injury was reported here. AUR students are arriving, so many were not present. Those present are all safe.",
"retweet_count": 4,
"users": [],
"hashtags": []
},
"769184202637967361": {
"classes": [
2
],
"parsed_tweet": "quake central italy killed 267 people 400 injured drone video captures destruction urlurl urlurl",
"urls": [
"http://bit.ly/2bofYTd"
],
"tweet_text": "Quake in Central Italy has killed 267 people. 400 injured. Drone video captures destruction. https://t.co/uU2wwRpMRb https://t.co/3xlOzSgwaU",
"retweet_count": 0,
"users": [],
"hashtags": []
},
"768489127448682496": {
"classes": [
2
],
"parsed_tweet": "italy earthquake kills 73, injures hundreds like dante's inferno strong earthquake central italy red urlurl",
"urls": [
"http://bit.ly/2c78IMA"
],
"tweet_text": "Italy earthquake kills 73, injures hundreds: 'Like Dante's Inferno': A strong earthquake in central Italy red... https://t.co/5LtyILFbU3",
"retweet_count": 0,
"users": [],
"hashtags": []
},
"768482044431130624": {
"classes": [
2
],
"parsed_tweet": "news quake central italy leaves dozens dead urlurl",
"urls": [
"http://dlvr.it/M66xTp"
],
"tweet_text": "News: Quake In Central Italy Leaves Dozens Dead https://t.co/nm0Q6rTLZK",
"retweet_count": 0,
"users": [],
"hashtags": []
},
"768502349321166848": {
"classes": [
2
],
"parsed_tweet": "italy quake death toll climbs 120 pm world",
"urls": [],
"tweet_text": "Italy quake death toll climbs to 120 PM | #World",
"retweet_count": 0,
"users": [],
"hashtags": [
"World"
]
},
"768556710923411457": {
"classes": [
2
],
"parsed_tweet": "italy earthquake leaves atleast 120 dead urlurl",
"urls": [
"http://edition.cnn.com/2016/08/23/europe/italy-earthquake/"
],
"tweet_text": "ITALY EARTHQUAKE LEAVES ATLEAST 120 DEAD...\n\nhttps://t.co/AlL7Ow6WTS",
"retweet_count": 1,
"users": [],
"hashtags": []
},
"769130656748015616": {
"classes": [
2
],
"parsed_tweet": "number dead italy quake climbs death toll earthquake central italy rose 267 famil urlurl",
"urls": [
"http://tinyurl.com/zb5qn4k"
],
"tweet_text": "Number of dead in Italy quake climbs: The death toll from an earthquake in central Italy rose to 267 as famil... https://t.co/HwBH7Vfn5z",
"retweet_count": 0,
"users": [],
"hashtags": []
},
"768397437673156608": {
"classes": [
2
],
"parsed_tweet": "oh my god earthquake agartala tripura got injured leg :(",
"urls": [],
"tweet_text": "OMG again #Earthquake \n\n#Agartala \n#Tripura \n\n- I got injured in my leg :(",
"retweet_count": 0,
"users": [],
"hashtags": [
"Earthquake",
"Agartala",
"Tripura"
]
},
"768587292134866947": {
"classes": [
2
],
"parsed_tweet": "user interface seismometer picks italy earthquake 100 dead hundreds wounded 6.2 urlurl",
"urls": [
"http://bit.ly/2bjci4V"
],
"tweet_text": "UI seismometer picks up Italy earthquake: More than 100 are dead and hundreds more are wounded after a 6.2 ma... https://t.co/eJN75NCjd0",
"retweet_count": 0,
"users": [],
"hashtags": []
},
"768668033699250180": {
"classes": [
2
],
"parsed_tweet": "italy quake toll climbed least 247 dead official",
"urls": [],
"tweet_text": "#Italy quake toll has climbed to at least 247 dead: official",
"retweet_count": 4,
"users": [],
"hashtags": [
"Italy"
]
},
"768509262804975616": {
"classes": [
2
],
"parsed_tweet": "death toll 120 devastating central italy quake death toll devastating italy earthquake earl urlurl",
"urls": [
"http://ow.ly/nZlD503OdXL"
],
"tweet_text": "Death toll now 120 in devastating central Italy quake - The death toll in the devastating Italy earthquake earl... https://t.co/p63OUoKYwW",
"retweet_count": 0,
"users": [],
"hashtags": []
},
"768443206895828992": {
"classes": [
0
],
"parsed_tweet": "photo water collected earthquake victims rieti italy rieti life facebook breaking",
"urls": [],
"tweet_text": "Photo: Water collected for earthquake victims, in Rieti, Italy - Rieti Life via Facebook via @Breaking",
"retweet_count": 0,
"users": [
"breaking"
],
"hashtags": []
},
"768606938170961920": {
"classes": [
2
],
"parsed_tweet": "death toll climbs 159 earthquake italy death toll climbs 159 earthquake italy urlurl",
"urls": [
"http://fniq.a.boysofts.com/47vc"
],
"tweet_text": "Death Toll Climbs to 159 After Earthquake in Italy: Death Toll Climbs to 159 After Earthquake in Italy. More.... https://t.co/tuCYz4bzQK",
"retweet_count": 0,
"users": [],
"hashtags": []
},
"768812066274578432": {
"classes": [
0,
3
],
"parsed_tweet": "amateur radio volunteers assisting italian earthquake response urlurl amateurradio feedly",
"urls": [
"http://www.arrl.org/news/view/amateur-radio-volunteers-assisting-in-italian-earthquake-response"
],
"tweet_text": "\"Amateur Radio Volunteers Assisting in Italian Earthquake Response\" https://t.co/KbyqaJGSq8 #amateurradio #feedly",
"retweet_count": 0,
"users": [],
"hashtags": [
"amateurradio",
"feedly"
]
},
"769105823578648576": {
"classes": [
2
],
"parsed_tweet": "italy quake death toll rises 267 nearly 400 hospitalized urlurl",
"urls": [
"http://uk.reuters.com/article/idUKKCN1110IG"
],
"tweet_text": "\"Italy quake death toll rises to 267; nearly 400 hospitalized\" - https://t.co/x5eiqk3HDD",
"retweet_count": 0,
"users": [],
"hashtags": []
},
"769083819483947009": {
"classes": [
2
],
"parsed_tweet": "sixth romanian confirmed dead italy quake urlurl",
"urls": [
"http://goo.gl/SCSoco"
],
"tweet_text": "Sixth #Romanian confirmed #dead in #Italy #quake - https://t.co/etyfqlY2oR",
"retweet_count": 0,
"users": [],
"hashtags": [
"Romanian",
"dead",
"Italy",
"quake"
]
},
"768782150900584449": {
"classes": [
0
],
"parsed_tweet": "amp t-mobile verizon give free calls italy earlier week massive earthquake urlurl",
"urls": [
"http://goo.gl/fb/o3R8Ns"
],
"tweet_text": "AT&T, T-Mobile and Verizon Give Free Calls to Italy: Earlier this week, a massive Earthquake... https://t.co/UJZnPWx8Sb",
"retweet_count": 0,
"users": [],
"hashtags": []
},
"769211651560132608": {
"classes": [
2
],
"parsed_tweet": "italy quake death toll hits 268, state funeral planned woman canadian albanian three british h urlurl",
"urls": [
"http://bit.ly/2blN9SX"
],
"tweet_text": "Italy quake death toll hits 268, state funeral planned: ... woman, a Canadian and an Albanian. Three British h... https://t.co/lwbQlvi9jF",
"retweet_count": 0,
"users": [],
"hashtags": []
},
"768924670787776512": {
"classes": [
2
],
"parsed_tweet": "officials least 1 canadian identified victim italy earthquake another injured global winnpeg",
"urls": [],
"tweet_text": "Officials: At least 1 Canadian identified as victim in Italy earthquake; another injured - Global Winnpeg",
"retweet_count": 0,
"users": [],
"hashtags": []
},
"768395258426109952": {
"classes": [
1
],
"parsed_tweet": "italy wish show solidarity victims earthquake donating blood nearest hospital terremoto",
"urls": [],
"tweet_text": "Those in Italy who wish to show solidarity for the victims of earthquake can do so by donating blood at their nearest hospital #terremoto",
"retweet_count": 1,
"users": [],
"hashtags": [
"terremoto"
]
},
"768426680243384320": {
"classes": [
2
],
"parsed_tweet": "italy quake death toll 38, rescue underway urlurl",
"urls": [
"http://bit.ly/2bzCAfn"
],
"tweet_text": "Italy quake: Death toll at 38, rescue underway\nhttps://t.co/UcdzUTYgFc",
"retweet_count": 0,
"users": [],
"hashtags": []
},
"768461939769012224": {
"classes": [
1
],
"parsed_tweet": "rescue workers struggling get vital digging equipment area italy hit powerful earthquake",
"urls": [],
"tweet_text": "Rescue workers are struggling to get vital digging equipment to an area of Italy hit by a powerful earthquake.",
"retweet_count": 0,
"users": [],
"hashtags": []
},
"768678479349092352": {
"classes": [
2
],
"parsed_tweet": "euronews death toll central italy quake rises 247 death toll rises least 247 360 urlurl",
"urls": [
"http://www.newsoneplace.com/article/3168771607/death-italy-central"
],
"tweet_text": "(Euronews):#Death toll in central #Italy quake rises to 247 : Death toll rises to at least 247 More than 360.. https://t.co/BSbq2UzVkD",
"retweet_count": 0,
"users": [],
"hashtags": [
"Death",
"Italy"
]
},
"768394127709011968": {
"classes": [
2
],
"parsed_tweet": "devastating earthquake rieti norcia frightening number casualties urlurl",
"urls": [
"https://www.theguardian.com/world/live/2016/aug/24/italy-terremoto-earthquake-buildings-collapse-amatrice-rome-people-trapped"
],
"tweet_text": "Devastating earthquake between Rieti and Norcia. Frightening number of casualties https://t.co/GXEza8cHLA",
"retweet_count": 0,
"users": [],
"hashtags": []
},
"768797333979029504": {
"classes": [
2
],
"parsed_tweet": "italyearthquake residents stand among damaged buildings strong earthquake hit amatrice urlurl",
"urls": [],
"tweet_text": "#ItalyEarthquake\n Residents stand among damaged buildings after a strong earthquake hit #Amatrice https://t.co/IUcPRm3Boi",
"retweet_count": 0,
"users": [],
"hashtags": [
"ItalyEarthquake",
"Amatrice"
]
},
"768388467822829568": {
"classes": [
2
],
"parsed_tweet": "breaking death toll jumps 37 dead early morning 6.2 magnitude earthquake central italy cbs12 urlurl",
"urls": [],
"tweet_text": "#BREAKING death toll jumps to 37 dead after early morning 6.2 magnitude earthquake in central Italy. @CBS12 https://t.co/McvG91SwKG",
"retweet_count": 4,
"users": [
"CBS12"
],
"hashtags": [
"BREAKING"
]
},
"768840725509214208": {
"classes": [
2
],
"parsed_tweet": "hopes dim survivors italy quake death toll stands 241",
"urls": [],
"tweet_text": "^~^ Hopes Dim for Survivors of Italy Quake; Death Toll Stands at 241 |",
"retweet_count": 0,
"users": [],
"hashtags": []
},
"768817775972343808": {
"classes": [
3
],
"parsed_tweet": "globalgiving launches italy earthquake relief fund urlurl globalgiving",
"urls": [
"http://ow.ly/k0X0303zEF3"
],
"tweet_text": "GlobalGiving Launches #Italy Earthquake Relief Fund https://t.co/6kLThxIdZg @GlobalGiving",
"retweet_count": 4,
"users": [
"GlobalGiving"
],
"hashtags": [
"Italy"
]
},
"769176581864427520": {
"classes": [
2
],
"parsed_tweet": "latest 3 british citizens among dead italy quake daily mail daily mailthe latest 3 british ci urlurl",
"urls": [
"http://bit.ly/2blmTrJ"
],
"tweet_text": "The Latest: 3 British citizens among the dead in Italy quake - Daily Mail: Daily MailThe Latest: 3 British ci... https://t.co/8oBfD4x5aV",
"retweet_count": 0,
"users": [],
"hashtags": []
},
"768580138401406976": {
"classes": [
1
],
"parsed_tweet": "latest tuaw news italian earthquake victims asked disable wifi passwords urlurl",
"urls": [
"http://ow.ly/3RnK503OJ93"
],
"tweet_text": "Latest TUAW News Italian earthquake victims asked to disable WiFi passwords https://t.co/jfAOIE7iih",
"retweet_count": 0,
"users": [],
"hashtags": []
},
"768445770102140928": {
"classes": [
2
],
"parsed_tweet": "update 50 dead 100 injured italy earthquake reduces towns rubble story photos urlurl urlurl",
"urls": [
"http://komonews.com/news/nation-world/50-dead-hundreds-injured-as-italy-earthquake-reduces-towns-to-rubble"
],
"tweet_text": "UPDATE: 50 dead, 100s injured as Italy earthquake reduces towns to rubble - Story, photos - https://t.co/SIELgxPyxO https://t.co/YYr11dM9dU",
"retweet_count": 2,
"users": [],
"hashtags": []
},
"768285187851554816": {
"classes": [
2
],
"parsed_tweet": "ebro75 lori50207495 right earthquake occurred area rome serious damage thanks",
"urls": [],
"tweet_text": "@ebro75 @lori50207495 ....All right !!! The earthquake occurred in the area of Rome, no serious damage .Thanks !!!",
"retweet_count": 0,
"users": [
"ebro75",
"lori50207495"
],
"hashtags": []
},
"768344070708137985": {
"classes": [
1
],
"parsed_tweet": "area affected earthquake italy please remove passwords working wi-fi connections amp emergencies call 800 840 840",
"urls": [],
"tweet_text": "If in the area affected by #earthquake in Italy please remove passwords from working wi-fi connections & for emergencies call 800 840 840",
"retweet_count": 0,
"users": [],
"hashtags": [
"earthquake"
]
},
"768708141261459456": {
"classes": [
2
],
"parsed_tweet": "news 247 people died 350 injured earthquake central italy italyearthquake",
"urls": [],
"tweet_text": "NEWS: 247 people have died and more than 350 injured after earthquake in central Italy. #ItalyEarthquake",
"retweet_count": 0,
"users": [],
"hashtags": [
"ItalyEarthquake"
]
},
"769114786441289728": {
"classes": [
2
],
"parsed_tweet": "latest italy plans state funeral quake dead italian government decreed state laugh you urlurl",
"urls": [
"http://bit.ly/2cdP69G"
],
"tweet_text": "The Latest: Italy plans state funeral for some quake dead: The Italian government has decreed that a state fu... https://t.co/2rDWB5NljS",
"retweet_count": 0,
"users": [],
"hashtags": []
},
"769092537588088832": {
"classes": [
2
],
"parsed_tweet": "italy quake death toll rises 267 nearly 400 hospitalized rome reuters number people killed wi urlurl",
"urls": [
"http://bit.ly/2cdBBGT"
],
"tweet_text": "Italy quake death toll rises to 267; nearly 400 hospitalized: ROME (Reuters) The number of people killed wi... https://t.co/xRu8b2wIw8",
"retweet_count": 0,
"users": [],
"hashtags": []
},
"768442765629722629": {
"classes": [
1,
3
],
"parsed_tweet": "retweeted cnn international cnni red cross asking people central italy turn wifi urlurl",
"urls": [
"http://fb.me/3ilVbk3OM"
],
"tweet_text": "Retweeted CNN International (@cnni):\n\nThe Red Cross is asking people in central Italy to turn off their wifi... https://t.co/hYhZpmQQxo",
"retweet_count": 0,
"users": [
"cnni"
],
"hashtags": []
},
"769274850552713217": {
"classes": [
2
],
"parsed_tweet": "hopes dim survivors italy quake death toll stands 267 new york times terrible urlurl",
"urls": [
"https://apple.news/Au-6cyMVoSdmh8Ti7wgAQ1A"
],
"tweet_text": "Hopes Dim for Survivors of Italy Quake; Death Toll Stands at 267 - The New York Times - Just terrible. https://t.co/F3Rgwyw2Zw",
"retweet_count": 0,
"users": [],
"hashtags": []
},
"768753851709227008": {
"classes": [
2
],
"parsed_tweet": "death toll italy earthquake reaches 270 dead",
"urls": [],
"tweet_text": "Death toll from italy earthquake reaches 270 dead.",
"retweet_count": 0,
"users": [],
"hashtags": []
},
"768711206785851392": {
"classes": [
2
],
"parsed_tweet": "death toll italy earthquake nears 250 italian authorities say death toll wednesday's earthquake central part",
"urls": [],
"tweet_text": "Death toll in Italy earthquake nears 250: Italian authorities say that the death toll from Wednesday's earthquake in the central part...",
"retweet_count": 0,
"users": [],
"hashtags": []
},
"768660306990075905": {
"classes": [
2
],
"parsed_tweet": "pictures italy's earthquake 160 people dead hundreds injuries urlurl",
"urls": [
"http://fb.me/5PQntZjBw"
],
"tweet_text": "Before and after pictures of #Italy's #earthquake \nMore than 160 people dead and hundreds of injuries \n ... https://t.co/mEtsvz1MJY",
"retweet_count": 0,
"users": [],
"hashtags": [
"Italy",
"earthquake"
]
},
"768273994789318658": {
"classes": [
2
],
"parsed_tweet": "6.2 magnitude earthquake struck central italy immediate reports damage",
"urls": [],
"tweet_text": "JUST IN: a 6.2 magnitude earthquake has struck central Italy, no immediate reports of damage",
"retweet_count": 11,
"users": [],
"hashtags": []
},
"768408625110917121": {
"classes": [
2
],
"parsed_tweet": "nig dozens killed italy quake less 37 people killed many injured italy urlurl",
"urls": [
"http://bit.ly/2bhFHrB"
],
"tweet_text": "NIG Dozens Killed in Italy quake: Not less than 37 people have been killed and many injured in Italy after an... https://t.co/8lysaTZ9DE",
"retweet_count": 0,
"users": [],
"hashtags": []
},
"769301771340615680": {
"classes": [
2
],
"parsed_tweet": "world news quake damaged roads threaten access italy town amatrice italy rescue workers urlurl",
"urls": [
"http://www.newsoneplace.com/article/3381421607/quake-italy-damaged-threaten-access"
],
"tweet_text": "(World News):#Quake damaged roads threaten access to #Italy town : AMATRICE, Italy Rescue workers.. https://t.co/0zw9lxC6LR",
"retweet_count": 0,
"users": [],
"hashtags": [
"Quake",
"Italy"
]
},
"768868450957656064": {
"classes": [
3
],
"parsed_tweet": "fundraising danilos raise money italian earthquake victims so-hale urlurl hale news urlurl",
"urls": [
"https://shar.es/1wtGyT"
],
"tweet_text": "Fundraising: DANILOS TO RAISE MONEY FOR ITALIAN EARTHQUAKE VICTIMS - So-hale https://t.co/bfHcTJ8ZiU #hale #news https://t.co/MoJxfnoKq2",
"retweet_count": 3,
"users": [],
"hashtags": [
"hale",
"news"
]
},
"769265128609120256": {
"classes": [
2
],
"parsed_tweet": "italyearthquake death toll 278, 2,000 forced live camps urlurl urlurl",
"urls": [
"http://via.fox61.com/udzFo"
],
"tweet_text": "#ItalyEarthquake death toll at 278, more than 2,000 forced to live in camps https://t.co/KUAtOOylVh https://t.co/JKwPgxPeG4",
"retweet_count": 3,
"users": [],
"hashtags": [
"ItalyEarthquake"
]
},
"768419555857174529": {
"classes": [
2
],
"parsed_tweet": "italy earthquake 39 dead towns destroyed cnni urlurl",
"urls": [
"http://edition.cnn.com/2016/08/23/europe/italy-earthquake/"
],
"tweet_text": "#Italy #earthquake: 39 dead, towns destroyed\n @CNNi\n https://t.co/Ss1sZhwlHY",
"retweet_count": 0,
"users": [
"cnni"
],
"hashtags": [
"Italy",
"earthquake"
]
},
"769023354720358401": {
"classes": [
2
],
"parsed_tweet": "questions mount hopes italy quake survivors fade death toll powerful earthquake central italy rose 250 thursday",
"urls": [],
"tweet_text": "Questions mount as hopes for Italy quake survivors fade The death toll from a powerful earthquake in central Italy rose to 250 on Thursday...",
"retweet_count": 0,
"users": [],
"hashtags": []
},
"768401760364949505": {
"classes": [
2
],
"parsed_tweet": "death tolls climbs 38 italy earthquake urlurl",
"urls": [
"http://wset.com/news/nation-world/magnitude-61-quake-rattles-rome-and-central-italy"
],
"tweet_text": "Death tolls climbs to 38 in Italy. #earthquake https://t.co/VZDSCroPox",
"retweet_count": 0,
"users": [],
"hashtags": [
"earthquake"
]
},
"769109661710749696": {
"classes": [
2
],
"parsed_tweet": "update italy earthquake death toll rises 267, 387 injured urlurl urlurl",
"urls": [
"http://bit.ly/2btOMjh"
],
"tweet_text": "UPDATE: Italy earthquake death toll rises to 267, 387 injured. https://t.co/idVqzk6uUw https://t.co/fzGJ3yxtUB",
"retweet_count": 1,
"users": [],
"hashtags": []
},
"768359293955502080": {
"classes": [