-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathoutputLex.csv
More file actions
We can't make this file beautiful and searchable because it's too large.
4709 lines (4709 loc) · 939 KB
/
outputLex.csv
File metadata and controls
4709 lines (4709 loc) · 939 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
,created_at,text,screen_name,followers,friends,rt,fav,0,0
0,Mon Jun 12 12:05:05 +0000 2017," '""@DPJHodges Its far less of a concern after Thurs. Didnt stand on blocking Brexit. Tories caused it and now have t… https://t.co/0RmA7mw1B1""'", 'paulsevern7',614,824,0,0,-0.5,right
1,Mon Jun 12 12:05:06 +0000 2017," '""RT @AlanDersh: Why did Bernie Sanders campaign for the British anti-semite Jeremy Corbyn? My latest for @GatestoneInst https://t.co/N4O7lmN…""'", 'HarrietBaldwin',20016,3415,0,0,-1.0,left
2,Mon Jun 12 12:05:05 +0000 2017," '""RT @davidallengreen: My thread on Theresa May being the Brexiteers biggest problem all along. https://t.co/j8AJN7IOkj""'", 'hazelglasgow',3957,1739,0,0,0.0,right
3,Mon Jun 12 12:05:06 +0000 2017," '""RT @MarkSkoda: Hypocrite Jeremy Corbyn says he Welcomes the Cancellation of President Trumps Visit to UK. #LondonHasFallen https://t.co/…""'", 'yb_st3ezy',378,140,0,0,0.0,left
4,Mon Jun 12 12:05:06 +0000 2017," '""RT @Hepworthclare: Queens Speech *postponed*\nTory Manifesto *shredded*\nNobody has CLUE about what is going on !\nBut HEY - DUP will bail yo…""'", 'AyrshireSpeaker',1978,1329,0,0,0.25,0
5,Mon Jun 12 12:05:06 +0000 2017," '""#stealthy #GE2017 this must be my 6th or 7th General Election. Certainly the first time Ive ever voted in one! https://t.co/9xIjWDhJqv""'", 'markoedwards',68,266,0,0,-0.25,0
6,Mon Jun 12 12:05:06 +0000 2017," '""Over 20 new MPs with connections to the charity sector \nhttps://t.co/Cd0yEr9d72\n#GE2017 #Charity #MPs""'", 'CharityExperts',110,181,0,0,0.5,0
7,Mon Jun 12 12:05:06 +0000 2017," '""RT @meaglemp: So much for getting straight down to work... https://t.co/SnkBt9PoPx""'", 'lanai32',76,184,0,0,0.0,0
8,Mon Jun 12 12:05:07 +0000 2017," '""Dont let the shockwaves from the #GE2017 result unbalance your finances: 4 tactics to keep your portfolio on track https://t.co/UxD3hvwwmu""'", 'ns_wm',1713,665,0,0,-0.5,0
9,Mon Jun 12 12:05:07 +0000 2017," '""RT @scandifriend: @APHClarkson And I still cant afford a place. Ive heard the same story again and again. What do the Tories offer me? No…""'", 'APHClarkson',8853,785,0,0,0.25,right
10,Mon Jun 12 12:05:07 +0000 2017," '""RT @mrchrisaddison: Theresa May is the political equivalent of the hotel guest not picking up the call from reception telling them checkout…""'", 'Hrryh_',96,889,0,0,0.25,0
11,Mon Jun 12 12:05:07 +0000 2017," '""RT @CarolineLucas: Beggars belief. One look at Gove’s voting record shows him unfit for this job: https://t.co/IIzaJRek8I https://t.co/TzIx…""'", 'kfmorel',874,965,0,0,0.25,0
12,Mon Jun 12 12:05:07 +0000 2017," '""REPORT: Meddling EU Urged Theresa May to Hold Snap Election in Hopes to Derail Brexit https://t.co/OVMDIUciVw""'", 'vnuek',12176,10068,0,0,0.25,0
13,Mon Jun 12 12:05:07 +0000 2017," '""RT @AaronBastani: Im loving the montage of images here. Clive is brilliant. https://t.co/V41e9HtHVG""'", 'cookielicker12',185,705,0,0,0.25,0
14,Mon Jun 12 12:05:07 +0000 2017," '""If the Tory/DUP deal does anything I hope its shed light on the lack of rights and respect Irish people still endure under British rule""'", 'massie_lewis',362,514,0,0,0.25,0
15,Mon Jun 12 12:05:07 +0000 2017," '""RT @MarkSkoda: Hypocrite Jeremy Corbyn says he Welcomes the Cancellation of President Trumps Visit to UK. #LondonHasFallen https://t.co/…""'", 'ajplesim',242,80,0,0,0.25,0
16,Mon Jun 12 12:05:08 +0000 2017," '""RT @OwenJones84: Tories doubling down on contempt for the young will 100% turn their political fortunes around https://t.co/4ZIOWZYFIC""'", 'KristosScarr',20,109,0,0,0.25,0
17,Mon Jun 12 12:05:08 +0000 2017," '""RT @jeremycorbyn: Hard-won LGBT rights must not be sold out by @Theresa_May and the Tories as they try to cling to power with the DUP. http…""'", 'cridheone',12792,6621,0,0,0.25,0
18,Mon Jun 12 12:05:08 +0000 2017," '""RT @EL4JC: Jeremy Corbyn: Man of the Year. #Marr https://t.co/rV27q3frfV""'", 'mendesfthoran_',6635,1048,0,0,0.25,0
19,Mon Jun 12 12:05:08 +0000 2017," '""RT @JamieMeWrites: If Theresa May cant make the Queens Speech I know a guy wholl step in short notice. https://t.co/gdHYzKXJID""'", 'johnbud86',2078,2137,0,0,0.25,0
20,Mon Jun 12 12:05:08 +0000 2017," '""RT @newsthump: NEWS! Theresa May appeases DUP’s climate change deniers by handing environment to incompetent bellend… ""'", 'iSayHelloYou',48,195,0,0,0.25,0
21,Mon Jun 12 12:05:08 +0000 2017," '""Why the Tories are terrified of another General Election https://t.co/rRGPfF5KEk""'", 'edwards1448',12,54,0,0,0.25,0
22,Mon Jun 12 12:05:08 +0000 2017," '""Chaotic Tories are making the UK in to a laughing stock. https://t.co/Qo4IO5l40j""'", 'McVinoFC',176,201,0,0,0.25,0
23,Mon Jun 12 12:05:08 +0000 2017," '""RT @Paul1Singh: There is no such thing as a jobs first Brexit - 3.4 million jobs rely directly on Single Market membership.… ""'", 'TimJonesStaffs',382,98,0,0,0.25,0
24,Mon Jun 12 12:05:08 +0000 2017," '""RT @MichaelLCrick: Tom Watson has written to Theresa May asking whether Rupert Murdoch ever suggested to you Michael Gove should be given…""'", 'Emstodart',267,1463,0,0,0.25,0
25,Mon Jun 12 12:05:09 +0000 2017," '""RT @lucyybarnes: risky activities help you in later life\ntheresa may:\n\n#aqaenglish https://t.co/sVgOa7bBht""'", 'dilllarge',671,3829,0,0,0.25,0
26,Mon Jun 12 12:05:08 +0000 2017," '""RT @Coo1_Daddy: @lesvcampbell @UKLabour https://t.co/fUaxTvRsqh Correct. Why should the UK support Apartheid Israel ?""'", 'lesvcampbell',643,672,0,0,0.25,0
27,Mon Jun 12 12:05:09 +0000 2017," '""RT @cllrjoeporter: My @guardian piece about #GE2017 result & why @Conservatives need a new youth wing & engage more with young people… ""'", 'C4NewsKate',1420,1647,0,0,0.25,0
28,Mon Jun 12 12:05:09 +0000 2017," '""RT @tradasro: Moray BREXITEERS will be scratching their heads now...the Tories are backstabbing you already. Free movement of trawlers. #Sc…""'", 'clarknat',2882,2872,0,0,0.25,0
29,Mon Jun 12 12:05:09 +0000 2017," '""@chrishallworth True but the Labour QS would have the optics effect of showing they have a plan/are united/just wai… https://t.co/L5vjCNEkzb""'", 'bartleyrock',379,374,0,0,0.25,0
30,Mon Jun 12 12:05:09 +0000 2017," '""RT @MrMalky: We have to ask:\nChild Cap\nSanctions\nRape Clause\nDementia Tax\nPension lock removed\nAll open goals\nAnd still people voted Tory?""'", 'PauloconnorMBE',390,727,0,0,0.25,0
31,Mon Jun 12 12:05:09 +0000 2017," '""RT @AndrewRileyrm: Much Labour support will decline if it aims to take us out of single-market & customs union @DavidEDrew @Glostays. https…""'", 'lesley_62974',757,652,0,0,0.25,0
32,Mon Jun 12 12:05:09 +0000 2017," '""RT @RichardBurgon: Chaos and instability authored by Theresa May and the Conservatives. Time to go! https://t.co/HOtEkbl4Og""'", 'Pacino10000',31,40,0,0,0.25,0
33,Mon Jun 12 12:05:09 +0000 2017," '""@MartinTheJag Were Scottish Labour to emerge as the most promising route to the achievement of a socialist policy a… https://t.co/6PqtL6V0QO""'", 'Dr_S_Davidson',302,291,0,0,0.25,0
34,Mon Jun 12 12:05:09 +0000 2017," '""Comment: I grew up in a safe DUP seat – UK is in for a shock #GE2017 \nhttps://t.co/m2pQ6VsBNu https://t.co/dMPAet1dGT""'", 'TheScotsman',130087,1905,0,0,0.25,0
35,Mon Jun 12 12:05:09 +0000 2017," '""Maybe they have had to delay the #QueensSpeech so there is enough time to swear in all of the new #Labour MPs. #GE2017 🔥🔥🔥🔥""'", 'wolfmanbass',185,765,0,0,0.25,0
36,Mon Jun 12 12:05:09 +0000 2017," '""RT @jeremycorbyn: 30 years ago today Diane Abbott became an MP. As the first black woman MP she continues to inspire & represent the… ""'", 'wfb4n1',74,2317,0,0,0.25,0
37,Mon Jun 12 12:05:09 +0000 2017," '""RT @LipskisGhost: @racybearhold If Labour was doing this there would be calls for a military coup""'", 'StarSparkle_UK',5646,5024,0,0,0.25,0
38,Mon Jun 12 12:05:10 +0000 2017," '""RT @Number10cat: Michael Gove is in the building. \nThis is not a drill!\nTheresa May has gone full sod them on the electorate.\n#reshuffle…""'", 'homewiththecats',13,41,0,0,0.25,0
39,Mon Jun 12 12:05:10 +0000 2017," '""RT @MarkSkoda: Hypocrite Jeremy Corbyn says he Welcomes the Cancellation of President Trumps Visit to UK. #LondonHasFallen https://t.co/…""'", 'cosgroveangei',383,135,0,0,0.25,0
40,Mon Jun 12 12:05:10 +0000 2017," '""RT @tom_watson: I hope all Labour members celebrate the enthusiasm of young voters who shaped this election. Despite Tory chaos the future…""'", 'vivelecommonlaw',1064,1908,0,0,0.25,0
41,Mon Jun 12 12:05:10 +0000 2017," '""RT @adampayne26: things are back to normal in Labour then https://t.co/MrDLvIKh1I""'", 'willieckerslike',116,54,0,0,0.25,0
42,Mon Jun 12 12:05:10 +0000 2017," '""RT @estwebber: Gerry Adams: We dont think any deal between the DUP and Tories is good for people here""'", 'nscoll',126,638,0,0,0.25,0
43,Mon Jun 12 12:05:10 +0000 2017," '""‣ Sometimes Our Nightmares Don’t Come True: the... | When Theresa May called a snap... | https://t.co/SXUQyKQDPR | @NatCounterPunch""'", 'KamalShaqi',1056,762,0,0,0.25,0
44,Mon Jun 12 12:05:10 +0000 2017," '""RT @Kevin_Maguire: Labours sweetest defeat & Cons bitterest victory. Why May should go in national interest and we hold 2nd election https…""'", 'gary384',62,22,0,0,0.25,0
45,Mon Jun 12 12:05:11 +0000 2017," '""RT @Harryslaststand: There is now talk that Theresa May will delay both #brexit talks & the Queens speech which indicates the Tories aren…""'", 'WesBez88',220,500,0,0,0.25,0
46,Mon Jun 12 12:05:11 +0000 2017," '""RT @jdportes: This explains why No deal better than bad deal line weakens UK negotiating position & makes no deal more likely… ""'", 'jdportes',35580,539,0,0,0.25,0
47,Mon Jun 12 12:05:11 +0000 2017," '""RT @VictoriaPeckham: Theresa May & Amber Rudd arrive for their negotiations with the DUP. https://t.co/UkPQOZXGRX""'", 'storiesofyrlife',208,267,0,0,0.25,0
48,Mon Jun 12 12:05:11 +0000 2017," '""RT @AlexJCharlton: Shocking! May cancels Queen’s Speech next Monday. We’re watching death of the Conservatives. #JoinLabour #Corbyn2017 htt…""'", 'frankie_888',239,246,0,0,0.25,0
49,Mon Jun 12 12:05:11 +0000 2017," '""RT @JohnHealey_MP: Tories claim housing is a priority but four days on still no housing minister. Labour would be setting up a new Housing…""'", 'Mark_ED_Lowe',820,1525,0,0,0.25,0
50,Mon Jun 12 12:05:11 +0000 2017," '""RT @jonsnowC4: Here we go..for those too young to remember. Portadown has been the scene of some very nasty stuff down the years. https://t…""'", 'JohnStrawson',890,1030,0,0,0.25,0
51,Mon Jun 12 12:05:11 +0000 2017," '""The fact most of Tory MPs have backed May and said her judgement is good? Let them die on their selfserviant swords?""'", 'winlad6',20,81,0,0,0.25,0
52,Mon Jun 12 12:05:11 +0000 2017," '""RT @hopbin: Tom Watson asks Theresa #May if Rupert #Murdoch influenced her cabinet reshuffle. https://t.co/p8V8jtEepc via @HuffPostUKPol""'", 'scytheanon',2065,1895,0,0,0.25,0
53,Mon Jun 12 12:05:11 +0000 2017," '""RT @Awifefirst: Can someone tell Labour that their Manifesto also contains the so called hard Brexit? Posturing on this isnt helpi… ""'", 'whatsinitforme',1024,1995,0,0,0.25,0
54,Mon Jun 12 12:05:11 +0000 2017," '""When your local MP no longer uses Twitter. #Tories https://t.co/a1EGNhBmiF""'", 'alex_pegg',326,255,0,0,0.25,0
55,Mon Jun 12 12:05:12 +0000 2017," '""RT @MarkSkoda: Hypocrite Jeremy Corbyn says he Welcomes the Cancellation of President Trumps Visit to UK. #LondonHasFallen https://t.co/…""'", 'hamdayassln',359,140,0,0,0.25,0
56,Mon Jun 12 12:05:12 +0000 2017," '""RT @ElleHa: this website has given us some phenomenally bad takes but poor Theresa May takes the whole fucking pack of digestives""'", 'Notinaboyband',960,264,0,0,0.25,0
57,Mon Jun 12 12:05:13 +0000 2017," '""RT @PeoplesMomentum: Theres a huge task ahead - but never again can anyone say you cant change the world.\n✔ https://t.co/a1MDh6DlnP\n✔… ""'", 'Unsilversurfer',235,322,0,0,0.25,0
58,Mon Jun 12 12:05:13 +0000 2017," '""So they curve you and you give them 35k to prove a point? \U0001f926🏾\u200d♂️ https://t.co/8Rm89paNri""'", 'PYSNGR',27502,746,0,0,0.25,0
59,Mon Jun 12 12:05:13 +0000 2017," '""RT @Harryslaststand: There is now talk that Theresa May will delay both #brexit talks & the Queens speech which indicates the Tories aren…""'", 'Charliemccord16',275,271,0,0,0.25,0
60,Mon Jun 12 12:05:13 +0000 2017," '""RT @palestininianpr: Labour Party voters have made crystal clear they dont want another Blairite Tory tribute party. The real Labour Party…""'", 'Averyatswanpond',807,1301,0,0,0.25,0
61,Mon Jun 12 12:05:13 +0000 2017," '""RT @DiligentTruth: She is #PureEvil https://t.co/nT46Q8NWhK""'", 'UmerSadozai',302,449,0,0,0.25,0
62,Mon Jun 12 12:05:13 +0000 2017," '""RT @Harryslaststand: There is now talk that Theresa May will delay both #brexit talks & the Queens speech which indicates the Tories aren…""'", 'JCarterWoodrow',8018,7921,0,0,0.25,0
63,Mon Jun 12 12:05:13 +0000 2017," '""RT @Irish_Ulster: @standardnews @DeclanBurke2 ‘UK Tories new bedfellows: the DUP terrorist-linked party’ by Ruaidrí… ""'", 'coimcne',524,383,0,0,0.25,0
64,Mon Jun 12 12:05:13 +0000 2017," '""RT @MirrorPolitics: 6 nasty Tory policies Theresa May could be forced to ditch from the Queens Speech \n\n#CoalitionOfChaos… ""'", 'NidgeBall1',191,353,0,0,0.25,0
65,Mon Jun 12 12:05:14 +0000 2017," '""RT @EllenRenton: What do you think is main reason for the loss of 21 SNP seats in #GE2017 #DUPdeal #mondaymotivation - please RT as widely…""'", 'Scotlandscreams',95,89,0,0,0.25,0
66,Mon Jun 12 12:05:14 +0000 2017," '""RT @LustforLo: nigga they disrespected you and they still got your coins. played yourself https://t.co/8QaQzl4Eji""'", 'Diklava',1552,492,0,0,0.25,0
67,Mon Jun 12 12:05:14 +0000 2017," '""RT @lewis_goodall: Its not unconstitutional but Labour will rightly say theyre trying to buy themselves more time. Obviously fear losing…""'", 'BrownsteinItay',63,1570,0,0,0.25,0
68,Mon Jun 12 12:05:14 +0000 2017," '""RT @christopherhope: What is going on? Number 10 now suggesting the Queens Speech might be delayed. This is a Tory Coalition of Chaos.""'", 'johnbud86',2078,2137,0,0,0.25,0
69,Mon Jun 12 12:05:14 +0000 2017," '""RT @JamilahLemieux: Your MCM gave some white folks $35k to reward employees for being racist https://t.co/nVGH44Czzd""'", 'slimchayedee',1105,727,0,0,0.25,0
70,Mon Jun 12 12:05:14 +0000 2017," '""RT @MarkSkoda: Hypocrite Jeremy Corbyn says he Welcomes the Cancellation of President Trumps Visit to UK. #LondonHasFallen https://t.co/…""'", 'MarceeeCali',236,615,0,0,0.25,0
71,Mon Jun 12 12:05:14 +0000 2017," '""The Sith Lords to support minority Tory Government on a confidence and supply basis https://t.co/B28D8QGelH""'", 'SFbookclub',2281,2999,0,0,0.25,0
72,Mon Jun 12 12:05:14 +0000 2017," '""@MellowOchre @LeonC1963 Im sure mcnicol sends me donation requests cos he knows Im on esa . He takes the piss he… https://t.co/Z0wq9FH2WK""'", 'rhymingmisfit',1102,1531,0,0,0.25,0
73,Mon Jun 12 12:05:14 +0000 2017," '""RT @jonsnowC4: Here we go..for those too young to remember. Portadown has been the scene of some very nasty stuff down the years. https://t…""'", 'LeedsFromLeeds',1191,3011,0,0,0.25,0
74,Mon Jun 12 12:05:15 +0000 2017," '""RT @paulmasonnews: Good morning. Its time to call out the bullshit of the Labour moderates - it cost Labour victory. 1/~ They fought a *…""'", 'MarcusMillett',74,45,0,0,0.25,0
75,Mon Jun 12 12:05:15 +0000 2017," '""RT @liamyoung: This onslaught against young people will only embolden us. We will vote Labour next time in even greater numbers. Its our f…""'", 'tony26860',176,470,0,0,0.25,0
76,Mon Jun 12 12:05:15 +0000 2017," '""RT @MrMalky: Lest we forget\nThe Tories dont give a f*ck about the Good Friday Agreement\nHere are their local election posters i… ""'", 'AJPOD1965',1550,2642,0,0,0.25,0
77,Mon Jun 12 12:05:15 +0000 2017," '""RT @thebetterindia: 10 Ways You Can Play a Role in Stopping Child Labour Today\n#WorldDayAgainstChildLabour \nhttps://t.co/NXIcJtaWI0 https:/…""'", 'akash9903',100,114,0,0,0.25,0
78,Mon Jun 12 12:05:15 +0000 2017," '""RT @Harryslaststand: There is now talk that Theresa May will delay both #brexit talks & the Queens speech which indicates the Tories aren…""'", 'kfmorel',874,965,0,0,0.25,0
79,Mon Jun 12 12:05:15 +0000 2017," '""RT @AlanCummings20: @DurhamMiners @jeremycorbyn Teresa May is really plumbing the depths with a coalition with the DUP.Tory MPs should… ""'", 'eddygraham39',2457,2379,0,0,0.25,0
80,Mon Jun 12 12:05:15 +0000 2017," '""RT @thebetterindia: 10 Ways You Can Play a Role in Stopping Child Labour Today\n#WorldDayAgainstChildLabour \nhttps://t.co/NXIcJtaWI0 https:/…""'", 'Sumitsh303',147,114,0,0,0.25,0
81,Mon Jun 12 12:05:15 +0000 2017," '""RT @thebetterindia: 10 Ways You Can Play a Role in Stopping Child Labour Today\n#WorldDayAgainstChildLabour \nhttps://t.co/NXIcJtaWI0 https:/…""'", 'soham77881',142,114,0,0,0.25,0
82,Mon Jun 12 12:05:15 +0000 2017," '""RT @thebetterindia: 10 Ways You Can Play a Role in Stopping Child Labour Today\n#WorldDayAgainstChildLabour \nhttps://t.co/NXIcJtaWI0 https:/…""'", 'subham7788',143,114,0,0,0.25,0
83,Mon Jun 12 12:05:15 +0000 2017," '""RT @thebetterindia: 10 Ways You Can Play a Role in Stopping Child Labour Today\n#WorldDayAgainstChildLabour \nhttps://t.co/NXIcJtaWI0 https:/…""'", 'subrat7788',145,113,0,0,0.25,0
84,Mon Jun 12 12:05:15 +0000 2017," '""RT @thebetterindia: 10 Ways You Can Play a Role in Stopping Child Labour Today\n#WorldDayAgainstChildLabour \nhttps://t.co/NXIcJtaWI0 https:/…""'", 'sridhar991',149,113,0,0,0.25,0
85,Mon Jun 12 12:05:16 +0000 2017," '""RT @thebetterindia: 10 Ways You Can Play a Role in Stopping Child Labour Today\n#WorldDayAgainstChildLabour \nhttps://t.co/NXIcJtaWI0 https:/…""'", 'sjagannath4',144,114,0,0,0.25,0
86,Mon Jun 12 12:05:15 +0000 2017," '""RT @BENEFITS_NEWS: JUDGEMENT DAY: Theresa May faces axe as Tories call emergency meeting TOMORROW https://t.co/pgScIY8IPI""'", 'SonnyDaes',1096,4997,0,0,0.25,0
87,Mon Jun 12 12:05:16 +0000 2017," '""RT @thebetterindia: 10 Ways You Can Play a Role in Stopping Child Labour Today\n#WorldDayAgainstChildLabour \nhttps://t.co/NXIcJtaWI0 https:/…""'", 'rajesh8107',141,116,0,0,0.25,0
88,Mon Jun 12 12:05:16 +0000 2017," '""RT @thebetterindia: 10 Ways You Can Play a Role in Stopping Child Labour Today\n#WorldDayAgainstChildLabour \nhttps://t.co/NXIcJtaWI0 https:/…""'", 'sukhdev991',139,113,0,0,0.25,0
89,Mon Jun 12 12:05:15 +0000 2017," '""RT @thebetterindia: 10 Ways You Can Play a Role in Stopping Child Labour Today\n#WorldDayAgainstChildLabour \nhttps://t.co/NXIcJtaWI0 https:/…""'", 'subham0088',149,113,0,0,0.25,0
90,Mon Jun 12 12:05:16 +0000 2017," '""RT @thebetterindia: 10 Ways You Can Play a Role in Stopping Child Labour Today\n#WorldDayAgainstChildLabour \nhttps://t.co/NXIcJtaWI0 https:/…""'", 'Keshabrana12',91,115,0,0,0.25,0
91,Mon Jun 12 12:05:16 +0000 2017," '""RT @thebetterindia: 10 Ways You Can Play a Role in Stopping Child Labour Today\n#WorldDayAgainstChildLabour \nhttps://t.co/NXIcJtaWI0 https:/…""'", 'mahimachoudhur2',145,114,0,0,0.25,0
92,Mon Jun 12 12:05:16 +0000 2017," '""Labour Leader Ramsay Macdonald give up plans to visit Russia due to popular opposition toward his pacifist views.""'", 'CenturyAgoToday',17136,37,0,0,0.25,0
93,Mon Jun 12 12:05:15 +0000 2017," '""Very telling how open Tory MPs feel they can be in criticising their own manifesto now. https://t.co/KLf3yp9h2Z""'", 'TomMlud',2313,1746,0,0,0.25,0
94,Mon Jun 12 12:05:16 +0000 2017," '""RT @thebetterindia: 10 Ways You Can Play a Role in Stopping Child Labour Today\n#WorldDayAgainstChildLabour \nhttps://t.co/NXIcJtaWI0 https:/…""'", 'Narendr815',144,115,0,0,0.25,0
95,Mon Jun 12 12:05:16 +0000 2017," '""@SkyNews @francesdavies15 The Tories are grasping at time.""'", 'wordnewspaper',1779,2728,0,0,0.25,0
96,Mon Jun 12 12:05:16 +0000 2017," '""RT @thebetterindia: 10 Ways You Can Play a Role in Stopping Child Labour Today\n#WorldDayAgainstChildLabour \nhttps://t.co/NXIcJtaWI0 https:/…""'", 'fatima77882',97,122,0,0,0.25,0
97,Mon Jun 12 12:05:16 +0000 2017," '""RT @thebetterindia: 10 Ways You Can Play a Role in Stopping Child Labour Today\n#WorldDayAgainstChildLabour \nhttps://t.co/NXIcJtaWI0 https:/…""'", 'jamuna7788',101,115,0,0,0.25,0
98,Mon Jun 12 12:05:16 +0000 2017," '""RT @thebetterindia: 10 Ways You Can Play a Role in Stopping Child Labour Today\n#WorldDayAgainstChildLabour \nhttps://t.co/NXIcJtaWI0 https:/…""'", 'sameersharma410',143,113,0,0,0.25,0
99,Mon Jun 12 12:05:16 +0000 2017," '""RT @empireofthekop: Jeremy Corbyn nutmegging members of the public😉 \n\n🎥 LDN Movements https://t.co/4yRWvlmTMR""'", 'DavidwallbDavid',443,911,0,0,0.25,0
100,Mon Jun 12 12:05:16 +0000 2017," '""@Yes_Perth_City @WingsScotland Problem is - fallacy that there are normal or decent Tories they might think they… https://t.co/hm6RRQR6Cu""'", 'The45Storm',12610,3926,0,0,0.25,0
101,Mon Jun 12 12:05:16 +0000 2017," '""RT @JamieMeWrites: If Theresa May cant make the Queens Speech I know a guy wholl step in short notice. https://t.co/gdHYzKXJID""'", 'Battillac',542,954,0,0,0.25,0
102,Mon Jun 12 12:05:16 +0000 2017," '""RT @MichaelLCrick: Tom Watson has written to Theresa May asking whether Rupert Murdoch ever suggested to you Michael Gove should be given…""'", 'mr_ceebs',1353,2264,0,0,0.25,0
103,Mon Jun 12 12:05:16 +0000 2017," '""RT @markthomasinfo: What would be really really useful right now is if Labour focused attack on Tories and their marching partners.""'", 'acme_orange',70,339,0,0,0.25,0
104,Mon Jun 12 12:05:16 +0000 2017," '""@silverrich39 Hes like every Tory! Why let the truth get in the way of their agenda!""'", 'TheAnethetist',527,951,0,0,0.25,0
105,Mon Jun 12 12:05:16 +0000 2017," '""RT @Paul1Singh: Maybe if Corbyn hadnt whipped the PLP to vote with the Tories over Art 50 & then backed a Tory hard Brexit? https://t.co/C…""'", 'chrisgerhard',1189,1255,0,0,0.25,0
106,Mon Jun 12 12:05:16 +0000 2017," '""RT @spietikainen: Every child has the right to a childhood. Acting together to end child labour. #WorldDayAgainstChildLabour""'", 'seppoparvi',277,421,0,0,0.25,0
107,Mon Jun 12 12:05:16 +0000 2017," '""RT @JackyHolyoake: @jameelq @girlfriday8861 @acgrayling @grahambsi @Eureluctantvote @labour @jeremycorbyn It seems you fail to underst… ""'", 'ActualHalfwen',463,2001,0,0,0.25,0
108,Mon Jun 12 12:05:17 +0000 2017," '""RT @SandPatterson: Not a failure. BBC is broadcasting arm of the tory establishment. https://t.co/Wzr0QS2gHM""'", 'weestie97',2235,2718,0,0,0.25,0
109,Mon Jun 12 12:05:16 +0000 2017," '""@UKuncut @jeremycorbyn @guardian I think its interesting that both Jeremy Corbyn and Donald Trump have the same fake news enemies.""'", 'Zoompad',1562,662,0,0,0.25,0
110,Mon Jun 12 12:05:17 +0000 2017," '""RT @paulwaugh: Remember Mays Coalition of chaos attack on Labour? Now Queens Speech/Brexit talks delayed as DUP deal unresolved https:/…""'", 'mredinburgh',1007,1037,0,0,0.25,0
111,Mon Jun 12 12:05:17 +0000 2017," '""RT @BrexitCentral: Graham Brady: The Labour Party was contesting the election with a policy on the EU that was broadly the same as th… ""'", 'toryVal',340,257,0,0,0.25,0
112,Mon Jun 12 12:05:17 +0000 2017," '""RT @dr_alex_gates: Encouraging fact: of Conservatives 318 seats there was a Tory➡️Labour swing in 215 of them! (My maths)\nThe tide is turn…""'", 'jenhewitt4',171,184,0,0,0.25,0
113,Mon Jun 12 12:05:17 +0000 2017," '""Another Tory liar! https://t.co/vSRsO1muhI""'", 'TrevMo',44,232,0,0,0.25,0
114,Mon Jun 12 12:05:17 +0000 2017," '""RT @piyamalav4: @Gurmeetramrahim On #WorldDayAgainstChildLabour We pledge 2 eradicate child labour by not employing rather educatin… ""'", 'Niketa59376108',34,10,0,0,0.25,0
115,Mon Jun 12 12:05:17 +0000 2017," '""How many companies told employees Labour vote may cost their job? #GE17 https://t.co/wmdkGJDuZU via @skwawkbox""'", 'saramo',3534,3334,0,0,0.25,0
116,Mon Jun 12 12:05:17 +0000 2017," '""RT @toluogunlesi: This is the funniest thing youre going to read this week. Maybe even this month // The Book of Jeremy Corbyn https://t.…""'", 'BabsFagbayibo',422,310,0,0,0.25,0
117,Mon Jun 12 12:05:17 +0000 2017," '""RT @wikileaks: Night It Rained Guns: How Is Theresa May’s Ally DUP Linked To Purulia Arms Drop Case?\nhttps://t.co/zFaNR7hrVK""'", 'kernow4corbyn',1384,189,0,0,0.25,0
118,Mon Jun 12 12:05:17 +0000 2017," '""May in tears and Tory staffer was physically sick on disastrous election night https://t.co/T7oowhNfhY Well Done #Labour #SWaGKing""'", 'IamSWaGodKing',5791,5727,0,0,0.25,0
119,Mon Jun 12 12:05:18 +0000 2017," '""RT @anneapplebaum: Downing Street will not be sorry if Trump cancels his state visit \nhttps://t.co/61MnCxrNgX""'", 'knammari1',1415,1085,0,0,0.25,0
120,Mon Jun 12 12:05:18 +0000 2017," '""RT @AbiWilks: This election has been a good test of intellectual honesty (PC clearly passes) https://t.co/7pCpl4Aig9""'", 'davesmith_109',592,1860,0,0,0.25,0
121,Mon Jun 12 12:05:18 +0000 2017," '""RT @ToryFibs: Theresa May in reappointing Jeremy Hunt Health Secretary has sent a clear signal to NHS Patients & Staff. She refuses to list…""'", 'alisonwebster7',793,894,0,0,0.25,0
122,Mon Jun 12 12:05:18 +0000 2017," '""RT @AaronBastani: Owen is a class act for not naming names at end here. https://t.co/QkBGBjzCtI""'", 'cookielicker12',185,705,0,0,0.25,0
123,Mon Jun 12 12:05:18 +0000 2017," '""RT @Furmadamadam: A giant effigy of a Union Jack clad Theresa May fliping the V-sign @ Europe was erected on the white cliffs of Dove… ""'", 'Sparkwade',298,142,0,0,0.25,0
124,Mon Jun 12 12:05:18 +0000 2017," '""The Book of Jeremy Corbyn https://t.co/ms6Nxdu5GV via @newyorker""'", 'fitba11',31,57,0,0,0.25,0
125,Mon Jun 12 12:05:18 +0000 2017," '""EMEP (Labour Party) Adana City Organization: Shut down (religious) community dormitories immediat… https://t.co/WLPdZl9otC via @YersizSeyler""'", 'YersizSeyler',688,644,0,0,0.25,0
126,Mon Jun 12 12:05:18 +0000 2017," '""Jane Merrick is clearly incapable of empathy towards anything other than a Tory. https://t.co/lINok2yB8j""'", 'platernian',66,194,0,0,0.25,0
127,Mon Jun 12 12:05:18 +0000 2017," '""@55krissi55 @skwawkbox @georgegalloway is 100% Labour @IainMcNicol is just a waist of space the party needs to act and get rid of him now""'", 'josie1964',2118,2072,0,0,0.25,0
128,Mon Jun 12 12:05:18 +0000 2017," '""RT @gatewaypundit: Hypocrite Jeremy Corbyn says he Welcomes the Cancellation of President Trumps Visit to UK https://t.co/DC5Vf0HZVe""'", 'IsraelMatzav',10560,210,0,0,0.25,0
129,Mon Jun 12 12:05:18 +0000 2017," '""@woodywildman @Conservatives Theresa May is Prime Minister https://t.co/Hlxca3xVfq""'", 'MBabalon',14,98,0,0,0.25,0
130,Mon Jun 12 12:05:19 +0000 2017," '""RT @wallaceme: Isnt history awkward https://t.co/m0hoF1wtM4""'", 'ShurelyNot',527,818,0,0,0.25,0
131,Mon Jun 12 12:05:18 +0000 2017," '""RT @DavidJo52951945: Jeremy Corbyns election result was a terrible result for Labour.Fewer seats than Kinnock 1992 & Callaghan 1979 & j… ""'", 'MJBr00ks58',342,660,0,0,0.25,0
132,Mon Jun 12 12:05:19 +0000 2017," '""RT @acgrayling: FPTP is profoundly undemocratic. Tories & Labour are in a self-serving conspiracy about it because it benefits only… ""'", 'Sukraine',891,1111,0,0,0.25,0
133,Mon Jun 12 12:05:19 +0000 2017," '""RT @EllenRenton: What do you think is main reason for the loss of 21 SNP seats in #GE2017 #DUPdeal #mondaymotivation - please RT as widely…""'", 'Shoolyboo',1747,1200,0,0,0.25,0
134,Mon Jun 12 12:05:19 +0000 2017," '""RT @UKIPNFKN: No 10 refuses to confirm Queens speech will go ahead next Monday via guardian\n#GE2017 #ToriesOut #DUP\nhttps://t.co/Fj8IOvVuWL""'", 'SheronWilkie',1318,2841,0,0,0.25,0
135,Mon Jun 12 12:05:19 +0000 2017," '""RT @paulwaugh: Remember Mays Coalition of chaos attack on Labour? Now Queens Speech/Brexit talks delayed as DUP deal unresolved https:/…""'", 's9tmt',3916,826,0,0,0.25,0
136,Mon Jun 12 12:05:19 +0000 2017," '""Have to say Lord Buckethead on Last Week Tonight with John Oliver is best thing about #GE2017 (youll need a VPN) https://t.co/6hEJ6Qu7nv""'", 'andrewspoooner',13585,14559,0,0,0.25,0
137,Mon Jun 12 12:05:19 +0000 2017," '""@GlindonMary @Guyverpop What about concerns over the Good Friday agreement? Will Labour make a formal protest?""'", 'wallsend4labour',56,32,0,0,0.25,0
138,Mon Jun 12 12:05:19 +0000 2017," '""RT @Independent: Ruth Davidson to attend Theresa Mays first cabinet meeting https://t.co/rXQ0C4xlIA https://t.co/mhgyp7FcuQ""'", 'SamWitts2',2847,1830,0,0,0.25,0
139,Mon Jun 12 12:05:20 +0000 2017," '""Corbyn stands on the threshold of Downing Street after changing politics forever https://t.co/Nv6s4fCQU0""'", 'maurawilson63',263,194,0,0,0.25,0
140,Mon Jun 12 12:05:20 +0000 2017," '""RT @AndrewSparrow: No 10 hints Queens speech will be delayed - https://t.co/WfIiTjyLxl""'", 'M_Noman_D',149,102,0,0,0.25,0
141,Mon Jun 12 12:05:20 +0000 2017," '""RT @hterrie53: @saralread @Shambles151 Funny how magical money tree was found to spend over a million on negative advertising towards Lab…""'", 'Nicolascotland',193,1289,0,0,0.25,0
142,Mon Jun 12 12:05:20 +0000 2017," '""RT @EdwardTHardy: Michael Gove is the new Secretary of State for the Environment. He is now in charge of all of the wheat fields Theresa Ma…""'", 'Ailbhe1996',243,532,0,0,0.25,0
143,Mon Jun 12 12:05:20 +0000 2017," '""Tories considering reanimating Thatcher to prop up the Government \n\n#Election2017""'", 'ThreePeaceSweet',409,1452,0,0,0.25,0
144,Mon Jun 12 12:05:21 +0000 2017," '""RT @jonsnowC4: Here we go..for those too young to remember. Portadown has been the scene of some very nasty stuff down the years. https://t…""'", 'MnDlover',1226,2336,0,0,0.25,0
145,Mon Jun 12 12:05:21 +0000 2017," '""RT @MayaGoodfellow: Cooper says since the leadership election last year ALL Labour MPs got behind Corbyn. Im afraid thats simply not true…""'", 'Phil_O_Keefe',1777,3016,0,0,0.25,0
146,Mon Jun 12 12:05:21 +0000 2017," '""RT @davidallengreen: My thread on Theresa May being the Brexiteers biggest problem all along. https://t.co/j8AJN7IOkj""'", 'jennifermor',2516,1815,0,0,0.25,0
147,Mon Jun 12 12:05:21 +0000 2017," '""RT @JonAshworth: Theresa Mays weak and unstable government forced to delay Queens Speech. What a shambles https://t.co/1K7vBS48zr""'", 'Joupnorth',584,475,0,0,0.25,0
148,Mon Jun 12 12:05:21 +0000 2017," '""@thomasogara15 Its hard labour""'", 'whispersintime',137,78,0,0,0.25,0
149,Mon Jun 12 12:05:21 +0000 2017," '""RT @goruinsa3: @Gurmeetramrahim #WorldDayAgainstChildLabour Child labour hinders children from blossoming & kill their aspirations… ""'", 'Niketa59376108',34,10,0,0,0.25,0
150,Mon Jun 12 12:05:22 +0000 2017," '""RT @TheEconomist: Theresa May’s failed gamble\nhttps://t.co/UosYcf55EW""'", 'tirogloso2',95,119,0,0,0.25,0
151,Mon Jun 12 12:05:22 +0000 2017," '""RT @davidallengreen: My thread on Theresa May being the Brexiteers biggest problem all along. https://t.co/j8AJN7IOkj""'", 'Vague_Biscuit',220,567,0,0,0.25,0
152,Mon Jun 12 12:05:22 +0000 2017," '""RT @zach2302: Imagine having Jeremy Corbyn as ur dad itd be mad tbh he wouldnt tell you to clean ya room hed INSPIRE you to clean it""'", 'Josh9510',3211,970,0,0,0.25,0
153,Mon Jun 12 12:05:23 +0000 2017," '""RT @UnityMarchUK: @georgegalloway a must read ❤️ https://t.co/jgGxQLD0Fi""'", 'UmerSadozai',302,449,0,0,0.25,0
154,Mon Jun 12 12:05:23 +0000 2017," '""RT @kmqkatie: Well you did tweet this @theresa_may so maybe youd better stick to your guns ? Or was it another lie… ""'", 'FlorHiddles',276,158,0,0,0.25,0
155,Mon Jun 12 12:05:23 +0000 2017," '""RT @PolhomeEditor: Gerry Adams: We believe that any deal between the DUP and the English Tories will not be good for here.""'", 'DunningMarion',87,174,0,0,0.25,0
156,Mon Jun 12 12:05:23 +0000 2017," '""RT @dallo100: Jeremy Corbyn negotiated with Sinn Fein (Political arm of IRA) for PEACE. May negotiated with the DUP (Political arm of UVF/U…""'", 'deathtomisery',794,1042,0,0,0.25,0
157,Mon Jun 12 12:05:23 +0000 2017," '""@alexmassie Would be interesting to see how many Tories who voted Labour in 2015 now returned to their usual home...""'", 'jruddy99',1811,893,0,0,0.25,0
158,Mon Jun 12 12:05:23 +0000 2017," '""Is the Tory Party intentionally gambling with Northern Ireland peace process by getting in bed with DUP? Listen.... https://t.co/lQUV9GV0bM""'", 'wangusim',877,4997,0,0,0.25,0
159,Mon Jun 12 12:05:23 +0000 2017," '""RT @drjanaway: People worry that my stance on tory NHS threatens my job as a doctor. I care more about my patients than that. No NHS means…""'", 'sparky100',448,566,0,0,0.25,0
160,Mon Jun 12 12:05:23 +0000 2017," '""RT @JonnElledge: Oh to be in the room when the Tories ask 10 DUP MPs to support a plan which would cost three of them their jobs. https://t…""'", 'karlusss',1457,748,0,0,0.25,0
161,Mon Jun 12 12:05:23 +0000 2017," '""RT @chunkymark: Theresa Mays Tories\nNO Manifesto \nNO Mandate \nNO Majority https://t.co/cDWGtt4LKi""'", 'Nickyhan1',33,428,0,0,0.25,0
162,Mon Jun 12 12:05:23 +0000 2017," '""Briefing against your party when theres a call for unity really is a deperation move #labour https://t.co/mjiVi9pGGU""'", 'Warrs_',1189,1006,0,0,0.25,0
163,Mon Jun 12 12:05:24 +0000 2017," '""@CaesarSextus @Stop_The_EU Then we need to stick to the Tory leave plan. The alternative will not be acceptable to British people.""'", 'Mariebe10098426',1423,2846,0,0,0.25,0
164,Mon Jun 12 12:05:24 +0000 2017," '""RT @derasachasauda: #WorldDayAgainstChildLabour Child labour hinders children from blossoming & kill their aspirations to do something… ""'", 'Jaspreet8437',121,4,0,0,0.25,0
165,Mon Jun 12 12:05:24 +0000 2017," '""RT @Hepworthclare: Queens Speech *postponed*\nTory Manifesto *shredded*\nNobody has CLUE about what is going on !\nBut HEY - DUP will bail yo…""'", 'john_corall',93,122,0,0,0.25,0
166,Mon Jun 12 12:05:24 +0000 2017," '""RT @TheProgAlliance: A snap election called by a Tory PM in 1974. Tried to negotiate with NI MPs. It collapsed 🤔 https://t.co/yR0j9N6z9w ht…""'", 'peterjmurray',560,177,0,0,0.25,0
167,Mon Jun 12 12:05:24 +0000 2017," '""RT @tom_watson: We will be pressing Theresa May until she gives answers. https://t.co/8M0gX0RUnr""'", 'mr_ceebs',1353,2264,0,0,0.25,0
168,Mon Jun 12 12:05:24 +0000 2017," '""RT @Independent: Populism is no longer a dirty word - and its thanks to Jeremy Corbyn https://t.co/V8TkeYGOxd https://t.co/FiwTUpXxrc""'", 'BarbeeParty97',67,3378,0,0,0.25,0
169,Mon Jun 12 12:05:24 +0000 2017," '""RT @JamieMeWrites: If Theresa May cant make the Queens Speech I know a guy wholl step in short notice. https://t.co/gdHYzKXJID""'", 'laffterman',49,68,0,0,0.25,0
170,Mon Jun 12 12:05:25 +0000 2017," '""HOW can UK negotiate BETTER trade DEALS than EU27 while SIZE MATTERS more than all! #Brexit #stopbrexit #GE2017… https://t.co/eIk3I0T83k""'", 'weloveeconomics',761,291,0,0,0.25,0
171,Mon Jun 12 12:05:24 +0000 2017," '""GBP reaction after UK Election (GE2017) https://t.co/xpnW3m44A0 #markets https://t.co/e9SzWgmFCl""'", 'ResearchPool',6365,4569,0,0,0.25,0
172,Mon Jun 12 12:05:25 +0000 2017," '""RT @KeeleyMP: Under weak & unstable Tories we have chronic shortage of nurses & now applications from EU nurses fall by 96% https://t.co/jN…""'", 'JanHunt78561126',281,59,0,0,0.25,0
173,Mon Jun 12 12:05:25 +0000 2017," '""Perhaps you should have read Labours manifesto before voting fof them then?? https://t.co/MEqWK6WfmB""'", 'whipitup69',2279,720,0,0,0.25,0
174,Mon Jun 12 12:05:25 +0000 2017," '""Former Obama Deputy Chief of Staff and UK Conservative Party hired gun Jim Messina hasnt tweeted since the Tories… https://t.co/SVlPsAcMUX""'", 'GiovanniTorre',1557,614,0,0,0.25,0
175,Mon Jun 12 12:05:25 +0000 2017," '""RT @brexit_sham: Its going so well.....LIVE: Theresa Mays first Cabinet meeting postponed https://t.co/Anz6eSnApr""'", 'yunod',2337,967,0,0,0.25,0
176,Mon Jun 12 12:05:25 +0000 2017," '""RT @JamieMeWrites: If Theresa May cant make the Queens Speech I know a guy wholl step in short notice. https://t.co/gdHYzKXJID""'", 'shxlini',2292,1947,0,0,0.25,0
177,Mon Jun 12 12:05:25 +0000 2017," '""RT @KSCFIndia: Child labour is a cognizable offense which means police can arrest without a warrant and have to register FIR.… ""'", 'jazgill05',83,121,0,0,0.25,0
178,Mon Jun 12 12:05:25 +0000 2017," '""RT @lewis_goodall: Cab office manual: government is entitled to wait until new Parliament meets to see if it can command confidence o… ""'", 'BrownsteinItay',63,1570,0,0,0.25,0
179,Mon Jun 12 12:05:25 +0000 2017," '""RT @guardian: Labour can win majority if it pushes for new general election within two years https://t.co/FeHBQR01i1""'", 'okhopa',68,58,0,0,0.25,0
180,Mon Jun 12 12:05:25 +0000 2017," '""RT @jonsnowC4: Here we go..for those too young to remember. Portadown has been the scene of some very nasty stuff down the years. https://t…""'", 'janisb33',116,408,0,0,0.25,0
181,Mon Jun 12 12:05:26 +0000 2017," '""@TrustMaryam @beggie_smalls @alanferrier As if Piglet would ever vote Tory""'", 'BlackHBlonde',110,303,0,0,0.25,0
182,Mon Jun 12 12:05:26 +0000 2017," '""@ROBBZY88 Oh me too. Could it really happen? Could Theresa May have fucked everything up enough to give us a Labour minority government?""'", 'crowleeey',2544,2161,0,0,0.25,0
183,Mon Jun 12 12:05:26 +0000 2017," '""RT @johnmcdonnellMP: Lets invite all those who supported our ideas in this election to join our party and build a million member party htt…""'", 'bryce_isobel',88,198,0,0,0.25,0
184,Mon Jun 12 12:05:26 +0000 2017," '""Queens speech delayed 😳No pressure T May you just stay #StrongAndStable While the country goes to pot 🚨🚨🚨🚨🚨#BrexitShambles #Tories""'", 'gweston7',225,345,0,0,0.25,0
185,Mon Jun 12 12:05:26 +0000 2017," '""RT @MirrorPolitics: 6 nasty Tory policies Theresa May could be forced to ditch from the Queens Speech \n\n#CoalitionOfChaos… ""'", 'BigPoppaTotoro',2049,842,0,0,0.25,0
186,Mon Jun 12 12:05:26 +0000 2017," '""RT @CanutusRex: Dear British people: Perhaps no Parliament is better than a poor Parliament? I stand ready to serve you. #MakeMonarchyGreat…""'", 'Manx',120,155,0,0,0.25,0
187,Mon Jun 12 12:05:26 +0000 2017," '""RT @Nezifah: Broke ass boi @torylanez bet u wont come to my crib and put 35 racks on my kitchen floor ol broke ass https://t.co/wZwNGUMVA1""'", 'veinity__',1212,264,0,0,0.25,0
188,Mon Jun 12 12:05:26 +0000 2017," '""Can you really put Michael Gove & talent in the same sentence?! 🤔 https://t.co/WihjLwO6Q9""'", 'PaulTyredagh81',6838,3274,0,0,0.25,0
189,Mon Jun 12 12:05:26 +0000 2017," '""RT @DavidDTSS: I never understood spending money in stores that treat us like this. You just gave a racist commission. https://t.co/79F8XwN…""'", 'JasonGr1992',134,1090,0,0,0.25,0
190,Mon Jun 12 12:05:27 +0000 2017," '""RT @PeoplesMomentum: Theres a huge task ahead - but never again can anyone say you cant change the world.\n✔ https://t.co/a1MDh6DlnP\n✔… ""'", 'Zelig777',43,23,0,0,0.25,0
191,Mon Jun 12 12:05:27 +0000 2017," '""RT @dallo100: Jeremy Corbyn negotiated with Sinn Fein (Political arm of IRA) for PEACE. May negotiated with the DUP (Political arm of UVF/U…""'", 'plumby44',334,285,0,0,0.25,0
192,Mon Jun 12 12:05:27 +0000 2017," '""RT @tru68: The Labour Party campaign was funded by average donations from the public of £27 #peoplepower Lets do the same for #JeremyBambe…""'", 'HeidiHawkins39',2541,3973,0,0,0.25,0
193,Mon Jun 12 12:05:27 +0000 2017," '""RT @Rachael_Swindon: Dear @IainMcNicol Expel this traitor immediately. He is harnessing support for a Tory PM that George Osborne called… ""'", 'Doings0',65,233,0,0,0.25,0
194,Mon Jun 12 12:05:27 +0000 2017," '""RT @OhBrokenBritain: This would be the best political decision that PM May would ever make! Farage the NEGOTIATOR? https://t.co/2CXvkjrXKq""'", 'ThisSepticIsle',1499,2077,0,0,0.25,0
195,Mon Jun 12 12:05:28 +0000 2017," '""RT @itvnews: Jeremy Corbyn will challenge Theresa May with significant amendments to her plan of legislation in the Queens Sp… ""'", 'MaritGaimster',157,102,0,0,0.25,0
196,Mon Jun 12 12:05:28 +0000 2017," '""I bet Jeremy Corbyns homemade jam tastes of Tory tears and hope.""'", 'CarraGabs',970,217,0,0,0.25,0
197,Mon Jun 12 12:05:28 +0000 2017," '""RT @WhispersNewsLTD: REVEALED: The List Of DUP Demands In Exchange For Helping Tories https://t.co/CUmXlr7wVg https://t.co/8YsHf9XUgl""'", 'celticbookworm',45,324,0,0,0.25,0
198,Mon Jun 12 12:05:28 +0000 2017," '""RT @Robert___Harris: Michael Gove on Theresa May: “I think she’s doing a fantastic job.” Shafts of exquisite comedy pierce the gloom https:…""'", 'iangor',1040,1016,0,0,0.25,0
199,Mon Jun 12 12:05:28 +0000 2017," '""@the_shov shut down the media for 6 wks. Just shut it all down. Disgusting toxic rabble rousers. Wed emerge a much better country. #GE2017""'", 'the_shov',1666,1452,0,0,0.25,0
200,Mon Jun 12 12:05:28 +0000 2017," '""RT @LustforLo: nigga they disrespected you and they still got your coins. played yourself https://t.co/8QaQzl4Eji""'", 'astoopidguy',198,145,0,0,0.25,0
201,Mon Jun 12 12:05:29 +0000 2017," '""RT @pinkhiigh: But there isnt a magic money tree for NHS nurses. https://t.co/qrC9GOUn7G""'", 'belfiore88',80,244,0,0,0.25,0
202,Mon Jun 12 12:05:29 +0000 2017," '""League > Union https://t.co/2Tf2p4bAds""'", 'oldathers',2420,1691,0,0,0.25,0
203,Mon Jun 12 12:05:29 +0000 2017," '""RT @RichardBurgon: Chaos and instability authored by Theresa May and the Conservatives. Time to go! https://t.co/HOtEkbl4Og""'", 'justmebeingme4',5455,5510,0,0,0.25,0
204,Mon Jun 12 12:05:29 +0000 2017," '""@JonnElledge @iainmartin1 Support for abortion rights doesnt seem to bother many people re Labours relationship with the SDLP.""'", 'hanesyddiaeth',1979,4999,0,0,0.25,0
205,Mon Jun 12 12:05:29 +0000 2017," '""RT @BBCRosAtkins: Im not sure we are. The Tories dont have a majority of the popular vote or a majority in the Commons. https://t.co/XjOj…""'", 'VoteBeg',63,374,0,0,0.25,0
206,Mon Jun 12 12:05:30 +0000 2017," '""RT @BBCNormanS: Labour not closing door on single market. Reformed membership an option says Barry Gardiner @BBCr4today""'", 'GreatRedDragon0',116,69,0,0,0.25,0
207,Mon Jun 12 12:05:30 +0000 2017," '""RT @CarolineLucas: Beggars belief. One look at Gove’s voting record shows him unfit for this job: https://t.co/IIzaJRek8I https://t.co/TzIx…""'", '_robsheldon',4133,4097,0,0,0.25,0
208,Mon Jun 12 12:05:30 +0000 2017," '""RT @ToryAlexandraT: @RobertWinfield2 Thank you! I was angered by the Tory campaign so as a Tory would like to change things from within.""'", 'toryVal',340,257,0,0,0.25,0
209,Mon Jun 12 12:05:30 +0000 2017," '""RT @goruinsa3: @Gurmeetramrahim EVERYONE!!!!!!!!!!should Take Action On the Child Labour🙏🙏🙏🙏🙏🙏🙏\n#WorldDayAgainstChildLabour""'", 'Niketa59376108',34,10,0,0,0.25,0
210,Mon Jun 12 12:05:30 +0000 2017," '""RT @Hepworthclare: Queens Speech *postponed*\nTory Manifesto *shredded*\nNobody has CLUE about what is going on !\nBut HEY - DUP will bail yo…""'", 'tony26860',176,470,0,0,0.25,0
211,Mon Jun 12 12:05:30 +0000 2017," '""RT @MarkSkoda: Hypocrite Jeremy Corbyn says he Welcomes the Cancellation of President Trumps Visit to UK. #LondonHasFallen https://t.co/…""'", 'jamessf0rbes',257,93,0,0,0.25,0
212,Mon Jun 12 12:05:30 +0000 2017," '""UK Electoral commission: Labour General Election Fraud 2017 - Sign the Petition! https://t.co/xEOf9nx6Qy via @UKChange""'", 'DianeBrierley1',98,189,0,0,0.25,0
213,Mon Jun 12 12:05:30 +0000 2017," '""RT @JaniceChalmers: agree wholeheartedly. Lets get tough and fight for independence. https://t.co/i4tPE4tUhN""'", 'Lesleygsmith3',2377,2164,0,0,0.25,0
214,Mon Jun 12 12:05:30 +0000 2017," '""RT @CorbynSnap: The Tories are cosying up to the DUP who are anti-abortion. Disgusting. Not like Ive ever cosied up to Islamists who chop…""'", 'pete_j_morris',959,2457,0,0,0.25,0
215,Mon Jun 12 12:05:30 +0000 2017," '""RT @PeterStefanovi2: 24 hours after election Tories still cant tell TRUTH on social care! If this is right there will be less money for… ""'", 'Jaistrup',446,219,0,0,0.25,0
216,Mon Jun 12 12:05:30 +0000 2017," '""oh so true https://t.co/2RzH8JBmJY""'", 'muttley1962',32,0,0,0,0.25,0
217,Mon Jun 12 12:05:31 +0000 2017," '""RT @OwenJones84: Tories doubling down on contempt for the young will 100% turn their political fortunes around https://t.co/4ZIOWZYFIC""'", 'anglophile1992',350,984,0,0,0.25,0
218,Mon Jun 12 12:05:31 +0000 2017," '""@TeamPangloss The DUP would absolutely never in a million years vote against the Tories on a confidence vote when the alternative is Corbyn""'", 'CuriousCabbage',2018,954,0,0,0.25,0
219,Mon Jun 12 12:05:31 +0000 2017," '""Looks like Theresa May aint so secure after all. Queens speech now delayed ... just give it up and stop squatting at number 10 😒#WorstPM""'", 'FunmiSmith',973,244,0,0,0.25,0
220,Mon Jun 12 12:05:31 +0000 2017," '""RT @ChaabanRabih: Theresa May lost the legitimacy to lead #Brexit talks -she stated before election her aim was to strengthen her han… ""'", 'ChaabanRabih',9997,10975,0,0,0.25,0
221,Mon Jun 12 12:05:31 +0000 2017," '""RT @MarkSkoda: Hypocrite Jeremy Corbyn says he Welcomes the Cancellation of President Trumps Visit to UK. #LondonHasFallen https://t.co/…""'", 'Kff87_',361,102,0,0,0.25,0
222,Mon Jun 12 12:05:31 +0000 2017," '""RT @NHSMillion: Jeremy Hunt has just been re-appointed as Health Secretary by Theresa May - pls RT if you agree it is an utter disg… ""'", 'reillysherlock',81,99,0,0,0.25,0
223,Mon Jun 12 12:05:31 +0000 2017," '""RT @PeterStefanovi2: Theresa May appoints anti-LGBT justice secretary with appalling gay rights voting record during DUP talks https://t.co…""'", 'hazelglasgow',3957,1739,0,0,0.25,0
224,Mon Jun 12 12:05:32 +0000 2017," '""RT @drjanaway: People worry that my stance on tory NHS threatens my job as a doctor. I care more about my patients than that. No NHS means…""'", 'David96212152',8,71,0,0,0.25,0
225,Mon Jun 12 12:05:31 +0000 2017," '""RT @RichardBurgon: Chaos and instability authored by Theresa May and the Conservatives. Time to go! https://t.co/HOtEkbl4Og""'", 'kayswax',1570,1354,0,0,0.25,0
226,Mon Jun 12 12:05:32 +0000 2017," '""RT @ShiptonMartin: Orange Order asks DUP to use banned sectarian march in negotiations with Theresa May https://t.co/RcKvz4ptVR""'", 'DylanF1998',139,221,0,0,0.25,0
227,Mon Jun 12 12:05:32 +0000 2017," '""RT @SkyNews: This man just ate (some of) his book live on Sky News after making an incorrect #GE2017 prediction @GoodwinMJ https://t.co/13I…""'", 'DuncanMcKay1888',594,1135,0,0,0.25,0
228,Mon Jun 12 12:05:32 +0000 2017," '""RT @liamyoung: This onslaught against young people will only embolden us. We will vote Labour next time in even greater numbers. Its our f…""'", 'SystemWargames',351,697,0,0,0.25,0
229,Mon Jun 12 12:05:32 +0000 2017," '""RT @GuidoFawkes: .@YvetteCooperMP says DUP deal is troubling. Her Labour Party tried to do deals with the DUP in 2010 and 2015 🤔… ""'", 'ian4newforest',712,945,0,0,0.25,0
230,Mon Jun 12 12:05:32 +0000 2017," '""@JakobDWebster @RoostaFSY @ChrisMcPhaiI @AngrySalmond I 5hink I will join the Tories and put my name forward. Cant… https://t.co/nhSQ6M31Vs""'", 'rabacrabbit',958,1324,0,0,0.25,0
231,Mon Jun 12 12:05:32 +0000 2017," '""RT @MissEllieMae: To be clear: we are overjoyed because Labour got its results by campaigning on an *explicitly leftwing platform.* THATS…""'", 'CamelSopwith',1347,1536,0,0,0.25,0
232,Mon Jun 12 12:05:32 +0000 2017," '""RT @YvetteCooperMP: TMay cant carry on as if election never happened. Need cross party commission to negotiate Brexit not Tory cabal https…""'", 'jonteebow',1,21,0,0,0.25,0
233,Mon Jun 12 12:05:32 +0000 2017," '""@hannada39 Torys were almost all mail delivered by post! That costs serious money.""'", 'WullieFaePlean',738,894,0,0,0.25,0
234,Mon Jun 12 12:05:32 +0000 2017," '""RT @acicconeyouth: This Police community accounts tweet just threw perfect shade on Theresa May #mondaymotivation #ToriesOut https://t.co/…""'", 'Who_IsM',1536,4184,0,0,0.25,0
235,Mon Jun 12 12:05:33 +0000 2017," '""RT @Antonineone1: Yay! Welcome to @UKLabour https://t.co/f6YuoFZEtx""'", 'johnnymup',596,810,0,0,0.25,0
236,Mon Jun 12 12:05:33 +0000 2017," '""@elenacresci @DawnHFoster Will Free Fidget Spinners be a vote winner for the Tories though?""'", 'TheProtestBoard',6340,2077,0,0,0.25,0
237,Mon Jun 12 12:05:33 +0000 2017," '""The perfect case of #LoveLabourHateBrexit \n#StopBrexit https://t.co/uemYHjI4Do""'", 'MePeebs',670,587,0,0,0.25,0
238,Mon Jun 12 12:05:33 +0000 2017," '""RT @wotomydoing: What a traitorous clown this man is. So the labour party is fine with the slaughter of the young people that almost… ""'", 'mizibak12',300,164,0,0,0.25,0
239,Mon Jun 12 12:05:33 +0000 2017," '""@JeremyCorbyn4PM @mackaysuzie At the behest of Tory sponsors who would put up with anything but J.C. whose ratings… https://t.co/pW709oqXoE""'", 'Lotto48',624,3180,0,0,0.25,0
240,Mon Jun 12 12:05:34 +0000 2017," '""If were left with a tory gov we will have ISIS on one side and sectarianism on the other? #CoalitionOfChaos #ConservativeParty""'", 'Beaker_meepmeep',39,357,0,0,0.25,0
241,Mon Jun 12 12:05:34 +0000 2017," '""RT @mike73097431: @meandme3010 @dr_shibley many stopped on and supported LABOUR thru the bad times agree that many should now say sorry to…""'", 'JackInTheBoxi7',170,232,0,0,0.25,0
242,Mon Jun 12 12:05:34 +0000 2017," '""RT @George_Osborne: Todays @EveningStandard editorial - why realism requires a new and welcome approach to the Brexit talks https://t.co/…""'", 'orwell4ever',12428,12364,0,0,0.25,0
243,Mon Jun 12 12:05:34 +0000 2017," '""RT @walnutsoap: The tories rn https://t.co/Dmqdbg2xWM""'", 'AJGarrett',158,140,0,0,0.25,0
244,Mon Jun 12 12:05:34 +0000 2017," '""Cameron wanted it but EU wouldnt deal with him Top Tories dismiss single market plot https://t.co/2gkFvsHMtM""'", 'terencehooson',4645,4282,0,0,0.25,0
245,Mon Jun 12 12:05:34 +0000 2017," '""RT @MarieAnnUK: *Tories Brexit Shambles* https://t.co/IvsQWvg46b""'", 'SheronWilkie',1318,2841,0,0,0.25,0
246,Mon Jun 12 12:05:34 +0000 2017," '""@CelloBellaClara @AlanHinnrichs So youre under the impression that this one interview with Dugdale made a quarter… https://t.co/hBlguKqisl""'", 'Alasdair_Riggs',374,449,0,0,0.25,0
247,Mon Jun 12 12:05:34 +0000 2017," '""RT @MMFlint: Jeremy Corbyn is leading the left out of the wilderness and toward power https://t.co/EerK0n8HOK by @mehdirhasan""'", 'magicspon',100,584,0,0,0.25,0
248,Mon Jun 12 12:05:35 +0000 2017," '""RT @jeremycorbyn: 30 years ago today Diane Abbott became an MP. As the first black woman MP she continues to inspire & represent the… ""'", 'lloydbiglloyd',753,1240,0,0,0.25,0
249,Mon Jun 12 12:05:35 +0000 2017," '""@Chun_ky @Rachael_Swindon @jeremycorbyn at least labour had sums in their manifesto TORIES couldnt be arsed so arrogant !!""'", 'vivienburke',99,129,0,0,0.25,0
250,Mon Jun 12 12:05:35 +0000 2017," '""Queens Speech delayed because Mays vanity election backfired; Tories need to get their DUP bosses onside first. https://t.co/wTk4uAeX3I""'", 'pressfuturist',6507,1641,0,0,0.25,0
251,Mon Jun 12 12:05:35 +0000 2017," '""RT @Unionbuster: John McDonnell confirms #Labour want to leave Single Market https://t.co/PCbBEqsrrE #bbcdp #bbcqt #bbcnews #skynews… ""'", 'JPhennah',424,1402,0,0,0.25,0
252,Mon Jun 12 12:05:35 +0000 2017," '""@BrexitBin @mayaseman #GE2017 was not a referendum - one party asked for a single issue mandate on Brexit and faile… https://t.co/vac9BlkeWE""'", 'EriCuanalo',201,629,0,0,0.25,0
253,Mon Jun 12 12:05:35 +0000 2017," '""RT @SaraMorrison: UK makes Theresa May stand on stage with Lord Buckethead but US companies wont sponsor a Shakespeare play with a possibl…""'", 'DarrenJM1965',76,86,0,0,0.25,0
254,Mon Jun 12 12:05:35 +0000 2017," '""RT @JamieMeWrites: If Theresa May cant make the Queens Speech I know a guy wholl step in short notice. https://t.co/gdHYzKXJID""'", 'marinagleez98',209,637,0,0,0.25,0
255,Mon Jun 12 12:05:35 +0000 2017," '""3 days left. https://t.co/yfT33mFJav""'", 'KatieeeeTaylor',1067,999,0,0,0.25,0
256,Mon Jun 12 12:05:36 +0000 2017," '""RT @MetroUK: Queens Speech delayed as Tories work on DUP deal https://t.co/1bbDFmpNyA""'", 'JackieJax1826',395,339,0,0,0.25,0
257,Mon Jun 12 12:05:36 +0000 2017," '""RT @Rachael_Swindon: Morning @theresa_may Your job as Prime Minister is to put the country first. Not your career or the Tory Party. Res… ""'", 'snowyofalbion',1152,1590,0,0,0.25,0
258,Mon Jun 12 12:05:36 +0000 2017," '""RT @ChaabanRabih: David Gauke appointed as Work & Pensions Secretary -check his abysmal voting record.\nTheresa May is not getting it!!\nhttp…""'", 'ChaabanRabih',9997,10975,0,0,0.25,0
259,Mon Jun 12 12:05:36 +0000 2017," '""RT @spectatorindex: POLL: UK election\n\nConservatives: 40%\nLabour: 39%\nLib Dem: 8%\nUKIP: 5%\nSNP: 4%\n\n(Survation/Mail on Sunday)""'", 'ravikumar_8484',1077,4068,0,0,0.25,0
260,Mon Jun 12 12:05:36 +0000 2017," '""RT @Kevin_Maguire: Labours sweetest defeat & Cons bitterest victory. Why May should go in national interest and we hold 2nd election https…""'", 'carolehope2',1675,4915,0,0,0.25,0
261,Mon Jun 12 12:05:37 +0000 2017," '""@louisthewall @hollyamcd @dontbrexitfixit Im libdem & didnt have to vote tactically. Lots did to bin tories but t… https://t.co/vDebC4bzpi""'", 'mollyluna11',264,215,0,0,0.25,0
262,Mon Jun 12 12:05:37 +0000 2017," '""RT @UN: Millions of children pushed into labour by conflicts and disasters. Find out more on Mondays #NoChildLabour Day… ""'", 'tiffanDG',78,184,0,0,0.25,0
263,Mon Jun 12 12:05:37 +0000 2017," '""RT @Harryslaststand: The reason why Theresa May reappointed #JeremyHunt as Health Secretary is b/c she wants her short legacy as PM to be a…""'", 'alisonwebster7',793,894,0,0,0.25,0
264,Mon Jun 12 12:05:37 +0000 2017," '""@iainmartin1 Its part of trying to delegitimise the DUP partnering with the Tories and hence push the Tories out of office""'", 'MikeAnson',141,883,0,0,0.25,0
265,Mon Jun 12 12:05:37 +0000 2017," '""RT @Harryslaststand: There is now talk that Theresa May will delay both #brexit talks & the Queens speech which indicates the Tories aren…""'", 'RodNicholl1',508,474,0,0,0.25,0
266,Mon Jun 12 12:05:37 +0000 2017," '""Queens Speech delayed. And now #Brexit delayed. More u-turns by Theresa May.\n\nTories even worse than Southern Rail.""'", 'MoFarooq9',2396,2972,0,0,0.25,0
267,Mon Jun 12 12:05:37 +0000 2017," '""Orange Order asks DUP to use banned sectarian march in negotiations with Theresa May https://t.co/fZ91IIkzX5""'", 'Legalimportant',380,352,0,0,0.25,0
268,Mon Jun 12 12:05:37 +0000 2017," '""You stuck your beak in Radio host blasts Gina Miller for thrusting herself into #Brexit\nhttps://t.co/J7xTURG7dK""'", 'pr0udwhite',2422,5001,0,0,0.25,0
269,Mon Jun 12 12:05:37 +0000 2017," '""RT @Hepworthclare: Queens Speech *postponed*\nTory Manifesto *shredded*\nNobody has CLUE about what is going on !\nBut HEY - DUP will bail yo…""'", 'CaptainJimDandy',1834,259,0,0,0.25,0
270,Mon Jun 12 12:05:38 +0000 2017," '""RT @Labour4Animals: LOVE IT! Gerald Scarfe 🐺 Corbyns FOX ps on Theresa May #KeepTheBan 🐾 Prints available @Cartoon4sale… ""'", 'cagney1991',5347,5176,0,0,0.25,0
271,Mon Jun 12 12:05:38 +0000 2017," '""Hundreds will gather in Liverpool to protest against Tory alliance with hard-line D #Liverpool… https://t.co/qbi0Mcgy3n""'", 'liverpooluknews',1941,1644,0,0,0.25,0
272,Mon Jun 12 12:05:38 +0000 2017," '""RT @LewisGillett: Say what you see! Not the first time someone has called him Jeremy C*nt. Just happened on @BBCNews #reshuffle… ""'", 'SpudtheBinx',200,289,0,0,0.25,0
273,Mon Jun 12 12:05:38 +0000 2017," '""RT @dallo100: Jeremy Corbyn negotiated with Sinn Fein (Political arm of IRA) for PEACE. May negotiated with the DUP (Political arm of UVF/U…""'", 'Jabwah',103,164,0,0,0.25,0
274,Mon Jun 12 12:05:38 +0000 2017," '""RT @VoiceofT_Reason: Good on #CliveLewis. Weve had enough #Torylite spiel to last a lifetime! https://t.co/Ag2RvsqLvM via @thecanarysays &…""'", 'EalishWhillock',284,873,0,0,0.25,0
275,Mon Jun 12 12:05:39 +0000 2017," '""RT @pinkhiigh: But there isnt a magic money tree for NHS nurses. https://t.co/qrC9GOUn7G""'", 'rachelboydxo',251,645,0,0,0.25,0
276,Mon Jun 12 12:05:39 +0000 2017," '""Having suffered a tactical defeat at #Ge2017 no politicians will be honest about #brexit 4 fear of another election criminally irresponsible""'", 'Rowland72James',63629,68686,0,0,0.25,0
277,Mon Jun 12 12:05:39 +0000 2017," '""RT @OMG_ItsKhairy: So basically he gave 35k of his own money to white people caus ethey thought he was broke? \n\nNiggas stupid https://t.co/…""'", 'cayflaa',161,225,0,0,0.25,0
278,Mon Jun 12 12:05:39 +0000 2017," '""RT @PrisonPlanet: The Labour party offered them and others the beguiling vision of living perpetually at the expense of others. https://t…""'", 'brilliantsights',1038,1166,0,0,0.25,0
279,Mon Jun 12 12:05:39 +0000 2017," '""RT @NHSMillion: Jeremy Hunt has just been re-appointed as Health Secretary by Theresa May - pls RT if you agree it is an utter disg… ""'", 'JeevesBun',1122,944,0,0,0.25,0
280,Mon Jun 12 12:05:39 +0000 2017," '""RT @mrreptoid: Norwich North MP @NorwichChloe goes to @NorwichPride but hasnt said a word about Tories and DUP homophobia.""'", 'KayWoodsReally',127,396,0,0,0.25,0
281,Mon Jun 12 12:05:39 +0000 2017," '""RT @GraceBrodie: @mrpaulaitken @0604Arb1320 @RuthDavidsonMSP Im looking forward to Ruthie finding out her Scot Tory MPs are only… ""'", 'AlastairWalker2',45,144,0,0,0.25,0
282,Mon Jun 12 12:05:39 +0000 2017," '""RT @OwenJones84: We now know that Labour didnt lose in 2015 for being too left-wing. Labour lost for not being radical enough.""'", 'JeremyToms54',350,284,0,0,0.25,0
283,Mon Jun 12 12:05:39 +0000 2017," '""RT @daily_politics: .@Anna_Soubry says Theresa May is set to go but not now as we want a period of stability but admits PM is flaw… ""'", 'SCDP_NY',586,1289,0,0,0.25,0
284,Mon Jun 12 12:05:39 +0000 2017," '""RT @FrankThomas27: Michael Fallon just described Theresa May as our elected leader. She wasnt actually elected leader either of the Tory…""'", 'DunningMarion',87,174,0,0,0.25,0
285,Mon Jun 12 12:05:39 +0000 2017," '""RT @hmclandress: absolutely killing me that there are teenage communists on twitter with names like tories=nonces w/ better analysis than…""'", 'fuckmuir',1260,418,0,0,0.25,0
286,Mon Jun 12 12:05:40 +0000 2017," '""RT @BBCNormanS: Labour not closing door on single market. Reformed membership an option says Barry Gardiner @BBCr4today""'", 'MaritGaimster',157,102,0,0,0.25,0
287,Mon Jun 12 12:05:40 +0000 2017," '""RT @Independent: Michael Gove is now Environment Secretary and everyones making the same joke https://t.co/ytNIM02Swh""'", 'johnmacleod19',15454,16733,0,0,0.25,0
288,Mon Jun 12 12:05:40 +0000 2017," '""Not a woman of your word then. Where are your Christian values?? https://t.co/XBDAZFR2uN""'", 'Peratallada',1161,2529,0,0,0.25,0
289,Mon Jun 12 12:05:40 +0000 2017," '""Tory @laurenxparrish https://t.co/ZMFStQVRo4""'", 'Owen_1906',1412,468,0,0,0.25,0
290,Mon Jun 12 12:05:40 +0000 2017," '""RT @liamyoung: This onslaught against young people will only embolden us. We will vote Labour next time in even greater numbers. Its our f…""'", 'anneeone',2385,2747,0,0,0.25,0
291,Mon Jun 12 12:05:40 +0000 2017," '""RT @MarkSkoda: Hypocrite Jeremy Corbyn says he Welcomes the Cancellation of President Trumps Visit to UK. #LondonHasFallen https://t.co/…""'", 'MarceiaOrtegaLR',313,121,0,0,0.25,0
292,Mon Jun 12 12:05:40 +0000 2017," '""RT @alisoncroggon: Wow imagine if a man was ever bad at his job poor men https://t.co/PYdU1sT9c6""'", 'melindayg',167,327,0,0,0.25,0
293,Mon Jun 12 12:05:41 +0000 2017," '""@AMDWaters @AndyBurnhamGM @gmpolice Its the Labour Partys Stalinist tendencies. BS the public long enough & hard… https://t.co/8Wk7Vdbjya""'", 'Hedgehoggy',151,461,0,0,0.25,0
294,Mon Jun 12 12:05:41 +0000 2017," '""@afterprohibends @IanFaulkner3 @SkyNews As long as there isnt a 6 week campaign and let the Tories pick a new lead… https://t.co/GC3qnwt2y4""'", 'tenbobslider',4,33,0,0,0.25,0
295,Mon Jun 12 12:05:41 +0000 2017," '""The 12 years are out - shouldnt they be at school? https://t.co/LFApB2UtUs""'", '2tribesgotojaw',1701,589,0,0,0.25,0
296,Mon Jun 12 12:05:41 +0000 2017," '""RT @MarkSkoda: Hypocrite Jeremy Corbyn says he Welcomes the Cancellation of President Trumps Visit to UK. #LondonHasFallen https://t.co/…""'", 'B_SM_H9',307,108,0,0,0.25,0
297,Mon Jun 12 12:05:41 +0000 2017," '""Anyone feeling sorry for Theresa May pls remember her record as Home Secretary. Heres a taste: https://t.co/CJqLgVFK4j""'", 'SHINEreports',88,184,0,0,0.25,0
298,Mon Jun 12 12:05:41 +0000 2017," '""The world smiles at us (Berger) https://t.co/XGfkpRbCOB""'", 'geraldi23591291',3420,4997,0,0,0.25,0
299,Mon Jun 12 12:05:41 +0000 2017," '""And took away their inheritances with the dementia tax https://t.co/M4bdaPyb7B""'", 'jon_mellon',1447,295,0,0,0.25,0
300,Mon Jun 12 12:05:41 +0000 2017," '""The Conservative cabinet clearly needs more clumsy ambitious people to join in the oncoming political bloodbath. https://t.co/uZWTQr3V20""'", 'rbp77',1859,1134,0,0,0.25,0
301,Mon Jun 12 12:05:42 +0000 2017," '""RT @pinkhiigh: But there isnt a magic money tree for NHS nurses. https://t.co/qrC9GOUn7G""'", 'ElliotJones_97',305,127,0,0,0.25,0
302,Mon Jun 12 12:05:42 +0000 2017," '""RT @CatlinNya: When Geert Wilders gained seats and got 2nd he was branded as the loser.\n\nCorbyn does the same and is seen as Labours savio…""'", 'MillennialGB',194,715,0,0,0.25,0
303,Mon Jun 12 12:05:42 +0000 2017," '""RT @Cartoon4sale: Theresa May needs the DUP to form a majority Government by Morten Morland - political cartoon gallery in Putney https://…""'", 'dmellieon',407,424,0,0,0.25,0
304,Mon Jun 12 12:05:42 +0000 2017," '""@scandifriend Oppositon split three ways in 1983. Plus Falklands and Foot factor. Tories havent won decent majorit… https://t.co/3jrm2DGmxK""'", 'MissLauraMarcus',4676,3990,0,0,0.25,0
305,Mon Jun 12 12:05:43 +0000 2017," '""RT @fitzy_blue: Things Theresa May says....\n\nMay 2017 - No deal is better than a bad deal\n\nJune 2017 - I have done a deal with the DUP""'", 'KimberlyBold',200,439,0,0,0.25,0
306,Mon Jun 12 12:05:43 +0000 2017," '""RT @PeterStefanovi2: Theresa May appoints anti-LGBT justice secretary with appalling gay rights voting record during DUP talks https://t.co…""'", 'morrispexmouth',1071,1369,0,0,0.25,0
307,Mon Jun 12 12:05:43 +0000 2017," '""@theresa_may & the @Conservatives are in chaos.. Theyve delayed the Queens Speech by a few days... \n#GE2017 #CoalitionOfChaos #ToriesOut""'", 'MinorGenius',3106,2719,0,0,0.25,0
308,Mon Jun 12 12:05:43 +0000 2017," '""RT @liamyoung: This onslaught against young people will only embolden us. We will vote Labour next time in even greater numbers. Its our f…""'", 'MoeyG51',217,83,0,0,0.25,0
309,Mon Jun 12 12:05:43 +0000 2017," '""RT @AaronBastani: Corbynism will be bigger than Thatcherism. \n\nLabour will win a majority this year. In 2017 Britain goes red. https://t.co…""'", 'Kat_Sheebs',209,558,0,0,0.25,0
310,Mon Jun 12 12:05:43 +0000 2017," '""RT @lucyybarnes: risky activities help you in later life\ntheresa may:\n\n#aqaenglish https://t.co/sVgOa7bBht""'", '_honimae',97,96,0,0,0.25,0
311,Mon Jun 12 12:05:43 +0000 2017," '""RT @zach2302: Imagine having Jeremy Corbyn as ur dad itd be mad tbh he wouldnt tell you to clean ya room hed INSPIRE you to clean it""'", 'iAmBenGriffin',9158,362,0,0,0.25,0
312,Mon Jun 12 12:05:42 +0000 2017," '""https://t.co/ay0U8J9VYa Who is Theresa May’s new chief of staff Gavin Barwell? #news #usa #cars #sports #policy… https://t.co/4aHvtBHudq""'", 'Sedat_Ates_',233,225,0,0,0.25,0
313,Mon Jun 12 12:05:43 +0000 2017," '""@DavidDavisMP in complete denial this morning. When will complexity and detriment of #Brexit be acknowledged by Tories?""'", 'EUdMissIt',2344,1841,0,0,0.25,0
314,Mon Jun 12 12:05:44 +0000 2017," '""RT @DavidJo52951945: Jeremy Corbyns election result was a terrible result for Labour.Fewer seats than Kinnock 1992 & Callaghan 1979 & j… ""'", 'tcgong',458,812,0,0,0.25,0
315,Mon Jun 12 12:05:44 +0000 2017," '""RT @UKMoments: Orange Order want to lift ban on parades if DUP do a deal with Theresa May. https://t.co/V74VGDJRkB""'", 'LFdSP2017',1203,4858,0,0,0.25,0
316,Mon Jun 12 12:05:44 +0000 2017," '""RT @GaryLineker: I think Theresa May has won own goal of the season.""'", 'SarahWiles3',170,460,0,0,0.25,0
317,Mon Jun 12 12:05:44 +0000 2017," '""RT @StrongerStabler: Environment minister Michael Gove? What a joke. Murdoch spoke & Theresa May said how high?. Qualifications?… ""'", 'soundpolitic',304,216,0,0,0.25,0
318,Mon Jun 12 12:05:44 +0000 2017," '""May got far with that one... #GE2017 #Mayhem https://t.co/Adq67SlTkG""'", 'Erriwend',3141,4890,0,0,0.25,0
319,Mon Jun 12 12:05:45 +0000 2017," '""RT @NicolaSturgeon: Off to London today to meet with @theSNP MPs as they prepare to get to work standing up for Scotland. #GE2017""'", 'Loubylou164',22,72,0,0,0.25,0
320,Mon Jun 12 12:05:45 +0000 2017," '""RT @MarkSkoda: Hypocrite Jeremy Corbyn says he Welcomes the Cancellation of President Trumps Visit to UK. #LondonHasFallen https://t.co/…""'", 'the_Perfect_0th',45,37,0,0,0.25,0
321,Mon Jun 12 12:05:45 +0000 2017," '""RT @marcuschown: The Tories have only one plan. To kill all your hopes. To make you believe there is no alternative. But the tide of histor…""'", 'ian_ianrbruce1',1126,1544,0,0,0.25,0
322,Mon Jun 12 12:05:45 +0000 2017," '""RT @PeterStefanovi2: Theresa May appoints anti-LGBT justice secretary with appalling gay rights voting record during DUP talks https://t.co…""'", 'JimmyMcCoo',1049,1185,0,0,0.25,0
323,Mon Jun 12 12:05:45 +0000 2017," '""Nows the time to follow up on what you voted for - join Portsmouth Labour today!... https://t.co/gynJUmA1ZN""'", 'PompeyLabour',1139,804,0,0,0.25,0
324,Mon Jun 12 12:05:45 +0000 2017," '""RT @Rachael_Swindon: Dear @IainMcNicol Expel this traitor immediately. He is harnessing support for a Tory PM that George Osborne called… ""'", 'AshbyMcgowan',215,309,0,0,0.25,0
325,Mon Jun 12 12:05:46 +0000 2017," '""RT @TheGreenParty: Evidence of Theresa Mays complete disregard for the environment @CarolineLucas on appointment of Gove as environ… ""'", '_robsheldon',4133,4097,0,0,0.25,0
326,Mon Jun 12 12:05:45 +0000 2017," '""RT @Labour4Animals: Yay @BarryGardiner attacks Tory stance on Habitats Directive on @bbcdp \n🌿#GoForGove our Baz! 🌿 https://t.co/U2op99Lck3""'", 'MarkAvery',28881,11880,0,0,0.25,0
327,Mon Jun 12 12:05:46 +0000 2017," '""Elegant but devastating closing paragraphs of @Robert___Harris Sunday Times essay on May and Brexit:\nvia:… https://t.co/WVUoykKyd2""'", 'RagnarWeilandt',7782,4989,0,0,0.25,0
328,Mon Jun 12 12:05:46 +0000 2017," '""RT @Hepworthclare: Queens Speech *postponed*\nTory Manifesto *shredded*\nNobody has CLUE about what is going on !\nBut HEY - DUP will bail yo…""'", 'rogercasale',858,863,0,0,0.25,0
329,Mon Jun 12 12:05:46 +0000 2017," '""Interestingly use the same (non) example in replies. Incredible scenes. https://t.co/laOm1vHJEQ""'", 'jonnydapigg',341,569,0,0,0.25,0
330,Mon Jun 12 12:05:46 +0000 2017," '""RT @GuidoFawkes: McDonnell Said Corbyn Would Have to Resign If Labour Lost. Labour Lost. #Awkward https://t.co/RDMZL1KJx0""'", 'sambo60s',65,90,0,0,0.25,0
331,Mon Jun 12 12:05:46 +0000 2017," '""RT @AaronBastani: A friend had to leave the country because his US partner wasnt earning enough money. Theresa May is a coward whose… ""'", 'jennifermor',2516,1815,0,0,0.25,0
332,Mon Jun 12 12:05:46 +0000 2017," '""Theresa May announces she will form a government (https://t.co/d5Icuy8ZgR) https://t.co/Zeh7mDBapk https://t.co/fn4Kvw7R1s""'", '1001pts_uk',20,534,0,0,0.25,0
333,Mon Jun 12 12:05:46 +0000 2017," '""RT @WingsScotland: The jaw-dropping extent to which the Lib Dems are now the Scottish Tories bitches is going to *blow your mind*: https:/…""'", 'clarknat',2882,2872,0,0,0.25,0
334,Mon Jun 12 12:05:47 +0000 2017," '""RT @liamyoung: This onslaught against young people will only embolden us. We will vote Labour next time in even greater numbers. Its our f…""'", 'tehard',122,114,0,0,0.25,0
335,Mon Jun 12 12:05:47 +0000 2017," '""RT @palestininianpr: Labour Party voters have made crystal clear they dont want another Blairite Tory tribute party. The real Labour Party…""'", 'cmarslett',2233,2548,0,0,0.25,0
336,Mon Jun 12 12:05:47 +0000 2017," '""RT @fitzy_blue: Things Theresa May says....\n\nMay 2017 - No deal is better than a bad deal\n\nJune 2017 - I have done a deal with the DUP""'", 'flippertw33t',336,388,0,0,0.25,0
337,Mon Jun 12 12:05:47 +0000 2017," '""RT @MichaelLCrick: Tom Watson has written to Theresa May asking whether Rupert Murdoch ever suggested to you Michael Gove should be given…""'", 'ImALittleLoud',41,92,0,0,0.25,0
338,Mon Jun 12 12:05:47 +0000 2017," '""RT @AmandeepBhogal: Translation in English:\nLabour lied about fulfilling Brexit in #GE2017\nLabour would hand over MORE\nmoney\nsovereignt… ""'", 'tm014d1009',850,417,0,0,0.25,0
339,Mon Jun 12 12:05:47 +0000 2017," '""@DavidCoburnUKip @Annie__McGuire Just join this lot with the Tories https://t.co/EFoDRIy3MU""'", 'DerekLa4',152,540,0,0,0.25,0
340,Mon Jun 12 12:05:47 +0000 2017," '""RT @WillWBloom: Wow. This was where students had been turned away at polling places and came back to demand they get to vote. Looks… ""'", 'tessoc',346,331,0,0,0.25,0
341,Mon Jun 12 12:05:47 +0000 2017," '""RT @BBCPolitics: .@campbellclaret says Theresa May is living in la-la land. #hungparliament https://t.co/XAkjMNKSSZ""'", 'PaoloMarslando',12,53,0,0,0.25,0
342,Mon Jun 12 12:05:47 +0000 2017," '""RT @vincecable: . @TheresaMayPM should not resign. She won. And she made this bed of nails. She should lie on it. #GE2017 #Brexit""'", 'ShellBnntt',5,46,0,0,0.25,0
343,Mon Jun 12 12:05:47 +0000 2017," '""@paullewismoney But Tories & Labour agree on brexit so cant see a problem.....""'", 'neilsimm',448,284,0,0,0.25,0
344,Mon Jun 12 12:05:47 +0000 2017," '""@andreww1967 @scandifriend May have actually harmed labours vote. Next time the message has to be that labour can g… https://t.co/0PnIAPcD5c""'", 'PsychFarmer',61,62,0,0,0.25,0
345,Mon Jun 12 12:05:48 +0000 2017," '""RT @EllenRenton: What do you think is main reason for the loss of 21 SNP seats in #GE2017 #DUPdeal #mondaymotivation - please RT as widely…""'", 'annemariegillan',415,1640,0,0,0.25,0
346,Mon Jun 12 12:05:48 +0000 2017," '""RT @faltskog5450: How many companies told employees Labour vote may cost their job? I heard employers threatening Scottish indie ref https:…""'", 'Lib213',3892,4717,0,0,0.25,0
347,Mon Jun 12 12:05:48 +0000 2017," '""@APHClarkson I met local Tory councillors who worried about housing crisis but had absolutely no solutions. Frighte… https://t.co/zl95sjF1Hr""'", 'scandifriend',363,1004,0,0,0.25,0
348,Mon Jun 12 12:05:48 +0000 2017," '""And so it starts - Fight breaks out at Protestant march in Liverpool as Theresa May brokers deal with DUP https://t.co/6BLuB9arGE""'", 'MaryDribbs',15,100,0,0,0.25,0
349,Mon Jun 12 12:05:48 +0000 2017," '""RT @JamieMeWrites: If Theresa May cant make the Queens Speech I know a guy wholl step in short notice. https://t.co/gdHYzKXJID""'", 'kayswax',1570,1354,0,0,0.25,0
350,Mon Jun 12 12:05:48 +0000 2017," '""RT @UKIPNFKN: Brussels is not cheered by Theresa May’s weakened mandate via @TheEconomist\n\n#GE2017 #Brexit #WeakAndWobbly\n\nhttps://t.co/MKa…""'", 'msevans034',659,4989,0,0,0.25,0
351,Mon Jun 12 12:05:48 +0000 2017," '""RT @Nezifah: Broke ass boi @torylanez bet u wont come to my crib and put 35 racks on my kitchen floor ol broke ass https://t.co/wZwNGUMVA1""'", 'justhunnybunny',1593,1281,0,0,0.25,0
352,Mon Jun 12 12:05:48 +0000 2017," '""RT @itvnews: Trump tells Theresa May he wont come for a state visit if he wont get a warm welcome https://t.co/U4ZkkCdi2H by… ""'", 'laffterman',49,68,0,0,0.25,0
353,Mon Jun 12 12:05:48 +0000 2017," '""RT @JamieMeWrites: If Theresa May cant make the Queens Speech I know a guy wholl step in short notice. https://t.co/gdHYzKXJID""'", 'bitgit',4203,4680,0,0,0.25,0
354,Mon Jun 12 12:05:49 +0000 2017," '""RT @Hepworthclare: Queens Speech *postponed*\nTory Manifesto *shredded*\nNobody has CLUE about what is going on !\nBut HEY - DUP will bail yo…""'", 'justmebeingme4',5455,5510,0,0,0.25,0
355,Mon Jun 12 12:05:49 +0000 2017," '""RT @Harryslaststand: Its no small thing when a government cant deliver its #queensspeech on time as it indicates crisis within the hall…""'", 'nealescott',315,1662,0,0,0.25,0
356,Mon Jun 12 12:05:49 +0000 2017," '""RT @YvetteCooperMP: TMay cant carry on as if election never happened. Need cross party commission to negotiate Brexit not Tory cabal https…""'", 'gaurd64',401,905,0,0,0.25,0
357,Mon Jun 12 12:05:49 +0000 2017," '""RT @tompeck: People are saying Theresa May fought the worst campaign ever. I can think of a worse one. https://t.co/PizvD35iBp""'", 'phollingdrake',172,515,0,0,0.25,0
358,Mon Jun 12 12:05:49 +0000 2017," '""RT @mac123_m: https://t.co/DMna3Y340l\n\nPlease sign this petition of no confidence in Theresa May & DUP minority government.\nRT fa… ""'", 'SonnyDaes',1095,4997,0,0,0.25,0
359,Mon Jun 12 12:05:49 +0000 2017," '""RT @bbc5live: Labour MP @labourlewis on Corbyn critic @ChrisLeslieMP \n\nSpeaking to @GoldbergRadio \n\n📻 https://t.co/K9nmMlrYSC https://t.co/…""'", 'trannymum',2719,2605,0,0,0.25,0
360,Mon Jun 12 12:05:49 +0000 2017," '""@paulpdh @normanlamb Fair enough but I didnt vote Tory and was still blamed for current government activity.""'", 'Jude_est82',83,154,0,0,0.25,0
361,Mon Jun 12 12:05:50 +0000 2017," '""So the DUP/Tories have delayed the Queens Speech. Surely they cant move the heaven and the earth in that time?""'", 'jamesradams',2461,863,0,0,0.25,0
362,Mon Jun 12 12:05:50 +0000 2017," '""RT @CorbynSnap: I snatched defeat from the jaws of defeat #Triumph #GE2017""'", 'MarcusMillett',74,45,0,0,0.25,0
363,Mon Jun 12 12:05:50 +0000 2017," '""RT @montie: The Tory MP who predicted the Corbyn surge: @Halfon4Harlow (might be worth giving him a role in stopping it growing) https://t.…""'", 'Zehra_Zaidi',2797,5000,0,0,0.25,0
364,Mon Jun 12 12:05:50 +0000 2017," '""very nice....i would like some of that https://t.co/DkeDqavtwm""'", 'tardisdrwho1962',363,627,0,0,0.25,0
365,Mon Jun 12 12:05:50 +0000 2017," '""RT @deptoflabour: Minister Oliphant with Director-General after meeting with the Senegalese Minister of Labour & unpacking bilateral… ""'", '_cosatu',100117,68303,0,0,0.25,0
366,Mon Jun 12 12:05:50 +0000 2017," '""RT @Kevin_Maguire: Labours sweetest defeat & Cons bitterest victory. Why May should go in national interest and we hold 2nd election https…""'", 'EarwigLLe',173,272,0,0,0.25,0
367,Mon Jun 12 12:05:51 +0000 2017," '""RT @55krissi55: @SkyNews @Okavangomick @CarolineLucas Disgraceful #Tories appoint someone as #environment Sec. who blocked protecti… ""'", 'Okavangomick',712,1411,0,0,0.25,0
368,Mon Jun 12 12:05:51 +0000 2017," '""RT @ElectCalculus: NEW BOUNDARIES DEAL FRESH BLOW TO TORIES. Cons are not helped much by new boundaries - and are still in a minority. http…""'", 'KarlTippins',993,562,0,0,0.25,0
369,Mon Jun 12 12:05:50 +0000 2017," '""The past is ur lesson\nThe present is ur gift\nThe future is ur motivation\nMonday a fresh start embrace it.… https://t.co/NDxoPefmLn""'", 'Remmyscot',85,695,0,0,0.25,0
370,Mon Jun 12 12:05:51 +0000 2017," '""Cameron 1st government had a healthy majority (thanks to libdems) His 2nd had a small one. Even though tories increased seats. So tech..""'", 'seamantid',0,59,0,0,0.25,0
371,Mon Jun 12 12:05:51 +0000 2017," '""RT @YvetteCooperMP: TMay cant carry on as if election never happened. Need cross party commission to negotiate Brexit not Tory cabal https…""'", 'PhilKnibb',53,363,0,0,0.25,0
372,Mon Jun 12 12:05:51 +0000 2017," '""RT @HornyToed: IF it was under 35s who voted Labour WHY? As the UNI fee policy wld mean many of them end up paying twice? Raise £21k thresh…""'", 'jswb',510,776,0,0,0.25,0
373,Mon Jun 12 12:05:51 +0000 2017," '""RT @MichaelLCrick: Tom Watson has written to Theresa May asking whether Rupert Murdoch ever suggested to you Michael Gove should be given…""'", 'Waringphilip',268,704,0,0,0.25,0
374,Mon Jun 12 12:05:51 +0000 2017," '""RT @Xhakaed: And the internet came up with anti-Theresa May memes for free lmaoooo what an L https://t.co/e0ZlHcSRzo""'", 'jessicapatricim',800,720,0,0,0.25,0
375,Mon Jun 12 12:05:51 +0000 2017," '""RT @ChaabanRabih: Risked her Party to strengthen herself & now risking N.Ireland peace process to keep herself in office\n-Toxic Theresa May…""'", 'ChaabanRabih',9997,10975,0,0,0.25,0
376,Mon Jun 12 12:05:51 +0000 2017," '""RT @guardian: Why the Green party will rejoice in Theresa May’s disappointment | Susanna Rustin https://t.co/OiZqyJVCoN""'", 'Blackcattt',473,289,0,0,0.25,0
377,Mon Jun 12 12:05:52 +0000 2017," '""RT @chunkymark: Ive joined the Labour Party https://t.co/QEweNPLBcg""'", 'alangeorgeroe',989,2096,0,0,0.25,0
378,Mon Jun 12 12:05:52 +0000 2017," '""RT @whouffaldi: [Theresa May] was crying before she went to the Palace. https://t.co/ZcovGwZ6UW""'", 'andysambeerg',867,276,0,0,0.25,0
379,Mon Jun 12 12:05:52 +0000 2017," '""RT @DanielHewittITV: NEW: @itvnews has seen WhatsApp messages sent by Boris Johnson to Tory MPs urging them to calm down and get behind… ""'", '_0103S',542,209,0,0,0.25,0
380,Mon Jun 12 12:05:52 +0000 2017," '""RT @MarkSkoda: Hypocrite Jeremy Corbyn says he Welcomes the Cancellation of President Trumps Visit to UK. #LondonHasFallen https://t.co/…""'", 'beeroo908',357,110,0,0,0.25,0
381,Mon Jun 12 12:05:52 +0000 2017," '""RT @flanners85: Theresa May should be thrown out of parliament for calling an election after triggering article 50. Disgraceful negligence…""'", 'BruiserRAWK',2389,866,0,0,0.25,0
382,Mon Jun 12 12:05:53 +0000 2017," '""RT @TheSarcasticOwl: @davidallengreen Theresa Mays top secret negation strategy leaked. https://t.co/7gia8cHD2Y""'", 'nicnature77',46,96,0,0,0.25,0
383,Mon Jun 12 12:05:53 +0000 2017," '""RT @frackfreemps: Contentious legislation and difficult decisions will be next to impossible to get through the Commons. #fracking https:…""'", 'VanDutchmanXXX',211,196,0,0,0.25,0
384,Mon Jun 12 12:05:53 +0000 2017," '""RT @fitzy_blue: Things Theresa May says....\n\nMay 2017 - No deal is better than a bad deal\n\nJune 2017 - I have done a deal with the DUP""'", 'vacantsponge',576,1299,0,0,0.25,0
385,Mon Jun 12 12:05:53 +0000 2017," '""RT @Harryslaststand: There is now talk that Theresa May will delay both #brexit talks & the Queens speech which indicates the Tories aren…""'", 'RickyManders',189,393,0,0,0.25,0
386,Mon Jun 12 12:05:53 +0000 2017," '""RT @PeterStefanovi2: Theresa May appoints anti-LGBT justice secretary with appalling gay rights voting record during DUP talks https://t.co…""'", 'vacantsponge',576,1299,0,0,0.25,0
387,Mon Jun 12 12:05:53 +0000 2017," '""RT @The45Storm: Good article but you cannot claim to be a normal and decent Tory when you are voting for a government that helps… ""'", 'CokieDee62',785,1068,0,0,0.25,0
388,Mon Jun 12 12:05:53 +0000 2017," '""@CallingOutBBC Which is what Labour were saying. I worked in #Malmo for a few months. #Swedish people are generally… https://t.co/lN37UZhSl7""'", 'WistfulCass',9174,10088,0,0,0.25,0
389,Mon Jun 12 12:05:53 +0000 2017," '""#CoalitionOfChaos is ready to go. Engage the hyperdrive! #MayMustGo #MayDUP \nhttps://t.co/wzsk8vYHjU""'", 'gazmurph',2542,4641,0,0,0.25,0
390,Mon Jun 12 12:05:53 +0000 2017," '""RT @TheProgAlliance: A snap election called by a Tory PM in 1974. Tried to negotiate with NI MPs. It collapsed 🤔 https://t.co/yR0j9N6z9w ht…""'", 'julietbuchan',19,303,0,0,0.25,0
391,Mon Jun 12 12:05:53 +0000 2017," '""RT @SebDance: Many young people backed Labour as a rejection of Mays Hard Brexit. Labour needs to offer them a European future https://t.c…""'", 'janehparkinson',774,731,0,0,0.25,0
392,Mon Jun 12 12:05:53 +0000 2017," '""RT @Konnie_Huq: The same Arlene Foster who met UDA 2 weeks ago days after theyd shot and killed a man in front of his 3 year old i… ""'", 'ryanp1967',410,963,0,0,0.25,0
393,Mon Jun 12 12:05:54 +0000 2017," '""Queens speech delayed. May cant get agreement on a programme between hard BrExiter Tory faction within and no border DUP without?""'", 'pjakma',842,1771,0,0,0.25,0
394,Mon Jun 12 12:05:54 +0000 2017," '""RT @BBCPolitics: .@campbellclaret says Theresa May is living in la-la land. #hungparliament https://t.co/XAkjMNKSSZ""'", 'valeriecronin',274,521,0,0,0.25,0
395,Mon Jun 12 12:05:54 +0000 2017," '""Today is World Day Against Child Labour #NoChildLabour @ilo #ILC2017 follow live https://t.co/nojDnK2KT2 https://t.co/cbXgbOsMfB""'", 'ILO_OSH',128,32,0,0,0.25,0
396,Mon Jun 12 12:05:54 +0000 2017," '""RT @MarkSkoda: Hypocrite Jeremy Corbyn says he Welcomes the Cancellation of President Trumps Visit to UK. #LondonHasFallen https://t.co/…""'", 'theFEECH4N',324,353,0,0,0.25,0
397,Mon Jun 12 12:05:54 +0000 2017," '""RT @severusd: Theresa May has carefully reflected on the election result and decided that the British public were telling her to reappoint…""'", 'michael_fifield',56,62,0,0,0.25,0
398,Mon Jun 12 12:05:54 +0000 2017," '""Queen told to WAIT as theresa may decides which shoes to wear while looking strong and stable begging bigots to support her..............wow""'", 'robbiethecelt',1580,1556,0,0,0.25,0
399,Mon Jun 12 12:05:54 +0000 2017," '""#GE2017: Why have politicians so little to say about access to justice? Mike Mansfield QC https://t.co/YvTtxfWIbX""'", 'MedAndAdvicProj',531,2233,0,0,0.25,0
400,Mon Jun 12 12:05:54 +0000 2017," '""RT @PeterStefanovi2: Theresa May appoints anti-LGBT justice secretary with appalling gay rights voting record during DUP talks https://t.co…""'", 'tony26860',176,470,0,0,0.25,0
401,Mon Jun 12 12:05:55 +0000 2017," '""@Independent Lets hope she tells her what she really thinks of the alliance between Tories & DUP.""'", 'TheThumbsUp',15252,787,0,0,0.25,0
402,Mon Jun 12 12:05:55 +0000 2017," '""Scottish Tory MPs wonder which one of them will be asked to make room for her at the next election. https://t.co/FH236pZo2a""'", 'nickjbarlow',1997,679,0,0,0.25,0
403,Mon Jun 12 12:05:55 +0000 2017," '""RT @HerseyJane: David Davis says criticism of Theresa May is height of self-indulgence DAVISs response is predictably ARROGANT.\n\nhttps:…""'", 'JackInTheBoxi7',170,232,0,0,0.25,0
404,Mon Jun 12 12:05:55 +0000 2017," '""RT @EdwardTHardy: 2/3 of Conservative Party members believe Theresa May should resign. How long can she stay in power when her party doesn…""'", 'sspDiary',77,75,0,0,0.25,0
405,Mon Jun 12 12:05:55 +0000 2017," '""RT @Independent: Michael Gove is now Environment Secretary and everyones making the same joke https://t.co/ytNIM02Swh""'", 'badjonesyinc',2262,1259,0,0,0.25,0
406,Mon Jun 12 12:05:55 +0000 2017," '""RT @MarkSkoda: Hypocrite Jeremy Corbyn says he Welcomes the Cancellation of President Trumps Visit to UK. #LondonHasFallen https://t.co/…""'", 'Ch4racterEyes',238,110,0,0,0.25,0
407,Mon Jun 12 12:05:55 +0000 2017," '""RT @LFDodds: Think your vote doesnt matter? Last Thursday Theresa May was denied an overall majority by 786 VOTES https://t.co/x68YrTopIA""'", 'woo_opinion',823,1203,0,0,0.25,0
408,Mon Jun 12 12:05:55 +0000 2017," '""RT @NicolaSturgeon: There must be full public disclosure of terms of any proposed Tory deal with DUP - before it is signed and sealed. http…""'", 'BaranEmelie',2486,2296,0,0,0.25,0
409,Mon Jun 12 12:05:55 +0000 2017," '""RT @Konnie_Huq: The same Arlene Foster who met UDA 2 weeks ago days after theyd shot and killed a man in front of his 3 year old i… ""'", 'LeylandCacti',132,110,0,0,0.25,0
410,Mon Jun 12 12:05:56 +0000 2017," '""RT @JuliaHB1: Quick reminder for Remoaners today. 82% of votes on Thursday were cast for the Tories or Labour. This is from the L… ""'", 'HarleyTales',519,203,0,0,0.25,0
411,Mon Jun 12 12:05:56 +0000 2017," '""RT @JohnHealey_MP: Tories claim housing is a priority but four days on still no housing minister. Labour would be setting up a new Housing…""'", 'n_blondel',717,724,0,0,0.25,0
412,Mon Jun 12 12:05:56 +0000 2017," '""RT @Harryslaststand: Its no small thing when a government cant deliver its #queensspeech on time as it indicates crisis within the hall…""'", 'kirstyyyyyy',584,1166,0,0,0.25,0
413,Mon Jun 12 12:05:56 +0000 2017," '""RT @Harryslaststand: There is now talk that Theresa May will delay both #brexit talks & the Queens speech which indicates the Tories aren…""'", 'fordllass',48,182,0,0,0.25,0
414,Mon Jun 12 12:05:56 +0000 2017," '""RT @johnmacleod19: @SandPatterson Shes so partisan. Its shocking! If youre not a Tory shes against you before you speak!""'", 'janis_henderson',725,1014,0,0,0.25,0
415,Mon Jun 12 12:05:56 +0000 2017," '""@iamL4NCE Many traditional Tory voters I know just couldnt bring themselves to cast a vote at all. This gives me… https://t.co/k9cBCidiDI""'", 'exiledenglander',1180,800,0,0,0.25,0
416,Mon Jun 12 12:05:56 +0000 2017," '""RT @charlottes1993: Delay to the Queens Speech is more proof that Theresa May should not be Prime Minister - just the beginning for her co…""'", 'memphis3577',25,58,0,0,0.25,0
417,Mon Jun 12 12:05:56 +0000 2017," '""RT @andrewspoooner: Have to say Lord Buckethead on Last Week Tonight with John Oliver is best thing about #GE2017 (youll need a VPN) https…""'", 'JackRouge',86,383,0,0,0.25,0
418,Mon Jun 12 12:05:57 +0000 2017," '""RT @EdwardTHardy: Theresa May sacked Michael Gove when she became PM. The fact that she has had to bring him back to the Cabinet shows how…""'", 'CMWAshby',1026,1622,0,0,0.25,0
419,Mon Jun 12 12:05:57 +0000 2017," '""Ed Miliband could return to Labour frontbench under Jeremy Corbyn - The Telegraph\nOh no really. https://t.co/m4v1IEyK0N""'", 'PeterJMallia1',652,1686,0,0,0.25,0
420,Mon Jun 12 12:05:57 +0000 2017," '""RT @uk_rants: Where does one go when such a vow is undeliverable?\nTime always lets these clowns down.\nGive it time. https://t.co/eQB0rgo9…""'", 'Emstodart',267,1463,0,0,0.25,0
421,Mon Jun 12 12:05:57 +0000 2017," '""RT @Hepworthclare: Queens Speech *postponed*\nTory Manifesto *shredded*\nNobody has CLUE about what is going on !\nBut HEY - DUP will bail yo…""'", 'chunkymark',78366,5942,0,0,0.25,0
422,Mon Jun 12 12:05:57 +0000 2017," '""RT @pollypreston: Tories ditch manifesto before the Queens Speech https://t.co/jz496SU9vo""'", 'u3akfd7f',1143,1244,0,0,0.25,0
423,Mon Jun 12 12:05:57 +0000 2017," '""RT @paulwaugh: Remember Mays Coalition of chaos attack on Labour? Now Queens Speech/Brexit talks delayed as DUP deal unresolved https:/…""'", 'alexcburrows',2921,2002,0,0,0.25,0
424,Mon Jun 12 12:05:57 +0000 2017," '""SNP MPs gather in Parliament Square. Ian Blackford front and centre. Should we read anything into that? #GE2017 https://t.co/nyfOLunmoT""'", 'LJRazaq',1108,1408,0,0,0.25,0
425,Mon Jun 12 12:05:57 +0000 2017," '""RT @rtenews: Adams says any deal between the DUP and the English Tories would not be good for the people of Northern Ireland https://t.co…""'", 'AnMaonach',83,475,0,0,0.25,0
426,Mon Jun 12 12:05:57 +0000 2017," '""What a complete and utter farce! The world must be laughing at the Tories trying to cling to power at all costs! C… https://t.co/U7IJtSvEKu""'", 'daverussell',9893,6135,0,0,0.25,0
427,Mon Jun 12 12:05:58 +0000 2017," '""RT @EL4JC: Ive got youth on my side... Have you ever seen Jeremy Corbyn more relaxed and confident? #Marr https://t.co/Egi2a92yI6""'", 'MarcusMillett',74,45,0,0,0.25,0
428,Mon Jun 12 12:05:58 +0000 2017," '""RT @seamantid: Cameron 1st government had a healthy majority (thanks to libdems) His 2nd had a small one. Even though tories increased se…""'", 'seamantid',0,59,0,0,0.25,0
429,Mon Jun 12 12:05:58 +0000 2017," '""I like this table. Instructive. https://t.co/dFgr3S5LwK""'", 'Sarah_Hayward',6259,2199,0,0,0.25,0
430,Mon Jun 12 12:05:58 +0000 2017," '""RT @JamzLdn: For those who think their vote doesnt matter https://t.co/CaP8bO9JbZ""'", 'AndreGnevry',396,417,0,0,0.25,0
431,Mon Jun 12 12:05:58 +0000 2017," '""RT @1974Hamilton: Is she the bouncer? https://t.co/1GB9tWyMd2""'", 'ianbhood',1097,1612,0,0,0.25,0
432,Mon Jun 12 12:05:59 +0000 2017," '""She played the whole country on a very bad fiddle. Jeez conceed for the sake of Britain. https://t.co/NyKPzPHDaD""'", 'pattrice',2898,1158,0,0,0.25,0
433,Mon Jun 12 12:05:59 +0000 2017," '""Queen’s speech delayed by Theresa May amid disaster election\xa0fallout https://t.co/LnxvIT6ekK""'", 'Wecelebrity',711,1226,0,0,0.25,0
434,Mon Jun 12 12:05:59 +0000 2017," '""RT @Harryslaststand: There is now talk that Theresa May will delay both #brexit talks & the Queens speech which indicates the Tories aren…""'", 'jeskguzan0',34,1372,0,0,0.25,0
435,Mon Jun 12 12:05:59 +0000 2017," '""@RobertWinfield2 Yes they must be. I have so many thoughts and ideas....just where to channel them? The Tory part… https://t.co/oRR79VgioG""'", 'ToryAlexandraT',36,130,0,0,0.25,0
436,Mon Jun 12 12:05:59 +0000 2017," '""RT @WomaninHavana: Re-upping my Sat thread after No 10 now say no change to Brexit plan. \n\nWinning neither personal nor Brexit mandate… ""'", 'drmatthewhardy',2191,1728,0,0,0.25,0
437,Mon Jun 12 12:05:59 +0000 2017," '""All this hassle because of delusional students voting Labour. haha yah yah #hungparliament #labour #brexit""'", 'lifeistoff',333,297,0,0,0.25,0
438,Mon Jun 12 12:05:59 +0000 2017," '""RT @jeremycorbyn: Hard-won LGBT rights must not be sold out by @Theresa_May and the Tories as they try to cling to power with the DUP. http…""'", 'BatterseaLabour',2384,999,0,0,0.25,0
439,Mon Jun 12 12:05:59 +0000 2017," '""Negotiations with the EU will have to wait as Tories must strike a deal with NI DUP first. No no deal is better th… https://t.co/dTLENcUXMv""'", 'yarotrof',22781,2326,0,0,0.25,0
440,Mon Jun 12 12:05:59 +0000 2017," '""RT @helenyg: Its hard work destroy the future... Its unbelievable Tory incompetence and greed. https://t.co/XT9dX2bXLY""'", 'kfmorel',874,965,0,0,0.25,0
441,Mon Jun 12 12:05:59 +0000 2017," '""RT @BrexitCentral: Graham Brady: The Labour Party was contesting the election with a policy on the EU that was broadly the same as th… ""'", 'leslieappleyard',380,169,0,0,0.25,0
442,Mon Jun 12 12:05:59 +0000 2017," '""#WorldDayAgainstChildLabour Protect Children from Child Labour. https://t.co/8VigND9kbI""'", 'gouravprincedh1',13250,10349,0,0,0.25,0
443,Mon Jun 12 12:06:00 +0000 2017," '""RT @ajcdeane: 2005: Tories lost 3rd election in row. Howard gained 33 seats. Resigned.\n2017: Labour loses 3rd election in row. Corbyn gaine…""'", 'LeCygne23',723,1096,0,0,0.25,0
444,Mon Jun 12 12:06:00 +0000 2017," '""RT @saskilla: JUS GOT A TEXT FROM JEREMY CORBYN HE SHOPS IN LIDL\nSO SHUTTTTT YOUR MOUTHHHHHH\n\n 😂""'", 'umarnurgat',303,255,0,0,0.25,0
445,Mon Jun 12 12:06:00 +0000 2017," '""RT @TimHarford: Wonder if this result will be more damaging for Labour than Tories. Losing but thinking youve won is not a good place from…""'", 'diffkindofhat',56,307,0,0,0.25,0
446,Mon Jun 12 12:06:00 +0000 2017," '""RT @paulmasonnews: Enough theorising - read this from the activist who organised Momentums ground war. Its what we did... https://t.co/4t…""'", 'mcgooner1954',144,172,0,0,0.25,0
447,Mon Jun 12 12:06:01 +0000 2017," '""HYPOCRISY https://t.co/6C74CcoNJG""'", 'cotrial',1779,4685,0,0,0.25,0
448,Mon Jun 12 12:06:01 +0000 2017," '""RT @MissEllieMae: @OwenJones84 also this https://t.co/LqqeKwu4BO""'", 'bmFtZQ',228,2121,0,0,0.25,0
449,Mon Jun 12 12:06:01 +0000 2017," '""Theresa May is displaying an inability to learn from her mistakes. Very dangerous https://t.co/TE1meoMXKJ""'", 'david_e_2016',187,514,0,0,0.25,0
450,Mon Jun 12 12:06:02 +0000 2017," '""@Ray1Griffin @JohnWren1950 I thought that Theresa May was a prime example of stuffy born to rule upperclass Great… https://t.co/INfXpIN2wz""'", 'Honeputu',2570,2275,0,0,0.25,0
451,Mon Jun 12 12:06:02 +0000 2017," '""Labour claim the DUP deal means the UK cannot be a honest broker in the Northern Ireland talks . What about labours links to Sinn Fein ?""'", 'mikelallen6',4382,4150,0,0,0.25,0
452,Mon Jun 12 12:06:02 +0000 2017," '""Tom Watson asks Theresa May if Rupert Murdoch influenced her cabinet reshuffle: https://t.co/gjWhGuDTJZ""'", 'dancrawford85',3615,2562,0,0,0.25,0
453,Mon Jun 12 12:06:02 +0000 2017," '""RT @MarkSkoda: Hypocrite Jeremy Corbyn says he Welcomes the Cancellation of President Trumps Visit to UK. #LondonHasFallen https://t.co/…""'", 'PalomaCeci88',64,2267,0,0,0.25,0
454,Mon Jun 12 12:06:02 +0000 2017," '""RT @Xhakaed: And the internet came up with anti-Theresa May memes for free lmaoooo what an L https://t.co/e0ZlHcSRzo""'", 'rainebeckf0rd',851,289,0,0,0.25,0
455,Mon Jun 12 12:06:02 +0000 2017," '""RT @Number10cat: Meet the Conservatives new buddies: #GE2017 https://t.co/IVo0aNxsFq""'", 'LiveEUDebate',22222,13730,0,0,0.25,0
456,Mon Jun 12 12:06:02 +0000 2017," '""RT @HereticHR: A newly-elected black Labour MP just quoted Stormzy to skewer Theresa May\n\nThe future is ours https://t.co/XDSMC7hYwv""'", 'kconwyg',357,175,0,0,0.25,0
457,Mon Jun 12 12:06:03 +0000 2017," '""RT @Bonn1eGreer: #GeorgeOsbornes front page urged #London to vote for the #Tories.\nWe Londoners responded this way:\n#newpundits\nhttps://t…""'", 'SovereignAnnie',6063,2853,0,0,0.25,0
458,Mon Jun 12 12:06:03 +0000 2017," '""RT @JohnHealey_MP: Tories claim housing is a priority but four days on still no housing minister. Labour would be setting up a new Housing…""'", 'LocalDialogue',1332,1969,0,0,0.25,0
459,Mon Jun 12 12:06:03 +0000 2017," '""RT @brendanhughes64: When Facebook introduces a new rainbow flag reaction and everyone immediately uses it on the DUP. \n\n#GE2017… ""'", 'celticissimo',774,974,0,0,0.25,0
460,Mon Jun 12 12:06:03 +0000 2017," '""RT @saskilla: JUS GOT A TEXT FROM JEREMY CORBYN HE SHOPS IN LIDL\nSO SHUTTTTT YOUR MOUTHHHHHH\n\n 😂""'", 'ZRhazes',1508,5001,0,0,0.25,0
461,Mon Jun 12 12:06:03 +0000 2017," '""RT @ThomasPride: More BIZARRE behaviour from Theresa May - repeats getting on with the job 10 times in reply to 4 different questi… ""'", 'AnyoneButTheTor',2092,4983,0,0,0.25,0
462,Mon Jun 12 12:06:03 +0000 2017," '""RT @Harryslaststand: Its no small thing when a government cant deliver its #queensspeech on time as it indicates crisis within the hall…""'", 'homead3',312,613,0,0,0.25,0
463,Mon Jun 12 12:06:03 +0000 2017," '""RT @ToryFibs: Theresa May in reappointing Jeremy Hunt Health Secretary has sent a clear signal to NHS Patients & Staff. She refuses to list…""'", 'cmarslett',2233,2548,0,0,0.25,0
464,Mon Jun 12 12:06:03 +0000 2017," '""Wow. >Theresa May delays Queens Speech as she grapples to lead minority government https://t.co/T6qo9i6a8Z""'", 'MrsStocksy',589,116,0,0,0.25,0
465,Mon Jun 12 12:06:03 +0000 2017," '""RT @dancrawford85: Tom Watson asks Theresa May if Rupert Murdoch influenced her cabinet reshuffle: https://t.co/gjWhGuDTJZ""'", 'LabLondon_zone',1078,168,0,0,0.25,0
466,Mon Jun 12 12:06:04 +0000 2017," '""RT @Harryslaststand: There is now talk that Theresa May will delay both #brexit talks & the Queens speech which indicates the Tories aren…""'", 'fauxpaschick',4033,2686,0,0,0.25,0
467,Mon Jun 12 12:06:04 +0000 2017," '""RT @LesleyRiddoch: Just to add to Theresas woes - neither new Scots Tories nor DUP can vote on domestic legislation. Remember English Vote…""'", 'JamesDa32967025',453,2040,0,0,0.25,0
468,Mon Jun 12 12:06:04 +0000 2017," '""RT @Harryslaststand: Its no small thing when a government cant deliver its #queensspeech on time as it indicates crisis within the hall…""'", 'mikeymikedoha',8605,8259,0,0,0.25,0
469,Mon Jun 12 12:06:04 +0000 2017," '""RT @markthomasinfo: What would be really really useful right now is if Labour focused attack on Tories and their marching partners.""'", 'AlexRichards007',8,46,0,0,0.25,0
470,Mon Jun 12 12:06:04 +0000 2017," '""RT @louisa_compton: After @saskilla was on our programme asking whether @jeremycorbyn shops in Lidl - the Labour leader got in touch to… ""'", 'raymondr52',984,1303,0,0,0.25,0
471,Mon Jun 12 12:06:04 +0000 2017," '""RT @Grande_Cuisine: Hung Parliament: What does it mean for hospitality? #hospitalityindustry #brexit #GE2017 https://t.co/7TgexIe6fu https:…""'", 'HospAssured',902,814,0,0,0.25,0
472,Mon Jun 12 12:06:04 +0000 2017," '""We would form a minority government. What for? Who asked you?\n\nhttps://t.co/l5SZAoMNJ6""'", 'the_mehran',1932,2324,0,0,0.25,0
473,Mon Jun 12 12:06:04 +0000 2017," '""RT @libdemfightbac: Labour was lent millions of votes from tactical remainers hoping to block Mays hard brexit power bid.Labour needs… ""'", 'gweston7',225,345,0,0,0.25,0
474,Mon Jun 12 12:06:05 +0000 2017," '""https://t.co/d9NtWMyFC9 | Theresa May the Daily Mail on Death Tax unfucknbelievable\n\nvia YouTube Capture\n\nFrom: https://t.co/9koMjX5Urc""'", 'anarchinfo',118,199,0,0,0.25,0
475,Mon Jun 12 12:06:05 +0000 2017," '""RT @michaeljswalker: 2015: I wont serve cos its not my politics\n2016: Corbyn should resign \n2017: Giz a job mate https://t.co/msFNrHfarF""'", 'AbnormalAbner',1202,1238,0,0,0.25,0
476,Mon Jun 12 12:06:05 +0000 2017," '""RT @severusd: Theresa May has carefully reflected on the election result and decided that the British public were telling her to reappoint…""'", 'markweetabix',8,25,0,0,0.25,0
477,Mon Jun 12 12:06:05 +0000 2017," '""@LBC Because they were offered the world and more from labour and they loved corbyn for it""'", 'D0mLew',1043,965,0,0,0.25,0
478,Mon Jun 12 12:06:05 +0000 2017," '""RT @pinkhiigh: But there isnt a magic money tree for NHS nurses. https://t.co/qrC9GOUn7G""'", 'stephdevinex',663,1131,0,0,0.25,0
479,Mon Jun 12 12:06:05 +0000 2017," '""RT @MichaelLCrick: And in Corbyns case its a lot easier as there are only four losing Labour MPs to contact https://t.co/hLkTACaIPF""'", 'damilne1',1611,3032,0,0,0.25,0
480,Mon Jun 12 12:06:05 +0000 2017," '""RT @NameChangeGirl: Oh dear! Adam Boulton: What went wrong? Tory MP David Davis: The campaign went wrong. 😆https://t.co/GoiTjNCSfK #VoteLab…""'", 'Boab10s',297,1526,0,0,0.25,0
481,Mon Jun 12 12:06:05 +0000 2017," '""The Queens speech delayed. Tories changing the constitution and the rules at will just to push things through.""'", 'Jackie66825887',161,489,0,0,0.25,0
482,Mon Jun 12 12:06:05 +0000 2017," '""RT @SandPatterson: Not a failure. BBC is broadcasting arm of the tory establishment. https://t.co/Wzr0QS2gHM""'", 'Shoolyboo',1747,1200,0,0,0.25,0
483,Mon Jun 12 12:06:06 +0000 2017," '""i cant believe its taken all the time ive known her for saffron to admit how cool jeremy corbyn is""'", 'GayTransDad',240,611,0,0,0.25,0
484,Mon Jun 12 12:06:06 +0000 2017," '""RT @Harryslaststand: #TheresaMay begins to #reshuffle the deck chairs on the Titanic. Someone please escort her to a lifeboat station b/c T…""'", 'seantkeenan',186,483,0,0,0.25,0
485,Mon Jun 12 12:06:06 +0000 2017," '""RT @fran_hall1: @CCriadoPerez @jeremycorbyn Labour have used abortion in NI as bargaining chip to pass law with DUP in past… ""'", 'StilettoLady',1052,3424,0,0,0.25,0
486,Mon Jun 12 12:06:06 +0000 2017," '""RT @mojos55: #BBC ..Do you mind using #JeremyCorbyns full title ? Hearing the bias loud Not a word of discord within the #Tory party ? Ab…""'", 'bbcbiasbot',34,105,0,0,0.25,0
487,Mon Jun 12 12:06:06 +0000 2017," '""RT @GuidoFawkes: McDonnell Said Corbyn Would Inevitably Have to Resign If Labour Lost the General Election.\nLabour Lost. #Awkward https:/…""'", 'jacksweynseye',121,240,0,0,0.25,0
488,Mon Jun 12 12:06:06 +0000 2017," '""RT @OwenJones84: Tories doubling down on contempt for the young will 100% turn their political fortunes around https://t.co/4ZIOWZYFIC""'", 'enterjoshua',12,73,0,0,0.25,0
489,Mon Jun 12 12:06:06 +0000 2017," '""RT @youngvulgarian: Tory MPs seem to be doing well. https://t.co/KxgmZGLkpo""'", 'DougStrider',1103,2084,0,0,0.25,0
490,Mon Jun 12 12:06:06 +0000 2017," '""RT @byzantinepower: Riding high https://t.co/3ZdJXQZ9i8""'", 'matei_clej',100,279,0,0,0.25,0
491,Mon Jun 12 12:06:07 +0000 2017," '""RT @MarieAnnUK: *Tories Brexit Shambles* https://t.co/IvsQWvg46b""'", 'andwarn',1168,2012,0,0,0.25,0
492,Mon Jun 12 12:06:07 +0000 2017," '""RT @jeremycorbyn: 30 years ago today Diane Abbott became an MP. As the first black woman MP she continues to inspire & represent the… ""'", 'hammadadad',93,92,0,0,0.25,0
493,Mon Jun 12 12:06:07 +0000 2017," '""RT @NHSMillion: Jeremy Hunt has just been re-appointed as Health Secretary by Theresa May - pls RT if you agree it is an utter disg… ""'", 'McKinney_Charl',409,1288,0,0,0.25,0
494,Mon Jun 12 12:06:07 +0000 2017," '""@_AntiSnp_ @fishface60 @toryman1979 @NicolaSturgeon @theSNP You are obvuously stupid if you think this vote was bas… https://t.co/np8SETPaVL""'", 'Alisonmccaffer3',31,532,0,0,0.25,0
495,Mon Jun 12 12:06:07 +0000 2017," '""RT @MichaelLCrick: Tom Watson has written to Theresa May asking whether Rupert Murdoch ever suggested to you Michael Gove should be given…""'", 'pauline_beer',24,122,0,0,0.25,0
496,Mon Jun 12 12:06:07 +0000 2017," '""RT @edknock: 2017 election results by Football League teams (changes w 2015)\n\nLabour 63 (+3)\nConservative 28 (-4)\nLib Dems 1 (+1) https://t…""'", 'Nearly_Right',144,23,0,0,0.25,0
497,Mon Jun 12 12:06:07 +0000 2017," '""RT @Corbyn_Power: Barry Gardiner: There are many areas of disagreement between Cons & DUP... many Tories will feel deeply ill at ease\nhttps…""'", 'martinolsson7',5669,4865,0,0,0.25,0
498,Mon Jun 12 12:06:07 +0000 2017," '""RT @Hepworthclare: Queens Speech *postponed*\nTory Manifesto *shredded*\nNobody has CLUE about what is going on !\nBut HEY - DUP will bail yo…""'", 'memphis3577',25,58,0,0,0.25,0
499,Mon Jun 12 12:06:08 +0000 2017," '""RT @GreekAnalyst: Theresa May negotiating with the EU over Brexit after the UK election. https://t.co/qEViaPhaY7""'", 'betalenbepalen',404,349,0,0,0.25,0
500,Mon Jun 12 12:06:08 +0000 2017," '""@Scouriebeast Lol - no chance. 150 Tories will desert.""'", 'andrewskea',538,1040,0,0,0.25,0
501,Mon Jun 12 12:06:08 +0000 2017," '""RT @ilo: Today is World Day Against Child Labour - spread the word #NoChildLabour https://t.co/czAcNVYCcz https://t.co/3z7gUsYK5Q""'", 'vishantkumar14',145,164,0,0,0.25,0
502,Mon Jun 12 12:06:08 +0000 2017," '""RT @pinkhiigh: But there isnt a magic money tree for NHS nurses. https://t.co/qrC9GOUn7G""'", 'abineverson',1435,901,0,0,0.25,0
503,Mon Jun 12 12:06:08 +0000 2017," '""RT @billybragg: Heres todays tweet to keep you smiling: Tory seer Ian Dale was sure May would win a 100+ majority. Gotta say it..… ""'", 'AlanRoebuck1',225,513,0,0,0.25,0
504,Mon Jun 12 12:06:08 +0000 2017," '""Queens Speech delayed as Tories work on DUP deal https://t.co/zzg8ilS6iQ""'", 'MetroUK',266258,2690,0,0,0.25,0
505,Mon Jun 12 12:06:08 +0000 2017," '""RT @MarkSkoda: Hypocrite Jeremy Corbyn says he Welcomes the Cancellation of President Trumps Visit to UK. #LondonHasFallen https://t.co/…""'", 'AhmedAlslkan',240,127,0,0,0.25,0
506,Mon Jun 12 12:06:08 +0000 2017," '""This.Is.Brilliant I seriously love @iamjohnoliver https://t.co/4WsRGLGiKR""'", 'franmh',243,1215,0,0,0.25,0
507,Mon Jun 12 12:06:08 +0000 2017," '""RT @Xhakaed: And the internet came up with anti-Theresa May memes for free lmaoooo what an L https://t.co/e0ZlHcSRzo""'", 'unicornasses',354,177,0,0,0.25,0
508,Mon Jun 12 12:06:08 +0000 2017," '""MrTopple: RT VoiceofT_Reason: Good on #CliveLewis. Weve had enough #Torylite spiel to last a lifetime! https://t.co/aqs3fj1psD via thecan…""'", 'willhuw',1908,1573,0,0,0.25,0
509,Mon Jun 12 12:06:09 +0000 2017," '""RT @arjan____: what are the odds on him one day eating one of his sons? https://t.co/uTg0BO2Iiq""'", 'Iamejessica',1202,138,0,0,0.25,0
510,Mon Jun 12 12:06:09 +0000 2017," '""@jbell32403 @Steve2451 @theSNP A Tory cunt and a Tommy Robinson follower. Roasters 😂😂""'", 'McDuffman1971',135,526,0,0,0.25,0
511,Mon Jun 12 12:06:09 +0000 2017," '""love how many old ppl are saying I should feel bad for theresa may like do u know how many asylum seekers shes sent home to their deaths??""'", 'krustyskrab',397,395,0,0,0.25,0
512,Mon Jun 12 12:06:09 +0000 2017," '""RT @peterjamesuk: Theresa May gets taste of her own medicine from Police - the swingeing cuts shes made in recent years devastating… ""'", 'deltazebedee1',155,312,0,0,0.25,0
513,Mon Jun 12 12:06:09 +0000 2017," '""RT @WFI_Clacks: @BBCRadioScot why is a Labour politician and unionist commentator getting free reign to talk absolute rubbish about Nicola…""'", 'free180914',1158,1302,0,0,0.25,0
514,Mon Jun 12 12:06:09 +0000 2017," '""RT @jeremycorbyn: 30 years ago today Diane Abbott became an MP. As the first black woman MP she continues to inspire & represent the… ""'", 'OddzLDN',120,124,0,0,0.25,0
515,Mon Jun 12 12:06:09 +0000 2017," '""@Freeman_George As one of those innovators in public services can I comment that I do not see gifting the keys to… https://t.co/Pm2Pix7IaS""'", 'stephenemoss',1216,365,0,0,0.25,0
516,Mon Jun 12 12:06:10 +0000 2017," '""RT @tom_watson: We will be pressing Theresa May until she gives answers. https://t.co/8M0gX0RUnr""'", 'franksmedear',388,747,0,0,0.25,0
517,Mon Jun 12 12:06:10 +0000 2017," '""RT @paulmasonnews: Oh. Dear. This is not fair on a vulnerable person. https://t.co/MBUCHPJS5U""'", 'RealTimMitchell',651,924,0,0,0.25,0
518,Mon Jun 12 12:06:10 +0000 2017," '""Petition against #DUPCoalition & for the resignation of Theresa May. Signed by >700k. Wished it was only against DUP\nhttps://t.co/VCG0WYUA6W""'", 'j_ulia8',209,120,0,0,0.25,0
519,Mon Jun 12 12:06:10 +0000 2017," '""RT @ezralevant: Hey guys. The Labour mayor doesnt want anyone criticizing sharia in his town. Its a distraction. From the shari… ""'", 'AngelaTange65',1486,2597,0,0,0.25,0
520,Mon Jun 12 12:06:11 +0000 2017," '""RT @MissEllieMae: @OwenJones84 also this https://t.co/LqqeKwu4BO""'", 'thomashrooney',159,575,0,0,0.25,0
521,Mon Jun 12 12:06:11 +0000 2017," '""RT @Micky_Murray: I almost forgot about that time when Emma Pengelly told me to be thankful I wasnt being murdered for being gay… ""'", 'celticissimo',774,974,0,0,0.25,0
522,Mon Jun 12 12:06:11 +0000 2017," '""@standardnews Labour supporters.""'", 'Mwmoliver',72,102,0,0,0.25,0
523,Mon Jun 12 12:06:12 +0000 2017," '""RT @OwenJones84: Labours Shadow Cabinet needs to stay full of MPs who genuinely passionately believe in policies like public ownership and…""'", 'Moreterm',322,692,0,0,0.25,0
524,Mon Jun 12 12:06:12 +0000 2017," '""RT @DavidJo52951945: Jeremy Corbyns election result was a terrible result for Labour.Fewer seats than Kinnock 1992 & Callaghan 1979 & j… ""'", 'spritch74',68,560,0,0,0.25,0
525,Mon Jun 12 12:06:12 +0000 2017," '""RT @Harryslaststand: There is now talk that Theresa May will delay both #brexit talks & the Queens speech which indicates the Tories aren…""'", 'bassface25',218,650,0,0,0.25,0
526,Mon Jun 12 12:06:12 +0000 2017," '""RT @derasachasauda: #WorldDayAgainstChildLabour Child labour hinders children from blossoming & kill their aspirations to do something… ""'", 'GroverAnshu',2,58,0,0,0.25,0
527,Mon Jun 12 12:06:12 +0000 2017," '""RT @PeterStefanovi2: Theresa May appoints anti-LGBT justice secretary with appalling gay rights voting record during DUP talks https://t.co…""'", 'jo_purplepoppy',277,1108,0,0,0.25,0
528,Mon Jun 12 12:06:12 +0000 2017," '""RT @montie: YouGov found that talk of ending the fox hunting ban was almost as bad for Tories as the dementia tax. Unnecessary… ""'", 'BurgeeBoy',580,1136,0,0,0.25,0
529,Mon Jun 12 12:06:12 +0000 2017," '""World Day Against Child Labour: Plight of child domestic workers https://t.co/x8pxABlUui via @IndianNewsViews""'", 'IndianNewsViews',243,16,0,0,0.25,0
530,Mon Jun 12 12:06:12 +0000 2017," '""@t4thecat Regardless of my political affiliation. The facts speak for themselves. The youth vote swung #GE2017 election for Corbyn.""'", 'gllnkk',1354,3995,0,0,0.25,0
531,Mon Jun 12 12:06:13 +0000 2017," '""RT @AaronBastani: John nobody needs to abuse you when you seem so hellbent on embarrassing yourself. https://t.co/oPuiuqqdXD""'", 'cookielicker12',185,705,0,0,0.25,0
532,Mon Jun 12 12:06:13 +0000 2017," '""RT @MarkSkoda: Hypocrite Jeremy Corbyn says he Welcomes the Cancellation of President Trumps Visit to UK. #LondonHasFallen https://t.co/…""'", '3ngBestH',318,122,0,0,0.25,0
533,Mon Jun 12 12:06:13 +0000 2017," '""RT @Harryslaststand: There is now talk that Theresa May will delay both #brexit talks & the Queens speech which indicates the Tories aren…""'", 'tony26860',176,470,0,0,0.25,0
534,Mon Jun 12 12:06:13 +0000 2017," '""Tories manifesto money measures - how many will survive? https://t.co/tE5kPzxLzI""'", 'CollectedN',22107,16943,0,0,0.25,0
535,Mon Jun 12 12:06:13 +0000 2017," '""RT @LJRazaq: SNP MPs gather in Parliament Square. Ian Blackford front and centre. Should we read anything into that? #GE2017 https://t.co/n…""'", 'C_GMcPherson',1187,1109,0,0,0.25,0
536,Mon Jun 12 12:06:14 +0000 2017," '""RT @Harryslaststand: There is now talk that Theresa May will delay both #brexit talks & the Queens speech which indicates the Tories aren…""'", 'MarkyB_62',1397,4093,0,0,0.25,0
537,Mon Jun 12 12:06:13 +0000 2017," '""RT @TheCanarySays: Just dont\n\nClive Lewis just gave a stark warning to any Labour MPs plotting against Corbyn [AUDIO]\n\nhttps://t.co/wmCOlG…""'", 'AilsaLaing',289,651,0,0,0.25,0
538,Mon Jun 12 12:06:14 +0000 2017," '""RT @MarkSkoda: Hypocrite Jeremy Corbyn says he Welcomes the Cancellation of President Trumps Visit to UK. #LondonHasFallen https://t.co/…""'", '4abbyyyyyyyyyyy',204,112,0,0,0.25,0
539,Mon Jun 12 12:06:14 +0000 2017," '""Great reflections from @Ribsy1 on what #GE2017 means for our region https://t.co/jBBShcIKJK - what do you think of… https://t.co/q2XbYSvg4H""'", 'Newgate_SW',525,1566,0,0,0.25,0
540,Mon Jun 12 12:06:14 +0000 2017," '""RT @MarkSkoda: Hypocrite Jeremy Corbyn says he Welcomes the Cancellation of President Trumps Visit to UK. #LondonHasFallen https://t.co/…""'", 'MohdHamdan030',208,113,0,0,0.25,0
541,Mon Jun 12 12:06:14 +0000 2017," '""RT @fitzy_blue: Things Theresa May says....\n\nMay 2017 - No deal is better than a bad deal\n\nJune 2017 - I have done a deal with the DUP""'", 'rosieblossoms_',2056,1566,0,0,0.25,0
542,Mon Jun 12 12:06:14 +0000 2017," '""RT @mikeysmith: David Davis: “Theresa May is a good Prime Minister”\n\nAdam Boulton: “That’s like saying Richard Hammond is a great d… ""'", 'kingof__fools',3103,2701,0,0,0.25,0
543,Mon Jun 12 12:06:15 +0000 2017," '""RT @tiggrtalk: Ireland’s prime minister warns Theresa May over deal with DUP https://t.co/1EzRKUvQt6""'", 'w_nicht',4677,4458,0,0,0.25,0
544,Mon Jun 12 12:06:15 +0000 2017," '""RT @Xhakaed: And the internet came up with anti-Theresa May memes for free lmaoooo what an L https://t.co/e0ZlHcSRzo""'", 'johnnyHTTP404',186,507,0,0,0.25,0
545,Mon Jun 12 12:06:15 +0000 2017," '""RT @MarkSkoda: Hypocrite Jeremy Corbyn says he Welcomes the Cancellation of President Trumps Visit to UK. #LondonHasFallen https://t.co/…""'", 'ElDeLaBlblio',387,127,0,0,0.25,0
546,Mon Jun 12 12:06:15 +0000 2017," '""RT @KathShez: @AbiWilks @OwenJones84 @montie @chrisdeerin Can some1 pls start making the point whenever someone says but Labour… ""'", 'Kay7To',624,1200,0,0,0.25,0
547,Mon Jun 12 12:06:15 +0000 2017," '""Opinion: A gay man pens an open letter to Theresa May on her partnership with the DUP\n\nhttps://t.co/HWf0dgzIEo https://t.co/2pSR0hrhjl""'", 'AttitudeMag',163479,20540,0,0,0.25,0
548,Mon Jun 12 12:06:15 +0000 2017," '""@thepublicgets @MrRae1000 @JamieMcBastard If there were PR Tories and Labour would have almost been equal on 260 se… https://t.co/4KNWqI8f3E""'", 'petergerald',674,420,0,0,0.25,0
549,Mon Jun 12 12:06:15 +0000 2017," '""RT @itvnews: Jeremy Corbyn will challenge Theresa May with significant amendments to her plan of legislation in the Queens Sp… ""'", 'HanzChristianNL',900,1761,0,0,0.25,0
550,Mon Jun 12 12:06:15 +0000 2017," '""@jmwhittaker95 @mattzarb @RobBurl @Michael_Heaver @janemerrick23 @pollytoynbee Funny really as the only thick peo… https://t.co/6HD8eRXjg7""'", 'Jackiehilton44',1110,389,0,0,0.25,0
551,Mon Jun 12 12:06:15 +0000 2017," '""RT @saskilla: JUS GOT A TEXT FROM JEREMY CORBYN HE SHOPS IN LIDL\nSO SHUTTTTT YOUR MOUTHHHHHH\n\n 😂""'", 'ItsZoeMaria',244,640,0,0,0.25,0
552,Mon Jun 12 12:06:15 +0000 2017," '""@Robertc8432 DUP interest is for gov to last as long as poss. Theres no way controversial legislation will be intr… https://t.co/VznOMf1kwI""'", 'Colin_W_Reid',812,1013,0,0,0.25,0
553,Mon Jun 12 12:06:15 +0000 2017," '""RT @AhmedUmbongo: @MarcherLord1 Kids like Labour right up to the point when they start paying shit loads of tax & see what it gets wasted o…""'", 'toryVal',340,257,0,0,0.25,0
554,Mon Jun 12 12:06:15 +0000 2017," '""Who is Theresa May’s new chief of staff Gavin Barwell? https://t.co/m1l954jqkA""'", 'CollectedN',22107,16943,0,0,0.25,0
555,Mon Jun 12 12:06:15 +0000 2017," '""RT @scientificusrex: Ireland’s prime minister warns Theresa May over deal with DUP | The Independent https://t.co/kJopuNROZg""'", '43a6f0ce5dac4ea',3109,3409,0,0,0.25,0
556,Mon Jun 12 12:06:16 +0000 2017," '""RT @NameChangeGirl: Have any London-based journalists headed onto streets of Belfast yet to discover how this Tory mess is affecting people…""'", 'krustyskrab',397,395,0,0,0.25,0
557,Mon Jun 12 12:06:16 +0000 2017," '""RT @NEWTEKWORLDNEWS: @paulmasonnews And it is still about ME and THE TORIES and their long term plan. It has nowt to do with good of the… ""'", 'RealTimMitchell',651,924,0,0,0.25,0
558,Mon Jun 12 12:06:16 +0000 2017," '""RT @LawCentres: Has #accesstojustice dropped off the #GE2017 agenda? Michael Mansfield QC sees attempts to disempower and subdue https://…""'", 'hayle_woods',252,1207,0,0,0.25,0
559,Mon Jun 12 12:06:16 +0000 2017," '""#DUP bargaining chip ? https://t.co/NJOY3XDNfw""'", 'Artemitzi',413,1768,0,0,0.25,0
560,Mon Jun 12 12:06:16 +0000 2017," '""@EricYesyev Should the #DUP leader Arlene Foster be Deputy PM because without the DUP there would be no Tory government?""'", 'Justice_forum',21207,24570,0,0,0.25,0
561,Mon Jun 12 12:06:17 +0000 2017," '""RT @davidallengreen: My thread on Theresa May being the Brexiteers biggest problem all along. https://t.co/j8AJN7IOkj""'", 'greg_coyote',163,389,0,0,0.25,0
562,Mon Jun 12 12:06:17 +0000 2017," '""RT @lucyybarnes: risky activities help you in later life\ntheresa may:\n\n#aqaenglish https://t.co/sVgOa7bBht""'", 'KingRatBoy01',183,142,0,0,0.25,0
563,Mon Jun 12 12:06:17 +0000 2017," '""@jonwalker121 @birminghampost Maybe his time would be better spent examining what needs to change given they lost t… https://t.co/ZeGAumThqb""'", 'BoudicaBlithe',17,48,0,0,0.25,0
564,Mon Jun 12 12:06:17 +0000 2017," '""RT @MichaelLCrick: Theresa Mays brought in talent from across the party line is a bit strange. The only person shes brought in so far i…""'", 'samstyles147',150,427,0,0,0.25,0
565,Mon Jun 12 12:06:17 +0000 2017," '""RT @derasachasauda: #WorldDayAgainstChildLabour Child labour hinders children from blossoming & kill their aspirations to do something… ""'", 'YogeshGoyal0777',398,59,0,0,0.25,0
566,Mon Jun 12 12:06:17 +0000 2017," '""RT @Barristerblog: This idiocy must be stopped. May is playing with a blowtorch in a petrol station. Updated post.… ""'", 'ndyet',142,454,0,0,0.25,0
567,Mon Jun 12 12:06:18 +0000 2017," '""I am struggling to understand why 10 https://t.co/RCaW2bE6qs MPs appear to be keeping Theresa May as PM of all UK? https://t.co/93VF8Ifls7""'", 'triplenickel',3867,3779,0,0,0.25,0
568,Mon Jun 12 12:06:18 +0000 2017," '""@wallaceme i wish tories would stop acting as if this is the same party...this is the party whose whip corbyn defied 248 times""'", 'BayouBayou_',26,34,0,0,0.25,0
569,Mon Jun 12 12:06:18 +0000 2017," '""@SteveD4848 Not everybody earns the MW. EU is about driving down wage prices Europe wide and creating a bosses Euro… https://t.co/eekdGSVqUD""'", 'ElstonGunn87',748,1745,0,0,0.25,0
570,Mon Jun 12 12:06:18 +0000 2017," '""Via @AttitudeMag: Opinion: A gay man pens an open letter to Theresa May on her partnership with the DUP… https://t.co/BTH0NMGqjb""'", 'crewislife',6995,6989,0,0,0.25,0
571,Mon Jun 12 12:06:18 +0000 2017," '""RT @Izin_A: Look how governments waste money like water. But to make university free. To stop austerity. Suddenly theres no mo… ""'", 'darealdi0n',496,209,0,0,0.25,0
572,Mon Jun 12 12:06:19 +0000 2017," '""we have a tory govt postponing the Queens speech as they are gping to do a U turn on their manifesto totally incompetent""'", 'VforVolition',243,134,0,0,0.25,0
573,Mon Jun 12 12:06:19 +0000 2017," '""Excellent analysis by @fotoole - what a bloody mess #GE2017 #brexit #UKPolitics https://t.co/rs29tfg0RQ""'", 'karlosponders',167,193,0,0,0.25,0
574,Mon Jun 12 12:06:19 +0000 2017," '""RT @hrtbps: Id be more willing to believe this if she hadnt said it again yesterday in an interview abt the cabinet reshuffle. https://t.…""'", 'lennyvalentino',1288,1810,0,0,0.25,0
575,Mon Jun 12 12:06:19 +0000 2017," '""RT @jeremycorbyn: Hard-won LGBT rights must not be sold out by @Theresa_May and the Tories as they try to cling to power with the DUP. http…""'", 'minimoderns',11344,1645,0,0,0.25,0
576,Mon Jun 12 12:06:19 +0000 2017," '""RT @MichaelLCrick: Tom Watson has written to Theresa May asking whether Rupert Murdoch ever suggested to you Michael Gove should be given…""'", 'Janus456',1595,2236,0,0,0.25,0
577,Mon Jun 12 12:06:19 +0000 2017," '""RT @MichaelLCrick: Theresa Mays brought in talent from across the party line is a bit strange. The only person shes brought in so far i…""'", 'thomashrooney',159,575,0,0,0.25,0
578,Mon Jun 12 12:06:19 +0000 2017," '""RT @davidschneider: This is agony to watch. It’s like the scene in A.I. where the robot boy tries to eat food and slowly malfunctions.\nhttp…""'", 'GuardonArrsquot',45,108,0,0,0.25,0
579,Mon Jun 12 12:06:20 +0000 2017," '""RT @NHSMillion: Just a week ago we were heading for a huge Tory majority but we proved we can all make a difference & that this isn… ""'", 'Africancelebs1',3015,173,0,0,0.25,0
580,Mon Jun 12 12:06:20 +0000 2017," '""RT @Independent: Populism is no longer a dirty word - and its thanks to Jeremy Corbyn https://t.co/V8TkeYGOxd https://t.co/FiwTUpXxrc""'", 'sylvia_uybub',59,83,0,0,0.25,0
581,Mon Jun 12 12:06:20 +0000 2017," '""It was defeated by a vote of 11 - 10 in cabinet. https://t.co/WDW5CZK6Sr""'", 'brianmoore666',158444,699,0,0,0.25,0
582,Mon Jun 12 12:06:20 +0000 2017," '""RT @liamyoung: This onslaught against young people will only embolden us. We will vote Labour next time in even greater numbers. Its our f…""'", 'Janus456',1595,2236,0,0,0.25,0
583,Mon Jun 12 12:06:20 +0000 2017," '""RT @FCTwenteBenson: BREAKING: The #DUP have arrived in London for talks with #TheresaMay #DUPCoalition #GE2017 https://t.co/GAUgRySMQl""'", 'geekscanbecool',424,298,0,0,0.25,0
584,Mon Jun 12 12:06:21 +0000 2017," '""@OwenJones84 am I missing something here. Did Labour win?""'", 'Blofeld',135,1267,0,0,0.25,0
585,Mon Jun 12 12:06:21 +0000 2017," '""RT @Harryslaststand: There is now talk that Theresa May will delay both #brexit talks & the Queens speech which indicates the Tories aren…""'", 'AlisonYoga1',399,107,0,0,0.25,0
586,Mon Jun 12 12:06:21 +0000 2017," '""I think well stick to voting Labour thanks! https://t.co/nySW4AY5nB""'", 'MikeSegalov',5377,778,0,0,0.25,0
587,Mon Jun 12 12:06:21 +0000 2017," '""RT @wangusim: Is the Tory Party intentionally gambling with Northern Ireland peace process by getting in bed with DUP? Listen.... https://t…""'", 'melaniekmelvin',2300,1355,0,0,0.25,0
588,Mon Jun 12 12:06:21 +0000 2017," '""RT @itvnews: Jeremy Corbyn will challenge Theresa May with significant amendments to her plan of legislation in the Queens Sp… ""'", 'free180914',1158,1302,0,0,0.25,0
589,Mon Jun 12 12:06:21 +0000 2017," '""RT @sinnfeinireland: I share the concern of the Taoiseach on the DUP and Tory deal. The incoming Taoiseach must act to protect the agr… ""'", 'yunod',2337,967,0,0,0.25,0
590,Mon Jun 12 12:06:21 +0000 2017," '""RT @christopherhope: What is going on? Number 10 now suggesting the Queens Speech might be delayed. This is a Tory Coalition of Chaos.""'", 'lanai32',76,184,0,0,0.25,0
591,Mon Jun 12 12:06:21 +0000 2017," '""#Tories lie about everything! Much as I hate fox hunting id rather focus on how they STARVE CHILDREN. Thanks & all… https://t.co/QhFYKpugSN""'", 'KillingJokez',2441,2230,0,0,0.25,0
592,Mon Jun 12 12:06:21 +0000 2017," '""RT @DavidJo52951945: Jeremy Corbyns election result was a terrible result for Labour.Fewer seats than Kinnock 1992 & Callaghan 1979 & j… ""'", 'Makerel_Sky',435,266,0,0,0.25,0
593,Mon Jun 12 12:06:21 +0000 2017," '""@ianrobo @davru @cjlatimer16 @cadoret @AndyCavster @theredrag @Neiley83 New boundaries(if they get passed) wont he… https://t.co/BkwFEDQO6y""'", 'Mancman10',6330,6118,0,0,0.25,0
594,Mon Jun 12 12:06:21 +0000 2017," '""RT @kaitlinmball: Read about Northern Ireland from the Northern Irish. https://t.co/6xhAvOI7wa""'", 'CiaraSunflower',3,36,0,0,0.25,0
595,Mon Jun 12 12:06:21 +0000 2017," '""RT @pinkhiigh: But there isnt a magic money tree for NHS nurses. https://t.co/qrC9GOUn7G""'", 'KaylaCJenkins',6742,310,0,0,0.25,0
596,Mon Jun 12 12:06:21 +0000 2017," '""@freeradionews Just cant understand where your information is coming from! Jeremy Corbyn only last week on TV saying he would bring us out!""'", 'rnorth43',1222,1880,0,0,0.25,0
597,Mon Jun 12 12:06:21 +0000 2017," '""RT @MarkSkoda: Hypocrite Jeremy Corbyn says he Welcomes the Cancellation of President Trumps Visit to UK. #LondonHasFallen https://t.co/…""'", 'potterblebsx',298,565,0,0,0.25,0
598,Mon Jun 12 12:06:22 +0000 2017," '""@TelePolitics Does the Witch hunter general realise labour lost ... Still Marxist ..""'", 'SoulofHarmony',1580,1727,0,0,0.25,0
599,Mon Jun 12 12:06:22 +0000 2017," '""@Radix_UK @CarolineLucas It already happened! The #ProgressiveAlliance - Smart / Tactical Voting happened and helpe… https://t.co/H5gZaulP4F""'", 'renebach',385,566,0,0,0.25,0
600,Mon Jun 12 12:06:22 +0000 2017," '""RT @ChukaUmunna: Something to celebrate #ge2017 https://t.co/xxNxH1F5SF""'", '_ClaireGilbert',30,76,0,0,0.25,0
601,Mon Jun 12 12:06:22 +0000 2017," '""RT @YoungCharles000: @Back2Basixxx @stevenwinston6 @helkala @RTaylor_LibDem @mikegalsworthy Im Labour thru&thru so will try to pressure… ""'", 'RTaylor_LibDem',4432,360,0,0,0.25,0
602,Mon Jun 12 12:06:22 +0000 2017," '""@Independent @jeremycorbyn @UKLabour @EmmanuelMacron If this was a race JC gave Tories a 2 yr start and almost caug… https://t.co/23okPuCemz""'", 'ColeD0007',59,20,0,0,0.25,0
603,Mon Jun 12 12:06:22 +0000 2017," '""RT @Kevin_Maguire: Theresa Mays introduces her new Cabinet at PMQs after the DUP deal https://t.co/fI6Q7NcaPi""'", 'EliteMenEscorts',726,2577,0,0,0.25,0
604,Mon Jun 12 12:06:22 +0000 2017," '""RT @alicelxddell: Theresa May is a fucking scrambled beg on toast""'", 'Jorjars97',621,863,0,0,0.25,0
605,Mon Jun 12 12:06:22 +0000 2017," '""RT @HarrietHarman: Tory deal with DUP. Better no deal than a bad deal??""'", 'Vdweller',162,143,0,0,0.25,0
606,Mon Jun 12 12:06:22 +0000 2017," '""RT @Robert___Harris: Michael Gove on Theresa May: “I think she’s doing a fantastic job.” Shafts of exquisite comedy pierce the gloom https:…""'", 'LipskisGhost',383,987,0,0,0.25,0
607,Mon Jun 12 12:06:22 +0000 2017," '""How uncomfortable does Theresa May look....and this was before election!!\n#DUP #Disaster https://t.co/NaNhnzA1Re""'", 'dalkey04',194,198,0,0,0.25,0
608,Mon Jun 12 12:06:22 +0000 2017," '""RT @grahambbb: @AllyRoy18 @jonsnowC4 Here here. CH4 must and will highlight this disgraceful tory act.""'", 'GodHelpIreland',653,535,0,0,0.25,0
609,Mon Jun 12 12:06:22 +0000 2017," '""RT @EdwardTHardy: Theresa May sacked Michael Gove when she became PM. The fact that she has had to bring him back to the Cabinet shows how…""'", 'amcphaull',1378,1628,0,0,0.25,0
610,Mon Jun 12 12:06:22 +0000 2017," '""RT @wotomydoing: You would think that they learned from that hard lesson with Nick LIAR Clegg wouldnt you. https://t.co/A766ramhZn""'", 'mizibak12',300,164,0,0,0.25,0
611,Mon Jun 12 12:06:22 +0000 2017," '""@simon_brooke @KirstyStricklan @IBlackfordSNP Or at least radical which Labour can never be again. SNP cant be a c… https://t.co/bdxQiv7X5e""'", 'GerryMcGhee1',383,604,0,0,0.25,0
612,Mon Jun 12 12:06:23 +0000 2017," '""RT @LustforLo: nigga they disrespected you and they still got your coins. played yourself https://t.co/8QaQzl4Eji""'", 'BaileyBitess',774,609,0,0,0.25,0
613,Mon Jun 12 12:06:23 +0000 2017," '""RT @derasachasauda: #WorldDayAgainstChildLabour Child labour hinders children from blossoming & kill their aspirations to do something… ""'", 'urviinsan',1,13,0,0,0.25,0
614,Mon Jun 12 12:06:23 +0000 2017," '""RT @NameChangeGirl: Oh dear! Adam Boulton: What went wrong? Tory MP David Davis: The campaign went wrong. 😆https://t.co/GoiTjNCSfK #VoteLab…""'", 'oddjob14',23,76,0,0,0.25,0
615,Mon Jun 12 12:06:23 +0000 2017," '""RT @MarieAnnUK: *Tories Brexit Shambles* https://t.co/IvsQWvg46b""'", 'MissLauraMarcus',4676,3990,0,0,0.25,0
616,Mon Jun 12 12:06:23 +0000 2017," '""RT @Peter_Dowd: What is it with Theresa May and orange politicians? https://t.co/PHBz47vcAf""'", 'alisonwebster7',793,894,0,0,0.25,0
617,Mon Jun 12 12:06:24 +0000 2017," '""RT @JamieMeWrites: If Theresa May cant make the Queens Speech I know a guy wholl step in short notice. https://t.co/gdHYzKXJID""'", 'VirtuaMe',5799,3471,0,0,0.25,0
618,Mon Jun 12 12:06:24 +0000 2017," '""@JamesCleverly Theresa May delays Queens Speech as she grapples to lead minority government… https://t.co/HAitrXMA7y""'", 'CaptFlack',147,207,0,0,0.25,0
619,Mon Jun 12 12:06:24 +0000 2017," '""RT @pinkhiigh: But there isnt a magic money tree for NHS nurses. https://t.co/qrC9GOUn7G""'", 'gp9907',46,241,0,0,0.25,0
620,Mon Jun 12 12:06:24 +0000 2017," '""RT @Nezifah: Broke ass boi @torylanez bet u wont come to my crib and put 35 racks on my kitchen floor ol broke ass https://t.co/wZwNGUMVA1""'", 'IDGAFelicia',2401,1847,0,0,0.25,0
621,Mon Jun 12 12:06:24 +0000 2017," '""RT @umbyrella: WHAT HAPPENED TO THAT TORY #GE2017 https://t.co/iJIau1gs1y""'", 'umbyrella',2842,2582,0,0,0.25,0
622,Mon Jun 12 12:06:24 +0000 2017," '""@YvetteCooperMP Great idea. Labour should commit to same if theres another GE.""'", 'drypen21',261,867,0,0,0.25,0
623,Mon Jun 12 12:06:24 +0000 2017," '""Queens Speech *postponed*\nTory Manifesto *shredded*\nGove back on the scene. \nStrong and stable etc.""'", 'Renegade_Inc',19923,2910,0,0,0.25,0
624,Mon Jun 12 12:06:25 +0000 2017," '""@PFencesMusic @jiminlondon @KTHopkins @RaheemKassam No one is saying Labour won. But you cant deny that May came out the loser""'", 'TableAble',366,619,0,0,0.25,0
625,Mon Jun 12 12:06:25 +0000 2017," '""Philip Davies holds his seat as he says the Tories have made a pigs ear of the national campaign https://t.co/d2P3J90a7g #telegraph #ne…""'", 'worldnews_net',6594,1569,0,0,0.25,0
626,Mon Jun 12 12:06:25 +0000 2017," '""RT @lucyybarnes: risky activities help you in later life\ntheresa may:\n\n#aqaenglish https://t.co/sVgOa7bBht""'", 'amberchloe4',254,336,0,0,0.25,0
627,Mon Jun 12 12:06:25 +0000 2017," '""RT @old_pyjamas: Gerry Adams: We do not think any DUP deal with the English Tories will be good for people here...and must be opposed by p…""'", 'redgraeme',640,718,0,0,0.25,0
628,Mon Jun 12 12:06:25 +0000 2017," '""Who is Theresa May’s new chief of staff Gavin Barwell? https://t.co/r0DX7aNaj2 #telegraph #news""'", 'worldnews_net',6594,1569,0,0,0.25,0
629,Mon Jun 12 12:06:25 +0000 2017," '""RT @JeremyCorbyn4PM: Lots of young voters celebrated Labours election performance at a rave in Liverpool on Friday night https://t.co/F66s…""'", 'catheri82106796',26,34,0,0,0.25,0
630,Mon Jun 12 12:06:25 +0000 2017," '""RT @paul__johnson: So:\n-Queens Speech may be delayed\n-Brexit talks may be delayed\n#gettingonwithgoverning\n\nhttps://t.co/JGBcgXpGR2""'", 'Concorde004',876,1294,0,0,0.25,0
631,Mon Jun 12 12:06:25 +0000 2017," '""RT @GreekAnalyst: Theresa May negotiating with the EU over Brexit after the UK election. https://t.co/qEViaPhaY7""'", 'galway89',403,722,0,0,0.25,0
632,Mon Jun 12 12:06:25 +0000 2017," '""RT @allan3_marshall: Schoolyard stuff from desperate gormless Lefties. Not surprising when you consider majority of Labour voters have o… ""'", 'RobertSimpson76',8659,8317,0,0,0.25,0
633,Mon Jun 12 12:06:25 +0000 2017," '""RT @Sinclelz: Hard to think of much to say to this sort of crap but: we told you so https://t.co/IIfiBAz5kv""'", 'piercepenniless',13214,1634,0,0,0.25,0
634,Mon Jun 12 12:06:26 +0000 2017," '""RT @BeardedGenius: Hahahahahahahahaha! Do they seriously think people will fall for this desperate PR stunt?! https://t.co/r4VB6yR2Qt""'", 'kaaatiexlouise',1642,1050,0,0,0.25,0
635,Mon Jun 12 12:06:25 +0000 2017," '""RT @Harryslaststand: There is now talk that Theresa May will delay both #brexit talks & the Queens speech which indicates the Tories aren…""'", 'memphis3577',25,58,0,0,0.25,0
636,Mon Jun 12 12:06:26 +0000 2017," '""RT @dtaylor5633: That would be 2 days in a row the Tories in Scotland have gone into hiding\n\nWell done the electorate voting for una… ""'", 'lauramarsh70',4175,4981,0,0,0.25,0
637,Mon Jun 12 12:06:26 +0000 2017," '""RT @trevdick: Big responsibility for the #libdems as #Labour climbs into bed with Tories on hard brexit contrary to the wishes of millions.""'", 'retireenjoy',1048,1752,0,0,0.25,0
638,Mon Jun 12 12:06:26 +0000 2017," '""Fucking shambles. Queens Speech delayed as Tories work on DUP deal https://t.co/bXxWdBYNTr https://t.co/X8Y92g0Jl8""'", 'Snafflepuss',2367,996,0,0,0.25,0
639,Mon Jun 12 12:06:26 +0000 2017," '""RT @WFTOEurope: #WorldDayAgainstChildLabour 2017: #FairTrade’s Principle Against Child Labour: https://t.co/0e7vNxX0hD https://t.co/noLdPUc…""'", 'JoseBerliner',1059,1047,0,0,0.25,0
640,Mon Jun 12 12:06:26 +0000 2017," '""Why would Labour fear losing a confidence vote.?? https://t.co/IFFvAE73eG""'", 'peter_chave',691,1656,0,0,0.25,0
641,Mon Jun 12 12:06:26 +0000 2017," '""RT @davidallengreen: My thread on Theresa May being the Brexiteers biggest problem all along. https://t.co/j8AJN7IOkj""'", 'erikathomas_me2',328,298,0,0,0.25,0
642,Mon Jun 12 12:06:26 +0000 2017," '""RT @FAOclimate: #WorldDayAgainstChildLabour is dedicated to the impact of conflicts & disasters on child labour. #webcast 11CET… ""'", 'HughGrand',152,143,0,0,0.25,0
643,Mon Jun 12 12:06:26 +0000 2017," '""RT @MarkSkoda: Hypocrite Jeremy Corbyn says he Welcomes the Cancellation of President Trumps Visit to UK. #LondonHasFallen https://t.co/…""'", 'FalsanOneLove',277,115,0,0,0.25,0
644,Mon Jun 12 12:06:26 +0000 2017," '""RT @J_Manasa: Theresa May still hasnt resigned yet? https://t.co/In0QFqSAcQ""'", 'abbienaomi',621,591,0,0,0.25,0
645,Mon Jun 12 12:06:26 +0000 2017," '""RT @JonAshworth: Theresa Mays weak and unstable government forced to delay Queens Speech. What a shambles https://t.co/1K7vBS48zr""'", 'nbnikkibarton',304,589,0,0,0.25,0
646,Mon Jun 12 12:06:26 +0000 2017," '""RT @lapetitepie: Is Theresa May delaying the Queens Speech to give her a few more days to reanimate Hitler and Franco for the cabinet?""'", 'simon_brooke',1449,461,0,0,0.25,0
647,Mon Jun 12 12:06:27 +0000 2017," '""RT @MarkSkoda: Hypocrite Jeremy Corbyn says he Welcomes the Cancellation of President Trumps Visit to UK. #LondonHasFallen https://t.co/…""'", 'gajaimjga',261,131,0,0,0.25,0
648,Mon Jun 12 12:06:26 +0000 2017," '""When will @George_Osborne take his huge salary & rename personal publicity rag The Bitter Standard #EveningStandard https://t.co/OliTJiSsG9""'", '_cxxii',209,884,0,0,0.25,0
649,Mon Jun 12 12:06:27 +0000 2017," '""RT @Glinner: No magic money tree. https://t.co/iO0i1OPl8F""'", 'imogenmays',249,463,0,0,0.25,0
650,Mon Jun 12 12:06:27 +0000 2017," '""RT @derasachasauda: #WorldDayAgainstChildLabour Child labour hinders children from blossoming & kill their aspirations to do something… ""'", 'JatinInsan16',1,5,0,0,0.25,0
651,Mon Jun 12 12:06:27 +0000 2017," '""RT @GuidoFawkes: McDonnell Said Corbyn Would Have to Resign If Labour Lost. Labour Lost. #Awkward https://t.co/RDMZL1KJx0""'", 'jtb_1111',785,680,0,0,0.25,0
652,Mon Jun 12 12:06:27 +0000 2017," '""@hollieashe_ A point in every direction at once is the same as no direction at all...(Tory Manifesto)""'", 'beachcomberbean',83,281,0,0,0.25,0
653,Mon Jun 12 12:06:27 +0000 2017," '""RT @xraypat: @scotrefscotref @JmJohnpj @RuthDavidsonMSP 😂😂😂😂😂😂Oh Ruthie....what did you expect? Yr a Tory you know how nasty & d… ""'", 'rik_big',229,260,0,0,0.25,0
654,Mon Jun 12 12:06:27 +0000 2017," '""RT @MarkSkoda: Hypocrite Jeremy Corbyn says he Welcomes the Cancellation of President Trumps Visit to UK. #LondonHasFallen https://t.co/…""'", 'georglafishwick',287,221,0,0,0.25,0
655,Mon Jun 12 12:06:27 +0000 2017," '""RT @Paul_Farmer: Chickens. Roost. Coming home to. That sort of thing. #StrongAndStable https://t.co/nf46Usofe4""'", 'kernow4corbyn',1385,189,0,0,0.25,0
656,Mon Jun 12 12:06:28 +0000 2017," '""@IanDunt Clearly Donald J Trump doesnt want to be associated in any way with an incompetent buffoon such as Theresa May.""'", 'PaoloBrennan',295,231,0,0,0.25,0
657,Mon Jun 12 12:06:28 +0000 2017," '""RT @daverussell: What a complete and utter farce! The world must be laughing at the Tories trying to cling to power at all costs! C… ""'", 'fergusonkeith',2917,2764,0,0,0.25,0
658,Mon Jun 12 12:06:28 +0000 2017," '""Corbyn stuck two fingers up at his critics and changed politics for good Aditya Chakrabortty https://t.co/p5FonXDE9m Ontario June election?""'", 'DeenaLadd',1511,631,0,0,0.25,0
659,Mon Jun 12 12:06:28 +0000 2017," '""RT @pollypreston: Tories ditch manifesto before the Queens Speech https://t.co/jz496SU9vo""'", 'iandavidjones21',990,1355,0,0,0.25,0
660,Mon Jun 12 12:06:28 +0000 2017," '""So the DUP/Tories have delayed the Queens Speech a few days. Surely they cant move the heaven and the earth in that time?""'", 'jamesradams',2461,863,0,0,0.25,0
661,Mon Jun 12 12:06:28 +0000 2017," '""RT @BongaDlulane: #HlaudiMotsoenengs disciplinary hearing to forge ahead tonight after Labour Court dismissed interdict application to hal…""'", 'Lwazistos',1893,958,0,0,0.25,0
662,Mon Jun 12 12:06:28 +0000 2017," '""RT @Hepworthclare: Queens Speech *postponed*\nTory Manifesto *shredded*\nNobody has CLUE about what is going on !\nBut HEY - DUP will bail yo…""'", 'deBauch',435,295,0,0,0.25,0
663,Mon Jun 12 12:06:28 +0000 2017," '""Theresa Mays Queens speech delayed as talks with DUP continue #Tories #Election""'", 'abshiresmith',1477,1112,0,0,0.25,0
664,Mon Jun 12 12:06:28 +0000 2017," '""RT @PeterStefanovi2: Theresa May appoints anti-LGBT justice secretary with appalling gay rights voting record during DUP talks https://t.co…""'", 'ImALittleLoud',41,92,0,0,0.25,0
665,Mon Jun 12 12:06:29 +0000 2017," '""Theresa May no doubt is the person to take us out of the EU but should she do it as PM? #LBC #Brexit""'", 'EmilShostak',1010,60,0,0,0.25,0
666,Mon Jun 12 12:06:29 +0000 2017," '""Tory wasnt punishing the store he was punishing that white dude getting no commission...""'", 'CoYneToss',440,560,0,0,0.25,0
667,Mon Jun 12 12:06:29 +0000 2017," '""RT @LustforLo: nigga they disrespected you and they still got your coins. played yourself https://t.co/8QaQzl4Eji""'", 'CuzinSam',3075,407,0,0,0.25,0
668,Mon Jun 12 12:06:30 +0000 2017," '""RT @Hepworthclare: Queens Speech *postponed*\nTory Manifesto *shredded*\nNobody has CLUE about what is going on !\nBut HEY - DUP will bail yo…""'", 'dennyphemmy',335,366,0,0,0.25,0
669,Mon Jun 12 12:06:30 +0000 2017," '""RT @RichardBurgon: Introducing Gavin Barwell - Theresa Mays new Chief of Staff...... https://t.co/cTglG6RXKl""'", 'TheCampaignClub',1221,321,0,0,0.25,0
670,Mon Jun 12 12:06:30 +0000 2017," '""RT @garwboy: Labour are red\nTories are blue\nNigel Farage is a stain on the underpants of humanity\nThis started like a poem but I got distra…""'", 'thomas_foraenos',43,82,0,0,0.25,0
671,Mon Jun 12 12:06:30 +0000 2017," '""RT @Xhakaed: And the internet came up with anti-Theresa May memes for free lmaoooo what an L https://t.co/e0ZlHcSRzo""'", 'luciemelsomx',2538,815,0,0,0.25,0
672,Mon Jun 12 12:06:30 +0000 2017," '""RT @Tricky_1: #bbcdp\n\nGrant Schnapps who resigned from the Tories amid youth bullying says the Tories have a problem with young voters.\n\nD…""'", 'janis_henderson',725,1014,0,0,0.25,0
673,Mon Jun 12 12:06:30 +0000 2017," '""RT @Xhakaed: And the internet came up with anti-Theresa May memes for free lmaoooo what an L https://t.co/e0ZlHcSRzo""'", '__elliemaria',3999,96,0,0,0.25,0
674,Mon Jun 12 12:06:30 +0000 2017," '""RT @saskilla: JUS GOT A TEXT FROM JEREMY CORBYN HE SHOPS IN LIDL\nSO SHUTTTTT YOUR MOUTHHHHHH\n\n 😂""'", 'umarnurgat',303,255,0,0,0.25,0
675,Mon Jun 12 12:06:30 +0000 2017," '""@GHCHILL @Alichat66 @Bird60Carole @lambandflag99 @SallyPresto @AlexRJMurray @LeeXMartin @simplysimontfa @EwanLawry… https://t.co/p1GaJUVH7s""'", 'bootneckrecce',590,421,0,0,0.25,0
676,Mon Jun 12 12:06:29 +0000 2017," '""Jacqueline Mugo @FKEKenya talking about employers initiatives to protect children from worst forms of child labour… https://t.co/9D4lKGsiWc""'", 'ILO_Childlabour',19509,341,0,0,0.25,0
677,Mon Jun 12 12:06:31 +0000 2017," '""@HarryCotterell @ClareFoges @thetimes He didnt prioritize anything. Everything is an equal and important issue! Th… https://t.co/R16yIy5dL2""'", 'Umad_Brasiek',283,1730,0,0,0.25,0
678,Mon Jun 12 12:06:31 +0000 2017," '""RT @YvetteCooperMP: TMay cant carry on as if election never happened. Need cross party commission to negotiate Brexit not Tory cabal https…""'", 'RodNicholl1',508,474,0,0,0.25,0
679,Mon Jun 12 12:06:31 +0000 2017," '""RT @johnmcdonnellMP: Lets invite all those who supported our ideas in this election to join our party and build a million member party htt…""'", 'ftmsuperfly',394,1292,0,0,0.25,0
680,Mon Jun 12 12:06:30 +0000 2017," '""In conflicts & crisis we must protect children from child labour says @beateandrees https://t.co/7hhSTJAuAR""'", 'ILO_Childlabour',19509,341,0,0,0.25,0
681,Mon Jun 12 12:06:31 +0000 2017," '""General election 2017: May to face Tory backbench critics. Told you she couldnt organise a piss up in a brewery. https://t.co/T5bSyQEcXl""'", 'JohnCaveney1',161,87,0,0,0.25,0
682,Mon Jun 12 12:06:31 +0000 2017," '""@BBCRadio2 Ha! So this is the hot take from what happened. Lord Ashcrofts figures suggest the Labour vote is sprea… https://t.co/mJWFJO8CQS""'", 'SuzDowson73',124,338,0,0,0.25,0
683,Mon Jun 12 12:06:31 +0000 2017," '""RT @i400s: @OwenJones84 And they are all continuing to insult the younger generation post #GE2017. Utterly clueless: https://t.co/uG9MbyQci7""'", 's9tmt',3916,826,0,0,0.25,0
684,Mon Jun 12 12:06:31 +0000 2017," '""RT @NHSMillion: Jeremy Hunt has just been re-appointed as Health Secretary by Theresa May - pls RT if you agree it is an utter disg… ""'", 'nellyho',16,129,0,0,0.25,0
685,Mon Jun 12 12:06:32 +0000 2017," '""Queens Speech delayed as Tories work on DUP deal https://t.co/J4OUux2bpK via @MetroUK""'", 'Taokaffo',71,189,0,0,0.25,0
686,Mon Jun 12 12:06:32 +0000 2017," '""RT @make_trouble: Labour vote correlates almost exactly with increased private rental rates in London which are set to reach 60% by 2… ""'", 'Delna_42',1268,635,0,0,0.25,0
687,Mon Jun 12 12:06:31 +0000 2017," '""RT @Robert___Harris: Charlatan. Fraud. Mountebank. Dissembler. Cad. Mythomaniac. Twister. Rogue. Humbug. Hypocrite. Boaster. Bluffer. Co… ""'", 'rhiannonethomas',1099,919,0,0,0.25,0
688,Mon Jun 12 12:06:32 +0000 2017," '""RT @StFilansDream: Aberdeen Tory breaks bad news to Aberdeen Tories #fishing #farming https://t.co/vfJbBcGiVI""'", 'Margaret_JT',87,162,0,0,0.25,0
689,Mon Jun 12 12:06:32 +0000 2017," '""RT @HarrietHarman: Tory deal with DUP. Better no deal than a bad deal??""'", 'jillbed',257,320,0,0,0.25,0
690,Mon Jun 12 12:06:32 +0000 2017," '""RT @jdportes: This explains why No deal better than bad deal line weakens UK negotiating position & makes no deal more likely… ""'", 'mustwinfull',126,689,0,0,0.25,0
691,Mon Jun 12 12:06:32 +0000 2017," '""RT @DavidJo52951945: Jeremy Corbyns election result was a terrible result for Labour.Fewer seats than Kinnock 1992 & Callaghan 1979 & j… ""'", 'abacusnemo',1066,53,0,0,0.25,0
692,Mon Jun 12 12:06:33 +0000 2017," '""RT @dats: .@PeoplesMomentum were tirelessly mocked. No-ones laughing at them anymore https://t.co/gGiymRpEEx""'", 'charlottethomp5',233,185,0,0,0.25,0
693,Mon Jun 12 12:06:33 +0000 2017," '""RT @jdportes: This explains why No deal better than bad deal line weakens UK negotiating position & makes no deal more likely… ""'", 'PerryJScott',1119,861,0,0,0.25,0
694,Mon Jun 12 12:06:33 +0000 2017," '""The backbench grilling comes as May seeks to overhaul some of her manifesto pledges>https://t.co/6wOKJZ4i8E""'", 'oohincensed',4011,2810,0,0,0.25,0
695,Mon Jun 12 12:06:33 +0000 2017," '""RT @MatthewBevan: John Oliver flew the real Lord Buckethead to NYC to pitch him as a Brexit negotiator for Theresa May. https://t.co/8eNR7a…""'", 'CanetheSutter',552,455,0,0,0.25,0
696,Mon Jun 12 12:06:33 +0000 2017," '""RT @MatthewGreen02: I need a mandate for hard Brexit says May\nNo mandate says electorate.\nI have no other setting says Maybot\nhttps://t…""'", 'RuralGurn',2132,2968,0,0,0.25,0
697,Mon Jun 12 12:06:33 +0000 2017," '""RT @SiLenT__HeartT: @Gurmeetramrahim Ji DrMSG\nWe take pledge to eradicate Child Labour #WorldDayAgainstChildLabour #StopChildLabour""'", 'groverinsan9',50,40,0,0,0.25,0
698,Mon Jun 12 12:06:33 +0000 2017," '""Poor Tories.\n\n https://t.co/f5AsI556jo""'", '3BlockM',2782,2927,0,0,0.25,0
699,Mon Jun 12 12:06:33 +0000 2017," '""RT @Rachael_Swindon: Jeremy Corbyn is preparing Labours own Queens Speech to form government if (when) Theresa May fails.… ""'", 'u3akfd7f',1143,1244,0,0,0.25,0
700,Mon Jun 12 12:06:33 +0000 2017," '""RT @lucyybarnes: risky activities help you in later life\ntheresa may:\n\n#aqaenglish https://t.co/sVgOa7bBht""'", 'ellanewtonxo',13,33,0,0,0.25,0
701,Mon Jun 12 12:06:33 +0000 2017," '""RT @YvetteCooperMP: TMay cant carry on as if election never happened. Need cross party commission to negotiate Brexit not Tory cabal https…""'", 'Chrisreddevil20',175,472,0,0,0.25,0
702,Mon Jun 12 12:06:33 +0000 2017," '""RT @derasachasauda: #WorldDayAgainstChildLabour Child labour hinders children from blossoming & kill their aspirations to do something… ""'", 'chikukitkat',73,84,0,0,0.25,0
703,Mon Jun 12 12:06:33 +0000 2017," '""RT @CarolineLucas: Beggars belief. One look at Gove’s voting record shows him unfit for this job: https://t.co/IIzaJRek8I https://t.co/TzIx…""'", 'SheronWilkie',1318,2841,0,0,0.25,0
704,Mon Jun 12 12:06:33 +0000 2017," '""With target 8.7 the international community has reaffirmed its commitment to end child labour #Achieve87 https://t.co/UpaF7ZsPDJ""'", 'ILO_Childlabour',19509,341,0,0,0.25,0
705,Mon Jun 12 12:06:33 +0000 2017," '""Today we are facing the greatest refugee crisis for decades. Child refugees & migrants are especially vulnerable to… https://t.co/p3BUbBuNfW""'", 'ILO_Childlabour',19509,341,0,0,0.25,0
706,Mon Jun 12 12:06:34 +0000 2017," '""RT @MarkSkoda: Hypocrite Jeremy Corbyn says he Welcomes the Cancellation of President Trumps Visit to UK. #LondonHasFallen https://t.co/…""'", 'boociare',229,78,0,0,0.25,0
707,Mon Jun 12 12:06:34 +0000 2017," '""RT @theresaresigned: Shit On My Butt And Call Me Alastair Campbell Its 11:00AM And Theresa May Has Not Resigned Yet""'", 'semper_femina',597,512,0,0,0.25,0
708,Mon Jun 12 12:06:33 +0000 2017," '""A few minutes before start of the World Day Against Child Labour event in Geneva #ILC2017 https://t.co/ObxsX4fACx""'", 'ILO_Childlabour',19509,341,0,0,0.25,0
709,Mon Jun 12 12:06:34 +0000 2017," '""RT @MatthewBevan: John Oliver flew the real Lord Buckethead to NYC to pitch him as a Brexit negotiator for Theresa May. https://t.co/8eNR7a…""'", 'lafatimayette',1088,2298,0,0,0.25,0
710,Mon Jun 12 12:06:34 +0000 2017," '""RT @derasachasauda: #WorldDayAgainstChildLabour Child labour hinders children from blossoming & kill their aspirations to do something… ""'", 'NAVEENINSAN143',490,3,0,0,0.25,0
711,Mon Jun 12 12:06:34 +0000 2017," '""RT @Labour4Animals: LOVE IT! Gerald Scarfe 🐺 Corbyns FOX ps on Theresa May #KeepTheBan 🐾 Prints available @Cartoon4sale… ""'", 'Oatcake1967',5449,5103,0,0,0.25,0
712,Mon Jun 12 12:06:35 +0000 2017," '""Opportunity Knocks for Labour... publish ther own #queensspeech on schedule - just to make the Tories look even more useless.""'", 'TheVallog',35,214,0,0,0.25,0
713,Mon Jun 12 12:06:35 +0000 2017," '""RT @D_Raval: So many stars on Labours front bench but Barry Gardiners been a knockout. Has ANY senior Tory had a good campaign? https://t…""'", 'martinolsson7',5669,4865,0,0,0.25,0
714,Mon Jun 12 12:06:35 +0000 2017," '""RT @neeratanden: @libbycwatson any thoughts on what Dems should learn from this? Both this and Labour surge were surprising success… ""'", 'patrioticmomusa',511,2345,0,0,0.25,0
715,Mon Jun 12 12:06:35 +0000 2017," '""RT @MarkSkoda: Hypocrite Jeremy Corbyn says he Welcomes the Cancellation of President Trumps Visit to UK. #LondonHasFallen https://t.co/…""'", 'luxewedding8277',215,272,0,0,0.25,0
716,Mon Jun 12 12:06:35 +0000 2017," '""RT @seantduffy: Dont underestimate the Tory tendency towards caution. Theyll battle through a DUP upheld government for years rather than…""'", 'hartshorne133',120,283,0,0,0.25,0
717,Mon Jun 12 12:06:35 +0000 2017," '""RT @paulwaugh: Remember Mays Coalition of chaos attack on Labour? Now Queens Speech/Brexit talks delayed as DUP deal unresolved https:/…""'", 'fatimamanji',28879,1257,0,0,0.25,0
718,Mon Jun 12 12:06:35 +0000 2017," '""RT @AkwugoEmejulu: This is colonisation masquerading as feminist solidarity that demands emotional labour for those women who do material…""'", 'shell568',1000,532,0,0,0.25,0
719,Mon Jun 12 12:06:35 +0000 2017," '""RT @campbellclaret: I suspect some of the young people voting Labour and voting for the first time were hoping for something a bit less Bre…""'", 'DrewEaster',374,188,0,0,0.25,0
720,Mon Jun 12 12:06:35 +0000 2017," '""RT @MichaelLCrick: Tom Watson has written to Theresa May asking whether Rupert Murdoch ever suggested to you Michael Gove should be given…""'", 'damilne1',1611,3032,0,0,0.25,0
721,Mon Jun 12 12:06:35 +0000 2017," '""RT @MediaTMO: Labour Court dismisses #HlaudiMotsoeneng application to interdict disciplinary hearing. The process will continue today from…""'", 'Lwazistos',1893,958,0,0,0.25,0
722,Mon Jun 12 12:06:35 +0000 2017," '""RT @CBCAlerts: Top 2 aides to British PM Theresa May quit after her Conservative Party failed to win a majority in June 8 general election.""'", 'sarahpineiros',37,185,0,0,0.25,0
723,Mon Jun 12 12:06:35 +0000 2017," '""RT @DavidJo52951945: RT Remainer Tories & Labour are already plotting a soft watered down brexit.Only 1 person will fight them & fight f… ""'", 'Julie34479',991,308,0,0,0.25,0
724,Mon Jun 12 12:06:35 +0000 2017," '""RT @DeborahTheaker: @jonsnowC4 Mo Mowlam was my MP. Cant tell you how sad I am to see the damage the tories are doing to all the hard… ""'", 'GodHelpIreland',653,535,0,0,0.25,0
725,Mon Jun 12 12:06:35 +0000 2017," '""RT @andrejpwalker: Labour: You cant pretend to be horrified by Tory deal with the DUP if you happily voted for a Labour leader who wa… ""'", 'gerry_dorrian',83,470,0,0,0.25,0
726,Mon Jun 12 12:06:36 +0000 2017," '""RT @Konnie_Huq: The same Arlene Foster who met UDA 2 weeks ago days after theyd shot and killed a man in front of his 3 year old i… ""'", 'taliastokes',161,401,0,0,0.25,0
727,Mon Jun 12 12:06:36 +0000 2017," '""RT @NicolaSturgeon: There must be full public disclosure of terms of any proposed Tory deal with DUP - before it is signed and sealed. http…""'", 'ActualHalfwen',463,2001,0,0,0.25,0
728,Mon Jun 12 12:06:36 +0000 2017," '""RT @NicolaSturgeon: Off to London today to meet with @theSNP MPs as they prepare to get to work standing up for Scotland. #GE2017""'", 'Casper10666',1036,525,0,0,0.25,0
729,Mon Jun 12 12:06:36 +0000 2017," '""RT @GMBCouncillors: 6 nasty Tory policies Theresa May could be forced to ditch https://t.co/XQWEMCpWYb""'", 'Goolie6',694,611,0,0,0.25,0
730,Mon Jun 12 12:06:36 +0000 2017," '""RT @pinkhiigh: But there isnt a magic money tree for NHS nurses. https://t.co/qrC9GOUn7G""'", 'Izzie_Milford',353,1437,0,0,0.25,0
731,Mon Jun 12 12:06:36 +0000 2017," '""RT @EuroGuido: This morning @BarryGardiner said no we wont definitely leave the single market.\n\n5 hours later he says we will.… ""'", 'WillyGreyBin',3854,3841,0,0,0.25,0
732,Mon Jun 12 12:06:36 +0000 2017," '""Queens Speech And Brexit Talks Facing Delay As Theresa May Scrambles To Do Deal With DUP https://t.co/iBXp2vgqlQ https://t.co/GWlfXBaG77""'", 'HuffPostUKPol',49439,1166,0,0,0.25,0
733,Mon Jun 12 12:06:36 +0000 2017," '""RT @D_Raval: So many stars on Labours front bench but Barry Gardiners been a knockout. Has ANY senior Tory had a good campaign? https://t…""'", 'KastratiMet',193,907,0,0,0.25,0
734,Mon Jun 12 12:06:36 +0000 2017," '""RT @HichamYezza: Corbyn didnt take Labour past what Gordon Brown got in 2010 says Chris Grayling. Corbyn got 10% and 4 million votes mor…""'", 'Bexmo',805,1413,0,0,0.25,0
735,Mon Jun 12 12:06:37 +0000 2017," '""RT @acicconeyouth: This Police community accounts tweet just threw perfect shade on Theresa May #mondaymotivation #ToriesOut https://t.co/…""'", 'Sheryl28968767',310,153,0,0,0.25,0
736,Mon Jun 12 12:06:37 +0000 2017," '""RT @PeterStefanovi2: Corbyn is on standby as Tories lurch deeper into crisis https://t.co/HA8686FoxY""'", 'TootseSzabo',80,109,0,0,0.25,0
737,Mon Jun 12 12:06:37 +0000 2017," '""RT @SamRussellPA: The reaction of Labours Clive Lewis as he learned hed held Norwich South #Election2017 https://t.co/LWTbMcxLbX""'", 'BikoDjango',3971,3643,0,0,0.25,0
738,Mon Jun 12 12:06:37 +0000 2017," '""RT @rachshabi: Corbyn revived the Labour party by tacking left. Amazing how so many of those who got everything wrong still refuse to ackno…""'", 'non_bona_dicta',783,162,0,0,0.25,0
739,Mon Jun 12 12:06:37 +0000 2017," '""@Independent Hey Tories - strong/stable majority if Scotland independent..\n\nAnyway\n\nRuth dont let Westminster bast… https://t.co/h5kbLUuV3H""'", 'ReturnOfTheRon',321,193,0,0,0.25,0
740,Mon Jun 12 12:06:37 +0000 2017," '""RT @MarieAnnUK: *Tories Brexit Shambles* https://t.co/IvsQWvg46b""'", 'JHinkley24',339,307,0,0,0.25,0
741,Mon Jun 12 12:06:37 +0000 2017," '""RT @Harryslaststand: Its no small thing when a government cant deliver its #queensspeech on time as it indicates crisis within the hall…""'", 'allyska',1650,2591,0,0,0.25,0
742,Mon Jun 12 12:06:38 +0000 2017," '""RT @RightNewsUK: Voter fraud is too easy especially with students... this why Labour did so well! https://t.co/c4EVGLBGY0""'", 'ronsturgeon1',151,372,0,0,0.25,0
743,Mon Jun 12 12:06:38 +0000 2017," '""RT @ArifAlvi: Jeremy Corbyn in a Rickshaw in Karachi in 2006. Photo by Foqia Khan and sitting in the back is Naila Hussain https://t.co/f6H…""'", 'rukhsarahmed786',1667,1987,0,0,0.25,0
744,Mon Jun 12 12:06:38 +0000 2017," '""RT @toadmeister: @JeremyCliffe Macrons party polled 32% of popular vote = riding high. Theresa Mays polled 42.5% = laughing stock. Funny…""'", 'matei_clej',100,279,0,0,0.25,0
745,Mon Jun 12 12:06:38 +0000 2017," '""RT @daveburns422: Panicking Theresa May could delay Queens speech\n\nhttps://t.co/mn7CrKy3Uj Strong and Stable hahaha\nthe only people who do…""'", 'maureen18132',1747,1926,0,0,0.25,0
746,Mon Jun 12 12:06:38 +0000 2017," '""RT @Independent: Hundreds descend on Parliament to protest Theresa Mays DUP deal https://t.co/brwR2wdVgC https://t.co/W84GBpzdrj""'", 'DawnW2605',617,1727,0,0,0.25,0
747,Mon Jun 12 12:06:38 +0000 2017," '""@SkyNewsBreak They are desperately reading through Labours manifesto to see what they can pinch.""'", 'simon_hawketts',65,127,0,0,0.25,0
748,Mon Jun 12 12:06:38 +0000 2017," '""I wont believe @BorisJohnson ISNT running to replace May as Tory leader til I see it on the side of a big red bus😂😂""'", '54Beats44',10091,9112,0,0,0.25,0
749,Mon Jun 12 12:06:38 +0000 2017," '""RT @Hepworthclare: Queens Speech *postponed*\nTory Manifesto *shredded*\nNobody has CLUE about what is going on !\nBut HEY - DUP will bail yo…""'", 'sa_jiya',582,922,0,0,0.25,0
750,Mon Jun 12 12:06:38 +0000 2017," '""RT @OMG_ItsKhairy: So basically he gave 35k of his own money to white people caus ethey thought he was broke? \n\nNiggas stupid https://t.co/…""'", 'mR_jAY_q',843,756,0,0,0.25,0
751,Mon Jun 12 12:06:39 +0000 2017," '""The world smiles at us (Berger) https://t.co/XGfkpRbCOB""'", 'geraldi23591291',3420,4997,0,0,0.25,0
752,Mon Jun 12 12:06:39 +0000 2017," '""Parallels here in Hall Green constituency. Erdington: In the end I could not vote Tory https://t.co/OfWefGB1FP""'", 'robkewley77',563,950,0,0,0.25,0
753,Mon Jun 12 12:06:39 +0000 2017," '""RT @WingsScotland: The jaw-dropping extent to which the Lib Dems are now the Scottish Tories bitches is going to *blow your mind*: https:/…""'", 'JohnnyDundee',2050,86,0,0,0.25,0
754,Mon Jun 12 12:06:39 +0000 2017," '""RT @Labour4Animals: LOVE IT! Gerald Scarfe 🐺 Corbyns FOX ps on Theresa May #KeepTheBan 🐾 Prints available @Cartoon4sale… ""'", 'janie4748',64,97,0,0,0.25,0
755,Mon Jun 12 12:06:39 +0000 2017," '""RT @tnewtondunn: Mays support fox hunting IDd by Tory campaign chiefs as one of poll disasters causes - fuelled retoxification;\nhttps://…""'", 'pigreen',3532,627,0,0,0.25,0
756,Mon Jun 12 12:06:39 +0000 2017," '""RT @ajcdeane: 2005: Tories lost 3rd election in row. Howard gained 33 seats. Resigned.\n2017: Labour loses 3rd election in row. Corbyn gaine…""'", 'brishank',35,122,0,0,0.25,0
757,Mon Jun 12 12:06:39 +0000 2017," '""RT @Xhakaed: And the internet came up with anti-Theresa May memes for free lmaoooo what an L https://t.co/e0ZlHcSRzo""'", 'hypn0tical',1136,520,0,0,0.25,0
758,Mon Jun 12 12:06:39 +0000 2017," '""#EDL thugs stretch already cut police resources by #Tories needed to hunt down #extremist thugs. Youre all menace… https://t.co/la9qlc2GRw""'", 'ImahmedC',238,229,0,0,0.25,0
759,Mon Jun 12 12:06:39 +0000 2017," '""@RealMarkDexter @LFdSP2017 Yes. Theresa May has clearly been very clearly clear about this. Clear.""'", 'Corbyntruthgen1',491,853,0,0,0.25,0
760,Mon Jun 12 12:06:39 +0000 2017," '""RT @Patsfolkestone: Appointing Gove & Re-appointing Hunt is her way of sticking two fingers up at electorate for having the temerity no… ""'", 'corbs536',1222,2194,0,0,0.25,0
761,Mon Jun 12 12:06:39 +0000 2017," '""RT @robn1980: 🎥 | This is important to bear in mind post-#GE2017; @CenkUygur: Everybody on television is pre-selected to maintai… ""'", 'PaulButler01',196,114,0,0,0.25,0
762,Mon Jun 12 12:06:40 +0000 2017," '""RT @ChristianJMay: Labour understandably enjoying a couple of days in the sun but the bottom line is that they were defeated. Corbyn l… ""'", 'toryVal',340,257,0,0,0.25,0
763,Mon Jun 12 12:06:40 +0000 2017," '""RT @Hepworthclare: Queens Speech *postponed*\nTory Manifesto *shredded*\nNobody has CLUE about what is going on !\nBut HEY - DUP will bail yo…""'", 'cmarslett',2232,2548,0,0,0.25,0
764,Mon Jun 12 12:06:40 +0000 2017," '""RT @MarkSkoda: Hypocrite Jeremy Corbyn says he Welcomes the Cancellation of President Trumps Visit to UK. #LondonHasFallen https://t.co/…""'", 'glngersoull',357,112,0,0,0.25,0
765,Mon Jun 12 12:06:40 +0000 2017," '""@JeremyCorbyn4PM more people voted for her......than Jezza #corbyn #labour""'", 'wilberxxx111',75,54,0,0,0.25,0
766,Mon Jun 12 12:06:40 +0000 2017," '""RT @reginalddhunter: The Book of Jeremy Corbyn. A fine tickle https://t.co/flBxVSJK9R via @newyorker""'", 'janisb33',116,408,0,0,0.25,0
767,Mon Jun 12 12:06:40 +0000 2017," '""RT @JohnHealey_MP: Tories claim housing is a priority but four days on still no housing minister. Labour would be setting up a new Housing…""'", 'CalParrish',946,494,0,0,0.25,0
768,Mon Jun 12 12:06:40 +0000 2017," '""RT @prosocialplace: Not banter or post-truth politics Boris - its antisocial behaviour in face of serious political + economic upheaval htt…""'", 'benchickens',17,72,0,0,0.25,0
769,Mon Jun 12 12:06:40 +0000 2017," '""RT @thesalteater: What kinda logic... https://t.co/vwzhDhepx7""'", 'ShesPaige',1043,967,0,0,0.25,0
770,Mon Jun 12 12:06:41 +0000 2017," '""UK Electoral commission: Labour General Election Fraud 2017 - Sign the Petition! https://t.co/xC10oOieCI""'", 'camelbirder',910,651,0,0,0.25,0
771,Mon Jun 12 12:06:41 +0000 2017," '""RT @_lexdavies: me too bitch ur not special https://t.co/F0zvdLJXwy""'", 'Psyqosis',12256,85,0,0,0.25,0
772,Mon Jun 12 12:06:41 +0000 2017," '""#postBrexit environment will exacerbate #reduction #lowskilled #jobs #retail industry due low cost of #automation &… https://t.co/aRSupA3B6h""'", 'KurtVermeulen',335,206,0,0,0.25,0
773,Mon Jun 12 12:06:41 +0000 2017," '""Theresa May appoints anti-LGBT justice secretary with appalling gay rights voting record during DUP talks https://t.co/RvLmcoQVtR""'", 'jpjanson',3705,2552,0,0,0.25,0
774,Mon Jun 12 12:06:41 +0000 2017," '""RT @paulwaugh: Remember Mays Coalition of chaos attack on Labour? Now Queens Speech/Brexit talks delayed as DUP deal unresolved https:/…""'", 'delythjewell',998,949,0,0,0.25,0
775,Mon Jun 12 12:06:41 +0000 2017," '""BREAKING: Tories announce they still dont have a fucking clue. https://t.co/kTyFNrpOPC""'", 'RichardKBarrett',87,163,0,0,0.25,0
776,Mon Jun 12 12:06:41 +0000 2017," '"".. Lore was correct then too. https://t.co/Y1sVybs4DH""'", 'seamantid',0,59,0,0,0.25,0
777,Mon Jun 12 12:06:41 +0000 2017," '""RT @komalinsan25: @Gurmeetramrahim g!Child labour is a curse & every1 should step forward to remove it altogether\n#WorldDayAgainstChildLabo…""'", 'Ritikar89857931',54,47,0,0,0.25,0
778,Mon Jun 12 12:06:41 +0000 2017," '""@gjulianl @SkyNews There are bands in the NHS you cant undercut wages if anything cos of the shortage wages should… https://t.co/I7630BCqon""'", 'mikem4505',312,1255,0,0,0.25,0
779,Mon Jun 12 12:06:41 +0000 2017," '""RT @jonsnowC4: Here we go..for those too young to remember. Portadown has been the scene of some very nasty stuff down the years. https://t…""'", 'Jax9998',113,459,0,0,0.25,0
780,Mon Jun 12 12:06:41 +0000 2017," '""RT @DavidJo52951945: Jeremy Corbyns election result was a terrible result for Labour.Fewer seats than Kinnock 1992 & Callaghan 1979 & j… ""'", 'Robbotye',391,364,0,0,0.25,0
781,Mon Jun 12 12:06:41 +0000 2017," '""RT @jdportes: This explains why No deal better than bad deal line weakens UK negotiating position & makes no deal more likely… ""'", 'roger_scully',7035,4020,0,0,0.25,0
782,Mon Jun 12 12:06:41 +0000 2017," '""RT @DanielHewittITV: NEW: @itvnews has seen WhatsApp messages sent by Boris Johnson to Tory MPs urging them to calm down and get behind… ""'", 'kaaatiexlouise',1642,1050,0,0,0.25,0
783,Mon Jun 12 12:06:41 +0000 2017," '""RT @jashanskater14: @Gurmeetramrahim Yes papa we also pledge to say no to the child labour\nLets #StopChildLabour on #WorldDayAgainstChildL…""'", 'khushpreet33',96,26,0,0,0.25,0
784,Mon Jun 12 12:06:41 +0000 2017," '""RT @BBCJonSopel: This is about much bigger stuff than getting a Queens Speech through parliament... https://t.co/egHQnMJoZv""'", 'RosieBloom3',929,1252,0,0,0.25,0
785,Mon Jun 12 12:06:41 +0000 2017," '""RT @NicolaSturgeon: There must be full public disclosure of terms of any proposed Tory deal with DUP - before it is signed and sealed. http…""'", 'AgnesKe86904567',156,105,0,0,0.25,0
786,Mon Jun 12 12:06:41 +0000 2017," '""RT @Hepworthclare: Queens Speech *postponed*\nTory Manifesto *shredded*\nNobody has CLUE about what is going on !\nBut HEY - DUP will bail yo…""'", 'edwardhenry1',362,1765,0,0,0.25,0
787,Mon Jun 12 12:06:42 +0000 2017," '""RT @Harryslaststand: There is now talk that Theresa May will delay both #brexit talks & the Queens speech which indicates the Tories aren…""'", 'santacaterina',75,353,0,0,0.25,0
788,Mon Jun 12 12:06:42 +0000 2017," '""Ahh if only. #GE2017 https://t.co/EdUNOPZSJy""'", 'BignessAsUsual',500,802,0,0,0.25,0
789,Mon Jun 12 12:06:42 +0000 2017," '""RT @jongaunt: I dont want a Prime Minister like Theresa May who is in bed with Saudi Arabia!\n\nhttps://t.co/nVXE0mXMin\n\n#GE2017""'", 'Pythagoreanidea',403,384,0,0,0.25,0
790,Mon Jun 12 12:06:42 +0000 2017," '""@Yes_Perth_City @WingsScotland There are misinformed and ignorant Tories that maybe havent researched the crimin… https://t.co/br4YklvQNN""'", 'The45Storm',12610,3926,0,0,0.25,0
791,Mon Jun 12 12:06:42 +0000 2017," '""RT @WingsScotland: The jaw-dropping extent to which the Lib Dems are now the Scottish Tories bitches is going to *blow your mind*: https:/…""'", 'EechieOchie',1408,1274,0,0,0.25,0
792,Mon Jun 12 12:06:42 +0000 2017," '""RT @Hepworthclare: Queens Speech *postponed*\nTory Manifesto *shredded*\nNobody has CLUE about what is going on !\nBut HEY - DUP will bail yo…""'", 'kenneth_gray',856,682,0,0,0.25,0
793,Mon Jun 12 12:06:42 +0000 2017," '""@OwenJones84 29 yo Tory colleague said the young voted Lab selfishly re: tuition fees. Didnt like when I said his d… https://t.co/18jHg7J3Sp""'", 'Blsd_Crsd_Matt',155,329,0,0,0.25,0
794,Mon Jun 12 12:06:43 +0000 2017," '""RT @davessidekick: Jeremy Corbyn secured more votes from under 55s and Londoners than any other politician in history. This is an eart… ""'", 'LauraNWay87',2063,4913,0,0,0.25,0
795,Mon Jun 12 12:06:43 +0000 2017," '""RT @MikeSegalov: I think well stick to voting Labour thanks! https://t.co/nySW4AY5nB""'", 'TheFabledAesop',497,1371,0,0,0.25,0
796,Mon Jun 12 12:06:42 +0000 2017," '""RT @JimfromOldham: Rumours circulating that Tories will delay Queens Speech. Absolute #omnishambles #MayMustGo""'", 'nmj25',1846,2448,0,0,0.25,0
797,Mon Jun 12 12:06:43 +0000 2017," '""RT @_IanMoss: John Redwood still on a learning path to an understanding of population growth in the UK 1997-2017. https://t.co/LI1YM6slEk""'", 'OleksiySmola',44,217,0,0,0.25,0
798,Mon Jun 12 12:06:43 +0000 2017," '""Important call by @yvettecoopermp for cross-party commission to conduct Brexit negotiations https://t.co/iRK2q1s2qw""'", 'alantravis40',11578,1834,0,0,0.25,0
799,Mon Jun 12 12:06:43 +0000 2017," '""Very pleased if this means fox hunting ban wont be repealed - 6 nasty Tory policies Theresa May could ditch https://t.co/I8fh84toDE""'", 'clairec100',1357,1253,0,0,0.25,0
800,Mon Jun 12 12:06:43 +0000 2017," '""@DuncanHotchkiss For a long time the UK wide Tory Party wasnt conservative in Scotland. A series of major politica… https://t.co/kF4JxpamEH""'", 'ewangibbs',2171,1866,0,0,0.25,0
801,Mon Jun 12 12:06:43 +0000 2017," '""@RupertMyers @Padsky @JoshTANoble No...but it might help. And I dont think Labour would even need to attack. All t… https://t.co/mf7So9LU2h""'", 'ByRobDavies',3506,2046,0,0,0.25,0
802,Mon Jun 12 12:06:43 +0000 2017," '""RT @NicolaSturgeon: Off to London today to meet with @theSNP MPs as they prepare to get to work standing up for Scotland. #GE2017""'", 'BaranEmelie',2486,2296,0,0,0.25,0
803,Mon Jun 12 12:06:43 +0000 2017," '""RT @Harryslaststand: Its no small thing when a government cant deliver its #queensspeech on time as it indicates crisis within the hall…""'", 'LesleyLine',536,1146,0,0,0.25,0
804,Mon Jun 12 12:06:43 +0000 2017," '""RT @Rowland72James: Having suffered a tactical defeat at #Ge2017 no politicians will be honest about #brexit 4 fear of another election cri…""'", 'suegray834',841,1212,0,0,0.25,0
805,Mon Jun 12 12:06:44 +0000 2017," '""RT @lucyybarnes: risky activities help you in later life\ntheresa may:\n\n#aqaenglish https://t.co/sVgOa7bBht""'", '_MasqueradeA',28,138,0,0,0.25,0
806,Mon Jun 12 12:06:44 +0000 2017," '""RT @JuliaHB1: Quick reminder for Remoaners today. 82% of votes on Thursday were cast for the Tories or Labour. This is from the L… ""'", 'greenaway56',649,524,0,0,0.25,0
807,Mon Jun 12 12:06:44 +0000 2017," '""Looking for some post-exam relaxation? Listen to Elena #Ferrantes bestselling stories on @BBCRadio4 https://t.co/Hb6xITskm5""'", 'WarwickItalian',430,138,0,0,0.25,0
808,Mon Jun 12 12:06:44 +0000 2017," '""RT @yarotrof: Negotiations with the EU will have to wait as Tories must strike a deal with NI DUP first. No no deal is better th… ""'", 'sandencrow',19,571,0,0,0.25,0
809,Mon Jun 12 12:06:44 +0000 2017," '""RT @lucyybarnes: risky activities help you in later life\ntheresa may:\n\n#aqaenglish https://t.co/sVgOa7bBht""'", 'kittyscarletx',238,150,0,0,0.25,0
810,Mon Jun 12 12:06:44 +0000 2017," '""RT @mehdirhasan: Jeremy Corbyn Is Leading the Left Out of the Wilderness and Toward Power - my new column on the UK election result\nhttps…""'", 'ShineJob',1713,817,0,0,0.25,0
811,Mon Jun 12 12:06:44 +0000 2017," '""RT @derasachasauda: #WorldDayAgainstChildLabour Child labour hinders children from blossoming & kill their aspirations to do something… ""'", 'neelam1966',28,7,0,0,0.25,0
812,Mon Jun 12 12:06:44 +0000 2017," '""It’s emblematic of how low expectations were that we’re all so impressed with Corbyn losing badly versus the worse Tory campaign like ever.""'", 'FluffehAdam',15507,11865,0,0,0.25,0
813,Mon Jun 12 12:06:44 +0000 2017," '""RT @Hepworthclare: Queens Speech *postponed*\nTory Manifesto *shredded*\nNobody has CLUE about what is going on !\nBut HEY - DUP will bail yo…""'", 'thegoldenvision',120,39,0,0,0.25,0
814,Mon Jun 12 12:06:44 +0000 2017," '""RT @JonnElledge: Oh to be in the room when the Tories ask 10 DUP MPs to support a plan which would cost three of them their jobs. https://t…""'", 'conorconneally',725,2934,0,0,0.25,0
815,Mon Jun 12 12:06:45 +0000 2017," '""RT @Independent: Ruth Davidson to attend Theresa Mays first cabinet meeting https://t.co/rXQ0C4xlIA https://t.co/mhgyp7FcuQ""'", 'Uchayethen00',72,218,0,0,0.25,0
816,Mon Jun 12 12:06:45 +0000 2017," '""RT @theresaresigned: Shit On Tiger Woods Its 01:00PM And Theresa May Has Not Resigned Yet""'", 'taurustate',179,233,0,0,0.25,0
817,Mon Jun 12 12:06:45 +0000 2017," '""RT @NHSMillion: Jeremy Hunt has just been re-appointed as Health Secretary by Theresa May - pls RT if you agree it is an utter disg… ""'", 'mary_tambling63',873,656,0,0,0.25,0
818,Mon Jun 12 12:06:45 +0000 2017," '""RT @aintcricket: The good news keeps on coming for Labour as the Corbyn surge goes ballistic https://t.co/z9zQ9cMSSB via @thecanarysays""'", 'tony26860',176,470,0,0,0.25,0
819,Mon Jun 12 12:06:45 +0000 2017," '""RT @Corbynator2: @jeremycorbyn Tories found out we were overcharged £1.4 Bill /year on energy bills & told us shop around.\nBarry Gar… ""'", 'martinolsson7',5669,4865,0,0,0.25,0
820,Mon Jun 12 12:06:45 +0000 2017," '""RT @ShiptonMartin: Orange Order asks DUP to use banned sectarian march in negotiations with Theresa May https://t.co/RcKvz4ptVR""'", 'palestininianpr',14220,14471,0,0,0.25,0
821,Mon Jun 12 12:06:45 +0000 2017," '""RT @MarcherLord1: The Tory Partys demographic disaster - right here in one single tweet https://t.co/6WUh8349sS""'", 'freudianskippy',1285,2753,0,0,0.25,0
822,Mon Jun 12 12:06:45 +0000 2017," '""RT @nathanaylett1: AQA: Risky activities prepare you for later life...\nTheresa May: Ive got this covered...\n#aqaenglish… ""'", 'aquaticpegasi',2080,1629,0,0,0.25,0
823,Mon Jun 12 12:06:45 +0000 2017," '""RT @Hepworthclare: Queens Speech *postponed*\nTory Manifesto *shredded*\nNobody has CLUE about what is going on !\nBut HEY - DUP will bail yo…""'", 'AngelJunkie',66,59,0,0,0.25,0
824,Mon Jun 12 12:06:46 +0000 2017," '""RT @barrynewman4: @EL4JC Thank God Labour didnt win and had support from the SNP and Libdems...what chaos would have followed....😂😂😂😂😂""'", 'Islappedahippo',805,964,0,0,0.25,0
825,Mon Jun 12 12:06:46 +0000 2017," '""RT @WomaninHavana: Re-upping my Sat thread after No 10 now say no change to Brexit plan. \n\nWinning neither personal nor Brexit mandate… ""'", 'Stoical_Cat',169,306,0,0,0.25,0
826,Mon Jun 12 12:06:46 +0000 2017," '""RT @ChukaUmunna: Boris as Tory Leader & PM? Looking fwd to the big fat lie on his big red bus being raised at PMQs every week. Cant… ""'", 'ranguler03',2,36,0,0,0.25,0
827,Mon Jun 12 12:06:46 +0000 2017," '""RT @MissLauraMarcus: @scandifriend Oppositon split three ways in 1983. Plus Falklands and Foot factor. Tories havent won decent majorit… ""'", 'Paul1Singh',7626,5871,0,0,0.25,0
828,Mon Jun 12 12:06:46 +0000 2017," '""RT @LeftUnityUK: Yes everyone is tired but we need another General Election now. The country is being ruined by this uncertainty. #GE2017/2""'", 'thejohnelliott',435,394,0,0,0.25,0
829,Mon Jun 12 12:06:46 +0000 2017," '""RT @PeoplesMomentum: Theres a huge task ahead - but never again can anyone say you cant change the world.\n✔ https://t.co/a1MDh6DlnP\n✔… ""'", 'A_Hannan_Ismail',780,2240,0,0,0.25,0
830,Mon Jun 12 12:06:46 +0000 2017," '""RT @ShansRedShoes: 😂😂😂😭\n\nQueens speech *postponed\n\nBrexit talks *delayed\n\nTories In bed with DUP/KKK\n\nMay is a risk to U.K\n\nCrush her @jere…""'", '_to_be_frank',588,662,0,0,0.25,0
831,Mon Jun 12 12:06:47 +0000 2017," '""@michaeljswalker Unity is strength comrades. Lets go after the Tories please......please!!!""'", 'miller240459',61,145,0,0,0.25,0
832,Mon Jun 12 12:06:47 +0000 2017," '""@janemerrick23 But she and the Tories deny shes lost. They say the Tory DUP alliance shows they have won and nothing has changed.""'", 'jacquep',4171,4998,0,0,0.25,0
833,Mon Jun 12 12:06:47 +0000 2017," '""RT @Rachael_Swindon: Morning @theresa_may Your job as Prime Minister is to put the country first. Not your career or the Tory Party. Res… ""'", 'KeithArmitage2',244,719,0,0,0.25,0
834,Mon Jun 12 12:06:47 +0000 2017," '""RT @KillingJokez: #Tories lie about everything! Much as I hate fox hunting id rather focus on how they STARVE CHILDREN. Thanks & all… ""'", 'roobee_toozdae',506,765,0,0,0.25,0
835,Mon Jun 12 12:06:47 +0000 2017," '""RT @NHSMillion: Jeremy Hunt has just been re-appointed as Health Secretary by Theresa May - pls RT if you agree it is an utter disg… ""'", 'eddiejames83',12,284,0,0,0.25,0
836,Mon Jun 12 12:06:47 +0000 2017," '""RT @screaminkid: @silverrich39 Sorry but can we ever trust Tory lite Plp mps again?They knew Austerity was Ideological LIE yet absta… ""'", 'Right2LeftUK',1202,1633,0,0,0.25,0
837,Mon Jun 12 12:06:47 +0000 2017," '""I liked a @YouTube video https://t.co/G4Nwl9lNZV UCK QUEEN GIVING FREE UCK TO LABOUR VOTERS?!""'", 'JHM_9',239,206,0,0,0.25,0
838,Mon Jun 12 12:06:47 +0000 2017," '""RT @jeremycorbyn: 30 years ago today Diane Abbott became an MP. As the first black woman MP she continues to inspire & represent the… ""'", 'PeteHendy',224,344,0,0,0.25,0
839,Mon Jun 12 12:06:47 +0000 2017," '""RT @MichaelLCrick: Theresa Mays brought in talent from across the party line is a bit strange. The only person shes brought in so far i…""'", 'MarcusMillett',74,45,0,0,0.25,0
840,Mon Jun 12 12:06:47 +0000 2017," '""The Tory govt is now holed below the water-line & has a desperately weak prime minister with a ruined reputation https://t.co/r0AyhX0wv4 #""'", 'DuncanKeeling',5489,5827,0,0,0.25,0
841,Mon Jun 12 12:06:47 +0000 2017," '""May hasnt done a Queens speech so there is no government. She cant be said to represent anyone. Why is she still there? #GE2017""'", 'catofstripes',215,501,0,0,0.25,0
842,Mon Jun 12 12:06:47 +0000 2017," '""@Patrick43792743 @Shambles151 @Chrisviews43 Its simple really: refuse the Tory State Mouthpiece entry into your home!""'", 'glamead',2739,2221,0,0,0.25,0
843,Mon Jun 12 12:06:48 +0000 2017," '""RT @acicconeyouth: Boris Johnson Celebrates Tory Election Win In Clwyd South Even Though It Was Won By Labour! #mondaymotivation 👎👇\n\nhttps:…""'", 'carolehope2',1675,4915,0,0,0.25,0
844,Mon Jun 12 12:06:48 +0000 2017," '""RT @KillingJokez: #Tories lie about everything! Much as I hate fox hunting id rather focus on how they STARVE CHILDREN. Thanks & all… ""'", 'AesopJ',185,209,0,0,0.25,0
845,Mon Jun 12 12:06:48 +0000 2017," '""RT @KillingJokez: #Tories lie about everything! Much as I hate fox hunting id rather focus on how they STARVE CHILDREN. Thanks & all… ""'", 'funnyhoney32',180,98,0,0,0.25,0
846,Mon Jun 12 12:06:48 +0000 2017," '""GEORGE OSBORNE SAYS THERESA MAY IS A DEAD WOMAN WALKING""'", 'bobinvienne',3325,1758,0,0,0.25,0
847,Mon Jun 12 12:06:48 +0000 2017," '""RT @liamyoung: This onslaught against young people will only embolden us. We will vote Labour next time in even greater numbers. Its our f…""'", 'janisb33',116,408,0,0,0.25,0
848,Mon Jun 12 12:06:49 +0000 2017," '""RT @jonsnowC4: Here we go..for those too young to remember. Portadown has been the scene of some very nasty stuff down the years. https://t…""'", 'Sorreltiger',220,527,0,0,0.25,0
849,Mon Jun 12 12:06:49 +0000 2017," '""RT @jonsnowC4: Here we go..for those too young to remember. Portadown has been the scene of some very nasty stuff down the years. https://t…""'", 'ClaireLDickens',416,1289,0,0,0.25,0
850,Mon Jun 12 12:06:49 +0000 2017," '""RT @AttitudeMag: Opinion: A gay man pens an open letter to Theresa May on her partnership with the DUP\n\nhttps://t.co/HWf0dgzIEo https://t.c…""'", 'JosephSherry1',3195,3722,0,0,0.25,0
851,Mon Jun 12 12:06:49 +0000 2017," '""@GeorgeBooth52 @BBCNews @JBrokenshire @theresa_may #Tories have been asked about an independent mediator - theyve… https://t.co/VdppCu3MJr""'", 'mrssbarnard',241,478,0,0,0.25,0
852,Mon Jun 12 12:06:49 +0000 2017," '""RT @Harryslaststand: The reason why Theresa May reappointed #JeremyHunt as Health Secretary is b/c she wants her short legacy as PM to be a…""'", 'Henders1954',98,214,0,0,0.25,0
853,Mon Jun 12 12:06:49 +0000 2017," '""Look at DUP losses and SinnFein gains. No way these boundaries will ever be introduced. https://t.co/SmdqbJGWC7""'", 'SpaJw',544,409,0,0,0.25,0
854,Mon Jun 12 12:06:49 +0000 2017," '""RT @brianmoore666: It was defeated by a vote of 11 - 10 in cabinet. https://t.co/WDW5CZK6Sr""'", 'YanBran2',831,693,0,0,0.25,0
855,Mon Jun 12 12:06:49 +0000 2017," '""Theresa May rolls the dice and loses. Her Kingdom for an Aston Martin !""'", 'jonglenellyn',56,7,0,0,0.25,0
856,Mon Jun 12 12:06:49 +0000 2017," '""Yep. Was at that Conference along with other @ToryWorkers colleagues. The man is a visionary. https://t.co/YRUKNbicGC""'", 'ian4newforest',712,945,0,0,0.25,0
857,Mon Jun 12 12:06:50 +0000 2017," '""RT @MarkSkoda: Hypocrite Jeremy Corbyn says he Welcomes the Cancellation of President Trumps Visit to UK. #LondonHasFallen https://t.co/…""'", 'Regan_56',45,2280,0,0,0.25,0
858,Mon Jun 12 12:06:50 +0000 2017," '""RT @LustforLo: nigga they disrespected you and they still got your coins. played yourself https://t.co/8QaQzl4Eji""'", '____Swankk',537,464,0,0,0.25,0
859,Mon Jun 12 12:06:50 +0000 2017," '""@michaelgove Our wishes were made clear when a majority Gov could not be formed. Tories need to stop power grab and… https://t.co/EV9AQiKL6G""'", 'StackJaz',411,1145,0,0,0.25,0
860,Mon Jun 12 12:06:50 +0000 2017," '""RT @Robert___Harris: Charlatan. Fraud. Mountebank. Dissembler. Cad. Mythomaniac. Twister. Rogue. Humbug. Hypocrite. Boaster. Bluffer. Co… ""'", 'muzzer_daftbat',745,808,0,0,0.25,0
861,Mon Jun 12 12:06:50 +0000 2017," '""RT @jeremycorbyn: Hard-won LGBT rights must not be sold out by @Theresa_May and the Tories as they try to cling to power with the DUP. http…""'", '__LuciaBrown',4,21,0,0,0.25,0
862,Mon Jun 12 12:06:50 +0000 2017," '""RT @daniel_barker: 25 – 34 year olds voting Labour as the first generation who will be definitively worse off than our parents.""'", 'DarrenJM1965',76,86,0,0,0.25,0
863,Mon Jun 12 12:06:50 +0000 2017," '""RT @nickjbarlow: Scottish Tory MPs wonder which one of them will be asked to make room for her at the next election. https://t.co/FH236pZo2a""'", 'lordbonkers',5485,2714,0,0,0.25,0
864,Mon Jun 12 12:06:51 +0000 2017," '""RT @LTrotsky21: Poverty as a weapon . . . Debt as a form of control. https://t.co/JfE8YEINiw""'", 'roblwilson',1713,139,0,0,0.25,0
865,Mon Jun 12 12:06:51 +0000 2017," '""#LITechNews: UK general election: Theresa May ‘dead woman walking’ #Election #Government https://t.co/HZpmB1M5ha""'", 'LITechNewsPosts',194,1,0,0,0.25,0
866,Mon Jun 12 12:06:51 +0000 2017," '""RT @NeilMackay: A Tory MP speaking to one of their employers https://t.co/u5iCNTGPei""'", 'missthepiglet',234,816,0,0,0.25,0
867,Mon Jun 12 12:06:51 +0000 2017," '""@sammy_mendel Secondly Tories coalition is harming their popularity and breaking most of the medias ability to credibly ignore her faults""'", 'ProlePigeon',129,536,0,0,0.25,0
868,Mon Jun 12 12:06:51 +0000 2017," '""RT @AlanDersh: Why did Bernie Sanders campaign for the British anti-semite Jeremy Corbyn? My latest for @GatestoneInst https://t.co/N4O7lmN…""'", '3462727',2457,2855,0,0,0.25,0
869,Mon Jun 12 12:06:51 +0000 2017," '""RT @mikegalsworthy: Those claiming that 82% of voters endorsed hard Brexit are wrong. Many Remainers voted Labour tactically - to rem… ""'", 'nicclesb',875,998,0,0,0.25,0
870,Mon Jun 12 12:06:51 +0000 2017," '""RT @derasachasauda: #WorldDayAgainstChildLabour Child labour hinders children from blossoming & kill their aspirations to do something… ""'", 'kulbirinsan',325,62,0,0,0.25,0
871,Mon Jun 12 12:06:51 +0000 2017," '""Theresa May unplug the duke box and do us all a favour ( but she may not? ) https://t.co/BkiFf2niNt""'", 'PeachyHeroin',2,17,0,0,0.25,0
872,Mon Jun 12 12:06:51 +0000 2017," '""@Gurmeetramrahim We need more policies and attention towards eradicating child labour and work towards children wel… https://t.co/TU6PiXoyf4""'", 'dipuchoti',131,30,0,0,0.25,0
873,Mon Jun 12 12:06:51 +0000 2017," '""RT @Gian_TCatt: A must see with @drbobgill warning us about the Naylor report and Tory plans to asset strip the #NHS...… ""'", 'delboydare',926,975,0,0,0.25,0
874,Mon Jun 12 12:06:52 +0000 2017," '""@WillardFoxton @JeyyLowe @PCollinsTimes That was not the line in marginals. Quite the opposite. Thats the Tory l… https://t.co/fCg2BMlZ7g""'", 'veggiebreakfast',68,202,0,0,0.25,0
875,Mon Jun 12 12:06:51 +0000 2017," '""RT @UNGeneva: Too many children cannot enjoy simply being children as conflict & disaster ⬆️ vulnerability to child labour-… ""'", 'elenichrysostom',2362,1755,0,0,0.25,0
876,Mon Jun 12 12:06:52 +0000 2017," '""looking good already | Orange Order asks DUP to use banned sectarian Drumcree march in negotiations with Theresa May https://t.co/ozZGoeOPUm""'", 'xtc_uk',826,312,0,0,0.25,0
877,Mon Jun 12 12:06:52 +0000 2017," '""RT @Markwatson75: @SkyNews Ill be surprised if Theresa May lasts out the week""'", '1cliffgordon',233,137,0,0,0.25,0
878,Mon Jun 12 12:06:52 +0000 2017," '""RT @LeaveMnsLeave: 84% voted for parties who want to leave Single Market. Help us secure the Brexit you voted for. Sign up: https://t.co/95…""'", 'iantighe',98,103,0,0,0.25,0
879,Mon Jun 12 12:06:52 +0000 2017," '""RT @JamieMeWrites: If Theresa May cant make the Queens Speech I know a guy wholl step in short notice. https://t.co/gdHYzKXJID""'", 'raniatxz',1848,152,0,0,0.25,0
880,Mon Jun 12 12:06:52 +0000 2017," '""RT @OwenJones84: PROTEST TOMORROW: No Coalition of Chaos with the extremist DUP! Theresa May must go! Share everywhere >>>>> https://t.co/l…""'", 'TootseSzabo',80,109,0,0,0.25,0
881,Mon Jun 12 12:06:52 +0000 2017," '""RT @MikeSegalov: I think well stick to voting Labour thanks! https://t.co/nySW4AY5nB""'", 'SnarkinP',152,389,0,0,0.25,0
882,Mon Jun 12 12:06:53 +0000 2017," '""RT @JackLebeau66: Theresa May delaying the Queens Speech doesnt look good. All signs point to another General Election.""'", 'Vanessa_J_L',516,899,0,0,0.25,0
883,Mon Jun 12 12:06:53 +0000 2017," '""I wonder how they feel being part of a Parliament that is potentially being propped up by the DUP? https://t.co/s3ex416tgG""'", 'MazHappy',469,367,0,0,0.25,0
884,Mon Jun 12 12:06:53 +0000 2017," '""RT @jdportes: This explains why No deal better than bad deal line weakens UK negotiating position & makes no deal more likely… ""'", 'johnnypaige',2347,2326,0,0,0.25,0
885,Mon Jun 12 12:06:53 +0000 2017," '""RT @MarkSkoda: Hypocrite Jeremy Corbyn says he Welcomes the Cancellation of President Trumps Visit to UK. #LondonHasFallen https://t.co/…""'", 'Angel_DoesIt8',294,111,0,0,0.25,0
886,Mon Jun 12 12:06:53 +0000 2017," '""RT @zach2302: Imagine having Jeremy Corbyn as ur dad itd be mad tbh he wouldnt tell you to clean ya room hed INSPIRE you to clean it""'", 'DRaja786',59,206,0,0,0.25,0
887,Mon Jun 12 12:06:53 +0000 2017," '""RT @jeremycorbyn: Hard-won LGBT rights must not be sold out by @Theresa_May and the Tories as they try to cling to power with the DUP. http…""'", 'StevenLHalladay',266,293,0,0,0.25,0
888,Mon Jun 12 12:06:53 +0000 2017," '""RT @DailyMailUK: Queens Speech set to be delayed because Theresa Mays deal with the DUP is not yet finished https://t.co/U92smhNhrD""'", 'MfoumouOndoua',260,876,0,0,0.25,0
889,Mon Jun 12 12:06:53 +0000 2017," '""Well that worked well 😂 https://t.co/sttf18MdTS""'", 'StuPlaysGames',547,452,0,0,0.25,0
890,Mon Jun 12 12:06:53 +0000 2017," '""Election 2017: Downing St hints that Queens speech will be delayed – politics live https://t.co/wiMNzpnYoq""'", 'derekmarshall43',44,140,0,0,0.25,0
891,Mon Jun 12 12:06:54 +0000 2017," '""@MarkJones48 @JolyonMaugham Who will grasp that a sizeable section of the Labour vote was motivated by avoiding h… https://t.co/Pk51hMqxGC""'", 'Turlinator',95,340,0,0,0.25,0
892,Mon Jun 12 12:06:54 +0000 2017," '""RT @holymacmoses: @WingsScotland This man:https://t.co/JaY416NxSz \nclearly Salmond has enemies there""'", 'john_corall',93,122,0,0,0.25,0
893,Mon Jun 12 12:06:54 +0000 2017," '""RT @Hepworthclare: Hmm *deals* with the DUP - May has effectively CURTAILED political careers of NEWLY elected Tory MPs in Scotland. IMO.…""'", 'Leahy7Leahy',220,283,0,0,0.25,0
894,Mon Jun 12 12:06:54 +0000 2017," '""▶ #JeremyCorbyn did much better than anyone -including myself- expected @PeterHain on whats behind #GE2017 resul… https://t.co/6MNqkTc7R1""'", 'BBCRadioWales',57169,1247,0,0,0.25,0
895,Mon Jun 12 12:06:54 +0000 2017," '""Softening Brexit? Europe eyes opportunity in Theresa Mays weakened govt #worldnews #actu https://t.co/mHMAHNuHdd https://t.co/Qz6205WapI""'", 'TacticalFM',300,2,0,0,0.25,0
896,Mon Jun 12 12:06:54 +0000 2017," '""RT @Harryslaststand: There is now talk that Theresa May will delay both #brexit talks & the Queens speech which indicates the Tories aren…""'", 'yvylovy',166,1409,0,0,0.25,0
897,Mon Jun 12 12:06:54 +0000 2017," '""RT @MarkSkoda: Hypocrite Jeremy Corbyn says he Welcomes the Cancellation of President Trumps Visit to UK. #LondonHasFallen https://t.co/…""'", 'bshir989',225,108,0,0,0.25,0
898,Mon Jun 12 12:06:54 +0000 2017," '""RT @CarolineLucas: Beggars belief. One look at Gove’s voting record shows him unfit for this job: https://t.co/IIzaJRek8I https://t.co/TzIx…""'", 'NickClancarty',850,692,0,0,0.25,0
899,Mon Jun 12 12:06:54 +0000 2017," '""RT @PrisonPlanet: The Labour party offered them and others the beguiling vision of living perpetually at the expense of others. https://t…""'", 'Sweet_DudeUK',166,165,0,0,0.25,0
900,Mon Jun 12 12:06:55 +0000 2017," '""RT @Hepworthclare: Queens Speech *postponed*\nTory Manifesto *shredded*\nNobody has CLUE about what is going on !\nBut HEY - DUP will bail yo…""'", 'homelesshorse',4006,4700,0,0,0.25,0
901,Mon Jun 12 12:06:55 +0000 2017," '""RT @MarkSkoda: Hypocrite Jeremy Corbyn says he Welcomes the Cancellation of President Trumps Visit to UK. #LondonHasFallen https://t.co/…""'", 'ssaagg723',427,1171,0,0,0.25,0
902,Mon Jun 12 12:06:55 +0000 2017," '""RT @ScherLitNet: #TacticalVoting poll. Please RT. #GE2017 \n\nTactically voted for:""'", 'gweston7',225,345,0,0,0.25,0
903,Mon Jun 12 12:06:55 +0000 2017," '""RT @PKBook22: @davidallengreen I was asked on Facebook why I seemed SO anti-Theresa May. My answer I might also help explain why… ""'", 'memento_murray',258,413,0,0,0.25,0
904,Mon Jun 12 12:06:55 +0000 2017," '""RT @paulwaugh: Remember Mays Coalition of chaos attack on Labour? Now Queens Speech/Brexit talks delayed as DUP deal unresolved https:/…""'", 'dotasscandal',890,2403,0,0,0.25,0
905,Mon Jun 12 12:06:55 +0000 2017," '""RT @Lindasandelll: @MarielFoulds @labourlewis My first time of voting labour too because JC didnt sling mud or name calling""'", 'BigVileRat',25,50,0,0,0.25,0
906,Mon Jun 12 12:06:56 +0000 2017," '""The end of the Tory fantasy https://t.co/IkDTtsYV9B""'", 'timPizey',187,131,0,0,0.25,0
907,Mon Jun 12 12:06:56 +0000 2017," '""Can you explain to my (British/English) Son \nwhy his (British/N.Irish) Cousin is less indebted \nafter they complete… https://t.co/snDuwRVmE8""'", 'eveningnew',1129,1376,0,0,0.25,0
908,Mon Jun 12 12:06:56 +0000 2017," '""Theresa May must be saying to herself:What the hell was I thinking?Two advisers resigned. Bearers of bad advice or in good conscience?""'", 'LynetteFrancis1',9012,600,0,0,0.25,0
909,Mon Jun 12 12:06:56 +0000 2017," '""Softening Brexit? Europe eyes opportunity in Theresa May’s weakened govt https://t.co/v9KcLueDi9""'", 'JCSura',7411,473,0,0,0.25,0
910,Mon Jun 12 12:06:56 +0000 2017," '""CERTAINTY - okay Theresa pal... #ge2017 https://t.co/a17bMxSGqD""'", 'jaketbf',332,304,0,0,0.25,0
911,Mon Jun 12 12:06:57 +0000 2017," '""@jambonnie @WingsScotland Lmao apologies. Labour 😂""'", 'delboy1978uk',1029,925,0,0,0.25,0
912,Mon Jun 12 12:06:57 +0000 2017," '""RT @MarkSkoda: Hypocrite Jeremy Corbyn says he Welcomes the Cancellation of President Trumps Visit to UK. #LondonHasFallen https://t.co/…""'", 'Brad__Coie',226,320,0,0,0.25,0
913,Mon Jun 12 12:06:57 +0000 2017," '""RT @dr_shibley: The WONDERFUL @chunkymark https://t.co/F0zy7qoeDw""'", 'roblwilson',1713,139,0,0,0.25,0
914,Mon Jun 12 12:06:57 +0000 2017," '""RT @EuroGuido: Labour Chaos Latest: @BarryGardiner drowning on #bbcdp over his reform the single market comments this morning https://t.c…""'", 'WillyGreyBin',3854,3841,0,0,0.25,0
915,Mon Jun 12 12:06:58 +0000 2017," '""RT @GraceBrodie: @mrpaulaitken @0604Arb1320 @RuthDavidsonMSP Im looking forward to Ruthie finding out her Scot Tory MPs are only… ""'", 'Shoolyboo',1747,1200,0,0,0.25,0
916,Mon Jun 12 12:06:58 +0000 2017," '""RT @endamcclafferty: @GerryAdamsSF warns any DUP Tory deal which undercuts what happens here will not be tolerated https://t.co/tO1m7k89rN""'", 'RealMiller',1115,3428,0,0,0.25,0
917,Mon Jun 12 12:06:58 +0000 2017," '""RT @DavidJo52951945: Tory eurosceptics needs to fight for Brexit it is unacceptable remainer Tories are demanding a soft Brexit https://t.c…""'", 'mforpower52',315,991,0,0,0.25,0
918,Mon Jun 12 12:06:58 +0000 2017," '""RT @zach2302: Imagine having Jeremy Corbyn as ur dad itd be mad tbh he wouldnt tell you to clean ya room hed INSPIRE you to clean it""'", 'laurae_vaughan',139,169,0,0,0.25,0
919,Mon Jun 12 12:06:58 +0000 2017," '""RT @MissEllieMae: To be clear: we are overjoyed because Labour got its results by campaigning on an *explicitly leftwing platform.* THATS…""'", 'corbs536',1221,2194,0,0,0.25,0
920,Mon Jun 12 12:06:59 +0000 2017," '""RT @thebarryhorns: Cunch of bunts https://t.co/WQJXJ5dset""'", 'rugbydruid',1093,1714,0,0,0.25,0
921,Mon Jun 12 12:06:59 +0000 2017," '""RT @con_news: Tories seem to have spotted the cliff edge and have stamped down hard on the accelerator. #wato""'", 'justmebeingme4',5455,5510,0,0,0.25,0
922,Mon Jun 12 12:06:59 +0000 2017," '""RT @NHSMillion: Just a week ago we were heading for a huge Tory majority but we proved we can all make a difference & that this isn… ""'", 'stmarnock69',162,322,0,0,0.25,0
923,Mon Jun 12 12:06:59 +0000 2017," '""RT @Nezifah: Broke ass boi @torylanez bet u wont come to my crib and put 35 racks on my kitchen floor ol broke ass https://t.co/wZwNGUMVA1""'", 'wynta1011111',21,28,0,0,0.25,0
924,Mon Jun 12 12:06:59 +0000 2017," '""RT @pinkhiigh: But there isnt a magic money tree for NHS nurses. https://t.co/qrC9GOUn7G""'", 'jonnyconnolly',397,260,0,0,0.25,0
925,Mon Jun 12 12:06:59 +0000 2017," '""@supportNHSCIC @LesleyShazney @cpeedell I get it. May needed Health Sec in solid Tory seat so he cant lose over t… https://t.co/3Xtw6D1d35""'", 'DailyGrindExtra',275,514,0,0,0.25,0
926,Mon Jun 12 12:06:59 +0000 2017," '""RT @jonsnowC4: Here we go..for those too young to remember. Portadown has been the scene of some very nasty stuff down the years. https://t…""'", 'jddundee',1857,1220,0,0,0.25,0
927,Mon Jun 12 12:06:59 +0000 2017," '""RT @richardbarbrook: Mandelson promises that the Blairites will prop up a Tory government to stop the impact of the Corbyn revolution … ht…""'", 'ianpaulwright',422,556,0,0,0.25,0
928,Mon Jun 12 12:06:59 +0000 2017," '""RT @gsoh31: An astonishingly good night for the Scottish Tories - came pretty close to six (!) more gains. https://t.co/OaycEsfOu9""'", 'ScottFunke',1004,464,0,0,0.25,0
929,Mon Jun 12 12:07:00 +0000 2017," '""RT @MallowNews: Enda Kenny has warned Theresa May against doing a deal with a group of climate change denying crooks https://t.co/LQV3hXQ0ia""'", 'tggleeson',1972,1568,0,0,0.25,0
930,Mon Jun 12 12:07:00 +0000 2017," '""RT @MarkSkoda: Hypocrite Jeremy Corbyn says he Welcomes the Cancellation of President Trumps Visit to UK. #LondonHasFallen https://t.co/…""'", '_SH5UN3',316,112,0,0,0.25,0
931,Mon Jun 12 12:07:00 +0000 2017," '""RT @JPNadda: #WorldDayAgainstChildLabour ; aims to focus attention on the global extent of child labour and the action & efforts… ""'", 'NundooPriya',1512,1370,0,0,0.25,0
932,Mon Jun 12 12:07:00 +0000 2017," '""RT @MatthewGreen02: I need a mandate for hard Brexit says May\nNo mandate says electorate.\nI have no other setting says Maybot\nhttps://t…""'", 'VforVolition',243,134,0,0,0.25,0
933,Mon Jun 12 12:07:00 +0000 2017," '""RT @NJ_Davies: Non-shuffle reshuffle: what to make of Theresa May’s new Cabinet. Great analysis from @jillongovt @instituteforgov https://t…""'", 'nicolevIFG',1837,999,0,0,0.25,0
934,Mon Jun 12 12:07:00 +0000 2017," '""Theresa May could delay Queens Speech after humiliating election result https://t.co/ayvFvVt5t6""'", 'Jocar6562',15,39,0,0,0.25,0
935,Mon Jun 12 12:07:00 +0000 2017," '""Theresa May HATED strong and stable mantra and was desperate to drop it https://t.co/UfvKVlD9oi https://t.co/nhumcKIGZY""'", 'Daily_Express',657837,507,0,0,0.25,0
936,Mon Jun 12 12:07:01 +0000 2017," '""Tory Lanez is a arrogant corn ball""'", 'AfricanPrinceEG',653,573,0,0,0.25,0
937,Mon Jun 12 12:07:01 +0000 2017," '""@tom_watson more likely to be #SarahVine and the @MailOnline \n\nhttps://t.co/yhSicyUdTc""'", 'Jockyfox',422,357,0,0,0.25,0
938,Mon Jun 12 12:07:01 +0000 2017," '""RT @MarkSkoda: Hypocrite Jeremy Corbyn says he Welcomes the Cancellation of President Trumps Visit to UK. #LondonHasFallen https://t.co/…""'", 'khaled653400',266,121,0,0,0.25,0
939,Mon Jun 12 12:07:01 +0000 2017," '""RT @DavidJo52951945: This is as good as it gets for Corbyn & he is still nowhere near No.10 https://t.co/L5Z3s10QJy""'", 'sapereaude1949',37652,29660,0,0,0.25,0
940,Mon Jun 12 12:07:02 +0000 2017," '""RT @UN: Millions of children pushed into labour by conflicts and disasters. Find out more on Mondays #NoChildLabour Day… ""'", 'thebirdseye1',417,458,0,0,0.25,0
941,Mon Jun 12 12:07:01 +0000 2017," '""RT @KillingJokez: #Tories lie about everything! Much as I hate fox hunting id rather focus on how they STARVE CHILDREN. Thanks & all… ""'", 'GazGrizzo',8049,661,0,0,0.25,0
942,Mon Jun 12 12:07:02 +0000 2017," '""RT @lucyybarnes: risky activities help you in later life\ntheresa may:\n\n#aqaenglish https://t.co/sVgOa7bBht""'", 'theswiftfangirl',143,313,0,0,0.25,0
943,Mon Jun 12 12:07:02 +0000 2017," '""RT @NameChangeGirl: Have any London-based journalists headed onto streets of Belfast yet to discover how this Tory mess is affecting people…""'", 'GRLewis27',218,695,0,0,0.25,0
944,Mon Jun 12 12:07:02 +0000 2017," '""RT @lucyybarnes: risky activities help you in later life\ntheresa may:\n\n#aqaenglish https://t.co/sVgOa7bBht""'", 'alaarammu',182,105,0,0,0.25,0
945,Mon Jun 12 12:07:02 +0000 2017," '""RT @MutazElnour: But just three seats away from a majority... much harder for Lab to get anywhere near. https://t.co/xaQMT0cxLd""'", 'Leonmexico40',855,233,0,0,0.25,0
946,Mon Jun 12 12:07:02 +0000 2017," '""RT @acgrayling: Lets hope Labour is seeing sense on Brexit. https://t.co/b88cmedUZZ""'", 'JohnKLocal',79,185,0,0,0.25,0
947,Mon Jun 12 12:07:02 +0000 2017," '""A vile example of the loop holes the tories create to look after their own future MPs. \n\nhttps://t.co/0zZkw9VYtt""'", 'DavidJamesMc',631,600,0,0,0.25,0
948,Mon Jun 12 12:07:02 +0000 2017," '""RT @paulwaugh: Remember Mays Coalition of chaos attack on Labour? Now Queens Speech/Brexit talks delayed as DUP deal unresolved https:/…""'", 'Hhhpie',242,1086,0,0,0.25,0
949,Mon Jun 12 12:07:02 +0000 2017," '""RT @paulwaugh: Remember Mays Coalition of chaos attack on Labour? Now Queens Speech/Brexit talks delayed as DUP deal unresolved https:/…""'", 'sharpteach',529,2366,0,0,0.25,0
950,Mon Jun 12 12:07:02 +0000 2017," '""RT @pinkhiigh: But there isnt a magic money tree for NHS nurses. https://t.co/qrC9GOUn7G""'", 'harrykane99',143,162,0,0,0.25,0
951,Mon Jun 12 12:07:02 +0000 2017," '""Good to see #BrexitWatch beating other media outlets in breaking news of the Queens Speech. We set the news agenda! #ge2017 #brexit #ukip""'", 'BrexitWatch007',623,1507,0,0,0.25,0
952,Mon Jun 12 12:07:02 +0000 2017," '""The #QueensSpeech is delayed. Looks like a bit of chaos starting in the #CoalitionOfChaos #ToriesOut -… https://t.co/FvrApIGuGA""'", 'moghees',150,381,0,0,0.25,0
953,Mon Jun 12 12:07:02 +0000 2017," '""RT @JohnRentoul: Labour the middle-class subsidy party now: @robfordmancs in Observer yesterday https://t.co/mW3JTVxA0I https://t.co/CPwWbZ…""'", 'DavidBertram1',75,62,0,0,0.25,0
954,Mon Jun 12 12:07:02 +0000 2017," '""Freight leaders call for immediate infrastructure investment after election https://t.co/TRC0fiovSa @RTMNews… https://t.co/gB79Sh9UMq""'", 'TeamStowga',678,2386,0,0,0.25,0
955,Mon Jun 12 12:07:03 +0000 2017," '""RT @paulwaugh: Remember Mays Coalition of chaos attack on Labour? Now Queens Speech/Brexit talks delayed as DUP deal unresolved https:/…""'", 'tamdek',612,650,0,0,0.25,0
956,Mon Jun 12 12:07:03 +0000 2017," '""@budgettipple But if SF got 9 seats then the Tories would only need 296 seats for a majority. Electoral calculus here gives them 298.""'", 'QuantumOverlord',320,158,0,0,0.25,0
957,Mon Jun 12 12:07:03 +0000 2017," '""RT @chunkymark: Theresa Mays Tories\nNO Manifesto \nNO Mandate \nNO Majority https://t.co/cDWGtt4LKi""'", 'Marley_Brittain',290,214,0,0,0.25,0
958,Mon Jun 12 12:07:03 +0000 2017," '""RT @RightNewsUK: Voter fraud is too easy especially with students... this why Labour did so well! https://t.co/c4EVGLBGY0""'", 'Glaisnock_J',563,613,0,0,0.25,0
959,Mon Jun 12 12:07:04 +0000 2017," '""RT @HackneyAbbott: 30 years and 8 elections later my #GE2017 election speech https://t.co/UMWfJ84JFM""'", 'jinnerspace',381,440,0,0,0.25,0
960,Mon Jun 12 12:07:04 +0000 2017," '""RT @dwdavison9318: DEMOCRATS: what can we do to counter the nationalist right\nLABOUR: I have a few idea-\nDEMOCRATS: what if we support Mitt…""'", 'itslikeimsaying',206,215,0,0,0.25,0
961,Mon Jun 12 12:07:03 +0000 2017," '""My thoughts on this fucking mess. #Worstprimeministerinhistory https://t.co/XIGxUa1vx2""'", 'SkinMund',38,201,0,0,0.25,0
962,Mon Jun 12 12:07:04 +0000 2017," '""RT @jonsnowC4: Here we go..for those too young to remember. Portadown has been the scene of some very nasty stuff down the years. https://t…""'", 'palestininianpr',14220,14471,0,0,0.25,0
963,Mon Jun 12 12:07:04 +0000 2017," '""RT @simplyirfan: #WorldDayAgainstChildLabour Protect Children from Child Labour. #NoChildLabour https://t.co/JhrjZ8TsnN""'", 'venurajr',128,118,0,0,0.25,0
964,Mon Jun 12 12:07:04 +0000 2017," '""RT @OwenJones84: Tories doubling down on contempt for the young will 100% turn their political fortunes around https://t.co/4ZIOWZYFIC""'", 'fergusonkeith',2917,2764,0,0,0.25,0
965,Mon Jun 12 12:07:04 +0000 2017," '""RT @CarolineLucas: Beggars belief. One look at Gove’s voting record shows him unfit for this job: https://t.co/IIzaJRek8I https://t.co/TzIx…""'", 'SBlakeSFC',1369,3341,0,0,0.25,0
966,Mon Jun 12 12:07:04 +0000 2017," '""RT @buxton_andy: @PolhomeEditor @Ben_Everitt Did the entire Labour Party study mathematics together?""'", 'Ben_Everitt',1292,971,0,0,0.25,0
967,Mon Jun 12 12:07:05 +0000 2017," '""RT @scatterbrain6: @LBC Labour & Tory manifestos committed to Brexit & ending free movement. 84% electorate voted for these parties so clea…""'", 'Pythagoreanidea',403,384,0,0,0.25,0
968,Mon Jun 12 12:07:05 +0000 2017," '""RT @Harryslaststand: There is now talk that Theresa May will delay both #brexit talks & the Queens speech which indicates the Tories aren…""'", 'JeremyToms54',350,284,0,0,0.25,0
969,Mon Jun 12 12:07:05 +0000 2017," '""RT @edknock: 2017 election results by Football League teams (changes w 2015)\n\nLabour 63 (+3)\nConservative 28 (-4)\nLib Dems 1 (+1) https://t…""'", 'MikeyRiley67',253,364,0,0,0.25,0
970,Mon Jun 12 12:07:05 +0000 2017," '""RT @jimwaterson: Everyones talking about how Labour could do next election but no ones considering Lord Buckethead leading a Macro… ""'", 'alexpday',1342,790,0,0,0.25,0
971,Mon Jun 12 12:07:05 +0000 2017," '""RT @NHSMillion: Just a week ago we were heading for a huge Tory majority but we proved we can all make a difference & that this isn… ""'", 'miltonkeynsie',480,960,0,0,0.25,0
972,Mon Jun 12 12:07:06 +0000 2017," '""RT @Rachael_Swindon: Jeremy Corbyn is preparing Labours own Queens Speech to form government if (when) Theresa May fails.… ""'", 'kernow4corbyn',1385,189,0,0,0.25,0
973,Mon Jun 12 12:07:05 +0000 2017," '""RT @AaronBastani: A friend had to leave the country because his US partner wasnt earning enough money. Theresa May is a coward whose… ""'", 'xander_a_cat',24,330,0,0,0.25,0
974,Mon Jun 12 12:07:06 +0000 2017," '""RT @charlottes1993: Delay to the Queens Speech is more proof that Theresa May should not be Prime Minister - just the beginning for her co…""'", '_jaycampos_',199,471,0,0,0.25,0
975,Mon Jun 12 12:07:06 +0000 2017," '""RT @Mlow59: @C4Ciaran @Highway62 Not being accountable to scrutiny seems the Tory way.\nStrange from Ruth who demands accountabi… ""'", 'Libran_Chick',210,720,0,0,0.25,0
976,Mon Jun 12 12:07:06 +0000 2017," '""RT @pinkhiigh: But there isnt a magic money tree for NHS nurses. https://t.co/qrC9GOUn7G""'", 'ebz_tweetz',461,353,0,0,0.25,0
977,Mon Jun 12 12:07:06 +0000 2017," '""Hes a shifty cunt too. https://t.co/GvcCcGdKZG""'", 'twitchingphil',1913,2165,0,0,0.25,0
978,Mon Jun 12 12:07:06 +0000 2017," '""RT @MarkSkoda: Hypocrite Jeremy Corbyn says he Welcomes the Cancellation of President Trumps Visit to UK. #LondonHasFallen https://t.co/…""'", 'ltsvickybaby',279,141,0,0,0.25,0
979,Mon Jun 12 12:07:06 +0000 2017," '""Are the Tories like their 1922 committee- nearly 100 years behind the times?""'", 'RobStefanelli',15,21,0,0,0.25,0
980,Mon Jun 12 12:07:06 +0000 2017," '""@2tribesgotojaw All very commendable but it was the Labour spin/fantasy that struck a chord with chunks of the electorate""'", 'trickytaylors',390,782,0,0,0.25,0
981,Mon Jun 12 12:07:06 +0000 2017," '""RT @nic_hughes: V useful overview of implications of the mini-shuffle https://t.co/jYRf3w0uqa""'", 'nicolevIFG',1837,999,0,0,0.25,0
982,Mon Jun 12 12:07:06 +0000 2017," '""Revealed! How Theresa May wept after election loss - News Agency of… https://t.co/I6UR99P3kD #palin #teaparty""'", 'FollowPalin',1664,19,0,0,0.25,0
983,Mon Jun 12 12:07:06 +0000 2017," '""RT @jonsnowC4: Here we go..for those too young to remember. Portadown has been the scene of some very nasty stuff down the years. https://t…""'", 'Rachel_cam',44,95,0,0,0.25,0
984,Mon Jun 12 12:07:06 +0000 2017," '""suddenly the #bbc is back to being the bolshevik broadcasting company funny old world #labour #tories""'", 'blamethesoil',90,168,0,0,0.25,0
985,Mon Jun 12 12:07:06 +0000 2017," '""RT @mrchrisaddison: Theresa May is the political equivalent of the hotel guest not picking up the call from reception telling them checkout…""'", 'CymruNerdCave',456,919,0,0,0.25,0
986,Mon Jun 12 12:07:06 +0000 2017," '""Not good for Britain either. https://t.co/4OBc4zyBb9""'", 'pattrice',2898,1158,0,0,0.25,0
987,Mon Jun 12 12:07:06 +0000 2017," '""Queens Speech delayed. And now #Brexit delayed. More u-turns by Theresa May.\n\nTories starting to sound like Southern Rail.\n\n#HungParliament""'", 'MoFarooq9',2396,2972,0,0,0.25,0
988,Mon Jun 12 12:07:07 +0000 2017," '""@AdamBienkov @Alliance4PR Conservative and Labour Parties the name tags outdated because they are both unwieldy coa… https://t.co/BnwwlRC57o""'", 'BoormanPatrick',7,28,0,0,0.25,0
989,Mon Jun 12 12:07:07 +0000 2017," '""RT @robn1980: 🎥 | This is important to bear in mind post-#GE2017; @CenkUygur: Everybody on television is pre-selected to maintai… ""'", 'sebGeist_X',67,403,0,0,0.25,0
990,Mon Jun 12 12:07:07 +0000 2017," '""RT @jeremycorbyn: Hard-won LGBT rights must not be sold out by @Theresa_May and the Tories as they try to cling to power with the DUP. http…""'", 'JackHodgkiss',60,181,0,0,0.25,0
991,Mon Jun 12 12:07:07 +0000 2017," '""The Tartan Tories have left the SNP for the real Tories - and theyre not going back https://t.co/GWZII7SsFl""'", 'snochi',1205,1177,0,0,0.25,0
992,Mon Jun 12 12:07:07 +0000 2017," '""RT @EveningStandard: Theresa May plotted election two weeks earlier than No 10 said https://t.co/ek5y7Rag2T""'", 'PegasusCorpInfo',1507,1999,0,0,0.25,0
993,Mon Jun 12 12:07:08 +0000 2017," '""RT @AaronBastani: Lots of new members in your CLP @dianajohnsonMP - over 100 since GE called. Big Corbyn support! https://t.co/xeGznqY99q""'", 'redsnoopdogg',5437,5341,0,0,0.25,0
994,Mon Jun 12 12:07:08 +0000 2017," '""RT @RightNewsUK: Voter fraud is too easy especially with students... this why Labour did so well! https://t.co/c4EVGLBGY0""'", 'Stephen58433434',46,66,0,0,0.25,0
995,Mon Jun 12 12:07:08 +0000 2017," '""RT @wendyj08: You fought a great campaign. Wish you were my MP. some of these Labour moderates are still being very tricky...… ""'", 'Peratallada',1161,2529,0,0,0.25,0
996,Mon Jun 12 12:07:08 +0000 2017," '"".@GerryAdamsSF says he doesnt believe any deal between the DUP & English Tories will be good for people here""'", 'Tracey_utv',13909,1293,0,0,0.25,0
997,Mon Jun 12 12:07:08 +0000 2017," '""RT @Hepworthclare: Queens Speech *postponed*\nTory Manifesto *shredded*\nNobody has CLUE about what is going on !\nBut HEY - DUP will bail yo…""'", 'lauramarsh70',4175,4981,0,0,0.25,0
998,Mon Jun 12 12:07:08 +0000 2017," '""RT @TheGreenParty: Evidence of Theresa Mays complete disregard for the environment @CarolineLucas on appointment of Gove as environ… ""'", 'charlottethomp5',233,185,0,0,0.25,0