-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsample.json
1194 lines (1194 loc) · 49.4 KB
/
sample.json
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
[
{
"text": "Thank you Minnesota! It is time to #DrainTheSwamp & #MAGA! \n#ICYMI- watch: https://t.co/fVThC7yIL6 https://t.co/e8SaXiJrxj",
"label": "Staff"
},
{
"text": "MONDAY - 11/7/2016\n\nScranton, Pennsylvania at 5:30pm.\nhttps://t.co/BcErCtsPdF\n\nGrand Rapids, Michigan at 11pm.… https://t.co/pgFMLp0173",
"label": "Staff"
},
{
"text": "Thank you Wilmington, North Carolina. We are 3 days away from the CHANGE you've been waiting for your entire life!… https://t.co/6ZJZRBfLST",
"label": "Staff"
},
{
"text": "MAKE AMERICA GREAT AGAIN!",
"label": "Trump"
},
{
"text": "Clinton Aides: ‘Definitely’ Not Releasing Some HRC Emails:\nhttps://t.co/GY5pGKaDoW",
"label": "Staff"
},
{
"text": "Join me in Florida tomorrow!\n\nMIAMI•12pm\nhttps://t.co/A3X71Q6sG2\n\nORLANDO•4pm\nhttps://t.co/6BqTVoty5C\n\nPENSACOLA•7p… https://t.co/kEQuuJeO1B",
"label": "Staff"
},
{
"text": "Great night in Denver, Colorado- thank you! Together, we will MAKE AMERICA GREAT AGAIN! \n#ICYMI watch rally here:… https://t.co/LbvNHo6T2k",
"label": "Staff"
},
{
"text": "JOIN ME TOMORROW!\nMINNESOTA • 2pm\nhttps://t.co/WcgLh4prS7\n\nMICHIGAN • 6pm\nhttps://t.co/9BqGVKNNrt\n\nVIRGINIA • 9:30p… https://t.co/A1oVhCrT6t",
"label": "Staff"
},
{
"text": "Join me in Denver, Colorado tomorrow at 9:30pm!\nTickets: https://t.co/LJYGIK7Mri",
"label": "Staff"
},
{
"text": "Thank you Miami! In 6 days, we are going to WIN the GREAT STATE of FLORIDA - and we are going to win back the White… https://t.co/MKYPOp0MeD",
"label": "Staff"
},
{
"text": "Happy 241st birthday to the U.S. Marine Corps! Thank you for your service!! https://t.co/Lz2dhrXzo4",
"label": "Staff"
},
{
"text": "Are we talking about the same cyberattack where it was revealed that head of the DNC illegally gave Hillary the questions to the debate?",
"label": "Trump"
},
{
"text": ".@BillGates and @JimBrownNFL32 in my Trump Tower office yesterday- two great guys! https://t.co/4PjSOEU5y9",
"label": "Staff"
},
{
"text": "The United Nations has such great potential but right now it is just a club for people to get together, talk and have a good time. So sad!",
"label": "Trump"
},
{
"text": "President Obama said that he thinks he would have won against me. He should say that but I say NO WAY! - jobs leaving, ISIS, OCare, etc.",
"label": "Trump"
},
{
"text": "If Russia, or some other entity, was hacking, why did the White House wait so long to act? Why did they only complain after Hillary lost?",
"label": "Staff"
},
{
"text": "Based on the tremendous cost and cost overruns of the Lockheed Martin F-35, I have asked Boeing to price-out a comparable F-18 Super Hornet!",
"label": "Trump"
},
{
"text": "Last night in Orlando, Florida, was incredible - massive crowd - THANK YOU FLORIDA! Today at 3:00 P.M. I will be in Alabama for last rally!",
"label": "Trump"
},
{
"text": "I gave millions of dollars to DJT Foundation, raised or recieved millions more, ALL of which is given to charity, and media won't report!",
"label": "Trump"
},
{
"text": "The media tries so hard to make my move to the White House, as it pertains to my business, so complex - when actually it isn't!",
"label": "Trump"
},
{
"text": "The Electoral College is actually genius in that it brings all states, including the smaller ones, into play. Campaigning is much different!",
"label": "Trump"
},
{
"text": "Did China ask us if it was OK to devalue their currency (making it hard for our companies to compete), heavily tax our products going into..",
"label": "Trump"
},
{
"text": "The Green Party just dropped its recount suit in Pennsylvania and is losing votes in Wisconsin recount. Just a Stein scam to raise money!",
"label": "Trump"
},
{
"text": "'Donald Trump is already helping the working class' https://t.co/GTuNcQhLYx",
"label": "Staff"
},
{
"text": "Serious voter fraud in Virginia, New Hampshire and California - so why isn't the media reporting on this? Serious bias - big problem!",
"label": "Trump"
},
{
"text": "this election. That is a direct threat to our democracy.\" She then said, \"We have to accept the results and look to the future, Donald --",
"label": "Trump"
},
{
"text": "I have chosen one of the truly great business leaders of the world, Rex Tillerson, Chairman and CEO of ExxonMobil, to be Secretary of State.",
"label": "Trump"
},
{
"text": "On my way to Des Moines, Iowa- will see you soon with @mike_pence. Join us! Tickets: https://t.co/1IuRTVwMSx #ThankYouTour2016",
"label": "Staff"
},
{
"text": "states instead of the 15 states that I visited. I would have won even more easily and convincingly (but smaller states are forgotten)!",
"label": "Trump"
},
{
"text": "I worked hard with Bill Ford to keep the Lincoln plant in Kentucky. I owed it to the great State of Kentucky for their confidence in me!",
"label": "Trump"
},
{
"text": "State Treasurer John Kennedy is my choice for US Senator from Louisiana. Early voting today; election next Saturday.",
"label": "Staff"
},
{
"text": "In addition to winning the Electoral College in a landslide, I won the popular vote if you deduct the millions of people who voted illegally",
"label": "Trump"
},
{
"text": "The failing @nytimes just announced that complaints about them are at a 15 year high. I can fully understand that - but why announce?",
"label": "Trump"
},
{
"text": "As a show of support for our Armed Forces, I will be going to The Army-Navy Game today. Looking forward to it, should be fun!",
"label": "Trump"
},
{
"text": "I am thrilled to nominate Dr. @RealBenCarson as our next Secretary of the US Dept. of Housing and Urban Development… https://t.co/OJKuDFhP3r",
"label": "Staff"
},
{
"text": "Just met with General Petraeus--was very impressed!",
"label": "Staff"
},
{
"text": "Today we lost a great pioneer of air and space in John Glenn. He was a hero and inspired generations of future explorers. He will be missed.",
"label": "Staff"
},
{
"text": "Rexnord of Indiana is moving to Mexico and rather viciously firing all of its 300 workers. This is happening all over our country. No more!",
"label": "Trump"
},
{
"text": "Thank you Ohio! Together, we made history – and now, the real work begins. America will start winning again!… https://t.co/sVNSNJE7Uf",
"label": "Staff"
},
{
"text": "Big day on Thursday for Indiana and the great workers of that wonderful state.We will keep our companies and jobs in the U.S. Thanks Carrier",
"label": "Trump"
},
{
"text": "'President-Elect Donald J. Trump Intends to Nominate Congressman Tom Price and Seema Verma.'\nhttps://t.co/ZTh5cuY26Z https://t.co/twIgAKJs3s",
"label": "Staff"
},
{
"text": "The Democrats, when they incorrectly thought they were going to win, asked that the election night tabulation be accepted. Not so anymore!",
"label": "Trump"
},
{
"text": "The ONLY bad thing about winning the Presidency is that I did not have the time to go through a long but winning trial on Trump U. Too bad!",
"label": "Trump"
},
{
"text": "On my way! https://t.co/6L2ILD6r8h",
"label": "Staff"
},
{
"text": "If Obama worked as hard on straightening out our country as he has trying to protect and elect Hillary, we would all be much better off!",
"label": "Staff"
},
{
"text": "I am going to repeal and replace ObamaCare. We will have MUCH less expensive and MUCH better healthcare. With Hillary, costs will triple!",
"label": "Trump"
},
{
"text": "The @nytimes sent a letter to their subscribers apologizing for their BAD coverage of me. I wonder if it will change - doubt it?",
"label": "Trump"
},
{
"text": "Hey Missouri let's defeat Crooked Hillary & @koster4missouri! Koster supports Obamacare & amnesty! Vote outsider Navy SEAL @EricGreitens!",
"label": "Staff"
},
{
"text": "Thank you Hershey, Pennsylvania. Get out & VOTE on November 8th & we will #MAGA! #RallyForRiley \n#ICYMI, watch here… https://t.co/maWukVBTr8",
"label": "Staff"
},
{
"text": "Crooked Hillary Clinton deleted 33,000 e-mails AFTER they were subpoenaed by the United States Congress. Guilty - cannot run. Rigged system!",
"label": "Trump"
},
{
"text": "Today in Florida, I pledged to stand with the people of Cuba and Venezuela in their fight against oppression- cont: https://t.co/8eELqk2wUw",
"label": "Staff"
},
{
"text": "Looking at Air Force One @ MIA. Why is he campaigning instead of creating jobs & fixing Obamacare? Get back to work for the American people!",
"label": "Staff"
},
{
"text": "Look at the way Crooked Hillary is handling the e-mail case and the total mess she is in. She is unfit to be president. Bad judgement!",
"label": "Trump"
},
{
"text": "Mitt Romney called to congratulate me on the win. Very nice!",
"label": "Trump"
},
{
"text": "Today we express our deepest gratitude to all those who have served in our armed forces. #ThankAVet https://t.co/wPk7QWpK8Z",
"label": "Staff"
},
{
"text": "Just had a very open and successful presidential election. Now professional protesters, incited by the media, are protesting. Very unfair!",
"label": "Trump"
},
{
"text": "Still time to #VoteTrump! \n#iVoted #ElectionNight https://t.co/UZtYAY1Ba6",
"label": "Staff"
},
{
"text": "Thank you Pennsylvania- I am forever grateful for your amazing support. Lets MAKE AMERICA GREAT AGAIN! #MAGA… https://t.co/qbcJZAzw6z",
"label": "Staff"
},
{
"text": "Top Clinton Aides Bemoan Campaign ‘All Tactics,’ No Vision: https://t.co/mHYvQtIq78",
"label": "Staff"
},
{
"text": "Join me live in Wilmington, Ohio!\nhttps://t.co/nQ2p4EulLu",
"label": "Staff"
},
{
"text": "#ICYMI: Governor @mike_pence and I were in Valley Forge, Pennsylvania today. You can watch it here:… https://t.co/6GWgmCV23Z",
"label": "Staff"
},
{
"text": "I will be interviewed on @60Minutes tonight after the NFL game - 7:00 P.M. Enjoy!",
"label": "Trump"
},
{
"text": "Our American comeback story begins 11/8/16. Together, we will MAKE AMERICA SAFE & GREAT again for everyone! Watch:… https://t.co/ek8Cn3CgTr",
"label": "Staff"
},
{
"text": "'ICE OFFICERS WARN HILLARY IMMIGRATION PLAN WILL UNLEASH GANGS, CARTELS & DRUG VIOLENCE NATIONWIDE'… https://t.co/09aSrBwQrv",
"label": "Staff"
},
{
"text": "JOIN ME TOMORROW IN FLORIDA!\n\nMIAMI•12pm\nhttps://t.co/A3X71Q6sG2\n\nORLANDO•4pm\nhttps://t.co/6BqTVoty5C\n\nPENSACOLA•7p… https://t.co/kNzrAeuLZO",
"label": "Staff"
},
{
"text": "I have recieved and taken calls from many foreign leaders despite what the failing @nytimes said. Russia, U.K., China, Saudi Arabia, Japan,",
"label": "Trump"
},
{
"text": "I will be making my announcement on the next Secretary of State tomorrow morning.",
"label": "Trump"
},
{
"text": "October 2015 - thanks Chris Wallace @FoxNewsSunday! https://t.co/VEsgPcWq7z",
"label": "Staff"
},
{
"text": "Join me live in Louisiana! Tomorrow, we need you to go to the polls & send John Kennedy to the U.S. Senate. https://t.co/O0jtz0BKeL",
"label": "Staff"
},
{
"text": "THANK YOU IOWA!\n#ThankYouTour2016 https://t.co/v6EB2OQMeO",
"label": "Staff"
},
{
"text": "Masa (SoftBank) of Japan has agreed to invest $50 billion in the U.S. toward businesses and 50,000 new jobs....",
"label": "Staff"
},
{
"text": "their country (the U.S. doesn't tax them) or to build a massive military complex in the middle of the South China Sea? I don't think so!",
"label": "Trump"
},
{
"text": "wanting to sell their product, cars, A.C. units etc., back across the border. This tax will make leaving financially difficult, but.....",
"label": "Trump"
},
{
"text": "Join me in Cincinnati, Ohio tomorrow evening at 7:00pm. I am grateful for all of your support. THANK YOU!\nTickets:… https://t.co/51Emq7Tffa",
"label": "Staff"
},
{
"text": "I will be holding a major news conference in New York City with my children on December 15 to discuss the fact that I will be leaving my ...",
"label": "Trump"
},
{
"text": "Hillary Clinton conceded the election when she called me just prior to the victory speech and after the results were in. Nothing will change",
"label": "Trump"
},
{
"text": "I will hold a press conference in the near future to discuss the business, Cabinet picks and all other topics of interest. Busy times!",
"label": "Trump"
},
{
"text": "Chuck Jones, who is President of United Steelworkers 1999, has done a terrible job representing workers. No wonder companies flee country!",
"label": "Trump"
},
{
"text": "Just tried watching Saturday Night Live - unwatchable! Totally biased, not funny and the Baldwin impersonation just can't get any worse. Sad",
"label": "Trump"
},
{
"text": "The Great State of Michigan was just certified as a Trump WIN giving all of our MAKE AMERICA GREAT AGAIN supporters another victory - 306!",
"label": "Trump"
},
{
"text": "Hillary's debate answer on delay: \"That is horrifying. That is not the way our democracy works. Been around for 240 years. We've had free --",
"label": "Trump"
},
{
"text": "Happy Thanksgiving to everyone. We will, together, MAKE AMERICA GREAT AGAIN!",
"label": "Trump"
},
{
"text": "Whether I choose him or not for \"State\"- Rex Tillerson, the Chairman & CEO of ExxonMobil, is a world class player and dealmaker. Stay tuned!",
"label": "Trump"
},
{
"text": "I have NOTHING to do with The Apprentice except for fact that I conceived it with Mark B & have a big stake in it. Will devote ZERO TIME!",
"label": "Trump"
},
{
"text": "#ThankYouTour2016 \n\n12/6- North Carolina\nhttps://t.co/79AHq3NC0v\n\n12/8- Iowa\nhttps://t.co/1IuRTVwMSx\n\n12/9- Michiga… https://t.co/vcQaIJ8qoB",
"label": "Staff"
},
{
"text": "Nobody should be allowed to burn the American flag - if they do, there must be consequences - perhaps loss of citizenship or year in jail!",
"label": "Trump"
},
{
"text": "Prior to the election it was well known that I have interests in properties all over the world.Only the crooked media makes this a big deal!",
"label": "Trump"
},
{
"text": "Just got a call from my friend Bill Ford, Chairman of Ford, who advised me that he will be keeping the Lincoln plant in Kentucky - no Mexico",
"label": "Trump"
},
{
"text": "Even though I am not mandated by law to do so, I will be leaving my busineses before January 20th so that I can focus full time on the......",
"label": "Trump"
},
{
"text": "The final Wisconsin vote is in and guess what - we just picked up an additional 131 votes. The Dems and Green Party can now rest. Scam!",
"label": "Trump"
},
{
"text": "Departing New York with General James 'Mad Dog' Mattis for tonight's rally in Fayetteville, North Carolina! See you… https://t.co/Z8sgJBWI09",
"label": "Staff"
},
{
"text": "'President-Elect Donald J. Trump Nominates Elaine Chao as Secretary of the Department of Transportation'\nhttps://t.co/5FMGdhAZxB",
"label": "Staff"
},
{
"text": "My thoughts and prayers are with the great people of Tennessee during these terrible wildfires. Stay safe!",
"label": "Staff"
},
{
"text": "I watched parts of @nbcsnl Saturday Night Live last night. It is a totally one-sided, biased show - nothing funny at all. Equal time for us?",
"label": "Trump"
},
{
"text": "The failing @nytimes story is so totally wrong on transition. It is going so smoothly. Also, I have spoken to many foreign leaders.",
"label": "Trump"
},
{
"text": "Being at the Army - Navy Game was fantastic. There is nothing like the spirit in that stadium. A wonderful experience, and congrats to Army!",
"label": "Trump"
},
{
"text": "I will be going to Indiana on Thursday to make a major announcement concerning Carrier A.C. staying in Indianapolis. Great deal for workers!",
"label": "Trump"
},
{
"text": ".@CNN is so embarrassed by their total (100%) support of Hillary Clinton, and yet her loss in a landslide, that they don't know what to do.",
"label": "Trump"
},
{
"text": "'President-elect Donald J. Trump's CIA Director Garners Praise'\nhttps://t.co/UFdLWtwBEQ https://t.co/MrPaG7OziQ",
"label": "Staff"
},
{
"text": "Perhaps a new meeting will be set up with the @nytimes. In the meantime they continue to cover me inaccurately and with a nasty tone!",
"label": "Trump"
},
{
"text": "If the election were based on total popular vote I would have campaigned in N.Y. Florida and California and won even bigger and more easily",
"label": "Trump"
},
{
"text": "#MerryChristmas https://t.co/5GgDmJrGMS",
"label": "Staff"
},
{
"text": "As to the U.N., things will be different after Jan. 20th.",
"label": "Staff"
},
{
"text": "my presidency. Isn't this a ridiculous shame? He loves these kids, has raised millions of dollars for them, and now must stop. Wrong answer!",
"label": "Trump"
},
{
"text": "Join @AmerIcan32, founded by Hall of Fame legend @JimBrownNFL32 on 1/19/2017 in Washington, D.C.… https://t.co/9WJZ8iTCQV",
"label": "Staff"
},
{
"text": "My Administration will follow two simple rules: https://t.co/ZWk0j4H8Qy",
"label": "Staff"
},
{
"text": "I have not heard any of the pundits or commentators discussing the fact that I spent FAR LESS MONEY on the win than Hillary on the loss!",
"label": "Trump"
},
{
"text": "Merry Christmas and a very, very, very , very Happy New Year to everyone!",
"label": "Trump"
},
{
"text": "The terrorist who killed so many people in Germany said just before crime, \"by God's will we will slaughter you pigs, I swear, we will......",
"label": "Trump"
},
{
"text": "Thank you to Time Magazine and Financial Times for naming me \"Person of the Year\" - a great honor!",
"label": "Trump"
},
{
"text": "'Economists say Trump delivered hope' https://t.co/SjGBgglIuQ",
"label": "Staff"
},
{
"text": "I would have done even better in the election, if that is possible, if the winner was based on popular vote - but would campaign differently",
"label": "Trump"
},
{
"text": "Has anyone looked at the really poor numbers of @VanityFair Magazine. Way down, big trouble, dead! Graydon Carter, no talent, will be out!",
"label": "Trump"
},
{
"text": "TODAY WE MAKE AMERICA GREAT AGAIN!",
"label": "Trump"
},
{
"text": "Join me live in Hershey, Pennsylvania! \n#MakeAmericaGreatAgain \nLIVE: https://t.co/xEj6sZpb12 https://t.co/JWfGI1vlwW",
"label": "Staff"
},
{
"text": "Thank you NH! We will end illegal immigration, stop the drugs, deport all criminal aliens&save American lives! Watc… https://t.co/uxcazVkb32",
"label": "Staff"
},
{
"text": "Join me today in Wilmington, Ohio at 4pm: https://t.co/eCLECMkYLw\n\nTomorrow- Tampa, Florida at 10am: https://t.co/N9380pVmuM",
"label": "Staff"
},
{
"text": "Mika Brzezinski: Dem Criticism of Comey Reinforcing Idea ‘There’s Something There'\nhttps://t.co/EvBp0xESPN https://t.co/QIDBiDpat8",
"label": "Staff"
},
{
"text": "Watching the returns at 9:45pm. \n#ElectionNight #MAGA🇺🇸 https://t.co/HfuJeRZbod",
"label": "Staff"
},
{
"text": "Just landed in North Carolina- heading to the J.S. Dorton Arena. See you all soon! Lets #MakeAmericaGreatAgain! https://t.co/EUo0keWX1Y",
"label": "Staff"
},
{
"text": "'Kept me out of jail': Top DOJ official involved in Clinton probe represented her campaign chairman: https://t.co/QUZn97CEOq",
"label": "Staff"
},
{
"text": "So terrible that Crooked didn't report she got the debate questions from Donna Brazile, if that were me it would have been front page news!",
"label": "Staff"
},
{
"text": "The debates, especially the second and third, plus speeches and intensity of the large rallies, plus OUR GREAT SUPPORTERS, gave us the win!",
"label": "Staff"
},
{
"text": "There is no challenge too great, no dream outside of our reach! Thank you Selma, North Carolina!\n#ICYMI, watch here… https://t.co/8uIrhgYRsl",
"label": "Staff"
},
{
"text": "The @nytimes states today that DJT believes \"more countries should acquire nuclear weapons.\" How dishonest are they. I never said this!",
"label": "Trump"
},
{
"text": "Don't let up, keep getting out to vote - this election is FAR FROM OVER! We are doing well but there is much time left. GO FLORIDA!",
"label": "Trump"
},
{
"text": "Watch Coach Mike Ditka- a great guy and supporter tonight at 8pmE on #WattersWorld with @jessebwatters @FoxNews.",
"label": "Staff"
},
{
"text": "Join me in Denver, Colorado tonight at 9:30pm: https://t.co/LJYGIK7Mri\n\nNEW- Scranton, Pennsylvania Monday @ 5:30pm: https://t.co/BcErCtsPdF",
"label": "Staff"
},
{
"text": "#CrookedHillary is unfit to serve. https://t.co/bSuGvInNF1",
"label": "Staff"
},
{
"text": "Watching my beautiful wife, Melania, speak about our love of country and family. We will make you all very proud.… https://t.co/DiKmSnTlC2",
"label": "Staff"
},
{
"text": "Such a beautiful and important evening! The forgotten man and woman will never be forgotten again. We will all come together as never before",
"label": "Trump"
},
{
"text": "I will be watching the election results from Trump Tower in Manhattan with my family and friends. Very exciting!",
"label": "Trump"
},
{
"text": "'What I Like About Trump ... and Why You Need to Vote for Him'\nhttps://t.co/6rVuDUehZq",
"label": "Staff"
},
{
"text": "The so-called \"A\" list celebrities are all wanting tixs to the inauguration, but look what they did for Hillary, NOTHING. I want the PEOPLE!",
"label": "Trump"
},
{
"text": "Someone incorrectly stated that the phrase \"DRAIN THE SWAMP\" was no longer being used by me. Actually, we will always be trying to DTS.",
"label": "Trump"
},
{
"text": "We did it! Thank you to all of my great supporters, we just officially won the election (despite all of the distorted and inaccurate media).",
"label": "Trump"
},
{
"text": "Thank you Alabama! From now on, it’s going to be #AmericaFirst. Our goal is to bring back that wonderful phrase:… https://t.co/4UAazd7TmF",
"label": "Staff"
},
{
"text": "Thank you Wisconsin! My Administration will be focused on three very important words: jobs, jobs, jobs! Watch:… https://t.co/iEGWZLuiFE",
"label": "Staff"
},
{
"text": "Russians are playing @CNN and @NBCNews for such fools - funny to watch, they don't have a clue! @FoxNews totally gets it!",
"label": "Trump"
},
{
"text": "slaughter you. This is a purely religious threat, which turned into reality. Such hatred! When will the U.S., and all countries, fight back?",
"label": "Trump"
},
{
"text": "#ThankYouTour2016 \n\nTonight- Orlando, Florida \nTickets: https://t.co/JwQeccp79N\n\nTomorrow- Mobile, Alabama\nTickets:… https://t.co/Cq5AwcuzT9",
"label": "Staff"
},
{
"text": "We cannot continue to let Israel be treated with such total disdain and disrespect. They used to have a great friend in the U.S., but.......",
"label": "Trump"
},
{
"text": "President Obama campaigned hard (and personally) in the very important swing states, and lost.The voters wanted to MAKE AMERICA GREAT AGAIN!",
"label": "Trump"
},
{
"text": "The DJT Foundation, unlike most foundations, never paid fees, rent, salaries or any expenses. 100% of money goes to wonderful charities!",
"label": "Trump"
},
{
"text": "The resolution being considered at the United Nations Security Council regarding Israel should be vetoed....cont: https://t.co/s8rXKKZNF1",
"label": "Staff"
},
{
"text": "China steals United States Navy research drone in international waters - rips it out of water and takes it to China in unprecedented act.",
"label": "Staff"
},
{
"text": "Yes, it is true - Carlos Slim, the great businessman from Mexico, called me about getting together for a meeting. We met, HE IS A GREAT GUY!",
"label": "Trump"
},
{
"text": "Vladimir Putin said today about Hillary and Dems: \"In my opinion, it is humiliating. One must be able to lose with dignity.\" So true!",
"label": "Trump"
},
{
"text": "Australia, New Zealand, and more. I am always available to them. @nytimes is just upset that they looked like fools in their coverage of me.",
"label": "Trump"
},
{
"text": "We pause today to remember the 2,403 American heroes who selflessly gave their lives at Pearl Harbor 75 years ago...\nhttps://t.co/r5eRLR24Q3",
"label": "Staff"
},
{
"text": "ISIS is taking credit for the terrible stabbing attack at Ohio State University by a Somali refugee who should not have been in our country.",
"label": "Trump"
},
{
"text": "Fidel Castro is dead!",
"label": "Trump"
},
{
"text": "Great meetings will take place today at Trump Tower concerning the formation of the people who will run our government for the next 8 years.",
"label": "Trump"
},
{
"text": "Many people would like to see @Nigel_Farage represent Great Britain as their Ambassador to the United States. He would do a great job!",
"label": "Trump"
},
{
"text": "Will be working all weekend in choosing the great men and women who will be helping to MAKE AMERICA GREAT AGAIN!",
"label": "Trump"
},
{
"text": "Can you imagine if the election results were the opposite and WE tried to play the Russia/CIA card. It would be called conspiracy theory!",
"label": "Trump"
},
{
"text": "I thought that @CNN would get better after they failed so badly in their support of Hillary Clinton however, since election, they are worse!",
"label": "Trump"
},
{
"text": "I have always had a good relationship with Chuck Schumer. He is far smarter than Harry R and has the ability to get things done. Good news!",
"label": "Trump"
},
{
"text": "My transition team, which is working long hours and doing a fantastic job, will be seeing many great candidates today. #MAGA",
"label": "Trump"
},
{
"text": "I am not trying to get \"top level security clearance\" for my children. This was a typically false news story.",
"label": "Trump"
},
{
"text": "The F-35 program and cost is out of control. Billions of dollars can and will be saved on military (and other) purchases after January 20th.",
"label": "Trump"
},
{
"text": "Masa said he would never do this had we (Trump) not won the election!",
"label": "Staff"
},
{
"text": "Wisconsin and Pennsylvania have just certified my wins in those states. I actually picked up additional votes!",
"label": "Trump"
},
{
"text": "Will be interviewed on @FoxNews at 10:00 P.M. Enjoy!",
"label": "Trump"
},
{
"text": "Thank you Michigan. We are going to bring back your jobs & together, we will MAKE AMERICA GREAT AGAIN!\nWatch:… https://t.co/EyLOo26FqW",
"label": "Staff"
},
{
"text": "If the press would cover me accurately & honorably, I would have far less reason to \"tweet.\" Sadly, I don't know if that will ever happen!",
"label": "Staff"
},
{
"text": "fires its employees, builds a new factory or plant in the other country, and then thinks it will sell its product back into the U.S. ......",
"label": "Trump"
},
{
"text": "My thoughts and prayers are with those affected by the tragic storms and tornadoes in the Southeastern United States. Stay safe!",
"label": "Staff"
},
{
"text": "Look forward to going to Indiana tomorrow in order to be with the great workers of Carrier. They will sell many air conditioners!",
"label": "Trump"
},
{
"text": "during a general election. I, for one, am appalled that somebody that is the nominee of one of our two major parties would take that kind --",
"label": "Trump"
},
{
"text": "The meeting with the @nytimes is back on at 12:30 today. Look forward to it!",
"label": "Staff"
},
{
"text": "Reports by @CNN that I will be working on The Apprentice during my Presidency, even part time, are ridiculous & untrue - FAKE NEWS!",
"label": "Staff"
},
{
"text": ".@RudyGiuliani, one of the finest people I know and a former GREAT Mayor of N.Y.C., just took himself out of consideration for \"State\".",
"label": "Trump"
},
{
"text": "Thank you Louisiana! Get out & vote for John Kennedy tomorrow. Electing Kennedy will help enact our agenda on behal… https://t.co/sHXeyreEZI",
"label": "Staff"
},
{
"text": "Our great VPE, @mike_pence, is in Louisiana campaigning for John Kennedy for US Senate. John will be a tremendous help to us in Washington.",
"label": "Staff"
},
{
"text": "Getting ready to leave for the Great State of Indiana and meet the hard working and wonderful people of Carrier A.C.",
"label": "Trump"
},
{
"text": "'Jeff Sessions, a Fitting Selection for Attorney General'\nhttps://t.co/LjKTkAZSFy",
"label": "Staff"
},
{
"text": "I cancelled today's meeting with the failing @nytimes when the terms and conditions of the meeting were changed at the last moment. Not nice",
"label": "Trump"
},
{
"text": "The cast and producers of Hamilton, which I hear is highly overrated, should immediately apologize to Mike Pence for their terrible behavior",
"label": "Trump"
},
{
"text": "Wow, the @nytimes is losing thousands of subscribers because of their very poor and highly inaccurate coverage of the \"Trump phenomena\"",
"label": "Trump"
},
{
"text": "Just out according to @CNN: \"Utah officials report voting machine problems across entire country\"",
"label": "Trump"
},
{
"text": "Van Jones: ‘There Is A Crack in the Blue Wall’ — It Has to Do With Trade: https://t.co/BvEF9cC7o7",
"label": "Staff"
},
{
"text": "Thank you for the incredible support this morning Tampa, Florida! #ICYMI- watch here: https://t.co/q43kHf7MoE https://t.co/1GscFNaV4L",
"label": "Staff"
},
{
"text": "Thank you Orlando, Florida! We are just six days away from delivering justice for every forgotten man, woman and ch… https://t.co/LPXBQZ5AXt",
"label": "Staff"
},
{
"text": "After decades of lies and scandal, Crooked Hillary's corruption is closing in. #DrainTheSwamp! https://t.co/YivCacmkKq",
"label": "Staff"
},
{
"text": "Governor John Kasich of the GREAT, GREAT, GREAT State of Ohio called to congratulate me on the win. The people of Ohio were incredible!",
"label": "Trump"
},
{
"text": "'America must decide between failed policies or fresh perspective, a corrupt system or an outsider'\nhttps://t.co/ll8QIW9SqW",
"label": "Staff"
},
{
"text": "'Why Trump' https://t.co/RpwIYB7aOV",
"label": "Staff"
},
{
"text": "#MakeAmericaGreatAgain #6Days https://t.co/eHTGIEpFsm",
"label": "Staff"
},
{
"text": "Praying for the families of the two Iowa police who were ambushed this morning. An attack on those who keep us safe is an attack on us all.",
"label": "Staff"
},
{
"text": "Crooked Hillary should not be allowed to run for president. She deleted 33,000 e-mails AFTER getting a subpoena from U.S. Congress. RIGGED!",
"label": "Trump"
},
{
"text": "Wow, now leading in @ABC /@washingtonpost Poll 46 to 45. Gone up 12 points in two weeks, mostly before the Crooked Hillary blow-up!",
"label": "Trump"
},
{
"text": "LIVE on #Periscope: Join me for a few minutes in Pennsylvania. Get out & VOTE tomorrow. LETS #MAGA!! https://t.co/Ej0LmMK3YU",
"label": "Staff"
},
{
"text": "Starting tomorrow it's going to be #AmericaFirst! Thank you for a great morning Sarasota, Florida!\nWatch here:… https://t.co/ig62Kjkkvl",
"label": "Staff"
},
{
"text": "Thank you Michigan! This is a MOVEMENT that will never be seen again- it's our last chance to #DrainTheSwamp! Watch… https://t.co/cSdGkCFYRL",
"label": "Staff"
},
{
"text": "Thank you Concord, North Carolina! When WE win on November 8th, we are going to Washington, D.C. and we are going t… https://t.co/7j4MBn1Waf",
"label": "Staff"
},
{
"text": "'Podesta urged Clinton team to hand over emails after use of private server emerged' https://t.co/NYvVmoA8wl",
"label": "Staff"
},
{
"text": ".@DarrellIssa is a very good man. Help him win his congressional seat in California.",
"label": "Staff"
},
{
"text": "Jeb Bush, George W and George H.W. all called to express their best wishes on the win. Very nice!",
"label": "Trump"
},
{
"text": "Busy day planned in New York. Will soon be making some very important decisions on the people who will be running our government!",
"label": "Trump"
},
{
"text": "Love the fact that the small groups of protesters last night have passion for our great country. We will all come together and be proud!",
"label": "Trump"
},
{
"text": "VOTE TODAY! Go to https://t.co/MXrAxYnTjY to find your polling location. We are going to Make America Great Again!… https://t.co/KPQ5EY9VwQ",
"label": "Staff"
},
{
"text": "Big news to share in New Hampshire tonight! Polls looking great! See you soon.",
"label": "Staff"
},
{
"text": "Thank you for you support Virginia! In ONE DAY - get out and #VoteTrumpPence16! #ICYMI: https://t.co/Nid8qcFTwY https://t.co/WOsEcjM8sm",
"label": "Staff"
},
{
"text": "Thank you Iowa - Get out & #VoteTrumpPence16! \nhttps://t.co/HfihPERFgZ https://t.co/QsukELQmKb",
"label": "Staff"
},
{
"text": "Join me live in Reno, Nevada!\nhttps://t.co/T4bf1hrxaA https://t.co/EPqRXHa1CM",
"label": "Staff"
},
{
"text": "My wife, Melania, will be speaking in Pennsylvania this afternoon. So exciting, big crowds! I will be watching from North Carolina.",
"label": "Trump"
},
{
"text": "Clinton camp fumed when surrogate told supporters Clinton planned to betray labor on TPP post-election: \nhttps://t.co/ZZjbGDZP7e",
"label": "Staff"
},
{
"text": "Hillary Advisers Wanted Her To Avoid Supporting Israel When Talking To Democrats: https://t.co/y7m8iVU173",
"label": "Staff"
},
{
"text": "A fantastic day in D.C. Met with President Obama for first time. Really good meeting, great chemistry. Melania liked Mrs. O a lot!",
"label": "Trump"
},
{
"text": "Today we are going to win the great state of MICHIGAN and we are going to WIN back the White House! Thank you MI!… https://t.co/onRpEvzHrW",
"label": "Staff"
},
{
"text": "You can change your vote in six states. So, now that you see that Hillary was a big mistake, change your vote to MAKE AMERICA GREAT AGAIN!",
"label": "Trump"
},
{
"text": "Thank you for your incredible support Wisconsin and Governor @ScottWalker! It is time to #DrainTheSwamp & #MAGA!… https://t.co/gKBkKmTudn",
"label": "Staff"
},
{
"text": "not anymore. The beginning of the end was the horrible Iran deal, and now this (U.N.)! Stay strong Israel, January 20th is fast approaching!",
"label": "Trump"
},
{
"text": ".@NBCNews purposely left out this part of my nuclear qoute: \"until such time as the world comes to its senses regarding nukes.\" Dishonest!",
"label": "Trump"
},
{
"text": "We should tell China that we don't want the drone they stole back.- let them keep it!",
"label": "Trump"
},
{
"text": "The U.S. Consumer Confidence Index for December surged nearly four points to 113.7, THE HIGHEST LEVEL IN MORE THAN 15 YEARS! Thanks Donald!",
"label": "Trump"
},
{
"text": "Bill Clinton stated that I called him after the election. Wrong, he called me (with a very nice congratulations). He \"doesn't know much\" ...",
"label": "Trump"
},
{
"text": "Thank you Pennsylvania! Together, we are going to MAKE AMERICA GREAT AGAIN! Watch here: https://t.co/7R382qWfWS… https://t.co/yB6u5FEfHq",
"label": "Staff"
},
{
"text": "Happy Birthday @DonaldJTrumpJr!\nhttps://t.co/uRxyCD3hBz",
"label": "Staff"
},
{
"text": "Happy #Hanukkah https://t.co/UvZwtykV1E",
"label": "Staff"
},
{
"text": "My wonderful son, Eric, will no longer be allowed to raise money for children with cancer because of a possible conflict of interest with...",
"label": "Trump"
},
{
"text": "Well, we all did it, together! I hope the \"MOVEMENT\" fans will go to D.C. on Jan 20th for the swearing in. Let's set the all time record!",
"label": "Staff"
},
{
"text": "The world was gloomy before I won - there was no hope. Now the market is up nearly 10% and Christmas spending is over a trillion dollars!",
"label": "Staff"
},
{
"text": "Today there were terror attacks in Turkey, Switzerland and Germany - and it is only getting worse. The civilized world must change thinking!",
"label": "Trump"
},
{
"text": "Mobile, Alabama today at 3:00 P.M. Last rally of the year - \"THANK YOU ALABAMA AND THE SOUTH\" Biggest of all crowds expected, see you there!",
"label": "Trump"
},
{
"text": "#ThankYouTour2016 \n\nTue: West Allis, WI. \n\nThur: Hershey, PA. \n\nFri: Orlando, FL. \n\nSat: Mobile, AL. \n\nTickets:… https://t.co/OJ8S7iVzFx",
"label": "Staff"
},
{
"text": "Trump is going to be our President. We owe him an open mind and the chance to lead.\" So much time and money will be spent - same result! Sad",
"label": "Trump"
},
{
"text": ".@transition2017 update and policy plans for the first 100 days. https://t.co/HTgPXfPWeJ",
"label": "Staff"
},
{
"text": "I spent Friday campaigning with John Kennedy, of the Great State of Louisiana, for the U.S.Senate. The election is over - JOHN WON!",
"label": "Trump"
},
{
"text": "A great night in Fayetteville, North Carolina. Thank you! #ICYMI watch here: https://t.co/ZAuTgxKPpb https://t.co/EF9xRWmciA",
"label": "Staff"
},
{
"text": "Boeing is building a brand new 747 Air Force One for future presidents, but costs are out of control, more than $4 billion. Cancel order!",
"label": "Trump"
},
{
"text": "The President of Taiwan CALLED ME today to wish me congratulations on winning the Presidency. Thank you!",
"label": "Trump"
},
{
"text": "I am working hard, even on Thanksgiving, trying to get Carrier A.C. Company to stay in the U.S. (Indiana). MAKING PROGRESS - Will know soon!",
"label": "Trump"
},
{
"text": "The Theater must always be a safe and special place.The cast of Hamilton was very rude last night to a very good man, Mike Pence. Apologize!",
"label": "Trump"
},
{
"text": "Very organized process taking place as I decide on Cabinet and many other positions. I am the only one who knows who the finalists are!",
"label": "Trump"
},
{
"text": "Unless you catch \"hackers\" in the act, it is very hard to determine who was doing the hacking. Why wasn't this brought up before election?",
"label": "Trump"
},
{
"text": "I will be interviewed on the @TODAYshow at 7:30. Enjoy!",
"label": "Trump"
},
{
"text": "Hence, legal documents are being crafted which take me completely out of business operations. The Presidency is a far more important task!",
"label": "Trump"
},
{
"text": "of position.\" Then, separately she stated, \"He said something truly horrifying ... he refused to say that he would respect the results of --",
"label": "Trump"
},
{
"text": "A very interesting read. Unfortunately, so much is true.\nhttps://t.co/ER2BoM765M",
"label": "Staff"
},
{
"text": "If United Steelworkers 1999 was any good, they would have kept those jobs in Indiana. Spend more time working-less time talking. Reduce dues",
"label": "Trump"
},
{
"text": "It would have been much easier for me to win the so-called popular vote than the Electoral College in that I would only campaign in 3 or 4--",
"label": "Trump"
},
{
"text": "We need your vote. Go to the POLLS! Let's continue this MOVEMENT! Find your poll location: https://t.co/VMUdvi1tx1… https://t.co/zGOx74Ebhw",
"label": "Staff"
},
{
"text": "Thank you Reno, Nevada. \nNOTHING will stop us in our quest to MAKE AMERICA SAFE AND GREAT AGAIN! #AmericaFirst… https://t.co/A4eeHoCbGS",
"label": "Staff"
},
{
"text": "Thank you Ohio! VOTE so we can replace Obamacare and save healthcare for every family in the United States! Watch:… https://t.co/7CH8ZnGdOa",
"label": "Staff"
},
{
"text": "Join me in Wilmington, Ohio tomorrow at 4:00pm! It is time to #DrainTheSwamp! Tickets: https://t.co/eCLECM3nmW https://t.co/sb5irRxjxJ",
"label": "Staff"
},
{
"text": "Thank you Arlene! We will MAKE AMERICA SAFE AND GREAT AGAIN! \n#ImWithYou #DrainTheSwamp \nhttps://t.co/tSI0YP2LL9",
"label": "Staff"
},
{
"text": "This will prove to be a great time in the lives of ALL Americans. We will unite and we will win, win, win!",
"label": "Trump"
},
{
"text": "‘Must Act Immediately’: Clinton Charity Lawyer Told Execs They Were Breaking The Law\nhttps://t.co/hsi4qhqTV1",
"label": "Staff"