-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathtea_tweets.csv
More file actions
We can make this file beautiful and searchable if this error is corrected: Any value after quoted field isn't allowed in line 1.
1353 lines (1285 loc) · 313 KB
/
tea_tweets.csv
File metadata and controls
1353 lines (1285 loc) · 313 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
"";"text";"favorited";"favoriteCount";"replyToSN";"created";"truncated";"replyToSID";"id";"replyToUID";"statusSource";"screenName";"retweetCount";"isRetweet";"retweeted";"longitude";"latitude"
"1";"It's #Chai time and we have delicious Crispy #Rava #Dosa for our evening breakfast. What are you eating ? #teatime… https://t.co/GVvpxcJBUg";FALSE;0;NA;2016-10-25 10:39:19;TRUE;NA;"790865317308223490";NA;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";"culture_recipe";0;FALSE;FALSE;NA;NA
"2";"RT @fieldsofvintage: #ChristmasTree #TeapotSet / Creamer and Sugar #christmasteapot #teatime #teasetting https://t.co/8IZrG7O0zu #etsy #ho…";FALSE;0;NA;2016-10-25 10:22:22;FALSE;NA;"790861049104826368";NA;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";"founditauctions";1;TRUE;FALSE;NA;NA
"3";"RT @laurieshan: #CHILDHOOD art Print #Princess,#teatime #Beach #Kitty #Dolls #pretendplay #LaurieShanholtzer https://t.co/HeAU43x6dy https:…";FALSE;0;NA;2016-10-25 10:20:26;FALSE;NA;"790860562741755904";NA;"<a href=""http://twitter.com"" rel=""nofollow"">Twitter Web Client</a>";"carmelabny";41;TRUE;FALSE;NA;NA
"4";"#ChristmasTree #TeapotSet / Creamer and Sugar #christmasteapot #teatime #teasetting https://t.co/8IZrG7O0zu #etsy… https://t.co/oHNuyFgR2e";FALSE;0;NA;2016-10-25 10:20:07;TRUE;NA;"790860485197434880";NA;"<a href=""https://www.socialjukebox.com"" rel=""nofollow"">The Social Jukebox</a>";"fieldsofvintage";1;FALSE;FALSE;NA;NA
"5";"Cream Scone ??
#teatime #teabreak https://t.co/TrrefkuHI1";FALSE;1;NA;2016-10-25 10:18:18;FALSE;NA;"790860026281922560";NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";"cafepurenorwich";0;FALSE;FALSE;NA;NA
"6";"RT @laurieshan: #CHILDHOOD art Print #Princess,#teatime #Beach #Kitty #Dolls #pretendplay #LaurieShanholtzer https://t.co/HeAU43x6dy https:…";FALSE;0;NA;2016-10-25 10:17:14;FALSE;NA;"790859757766733824";NA;"<a href=""http://twitter.com"" rel=""nofollow"">Twitter Web Client</a>";"dinesh_de_silva";41;TRUE;FALSE;NA;NA
"7";"^______^ ~ Thank you ~ always enjoy my life ~
#kaohsiung #lunch #teatime #chocolate #caffebird #smile #thank #you… https://t.co/EaCgGGZLJZ";FALSE;0;NA;2016-10-25 10:14:49;TRUE;NA;"790859151467352064";NA;"<a href=""http://twitter.com/#!/download/ipad"" rel=""nofollow"">Twitter for iPad</a>";"caffebird";0;FALSE;FALSE;NA;NA
"8";"RT @TeailyTea: Could Go For A Cup Of Tea Right About Now? <ed><U+00A0><U+00BD><ed><U+00B2><U+0095>#tea #teaofthemonth #teatime #blacktea #greentea #tealover #teavana https://t.co…";FALSE;0;NA;2016-10-25 10:14:43;FALSE;NA;"790859124804235265";NA;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";"hikariphotolove";1;TRUE;FALSE;NA;NA
"9";"RT @TeailyTea: Could Go For A Cup Of Tea Right About Now? <ed><U+00A0><U+00BD><ed><U+00B2><U+0095>#tea #teaofthemonth #teatime #blacktea #greentea #tealover #teavana https://t.co…";FALSE;0;NA;2016-10-25 10:14:17;FALSE;NA;"790859014082965504";NA;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";"hikariphotolove";1;TRUE;FALSE;NA;NA
"10";"Tea time be fun and exciting !!
#snacks #TeaTime #Vadodara #gujarat
Order At:- https://t.co/0y2famsI3v https://t.co/fKcqUdcO7i";FALSE;0;NA;2016-10-25 10:11:57;FALSE;NA;"790858430563094528";NA;"<a href=""http://twitter.com"" rel=""nofollow"">Twitter Web Client</a>";"muffinscakess";0;FALSE;FALSE;NA;NA
"11";"RT @cupandowl: Lovely #Paragon teacup and saucer #etsy #giftideas #gifts #teaparty #teatime #vintage #ShoppersHour https://t.co/tlT9Ifz2yA";FALSE;0;NA;2016-10-25 10:08:01;FALSE;NA;"790857439423766528";NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";"midler_helen";7;TRUE;FALSE;NA;NA
"12";"RT @fieldsofvintage: #ChristmasTree #TeapotSet / Creamer and Sugar #christmasteapot #teatime #teasetting https://t.co/8IZrG7O0zu #etsy #ho…";FALSE;0;NA;2016-10-25 10:05:55;FALSE;NA;"790856909490302976";NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";"midler_helen";4;TRUE;FALSE;NA;NA
"13";"RT @ImpactLVN: 2/2 here in Japan. @SantanaGarrett_ #TeaTime #TagTeam #WomensWrestling #Stardom @we_are_stardom https://t.co/ubCRbaul35";FALSE;0;NA;2016-10-25 10:02:59;FALSE;NA;"790856173066956800";NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";"abel_jr82";30;TRUE;FALSE;NA;NA
"14";"RT @theeastate: @JoannaBlythman pop along to #teatime community dinner we run with @GlasgowNE - access to fresh, local, quality food. A goo…";FALSE;0;NA;2016-10-25 09:55:28;FALSE;NA;"790854281280839681";NA;"<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for i<U+039F>S</a>";"BigLunchScotlnd";1;TRUE;FALSE;NA;NA
"15";"Deffo 4 for me!! #tea #ilovetea #teatime #milkytea #onesugar https://t.co/VVpgCqR2qz";FALSE;1;NA;2016-10-25 09:50:04;FALSE;NA;"790852922804436992";NA;"<a href=""http://bufferapp.com"" rel=""nofollow"">Buffer</a>";"Charlarooz";0;FALSE;FALSE;NA;NA
"16";"Tea Time in Australia #TeaTime https://t.co/dHEK3p3Kfy";FALSE;1;NA;2016-10-25 09:45:29;FALSE;NA;"790851767055646720";NA;"<a href=""http://twitter.com"" rel=""nofollow"">Twitter Web Client</a>";"nwp_w";0;FALSE;FALSE;NA;NA
"17";"Could Go For A Cup Of Tea Right About Now? <ed><U+00A0><U+00BD><ed><U+00B2><U+0095>#tea #teaofthemonth #teatime #blacktea #greentea #tealover #teavana https://t.co/ZROCDkKXfO";FALSE;2;NA;2016-10-25 09:33:48;FALSE;NA;"790848829599916032";NA;"<a href=""http://twitter.com"" rel=""nofollow"">Twitter Web Client</a>";"TeailyTea";1;FALSE;FALSE;NA;NA
"18";"RT @CDarkThings: We've got a busy week of rehearsals ahead of our @jacksons_lane show. but right now it's #teatime! #puppetsknowbest #Melan…";FALSE;0;NA;2016-10-25 09:32:14;FALSE;NA;"790848432755859456";NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";"LJOrmiston";1;TRUE;FALSE;NA;NA
"19";"We've got a busy week of rehearsals ahead of our @jacksons_lane show. but right now it's #teatime! #puppetsknowbest… https://t.co/T9DwJtc2SL";FALSE;2;NA;2016-10-25 09:28:30;TRUE;NA;"790847496163618817";NA;"<a href=""http://twitter.com"" rel=""nofollow"">Twitter Web Client</a>";"CDarkThings";1;FALSE;FALSE;NA;NA
"20";"#teatime at @Flipconnect, Jamie has made giant #bourbon and #custardcream for #biscuitweek #GBBO #telecom #baking https://t.co/jVVo5LDrCM";FALSE;1;NA;2016-10-25 09:27:42;FALSE;NA;"790847294346260481";NA;"<a href=""http://twitter.com"" rel=""nofollow"">Twitter Web Client</a>";"Flipconnect";0;FALSE;FALSE;NA;NA
"21";"RT @PraanaAu: Many of our herbal teas are delicately infused with green tea.
#teatime
#greentea https://t.co/kivNlFrqZh";FALSE;0;NA;2016-10-25 09:15:34;FALSE;NA;"790844239680770049";NA;"<a href=""https://roundteam.co"" rel=""nofollow"">RoundTeam</a>";"MatchaDrinkers";1;TRUE;FALSE;NA;NA
"22";"Looking forward to meeting more students today @Uni_of_Essex but first, tea time! #starbucks #TeaTime #Tazo #grads… https://t.co/EbznsSsdHa";FALSE;0;NA;2016-10-25 09:14:50;TRUE;NA;"790844056108687361";NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";"MarkelUni_UK";0;FALSE;FALSE;NA;NA
"23";"#RoyaleGiveaways - #Win a #casaWare Serenity 7-Piece #Tea Pot Set $70 value #LaPrimaShops #Teatime Enter Daily https://t.co/YvTZCIHi27";FALSE;0;NA;2016-10-25 09:14:30;FALSE;NA;"790843971614441472";NA;"<a href=""http://linkis.com"" rel=""nofollow"">Put your button on any page! </a>";"SarahArellano14";0;FALSE;FALSE;NA;NA
"24";"Many of our herbal teas are delicately infused with green tea.
#teatime
#greentea https://t.co/kivNlFrqZh";FALSE;0;NA;2016-10-25 09:11:25;FALSE;NA;"790843193231192064";NA;"<a href=""http://www.facebook.com/twitter"" rel=""nofollow"">Facebook</a>";"PraanaAu";1;FALSE;FALSE;NA;NA
"25";"@JoannaBlythman pop along to #teatime community dinner we run with @GlasgowNE - access to fresh, local, quality food. A good starting point?";FALSE;4;"JoannaBlythman";2016-10-25 09:06:44;FALSE;"790817595356250113";"790842016989122560";"423438598";"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";"theeastate";1;FALSE;FALSE;NA;NA
"26";"RT @handmadetea: Lovely quote from William Ewart Gladstone <U+2615>#looseleaftea #tea #teatime #teacup #<U+2615> https://t.co/aeQlhDcg3B";FALSE;0;NA;2016-10-25 09:04:20;FALSE;NA;"790841414397464577";NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";"RenaAppletea";21;TRUE;FALSE;NA;NA
"27";"RT @handmadetea: ""Rainy days should be spent at home with a cup of tea and a good book."" - Bill Watterson #looseleaftea #tea #teatime https…";FALSE;0;NA;2016-10-25 09:04:17;FALSE;NA;"790841399100907521";NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";"RenaAppletea";25;TRUE;FALSE;NA;NA
"28";"RT @sylvanianshop: Grandma Hazel loves to have a #JammieDodger with her morning cup of tea!
#SylvanianShop #SylvanianFamilies #Tea #teatime…";FALSE;0;NA;2016-10-25 09:00:24;FALSE;NA;"790840423602413568";NA;"<a href=""https://mobile.twitter.com"" rel=""nofollow"">Mobile Web (M5)</a>";"sylvaniantime";3;TRUE;FALSE;NA;NA
"29";"Won't you have tea with me?
#strawberrytea #teatime https://t.co/CIJVE9hUcc";FALSE;2;NA;2016-10-25 08:49:01;FALSE;NA;"790837558678659072";NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";"RenaAppletea";0;FALSE;FALSE;NA;NA
"30";"The finest of tea served to relax you after a well-travelled journey! At Niranta, we are always ready to serve.… https://t.co/c8kUyXJ7co";FALSE;1;NA;2016-10-25 08:30:55;TRUE;NA;"790833004226772992";NA;"<a href=""http://www.hootsuite.com"" rel=""nofollow"">Hootsuite</a>";"NirantaHotel";0;FALSE;FALSE;NA;NA
"31";"Good morning #TeaTime https://t.co/lTOd68wP2d";FALSE;3;NA;2016-10-25 08:20:10;FALSE;NA;"790830297340342272";NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";"MissStClairxox";0;FALSE;FALSE;NA;NA
"32";"Nothing more relaxing than a nice cup of tea! We totally agree with you @thetraineeteacher
#Teatime #Breakfast… https://t.co/2WNwo5HECT";FALSE;1;NA;2016-10-25 08:19:27;TRUE;NA;"790830116351926272";NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";"CheeseCo4";0;FALSE;FALSE;NA;NA
"33";"#RoyaleGiveaways - #Win a #casaWare Serenity 7-Piece #Tea Pot Set $70 value #LaPrimaShops #Teatime Enter Daily https://t.co/s4n6OCbQLS";FALSE;0;NA;2016-10-25 08:17:45;FALSE;NA;"790829687937335296";NA;"<a href=""http://twitter.com"" rel=""nofollow"">Twitter Web Client</a>";"flyingping";0;FALSE;FALSE;NA;NA
"34";"RT @TeailyTea: Could Go For A Cup Of Tea Right About Now? <ed><U+00A0><U+00BD><ed><U+00B2><U+0095>#tea #teaofthemonth #teatime #blacktea #greentea #tealover #teavana https://t.co…";FALSE;0;NA;2016-10-25 08:05:28;FALSE;NA;"790826597448192000";NA;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";"373_5963";2;TRUE;FALSE;NA;NA
"35";"RT @TeailyTea: Could Go For A Cup Of Tea Right About Now? <ed><U+00A0><U+00BD><ed><U+00B2><U+0095>#tea #teaofthemonth #teatime #blacktea #greentea #tealover #teavana https://t.co…";FALSE;0;NA;2016-10-25 08:05:22;FALSE;NA;"790826574836662272";NA;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";"373_5963";2;TRUE;FALSE;NA;NA
"36";"Repost @heavy_cat_ Tea @TheBalcon for the best start of your day! Good morning classy #LondonLife, it's #TeaTime https://t.co/95qWSoSns9";FALSE;4;NA;2016-10-25 08:04:54;FALSE;NA;"790826456343535616";NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";"TheBalcon";0;FALSE;FALSE;NA;NA
"37";"Dirty Pretty Things <ed><U+00A0><U+00BD><ed><U+00B2><U+0095> there, I'm in Love. #afternoonGrind #bookLove #teaTime #dirtyprettythings… https://t.co/NvMQwNWaFG";FALSE;0;NA;2016-10-25 07:51:56;FALSE;NA;"790823194080972800";NA;"<a href=""http://instagram.com"" rel=""nofollow"">Instagram</a>";"iamerikajaneO";0;FALSE;FALSE;NA;NA
"38";"RT @cupandowl: Lovely #Paragon teacup and saucer #etsy #giftideas #gifts #teaparty #teatime #vintage #ShoppersHour https://t.co/tlT9Ifz2yA";FALSE;0;NA;2016-10-25 07:35:59;FALSE;NA;"790819179066757120";NA;"<a href=""https://roundteam.co"" rel=""nofollow"">RoundTeam</a>";"CranberryManor";7;TRUE;FALSE;NA;NA
"39";"RT @cupandowl: Lovely #Paragon teacup and saucer #etsy #giftideas #gifts #teaparty #teatime #vintage #ShoppersHour https://t.co/tlT9Ifz2yA";FALSE;0;NA;2016-10-25 07:30:05;FALSE;NA;"790817692747956224";NA;"<a href=""http://twitter.com"" rel=""nofollow"">Twitter Web Client</a>";"labelladiva";7;TRUE;FALSE;NA;NA
"40";"RT @CocoBarclay: Lovely review of the @Quaintlyuk tea box that included our tea wallet! Read it below #TeaTime #gift #WantOne
https://t.co…";FALSE;0;NA;2016-10-25 07:29:53;FALSE;NA;"790817643129348097";NA;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";"Quaintlyuk";1;TRUE;FALSE;NA;NA
"41";"RT @cupandowl: Lovely #Paragon teacup and saucer #etsy #giftideas #gifts #teaparty #teatime #vintage #ShoppersHour https://t.co/tlT9Ifz2yA";FALSE;0;NA;2016-10-25 07:11:31;FALSE;NA;"790813020867944448";NA;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";"MyFabricHeaven";7;TRUE;FALSE;NA;NA
"42";"Lovely review of the @Quaintlyuk tea box that included our tea wallet! Read it below #TeaTime #gift #WantOne
https://t.co/JFLmCaU8YZ";FALSE;1;NA;2016-10-25 07:09:56;FALSE;NA;"790812621515685888";NA;"<a href=""https://mobile.twitter.com"" rel=""nofollow"">Mobile Web (M5)</a>";"CocoBarclay";1;FALSE;FALSE;NA;NA
"43";"Not bad... dexquisiteid
#teatime #japanese #tea #latepost @ D'… https://t.co/axZRwop3Bf";FALSE;1;NA;2016-10-25 07:05:41;FALSE;NA;"790811553041821696";NA;"<a href=""http://instagram.com"" rel=""nofollow"">Instagram</a>";"jeffrey_alxndr";0;FALSE;FALSE;NA;NA
"44";"Tasty Pastry Party. (3x)<ed><U+00A0><U+00BD><ed><U+00B8><U+009B>
#food #photography #teatime #home
#vsco #vscocam #love #pastry… https://t.co/XiiXXijULf";FALSE;1;NA;2016-10-25 07:05:30;FALSE;NA;"790811506858418176";NA;"<a href=""http://instagram.com"" rel=""nofollow"">Instagram</a>";"JasmineMaeRayos";0;FALSE;FALSE;NA;NA
"45";"That's all the time we have for #TeaTimeWithTita. Tune in every Tuesday and Thursday from 1-3 pm for more #TeaTime.";FALSE;4;NA;2016-10-25 07:01:24;FALSE;NA;"790810476024213504";NA;"<a href=""http://twitter.com"" rel=""nofollow"">Twitter Web Client</a>";"MAGISRadio";0;FALSE;FALSE;NA;NA
"46";"RT @cupandowl: 8 Gorgeous pink rose plates by Royal Stafford #etsy #etsyfinds #giftideas #etsysocial #vintage #teaparty #teatime https://t.…";FALSE;0;NA;2016-10-25 06:55:39;FALSE;NA;"790809028653899776";NA;"<a href=""http://twitter.com/#!/download/ipad"" rel=""nofollow"">Twitter for iPad</a>";"nancyandnell1";13;TRUE;FALSE;NA;NA
"47";"""Marks and Spencer is the best place for a tito and a tita."" #TeaTime";FALSE;0;NA;2016-10-25 06:54:09;FALSE;NA;"790808651086782464";NA;"<a href=""http://twitter.com"" rel=""nofollow"">Twitter Web Client</a>";"MAGISRadio";0;FALSE;FALSE;NA;NA
"48";"RT @cupandowl: 8 Gorgeous pink rose plates by Royal Stafford #etsy #etsyfinds #giftideas #etsysocial #vintage #teaparty #teatime https://t.…";FALSE;0;NA;2016-10-25 06:51:46;FALSE;NA;"790808050164785152";NA;"<a href=""http://twitter.com/#!/download/ipad"" rel=""nofollow"">Twitter for iPad</a>";"kentskrafts";13;TRUE;FALSE;NA;NA
"49";"""If you have nothing good to say online, then don't say anything at all."" #TeaTime.";FALSE;2;NA;2016-10-25 06:51:34;FALSE;NA;"790808001468731392";NA;"<a href=""http://twitter.com"" rel=""nofollow"">Twitter Web Client</a>";"MAGISRadio";0;FALSE;FALSE;NA;NA
"50";"earthern cup me chai pine ka maja hi kuch aur h boss¢<U+FE0F> #tea #teatime #tealovers <U+2615><U+FE0F> #nofilter #office #iphone6 click… https://t.co/xcAqeLfR2K";FALSE;1;NA;2016-10-25 06:50:54;TRUE;NA;"790807834875211778";NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";"myrjvedangee";0;FALSE;FALSE;NA;NA
"51";"Hand painted flower tea bowls by Okabe Michiko #Arita #ceramics #teacup #sencha #teatime #… https://t.co/SJ3LGqMLYR https://t.co/E8vDEBAoil";FALSE;0;NA;2016-10-25 06:46:22;FALSE;NA;"790806693265436672";NA;"<a href=""http://ifttt.com"" rel=""nofollow"">IFTTT</a>";"ArtisticNippon";0;FALSE;FALSE;NA;NA
"52";"RT @truehoneyteas: Like #peppermint #tea?! Get some Belmont Blend Peppermint, 50% off with coupon code BELBLEND. #teatime #whatadeal https:…";FALSE;0;NA;2016-10-25 06:40:58;FALSE;NA;"790805332092030976";NA;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";"Angellaxmi_11";16;TRUE;FALSE;NA;NA
"53";"RT @HealthyUNow: Ever get stumped at what kind of tea to order? This should help. #TeaTime #Nutrition https://t.co/cHXcKaOfOQ";FALSE;0;NA;2016-10-25 06:34:04;FALSE;NA;"790803596187168768";NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";"pathway2pink";4;TRUE;FALSE;NA;NA
"54";"#RoyaleGiveaways - #Win a #casaWare Serenity 7-Piece #Tea Pot Set $70 value #LaPrimaShops #Teatime Enter Daily https://t.co/QoMiLnXLMy";FALSE;1;NA;2016-10-25 06:30:58;FALSE;NA;"790802815903936512";NA;"<a href=""http://twitter.com"" rel=""nofollow"">Twitter Web Client</a>";"eltacosdepastor";0;FALSE;FALSE;NA;NA
"55";"How do you feel about Mocha Uson? Tweet us your answers using the #TeaTime.";FALSE;0;NA;2016-10-25 06:26:33;FALSE;NA;"790801705587777536";NA;"<a href=""http://twitter.com"" rel=""nofollow"">Twitter Web Client</a>";"MAGISRadio";0;FALSE;FALSE;NA;NA
"56";"RT @cupandowl: Lovely autumn floral teacup&saucers ON SALE! #teaparty #teatime #vintage #etsy #etsyfinds #shoppershour #giftsets https://t.…";FALSE;0;NA;2016-10-25 06:25:41;FALSE;NA;"790801484904407042";NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";"nerakmugnet";8;TRUE;FALSE;NA;NA
"57";"#RoyaleGiveaways - #Win a #casaWare Serenity 7-Piece #Tea Pot Set $70 value #LaPrimaShops #Teatime Enter Daily https://t.co/d19xJtNxT5";FALSE;0;NA;2016-10-25 06:08:46;FALSE;NA;"790797228990267392";NA;"<a href=""http://twitter.com"" rel=""nofollow"">Twitter Web Client</a>";"PhilanthropicHR";0;FALSE;FALSE;NA;NA
"58";"RT @cupandowl: Lovely Manitoba crocus teacup&saucer #Manitoba #Canada #etsy #etsyCanada #vintage #teatime #gifts #giftideas https://t.co/t3…";FALSE;0;NA;2016-10-25 06:06:25;FALSE;NA;"790796640026136576";NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";"nerakmugnet";5;TRUE;FALSE;NA;NA
"59";"RT @cupandowl: 8 Gorgeous pink rose plates by Royal Stafford #etsy #etsyfinds #giftideas #etsysocial #vintage #teaparty #teatime https://t.…";FALSE;0;NA;2016-10-25 06:05:14;FALSE;NA;"790796341714653184";NA;"<a href=""http://twitter.com"" rel=""nofollow"">Twitter Web Client</a>";"Sophinegiam";13;TRUE;FALSE;NA;NA
"60";"@LeauFaavae who? What? When? Where? Why? How? <ed><U+00A0><U+00BD><ed><U+00B8><U+0082> #TeaTime";FALSE;0;"LeauFaavae";2016-10-25 05:57:22;FALSE;"790779580755746816";"790794362753921024";"2362955761";"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";"shaeleau";0;FALSE;FALSE;NA;NA
"61";"Bit better rainy morning! ;)
.
X
.
#tea #teatime #instatea #tealife #ilovetea #teaaddict… https://t.co/vvEaOIctLT";FALSE;1;NA;2016-10-25 05:56:51;FALSE;NA;"790794230662856704";NA;"<a href=""http://instagram.com"" rel=""nofollow"">Instagram</a>";"Ramm_777";0;FALSE;FALSE;"8.71363637";"50.58489887"
"62";"I know it's late but I'm craving a cup of pomegranate green tea #teatime #random";FALSE;0;NA;2016-10-25 05:46:27;FALSE;NA;"790791615489142784";NA;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";"ssmahrouka";0;FALSE;FALSE;NA;NA
"63";"Good morning, its #TeaTime and time of #peace <ed><U+00A0><U+00BC><ed><U+00BC><U+008D><ed><U+00A0><U+00BC><ed><U+00BC><U+008E><ed><U+00A0><U+00BC><ed><U+00BC><U+008F>#please https://t.co/guWMGSi9oy";FALSE;0;NA;2016-10-25 05:45:25;FALSE;NA;"790791352086892544";NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";"murubella";0;FALSE;FALSE;NA;NA
"64";"It's getting colder outside - time for a delicious cup of tea <U+2615><U+FE0F> #teatime #gentswithstyle #highlife #dapper #dandy… https://t.co/R8InDoiadj";FALSE;2;NA;2016-10-25 05:45:03;TRUE;NA;"790791260047024128";NA;"<a href=""http://bufferapp.com"" rel=""nofollow"">Buffer</a>";"chyvary";0;FALSE;FALSE;NA;NA
"65";"RT @cupandowl: 8 Gorgeous pink rose plates by Royal Stafford #etsy #etsyfinds #giftideas #etsysocial #vintage #teaparty #teatime https://t.…";FALSE;0;NA;2016-10-25 05:39:57;FALSE;NA;"790789975906197504";NA;"<a href=""http://twitter.com/#!/download/ipad"" rel=""nofollow"">Twitter for iPad</a>";"Brumbleboutique";13;TRUE;FALSE;NA;NA
"66";"RT @fieldsofvintage: #ChristmasTree #TeapotSet / Creamer and Sugar #christmasteapot #teatime #teasetting https://t.co/8IZrG7O0zu #etsy #ho…";FALSE;0;NA;2016-10-25 05:37:57;FALSE;NA;"790789476410793984";NA;"<a href=""https://mobile.twitter.com"" rel=""nofollow"">Mobile Web (M5)</a>";"thriftyfifty6";4;TRUE;FALSE;NA;NA
"67";"#tea with #chagamushroom - the strongest #health promoting #herb <ed><U+00A0><U+00BC><ed><U+00BD><U+0084><ed><U+00A0><U+00BC><ed><U+00BD><U+00B5><ed><U+00A0><U+00BC><ed><U+00BC><U+00BF>https://t.co/35uA8lzv5n #TuesdayMotivation… https://t.co/VefmdFV9zF";FALSE;2;NA;2016-10-25 05:35:39;TRUE;NA;"790788896628019200";NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";"ChagaTeaTwi";0;FALSE;FALSE;NA;NA
"68";"RT @cupandowl: 8 Gorgeous pink rose plates by Royal Stafford #etsy #etsyfinds #giftideas #etsysocial #vintage #teaparty #teatime https://t.…";FALSE;0;NA;2016-10-25 05:25:50;FALSE;NA;"790786424073322496";NA;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";"stanrails_store";13;TRUE;FALSE;NA;NA
"69";"RT @fieldsofvintage: #ChristmasTree #TeapotSet / Creamer and Sugar #christmasteapot #teatime #teasetting https://t.co/8IZrG7O0zu #etsy #ho…";FALSE;0;NA;2016-10-25 05:24:14;FALSE;NA;"790786022053249024";NA;"<a href=""http://twitter.com"" rel=""nofollow"">Twitter Web Client</a>";"BCsBargainBin";4;TRUE;FALSE;NA;NA
"70";"RT @fieldsofvintage: #ChristmasTree #TeapotSet / Creamer and Sugar #christmasteapot #teatime #teasetting https://t.co/8IZrG7O0zu #etsy #ho…";FALSE;0;NA;2016-10-25 05:23:52;FALSE;NA;"790785928897769472";NA;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";"eclectorium";4;TRUE;FALSE;NA;NA
"71";"#ChristmasTree #TeapotSet / Creamer and Sugar #christmasteapot #teatime #teasetting https://t.co/8IZrG7O0zu #etsy… https://t.co/RexCijcmNS";FALSE;1;NA;2016-10-25 05:20:04;TRUE;NA;"790784974991556608";NA;"<a href=""https://www.socialjukebox.com"" rel=""nofollow"">The Social Jukebox</a>";"fieldsofvintage";4;FALSE;FALSE;NA;NA
"72";"Little happiness in the afternoon!
#Taichung #Teatime #Michelin #Dessert #CJSJ https://t.co/AdCOfMaOek";FALSE;1;NA;2016-10-25 05:18:57;FALSE;NA;"790784691959767040";NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";"Pomeloyiu";0;FALSE;FALSE;NA;NA
"73";"Tea time while i watch x men with my dad <U+2615><U+FE0F><U+FE0F>¢<U+FE0F> #tea #teatime #pepperminttea #organic #herbal https://t.co/fbIYUs8XNc";FALSE;1;NA;2016-10-25 05:06:23;FALSE;NA;"790781531102949376";NA;"<a href=""http://instagram.com"" rel=""nofollow"">Instagram</a>";"RunnerS93";0;FALSE;FALSE;NA;NA
"74";"RT @cupandowl: 8 Gorgeous pink rose plates by Royal Stafford #etsy #etsyfinds #giftideas #etsysocial #vintage #teaparty #teatime https://t.…";FALSE;0;NA;2016-10-25 04:56:06;FALSE;NA;"790778941028044800";NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";"KapomCrafts";13;TRUE;FALSE;NA;NA
"75";"RT @cupandowl: Lovely #Paragon teacup and saucer #etsy #giftideas #gifts #teaparty #teatime #vintage #ShoppersHour https://t.co/tlT9Ifz2yA";FALSE;0;NA;2016-10-25 04:55:19;FALSE;NA;"790778745141420032";NA;"<a href=""https://mobile.twitter.com"" rel=""nofollow"">Mobile Web (M5)</a>";"SuninVIRGOEtsy";7;TRUE;FALSE;NA;NA
"76";"RT @LouiseTagulao: There are worse ways to spend a rainy Monday evening at home <ed><U+00A0><U+00BC><ed><U+00BF><U+00A1><ed><U+00A0><U+00BD><ed><U+00B2><U+00A6> <U+2602>#macaron #teatime #monday #cozy @thierrychocolat https:…";FALSE;0;NA;2016-10-25 04:55:01;FALSE;NA;"790778669987794944";NA;"<a href=""http://www.github.com/lashgar"" rel=""nofollow"">citynowyvr</a>";"nowyvr";2;TRUE;FALSE;NA;NA
"77";"RT @LouiseTagulao: There are worse ways to spend a rainy Monday evening at home <ed><U+00A0><U+00BC><ed><U+00BF><U+00A1><ed><U+00A0><U+00BD><ed><U+00B2><U+00A6> <U+2602>#macaron #teatime #monday #cozy @thierrychocolat https:…";FALSE;0;NA;2016-10-25 04:45:42;FALSE;NA;"790776323136376832";NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";"thierrychocolat";2;TRUE;FALSE;NA;NA
"78";"RT @cupandowl: Gorgeous green teacup and saucer #etsy #giftideas #teaparty #teatime #vintage #teacup #etsychaching #gifts https://t.co/4IOs…";FALSE;0;NA;2016-10-25 04:31:16;FALSE;NA;"790772693461106689";NA;"<a href=""http://twitter.com/#!/download/ipad"" rel=""nofollow"">Twitter for iPad</a>";"KimBlose";1;TRUE;FALSE;NA;NA
"79";"#RoyaleGiveaways - #Win a #casaWare Serenity 7-Piece #Tea Pot Set $70 value #LaPrimaShops #Teatime Enter Daily https://t.co/UNRkGRaLiB";FALSE;1;NA;2016-10-25 04:27:01;FALSE;NA;"790771624656179201";NA;"<a href=""http://linkis.com"" rel=""nofollow"">Put your button on any page! </a>";"wblack1125";0;FALSE;FALSE;NA;NA
"80";"#RoyaleGiveaways - #Win a #casaWare Serenity 7-Piece #Tea Pot Set $70 value #LaPrimaShops #Teatime Enter Daily https://t.co/UotM4P1GJK";FALSE;1;NA;2016-10-25 04:24:25;FALSE;NA;"790770968549593088";NA;"<a href=""http://twitter.com"" rel=""nofollow"">Twitter Web Client</a>";"PatShearin";0;FALSE;FALSE;NA;NA
"81";"Empty yourself & let the universe fill you #whatmyteasays #teatime #yogi";FALSE;2;NA;2016-10-25 04:10:32;FALSE;NA;"790767476841783296";NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";"jon_geez";0;FALSE;FALSE;NA;NA
"82";"Pretty blue ""Vintage Rose"" #tea set on #eBay: https://t.co/ZkIJFWC2Vs #teapot #teacup #teaset #teatime";FALSE;1;NA;2016-10-25 04:10:14;FALSE;NA;"790767401277198336";NA;"<a href=""http://www.hootsuite.com"" rel=""nofollow"">Hootsuite</a>";"MegMusicManiac";0;FALSE;FALSE;NA;NA
"83";"RT @cupandowl: Lovely black teacup and saucer #etsy #blackisthenewblack #vintage #teacup #teaparty #teatime #etsyfinds #etsygifts https://t…";FALSE;0;NA;2016-10-25 04:04:38;FALSE;NA;"790765988903919616";NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";"nerakmugnet";3;TRUE;FALSE;NA;NA
"84";"10<U+6708>24<U+65E5> Pumpkin and apple cinnamon scones!! <ed><U+00A0><U+00BC><ed><U+00BE><U+0083><ed><U+00A0><U+00BC><ed><U+00BD><U+008E>
#tea #teatime #afternoontea #scone #scones #teaset… https://t.co/ZHZRDKnzKl";FALSE;1;NA;2016-10-25 03:32:41;FALSE;NA;"790757949006372865";NA;"<a href=""http://instagram.com"" rel=""nofollow"">Instagram</a>";"chestnutkuri";0;FALSE;FALSE;"-73.85836713";"41.07656389"
"85";"#RoyaleGiveaways - #Win a #casaWare Serenity 7-Piece #Tea Pot Set $70 value #LaPrimaShops #Teatime Enter Daily https://t.co/EFWXwxE0Rr";FALSE;1;NA;2016-10-25 03:22:33;FALSE;NA;"790755398529736704";NA;"<a href=""http://twitter.com"" rel=""nofollow"">Twitter Web Client</a>";"babyjames";0;FALSE;FALSE;NA;NA
"86";"Gorgeous green teacup and saucer #etsy #giftideas #teaparty #teatime #vintage #teacup #etsychaching #gifts https://t.co/4IOs1Y8AAn";FALSE;0;NA;2016-10-25 03:20:50;FALSE;NA;"790754967699255296";NA;"<a href=""http://twitter.com"" rel=""nofollow"">Twitter Web Client</a>";"cupandowl";1;FALSE;FALSE;NA;NA
"87";"It's Tea Tuesday! Share with us what teas you are sipping! #Win a Libre Tea glass! #teamoment #teatime... https://t.co/iZnoP4wAf3";FALSE;1;NA;2016-10-25 03:08:04;FALSE;NA;"790751754295971840";NA;"<a href=""http://www.facebook.com/twitter"" rel=""nofollow"">Facebook</a>";"libretea";0;FALSE;FALSE;NA;NA
"88";"@beautytipsfree - When’s the best time for #teatime?";FALSE;0;"beautytipsfree";2016-10-25 03:06:14;FALSE;NA;"790751292268347392";"22089029";"<a href=""https://statusbrew.com"" rel=""nofollow"">Statusbrew</a>";"myteabook";0;FALSE;FALSE;NA;NA
"89";"Trying to do a writer's workshop before bed. Setting the timer for an hour, but need to focus. #helpmecreativegods #focus #fuckus #teatime";FALSE;1;NA;2016-10-25 02:55:21;FALSE;NA;"790748555245936640";NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";"Jo_Tro";0;FALSE;FALSE;NA;NA
"90";"#RoyaleGiveaways - #Win a #casaWare Serenity 7-Piece #Tea Pot Set $70 value #LaPrimaShops #Teatime Enter Daily https://t.co/7YJTeyHMwb";FALSE;1;NA;2016-10-25 02:54:18;FALSE;NA;"790748289884950529";NA;"<a href=""http://twitter.com"" rel=""nofollow"">Twitter Web Client</a>";"areck0001";0;FALSE;FALSE;NA;NA
"91";"RT @TeailyTea: Could Go For A Cup Of Tea Right About Now? <ed><U+00A0><U+00BD><ed><U+00B2><U+0095>#tea #teaofthemonth #teatime #blacktea #greentea #tealover #teavana https://t.co…";FALSE;0;NA;2016-10-25 02:32:16;FALSE;NA;"790742747397226496";NA;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";"hikariphotolove";2;TRUE;FALSE;NA;NA
"92";"RT @TeailyTea: Could Go For A Cup Of Tea Right About Now? <ed><U+00A0><U+00BD><ed><U+00B2><U+0095>#tea #teaofthemonth #teatime #blacktea #greentea #tealover #teavana https://t.co…";FALSE;0;NA;2016-10-25 02:32:11;FALSE;NA;"790742723573616642";NA;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";"hikariphotolove";1;TRUE;FALSE;NA;NA
"93";"RT @TeailyTea: Could Go For A Cup Of Tea Right About Now? <ed><U+00A0><U+00BD><ed><U+00B2><U+0095>#tea #teaofthemonth #teatime #blacktea #greentea #tealover #teavana https://t.co…";FALSE;0;NA;2016-10-25 02:32:08;FALSE;NA;"790742710353178624";NA;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";"hikariphotolove";1;TRUE;FALSE;NA;NA
"94";"RT @TeailyTea: Could Go For A Cup Of Tea Right About Now? <ed><U+00A0><U+00BD><ed><U+00B2><U+0095>#tea #teaofthemonth #teatime #blacktea #greentea #tealover #teavana https://t.co…";FALSE;0;NA;2016-10-25 02:32:01;FALSE;NA;"790742684390436864";NA;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";"hikariphotolove";2;TRUE;FALSE;NA;NA
"95";"RT @TeailyTea: Could Go For A Cup Of Tea Right About Now? <ed><U+00A0><U+00BD><ed><U+00B2><U+0095>#tea #teaofthemonth #teatime #blacktea #greentea #tealover #teavana https://t.co…";FALSE;0;NA;2016-10-25 02:31:54;FALSE;NA;"790742651356098560";NA;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";"hikariphotolove";1;TRUE;FALSE;NA;NA
"96";"RT @TeailyTea: Could Go For A Cup Of Tea Right About Now? <ed><U+00A0><U+00BD><ed><U+00B2><U+0095>#tea #teaofthemonth #teatime #blacktea #greentea #tealover #teavana https://t.co…";FALSE;0;NA;2016-10-25 02:31:52;FALSE;NA;"790742643798003712";NA;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";"hikariphotolove";1;TRUE;FALSE;NA;NA
"97";"RT @TeailyTea: Could Go For A Cup Of Tea Right About Now? <ed><U+00A0><U+00BD><ed><U+00B2><U+0095>#tea #teaofthemonth #teatime #blacktea #greentea #tealover #teavana https://t.co…";FALSE;0;NA;2016-10-25 02:31:47;FALSE;NA;"790742623493369856";NA;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";"hikariphotolove";1;TRUE;FALSE;NA;NA
"98";"Could've used one of these today. Luckily there was candy in the office <ed><U+00A0><U+00BC><ed><U+00BD><U+00AC><ed><U+00A0><U+00BC><ed><U+00BD><U+00AC><ed><U+00A0><U+00BC><ed><U+00BD><U+00AC>#teatime @ Teaspressa https://t.co/tdfv5BmLzX";FALSE;1;NA;2016-10-25 02:29:02;FALSE;NA;"790741931303272451";NA;"<a href=""http://instagram.com"" rel=""nofollow"">Instagram</a>";"TamararKraus";0;FALSE;FALSE;"-111.92841053";"33.49281068"
"99";"Having a cup of #ChocolateChai and it's delicious. #TeaTime";FALSE;1;NA;2016-10-25 02:26:01;FALSE;NA;"790741171215577088";NA;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";"brittneylooney";0;FALSE;FALSE;NA;NA
"100";"RT @laurieshan: #CHILDHOOD art Print #Princess,#teatime #Beach #Kitty #Dolls #pretendplay #LaurieShanholtzer https://t.co/HeAU43x6dy https:…";FALSE;0;NA;2016-10-25 02:21:02;FALSE;NA;"790739917227917312";NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";"JustWhat0i0want";41;TRUE;FALSE;NA;NA
"101";"#lateupload #japaneseagency #gest visited #keunmoonenglishschool and We had #teatime in the… https://t.co/OKfZ8l9px9";FALSE;0;NA;2016-10-25 02:19:18;FALSE;NA;"790739483947831296";NA;"<a href=""http://instagram.com"" rel=""nofollow"">Instagram</a>";"keunmoonenglish";0;FALSE;FALSE;"120.58009626";"16.42162446"
"102";"RT @cupandowl: 8 Gorgeous pink rose plates by Royal Stafford #etsy #etsyfinds #giftideas #etsysocial #vintage #teaparty #teatime https://t.…";FALSE;0;NA;2016-10-25 02:10:56;FALSE;NA;"790737378008707073";NA;"<a href=""http://twitter.com"" rel=""nofollow"">Twitter Web Client</a>";"chaos4time";13;TRUE;FALSE;NA;NA
"103";"RT @cupandowl: Stunning #RoyalStafford teacup&saucer #vintage #teaparty #etsyteamunity #vintage #TeacupClub #teatime #etsy #gifts https://t…";FALSE;0;NA;2016-10-25 02:00:25;FALSE;NA;"790734729171443712";NA;"<a href=""http://twitter.com"" rel=""nofollow"">Twitter Web Client</a>";"SweetTTreasures";13;TRUE;FALSE;NA;NA
"104";"Happy 13th birthday <ed><U+00A0><U+00BC><ed><U+00BE><U+0082> son... #blessed #DMCNTEATIME #sweetsound #TeaTime https://t.co/afHHo6KqXC";FALSE;1;NA;2016-10-25 01:49:26;FALSE;NA;"790731965204865024";NA;"<a href=""http://instagram.com"" rel=""nofollow"">Instagram</a>";"Sweeet_Tea_Time";0;FALSE;FALSE;NA;NA
"105";"RT @cupandowl: Lovely #Paragon teacup and saucer #etsy #giftideas #gifts #teaparty #teatime #vintage #ShoppersHour https://t.co/tlT9Ifz2yA";FALSE;0;NA;2016-10-25 01:46:02;FALSE;NA;"790731109692825600";NA;"<a href=""http://twitter.com"" rel=""nofollow"">Twitter Web Client</a>";"little_woolens";7;TRUE;FALSE;NA;NA
"106";"I love cold/ fall nights... #fireplace #fallcupcakes<ed><U+00A0><U+00BC><ed><U+00BD><U+0081><ed><U+00A0><U+00BC><ed><U+00BD><U+0082> #teatime https://t.co/5JRbg7cNoc";FALSE;0;NA;2016-10-25 01:43:02;FALSE;NA;"790730354336276480";NA;"<a href=""http://instagram.com"" rel=""nofollow"">Instagram</a>";"luvhandbags67";0;FALSE;FALSE;NA;NA
"107";"The view in our house this evening. A good book and a cuppa each. #stepmomlife #teatime https://t.co/jfbZatMNaq";FALSE;1;NA;2016-10-25 01:36:47;FALSE;NA;"790728780893589504";NA;"<a href=""http://instagram.com"" rel=""nofollow"">Instagram</a>";"lilenerae";0;FALSE;FALSE;NA;NA
"108";"Lovely #Paragon teacup and saucer #etsy #giftideas #gifts #teaparty #teatime #vintage #ShoppersHour https://t.co/tlT9Ifz2yA";FALSE;1;NA;2016-10-25 01:35:44;FALSE;NA;"790728516794843136";NA;"<a href=""http://twitter.com"" rel=""nofollow"">Twitter Web Client</a>";"cupandowl";7;FALSE;FALSE;NA;NA
"109";"Every #mondaymantra <U+2615><U+FE0F> #behappyfirst #teatime https://t.co/LRQJOza8Fn";FALSE;1;NA;2016-10-25 01:33:03;FALSE;NA;"790727841570811904";NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";"gen10hay";0;FALSE;FALSE;NA;NA
"110";"RT @cupandowl: Stunning all gold floral teacup&saucer #etsy #etsychaching #vintage #teaparty #teatime #giftideas #etsychristmas https://t.c…";FALSE;0;NA;2016-10-25 01:29:39;FALSE;NA;"790726989011353601";NA;"<a href=""https://mobile.twitter.com"" rel=""nofollow"">Mobile Web (M5)</a>";"christinebygrav";2;TRUE;FALSE;NA;NA
"111";"RT @cupandowl: Stunning all gold floral teacup&saucer #etsy #etsychaching #vintage #teaparty #teatime #giftideas #etsychristmas https://t.c…";FALSE;0;NA;2016-10-25 01:28:02;FALSE;NA;"790726579265626112";NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";"doubleceandj";2;TRUE;FALSE;NA;NA
"112";"Apple Cinnamon Spice Tea!!! Sooooooo delicious with some brown sugar. #TeaTime https://t.co/NZUFUkr0TO";FALSE;1;NA;2016-10-25 01:23:44;FALSE;NA;"790725499110563841";NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";"Miami_Piper";0;FALSE;FALSE;NA;NA
"113";"Stunning all gold floral teacup&saucer #etsy #etsychaching #vintage #teaparty #teatime #giftideas #etsychristmas https://t.co/4Z9eGfjCzW";FALSE;2;NA;2016-10-25 01:19:33;FALSE;NA;"790724444796833792";NA;"<a href=""http://twitter.com"" rel=""nofollow"">Twitter Web Client</a>";"cupandowl";2;FALSE;FALSE;NA;NA
"114";"Happiness is a cup of Earl Grey. #teatime #lovingthecoldweather #seasonal #EarlGrey #relaxing";FALSE;3;NA;2016-10-25 00:57:12;FALSE;NA;"790718819991826432";NA;"<a href=""http://twitter.com"" rel=""nofollow"">Twitter Web Client</a>";"1JasonBuchholz";0;FALSE;FALSE;NA;NA
"115";"Moist Paula's #TeaTime TV episode 5 with Jessica Lee Wilkes's in #Melbourne #theladiesassociation https://t.co/uqpy4CQhaB";FALSE;1;NA;2016-10-25 00:56:49;FALSE;NA;"790718725376782336";NA;"<a href=""http://www.facebook.com/twitter"" rel=""nofollow"">Facebook</a>";"moistpaula";0;FALSE;FALSE;NA;NA
"116";"RT @TeailyTea: Could Go For A Cup Of Tea Right About Now? <ed><U+00A0><U+00BD><ed><U+00B2><U+0095>#tea #teaofthemonth #teatime #blacktea #greentea #tealover #teavana https://t.co…";FALSE;0;NA;2016-10-25 00:49:36;FALSE;NA;"790716910652366848";NA;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";"hikariphotolove";2;TRUE;FALSE;NA;NA
"117";"Guess what time it is. #TeaTime https://t.co/0jeQn35rBr";FALSE;0;NA;2016-10-25 00:45:21;FALSE;NA;"790715837183365120";NA;"<a href=""http://www.hootsuite.com"" rel=""nofollow"">Hootsuite</a>";"FloweringTeas";0;FALSE;FALSE;NA;NA
"118";"My fav tea mug courtesy of mom and dad! 298/366 #project366 #imnotalwaysright #peanuts #teatime… https://t.co/WQh7ywAKNP";FALSE;1;NA;2016-10-25 00:28:34;FALSE;NA;"790711614802567168";NA;"<a href=""http://instagram.com"" rel=""nofollow"">Instagram</a>";"f_varley";0;FALSE;FALSE;NA;NA
"119";"A little flashback to Amsterdam with a mint tea, I'll be hydrated there is a lot in the garden...
#mint #teatime https://t.co/q3HcBQCJj9";FALSE;0;NA;2016-10-25 00:23:45;FALSE;NA;"790710405328875520";NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";"dbtsauce";0;FALSE;FALSE;NA;NA
"120";"@jackycoyne drinking for the US and London time at the same time <ed><U+00A0><U+00BD><ed><U+00B8><U+0082><ed><U+00A0><U+00BD><ed><U+00B8><U+0082><ed><U+00A0><U+00BD><ed><U+00B8><U+0082> #teaTime";FALSE;0;"jackycoyne";2016-10-25 00:22:22;FALSE;"790568309695610880";"790710055486259200";"240731136";"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";"arhYusuf";0;FALSE;FALSE;NA;NA
"121";"#ChristmasTree #TeapotSet / Creamer and Sugar #christmasteapot #teatime #teasetting https://t.co/8IZrG7O0zu #etsy… https://t.co/kNUJzI85r3";FALSE;0;NA;2016-10-25 00:20:05;TRUE;NA;"790709481613225984";NA;"<a href=""https://www.socialjukebox.com"" rel=""nofollow"">The Social Jukebox</a>";"fieldsofvintage";0;FALSE;FALSE;NA;NA
"122";"#RoyaleGiveaways - #Win a #casaWare Serenity 7-Piece #Tea Pot Set $70 value #LaPrimaShops #Teatime Enter Daily https://t.co/QP9cLoFx8X";FALSE;0;NA;2016-10-25 00:16:05;FALSE;NA;"790708474229432320";NA;"<a href=""http://twitter.com"" rel=""nofollow"">Twitter Web Client</a>";"johnsnook1";0;FALSE;FALSE;NA;NA
"123";"RT @cupandowl: Stunning #RoyalStafford teacup&saucer #vintage #teaparty #etsyteamunity #vintage #TeacupClub #teatime #etsy #gifts https://t…";FALSE;0;NA;2016-10-25 00:14:21;FALSE;NA;"790708037828870144";NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";"lazyy_linda";13;TRUE;FALSE;NA;NA
"124";"Here it is again. I'll just take this one as it is. #selflove #selfconfidence #yogitea #teatime… https://t.co/qUB14PCWmy";FALSE;0;NA;2016-10-25 00:03:54;FALSE;NA;"790705407748517888";NA;"<a href=""http://instagram.com"" rel=""nofollow"">Instagram</a>";"SameDiNamics";0;FALSE;FALSE;NA;NA
"125";"Evening #teatime with my fabulous new cup. Thank you so much @missimari101 <ed><U+00A0><U+00BD><ed><U+00B8><U+0098>… https://t.co/TZMDv8GO5v";FALSE;1;NA;2016-10-24 23:59:12;FALSE;NA;"790704224057393152";NA;"<a href=""http://instagram.com"" rel=""nofollow"">Instagram</a>";"sxpnce";0;FALSE;FALSE;NA;NA
"126";"RT @menkareh: #DonneInArte #TeaTime @LunaLeso @agustin_gut @GuernseyJuliet @BrindusaB1 @GaiaGaudenzi @RitaCobix @FedericaAnto2
Chardin htt…";FALSE;0;NA;2016-10-24 23:57:21;FALSE;NA;"790703759303159808";NA;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";"pine20156";14;TRUE;FALSE;NA;NA
"127";"#RoyaleGiveaways - #Win a #casaWare Serenity 7-Piece #Tea Pot Set $70 value #LaPrimaShops #Teatime Enter Daily https://t.co/09d8ffaCI6";FALSE;0;NA;2016-10-24 23:56:50;FALSE;NA;"790703627916587008";NA;"<a href=""http://twitter.com"" rel=""nofollow"">Twitter Web Client</a>";"azcactus94";0;FALSE;FALSE;NA;NA
"128";"RT @cupandowl: Stunning #RoyalStafford teacup&saucer #vintage #teaparty #etsyteamunity #vintage #TeacupClub #teatime #etsy #gifts https://t…";FALSE;0;NA;2016-10-24 23:53:06;FALSE;NA;"790702688921157632";NA;"<a href=""http://twitter.com"" rel=""nofollow"">Twitter Web Client</a>";"SimplyByCindy";13;TRUE;FALSE;NA;NA
"129";"RT @cupandowl: Snack plates w/teacups are genius! #etsy #vintage #teaparty #teatime #giftideas #etsyclub #epiconetsy #gifts https://t.co/vY…";FALSE;0;NA;2016-10-24 23:45:57;FALSE;NA;"790700889614880768";NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";"nerakmugnet";2;TRUE;FALSE;NA;NA
"130";"#tea #teatime #cup-gift with #babayeArian #chocolatepumpkin… https://t.co/IOxjbN5uCH";FALSE;1;NA;2016-10-24 23:32:00;FALSE;NA;"790697381373370369";NA;"<a href=""http://instagram.com"" rel=""nofollow"">Instagram</a>";"shmfd";0;FALSE;FALSE;"-122.04169814";"37.96965197"
"131";"RT @cupandowl: Stunning #RoyalStafford teacup&saucer #vintage #teaparty #etsyteamunity #vintage #TeacupClub #teatime #etsy #gifts https://t…";FALSE;0;NA;2016-10-24 23:24:40;FALSE;NA;"790695536257011712";NA;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";"serenitylane13";13;TRUE;FALSE;NA;NA
"132";"RT @cupandowl: Stunning #RoyalStafford teacup&saucer #vintage #teaparty #etsyteamunity #vintage #TeacupClub #teatime #etsy #gifts https://t…";FALSE;0;NA;2016-10-24 23:23:46;FALSE;NA;"790695309655408640";NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";"KimBlose";13;TRUE;FALSE;NA;NA
"133";"This is how I will have my tea from now on. This dude with his party pants. #teatime https://t.co/5BHZOgYIhP";FALSE;9;NA;2016-10-24 23:20:53;FALSE;NA;"790694583738830848";NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";"tiffchaisson";2;FALSE;FALSE;NA;NA
"134";"RT @TeailyTea: Could Go For A Cup Of Tea Right About Now? <ed><U+00A0><U+00BD><ed><U+00B2><U+0095>#tea #teaofthemonth #teatime #blacktea #greentea #tealover #teavana https://t.co…";FALSE;0;NA;2016-10-24 23:20:42;FALSE;NA;"790694537119330304";NA;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";"annleprestonfwp";2;TRUE;FALSE;NA;NA
"135";"#RoyaleGiveaways - #Win a #casaWare Serenity 7-Piece #Tea Pot Set $70 value #LaPrimaShops #Teatime Enter Daily https://t.co/b3ycJEesOS";FALSE;1;NA;2016-10-24 23:19:03;FALSE;NA;"790694122835161088";NA;"<a href=""http://twitter.com"" rel=""nofollow"">Twitter Web Client</a>";"vibgyor70";0;FALSE;FALSE;NA;NA
"136";"On #ManicMonday it is nice to grab a cup of tea & join our relaxing adult painting class #paintandsip #teatime… https://t.co/5xpNtWKog7";FALSE;0;NA;2016-10-24 23:18:12;TRUE;NA;"790693908246396928";NA;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";"CathayFuture";0;FALSE;FALSE;NA;NA
"137";"Could Go For A Cup Of Tea Right About Now? <ed><U+00A0><U+00BD><ed><U+00B2><U+0095>#tea #teaofthemonth #teatime #blacktea #greentea #tealover #teavana https://t.co/WYB5fRRdxP";FALSE;1;NA;2016-10-24 23:10:52;FALSE;NA;"790692062819655680";NA;"<a href=""http://twitter.com"" rel=""nofollow"">Twitter Web Client</a>";"TeailyTea";2;FALSE;FALSE;NA;NA
"138";"https://t.co/jSthjicgFO With 9 Ancient Viking herbs that BOOST Energy & Lower Anxiety! #moxtea #teatime #tea #sale https://t.co/8xl8gIrlIV";FALSE;0;NA;2016-10-24 23:05:06;FALSE;NA;"790690610424446976";NA;"<a href=""http://twitter.com"" rel=""nofollow"">Twitter Web Client</a>";"MoxTeaMe";0;FALSE;FALSE;NA;NA
"139";"The clock has struck Four - and everything stops for tea! What's in your cup? #TeaTime #4pm #JollyGood #Evil";FALSE;3;NA;2016-10-24 23:00:07;FALSE;NA;"790689355010572288";NA;"<a href=""http://ifttt.com"" rel=""nofollow"">IFTTT</a>";"FlamingMonocle";0;FALSE;FALSE;NA;NA
"140";"RT @cupandowl: NEW ITEM!Flower and fern cream and sugar set #bonechina #vintage #teaparty #teatime #coffeetime #etsy #etsyshop https://t.co…";FALSE;0;NA;2016-10-24 22:45:08;FALSE;NA;"790685587053215744";NA;"<a href=""http://twitter.com"" rel=""nofollow"">Twitter Web Client</a>";"JohnGermaine";2;TRUE;FALSE;NA;NA
"141";"RT @cupandowl: Stunning #RoyalStafford teacup&saucer #vintage #teaparty #etsyteamunity #vintage #TeacupClub #teatime #etsy #gifts https://t…";FALSE;0;NA;2016-10-24 22:41:05;FALSE;NA;"790684566117724160";NA;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";"Abatevintage";13;TRUE;FALSE;NA;NA
"142";"RT @cupandowl: Stunning #RoyalStafford teacup&saucer #vintage #teaparty #etsyteamunity #vintage #TeacupClub #teatime #etsy #gifts https://t…";FALSE;0;NA;2016-10-24 22:33:25;FALSE;NA;"790682638180716544";NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";"SticksnStone2";13;TRUE;FALSE;NA;NA
"143";"Tea tasting class was a blast! #teaclass #teatime #tealove https://t.co/4XWej6sb8p";FALSE;1;NA;2016-10-24 22:25:26;FALSE;NA;"790680628064813060";NA;"<a href=""http://www.facebook.com/twitter"" rel=""nofollow"">Facebook</a>";"Meimeifineteas";0;FALSE;FALSE;NA;NA
"144";"Mad as hatter <ed><U+00A0><U+00BC><ed><U+00BE><U+00A9> <ed><U+00A0><U+00BC><ed><U+00B7><U+00AC><ed><U+00A0><U+00BC><ed><U+00B7><U+00A7> #teatime https://t.co/W2cTKcS7EJ";FALSE;1;NA;2016-10-24 22:22:54;FALSE;NA;"790679988731277312";NA;"<a href=""http://instagram.com"" rel=""nofollow"">Instagram</a>";"DarthFaro";0;FALSE;FALSE;NA;NA
"145";"RT @cupandowl: NEW ITEM!Flower and fern cream and sugar set #bonechina #vintage #teaparty #teatime #coffeetime #etsy #etsyshop https://t.co…";FALSE;0;NA;2016-10-24 22:19:17;FALSE;NA;"790679081331425280";NA;"<a href=""http://twitter.com/#!/download/ipad"" rel=""nofollow"">Twitter for iPad</a>";"murdoch123";2;TRUE;FALSE;NA;NA
"146";"NEW ITEM!Flower and fern cream and sugar set #bonechina #vintage #teaparty #teatime #coffeetime #etsy #etsyshop https://t.co/iIniA3ayaT";FALSE;0;NA;2016-10-24 22:18:41;FALSE;NA;"790678929384230912";NA;"<a href=""http://twitter.com"" rel=""nofollow"">Twitter Web Client</a>";"cupandowl";2;FALSE;FALSE;NA;NA
"147";"RT @cupandowl: Elegant tea for two set by #RoyalAlbert ca.1945 #etsy #vintage #teaparty #teatime #etsychaching #etsypreneur https://t.co/cq…";FALSE;0;NA;2016-10-24 22:03:30;FALSE;NA;"790675109702881280";NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";"nerakmugnet";6;TRUE;FALSE;NA;NA
"148";"First time consuming tea out of my new gaiwan #tea #greentea #teatime #win #90sBabyFollowTrain https://t.co/clIk75Rw1m";FALSE;0;NA;2016-10-24 21:58:21;FALSE;NA;"790673812111159296";NA;"<a href=""http://ifttt.com"" rel=""nofollow"">IFTTT</a>";"cookingscarlet";0;FALSE;FALSE;NA;NA
"149";"RT @JoanPelzerNYC: Are you a #teaenthusiast ?
Thanks @ManwithaMug for sharing and turning us on to @TastetheTeaBlog
#HighTea #Teatime http…";FALSE;0;NA;2016-10-24 21:43:23;FALSE;NA;"790670044426563585";NA;"<a href=""https://roundteam.co"" rel=""nofollow"">RoundTeam</a>";"ManwithaMug";1;TRUE;FALSE;NA;NA
"150";"Time for #tea? Join me? #teatime #heritagelace #lace #sponsored #fall #neutrals https://t.co/pdgAPyapVZ https://t.co/dXpJULa9oz";FALSE;0;NA;2016-10-24 21:41:42;FALSE;NA;"790669622840270850";NA;"<a href=""http://twitter.com"" rel=""nofollow"">Twitter Web Client</a>";"SherryTCOH";0;FALSE;FALSE;NA;NA
"151";"Are you a #teaenthusiast ?
Thanks @ManwithaMug for sharing and turning us on to @TastetheTeaBlog
#HighTea #Teatime https://t.co/YymLXgEY5u";FALSE;3;NA;2016-10-24 21:39:02;FALSE;NA;"790668952733097984";NA;"<a href=""http://twitter.com"" rel=""nofollow"">Twitter Web Client</a>";"JoanPelzerNYC";1;FALSE;FALSE;NA;NA
"152";"Yankees https://t.co/EvJ4xfAEdX #Sheffield Finishing the day with a Yankees! #burger #texmex #teatime https://t.co/MwOOnpUJE1";FALSE;0;NA;2016-10-24 21:36:12;FALSE;NA;"790668236014530560";NA;"<a href=""http://foodplaces.co.uk"" rel=""nofollow"">placesfoodie</a>";"foodplaces";0;FALSE;FALSE;"-1.493349";"53.369853"
"153";"RT @cupandowl: Stunning #RoyalStafford teacup&saucer #vintage #teaparty #etsyteamunity #vintage #TeacupClub #teatime #etsy #gifts https://t…";FALSE;0;NA;2016-10-24 21:35:43;FALSE;NA;"790668114958684160";NA;"<a href=""https://mobile.twitter.com"" rel=""nofollow"">Mobile Web (M5)</a>";"christinebygrav";13;TRUE;FALSE;NA;NA
"154";"RT @luxuriousmag: A High Standard Of Low Tea At The Luggage Room https://t.co/kZX8VJNGWL #London #foodie #teatime https://t.co/f2e4W8pFei";FALSE;0;NA;2016-10-24 21:33:21;FALSE;NA;"790667519161929728";NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";"lynnrucker333";1;TRUE;FALSE;NA;NA
"155";"The nights are drawing in #autumn
#teatime for the #goats https://t.co/pC2m9VmZt8";FALSE;1;NA;2016-10-24 21:30:57;FALSE;NA;"790666917136654336";NA;"<a href=""http://instagram.com"" rel=""nofollow"">Instagram</a>";"KateFitzGerald1";0;FALSE;FALSE;NA;NA
"156";"#teatime <ed><U+00A0><U+00BC><ed><U+00BC><U+00B1> antioxidants, increases memory, anti cancer properties, helps regulate cholesterol,… https://t.co/a7wPf4jAWa";FALSE;1;NA;2016-10-24 21:26:25;FALSE;NA;"790665776650915841";NA;"<a href=""http://instagram.com"" rel=""nofollow"">Instagram</a>";"HealthWithBecky";0;FALSE;FALSE;NA;NA
"157";"A little #teatime with my girl #pusheen !! #fallpusheenbox #pusheenbox https://t.co/NO9bvNLfKq";FALSE;0;NA;2016-10-24 21:24:48;FALSE;NA;"790665369753047040";NA;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";"JessiebearMarie";0;FALSE;FALSE;NA;NA
"158";"RT @laurieshan: #CHILDHOOD art Print #Princess,#teatime #Beach #Kitty #Dolls #pretendplay #LaurieShanholtzer https://t.co/HeAU43x6dy https:…";FALSE;0;NA;2016-10-24 21:23:11;FALSE;NA;"790664960208695301";NA;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";"PLdesign_stores";41;TRUE;FALSE;NA;NA
"159";"RT @ImpactLVN: 2/2 here in Japan. @SantanaGarrett_ #TeaTime #TagTeam #WomensWrestling #Stardom @we_are_stardom https://t.co/ubCRbaul35";FALSE;0;NA;2016-10-24 21:21:41;FALSE;NA;"790664583635619841";NA;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";"rpcdvd4u";30;TRUE;FALSE;NA;NA
"160";"It's a Samurai Chai kind of day! So good! #teatime #teavanatea #samuraichaimaté @ There's No… https://t.co/TtDDPRNaBk";FALSE;0;NA;2016-10-24 21:19:57;FALSE;NA;"790664148195667968";NA;"<a href=""http://instagram.com"" rel=""nofollow"">Instagram</a>";"alicia_reardon";0;FALSE;FALSE;"-84.7730511";"37.6526408"
"161";"RT @DeToutCoeur_: Time for tea and a slice of my Limousin apple & chestnut crumble cake <ed><U+00A0><U+00BC><ed><U+00BD><U+0082><ed><U+00A0><U+00BC><ed><U+00BC><U+00B0><ed><U+00A0><U+00BC><ed><U+00BD><U+008F> #teatime https://t.co/sxkt69RWcl";FALSE;0;NA;2016-10-24 21:14:04;FALSE;NA;"790662667836985344";NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";"ChillRoomNcle";1;TRUE;FALSE;NA;NA
"162";"Green Tea fans you need to try this, smells like Christmas!! #greentea #gingerbread #twinings #christmas #tea… https://t.co/kgxRgoUvL8";FALSE;4;NA;2016-10-24 21:11:13;TRUE;NA;"790661950011211777";NA;"<a href=""http://bufferapp.com"" rel=""nofollow"">Buffer</a>";"Charlarooz";0;FALSE;FALSE;NA;NA
"163";"A unique presentation creates interest for a common product. Tea anyone? <U+2615><U+FE0F> ~ https://t.co/e17Ub3Untq #teatime… https://t.co/8vSWe3wN6d";FALSE;1;NA;2016-10-24 21:04:08;TRUE;NA;"790660169768153088";NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";"icityretail";0;FALSE;FALSE;NA;NA
"164";"RT @cupandowl: 8 Gorgeous pink rose plates by Royal Stafford #etsy #etsyfinds #giftideas #etsysocial #vintage #teaparty #teatime https://t.…";FALSE;0;NA;2016-10-24 20:49:41;FALSE;NA;"790656532438396929";NA;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";"Jaabne1";13;TRUE;FALSE;NA;NA
"165";"RT @cupandowl: Beautiful floral teacup&saucer #etsy #giftideas #gifts #teaparty #teatime #vintage #etsypreneur #shoppershour https://t.co/h…";FALSE;0;NA;2016-10-24 20:46:31;FALSE;NA;"790655734392422400";NA;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";"Beadstastic";1;TRUE;FALSE;NA;NA
"166";"#RoyaleGiveaways - #Win a #casaWare Serenity 7-Piece #Tea Pot Set $70 value #LaPrimaShops #Teatime Enter Daily https://t.co/Gkbw1xCUkq";FALSE;3;NA;2016-10-24 20:43:12;FALSE;NA;"790654898132115456";NA;"<a href=""http://linkis.com"" rel=""nofollow"">Put your button on any page! </a>";"MzBeeBeeTweets";0;FALSE;FALSE;NA;NA
"167";"Beautiful floral teacup&saucer #etsy #giftideas #gifts #teaparty #teatime #vintage #etsypreneur #shoppershour https://t.co/hmCk5XovOp";FALSE;1;NA;2016-10-24 20:41:27;FALSE;NA;"790654458334105600";NA;"<a href=""http://twitter.com"" rel=""nofollow"">Twitter Web Client</a>";"cupandowl";1;FALSE;FALSE;NA;NA
"168";"HOW TO LEARN MORE ABOUT TEA... https://t.co/CFsBclgqgN #tea #teatime https://t.co/tuQGgbvK81";FALSE;0;NA;2016-10-24 20:35:12;FALSE;NA;"790652888292859904";NA;"<a href=""http://aa.com"" rel=""nofollow"">pptweet123</a>";"hanmeimei1955";0;FALSE;FALSE;NA;NA
"169";"A little afternoon tea break. #teatime #home #homedecor #autumn2016<ed><U+00A0><U+00BC><ed><U+00BD><U+0081> #cozyhome https://t.co/T2crtbyo7F";FALSE;0;NA;2016-10-24 20:33:48;FALSE;NA;"790652534134304768";NA;"<a href=""http://instagram.com"" rel=""nofollow"">Instagram</a>";"elizafaye57";0;FALSE;FALSE;NA;NA
"170";"Does this look like genuine yixing teapot? #tea #greentea #teatime #win #90sBabyFollowTrain https://t.co/jUjyLb6ihJ";FALSE;0;NA;2016-10-24 20:13:18;FALSE;NA;"790647375744368641";NA;"<a href=""http://ifttt.com"" rel=""nofollow"">IFTTT</a>";"cookingscarlet";0;FALSE;FALSE;NA;NA
"171";"#RoyaleGiveaways - #Win a #casaWare Serenity 7-Piece #Tea Pot Set $70 value #LaPrimaShops #Teatime Enter Daily https://t.co/YlZIkJ7g7T";FALSE;1;NA;2016-10-24 20:12:22;FALSE;NA;"790647142700371968";NA;"<a href=""http://twitter.com"" rel=""nofollow"">Twitter Web Client</a>";"Cali_Reviews";0;FALSE;FALSE;NA;NA
"172";"@KusmiTeaUS ooh, I am excited to try this! #teatime";FALSE;0;"KusmiTeaUS";2016-10-24 20:10:56;FALSE;"790646554201841664";"790646780497047552";"139687661";"<a href=""http://twitter.com"" rel=""nofollow"">Twitter Web Client</a>";"lecoco_hurl";0;FALSE;FALSE;NA;NA
"173";"Tea time
#teatime #tea #Yummy https://t.co/CQiFQaqAI6";FALSE;0;NA;2016-10-24 20:07:37;FALSE;NA;"790645944983388160";NA;"<a href=""http://instagram.com"" rel=""nofollow"">Instagram</a>";"tonyr2984";0;FALSE;FALSE;NA;NA
"174";"#RoyaleGiveaways - #Win a #casaWare Serenity 7-Piece #Tea Pot Set $70 value #LaPrimaShops #Teatime Enter Daily https://t.co/3MVOcawBMS";FALSE;0;NA;2016-10-24 20:05:52;FALSE;NA;"790645503138693120";NA;"<a href=""http://linkis.com"" rel=""nofollow"">Put your button on any page! </a>";"kaflickinger74";0;FALSE;FALSE;NA;NA
"175";"HOW TO LEARN MORE ABOUT TEA... https://t.co/GcygAeSGHo #tea #teatime https://t.co/fZ0AxonqUd";FALSE;0;NA;2016-10-24 20:05:06;FALSE;NA;"790645310980698112";NA;"<a href=""http://aa.com"" rel=""nofollow"">pptweet123</a>";"hanmeimei1955";0;FALSE;FALSE;NA;NA
"176";"RT @GMBTShow: That's a wrap for this afternoon rundown. Catch today's episode of Good Morning Black Twitter! #TeaTime https://t.co/36ptFOja…";FALSE;0;NA;2016-10-24 20:04:27;FALSE;NA;"790645149776875521";NA;"<a href=""https://about.twitter.com/products/tweetdeck"" rel=""nofollow"">TweetDeck</a>";"MoreAndAgain";1;TRUE;FALSE;NA;NA
"177";"That's a wrap for this afternoon rundown. Catch today's episode of Good Morning Black Twitter! #TeaTime https://t.co/36ptFOjaD0";FALSE;1;"GMBTShow";2016-10-24 20:01:34;FALSE;"790644162987192320";"790644422534922240";"3426208389";"<a href=""http://twitter.com"" rel=""nofollow"">Twitter Web Client</a>";"GMBTShow";1;FALSE;FALSE;NA;NA
"178";"#RoyaleGiveaways - #Win a #casaWare Serenity 7-Piece #Tea Pot Set $70 value #LaPrimaShops #Teatime Enter Daily https://t.co/UdkyxuZ5SX";FALSE;1;NA;2016-10-24 19:51:54;FALSE;NA;"790641989247045633";NA;"<a href=""http://twitter.com"" rel=""nofollow"">Twitter Web Client</a>";"T1974Bob";0;FALSE;FALSE;NA;NA
"179";"RT @cupandowl: Stunning #RoyalStafford teacup&saucer #vintage #teaparty #etsyteamunity #vintage #TeacupClub #teatime #etsy #gifts https://t…";FALSE;0;NA;2016-10-24 19:48:30;FALSE;NA;"790641136406847488";NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";"InspiredbyNancy";13;TRUE;FALSE;NA;NA
"180";"#RoyaleGiveaways - #Win a #casaWare Serenity 7-Piece #Tea Pot Set $70 value #LaPrimaShops #Teatime Enter Daily https://t.co/eiU4SGhy0w";FALSE;1;NA;2016-10-24 19:45:37;FALSE;NA;"790640410137731072";NA;"<a href=""http://twitter.com"" rel=""nofollow"">Twitter Web Client</a>";"rijalove_s";0;FALSE;FALSE;NA;NA
"181";"RT @cupandowl: 8 Gorgeous pink rose plates by Royal Stafford #etsy #etsyfinds #giftideas #etsysocial #vintage #teaparty #teatime https://t.…";FALSE;0;NA;2016-10-24 19:42:23;FALSE;NA;"790639596946255872";NA;"<a href=""http://twitter.com"" rel=""nofollow"">Twitter Web Client</a>";"PLANITISGI";13;TRUE;FALSE;NA;NA
"182";"RT @laurieshan: #CHILDHOOD art Print #Princess,#teatime #Beach #Kitty #Dolls #pretendplay #LaurieShanholtzer https://t.co/HeAU43x6dy https:…";FALSE;0;NA;2016-10-24 19:39:11;FALSE;NA;"790638791832797184";NA;"<a href=""http://twitter.com"" rel=""nofollow"">Twitter Web Client</a>";"VictoriaStaat";41;TRUE;FALSE;NA;NA
"183";"Yummy raw goodness! #teatime #celery #sweetango #eatclean #cleaneating #consistencyiskey… https://t.co/Ho2XAb4Yjq";FALSE;0;NA;2016-10-24 19:38:48;FALSE;NA;"790638692226379776";NA;"<a href=""http://instagram.com"" rel=""nofollow"">Instagram</a>";"Annieanimal83";0;FALSE;FALSE;NA;NA
"184";"Chocolate Cherry Latte Oolong from A Quarter To Tea... https://t.co/3yjfBenkgM #tea #teatime https://t.co/dVDHkbC6HJ";FALSE;0;NA;2016-10-24 19:35:06;FALSE;NA;"790637763796140032";NA;"<a href=""http://aa.com"" rel=""nofollow"">pptweet123</a>";"hanmeimei1955";0;FALSE;FALSE;NA;NA
"185";"Have a break at a hard photoshoot.
#newyork #skyline #teatime #photoshoot #view #panorama #jackstudios #model… https://t.co/aYZMCbaaa5";FALSE;1;NA;2016-10-24 19:34:02;TRUE;NA;"790637493334970368";NA;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";"CarmenPKu";0;FALSE;FALSE;NA;NA
"186";"#RoyaleGiveaways - #Win a #casaWare Serenity 7-Piece #Tea Pot Set $70 value #LaPrimaShops #Teatime Enter Daily https://t.co/IOUhVkp1Lu";FALSE;1;NA;2016-10-24 19:30:56;FALSE;NA;"790636714960322561";NA;"<a href=""http://twitter.com"" rel=""nofollow"">Twitter Web Client</a>";"ThatTuxedoCat";0;FALSE;FALSE;NA;NA
"187";"RT @cupandowl: 8 Gorgeous pink rose plates by Royal Stafford #etsy #etsyfinds #giftideas #etsysocial #vintage #teaparty #teatime https://t.…";FALSE;0;NA;2016-10-24 19:28:07;FALSE;NA;"790636005078409216";NA;"<a href=""http://twitter.com"" rel=""nofollow"">Twitter Web Client</a>";"LongCreations7";13;TRUE;FALSE;NA;NA
"188";"#ChristmasTree #TeapotSet / Creamer and Sugar #christmasteapot #teatime #teasetting https://t.co/8IZrG7O0zu #etsy… https://t.co/m5e877qq84";FALSE;0;NA;2016-10-24 19:20:04;TRUE;NA;"790633977069592577";NA;"<a href=""https://www.socialjukebox.com"" rel=""nofollow"">The Social Jukebox</a>";"fieldsofvintage";0;FALSE;FALSE;NA;NA
"189";"@Bravotv so excited for this ! Can't wait for the new season to start ! #RHOA #TeaTime #Yaaasss https://t.co/cVfI8yXk9T";FALSE;1;"Bravotv";2016-10-24 19:14:28;FALSE;"790630452369457152";"790632567909122050";"15169907";"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";"txderek86";0;FALSE;FALSE;NA;NA
"190";"Could Go For A Cup Of Tea Right About Now? <ed><U+00A0><U+00BD><ed><U+00B2><U+0095>#tea #teaofthemonth #teatime #blacktea #greentea #tealover #teavana https://t.co/wYHd7tTXYC";FALSE;3;NA;2016-10-24 19:12:51;FALSE;NA;"790632163838464000";NA;"<a href=""http://twitter.com"" rel=""nofollow"">Twitter Web Client</a>";"TeailyTea";1;FALSE;FALSE;NA;NA
"191";"Chocolate Cherry Latte Oolong from A Quarter To Tea... https://t.co/5EMpeYRsg0 #tea #teatime https://t.co/qvuEbilSWr";FALSE;0;NA;2016-10-24 19:05:07;FALSE;NA;"790630216649498624";NA;"<a href=""http://aa.com"" rel=""nofollow"">pptweet123</a>";"hanmeimei1955";0;FALSE;FALSE;NA;NA
"192";"RT @cupandowl: 8 Gorgeous pink rose plates by Royal Stafford #etsy #etsyfinds #giftideas #etsysocial #vintage #teaparty #teatime https://t.…";FALSE;0;NA;2016-10-24 19:02:50;FALSE;NA;"790629641337831424";NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";"alanapresents";13;TRUE;FALSE;NA;NA
"193";"Tea time provided by @marksandspencer #100happydays #tea #teatime https://t.co/iU7lXREF9g";FALSE;2;NA;2016-10-24 19:02:24;FALSE;NA;"790629534840328192";NA;"<a href=""http://m.dabr.co.uk"" rel=""nofollow"">Dabr</a>";"vaniliapearls";0;FALSE;FALSE;NA;NA
"194";"RT @DivaFoodies: Yes! ~ #Teatime sweets @SashaEats @FPorchGourmet https://t.co/6cUDXqhNML";FALSE;0;NA;2016-10-24 19:00:56;FALSE;NA;"790629162956558336";NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";"SashaEats";1;TRUE;FALSE;NA;NA
"195";"Tea Time Twinings of London con mi nueva Glass Water Bottle <ed><U+00A0><U+00BD><ed><U+00B2><U+0093> #TeaTime #ThinkPink #pink… https://t.co/gTzuYyMiF8";FALSE;1;NA;2016-10-24 18:59:58;FALSE;NA;"790628922111168512";NA;"<a href=""http://linkis.com"" rel=""nofollow"">Put your button on any page! </a>";"AnitaZuniga";0;FALSE;FALSE;NA;NA
"196";"RT @cupandowl: Gorgeous light blue teacup&saucer #etsy #giftideas #etsychaching #vintage #vintageteacup #teaparty #teatime https://t.co/C4K…";FALSE;0;NA;2016-10-24 18:52:03;FALSE;NA;"790626930169110529";NA;"<a href=""http://twitter.com"" rel=""nofollow"">Twitter Web Client</a>";"Purplecatzcroch";2;TRUE;FALSE;NA;NA
"197";"8 Gorgeous pink rose plates by Royal Stafford #etsy #etsyfinds #giftideas #etsysocial #vintage #teaparty #teatime https://t.co/wUOzAju30l";FALSE;6;NA;2016-10-24 18:49:19;FALSE;NA;"790626241250402305";NA;"<a href=""http://twitter.com"" rel=""nofollow"">Twitter Web Client</a>";"cupandowl";13;FALSE;FALSE;NA;NA
"198";"Via FranceToday:
Five o'clock chic: WH Smith reopens traditional English tea room in #Paris https://t.co/eV7CiVHDse WHSmithParis #teatime…";FALSE;0;NA;2016-10-24 18:42:25;FALSE;NA;"790624505710448640";NA;"<a href=""http://ifttt.com"" rel=""nofollow"">IFTTT</a>";"FranceMediaG";0;FALSE;FALSE;NA;NA
"199";"Yes! ~ #Teatime sweets @SashaEats @FPorchGourmet https://t.co/6cUDXqhNML";FALSE;2;NA;2016-10-24 18:40:37;FALSE;NA;"790624049969795072";NA;"<a href=""http://twitter.com"" rel=""nofollow"">Twitter Web Client</a>";"DivaFoodies";1;FALSE;FALSE;NA;NA
"200";"Five o'clock chic: WH Smith reopens traditional English tea room in #Paris https://t.co/vavvANgiun @WHSmithParis… https://t.co/m80oEb2aor";FALSE;1;NA;2016-10-24 18:40:03;TRUE;NA;"790623906914766848";NA;"<a href=""http://bufferapp.com"" rel=""nofollow"">Buffer</a>";"FranceToday";0;FALSE;FALSE;NA;NA
"201";"RT @cupandowl: Stunning #RoyalStafford teacup&saucer #vintage #teaparty #etsyteamunity #vintage #TeacupClub #teatime #etsy #gifts https://t…";FALSE;0;NA;2016-10-24 18:37:19;FALSE;NA;"790623219300442112";NA;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";"chaos4time";13;TRUE;FALSE;NA;NA
"202";"RT @cupandowl: Stunning #RoyalStafford teacup&saucer #vintage #teaparty #etsyteamunity #vintage #TeacupClub #teatime #etsy #gifts https://t…";FALSE;0;NA;2016-10-24 18:36:47;FALSE;NA;"790623086018236416";NA;"<a href=""http://twitter.com"" rel=""nofollow"">Twitter Web Client</a>";"Debsmagic21";13;TRUE;FALSE;NA;NA
"203";"Chocolate Marshmallow Spicier Chai from 52Teas... https://t.co/lMONZruo9i #tea #teatime https://t.co/ByD6jDI1qC";FALSE;0;NA;2016-10-24 18:35:06;FALSE;NA;"790622662401810432";NA;"<a href=""http://aa.com"" rel=""nofollow"">pptweet123</a>";"hanmeimei1955";0;FALSE;FALSE;NA;NA
"204";"Home, sick, working! #LifeofATeacher #LifeOfAStudent #TeaTime https://t.co/jooRXZ8C1N";FALSE;0;NA;2016-10-24 18:35:00;FALSE;NA;"790622636892094465";NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";"tpakazEDU";0;FALSE;FALSE;NA;NA
"205";"Gorgeous light blue teacup&saucer #etsy #giftideas #etsychaching #vintage #vintageteacup #teaparty #teatime https://t.co/C4KTSsTiza";FALSE;1;NA;2016-10-24 18:34:24;FALSE;NA;"790622488476553217";NA;"<a href=""http://twitter.com"" rel=""nofollow"">Twitter Web Client</a>";"cupandowl";2;FALSE;FALSE;NA;NA
"206";"RT @cupandowl: Stunning #RoyalStafford teacup&saucer #vintage #teaparty #etsyteamunity #vintage #TeacupClub #teatime #etsy #gifts https://t…";FALSE;0;NA;2016-10-24 18:33:10;FALSE;NA;"790622174977687552";NA;"<a href=""http://twitter.com"" rel=""nofollow"">Twitter Web Client</a>";"BiancaSteinfeld";13;TRUE;FALSE;NA;NA
"207";"RT @cupandowl: Stunning #RoyalStafford teacup&saucer #vintage #teaparty #etsyteamunity #vintage #TeacupClub #teatime #etsy #gifts https://t…";FALSE;0;NA;2016-10-24 18:32:07;FALSE;NA;"790621910291709953";NA;"<a href=""http://twitter.com"" rel=""nofollow"">Twitter Web Client</a>";"spoiledfelines1";13;TRUE;FALSE;NA;NA
"208";"Another 3D illustration finished #almostdaily #illustration #cinema4d #c4d #teatime #3d #octanerender #otoy https://t.co/73T6E6KmMM";FALSE;0;NA;2016-10-24 18:30:37;FALSE;NA;"790621533525929985";NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";"Stories2d3d";0;FALSE;FALSE;NA;NA
"209";"Stunning #RoyalStafford teacup&saucer #vintage #teaparty #etsyteamunity #vintage #TeacupClub #teatime #etsy #gifts https://t.co/w01ZRD2LFk";FALSE;6;NA;2016-10-24 18:27:53;FALSE;NA;"790620845148213248";NA;"<a href=""http://twitter.com"" rel=""nofollow"">Twitter Web Client</a>";"cupandowl";13;FALSE;FALSE;NA;NA
"210";"RT @GPBoozyFoodie: #teatime at @DoppioZeroSA <U+2615> #Southdowns - Hibiscus Vanilla, very soothing :) #mondaymorning #tealover #drinks #fruitte…";FALSE;0;NA;2016-10-24 18:22:47;FALSE;NA;"790619564849725440";NA;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";"PretoriaBlogger";1;TRUE;FALSE;NA;NA
"211";"@ForTeasSake, I agree! ¢<U+FE0F>#ForTeasSake #tea #TeaTime https://t.co/L2V5gLfVQX https://t.co/1fPvgYes0E";FALSE;1;"ForTeasSake";2016-10-24 18:22:21;FALSE;NA;"790619453268471809";"3805908313";"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";"HerLuv4Language";0;FALSE;FALSE;NA;NA
"212";"Tea stains are my thing #teatime #tea #teastained #cupoftea https://t.co/jJ03Ga1Ezf";FALSE;1;NA;2016-10-24 18:19:13;FALSE;NA;"790618665586659328";NA;"<a href=""http://instagram.com"" rel=""nofollow"">Instagram</a>";"MissEDashwood";0;FALSE;FALSE;NA;NA
"213";"Barbee https://t.co/d8dwVCD2MO me #model #moonlightbae #gaybarcelona #cookinuptrouble #teatime #loveoctober";FALSE;0;NA;2016-10-24 18:13:15;FALSE;NA;"790617165271592960";NA;"<a href=""http://manage.megapo.st/"" rel=""nofollow"">MEGAPO.ST</a>";"GonzalezoDavid";0;FALSE;FALSE;NA;NA
"214";"RT @ValleyofTea: Time for a moment of calm. #teatime Jasmine pearls https://t.co/1Bww9AnQQP";FALSE;0;NA;2016-10-24 18:11:40;FALSE;NA;"790616767299072001";NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";"nennahurtado";2;TRUE;FALSE;NA;NA
"215";"J Peterman Co. Chatsford Infuser Mug Tea Cup #jpeterman #chatsford #madeinEngland #luxury #seinfeld #tea #teatime… https://t.co/Bb7P097i5i";FALSE;0;NA;2016-10-24 18:05:04;TRUE;NA;"790615105599836161";NA;"<a href=""http://www.hootsuite.com"" rel=""nofollow"">Hootsuite</a>";"angielippard";0;FALSE;FALSE;NA;NA
"216";"#Teatime! Favorite? #tea https://t.co/tqqPnvFfqO";FALSE;0;NA;2016-10-24 18:00:39;FALSE;NA;"790613993937309701";NA;"<a href=""http://bufferapp.com"" rel=""nofollow"">Buffer</a>";"SenseSimplicity";0;FALSE;FALSE;NA;NA
"217";"RT @ImpactLVN: 2/2 here in Japan. @SantanaGarrett_ #TeaTime #TagTeam #WomensWrestling #Stardom @we_are_stardom https://t.co/ubCRbaul35";FALSE;0;NA;2016-10-24 17:51:03;FALSE;NA;"790611575761694720";NA;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";"Chef_TnaMafia";30;TRUE;FALSE;NA;NA
"218";"#RoyaleGiveaways - #Win a #casaWare Serenity 7-Piece #Tea Pot Set $70 value #LaPrimaShops #Teatime Enter Daily https://t.co/3SxLLp6WeG";FALSE;0;NA;2016-10-24 17:50:33;FALSE;NA;"790611452759539712";NA;"<a href=""http://twitter.com"" rel=""nofollow"">Twitter Web Client</a>";"shar1144";0;FALSE;FALSE;NA;NA
"219";"2017 Tea Festival and Trade Show Schedule... https://t.co/4elC7iRHY9 #tea #teatime https://t.co/vASpuwrPbx";FALSE;1;NA;2016-10-24 17:35:06;FALSE;NA;"790607565084241920";NA;"<a href=""http://aa.com"" rel=""nofollow"">pptweet123</a>";"hanmeimei1955";0;FALSE;FALSE;NA;NA
"220";"Our menu features items even the smallest #tea lovers will enjoy! <ed><U+00A0><U+00BD><ed><U+00B2><U+0095> <ed><U+00A0><U+00BC><ed><U+00BD><U+00B5> #teatime #PearlCafe #MountainViewCA https://t.co/6ExvS7TNU4";FALSE;1;NA;2016-10-24 17:31:29;FALSE;NA;"790606654559621120";NA;"<a href=""http://www.hootsuite.com"" rel=""nofollow"">Hootsuite</a>";"pearlcafe";0;FALSE;FALSE;NA;NA
"221";"#teatime @ Roman Road https://t.co/UU7eHldXRD";FALSE;1;NA;2016-10-24 17:30:34;FALSE;NA;"790606421284917248";NA;"<a href=""http://instagram.com"" rel=""nofollow"">Instagram</a>";"mauvaisquart1h";0;FALSE;FALSE;"-0.03303";"51.53241"
"222";"Tea time is the best time! Try my tea biscuit #recipe for your #teatime https://t.co/31FPbPY6cU";FALSE;0;NA;2016-10-24 17:28:39;FALSE;NA;"790605939694903296";NA;"<a href=""https://about.twitter.com/products/tweetdeck"" rel=""nofollow"">TweetDeck</a>";"urbanmommies";0;FALSE;FALSE;NA;NA
"223";"Watching the series catch up of @HarryHill #teatime - LOVING it! Good to see Trevor Modo again @BakersTweet #HarryHillsTeaTime";FALSE;5;NA;2016-10-24 17:28:35;FALSE;NA;"790605924830445568";NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";"SimonBailey1210";0;FALSE;FALSE;NA;NA
"224";"RT @menkareh: #DonneInArte #TeaTime @LunaLeso @agustin_gut @GuernseyJuliet @BrindusaB1 @GaiaGaudenzi @RitaCobix @FedericaAnto2
Chardin htt…";FALSE;0;NA;2016-10-24 17:27:12;FALSE;NA;"790605576652808193";NA;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";"MarieFrettoloso";14;TRUE;FALSE;NA;NA
"225";"RT @fieldsofvintage: #ChristmasTree #TeapotSet / Creamer and Sugar #christmasteapot #teatime #teasetting https://t.co/8IZrG7O0zu #etsy #ho…";FALSE;0;NA;2016-10-24 17:25:24;FALSE;NA;"790605123357663234";NA;"<a href=""http://twitter.com"" rel=""nofollow"">Twitter Web Client</a>";"joycestrohl";6;TRUE;FALSE;NA;NA
"226";"#RoyaleGiveaways - #Win a #casaWare Serenity 7-Piece #Tea Pot Set $70 value #LaPrimaShops #Teatime Enter Daily https://t.co/D6YwELIK2e";FALSE;0;NA;2016-10-24 17:09:21;FALSE;NA;"790601082833690624";NA;"<a href=""http://linkis.com"" rel=""nofollow"">Put your button on any page! </a>";"MintaB";0;FALSE;FALSE;NA;NA
"227";"#RoyaleGiveaways - #Win a #casaWare Serenity 7-Piece #Tea Pot Set $70 value #LaPrimaShops #Teatime Enter Daily https://t.co/yxkoc9ID6r";FALSE;1;NA;2016-10-24 16:54:07;FALSE;NA;"790597247515947008";NA;"<a href=""http://linkis.com"" rel=""nofollow"">Put your button on any page! </a>";"ladyknight6";0;FALSE;FALSE;NA;NA
"228";"#RoyaleGiveaways - #Win a #casaWare Serenity 7-Piece #Tea Pot Set $70 value #LaPrimaShops #Teatime Enter Daily https://t.co/QMlAoE8p99";FALSE;0;NA;2016-10-24 16:53:51;FALSE;NA;"790597184215474176";NA;"<a href=""http://linkis.com"" rel=""nofollow"">Put your button on any page! </a>";"rhoninarly";0;FALSE;FALSE;NA;NA
"229";"#RoyaleGiveaways - #Win a #casaWare Serenity 7-Piece #Tea Pot Set $70 value #LaPrimaShops #Teatime Enter Daily https://t.co/HNTzfvOHYj";FALSE;1;NA;2016-10-24 16:52:34;FALSE;NA;"790596857512722432";NA;"<a href=""http://linkis.com"" rel=""nofollow"">Put your button on any page! </a>";"THEPiperPerez";0;FALSE;FALSE;NA;NA
"230";"A proper cup of full leaf brewed tea. #earlgrey #lavender #caffiene #teatime #gf #donut… https://t.co/saEaRNNjT1";FALSE;0;NA;2016-10-24 16:52:04;FALSE;NA;"790596734623907845";NA;"<a href=""http://instagram.com"" rel=""nofollow"">Instagram</a>";"martininow";0;FALSE;FALSE;NA;NA
"231";"#teatime #teawisdom #givethanks yogitea <ed><U+00A0><U+00BC><ed><U+00BD><U+00B5><U+2728><ed><U+00A0><U+00BD><ed><U+00B1><U+008C><ed><U+00A0><U+00BC><ed><U+00BF><U+00BC> @ Miami Beach South Beach https://t.co/hI1n7SQoan";FALSE;0;NA;2016-10-24 16:51:10;FALSE;NA;"790596506394832896";NA;"<a href=""http://instagram.com"" rel=""nofollow"">Instagram</a>";"DJELLE";0;FALSE;FALSE;"-80.13491";"25.79335"
"232";"RT @Teanzo1856: Advent Loose Leaf Calendar is LIVE and going fast! #christmas #advent #gift #countdown #teatime #comfortfood #fall https://…";FALSE;0;NA;2016-10-24 16:45:17;FALSE;NA;"790595027097427968";NA;"<a href=""http://twitter.com"" rel=""nofollow"">Twitter Web Client</a>";"MeenaKapur";1;TRUE;FALSE;NA;NA
"233";"Advent Loose Leaf Calendar is LIVE and going fast! #christmas #advent #gift #countdown #teatime #comfortfood #fall https://t.co/S8zDSwLawL";FALSE;0;NA;2016-10-24 16:44:32;FALSE;NA;"790594835849711616";NA;"<a href=""http://twitter.com"" rel=""nofollow"">Twitter Web Client</a>";"Teanzo1856";1;FALSE;FALSE;NA;NA
"234";"RT @MoreAndAgain: #TeaTime for the real heroes
https://t.co/XrEDFlNcqz";FALSE;0;NA;2016-10-24 16:41:43;FALSE;NA;"790594128014868480";NA;"<a href=""https://about.twitter.com/products/tweetdeck"" rel=""nofollow"">TweetDeck</a>";"GMBTShow";1;TRUE;FALSE;NA;NA
"235";"#TeaTime for the real heroes
https://t.co/XrEDFlNcqz";FALSE;0;"MoreAndAgain";2016-10-24 16:41:25;FALSE;"790593826100510720";"790594054216089600";"18302204";"<a href=""https://about.twitter.com/products/tweetdeck"" rel=""nofollow"">TweetDeck</a>";"MoreAndAgain";1;FALSE;FALSE;NA;NA
"236";"Just missing a kitty. <ed><U+00A0><U+00BC><ed><U+00BD><U+0081><ed><U+00A0><U+00BC><ed><U+00BD><U+0082> <ed><U+00A0><U+00BC><ed><U+00BD><U+00B5> #writingsession #begin #practice #writerslife #TuesdayMotivation #teatime #NaNoWriMo2016… https://t.co/AfoL7jvAKM";FALSE;4;NA;2016-10-24 16:39:00;TRUE;NA;"790593443181555712";NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";"KrisExplores";0;FALSE;FALSE;NA;NA
"237";"#RoyaleGiveaways - #Win a #casaWare Serenity 7-Piece #Tea Pot Set $70 value #LaPrimaShops #Teatime Enter Daily https://t.co/EzKlfqQjEA";FALSE;0;NA;2016-10-24 16:37:17;FALSE;NA;"790593012518752256";NA;"<a href=""http://linkis.com"" rel=""nofollow"">Put your button on any page! </a>";"Suzanna60";0;FALSE;FALSE;NA;NA
"238";"Charin https://t.co/nc8xpKaVBO me #lapdance #retrica #amigas #usa #teatime #barca";FALSE;0;NA;2016-10-24 16:33:11;FALSE;NA;"790591983274385408";NA;"<a href=""http://manage.megapo.st/"" rel=""nofollow"">MEGAPO.ST</a>";"GonzalezoDavid";0;FALSE;FALSE;NA;NA
"239";"It’s tea time already! Take a break and a peep at our lovely website for some present inspiration. #teatime #fairy… https://t.co/7IRBccDUTV";FALSE;1;NA;2016-10-24 16:30:52;TRUE;NA;"790591398735126528";NA;"<a href=""http://www.hootsuite.com"" rel=""nofollow"">Hootsuite</a>";"RagtalesSales";0;FALSE;FALSE;NA;NA
"240";"I'm not crazy
#cute #emo #boy #emoboy #love #hot #hotboy #girl #emogirl #cosplay #naruto #emohair #kawaii #<U+304B><U+308F><U+3044><U+3044>… https://t.co/qRZDfnByFQ";FALSE;2;NA;2016-10-24 16:28:11;TRUE;NA;"790590723678674944";NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";"Monkey_YuffYuff";0;FALSE;FALSE;NA;NA
"241";"Always choose natural beverages like water or green tea. #WeightLoss #Tea #Teatime #Teaaddict #Tealovers #Teacup… https://t.co/npRBL6txEu";FALSE;1;NA;2016-10-24 16:25:20;TRUE;NA;"790590004238123008";NA;"<a href=""http://www.hootsuite.com"" rel=""nofollow"">Hootsuite</a>";"DrZisman";0;FALSE;FALSE;NA;NA
"242";"T e a t i m e
#latergram #teatime #autumn https://t.co/dqk0yjgrIV";FALSE;0;NA;2016-10-24 16:22:41;FALSE;NA;"790589337830236160";NA;"<a href=""http://instagram.com"" rel=""nofollow"">Instagram</a>";"simeoni_lisa";0;FALSE;FALSE;NA;NA
"243";"RT @atozfoodrecipes: Eggless Fruit Cake
#VegFood #Recipe #Yummy #Tasty #Foodie #Recipes #Cooking #Cook #TeaTime #Desserts #Bake #Baking ht…";FALSE;0;NA;2016-10-24 16:19:51;FALSE;NA;"790588626711314432";NA;"<a href=""http://twitter.com"" rel=""nofollow"">Twitter Web Client</a>";"PurdyBear7";1;TRUE;FALSE;NA;NA
"244";"I need tea and a cupcake!!! #pototea #teatime";FALSE;0;NA;2016-10-24 16:13:45;FALSE;NA;"790587090698330113";NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";"13nonameSam";0;FALSE;FALSE;NA;NA
"245";"RT @fieldsofvintage: #ChristmasTree #TeapotSet / Creamer and Sugar #christmasteapot #teatime #teasetting https://t.co/8IZrG7O0zu #etsy #ho…";FALSE;0;NA;2016-10-24 16:09:32;FALSE;NA;"790586027635273728";NA;"<a href=""http://twitter.com"" rel=""nofollow"">Twitter Web Client</a>";"ReniKallen";6;TRUE;FALSE;NA;NA
"246";"RT @AtHomeIllinois: The Walnut Street Tea Company in downtown Champaign! @walnutstreettea #teatime #afternoontea https://t.co/GMRJy9Lukx";FALSE;0;NA;2016-10-24 16:07:27;FALSE;NA;"790585503687081984";NA;"<a href=""http://twitter.com"" rel=""nofollow"">Twitter Web Client</a>";"bridgebroihahn";3;TRUE;FALSE;NA;NA
"247";"RT @ImpactLVN: 2/2 here in Japan. @SantanaGarrett_ #TeaTime #TagTeam #WomensWrestling #Stardom @we_are_stardom https://t.co/ubCRbaul35";FALSE;0;NA;2016-10-24 16:06:39;FALSE;NA;"790585302100258816";NA;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";"SkaggsJimmy";30;TRUE;FALSE;NA;NA
"248";"RT @AtHomeIllinois: The Walnut Street Tea Company in downtown Champaign! @walnutstreettea #teatime #afternoontea https://t.co/GMRJy9Lukx";FALSE;0;NA;2016-10-24 16:06:06;FALSE;NA;"790585166288789504";NA;"<a href=""http://twitter.com"" rel=""nofollow"">Twitter Web Client</a>";"AtHomeIllinois";3;TRUE;FALSE;NA;NA
"249";"RT @AtHomeIllinois: The Walnut Street Tea Company in downtown Champaign! @walnutstreettea #teatime #afternoontea https://t.co/GMRJy9Lukx";FALSE;0;NA;2016-10-24 15:56:43;FALSE;NA;"790582804417511425";NA;"<a href=""http://twitter.com"" rel=""nofollow"">Twitter Web Client</a>";"CentralILBiz";3;TRUE;FALSE;NA;NA
"250";"It's another #meatfreemonday here at @churchJQ ! 50% off all #vegetarian and #vegan main meals! #jq #teatime… https://t.co/uZ5NPjB9zW";FALSE;1;NA;2016-10-24 15:54:45;TRUE;NA;"790582308747313152";NA;"<a href=""http://twitter.com"" rel=""nofollow"">Twitter Web Client</a>";"churchJQ";0;FALSE;FALSE;NA;NA
"251";"The Walnut Street Tea Company in downtown Champaign! @walnutstreettea #teatime #afternoontea https://t.co/GMRJy9Lukx";FALSE;5;NA;2016-10-24 15:54:35;FALSE;NA;"790582266187620352";NA;"<a href=""http://twitter.com"" rel=""nofollow"">Twitter Web Client</a>";"AtHomeIllinois";3;FALSE;FALSE;NA;NA
"252";"Teatime before bedtime. #primestart #teatime #detox #health https://t.co/0JEsJl3cDJ";FALSE;1;NA;2016-10-24 15:53:03;FALSE;NA;"790581882962505732";NA;"<a href=""http://instagram.com"" rel=""nofollow"">Instagram</a>";"hazelnutzy";0;FALSE;FALSE;NA;NA
"253";"RT @GMBTShow: That's it for this morning's rundown. Catch today's episode of Good Morning Black Twitter! #TeaTime https://t.co/36ptFOjaD0";FALSE;0;NA;2016-10-24 15:51:52;FALSE;NA;"790581583623299073";NA;"<a href=""http://twitter.com"" rel=""nofollow"">Twitter Web Client</a>";"miss_hellion";2;TRUE;FALSE;NA;NA
"254";"RT @GMBTShow: That's it for this morning's rundown. Catch today's episode of Good Morning Black Twitter! #TeaTime https://t.co/36ptFOjaD0";FALSE;0;NA;2016-10-24 15:51:45;FALSE;NA;"790581552757571584";NA;"<a href=""https://about.twitter.com/products/tweetdeck"" rel=""nofollow"">TweetDeck</a>";"MoreAndAgain";2;TRUE;FALSE;NA;NA
"255";"That's it for this morning's rundown. Catch today's episode of Good Morning Black Twitter! #TeaTime https://t.co/36ptFOjaD0";FALSE;0;"GMBTShow";2016-10-24 15:51:18;FALSE;"790581036681945089";"790581441277091840";"3426208389";"<a href=""http://twitter.com"" rel=""nofollow"">Twitter Web Client</a>";"GMBTShow";2;FALSE;FALSE;NA;NA
"256";"#TheDailyBuzz: Interested in beekeeping? Start an apiary in Scotland! #localhoney #savethebees #teatime @thetimes https://t.co/bMbRdVPMsL";FALSE;2;NA;2016-10-24 15:50:02;FALSE;NA;"790581123285934080";NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";"truehoneyteas";0;FALSE;FALSE;NA;NA
"257";"Afternoon English Tea <U+2615><U+FE0F> Patisserie Valerie, perfect <ed><U+00A0><U+00BD><ed><U+00B2><U+009F> patisserievalerie #afternoontea #teatime… https://t.co/gPcF5DJBka";FALSE;0;NA;2016-10-24 15:49:29;FALSE;NA;"790580984827621380";NA;"<a href=""http://instagram.com"" rel=""nofollow"">Instagram</a>";"MissClaireLCdD";0;FALSE;FALSE;"-0.13763406";"51.51309439"
"258";"rough monday <ed><U+00A0><U+00BE><ed><U+00B4><U+0095>| #hatemondays #teatime https://t.co/OUcv1rcnCS";FALSE;0;NA;2016-10-24 15:48:38;FALSE;NA;"790580768523235329";NA;"<a href=""http://instagram.com"" rel=""nofollow"">Instagram</a>";"JulieVP1998";0;FALSE;FALSE;NA;NA
"259";"RT @ValleyofTea: Time for a moment of calm. #teatime Jasmine pearls https://t.co/1Bww9AnQQP";FALSE;0;NA;2016-10-24 15:42:27;FALSE;NA;"790579212721778689";NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";"TeatoxTwist";2;TRUE;FALSE;NA;NA
"260";"positive message #teatime #ecologico yogitea #life #live #enjoy #feel #risas #day #dia #vida… https://t.co/TExIZ9MgqM";FALSE;0;NA;2016-10-24 15:38:57;FALSE;NA;"790578332635103232";NA;"<a href=""http://instagram.com"" rel=""nofollow"">Instagram</a>";"krmnra";0;FALSE;FALSE;NA;NA
"261";"RT @VuliesTea: #mondaymotivation #drinktea & #BeGreat! You can handle whatever this week throws at you. #HappyMonday #teatime #Motivation…";FALSE;0;NA;2016-10-24 15:22:25;FALSE;NA;"790574170593718272";NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";"Leahjdavidson";1;TRUE;FALSE;NA;NA
"262";"October 24. Welcome to the culture. #teatime #chefchaouen
#morocco https://t.co/znsdtuC9or";FALSE;2;NA;2016-10-24 15:20:14;FALSE;NA;"790573622775713796";NA;"<a href=""http://www.hootsuite.com"" rel=""nofollow"">Hootsuite</a>";"coffeetographer";0;FALSE;FALSE;NA;NA
"263";"#mondaymotivation #drinktea & #BeGreat! You can handle whatever this week throws at you. #HappyMonday #teatime… https://t.co/mf2kI5Y5sw";FALSE;2;NA;2016-10-24 15:17:24;TRUE;NA;"790572908343091200";NA;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";"VuliesTea";1;FALSE;FALSE;NA;NA
"264";"We couldn't agree more! #teatime https://t.co/bA03Ave2DB";FALSE;1;NA;2016-10-24 15:13:25;FALSE;NA;"790571907322109953";NA;"<a href=""http://twitter.com"" rel=""nofollow"">Twitter Web Client</a>";"FloweringTeas";0;FALSE;FALSE;NA;NA
"265";"#Teatime in #Henley #Toasted #Bunnybread Thank you Mr. Baker #Bakerbyname #LawlorsTheBakers #realfamilyBakers… https://t.co/DZjoImAo8R";FALSE;0;NA;2016-10-24 15:12:40;TRUE;NA;"790571718603595780";NA;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";"HoTBunnyBaker";0;FALSE;FALSE;NA;NA
"266";"Afternoon all I think it maybe time for tea and photo editing how's your afternoon shaping up? #teatime #caffeine… https://t.co/OnA5SFvDR3";FALSE;0;NA;2016-10-24 15:05:01;TRUE;NA;"790569791534698497";NA;"<a href=""https://about.twitter.com/products/tweetdeck"" rel=""nofollow"">TweetDeck</a>";"DesignandEdit";0;FALSE;FALSE;NA;NA
"267";"We are all about #healthyliving drink plenty of tea and don’t forget your 5-a-day! get your #herbal fix now… https://t.co/N8YvmFHkgN";FALSE;2;NA;2016-10-24 15:03:44;TRUE;NA;"790569471912112128";NA;"<a href=""http://www.hootsuite.com"" rel=""nofollow"">Hootsuite</a>";"myteatimeuk";0;FALSE;FALSE;NA;NA
"268";"RT @alenasbdesign: Up to 50% Off Home and Art Departments!
Code: COZYUPSAVING
https://t.co/z2EdUStaHV
#teatime #giftideas #shoppingqueen ht…";FALSE;0;NA;2016-10-24 15:00:21;FALSE;NA;"790568617586880512";NA;"<a href=""http://www.hostingmad.com/"" rel=""nofollow"">ReTwitStorm Deutsch Bot</a>";"ReTwitStorm_deu";3;TRUE;FALSE;NA;NA
"269";"Work Set-Up. What's yours? #tea #greentea #teatime #win #90sBabyFollowTrain https://t.co/ctH1KRRI0x";FALSE;1;NA;2016-10-24 14:58:44;FALSE;NA;"790568210378661888";NA;"<a href=""http://ifttt.com"" rel=""nofollow"">IFTTT</a>";"cookingscarlet";0;FALSE;FALSE;NA;NA
"270";"My Big Tea Teekanne von Eva Solo - It´s teatime! https://t.co/Kya0Had7X3
#reddot #reddotshop #evasolo #teekanne… https://t.co/9odZCGjigJ";FALSE;0;NA;2016-10-24 14:56:57;TRUE;NA;"790567762800287744";NA;"<a href=""http://twitter.com"" rel=""nofollow"">Twitter Web Client</a>";"RedDotShop";0;FALSE;FALSE;NA;NA
"271";"#Teatime Royal Cauldon #Teapot Bristol Engalnd Ironstone #JuneGarden White 7' https://t.co/BLB8yiomAp via @eBay";FALSE;0;NA;2016-10-24 14:51:23;FALSE;NA;"790566362783502336";NA;"<a href=""http://twitter.com"" rel=""nofollow"">Twitter Web Client</a>";"BlingBlinkyofTX";0;FALSE;FALSE;NA;NA
"272";"Could Go For A Cup Of Tea Right About Now? <ed><U+00A0><U+00BD><ed><U+00B2><U+0095>#tea #teaofthemonth #teatime #blacktea #greentea #tealover #teavana https://t.co/TrLi7qizdE";FALSE;3;NA;2016-10-24 14:50:30;FALSE;NA;"790566140833591297";NA;"<a href=""http://twitter.com"" rel=""nofollow"">Twitter Web Client</a>";"TeailyTea";1;FALSE;FALSE;NA;NA
"273";"#rainydays #california #danceintherain #spiritjunkie <ed><U+00A0><U+00BC><ed><U+00BE><U+00B6><U+2614><U+FE0F><U+FE0F><ed><U+00A0><U+00BD><ed><U+00B1><U+00B8><ed><U+00A0><U+00BE><ed><U+00B6><U+0084> #teatime <ed><U+00A0><U+00BC><ed><U+00BD><U+00B5> @amberelizabeeth remember… https://t.co/yqzEsKOg5Z";FALSE;1;NA;2016-10-24 14:49:30;FALSE;NA;"790565890257543173";NA;"<a href=""http://instagram.com"" rel=""nofollow"">Instagram</a>";"mindyjustmindy";0;FALSE;FALSE;NA;NA
"274";"Enjoy the simplicity of life! #Tea #TeaTime #Meditation #Denver #DenverLife #Colorado #Kleff #DrinkKleff https://t.co/hfHBwYTCCC";FALSE;1;NA;2016-10-24 14:46:06;FALSE;NA;"790565035017924608";NA;"<a href=""http://www.facebook.com/twitter"" rel=""nofollow"">Facebook</a>";"klefftea";0;FALSE;FALSE;NA;NA
"275";"15 minutes to #teatime o #coffeebreak with home made #cake. It'll be our pleasure to see you smile! https://t.co/pPhwEZ8Fpz www.heladeria.…";FALSE;0;NA;2016-10-24 14:45:19;FALSE;NA;"790564836967116800";NA;"<a href=""http://ifttt.com"" rel=""nofollow"">IFTTT</a>";"heladeriaBlu";0;FALSE;FALSE;NA;NA
"276";"Teatime with a bird's eye view of the world going by #teatime #shanghai #china #skyscrapers… https://t.co/FoyPqd480y";FALSE;1;NA;2016-10-24 14:43:01;FALSE;NA;"790564258941587456";NA;"<a href=""http://instagram.com"" rel=""nofollow"">Instagram</a>";"fayepeters";0;FALSE;FALSE;"121.44316659";"31.22733789"
"277";"Tea cakes and carrot cakes to make it through this day <ed><U+00A0><U+00BD><ed><U+00B9><U+0082> #cake #dessert #afternoontea #teatime… https://t.co/NyN4i7YFOS";FALSE;0;NA;2016-10-24 14:42:01;FALSE;NA;"790564003667992578";NA;"<a href=""http://instagram.com"" rel=""nofollow"">Instagram</a>";"mappingmayhem";0;FALSE;FALSE;NA;NA
"278";"RT @fieldsofvintage: #ChristmasTree #TeapotSet / Creamer and Sugar #christmasteapot #teatime #teasetting https://t.co/8IZrG7O0zu #etsy #ho…";FALSE;0;NA;2016-10-24 14:37:51;FALSE;NA;"790562955389603841";NA;"<a href=""http://twitter.com"" rel=""nofollow"">Twitter Web Client</a>";"Sewstitchquilt2";6;TRUE;FALSE;NA;NA
"279";"RT @menkareh: #DonneInArte #TeaTime @LunaLeso @agustin_gut @GuernseyJuliet @BrindusaB1 @GaiaGaudenzi @RitaCobix @FedericaAnto2
Chardin htt…";FALSE;0;NA;2016-10-24 14:36:26;FALSE;NA;"790562600635412481";NA;"<a href=""http://twitter.com"" rel=""nofollow"">Twitter Web Client</a>";"Amyperuana";14;TRUE;FALSE;NA;NA
"280";"Milk Tea in the morning, Black Tea in the evening & Green Sencha Tea at night... My Date with Tea today is complete. #teatime #teaddict";FALSE;0;NA;2016-10-24 14:32:05;FALSE;NA;"790561506605699072";NA;"<a href=""https://mobile.twitter.com"" rel=""nofollow"">Mobile Web (M5)</a>";"thecaseofM";0;FALSE;FALSE;NA;NA
"281";"RT @alenasbdesign: Up to 50% Off Home and Art Departments!
Code: COZYUPSAVING
https://t.co/z2EdUStaHV
#teatime #giftideas #shoppingqueen ht…";FALSE;0;NA;2016-10-24 14:29:19;FALSE;NA;"790560808304381953";NA;"<a href=""http://twitter.com"" rel=""nofollow"">Twitter Web Client</a>";"Sewstitchquilt2";3;TRUE;FALSE;NA;NA
"282";"Up to 50% Off Home and Art Departments!
Code: COZYUPSAVING
https://t.co/z2EdUStaHV
#teatime #giftideas… https://t.co/MsslgQ6BU9";FALSE;1;NA;2016-10-24 14:29:03;TRUE;NA;"790560741548056576";NA;"<a href=""http://bufferapp.com"" rel=""nofollow"">Buffer</a>";"alenasbdesign";3;FALSE;FALSE;NA;NA
"283";"Time for tea and a slice of my Limousin apple & chestnut crumble cake <ed><U+00A0><U+00BC><ed><U+00BD><U+0082><ed><U+00A0><U+00BC><ed><U+00BC><U+00B0><ed><U+00A0><U+00BC><ed><U+00BD><U+008F> #teatime https://t.co/sxkt69RWcl";FALSE;5;NA;2016-10-24 14:28:06;FALSE;NA;"790560503999365120";NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";"DeToutCoeur_";1;FALSE;FALSE;NA;NA
"284";"#RoyaleGiveaways - #Win a #casaWare Serenity 7-Piece #Tea Pot Set $70 value #LaPrimaShops #Teatime Enter Daily https://t.co/wEkXWuss1H";FALSE;0;NA;2016-10-24 14:25:49;FALSE;NA;"790559930080190464";NA;"<a href=""http://linkis.com"" rel=""nofollow"">Put your button on any page! </a>";"isiandmike";0;FALSE;FALSE;NA;NA
"285";"RT @fieldsofvintage: #ChristmasTree #TeapotSet / Creamer and Sugar #christmasteapot #teatime #teasetting https://t.co/8IZrG7O0zu #etsy #ho…";FALSE;0;NA;2016-10-24 14:23:54;FALSE;NA;"790559448066564097";NA;"<a href=""http://twitter.com"" rel=""nofollow"">Twitter Web Client</a>";"DonnasDesignsSC";6;TRUE;FALSE;NA;NA
"286";"Jean Simeon Chardin - A woman drinking tea
1633-66 ca
#arthistory #teatime https://t.co/7vdmWKdboy";FALSE;0;NA;2016-10-24 14:20:11;FALSE;NA;"790558511071653889";NA;"<a href=""http://twitter.com"" rel=""nofollow"">Twitter Web Client</a>";"LadyRocknRoller";0;FALSE;FALSE;NA;NA
"287";"#ChristmasTree #TeapotSet / Creamer and Sugar #christmasteapot #teatime #teasetting https://t.co/8IZrG7O0zu #etsy… https://t.co/xNeGO5ICcK";FALSE;0;NA;2016-10-24 14:20:04;TRUE;NA;"790558482940436480";NA;"<a href=""https://www.socialjukebox.com"" rel=""nofollow"">The Social Jukebox</a>";"fieldsofvintage";6;FALSE;FALSE;NA;NA
"288";"RT @cupandowl: Gorgeous #RoyalAlbert teacup&saucer #etsy #giftideas #gifts #teaparty #teatime #vintage #etsyshop #temptteam https://t.co/mw…";FALSE;0;NA;2016-10-24 14:19:19;FALSE;NA;"790558293542535168";NA;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";"cvccrafts";14;TRUE;FALSE;NA;NA
"289";"My favorite moment in the afternoon when it's raining <ed><U+00A0><U+00BC><ed><U+00BC><U+00A7> outside #teatime #relax #drinkingtea #takeyourtime #listeni… https://t.co/sZCkVQ4R4n";FALSE;0;NA;2016-10-24 14:07:52;FALSE;NA;"790555412596744192";NA;"<a href=""http://ifttt.com"" rel=""nofollow"">IFTTT</a>";"BabyBuhShop";0;FALSE;FALSE;NA;NA
"290";"RT @cupandowl: Gorgeous #RoyalAlbert teacup&saucer #etsy #giftideas #gifts #teaparty #teatime #vintage #etsyshop #temptteam https://t.co/mw…";FALSE;0;NA;2016-10-24 14:04:20;FALSE;NA;"790554523173433344";NA;"<a href=""https://mobile.twitter.com"" rel=""nofollow"">Mobile Web (M5)</a>";"Galva_Craft";14;TRUE;FALSE;NA;NA
"291";"RT @cupandowl: Gorgeous #RoyalAlbert teacup&saucer #etsy #giftideas #gifts #teaparty #teatime #vintage #etsyshop #temptteam https://t.co/mw…";FALSE;0;NA;2016-10-24 14:03:04;FALSE;NA;"790554201260564481";NA;"<a href=""https://mobile.twitter.com"" rel=""nofollow"">Mobile Web (M5)</a>";"happyhippyshack";14;TRUE;FALSE;NA;NA
"292";"RT @Eschelle: #TeaTime With Harris Tea @TeaIndiaUSA #tea #tealover https://t.co/QrPt9SHpRN https://t.co/gfRcUWA2XR";FALSE;0;NA;2016-10-24 14:03:00;FALSE;NA;"790554187218247680";NA;"<a href=""http://twitter.com"" rel=""nofollow"">Twitter Web Client</a>";"TeaIndiaUSA";1;TRUE;FALSE;NA;NA
"293";"#TeaTime With Harris Tea @TeaIndiaUSA #tea #tealover https://t.co/QrPt9SHpRN https://t.co/gfRcUWA2XR";FALSE;2;NA;2016-10-24 14:01:29;FALSE;NA;"790553805993627649";NA;"<a href=""http://publicize.wp.com/"" rel=""nofollow"">WordPress.com</a>";"Eschelle";1;FALSE;FALSE;NA;NA
"294";"RT @cupandowl: Beautiful daisy teacup and saucer #RoyalAlbert #teaparty #teatime #vintage #epiconetsy #gotvintage #etsy #gifts https://t.co…";FALSE;0;NA;2016-10-24 13:58:19;FALSE;NA;"790553006823440384";NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";"nerakmugnet";2;TRUE;FALSE;NA;NA
"295";"Nankhatai
A popular Indian eggless #CookieTime .
See the recipe at https://t.co/lsgCNN3lxR
#Nankhatai #Diwali #Teatime #Snacks #Eggless";FALSE;0;NA;2016-10-24 13:57:35;FALSE;NA;"790552825424064513";NA;"<a href=""http://twitter.com"" rel=""nofollow"">Twitter Web Client</a>";"awesomecuisine";0;FALSE;FALSE;NA;NA
"296";"Mom's handmade applepie<ed><U+00A0><U+00BC><ed><U+00BD><U+008E>
#handmadeapplepie
#<U+304A><U+6BCD><U+3055><U+3093><U+306E><U+30A2><U+30C3><U+30D7><U+30EB><U+30D1><U+30A4> #teatime #applepie #favoritesweets #<ed><U+00A0><U+00BC><ed><U+00BD><U+008E>… https://t.co/ZeMwQ6yH8a";FALSE;0;NA;2016-10-24 13:57:02;FALSE;NA;"790552682989694976";NA;"<a href=""http://instagram.com"" rel=""nofollow"">Instagram</a>";"sora_mh_jewelry";0;FALSE;FALSE;NA;NA
"297";"We ¦<U+FE0F> buttery crumbly shortbread! #shortbread #teatime #howlongtildinner?! https://t.co/0Ms1aFdWex";FALSE;0;NA;2016-10-24 13:49:56;FALSE;NA;"790550899856924672";NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";"SebastiansS11";0;FALSE;FALSE;NA;NA
"298";"Start the week aboard a raft of good intentions, and full of Cosy Lemon Green Tea!
#CosyTea #TeaTime #MondayBlues https://t.co/zyk7p0ObqF";FALSE;0;NA;2016-10-24 13:49:40;FALSE;NA;"790550830185316353";NA;"<a href=""http://www.hootsuite.com"" rel=""nofollow"">Hootsuite</a>";"Cosy_Tea";0;FALSE;FALSE;NA;NA
"299";"Check out Handmade Owl #Tea Cosy - Merino Wool/Cotton Mix, fits 4-6 Cup Teapots - HOWARD https://t.co/YKUIX4ELjU #flockbn #uksopro #teatime";FALSE;0;NA;2016-10-24 13:47:56;FALSE;NA;"790550395458293760";NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";"TaffertyDesigns";5;FALSE;FALSE;NA;NA
"300";"Enjoy a nice cup of Zalika's Green Tea- ASHA #tea #zalikatea #teatime #tealover https://t.co/1LySTMuikd";FALSE;1;NA;2016-10-24 13:45:39;FALSE;NA;"790549820956151808";NA;"<a href=""http://www.hootsuite.com"" rel=""nofollow"">Hootsuite</a>";"ZalikaTea";0;FALSE;FALSE;NA;NA
"301";"Monday <ed><U+00A0><U+00BD><ed><U+00B8><U+00B4> #hamburg #autumn #britneyspears #iwillsurvive #tired #monday #mondaymood #teatime… https://t.co/TPD2j8R7Gt";FALSE;0;NA;2016-10-24 13:34:56;FALSE;NA;"790547122609332224";NA;"<a href=""http://instagram.com"" rel=""nofollow"">Instagram</a>";"LaBolivianaHH";0;FALSE;FALSE;"9.99318599";"53.55306537"
"302";"Ahhh bliss! Enjoying my freshly brewed #chai thanks to @T2teaRegent after my lecture. Blooming chilly out there! #teatime";FALSE;1;NA;2016-10-24 13:34:45;FALSE;NA;"790547076153274368";NA;"<a href=""http://twitter.com"" rel=""nofollow"">Twitter Web Client</a>";"MarikaTweets";0;FALSE;FALSE;NA;NA
"303";"British History of Ceylon Tea (found on /r/documentaries) #tea #greentea #teatime #win #90sBabyFollowTrain https://t.co/rUygdZuqii";FALSE;0;NA;2016-10-24 13:33:11;FALSE;NA;"790546680957599744";NA;"<a href=""http://ifttt.com"" rel=""nofollow"">IFTTT</a>";"cookingscarlet";0;FALSE;FALSE;NA;NA
"304";"RT @cupandowl: Stunning blue teacup&saucer #etsy #giftideas #gifts #etsychristmas #etsyvintage #vintage #teaparty #teatime https://t.co/lhm…";FALSE;0;NA;2016-10-24 13:30:15;FALSE;NA;"790545944257245184";NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";"nerakmugnet";2;TRUE;FALSE;NA;NA
"305";"Down To Earth <ed><U+00A0><U+00BC><ed><U+00BC><U+008D>...#teatime #morocco https://t.co/ANCNnHGVYq";FALSE;0;NA;2016-10-24 13:29:42;FALSE;NA;"790545806021435397";NA;"<a href=""http://instagram.com"" rel=""nofollow"">Instagram</a>";"Bakchic";0;FALSE;FALSE;NA;NA
"306";"Check out #Handmade Pure Wool Rainbow #Tea Cosy. Great #holiday #giftidea. https://t.co/3ua3S9GPV0 @eBay #tweeturbiz #teatime #afternoontea";FALSE;3;NA;2016-10-24 13:29:34;FALSE;NA;"790545774249738240";NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";"TaffertyDesigns";1;FALSE;FALSE;NA;NA
"307";"RT @cupandowl: Lovely light blue teacup & saucer #etsy #giftideas #teacups #teatime #vintage #epiconetsy #shoppershour https://t.co/xd33ToQ…";FALSE;0;NA;2016-10-24 13:29:23;FALSE;NA;"790545728569430016";NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";"nerakmugnet";2;TRUE;FALSE;NA;NA
"308";"#mondaymotivation time to put the kettle on! #autumn #teatime #mobility @RheumaArthritis @ageukbh @FriendsElderly… https://t.co/5FPX8OoHKy";FALSE;0;NA;2016-10-24 13:23:26;TRUE;NA;"790544229063942144";NA;"<a href=""http://twitter.com"" rel=""nofollow"">Twitter Web Client</a>";"essentialaids";0;FALSE;FALSE;NA;NA
"309";"A different type of #boxset
But still an awesome, rewarding way to spend a wintery evening
#tealovers #teatime… https://t.co/OjF46teccE";FALSE;1;NA;2016-10-24 13:15:04;TRUE;NA;"790542122415980544";NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";"ChashTea";0;FALSE;FALSE;NA;NA
"310";"face full of tea <U+2615><U+FE0F>
this is my fourth pot <ed><U+00A0><U+00BD><ed><U+00B1><U+008C><ed><U+00A0><U+00BC><ed><U+00BF><U+00BB>
#alqasr #afternoontea #redheadinthesandpit #teatime… https://t.co/3fG8SRuTCn";FALSE;1;NA;2016-10-24 13:03:46;FALSE;NA;"790539280259117056";NA;"<a href=""http://instagram.com"" rel=""nofollow"">Instagram</a>";"jacqueline_pg";0;FALSE;FALSE;"55.18396856";"25.13237292"
"311";"Mondays be like ""more tea please"" #chai #teatime #teamakeseverythingbetter https://t.co/o3HKTe3OQF";FALSE;1;NA;2016-10-24 12:58:04;FALSE;NA;"790537846029295618";NA;"<a href=""http://twitter.com"" rel=""nofollow"">Twitter Web Client</a>";"reachnisha";0;FALSE;FALSE;NA;NA
"312";"""Bright people"" #blackandwhitephotography #oniric #poetry #teatime #figurine https://t.co/3m80F2SSuy";FALSE;1;NA;2016-10-24 12:54:39;FALSE;NA;"790536983764426752";NA;"<a href=""http://twitter.com"" rel=""nofollow"">Twitter Web Client</a>";"CushmoK";0;FALSE;FALSE;NA;NA
"313";"Garland https://t.co/AaFasPpxXS as #perfeitinha #chilegramers #selfiegay #foodpic #teatime #sparkles";FALSE;0;NA;2016-10-24 12:48:14;FALSE;NA;"790535369917861888";NA;"<a href=""http://manage.megapo.st/"" rel=""nofollow"">MEGAPO.ST</a>";"iharrisz87";0;FALSE;FALSE;NA;NA
"314";"It’s the world’s most popular drink, next to water—and it’s steeped in health benefits! #teatime https://t.co/UnSQe0zle9";FALSE;1;NA;2016-10-24 12:45:50;FALSE;NA;"790534768521805824";NA;"<a href=""http://www.hootsuite.com"" rel=""nofollow"">Hootsuite</a>";"Pain_Doctors";0;FALSE;FALSE;NA;NA
"315";"Which heathen broke the last teabag? Worry not - we'll deliver some more (& some biccies) within 30 mins #teatime https://t.co/nqEJm5dfoL";FALSE;1;NA;2016-10-24 12:43:00;FALSE;NA;"790534055179743233";NA;"<a href=""https://about.twitter.com/products/tweetdeck"" rel=""nofollow"">TweetDeck</a>";"PilotLDN";0;FALSE;FALSE;NA;NA
"316";"Tea with chilli bajji is a deadly combo. <U+2615> <U+2615><U+FE0F><U+2615><U+FE0F><U+2615><U+FE0F><U+2615><U+FE0F><U+2615><U+FE0F><U+2615><U+FE0F><U+2615><U+FE0F><U+2615><U+FE0F><U+2615><U+FE0F><U+2615><U+FE0F><U+2615><U+FE0F><U+2615><U+FE0F><U+2615><U+FE0F><U+2615><U+FE0F>. How many love it ? <ed><U+00A0><U+00BD><ed><U+00B9><U+008B><ed><U+00A0><U+00BD><ed><U+00B9><U+008B><ed><U+00A0><U+00BD><ed><U+00B9><U+008B><ed><U+00A0><U+00BD><ed><U+00B9><U+008B><ed><U+00A0><U+00BD><ed><U+00B9><U+008B><ed><U+00A0><U+00BD><ed><U+00B9><U+008B>. #teatime #tea... https://t.co/MNwCyZjxN0";FALSE;1;NA;2016-10-24 12:35:20;FALSE;NA;"790532125841879041";NA;"<a href=""http://www.facebook.com/twitter"" rel=""nofollow"">Facebook</a>";"CoffeeTabletlks";0;FALSE;FALSE;NA;NA
"317";"#RoyaleGiveaways - #Win a #casaWare Serenity 7-Piece #Tea Pot Set $70 value #LaPrimaShops #Teatime Enter Daily https://t.co/YG7YxU3PAD";FALSE;0;NA;2016-10-24 12:34:40;FALSE;NA;"790531957587259392";NA;"<a href=""http://twitter.com"" rel=""nofollow"">Twitter Web Client</a>";"savannahcolon10";0;FALSE;FALSE;NA;NA
"318";"#RoyaleGiveaways - #Win a #casaWare Serenity 7-Piece #Tea Pot Set $70 value #LaPrimaShops #Teatime Enter Daily https://t.co/nkNbEal9iT";FALSE;0;NA;2016-10-24 12:30:06;FALSE;NA;"790530806468997120";NA;"<a href=""http://linkis.com"" rel=""nofollow"">Put your button on any page! </a>";"DianeCarlos3";0;FALSE;FALSE;NA;NA
"319";"RT @laurieshan: #CHILDHOOD art Print #Princess,#teatime #Beach #Kitty #Dolls #pretendplay #LaurieShanholtzer https://t.co/HeAU43x6dy https:…";FALSE;0;NA;2016-10-24 12:28:14;FALSE;NA;"790530336987942913";NA;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";"irenekueh";41;TRUE;FALSE;NA;NA
"320";"Today's Tea Quote says ""If you truly love nature, you will find beauty everywhere."" -Vincent Van Gough #teatime <ed><U+00A0><U+00BC><ed><U+00BC><U+00BB><ed><U+00A0><U+00BC><ed><U+00BD><U+0081><ed><U+00A0><U+00BC><ed><U+00BD><U+0082><ed><U+00A0><U+00BC><ed><U+00BD><U+0083>";FALSE;0;NA;2016-10-24 12:24:13;FALSE;NA;"790529327293165568";NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";"AliciaLento";0;FALSE;FALSE;NA;NA
"321";"#Matcha Monday's are the best! https://t.co/ZQH48L3HZ2 #tea #greentea #organic #breakfast #morningtea #teatime… https://t.co/bAL3oP7Km2";FALSE;1;NA;2016-10-24 12:03:51;TRUE;NA;"790524203430735872";NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";"worldofteas_";0;FALSE;FALSE;NA;NA
"322";"A High Standard Of Low Tea At The Luggage Room https://t.co/kZX8VJNGWL #London #foodie #teatime https://t.co/f2e4W8pFei";FALSE;8;NA;2016-10-24 11:59:40;FALSE;NA;"790523146851979264";NA;"<a href=""http://twitter.com"" rel=""nofollow"">Twitter Web Client</a>";"luxuriousmag";1;FALSE;FALSE;NA;NA
"323";"Catch up on my post trying @pique_tea crystals! So delicious! https://t.co/tn2UlPwZhr #fbloggers #teatime… https://t.co/1HhB0lOMrY";FALSE;2;NA;2016-10-24 11:50:24;TRUE;NA;"790520816429563905";NA;"<a href=""http://www.hootsuite.com"" rel=""nofollow"">Hootsuite</a>";"ombreandophelia";0;FALSE;FALSE;NA;NA
"324";"Oh wow! The cleaning people did a really nice job on my desk #teatime https://t.co/DRdtnX6nrJ";FALSE;0;NA;2016-10-24 11:50:16;FALSE;NA;"790520782044667904";NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";"brtw2";0;FALSE;FALSE;NA;NA
"325";"RT @RoPequena30: Lovely Sunday at the #londonirishcentre @VintageFurnFlea with #amazing #teatime and #great… https://t.co/k5WefQVvrS";FALSE;0;NA;2016-10-24 11:40:35;FALSE;NA;"790518347507064832";NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";"VintageFurnFlea";1;TRUE;FALSE;NA;NA
"326";"#TeaTime lovin sweet chai atm";FALSE;1;NA;2016-10-24 11:39:30;FALSE;NA;"790518072377479172";NA;"<a href=""http://twitter.com"" rel=""nofollow"">Twitter Web Client</a>";"mariescream";0;FALSE;FALSE;NA;NA
"327";"RT @fieldsofvintage: #ChristmasTree #TeapotSet / Creamer and Sugar #christmasteapot #teatime #teasetting https://t.co/8IZrG7O0zu #etsy #ho…";FALSE;0;NA;2016-10-24 11:37:54;FALSE;NA;"790517672916029440";NA;"<a href=""http://twitter.com"" rel=""nofollow"">Twitter Web Client</a>";"findsfromyester";1;TRUE;FALSE;NA;NA
"328";"RT @HigginsonsLtd: We have new WINTER WARMERS in our 'Meat for a Week' box. Any 7 items for L30! #teatime #goodfood https://t.co/72HiHy2Dbz";FALSE;0;NA;2016-10-24 11:35:48;FALSE;NA;"790517141372080128";NA;"<a href=""http://twitter.com"" rel=""nofollow"">Twitter Web Client</a>";"ThingsToDoLakes";2;TRUE;FALSE;NA;NA
"329";"Eggless Fruit Cake
#VegFood #Recipe #Yummy #Tasty #Foodie #Recipes #Cooking #Cook #TeaTime #Desserts #Bake #Baking https://t.co/lRDqT135lq";FALSE;0;NA;2016-10-24 11:31:10;FALSE;NA;"790515974613139457";NA;"<a href=""http://www.hootsuite.com"" rel=""nofollow"">Hootsuite</a>";"atozfoodrecipes";1;FALSE;FALSE;NA;NA
"330";"RT @ImpactLVN: 2/2 here in Japan. @SantanaGarrett_ #TeaTime #TagTeam #WomensWrestling #Stardom @we_are_stardom https://t.co/ubCRbaul35";FALSE;0;NA;2016-10-24 11:15:18;FALSE;NA;"790511984345161728";NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";"hiroiwaIWGP";30;TRUE;FALSE;NA;NA
"331";"RT @laurieshan: #CHILDHOOD art Print #Princess,#teatime #Beach #Kitty #Dolls #pretendplay #LaurieShanholtzer https://t.co/HeAU43x6dy https:…";FALSE;0;NA;2016-10-24 11:07:13;FALSE;NA;"790509948128096256";NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";"cigar150";41;TRUE;FALSE;NA;NA
"332";"RT @fieldsofvintage: #ChristmasTree #TeapotSet / Creamer and Sugar #christmasteapot #teatime #teasetting https://t.co/8IZrG7O0zu #etsy #ho…";FALSE;0;NA;2016-10-24 10:55:55;FALSE;NA;"790507106764001284";NA;"<a href=""https://mobile.twitter.com"" rel=""nofollow"">Mobile Web (M5)</a>";"vali99302124";5;TRUE;FALSE;NA;NA
"333";"My afternoon tea! <U+2764><U+FE0F> #teabreak #teatime #coffeebreak #thaitea #icetea #tealover #tea #cafe… https://t.co/Iau1rKTn19";FALSE;1;NA;2016-10-24 10:46:59;FALSE;NA;"790504859325784064";NA;"<a href=""http://instagram.com"" rel=""nofollow"">Instagram</a>";"JediPimmy";0;FALSE;FALSE;NA;NA
"334";"Love this tea<U+2764><U+FE0F><ed><U+00A0><U+00BD><ed><U+00B9><U+008F><ed><U+00A0><U+00BC><ed><U+00BF><U+00BB> #author #coach #mentor #money #success #alignment #freedom #teatime https://t.co/uGr4TnM2Uc";FALSE;2;NA;2016-10-24 10:45:40;FALSE;NA;"790504527979958273";NA;"<a href=""http://instagram.com"" rel=""nofollow"">Instagram</a>";"Stylistaz";0;FALSE;FALSE;NA;NA
"335";"Time for a moment of calm. #teatime Jasmine pearls https://t.co/1Bww9AnQQP";FALSE;8;NA;2016-10-24 10:41:03;FALSE;NA;"790503362710085632";NA;"<a href=""http://bufferapp.com"" rel=""nofollow"">Buffer</a>";"ValleyofTea";2;FALSE;FALSE;NA;NA
"336";"RT @ImpactLVN: 2/2 here in Japan. @SantanaGarrett_ #TeaTime #TagTeam #WomensWrestling #Stardom @we_are_stardom https://t.co/ubCRbaul35";FALSE;0;NA;2016-10-24 10:35:56;FALSE;NA;"790502075012636672";NA;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";"DZShowOff";30;TRUE;FALSE;NA;NA
"337";"Oh the smell of #fresh #baked #chocolatechipcookies #warm #straightfromtheoven #mondaymotivation #cookietime… https://t.co/XNpv1hcdkS";FALSE;8;NA;2016-10-24 10:26:19;TRUE;NA;"790499656677621762";NA;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";"cookiequeenlisa";4;FALSE;FALSE;NA;NA
"338";"#RoyaleGiveaways - #Win a #casaWare Serenity 7-Piece #Tea Pot Set $70 value #LaPrimaShops #Teatime Enter Daily https://t.co/JsUGvhhMZc";FALSE;1;NA;2016-10-24 10:20:57;FALSE;NA;"790498304052211712";NA;"<a href=""http://twitter.com"" rel=""nofollow"">Twitter Web Client</a>";"CRacki20";0;FALSE;FALSE;NA;NA
"339";"Feeling lonely #TeaTime https://t.co/2aB4men8lj";FALSE;2;NA;2016-10-24 10:16:04;FALSE;NA;"790497076912283648";NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";"ihannyy_";0;FALSE;FALSE;NA;NA
"340";"RT @ImpactLVN: 2/2 here in Japan. @SantanaGarrett_ #TeaTime #TagTeam #WomensWrestling #Stardom @we_are_stardom https://t.co/ubCRbaul35";FALSE;0;NA;2016-10-24 10:05:20;FALSE;NA;"790494375835013120";NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";"jurrrattt";30;TRUE;FALSE;NA;NA
"341";"What is your favorite tea?
#CristinaRe #TeaTime #MondayMotivation #BacktoWork #MondayBlues #QuoteoftheDay https://t.co/S6AJSi2QVz";FALSE;3;NA;2016-10-24 10:04:01;FALSE;NA;"790494044921233408";NA;"<a href=""http://twitter.com"" rel=""nofollow"">Twitter Web Client</a>";"vitabiotics";0;FALSE;FALSE;NA;NA
"342";"Could Go For A Cup Of Tea Right About Now? <ed><U+00A0><U+00BD><ed><U+00B2><U+0095>#tea #teaofthemonth #teatime #blacktea #greentea #tealover #teavana https://t.co/xVdroFaexO";FALSE;3;NA;2016-10-24 09:33:54;FALSE;NA;"790486466153644032";NA;"<a href=""http://twitter.com"" rel=""nofollow"">Twitter Web Client</a>";"TeailyTea";1;FALSE;FALSE;NA;NA
"343";"Happy day with a happy breakfast <ed><U+00A0><U+00BD><ed><U+00B8><U+008A> #breakfast #coffee #teatime #te #muffin #muffins… https://t.co/C3am0VbaT7";FALSE;2;NA;2016-10-24 09:27:49;FALSE;NA;"790484933118685184";NA;"<a href=""http://instagram.com"" rel=""nofollow"">Instagram</a>";"bchmrc";0;FALSE;FALSE;"13.38333333";"52.51666667"
"344";"I love the tags on #yogitea... I'll do my best!! #inspiration #life #determination #positive #tea #teatime #cup… https://t.co/5F40H7vjDD";FALSE;4;NA;2016-10-24 09:24:00;TRUE;NA;"790483973940150272";NA;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";"bayleaf81";0;FALSE;FALSE;NA;NA
"345";"#ChristmasTree #TeapotSet / Creamer and Sugar #christmasteapot #teatime #teasetting https://t.co/8IZrG7O0zu #etsy… https://t.co/KeRS3Telrq";FALSE;0;NA;2016-10-24 09:20:03;TRUE;NA;"790482980707901440";NA;"<a href=""https://www.socialjukebox.com"" rel=""nofollow"">The Social Jukebox</a>";"fieldsofvintage";1;FALSE;FALSE;NA;NA
"346";"RT @sylvanianshop: Grandma Hazel loves to have a #JammieDodger with her morning cup of tea!
#SylvanianShop #SylvanianFamilies #Tea #teatime…";FALSE;0;NA;2016-10-24 09:04:01;FALSE;NA;"790478945363767296";NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";"Buildoll";3;TRUE;FALSE;NA;NA
"347";"RT @MMC_1998: We have a new client ! 'Isle of Man Teas' #teatime #tealovers #teagram #teaoftheday #teacup #tealove #tealife #ilovetea #teaa…";FALSE;0;NA;2016-10-24 09:02:20;FALSE;NA;"790478523093905408";NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";"iomteas";1;TRUE;FALSE;NA;NA
"348";"RT @sylvanianshop: Grandma Hazel loves to have a #JammieDodger with her morning cup of tea!
#SylvanianShop #SylvanianFamilies #Tea #teatime…";FALSE;0;NA;2016-10-24 09:01:59;FALSE;NA;"790478434728308736";NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";"sylvanianmemory";3;TRUE;FALSE;NA;NA
"349";"Live like Royalty! Book your table at The Library for their afternoon tea: https://t.co/qZSQEieipi
#Abudhabi… https://t.co/3LpObgVFsj";FALSE;2;NA;2016-10-24 09:00:29;TRUE;NA;"790478057043816449";NA;"<a href=""http://www.hootsuite.com"" rel=""nofollow"">Hootsuite</a>";"ReserveOutAD";0;FALSE;FALSE;NA;NA
"350";"RT @laurieshan: #CHILDHOOD art Print #Princess,#teatime #Beach #Kitty #Dolls #pretendplay #LaurieShanholtzer https://t.co/HeAU43x6dy https:…";FALSE;0;NA;2016-10-24 09:00:03;FALSE;NA;"790477947245322240";NA;"<a href=""https://mobile.twitter.com"" rel=""nofollow"">Mobile Web (M5)</a>";"SellableStuff";41;TRUE;FALSE;NA;NA
"351";"RT @Allbuenothings: Repost from @floratheory Friday fun evening #teatime with beautiful #nycbloggers @josefinaspt… https://t.co/i3Dk2xJjdP";FALSE;0;NA;2016-10-24 08:59:10;FALSE;NA;"790477722648776704";NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";"JosefinasPt";1;TRUE;FALSE;NA;NA
"352";"We have a new client ! 'Isle of Man Teas' #teatime #tealovers #teagram #teaoftheday #teacup #tealove #tealife… https://t.co/W5w9nQ6LBh";FALSE;4;NA;2016-10-24 08:56:00;TRUE;NA;"790476927157014529";NA;"<a href=""http://twitter.com"" rel=""nofollow"">Twitter Web Client</a>";"MMC_1998";1;FALSE;FALSE;NA;NA
"353";"#teatime at @DoppioZeroSA <U+2615> #Southdowns - Hibiscus Vanilla, very soothing :) #mondaymorning #tealover #drinks… https://t.co/EPAIZHo3jq";FALSE;2;NA;2016-10-24 08:47:59;TRUE;NA;"790474910573494272";NA;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";"GPBoozyFoodie";1;FALSE;FALSE;NA;NA
"354";"Grandma Hazel loves to have a #JammieDodger with her morning cup of tea!
#SylvanianShop #SylvanianFamilies #Tea… https://t.co/i9eUr6xi0D";FALSE;11;NA;2016-10-24 08:41:37;TRUE;NA;"790473307317559296";NA;"<a href=""http://twitter.com"" rel=""nofollow"">Twitter Web Client</a>";"sylvanianshop";3;FALSE;FALSE;NA;NA
"355";"A cuppa and biscuits. #teatime https://t.co/v59s3EPDjP";FALSE;3;NA;2016-10-24 08:35:14;FALSE;NA;"790471703059128320";NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";"Yheela";0;FALSE;FALSE;NA;NA
"356";"@TheKettleShed Thanks for following! We love our tea in Manchester! Its always #Teatime - do pop in if you are pas… https://t.co/XZzuQLt9Kd";FALSE;1;"TheKettleShed";2016-10-24 08:12:06;TRUE;NA;"790465877778927616";"970268696";"<a href=""http://bufferapp.com"" rel=""nofollow"">Buffer</a>";"TEC_Training";0;FALSE;FALSE;NA;NA
"357";"Let's have some tea <ed><U+00A0><U+00BD><ed><U+00B8><U+0084>
#teaspiration #teatime #tea #thee #instatea https://t.co/nZcaHXThFc";FALSE;1;NA;2016-10-24 08:11:51;FALSE;NA;"790465818337214464";NA;"<a href=""http://instagram.com"" rel=""nofollow"">Instagram</a>";"passion2create";0;FALSE;FALSE;NA;NA
"358";"RT @intemperanttea1: Take a look at my blog for some #TeaTime Reads! #readingtime #readathon https://t.co/fuvN6KytsM";FALSE;0;NA;2016-10-24 07:50:43;FALSE;NA;"790460496830984192";NA;"<a href=""http://twitter.com"" rel=""nofollow"">Twitter Web Client</a>";"intemperanttea1";1;TRUE;FALSE;NA;NA
"359";"Monday morning musing over tea.
.
.
.
#rainyday #Monday #morningrituals #teatime #mood #smile… https://t.co/OlosgRHfxg";FALSE;2;NA;2016-10-24 07:39:35;FALSE;NA;"790457697342779392";NA;"<a href=""http://instagram.com"" rel=""nofollow"">Instagram</a>";"SholaJoy";0;FALSE;FALSE;NA;NA
"360";"Stoked about being in the news after our first public appearance at the Farmer's Market! #adashofausum… https://t.co/dVwtJTcy59";FALSE;3;NA;2016-10-24 07:31:31;TRUE;NA;"790455664636141568";NA;"<a href=""http://twitter.com"" rel=""nofollow"">Twitter Web Client</a>";"ausumtea";0;FALSE;FALSE;NA;NA
"361";"Eggless Gingerbread and White Chocolate Mousse Trifle
#VegFood #Recipe #Yum #Tasty #Foodie #Cook #TeaTime #Desserts https://t.co/YRF8w1poO2";FALSE;3;NA;2016-10-24 07:30:58;FALSE;NA;"790455528388435968";NA;"<a href=""http://www.hootsuite.com"" rel=""nofollow"">Hootsuite</a>";"atozfoodrecipes";0;FALSE;FALSE;NA;NA
"362";"A teatime treat recipe and a chance to win some British goodies! #anglophile #british #teatime #recipes… https://t.co/BPzUZEJWm6";FALSE;2;NA;2016-10-24 07:16:04;TRUE;NA;"790451779066560512";NA;"<a href=""http://bufferapp.com"" rel=""nofollow"">Buffer</a>";"ChristinaCucina";0;FALSE;FALSE;NA;NA
"363";"Call me fattyapple !! #travelaroundtheworldwithapple #miri #teatime @ The Seventh Cafe https://t.co/EwzHOQnENb";FALSE;0;NA;2016-10-24 07:08:55;FALSE;NA;"790449980528033792";NA;"<a href=""http://instagram.com"" rel=""nofollow"">Instagram</a>";"AppleHuiHung";0;FALSE;FALSE;"114.0109";"4.41658"
"364";"#RoyaleGiveaways - #Win a #casaWare Serenity 7-Piece #Tea Pot Set $70 value #LaPrimaShops #Teatime Enter Daily https://t.co/GVY3sEtHNp";FALSE;1;NA;2016-10-24 06:38:10;FALSE;NA;"790442242263703552";NA;"<a href=""http://twitter.com"" rel=""nofollow"">Twitter Web Client</a>";"Melodyhodge74";0;FALSE;FALSE;NA;NA
"365";"RT @laurieshan: #CHILDHOOD art Print #Princess,#teatime #Beach #Kitty #Dolls #pretendplay #LaurieShanholtzer https://t.co/HeAU43x6dy https:…";FALSE;0;NA;2016-10-24 06:16:43;FALSE;NA;"790436840708767745";NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";"CrystalMarcos";41;TRUE;FALSE;NA;NA
"366";"#upstairs just as #cosy too #lunch #teatime @ Shop Wonderland https://t.co/PBLfEB6P46";FALSE;1;NA;2016-10-24 06:04:57;FALSE;NA;"790433881325391872";NA;"<a href=""http://instagram.com"" rel=""nofollow"">Instagram</a>";"Minsera";0;FALSE;FALSE;"103.8590042";"1.3008888"
"367";"Little #cosy #cafe for #lunch and #cake and #teatime @ Shop Wonderland https://t.co/tUayxjBLCW";FALSE;0;NA;2016-10-24 06:03:56;FALSE;NA;"790433625271508994";NA;"<a href=""http://instagram.com"" rel=""nofollow"">Instagram</a>";"Minsera";0;FALSE;FALSE;"103.8590042";"1.3008888"
"368";"Quite possibly the funniest thing on telly at the minute. #HarryHillsTeaTime #teatime https://t.co/kJse241mV0";FALSE;1;NA;2016-10-24 06:00:54;FALSE;NA;"790432862218641410";NA;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";"RobMeakin";0;FALSE;FALSE;NA;NA
"369";"My todays Tea (Wild Berries). ¢<U+FE0F><U+2615><U+FE0F> #TeaTime https://t.co/Wou6y0SRWs";FALSE;1;NA;2016-10-24 05:41:37;FALSE;NA;"790428008800743424";NA;"<a href=""http://instagram.com"" rel=""nofollow"">Instagram</a>";"Rich_Rish";0;FALSE;FALSE;NA;NA
"370";"We keep the production meetings classy. #teatime #mrae <ed><U+00A0><U+00BD><ed><U+00B2><U+0095> https://t.co/enzFTSOoQs";FALSE;1;NA;2016-10-24 05:21:07;FALSE;NA;"790422851618758656";NA;"<a href=""http://instagram.com"" rel=""nofollow"">Instagram</a>";"teerain1";0;FALSE;FALSE;NA;NA
"371";"Gorgeous rose saucer only! #etsy #Paragon #china #teaparty #vintage #giftideas #gifts #teatime #replacementchina https://t.co/guAqRIBSv2";FALSE;1;NA;2016-10-24 05:00:44;FALSE;NA;"790417720621752320";NA;"<a href=""http://twitter.com"" rel=""nofollow"">Twitter Web Client</a>";"cupandowl";0;FALSE;FALSE;NA;NA
"372";"RT @fieldsofvintage: #ChristmasTree #TeapotSet / Creamer and Sugar #christmasteapot #teatime #teasetting https://t.co/8IZrG7O0zu #etsy #ho…";FALSE;0;NA;2016-10-24 04:48:03;FALSE;NA;"790414527607156736";NA;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";"flwrgardengifts";5;TRUE;FALSE;NA;NA
"373";"RT @fieldsofvintage: #ChristmasTree #TeapotSet / Creamer and Sugar #christmasteapot #teatime #teasetting https://t.co/8IZrG7O0zu #etsy #ho…";FALSE;0;NA;2016-10-24 04:26:07;FALSE;NA;"790409007282487296";NA;"<a href=""https://www.etsy.com/shop/RoyalFlashJewelry"" rel=""nofollow"">RFJSTW</a>";"AlexRFJS";5;TRUE;FALSE;NA;NA
"374";"RT @fieldsofvintage: #ChristmasTree #TeapotSet / Creamer and Sugar #christmasteapot #teatime #teasetting https://t.co/8IZrG7O0zu #etsy #ho…";FALSE;0;NA;2016-10-24 04:25:44;FALSE;NA;"790408912608428032";NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";"Tychelzme";5;TRUE;FALSE;NA;NA
"375";"RT @fieldsofvintage: #ChristmasTree #TeapotSet / Creamer and Sugar #christmasteapot #teatime #teasetting https://t.co/8IZrG7O0zu #etsy #ho…";FALSE;0;NA;2016-10-24 04:22:43;FALSE;NA;"790408154416816128";NA;"<a href=""https://mobile.twitter.com"" rel=""nofollow"">Mobile Web (M5)</a>";"thriftyfifty6";5;TRUE;FALSE;NA;NA
"376";"#ChristmasTree #TeapotSet / Creamer and Sugar #christmasteapot #teatime #teasetting https://t.co/8IZrG7O0zu #etsy… https://t.co/KEYzuF5vC1";FALSE;3;NA;2016-10-24 04:20:05;TRUE;NA;"790407491158962176";NA;"<a href=""https://www.socialjukebox.com"" rel=""nofollow"">The Social Jukebox</a>";"fieldsofvintage";5;FALSE;FALSE;NA;NA
"377";"Happy Monday all #incredibleindia #chai #teatime #travel #roadtrip #india #traveldiaries https://t.co/4gIzQltqda";FALSE;2;NA;2016-10-24 04:14:25;FALSE;NA;"790406063803752448";NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";"Shraddha_Vora";0;FALSE;FALSE;NA;NA
"378";"#RoyaleGiveaways - #Win a #casaWare Serenity 7-Piece #Tea Pot Set $70 value #LaPrimaShops #Teatime Enter Daily https://t.co/QjQ2GlE9xR";FALSE;1;NA;2016-10-24 04:12:09;FALSE;NA;"790405495144054784";NA;"<a href=""http://twitter.com"" rel=""nofollow"">Twitter Web Client</a>";"rsloan53";0;FALSE;FALSE;NA;NA
"379";"Tea time. This was called Oriental Beauty (oolong).
#tea #teatime… https://t.co/mYoiX5nngB";FALSE;3;NA;2016-10-24 04:05:06;FALSE;NA;"790403720328646656";NA;"<a href=""http://instagram.com"" rel=""nofollow"">Instagram</a>";"DorothyDisko";0;FALSE;FALSE;"-105.27779607";"40.01559676"
"380";"#RoyaleGiveaways - #Win a #casaWare Serenity 7-Piece #Tea Pot Set $70 value #LaPrimaShops #Teatime Enter Daily https://t.co/O54fk1lyNh";FALSE;0;NA;2016-10-24 04:03:20;FALSE;NA;"790403277158350848";NA;"<a href=""http://twitter.com"" rel=""nofollow"">Twitter Web Client</a>";"Mattt1977";0;FALSE;FALSE;NA;NA
"381";"RT @LarasPlace: Tea Time with DIY Mugs https://t.co/9LaUvUvPgA #ihsnet #teatime";FALSE;0;NA;2016-10-24 04:02:02;FALSE;NA;"790402948841009152";NA;"<a href=""https://roundteam.co"" rel=""nofollow"">RoundTeam</a>";"AMamasStory";3;TRUE;FALSE;NA;NA
"382";"RT @LarasPlace: Tea Time with DIY Mugs https://t.co/9LaUvUvPgA #ihsnet #teatime";FALSE;0;NA;2016-10-24 04:02:02;FALSE;NA;"790402947519840256";NA;"<a href=""https://roundteam.co"" rel=""nofollow"">RoundTeam</a>";"ABCretivLearnin";3;TRUE;FALSE;NA;NA
"383";"RT @LarasPlace: Tea Time with DIY Mugs https://t.co/9LaUvUvPgA #ihsnet #teatime";FALSE;0;NA;2016-10-24 04:02:01;FALSE;NA;"790402945242267648";NA;"<a href=""https://roundteam.co"" rel=""nofollow"">RoundTeam</a>";"lookwelearn";3;TRUE;FALSE;NA;NA
"384";"Tea Time with DIY Mugs https://t.co/9LaUvUvPgA #ihsnet #teatime";FALSE;2;NA;2016-10-24 04:00:24;FALSE;NA;"790402539141337088";NA;"<a href=""http://meetedgar.com"" rel=""nofollow"">Meet Edgar</a>";"LarasPlace";3;FALSE;FALSE;NA;NA
"385";"#RoyaleGiveaways - #Win a #casaWare Serenity 7-Piece #Tea Pot Set $70 value #LaPrimaShops #Teatime Enter Daily https://t.co/IDVVjbX6KR";FALSE;1;NA;2016-10-24 03:48:56;FALSE;NA;"790399649890856960";NA;"<a href=""http://twitter.com"" rel=""nofollow"">Twitter Web Client</a>";"birdwoman44";0;FALSE;FALSE;NA;NA
"386";"Lovely carnation teacup&saucer #etsy #etsyretwt #vintage #teaparty #teatime #shoppershour #etsyshop https://t.co/oh5enzlgZj";FALSE;0;NA;2016-10-24 03:40:24;FALSE;NA;"790397503338258432";NA;"<a href=""http://twitter.com"" rel=""nofollow"">Twitter Web Client</a>";"cupandowl";0;FALSE;FALSE;NA;NA
"387";"#Halloween <ed><U+00A0><U+00BD><ed><U+00B5><U+00B8><ed><U+00A0><U+00BC><ed><U+00BE><U+0083><ed><U+00A0><U+00BD><ed><U+00B1><U+00BB> #teatime<U+2615><U+FE0F> at #Disneyland was delicious. @ Steakhouse 55 https://t.co/rqUx6padMQ";FALSE;1;NA;2016-10-24 03:30:35;FALSE;NA;"790395032893284352";NA;"<a href=""http://instagram.com"" rel=""nofollow"">Instagram</a>";"boilerfan_98";0;FALSE;FALSE;"-117.92702896";"33.80888908"
"388";"Favourite All the Time : Pearl Milk Tea <U+2764><U+FE0F>
Delivery @bangjeck_id
#tea #teatime #instatea… https://t.co/mP3prz0zoC";FALSE;0;NA;2016-10-24 03:17:20;FALSE;NA;"790391699864289280";NA;"<a href=""http://instagram.com"" rel=""nofollow"">Instagram</a>";"bangjeck_id";0;FALSE;FALSE;NA;NA
"389";"RT @ImpactLVN: 2/2 here in Japan. @SantanaGarrett_ #TeaTime #TagTeam #WomensWrestling #Stardom @we_are_stardom https://t.co/ubCRbaul35";FALSE;0;NA;2016-10-24 03:01:50;FALSE;NA;"790387796854902784";NA;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";"JakeHobby";30;TRUE;FALSE;NA;NA
"390";"It looks like our teachers are surviving their holidays.
#PHBGTU #Holiday #TeaTime #Laos #Teachers #TeachAbroad… https://t.co/z6VIkIHPLD";FALSE;2;NA;2016-10-24 03:00:59;TRUE;NA;"790387586279870464";NA;"<a href=""http://www.hootsuite.com"" rel=""nofollow"">Hootsuite</a>";"PHBGTU";0;FALSE;FALSE;NA;NA
"391";"RT @fieldsofvintage: #ChristmasTree #TeapotSet / Creamer and Sugar #christmasteapot #teatime #teasetting https://t.co/8IZrG7O0zu #etsy #ho…";FALSE;0;NA;2016-10-24 02:58:49;FALSE;NA;"790387039677980673";NA;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";"flwrgardengifts";3;TRUE;FALSE;NA;NA
"392";"It is all about a cup of tea. #amoelté #teatime #tealover #cupoflife @sommelierdeteec https://t.co/fKCmSCiJqI";FALSE;2;NA;2016-10-24 02:53:10;FALSE;NA;"790385618966704128";NA;"<a href=""http://instagram.com"" rel=""nofollow"">Instagram</a>";"angiemcavero";0;FALSE;FALSE;NA;NA
"393";"RT @cupandowl: Pretty rose cream and sugar set #vintage #teatime #teaparty #vintage #etsychaching #giftideas #shoppershour https://t.co/tfU…";FALSE;0;NA;2016-10-24 02:49:51;FALSE;NA;"790384780831395840";NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";"nerakmugnet";6;TRUE;FALSE;NA;NA
"394";"New Curated Selection of Fine Teas! #teatime #tealovers #chinesetea #gushucha #yunnantea #fujiantea… https://t.co/t18lOt0ooV";FALSE;0;NA;2016-10-24 02:44:02;TRUE;NA;"790383319514877952";NA;"<a href=""http://twitter.com"" rel=""nofollow"">Twitter Web Client</a>";"mudandleaves";0;FALSE;FALSE;NA;NA
"395";"#RoyaleGiveaways - #Win a #casaWare Serenity 7-Piece #Tea Pot Set $70 value #LaPrimaShops #Teatime Enter Daily https://t.co/Ah4cimLO41";FALSE;0;NA;2016-10-24 02:41:01;FALSE;NA;"790382561587585024";NA;"<a href=""http://linkis.com"" rel=""nofollow"">Put your button on any page! </a>";"ThelmaHamm3";0;FALSE;FALSE;NA;NA
"396";"RT @MissJennieM: Woo woo!!! Well done Moss Danika! #teatime #yegfood fans <U+2615> https://t.co/hDvZlAESey";FALSE;0;NA;2016-10-24 02:29:42;FALSE;NA;"790379711440515072";NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";"TeaEatIt";1;TRUE;FALSE;NA;NA
"397";"Woo woo!!! Well done Moss Danika! #teatime #yegfood fans <U+2615> https://t.co/hDvZlAESey";FALSE;2;NA;2016-10-24 02:28:01;FALSE;NA;"790379286763044864";NA;"<a href=""http://bufferapp.com"" rel=""nofollow"">Buffer</a>";"MissJennieM";1;FALSE;FALSE;NA;NA
"398";"Geometry, heart prints, fluffiness and tea are all I need. <ed><U+00A0><U+00BD><ed><U+00B4><U+00BA><ed><U+00A0><U+00BD><ed><U+00B4><U+00B6><ed><U+00A0><U+00BD><ed><U+00B4><U+00BB>#hm #hema #teatime #salesscore";FALSE;1;NA;2016-10-24 02:26:54;FALSE;NA;"790379008848453632";NA;"<a href=""http://twitter.com"" rel=""nofollow"">Twitter Web Client</a>";"margartsja63";0;FALSE;FALSE;NA;NA
"399";"https://t.co/BV7DuiS5z5 October 23, 2016 TTWF | Sunday Super Chill Cast playing WoWS for ARP ships!! #TeaTime";FALSE;0;NA;2016-10-24 02:26:49;FALSE;NA;"790378986786459648";NA;"<a href=""https://about.twitter.com/products/tweetdeck"" rel=""nofollow"">TweetDeck</a>";"FelixMPrice87";0;FALSE;FALSE;NA;NA
"400";"Fed my tea obsession and took the @CelestialTea tour today. It was heavenly with smells galore.
#teatime #Boulder";FALSE;2;NA;2016-10-24 02:26:35;FALSE;NA;"790378929475289088";NA;"<a href=""http://twitter.com"" rel=""nofollow"">Twitter Web Client</a>";"Miahluzion";0;FALSE;FALSE;NA;NA
"401";"#RoyaleGiveaways - #Win a #casaWare Serenity 7-Piece #Tea Pot Set $70 value #LaPrimaShops #Teatime Enter Daily https://t.co/H9RbmgSqyW";FALSE;0;NA;2016-10-24 02:25:58;FALSE;NA;"790378774185455616";NA;"<a href=""http://twitter.com"" rel=""nofollow"">Twitter Web Client</a>";"rkathy5";0;FALSE;FALSE;NA;NA
"402";"Will Drinking Green Tea Boost Your #Metabolism? Not So Fast https://t.co/R4tqkTJ390 #Tea #TeaTime";FALSE;0;NA;2016-10-24 02:25:12;FALSE;NA;"790378581109112832";NA;"<a href=""http://www.hootsuite.com"" rel=""nofollow"">Hootsuite</a>";"FloweringTeas";0;FALSE;FALSE;NA;NA
"403";"RT @ImpactLVN: 2/2 here in Japan. @SantanaGarrett_ #TeaTime #TagTeam #WomensWrestling #Stardom @we_are_stardom https://t.co/ubCRbaul35";FALSE;0;NA;2016-10-24 01:52:18;FALSE;NA;"790370300525510656";NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";"thatgirlxo5";30;TRUE;FALSE;NA;NA
"404";"Wow! The presence of mind to be present w/ another who is a part of a weaponized presence. #WhoIsWho #TeaTime https://t.co/KtHSvBfi8j";FALSE;1;NA;2016-10-24 01:38:25;FALSE;NA;"790366807139901440";NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";"GarryKoop";0;FALSE;FALSE;NA;NA
"405";"Perfect fall nights call for perfect fall tea. Hope you all had a wonderful Sunday. #teatime… https://t.co/5uyks6AJDb";FALSE;1;NA;2016-10-24 01:24:54;FALSE;NA;"790363404137537536";NA;"<a href=""http://instagram.com"" rel=""nofollow"">Instagram</a>";"MissVeronica401";0;FALSE;FALSE;NA;NA
"406";"Perfect time... #teatime #nocilla #october #fall <ed><U+00A0><U+00BC><ed><U+00BD><U+0082><U+2615><U+FE0F>";FALSE;1;NA;2016-10-24 01:21:10;FALSE;NA;"790362463556411393";NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";"kiwishot";0;FALSE;FALSE;NA;NA
"407";"#RoyaleGiveaways - #Win a #casaWare Serenity 7-Piece #Tea Pot Set $70 value #LaPrimaShops #Teatime Enter Daily https://t.co/T2cC828B9a";FALSE;0;NA;2016-10-24 01:14:28;FALSE;NA;"790360777203060736";NA;"<a href=""http://linkis.com"" rel=""nofollow"">Put your button on any page! </a>";"jolucky1";0;FALSE;FALSE;NA;NA
"408";"#RoyaleGiveaways - #Win a #casaWare Serenity 7-Piece #Tea Pot Set $70 value #LaPrimaShops #Teatime Enter Daily https://t.co/ptbBI3lIHI";FALSE;0;NA;2016-10-24 01:11:03;FALSE;NA;"790359920835264514";NA;"<a href=""http://linkis.com"" rel=""nofollow"">Put your button on any page! </a>";"rockyg50";0;FALSE;FALSE;NA;NA
"409";"RT @Sheila_Ej2: #teatime at the Tea Shop #TheProfit #marcuslemonis #cnbc #theprofit https://t.co/REiKbPebNv";FALSE;0;NA;2016-10-24 01:10:53;FALSE;NA;"790359876765491201";NA;"<a href=""https://mobile.twitter.com"" rel=""nofollow"">Mobile Web (M5)</a>";"Tee_Cox";1;TRUE;FALSE;NA;NA
"410";"#RoyaleGiveaways - #Win a #casaWare Serenity 7-Piece #Tea Pot Set $70 value #LaPrimaShops #Teatime Enter Daily https://t.co/RsV4uyE3Ds";FALSE;0;NA;2016-10-24 01:10:50;FALSE;NA;"790359865025634304";NA;"<a href=""http://twitter.com"" rel=""nofollow"">Twitter Web Client</a>";"miztrniceguy";0;FALSE;FALSE;NA;NA
"411";"#RoyaleGiveaways - #Win a #casaWare Serenity 7-Piece #Tea Pot Set $70 value #LaPrimaShops #Teatime Enter Daily https://t.co/2JWDMlzZ05";FALSE;0;NA;2016-10-24 01:04:30;FALSE;NA;"790358271894880256";NA;"<a href=""http://linkis.com"" rel=""nofollow"">Put your button on any page! </a>";"silanti1";0;FALSE;FALSE;NA;NA
"412";"#RoyaleGiveaways - #Win a #casaWare Serenity 7-Piece #Tea Pot Set $70 value #LaPrimaShops #Teatime Enter Daily https://t.co/joLBdnQ3BQ";FALSE;0;NA;2016-10-24 01:02:52;FALSE;NA;"790357858877448192";NA;"<a href=""http://twitter.com"" rel=""nofollow"">Twitter Web Client</a>";"lsheldon5";0;FALSE;FALSE;NA;NA
"413";"Sweet Cherry Berry!? I think so! https://t.co/ZQH48L3HZ2 #tea #sweet #cherry #healthy #teatime #tealover #teaaddict… https://t.co/04XzxQBoeq";FALSE;0;NA;2016-10-24 01:02:38;TRUE;NA;"790357802627784704";NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";"worldofteas_";0;FALSE;FALSE;NA;NA
"414";"#RoyaleGiveaways - #Win a #casaWare Serenity 7-Piece #Tea Pot Set $70 value #LaPrimaShops #Teatime Enter Daily https://t.co/MQxCTkVWhT";FALSE;1;NA;2016-10-24 00:59:44;FALSE;NA;"790357070415589377";NA;"<a href=""http://twitter.com"" rel=""nofollow"">Twitter Web Client</a>";"sweetpea297";0;FALSE;FALSE;NA;NA
"415";"#RoyaleGiveaways - #Win a #casaWare Serenity 7-Piece #Tea Pot Set $70 value #LaPrimaShops #Teatime Enter Daily https://t.co/z6yrl5yvps";FALSE;1;NA;2016-10-24 00:56:18;FALSE;NA;"790356204983902208";NA;"<a href=""http://twitter.com"" rel=""nofollow"">Twitter Web Client</a>";"page4848";0;FALSE;FALSE;NA;NA
"416";"#RoyaleGiveaways - #Win a #casaWare Serenity 7-Piece #Tea Pot Set $70 value #LaPrimaShops #Teatime Enter Daily https://t.co/p3f7AkPthK";FALSE;0;NA;2016-10-24 00:53:32;FALSE;NA;"790355510230933504";NA;"<a href=""http://linkis.com"" rel=""nofollow"">Put your button on any page! </a>";"AmunetsMom";0;FALSE;FALSE;NA;NA
"417";"#RoyaleGiveaways - #Win a #casaWare Serenity 7-Piece #Tea Pot Set $70 value #LaPrimaShops #Teatime Enter Daily https://t.co/JKx7h18Oij";FALSE;1;NA;2016-10-24 00:31:43;FALSE;NA;"790350019811344385";NA;"<a href=""http://twitter.com"" rel=""nofollow"">Twitter Web Client</a>";"MinMuellenborn";0;FALSE;FALSE;NA;NA
"418";"#RoyaleGiveaways - #Win a #casaWare Serenity 7-Piece #Tea Pot Set $70 value #LaPrimaShops #Teatime Enter Daily https://t.co/6U8JjmTseO";FALSE;2;NA;2016-10-24 00:22:16;FALSE;NA;"790347643582947328";NA;"<a href=""http://twitter.com"" rel=""nofollow"">Twitter Web Client</a>";"katball123";0;FALSE;FALSE;NA;NA
"419";"RT @fieldsofvintage: #ChristmasTree #TeapotSet / Creamer and Sugar #christmasteapot #teatime #teasetting https://t.co/8IZrG7O0zu #etsy #ho…";FALSE;0;NA;2016-10-24 00:19:19;FALSE;NA;"790346899547099136";NA;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";"cvccrafts";3;TRUE;FALSE;NA;NA
"420";"RT @ImpactLVN: 2/2 here in Japan. @SantanaGarrett_ #TeaTime #TagTeam #WomensWrestling #Stardom @we_are_stardom https://t.co/ubCRbaul35";FALSE;0;NA;2016-10-24 00:18:42;FALSE;NA;"790346743779102720";NA;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";"sexyboy529";30;TRUE;FALSE;NA;NA
"421";"RT @cupandowl: Stunning rose teacup&saucer #etsy #vintage #teaparty #teatime #giftideas #etsychristmas #etsyclub #gifts https://t.co/8fueey…";FALSE;0;NA;2016-10-24 00:14:10;FALSE;NA;"790345604165541888";NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";"nerakmugnet";1;TRUE;FALSE;NA;NA
"422";"RT @ImpactLVN: 2/2 here in Japan. @SantanaGarrett_ #TeaTime #TagTeam #WomensWrestling #Stardom @we_are_stardom https://t.co/ubCRbaul35";FALSE;0;NA;2016-10-24 00:11:53;FALSE;NA;"790345029931917314";NA;"<a href=""http://www.twitter.com"" rel=""nofollow"">Twitter for Windows Phone</a>";"kayydmar";30;TRUE;FALSE;NA;NA
"423";"RT @ImpactLVN: 2/2 here in Japan. @SantanaGarrett_ #TeaTime #TagTeam #WomensWrestling #Stardom @we_are_stardom https://t.co/ubCRbaul35";FALSE;0;NA;2016-10-24 00:08:53;FALSE;NA;"790344272839057408";NA;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";"HoxPhotog";30;TRUE;FALSE;NA;NA
"424";"RT @ImpactLVN: 2/2 here in Japan. @SantanaGarrett_ #TeaTime #TagTeam #WomensWrestling #Stardom @we_are_stardom https://t.co/ubCRbaul35";FALSE;0;NA;2016-10-24 00:08:10;FALSE;NA;"790344094685929472";NA;"<a href=""http://twitter.com"" rel=""nofollow"">Twitter Web Client</a>";"bankonbliss";30;TRUE;FALSE;NA;NA
"425";"RT @ImpactLVN: 2/2 here in Japan. @SantanaGarrett_ #TeaTime #TagTeam #WomensWrestling #Stardom @we_are_stardom https://t.co/ubCRbaul35";FALSE;0;NA;2016-10-24 00:07:43;FALSE;NA;"790343981158715394";NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";"SantanaGarrett_";30;TRUE;FALSE;NA;NA
"426";"RT @ImpactLVN: 2/2 here in Japan. @SantanaGarrett_ #TeaTime #TagTeam #WomensWrestling #Stardom @we_are_stardom https://t.co/ubCRbaul35";FALSE;0;NA;2016-10-24 00:04:37;FALSE;NA;"790343199550279680";NA;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";"kidflashdbn";30;TRUE;FALSE;NA;NA
"427";"#RoyaleGiveaways - #Win a #casaWare Serenity 7-Piece #Tea Pot Set $70 value #LaPrimaShops #Teatime Enter Daily https://t.co/EQgoVXdQeM";FALSE;1;NA;2016-10-24 00:00:38;FALSE;NA;"790342199808434176";NA;"<a href=""http://twitter.com"" rel=""nofollow"">Twitter Web Client</a>";"AZlady56";0;FALSE;FALSE;NA;NA
"428";"#RoyaleGiveaways - #Win a #casaWare Serenity 7-Piece #Tea Pot Set $70 value #LaPrimaShops #Teatime Enter Daily https://t.co/xUPZF6NpkP";FALSE;1;NA;2016-10-23 23:59:24;FALSE;NA;"790341888096161792";NA;"<a href=""http://twitter.com"" rel=""nofollow"">Twitter Web Client</a>";"KarenBoblett";0;FALSE;FALSE;NA;NA
"429";"RT @ImpactLVN: 2/2 here in Japan. @SantanaGarrett_ #TeaTime #TagTeam #WomensWrestling #Stardom @we_are_stardom https://t.co/ubCRbaul35";FALSE;0;NA;2016-10-23 23:56:56;FALSE;NA;"790341265942581249";NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";"NewAgeOfPW";30;TRUE;FALSE;NA;NA
"430";"#RoyaleGiveaways - #Win a #casaWare Serenity 7-Piece #Tea Pot Set $70 value #LaPrimaShops #Teatime Enter Daily https://t.co/0V8VhoQjjb";FALSE;0;NA;2016-10-23 23:50:40;FALSE;NA;"790339689307701250";NA;"<a href=""http://twitter.com"" rel=""nofollow"">Twitter Web Client</a>";"valerie6550";0;FALSE;FALSE;NA;NA
"431";"#RoyaleGiveaways - #Win a #casaWare Serenity 7-Piece #Tea Pot Set $70 value #LaPrimaShops #Teatime Enter Daily https://t.co/xT5OGDQhJO";FALSE;0;NA;2016-10-23 23:49:10;FALSE;NA;"790339312629886976";NA;"<a href=""http://twitter.com"" rel=""nofollow"">Twitter Web Client</a>";"tenderloinsage";0;FALSE;FALSE;NA;NA
"432";"RT @ImpactLVN: 2/2 here in Japan. @SantanaGarrett_ #TeaTime #TagTeam #WomensWrestling #Stardom @we_are_stardom https://t.co/ubCRbaul35";FALSE;0;NA;2016-10-23 23:48:05;FALSE;NA;"790339040981680128";NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";"TennesseeHeel";30;TRUE;FALSE;NA;NA
"433";"#RoyaleGiveaways - #Win a #casaWare Serenity 7-Piece #Tea Pot Set $70 value #LaPrimaShops #Teatime Enter Daily https://t.co/RVRIVm71dr";FALSE;0;NA;2016-10-23 23:47:43;FALSE;NA;"790338948161794048";NA;"<a href=""http://twitter.com"" rel=""nofollow"">Twitter Web Client</a>";"DanaKBeeman";0;FALSE;FALSE;NA;NA
"434";"#RoyaleGiveaways - #Win a #casaWare Serenity 7-Piece #Tea Pot Set $70 value #LaPrimaShops #Teatime Enter Daily https://t.co/sQnPPoSgvB";FALSE;0;NA;2016-10-23 23:44:48;FALSE;NA;"790338211960745984";NA;"<a href=""http://linkis.com"" rel=""nofollow"">Put your button on any page! </a>";"misti911";0;FALSE;FALSE;NA;NA
"435";"RT @cupandowl: NEW ITEM! Gorgeous #Paragon teacup&saucer #etsy #teaparty #teatime #vintage #etsyshop #etsypreneur https://t.co/l65nW1lwcV";FALSE;0;NA;2016-10-23 23:44:08;FALSE;NA;"790338044834422785";NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";"nerakmugnet";2;TRUE;FALSE;NA;NA
"436";"#RoyaleGiveaways - #Win a #casaWare Serenity 7-Piece #Tea Pot Set $70 value #LaPrimaShops #Teatime Enter Daily https://t.co/zxkBWL1Mcm";FALSE;0;NA;2016-10-23 23:42:12;FALSE;NA;"790337557804486656";NA;"<a href=""http://linkis.com"" rel=""nofollow"">Put your button on any page! </a>";"meadow54";0;FALSE;FALSE;NA;NA
"437";"#RoyaleGiveaways - #Win a #casaWare Serenity 7-Piece #Tea Pot Set $70 value #LaPrimaShops #Teatime Enter Daily https://t.co/KRQFCpaznW";FALSE;0;NA;2016-10-23 23:38:33;FALSE;NA;"790336641848213504";NA;"<a href=""http://linkis.com"" rel=""nofollow"">Put your button on any page! </a>";"timmcgrogan";0;FALSE;FALSE;NA;NA
"438";"#RoyaleGiveaways - #Win a #casaWare Serenity 7-Piece #Tea Pot Set $70 value #LaPrimaShops #Teatime Enter Daily https://t.co/KZsekujYC5";FALSE;2;NA;2016-10-23 23:34:53;FALSE;NA;"790335717792747520";NA;"<a href=""http://linkis.com"" rel=""nofollow"">Put your button on any page! </a>";"desitheblonde";0;FALSE;FALSE;NA;NA
"439";"#RoyaleGiveaways - #Win a #casaWare Serenity 7-Piece #Tea Pot Set $70 value #LaPrimaShops #Teatime Enter Daily https://t.co/ZYBUDoKoV8";FALSE;0;NA;2016-10-23 23:34:34;FALSE;NA;"790335636121198592";NA;"<a href=""http://twitter.com"" rel=""nofollow"">Twitter Web Client</a>";"fabric2000";0;FALSE;FALSE;NA;NA
"440";"#RoyaleGiveaways - #Win a #casaWare Serenity 7-Piece #Tea Pot Set $70 value #LaPrimaShops #Teatime Enter Daily https://t.co/8SkH7Jo3Gp";FALSE;0;NA;2016-10-23 23:34:28;FALSE;NA;"790335614688174080";NA;"<a href=""http://twitter.com"" rel=""nofollow"">Twitter Web Client</a>";"mom1248";0;FALSE;FALSE;NA;NA
"441";"This table is adorable of course I had to sit at it.<ed><U+00A0><U+00BD><ed><U+00B2><U+009B> #teaTime #laColombe #chicago @ La Colombe… https://t.co/WCt4tl3TmF";FALSE;1;NA;2016-10-23 23:31:38;FALSE;NA;"790334899572056065";NA;"<a href=""http://instagram.com"" rel=""nofollow"">Instagram</a>";"ItsSeobia";0;FALSE;FALSE;"-87.6513664";"41.8840703"
"442";"#RoyaleGiveaways - #Win a #casaWare Serenity 7-Piece #Tea Pot Set $70 value #LaPrimaShops #Teatime Enter Daily https://t.co/6S5lUmKuvk";FALSE;1;NA;2016-10-23 23:31:15;FALSE;NA;"790334803480498176";NA;"<a href=""http://twitter.com"" rel=""nofollow"">Twitter Web Client</a>";"LittleRiddle1";0;FALSE;FALSE;NA;NA
"443";"Shout-out to mr.benjaminbunny
#swaitsinbrazil #handelsmessiah #teatime<U+2615><U+FE0F> https://t.co/2adZDKBgXy";FALSE;0;NA;2016-10-23 23:30:02;FALSE;NA;"790334497145364480";NA;"<a href=""http://instagram.com"" rel=""nofollow"">Instagram</a>";"joffrethegiant";0;FALSE;FALSE;NA;NA
"444";"#RoyaleGiveaways - #Win a #casaWare Serenity 7-Piece #Tea Pot Set $70 value #LaPrimaShops #Teatime Enter Daily https://t.co/RqyAtXp5e0";FALSE;0;NA;2016-10-23 23:28:34;FALSE;NA;"790334129451757568";NA;"<a href=""http://twitter.com"" rel=""nofollow"">Twitter Web Client</a>";"mamdvr";0;FALSE;FALSE;NA;NA
"445";"#RoyaleGiveaways - #Win a #casaWare Serenity 7-Piece #Tea Pot Set $70 value #LaPrimaShops #Teatime Enter Daily https://t.co/FKDqyUHRI8";FALSE;0;NA;2016-10-23 23:24:39;FALSE;NA;"790333144364900352";NA;"<a href=""http://linkis.com"" rel=""nofollow"">Put your button on any page! </a>";"gervitsd";0;FALSE;FALSE;NA;NA
"446";"#RoyaleGiveaways - #Win a #casaWare Serenity 7-Piece #Tea Pot Set $70 value #LaPrimaShops #Teatime Enter Daily https://t.co/qpfPSLd8Hn";FALSE;0;NA;2016-10-23 23:22:16;FALSE;NA;"790332541878370304";NA;"<a href=""http://linkis.com"" rel=""nofollow"">Put your button on any page! </a>";"davidweiler2";0;FALSE;FALSE;NA;NA
"447";"RT @fieldsofvintage: #ChristmasTree #TeapotSet / Creamer and Sugar #christmasteapot #teatime #teasetting https://t.co/8IZrG7O0zu #etsy #ho…";FALSE;0;NA;2016-10-23 23:22:01;FALSE;NA;"790332481773776896";NA;"<a href=""http://www.tweetcaster.com"" rel=""nofollow"">TweetCaster for Android</a>";"Kyliving720";1;TRUE;FALSE;NA;NA
"448";"#ChristmasTree #TeapotSet / Creamer and Sugar #christmasteapot #teatime #teasetting https://t.co/8IZrG7O0zu #etsy… https://t.co/ntmFR2VSQW";FALSE;0;NA;2016-10-23 23:20:04;TRUE;NA;"790331988070789121";NA;"<a href=""https://www.socialjukebox.com"" rel=""nofollow"">The Social Jukebox</a>";"fieldsofvintage";1;FALSE;FALSE;NA;NA
"449";"#RoyaleGiveaways - #Win a #casaWare Serenity 7-Piece #Tea Pot Set $70 value #LaPrimaShops #Teatime Enter Daily https://t.co/KxrIlapFCp";FALSE;0;NA;2016-10-23 23:17:53;FALSE;NA;"790331440047222784";NA;"<a href=""http://linkis.com"" rel=""nofollow"">Put your button on any page! </a>";"exclusivelyhope";0;FALSE;FALSE;NA;NA
"450";"#RoyaleGiveaways - #Win a #casaWare Serenity 7-Piece #Tea Pot Set $70 value #LaPrimaShops #Teatime Enter Daily https://t.co/sIjvCs2CYJ";FALSE;0;NA;2016-10-23 23:15:46;FALSE;NA;"790330906770800641";NA;"<a href=""http://twitter.com"" rel=""nofollow"">Twitter Web Client</a>";"RatBaggington";0;FALSE;FALSE;NA;NA
"451";"Could Go For A Cup Of Tea Right About Now? <ed><U+00A0><U+00BD><ed><U+00B2><U+0095>#tea #teaofthemonth #teatime #blacktea #greentea #tealover #teavana https://t.co/v7ho0tJO7q";FALSE;1;NA;2016-10-23 23:10:54;FALSE;NA;"790329683976019969";NA;"<a href=""http://twitter.com"" rel=""nofollow"">Twitter Web Client</a>";"TeailyTea";0;FALSE;FALSE;NA;NA
"452";"RT @ImpactLVN: 2/2 here in Japan. @SantanaGarrett_ #TeaTime #TagTeam #WomensWrestling #Stardom @we_are_stardom https://t.co/ubCRbaul35";FALSE;0;NA;2016-10-23 23:01:45;FALSE;NA;"790327379508006912";NA;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";"philipbryant180";30;TRUE;FALSE;NA;NA
"453";"The clock has struck Four - and everything stops for tea! What's in your cup? #TeaTime #4pm #JollyGood #Evil";FALSE;1;NA;2016-10-23 23:00:12;FALSE;NA;"790326988833755136";NA;"<a href=""http://ifttt.com"" rel=""nofollow"">IFTTT</a>";"FlamingMonocle";0;FALSE;FALSE;NA;NA
"454";"RT @ImpactLVN: 2/2 here in Japan. @SantanaGarrett_ #TeaTime #TagTeam #WomensWrestling #Stardom @we_are_stardom https://t.co/ubCRbaul35";FALSE;0;NA;2016-10-23 22:57:13;FALSE;NA;"790326239722631169";NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";"IAmTheBOSCHMAN";30;TRUE;FALSE;NA;NA
"455";"RT @ImpactLVN: 2/2 here in Japan. @SantanaGarrett_ #TeaTime #TagTeam #WomensWrestling #Stardom @we_are_stardom https://t.co/ubCRbaul35";FALSE;0;NA;2016-10-23 22:56:57;FALSE;NA;"790326171581820928";NA;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";"bankonryback";30;TRUE;FALSE;NA;NA
"456";"Check out these #tea choices at @TippleRose <U+2615><U+FE0F> #HighTea #ATLfoodie #TeaLovers #TeaTime https://t.co/Ne9RBGLWm8";FALSE;4;NA;2016-10-23 22:52:07;FALSE;NA;"790324953363210240";NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";"SashaEats";0;FALSE;FALSE;NA;NA
"457";"Favorite part of the weekend #teatime<U+2615><U+FE0F> #reading https://t.co/HxhIFtaOY1";FALSE;3;NA;2016-10-23 22:49:14;FALSE;NA;"790324230130847744";NA;"<a href=""http://instagram.com"" rel=""nofollow"">Instagram</a>";"Sweetdee861";0;FALSE;FALSE;NA;NA
"458";"RT @ImpactLVN: 2/2 here in Japan. @SantanaGarrett_ #TeaTime #TagTeam #WomensWrestling #Stardom @we_are_stardom https://t.co/ubCRbaul35";FALSE;0;NA;2016-10-23 22:43:24;FALSE;NA;"790322761919033344";NA;"<a href=""http://twitter.com/#!/download/ipad"" rel=""nofollow"">Twitter for iPad</a>";"mannyda69";30;TRUE;FALSE;NA;NA
"459";"RT @ImpactLVN: 2/2 here in Japan. @SantanaGarrett_ #TeaTime #TagTeam #WomensWrestling #Stardom @we_are_stardom https://t.co/ubCRbaul35";FALSE;0;NA;2016-10-23 22:41:28;FALSE;NA;"790322277061570560";NA;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";"HeelCheriel";30;TRUE;FALSE;NA;NA
"460";"RT @HappyGalVintage: It's always #TeaTime at www.HappyGalsVintage !
https://t.co/ck71mxKESF
#Teacups #Teapots #TeaParty #GiftsForMom https…";FALSE;0;NA;2016-10-23 22:39:27;FALSE;NA;"790321767344504832";NA;"<a href=""http://twitter.com"" rel=""nofollow"">Twitter Web Client</a>";"DaisyRain63";7;TRUE;FALSE;NA;NA
"461";"RT @ImpactLVN: 2/2 here in Japan. @SantanaGarrett_ #TeaTime #TagTeam #WomensWrestling #Stardom @we_are_stardom https://t.co/ubCRbaul35";FALSE;0;NA;2016-10-23 22:38:38;FALSE;NA;"790321561282678784";NA;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";"straarups";30;TRUE;FALSE;NA;NA
"462";"RT @ImpactLVN: 2/2 here in Japan. @SantanaGarrett_ #TeaTime #TagTeam #WomensWrestling #Stardom @we_are_stardom https://t.co/ubCRbaul35";FALSE;0;NA;2016-10-23 22:29:24;FALSE;NA;"790319237885820928";NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";"121875Raywwe1";30;TRUE;FALSE;NA;NA
"463";"RT @ImpactLVN: 2/2 here in Japan. @SantanaGarrett_ #TeaTime #TagTeam #WomensWrestling #Stardom @we_are_stardom https://t.co/ubCRbaul35";FALSE;0;NA;2016-10-23 22:27:48;FALSE;NA;"790318835865903104";NA;"<a href=""http://twitter.com"" rel=""nofollow"">Twitter Web Client</a>";"MassyHawk92";30;TRUE;FALSE;NA;NA
"464";"RT @ImpactLVN: 2/2 here in Japan. @SantanaGarrett_ #TeaTime #TagTeam #WomensWrestling #Stardom @we_are_stardom https://t.co/ubCRbaul35";FALSE;0;NA;2016-10-23 22:27:13;FALSE;NA;"790318687165317121";NA;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";"lizzie20114";30;TRUE;FALSE;NA;NA
"465";"RT @ImpactLVN: 2/2 here in Japan. @SantanaGarrett_ #TeaTime #TagTeam #WomensWrestling #Stardom @we_are_stardom https://t.co/ubCRbaul35";FALSE;0;NA;2016-10-23 22:27:03;FALSE;NA;"790318648070017024";NA;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";"TwistedBliss_AB";30;TRUE;FALSE;NA;NA
"466";"RT @ImpactLVN: 2/2 here in Japan. @SantanaGarrett_ #TeaTime #TagTeam #WomensWrestling #Stardom @we_are_stardom https://t.co/ubCRbaul35";FALSE;0;NA;2016-10-23 22:26:47;FALSE;NA;"790318577853136897";NA;"<a href=""http://twitter.com"" rel=""nofollow"">Twitter Web Client</a>";"ZodsSnappedNek";30;TRUE;FALSE;NA;NA
"467";"2/2 here in Japan. @SantanaGarrett_ #TeaTime #TagTeam #WomensWrestling #Stardom @we_are_stardom https://t.co/ubCRbaul35";FALSE;144;NA;2016-10-23 22:26:18;FALSE;NA;"790318457833127936";NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";"ImpactLVN";30;FALSE;FALSE;NA;NA
"468";"What a great time for a lovely cup of tea. #teatime #tea #englishbreakfast #refreshing";FALSE;2;NA;2016-10-23 22:25:22;FALSE;NA;"790318223547768832";NA;"<a href=""http://twitter.com"" rel=""nofollow"">Twitter Web Client</a>";"jonkudelka";0;FALSE;FALSE;NA;NA
"469";"Inktober 2016
#24 a tea witch
#artwork #art #illustration #drawing #doodle #teatime #tea… https://t.co/UI6MCIGI6r";FALSE;3;NA;2016-10-23 22:21:57;FALSE;NA;"790317362029465653";NA;"<a href=""http://instagram.com"" rel=""nofollow"">Instagram</a>";"avalornythorink";0;FALSE;FALSE;NA;NA
"470";"Boba time! #tea #boba #bubbletea #chewy #yum ##teatime #bobatime #bubble #bubbles… https://t.co/CjzxNNpHG5";FALSE;0;NA;2016-10-23 22:13:30;FALSE;NA;"790315236725186560";NA;"<a href=""http://instagram.com"" rel=""nofollow"">Instagram</a>";"ajaxxx";0;FALSE;FALSE;"-81.4017226";"28.4479594"
"471";"The entire In Nature #teas collection is available online https://t.co/nDbD86Tpnm #teagifts #tealovers #teatime";FALSE;0;NA;2016-10-23 22:09:52;FALSE;NA;"790314320899039234";NA;"<a href=""http://twitter.com"" rel=""nofollow"">Twitter Web Client</a>";"innatureteas";0;FALSE;FALSE;NA;NA
"472";"::: Intuition ::: tea time. .
.
.
.
.
yogitea #yogitea #teatime #intuition #peace #meditation… https://t.co/suRTKR4AoI";FALSE;0;NA;2016-10-23 22:09:30;FALSE;NA;"790314231057047553";NA;"<a href=""http://instagram.com"" rel=""nofollow"">Instagram</a>";"RenewMoonYoga";0;FALSE;FALSE;NA;NA
"473";"RT @AlakabanOnline: We know #tea at https://t.co/ifhMrns1tq and now get a free Gift Card for checking it out. #teatime #giftcard #blacktea…";FALSE;0;NA;2016-10-23 21:57:40;FALSE;NA;"790311252660674560";NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";"DustinKaban";1;TRUE;FALSE;NA;NA
"474";"We know #tea at https://t.co/ifhMrns1tq and now get a free Gift Card for checking it out. #teatime #giftcard #blacktea #chai #greentea";FALSE;1;NA;2016-10-23 21:57:06;FALSE;NA;"790311110054338560";NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";"AlakabanOnline";1;FALSE;FALSE;NA;NA
"475";"RT @MegMusicManiac: #Snoopy teapot on #eBay: https://t.co/3xAlTCFlFN #tea #teapot #teatime #Peanuts #collectible";FALSE;0;NA;2016-10-23 21:55:53;FALSE;NA;"790310802859266048";NA;"<a href=""http://twitter.com"" rel=""nofollow"">Twitter Web Client</a>";"LadyMegSoprano";1;TRUE;FALSE;NA;NA
"476";"Lovely Sunday at the #londonirishcentre @VintageFurnFlea with #amazing #teatime and #great… https://t.co/k5WefQVvrS";FALSE;2;NA;2016-10-23 21:39:19;FALSE;NA;"790306635528871937";NA;"<a href=""http://instagram.com"" rel=""nofollow"">Instagram</a>";"RoPequena30";1;FALSE;FALSE;NA;NA
"477";"Sunday afternoon #orangetabby #catsofinstagram #reading #teatime #Kamloops https://t.co/EXPRDELG5a";FALSE;1;NA;2016-10-23 21:37:05;FALSE;NA;"790306073777283072";NA;"<a href=""http://instagram.com"" rel=""nofollow"">Instagram</a>";"meghellyer";0;FALSE;FALSE;NA;NA
"478";"Our Chef tea service Is Amazing! #champagne #teaservice #teatime #pastries #teas #deliciousfood #canapes #scones… https://t.co/Wfleh1pFtn";FALSE;1;NA;2016-10-23 21:33:23;TRUE;NA;"790305143304650753";NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";"Bosienyc";0;FALSE;FALSE;NA;NA
"479";"Lemon Madeleines for tea. Recipe from @williamssonoma. #teatime #propertea https://t.co/4goIy1sg7r";FALSE;2;NA;2016-10-23 21:19:38;FALSE;NA;"790301680512430081";NA;"<a href=""http://instagram.com"" rel=""nofollow"">Instagram</a>";"chscleanjean";0;FALSE;FALSE;NA;NA
"480";"Take a look at my blog for some #TeaTime Reads! #readingtime #readathon https://t.co/fuvN6KytsM";FALSE;1;NA;2016-10-23 21:14:26;FALSE;NA;"790300371054948352";NA;"<a href=""http://twitter.com"" rel=""nofollow"">Twitter Web Client</a>";"intemperanttea1";1;FALSE;FALSE;NA;NA
"481";"RT @HappyGalVintage: It's always #TeaTime at www.HappyGalsVintage !
https://t.co/ck71mxKESF
#Teacups #Teapots #TeaParty #GiftsForMom https…";FALSE;0;NA;2016-10-23 21:08:57;FALSE;NA;"790298994165579776";NA;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";"MariesBazaar1";7;TRUE;FALSE;NA;NA
"482";"RT @fieldsofvintage: #ChristmasTree #TeapotSet / Creamer and Sugar #christmasteapot #teatime #teasetting https://t.co/8IZrG7O0zu #etsy #ho…";FALSE;0;NA;2016-10-23 20:47:58;FALSE;NA;"790293710315683840";NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";"JerseyBabes";3;TRUE;FALSE;NA;NA
"483";"RT @HappyGalVintage: It's always #TeaTime at www.HappyGalsVintage !
https://t.co/ck71mxKESF
#Teacups #Teapots #TeaParty #GiftsForMom https…";FALSE;0;NA;2016-10-23 20:41:35;FALSE;NA;"790292106724212736";NA;"<a href=""http://twitter.com"" rel=""nofollow"">Twitter Web Client</a>";"kaosonia";7;TRUE;FALSE;NA;NA
"484";"#Snoopy teapot on #eBay: https://t.co/3xAlTCFlFN #tea #teapot #teatime #Peanuts #collectible";FALSE;0;NA;2016-10-23 20:40:17;FALSE;NA;"790291778716991489";NA;"<a href=""http://www.hootsuite.com"" rel=""nofollow"">Hootsuite</a>";"MegMusicManiac";1;FALSE;FALSE;NA;NA
"485";"Such a fun tea time with @sashaeats and @divafoodies at Tipple +Rose!
.
.
.
#tea #teatime… https://t.co/RghK2ZNfBv";FALSE;4;NA;2016-10-23 20:28:54;FALSE;NA;"790288915349381121";NA;"<a href=""http://instagram.com"" rel=""nofollow"">Instagram</a>";"FPorchGourmet";0;FALSE;FALSE;NA;NA
"486";"The best kept secret in Vegas is 12 o'clock #TeaTime at the @MO_LASVEGAS. Don't tell anyone. https://t.co/1sZIJUdyQX";FALSE;3;NA;2016-10-23 20:23:32;FALSE;NA;"790287561088303104";NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";"RealSeanH";0;FALSE;FALSE;NA;NA
"487";"Teatime! #weekend #relaxing #clubmimi #teatime #minisojewels https://t.co/iiyF06tuja";FALSE;1;NA;2016-10-23 20:22:38;FALSE;NA;"790287334692585472";NA;"<a href=""http://instagram.com"" rel=""nofollow"">Instagram</a>";"MimiSoJewels";0;FALSE;FALSE;NA;NA
"488";"Had so much fun making this cake using @DrOetkerBakes ingredients! #biscuits #fondant #cake #baker #birthday #icing… https://t.co/5FpyQ3agkr";FALSE;5;NA;2016-10-23 20:15:44;TRUE;NA;"790285599605481472";NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";"vinderellacakes";0;FALSE;FALSE;NA;NA
"489";"Repost from @floratheory Friday fun evening #teatime with beautiful #nycbloggers @josefinaspt… https://t.co/i3Dk2xJjdP";FALSE;1;NA;2016-10-23 20:05:13;FALSE;NA;"790282952592633856";NA;"<a href=""http://instagram.com"" rel=""nofollow"">Instagram</a>";"Allbuenothings";1;FALSE;FALSE;"-73.99386229";"40.72370237"
"490";"@BrendanSchaub @FighterNtheKid @bryancallen gotta raise that pinky when ripping an eyeball out. It's #TeaTime after all. Get ya gator balls.";FALSE;0;"BrendanSchaub";2016-10-23 19:59:49;FALSE;"790264912249442304";"790281596536492033";"57690247";"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";"JohnMaksuta";0;FALSE;FALSE;NA;NA
"491";"@paul_dananyeah have you seen @HarryHill 's new show !? Childishly funny #teatime";FALSE;0;"paul_dananyeah";2016-10-23 19:57:31;FALSE;"788081141609816064";"790281017579958276";"161427169";"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";"therealchough";0;FALSE;FALSE;NA;NA
"492";"Macro shot of my very first #matcha whisk!
#teatime #teastagram #teaoftheday #tealovers #t… https://t.co/UswxIbiKoa https://t.co/bawx48OitD";FALSE;2;NA;2016-10-23 19:56:00;FALSE;NA;"790280632454840322";NA;"<a href=""http://ifttt.com"" rel=""nofollow"">IFTTT</a>";"meminakyuz";0;FALSE;FALSE;NA;NA
"493";"#RoyaleGiveaways - #Win a #casaWare Serenity 7-Piece #Tea Pot Set $70 value #LaPrimaShops #Teatime Enter Daily https://t.co/yJvI3BKGCs";FALSE;1;NA;2016-10-23 19:54:33;FALSE;NA;"790280267046850561";NA;"<a href=""http://twitter.com"" rel=""nofollow"">Twitter Web Client</a>";"KILLER1301";0;FALSE;FALSE;NA;NA
"494";"Waiting for the rest of the girls to arrive to #Halloween <ed><U+00A0><U+00BC><ed><U+00BE><U+0083><ed><U+00A0><U+00BD><ed><U+00B5><U+00B8>#teatime<U+2615><U+FE0F> @ Disneyland Hotel https://t.co/aWAtdhblaR";FALSE;0;NA;2016-10-23 19:54:25;FALSE;NA;"790280234587258884";NA;"<a href=""http://instagram.com"" rel=""nofollow"">Instagram</a>";"boilerfan_98";0;FALSE;FALSE;"-117.92669657";"33.80887811"
"495";"Time for tea & Poldark https://t.co/PIe7NsrsvU #Tea #Tealovers #Teatime #Poldark #Gift https://t.co/ovZw2ezita";FALSE;0;NA;2016-10-23 19:54:04;FALSE;NA;"790280147555512321";NA;"<a href=""http://twitter.com"" rel=""nofollow"">Twitter Web Client</a>";"ArtisanTeaSpice";0;FALSE;FALSE;NA;NA
"496";"RT @laurieshan: #CHILDHOOD art Print #Princess,#teatime #Beach #Kitty #Dolls #pretendplay #LaurieShanholtzer https://t.co/HeAU43x6dy https:…";FALSE;0;NA;2016-10-23 19:47:37;FALSE;NA;"790278524502433792";NA;"<a href=""http://twitter.com/#!/download/ipad"" rel=""nofollow"">Twitter for iPad</a>";"medway_s";41;TRUE;FALSE;NA;NA
"497";"My friend and I having Classy Tea in our hometown of #Tottenham . #bffs #longtimefriends #teatime… https://t.co/7QQu0V75UV";FALSE;0;NA;2016-10-23 19:46:22;TRUE;NA;"790278207782125568";NA;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";"MissAshleySings";0;FALSE;FALSE;NA;NA
"498";"Its #TeaTime and this time in company of special friends. I love you, thanks for coming. #Love #Friends #Forever https://t.co/Xef07ai4x2";FALSE;3;NA;2016-10-23 19:39:00;FALSE;NA;"790276357523726336";NA;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";"guillermocroppi";0;FALSE;FALSE;NA;NA
"499";"The Brew Is Out There by Geeky Teas... https://t.co/nkp9XyHRam #tea #teatime https://t.co/jFi2rZT3EU";FALSE;0;NA;2016-10-23 19:35:06;FALSE;NA;"790275372818374656";NA;"<a href=""http://aa.com"" rel=""nofollow"">pptweet123</a>";"hanmeimei1955";0;FALSE;FALSE;NA;NA
"500";"<ed><U+00A0><U+00BC><ed><U+00BE><U+00BC>It's time to get things started <ed><U+00A0><U+00BC><ed><U+00BE><U+00B6>...and make some tea! #muppets #mugcollection #teatime… https://t.co/iMpfnGkZMD";FALSE;0;NA;2016-10-23 19:32:24;FALSE;NA;"790274693450174464";NA;"<a href=""http://instagram.com"" rel=""nofollow"">Instagram</a>";"Leah_McGuire";0;FALSE;FALSE;NA;NA
"501";"Yummy teas from England (bought in Epcot <ed><U+00A0><U+00BD><ed><U+00B8><U+0082>) #tea #twinings #teatime https://t.co/Amm0JUwTbY";FALSE;2;NA;2016-10-23 19:26:55;FALSE;NA;"790273314702798848";NA;"<a href=""http://instagram.com"" rel=""nofollow"">Instagram</a>";"Shakibing";0;FALSE;FALSE;NA;NA
"502";"#RoyaleGiveaways - #Win a #casaWare Serenity 7-Piece #Tea Pot Set $70 value #LaPrimaShops #Teatime Enter Daily https://t.co/D6axIjFo0w";FALSE;1;NA;2016-10-23 19:25:02;FALSE;NA;"790272842000572416";NA;"<a href=""http://twitter.com"" rel=""nofollow"">Twitter Web Client</a>";"sohamolina";0;FALSE;FALSE;NA;NA
"503";"RT @TeailyTea: Could Go For A Cup Of Tea Right About Now? <ed><U+00A0><U+00BD><ed><U+00B2><U+0095>#tea #teaofthemonth #teatime #blacktea #greentea #tealover #teavana https://t.co…";FALSE;0;NA;2016-10-23 19:18:39;FALSE;NA;"790271235347378180";NA;"<a href=""https://mobile.twitter.com"" rel=""nofollow"">Mobile Web (M5)</a>";"DJ29067";1;TRUE;FALSE;NA;NA
"504";"Could Go For A Cup Of Tea Right About Now? <ed><U+00A0><U+00BD><ed><U+00B2><U+0095>#tea #teaofthemonth #teatime #blacktea #greentea #tealover #teavana https://t.co/gKyJc6wFwR";FALSE;0;NA;2016-10-23 19:13:02;FALSE;NA;"790269819400622081";NA;"<a href=""http://twitter.com"" rel=""nofollow"">Twitter Web Client</a>";"TeailyTea";1;FALSE;FALSE;NA;NA
"505";"#mykids #chess #teatime #ybor #blindtiger @ The Blind Tiger Cafe Ybor City https://t.co/n8OS4Gyux0";FALSE;2;NA;2016-10-23 19:01:36;FALSE;NA;"790266944658124800";NA;"<a href=""http://instagram.com"" rel=""nofollow"">Instagram</a>";"MsAdventureRed";0;FALSE;FALSE;"-82.4378";"27.96004"
"506";"It's never too late...#TeaTime <U+2764><U+FE0F><U+2764><U+FE0F>";FALSE;0;NA;2016-10-23 18:55:39;FALSE;NA;"790265444414394368";NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";"simply_Carr";0;FALSE;FALSE;NA;NA
"507";"Tea time is the best time <U+2615><U+FE0F> #teatime #diadelosmuertos #dayofthedead https://t.co/3akLX4YpB0";FALSE;0;NA;2016-10-23 18:41:39;FALSE;NA;"790261924235714565";NA;"<a href=""http://instagram.com"" rel=""nofollow"">Instagram</a>";"GotMySoul";0;FALSE;FALSE;NA;NA
"508";"Desperate times call for desperate measures.... #TeaTime https://t.co/wCSsSPwTZi";FALSE;0;NA;2016-10-23 18:35:18;FALSE;NA;"790260325815840768";NA;"<a href=""http://www.hootsuite.com"" rel=""nofollow"">Hootsuite</a>";"FloweringTeas";0;FALSE;FALSE;NA;NA
"509";"RT @poodyandberty: Country cosy for teatime
#HandmadeHour #CraftHour #teatime #cuppa #tea #Autumnwatch
https://t.co/KfYObbBkWo https://t…";FALSE;0;NA;2016-10-23 18:23:27;FALSE;NA;"790257344622039040";NA;"<a href=""http://www.hootsuite.com"" rel=""nofollow"">Hootsuite</a>";"Online_CraftRT";3;TRUE;FALSE;NA;NA
"510";"#ChristmasTree #TeapotSet / Creamer and Sugar #christmasteapot #teatime #teasetting https://t.co/8IZrG7O0zu #etsy… https://t.co/i2XTsTybXn";FALSE;0;NA;2016-10-23 18:20:11;TRUE;NA;"790256519182946304";NA;"<a href=""https://www.socialjukebox.com"" rel=""nofollow"">The Social Jukebox</a>";"fieldsofvintage";3;FALSE;FALSE;NA;NA
"511";"RT @poodyandberty: Country cosy for teatime
#HandmadeHour #CraftHour #teatime #cuppa #tea #Autumnwatch
https://t.co/KfYObbBkWo https://t…";FALSE;0;NA;2016-10-23 18:18:08;FALSE;NA;"790256003711430656";NA;"<a href=""http://facebook.com/onlinecrafters"" rel=""nofollow"">#OnlineCraft</a>";"online_craft";3;TRUE;FALSE;NA;NA
"512";"RT @poodyandberty: Country cosy for teatime
#HandmadeHour #CraftHour #teatime #cuppa #tea #Autumnwatch
https://t.co/KfYObbBkWo https://t…";FALSE;0;NA;2016-10-23 18:16:42;FALSE;NA;"790255643244498944";NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";"13DaisyChains";3;TRUE;FALSE;NA;NA
"513";"Looking for #tea this morning? We got you covered at https://t.co/sYRK7UitCL free #GiftCard #subscribesunday #fall #SundayFunday #teatime";FALSE;1;NA;2016-10-23 18:16:06;FALSE;NA;"790255494967463937";NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";"DustinKaban";1;FALSE;FALSE;NA;NA
"514";"Country cosy for teatime
#HandmadeHour #CraftHour #teatime #cuppa #tea #Autumnwatch
https://t.co/KfYObbBkWo https://t.co/zMnFVwc5pz";FALSE;3;NA;2016-10-23 18:15:10;FALSE;NA;"790255258714968064";NA;"<a href=""http://twitter.com/#!/download/ipad"" rel=""nofollow"">Twitter for iPad</a>";"poodyandberty";3;FALSE;FALSE;NA;NA
"515";"Visit https://t.co/Zs4aMBHNqN to sample the Inked Chef's #afternoontea, whose food is quirky as his body art… https://t.co/AWnGyPOqIV";FALSE;0;NA;2016-10-23 18:05:22;TRUE;NA;"790252793693102080";NA;"<a href=""http://www.hootsuite.com"" rel=""nofollow"">Hootsuite</a>";"Farleigh";0;FALSE;FALSE;NA;NA
"516";"Midnight Melange Black Tea from Plum Deluxe... https://t.co/131WDMcqrQ #tea #teatime https://t.co/XDqvV93bc1";FALSE;0;NA;2016-10-23 18:05:07;FALSE;NA;"790252730031804418";NA;"<a href=""http://aa.com"" rel=""nofollow"">pptweet123</a>";"hanmeimei1955";0;FALSE;FALSE;NA;NA
"517";"RT @poodyandberty: Fancy a cuppa?
#cuppa #tea #teatime #handmade #homedecor #hare
https://t.co/4heLdx6YiY https://t.co/wRQmjFM0By";FALSE;0;NA;2016-10-23 18:04:05;FALSE;NA;"790252468949114880";NA;"<a href=""http://twitter.com"" rel=""nofollow"">Twitter Web Client</a>";"mollyjames_shop";2;TRUE;FALSE;NA;NA
"518";"Pinkies raised! #teatime #lovemygirls #fancy #blessed https://t.co/MVFvS6CnVy";FALSE;1;NA;2016-10-23 17:58:23;FALSE;NA;"790251035793186818";NA;"<a href=""http://instagram.com"" rel=""nofollow"">Instagram</a>";"SharonParenteau";0;FALSE;FALSE;NA;NA
"519";"RT @laurieshan: #CHILDHOOD art Print #Princess,#teatime #Beach #Kitty #Dolls #pretendplay #LaurieShanholtzer https://t.co/HeAU43x6dy https:…";FALSE;0;NA;2016-10-23 17:57:57;FALSE;NA;"790250927269744640";NA;"<a href=""http://twitter.com"" rel=""nofollow"">Twitter Web Client</a>";"noelleperles";41;TRUE;FALSE;NA;NA
"520";"RT @DunkKnapp: @EmiliaFox on Harry Hill's #TeaTime has made my Sunday. <ed><U+00A0><U+00BD><ed><U+00B2><U+009E>";FALSE;0;NA;2016-10-23 17:42:47;FALSE;NA;"790247106997084160";NA;"<a href=""http://twitter.com"" rel=""nofollow"">Twitter Web Client</a>";"EmiliaFoxing_";1;TRUE;FALSE;NA;NA
"521";"<ed><U+00A0><U+00BC><ed><U+00BD><U+00B5><ed><U+00A0><U+00BC><ed><U+00BD><U+00AA> Matcha tea & lemon raspberry muffin <ed><U+00A0><U+00BC><ed><U+00BD><U+00B5><ed><U+00A0><U+00BC><ed><U+00BD><U+00AA>
#foodie #foodporn #yummie #tealover #tea #teatime… https://t.co/jEWzVVC6X1";FALSE;3;NA;2016-10-23 17:40:54;FALSE;NA;"790246633632063498";NA;"<a href=""http://instagram.com"" rel=""nofollow"">Instagram</a>";"Frandilocuente";0;FALSE;FALSE;"-3.71194";"40.42278"
"522";"@EmiliaFox on Harry Hill's #TeaTime has made my Sunday. <ed><U+00A0><U+00BD><ed><U+00B2><U+009E>";FALSE;1;"EmiliaFox";2016-10-23 17:37:39;FALSE;NA;"790245818762665984";"2433146013";"<a href=""http://www.twitter.com"" rel=""nofollow"">Twitter for Windows Phone</a>";"DunkKnapp";1;FALSE;FALSE;NA;NA
"523";"<ed><U+00A0><U+00BD><ed><U+00B3><U+00B7> notrevenge: @frankieromustdie: “Here’s our video selfie for @Rhapsodymusic #teatime” https://t.co/DM7XGQWdFs";FALSE;1;NA;2016-10-23 17:37:20;FALSE;NA;"790245735396696065";NA;"<a href=""http://www.tumblr.com/"" rel=""nofollow"">Tumblr</a>";"gomerofobia";0;FALSE;FALSE;NA;NA
"524";"Tea time <ed><U+00A0><U+00BD><ed><U+00B0><U+0087>
#merrycake #narbonne #teatime #cupcakes https://t.co/eCJYzbLuWK";FALSE;0;NA;2016-10-23 17:36:38;FALSE;NA;"790245561043738624";NA;"<a href=""http://instagram.com"" rel=""nofollow"">Instagram</a>";"NellyPapais";0;FALSE;FALSE;NA;NA
"525";"Maybe I should take some advice from nature<ed><U+00A0><U+00BD><ed><U+00B8><U+0089> #pepperminttea #healthy #yummy #teatime #fitness #health #organic… https://t.co/mYOui8TqH3";FALSE;6;NA;2016-10-23 17:36:34;TRUE;NA;"790245542957768704";NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";"tharrington7427";0;FALSE;FALSE;NA;NA
"526";"#RoyaleGiveaways - #Win a #casaWare Serenity 7-Piece #Tea Pot Set $70 value #LaPrimaShops #Teatime Enter Daily https://t.co/RFHG5MvaGT";FALSE;0;NA;2016-10-23 17:34:54;FALSE;NA;"790245124936695808";NA;"<a href=""http://twitter.com"" rel=""nofollow"">Twitter Web Client</a>";"aitch77";0;FALSE;FALSE;NA;NA
"527";"How many viewers does @HarryHill #teatime actually get, one less with me..Cmon <ed><U+00A0><U+00BE><ed><U+00B4><U+0094><ed><U+00A0><U+00BE><ed><U+00B4><U+0094>";FALSE;1;NA;2016-10-23 17:19:31;FALSE;NA;"790241255431241728";NA;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";"lynseyDawn28";0;FALSE;FALSE;NA;NA
"528";"It's #Teatime<U+23F0>Goodmorning, afternoon or evening depending on your location!!! #Sunday #Relax… https://t.co/7Osdj4xqA6";FALSE;0;NA;2016-10-23 17:19:00;FALSE;NA;"790241122727628801";NA;"<a href=""http://instagram.com"" rel=""nofollow"">Instagram</a>";"kenyalu";0;FALSE;FALSE;NA;NA
"529";"RT @AskTheTeatender: If you love cinnamon->Mahamosa Cinnamon #DecafTea 2 oz- https://t.co/SMEepbnnFx #teas #cinnamontea #teatime #tealovers…";FALSE;0;NA;2016-10-23 17:09:03;FALSE;NA;"790238621441880065";NA;"<a href=""http://twitter.com"" rel=""nofollow"">Twitter Web Client</a>";"EarlGreyTeaCat";1;TRUE;FALSE;NA;NA
"530";"If you love cinnamon->Mahamosa Cinnamon #DecafTea 2 oz- https://t.co/SMEepbnnFx #teas #cinnamontea #teatime #tealovers #halloween #october";FALSE;2;NA;2016-10-23 17:07:43;FALSE;NA;"790238285901824005";NA;"<a href=""https://about.twitter.com/products/tweetdeck"" rel=""nofollow"">TweetDeck</a>";"AskTheTeatender";1;FALSE;FALSE;NA;NA
"531";"@HarryHill will any laptop do mac or windows ? #teatime <ed><U+00A0><U+00BD><ed><U+00B8><U+0082>";FALSE;0;"HarryHill";2016-10-23 17:07:15;FALSE;NA;"790238166590615553";"368980136";"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";"popsandpeanut";0;FALSE;FALSE;NA;NA
"532";"Amazing blend! Mahamosa Almond Fruit Delight #Tea 2 oz https://t.co/karrUYMguS #vegan #vegetarian #teas #foodporn #foodie #teatime #cook";FALSE;5;NA;2016-10-23 17:07:11;FALSE;NA;"790238150748672001";NA;"<a href=""https://about.twitter.com/products/tweetdeck"" rel=""nofollow"">TweetDeck</a>";"AskTheTeatender";2;FALSE;FALSE;NA;NA
"533";"RT @GemmaRooney10: Football over now time for @HarryHill #teatime https://t.co/vhT8CZa6kK";FALSE;0;NA;2016-10-23 17:03:20;FALSE;NA;"790237178920132608";NA;"<a href=""http://twitter.com/#!/download/ipad"" rel=""nofollow"">Twitter for iPad</a>";"DanielleLux1";1;TRUE;FALSE;NA;NA
"534";"Football over now time for @HarryHill #teatime https://t.co/vhT8CZa6kK";FALSE;0;NA;2016-10-23 16:57:58;FALSE;NA;"790235829423800323";NA;"<a href=""http://twitter.com/#!/download/ipad"" rel=""nofollow"">Twitter for iPad</a>";"GemmaRooney10";1;FALSE;FALSE;NA;NA
"535";"Fall has never tasted so good . . .
#fall #tea #looseleaftea #heaven #teaaddict #teatime
https://t.co/26HSLNUj5g https://t.co/uHLhn9nBIm";FALSE;1;NA;2016-10-23 16:54:49;FALSE;NA;"790235038507896832";NA;"<a href=""http://twitter.com"" rel=""nofollow"">Twitter Web Client</a>";"TeaGallerie";0;FALSE;FALSE;NA;NA
"536";"A nice closure to a rainy weekend #love #home #teatime #sundayevening #oolongtea #dammann @… https://t.co/A7yNDaGMgA";FALSE;0;NA;2016-10-23 16:53:41;FALSE;NA;"790234752682893313";NA;"<a href=""http://instagram.com"" rel=""nofollow"">Instagram</a>";"sgnobahar";0;FALSE;FALSE;"9.2";"45.4667"
"537";"Hello Gorgeous! Sunday morning coffee talk is the best! #coffetalk #teatime #sundaymorning… https://t.co/UzT9o35CMA";FALSE;0;NA;2016-10-23 16:48:12;FALSE;NA;"790233372433973249";NA;"<a href=""http://linkis.com"" rel=""nofollow"">Put your button on any page! </a>";"HealthyDivagirl";0;FALSE;FALSE;NA;NA
"538";"Hello Gorgeous! Sunday morning greetings. #sunday #coffeetalk #teatime #videostar… https://t.co/0QKnBQIj9a";FALSE;0;NA;2016-10-23 16:45:33;FALSE;NA;"790232707473244160";NA;"<a href=""http://linkis.com"" rel=""nofollow"">Put your button on any page! </a>";"HealthyDivagirl";0;FALSE;FALSE;NA;NA
"539";"RT @cupandowl: Wonderful shaped teapot by Arthur Wood #etsy #aladdin #vintage #teaparty #teatime #giftideas #gifts #etsypreneur https://t.c…";FALSE;0;NA;2016-10-23 16:43:13;FALSE;NA;"790232117758205952";NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";"nerakmugnet";2;TRUE;FALSE;NA;NA
"540";"RT @alenasbdesign: Up to 50% Off Home and Art Departments!
Code: COZYUPSAVING
https://t.co/z2EdUStaHV
#scotland #shoppingsunday #teatime ht…";FALSE;0;NA;2016-10-23 16:42:46;FALSE;NA;"790232005485232131";NA;"<a href=""http://www.royhair.com"" rel=""nofollow"">ScotlandBot</a>";"tweets_scotland";1;TRUE;FALSE;NA;NA
"541";"Pumpkin pie with cranberry, pumpkin seed,Bourbon crumble only @pieholeyyc #brunch #teatime #sundaydinner… https://t.co/CaOCCC5sDJ";FALSE;1;NA;2016-10-23 16:40:31;TRUE;NA;"790231437093933056";NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";"pieholeyyc";0;FALSE;FALSE;NA;NA
"542";"#Handdrawn large #porcelain #teapot with #aztec #pattern <U+26AB><U+FE0F><U+2615><U+FE0F><U+26AA><U+FE0F> #timefortea #teatime #tealovers… https://t.co/lxBDzj6gf1";FALSE;0;NA;2016-10-23 16:36:45;FALSE;NA;"790230489248464897";NA;"<a href=""http://instagram.com"" rel=""nofollow"">Instagram</a>";"the_meep";0;FALSE;FALSE;NA;NA
"543";"Up to 50% Off Home and Art Departments!
Code: COZYUPSAVING
https://t.co/z2EdUStaHV
#scotland #shoppingsunday… https://t.co/aeLGzXmmBa";FALSE;0;NA;2016-10-23 16:36:03;TRUE;NA;"790230314220126208";NA;"<a href=""http://bufferapp.com"" rel=""nofollow"">Buffer</a>";"alenasbdesign";1;FALSE;FALSE;NA;NA
"544";"Maple Pecan Scones in progress! #maple #pecan #scone #scones #maplepecanscones #foodporn #teatime https://t.co/bJxLjMM9ci";FALSE;1;NA;2016-10-23 16:34:30;FALSE;NA;"790229923931754496";NA;"<a href=""http://instagram.com"" rel=""nofollow"">Instagram</a>";"A4AleeshaD";0;FALSE;FALSE;NA;NA
"545";"RT @AlakabanOnline: Get a free $5 Gift Card for signing up at https://t.co/jkTvuDL9ud were launching soon! #tea #teatime #startup #vancouve…";FALSE;0;NA;2016-10-23 16:24:42;FALSE;NA;"790227460197535744";NA;"<a href=""http://twitter.com"" rel=""nofollow"">Twitter Web Client</a>";"DustinKaban";1;TRUE;FALSE;NA;NA
"546";"The art of happiness is service to all #Yogi #teatime #teaceremony #sipthistea #hotteaandchill https://t.co/wvhzkh9dNw";FALSE;1;NA;2016-10-23 16:23:08;FALSE;NA;"790227064674746368";NA;"<a href=""http://instagram.com"" rel=""nofollow"">Instagram</a>";"CharliFunk";0;FALSE;FALSE;NA;NA
"547";"RT @cupandowl: Stunning matte black teacup and saucer #etsy #etsychaching #vintage #gotvintage #teaparty #teatime #gifts https://t.co/4fsom…";FALSE;0;NA;2016-10-23 16:19:28;FALSE;NA;"790226140090634240";NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";"nerakmugnet";1;TRUE;FALSE;NA;NA
"548";"RT @cupandowl: Awesome groovy flower Sadler creamer #etsy #giftideas #Sadler #gifts #teaparty #teatime #shoppershour https://t.co/v3sLvTXHSU";FALSE;0;NA;2016-10-23 16:18:40;FALSE;NA;"790225939913281536";NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";"nerakmugnet";6;TRUE;FALSE;NA;NA
"549";"Keepin' it cool with our mojteato <ed><U+00A0><U+00BC><ed><U+00BC><U+00BF>#thesteepingroom #teatime #trueaustin
https://t.co/enoGBpa6hL https://t.co/bmc8GlpITo";FALSE;3;NA;2016-10-23 16:06:48;FALSE;NA;"790222955259232256";NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";"TheSteepingRoom";0;FALSE;FALSE;NA;NA
"550";"Enjoying the little things, sobre todo con Bruce, Nutella y mi porcelana desparejada vintage. #teatime #tealover https://t.co/I2rJsovlbD";FALSE;6;NA;2016-10-23 15:59:22;FALSE;NA;"790221082372472836";NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";"InmaculadaUrrea";0;FALSE;FALSE;NA;NA
"551";"https://t.co/7CYPrerR0f Teacups, come with a tea packet, sugar, and stirrer! Kitchen decor or on fridge magnet!… https://t.co/i0EfE99Whw";FALSE;0;NA;2016-10-23 15:58:37;TRUE;NA;"790220893624623106";NA;"<a href=""http://twitter.com"" rel=""nofollow"">Twitter Web Client</a>";"Tinyshopkeeper";2;FALSE;FALSE;NA;NA
"552";"If you are a female.... then you know that #TeaTime means #TeaTime and you better drop everything and sip the tea being given. #DontPlay";FALSE;0;NA;2016-10-23 15:49:19;FALSE;NA;"790218553081335808";NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";"seanya_p_wilson";0;FALSE;FALSE;NA;NA
"553";"The perfect day to pull out my gorgeous new tea set, courtesy of @emilypowellcreative #rainydays #teatime #teaset … https://t.co/Gnw46LfqWW";FALSE;2;NA;2016-10-23 15:48:42;FALSE;NA;"790218398894592000";NA;"<a href=""http://ifttt.com"" rel=""nofollow"">IFTTT</a>";"LesieleJuliet";0;FALSE;FALSE;NA;NA
"554";"RT @carolJhedges: Cup of tea? Piece of cake with it? #teatime #sunday https://t.co/seGZTCR4T0";FALSE;0;NA;2016-10-23 15:47:26;FALSE;NA;"790218080404250625";NA;"<a href=""http://twitter.com"" rel=""nofollow"">Twitter Web Client</a>";"topazwjh";1;TRUE;FALSE;NA;NA
"555";"Some Different Chinese Red Clays #tea #greentea #teatime #win #90sBabyFollowTrain https://t.co/jtTtMvanB0";FALSE;0;NA;2016-10-23 15:38:30;FALSE;NA;"790215830390923264";NA;"<a href=""http://ifttt.com"" rel=""nofollow"">IFTTT</a>";"cookingscarlet";0;FALSE;FALSE;NA;NA
"556";"Doggy Cuddles #staffylove #staffy #staffie #dogslife #dogs #teatime #doggielove https://t.co/ggf7T3DiRW";FALSE;2;NA;2016-10-23 15:37:34;FALSE;NA;"790215596700991489";NA;"<a href=""http://instagram.com"" rel=""nofollow"">Instagram</a>";"farmerswifee";0;FALSE;FALSE;NA;NA
"557";"Lazy sunday afternoon <ed><U+00A0><U+00BC><ed><U+00BD><U+00AA><U+2615><U+FE0F><ed><U+00A0><U+00BC><ed><U+00BD><U+0082><ed><U+00A0><U+00BC><ed><U+00BD><U+0081> #sunday #chill #teatime #biscuits https://t.co/masZd1hCS0";FALSE;0;NA;2016-10-23 15:37:34;FALSE;NA;"790215595614580737";NA;"<a href=""http://instagram.com"" rel=""nofollow"">Instagram</a>";"kornela55";0;FALSE;FALSE;NA;NA
"558";"Mabel begging for fish like a dog <ed><U+00A0><U+00BD><ed><U+00B8><U+0081> #catsofinstagram #cats #cute #dinner #teatime #home https://t.co/dWGI4k86Db";FALSE;1;NA;2016-10-23 15:31:23;FALSE;NA;"790214042950348800";NA;"<a href=""http://instagram.com"" rel=""nofollow"">Instagram</a>";"Buzzardgirl1";0;FALSE;FALSE;NA;NA
"559";"Best cup of tea in ages! Must be the pretty cups
#teatime
@lisaiow71 @perez_louisa https://t.co/SCIChwvN5K";FALSE;2;NA;2016-10-23 15:28:28;FALSE;NA;"790213308024549377";NA;"<a href=""http://twitter.com/#!/download/ipad"" rel=""nofollow"">Twitter for iPad</a>";"Northnsouth55";0;FALSE;FALSE;NA;NA
"560";"The latest The Sweet Pea Tea Daily! https://t.co/mvUriQvczb Thanks to @hanmeimei1955 @Secretgardenslo @ladytam4life #teatime #tea";FALSE;0;NA;2016-10-23 15:24:47;FALSE;NA;"790212378696753152";NA;"<a href=""http://paper.li"" rel=""nofollow"">Paper.li</a>";"SweetPeaTeaNJ";0;FALSE;FALSE;NA;NA
"561";"Need to get a hat that won't fly off too lol! Love #walking. Hate #frozen face! Need hot tea - NOW! #putthekettleon #teatime";FALSE;0;NA;2016-10-23 15:23:02;FALSE;NA;"790211940358520832";NA;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";"MorganLeFayXXX";0;FALSE;FALSE;NA;NA
"562";"#lemonmeringue #pie @pieholeyyc made from scratch with freshly squeezed lemon juice #sundunch #teatime #dessert… https://t.co/ysEQk1CLyA";FALSE;0;NA;2016-10-23 15:10:55;TRUE;NA;"790208892089212929";NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";"pieholeyyc";0;FALSE;FALSE;NA;NA
"563";"Teapot Saucer Tea Bag Spoon Holder Boleslawiec Poland Pottery 3pc #tea #teapot #teatime https://t.co/21Xhz0SokW https://t.co/1Je8m93AvU";FALSE;0;NA;2016-10-23 15:10:06;FALSE;NA;"790208686966779905";NA;"<a href=""https://www.SchedulePictures.com"" rel=""nofollow"">SchedulePictures</a>";"MissKaties102";0;FALSE;FALSE;NA;NA
"564";"RT @TeaChronicles_: Black tea from German tea garden #Tschanara #teatime #blacktea #Germany #tealover https://t.co/WWFNK7skT0";FALSE;0;NA;2016-10-23 15:07:59;FALSE;NA;"790208153346449408";NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";"RenaAppletea";1;TRUE;FALSE;NA;NA
"565";"Cup of tea? Piece of cake with it? #teatime #sunday https://t.co/seGZTCR4T0";FALSE;7;NA;2016-10-23 15:05:22;FALSE;NA;"790207492483608576";NA;"<a href=""http://twitter.com"" rel=""nofollow"">Twitter Web Client</a>";"carolJhedges";1;FALSE;FALSE;NA;NA
"566";"New mug! #illustration #illustrator #drawing #porcelainpainting #mug #teatime #art #lazysunday… https://t.co/EQZCL7U4I0";FALSE;1;NA;2016-10-23 15:02:46;FALSE;NA;"790206840353075200";NA;"<a href=""http://instagram.com"" rel=""nofollow"">Instagram</a>";"SolangeEhrler";0;FALSE;FALSE;NA;NA
"567";"Good morning. <U+270C><U+2764><ed><U+00A0><U+00BD><ed><U+00B8><U+008A><ed><U+00A0><U+00BC><ed><U+00BC><U+008E> #tea #teatime #morning #motivation #goodmorning #sunrise #mountains #southwest #autumn #view... https://t.co/8L7Dx00mlT";FALSE;2;NA;2016-10-23 14:59:48;FALSE;NA;"790206093335068672";NA;"<a href=""http://www.facebook.com/twitter"" rel=""nofollow"">Facebook</a>";"jenashtonart";0;FALSE;FALSE;NA;NA
"568";"RT @ThePointingDog: #Sheffield Come join us for #teatime between 5-7 or grab an extra late bite with #Supper after 9.30pm! Read all... http…";FALSE;0;NA;2016-10-23 14:50:42;FALSE;NA;"790203800887910400";NA;"<a href=""http://twitter.com"" rel=""nofollow"">Twitter Web Client</a>";"gr8musicvenues";1;TRUE;FALSE;NA;NA
"569";"15 minutes to #teatime o #coffeebreak with home made #cake. It'll be our pleasure to see you smile! https://t.co/pPhwEZ8Fpz www.heladeria.…";FALSE;1;NA;2016-10-23 14:45:07;FALSE;NA;"790202399138906113";NA;"<a href=""http://ifttt.com"" rel=""nofollow"">IFTTT</a>";"heladeriaBlu";0;FALSE;FALSE;NA;NA
"570";"RT @laurieshan: #CHILDHOOD art Print #Princess,#teatime #Beach #Kitty #Dolls #pretendplay #LaurieShanholtzer https://t.co/HeAU43x6dy https:…";FALSE;0;NA;2016-10-23 14:44:24;FALSE;NA;"790202218368557057";NA;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";"yuko_mushi";41;TRUE;FALSE;NA;NA
"571";"It's time for #tea! Mix and match teacup & teapot charms for a OOAK #Tealovers Necklace - https://t.co/v6utLj3L9J… https://t.co/YJ8Mrem6fh";FALSE;1;NA;2016-10-23 14:39:48;TRUE;NA;"790201059818008576";NA;"<a href=""http://twitter.com"" rel=""nofollow"">Twitter Web Client</a>";"CSLJewelry";0;FALSE;FALSE;NA;NA
"572";"<ed><U+00A0><U+00BC><ed><U+00BD><U+0082> #kenbek #established #teatime #sunday @ West london https://t.co/286pjuUcvM";FALSE;2;NA;2016-10-23 14:35:47;FALSE;NA;"790200048969740293";NA;"<a href=""http://instagram.com"" rel=""nofollow"">Instagram</a>";"KennethBek";0;FALSE;FALSE;"-0.22413289";"51.48972051"
"573";"#Sheffield Come join us for #teatime between 5-7 or grab an extra late bite with #Supper after 9.30pm! Read all... https://t.co/6DdWeflnh8";FALSE;2;NA;2016-10-23 14:30:58;FALSE;NA;"790198835696037888";NA;"<a href=""http://www.facebook.com/twitter"" rel=""nofollow"">Facebook</a>";"ThePointingDog";1;FALSE;FALSE;NA;NA
"574";"Why Drinking Tea May Help Prevent and Manage Type 2 Diabetes #tea #greentea #teatime #win #90sBabyFollowTrain https://t.co/STymEDYKOt";FALSE;1;NA;2016-10-23 14:13:10;FALSE;NA;"790194359136321541";NA;"<a href=""http://ifttt.com"" rel=""nofollow"">IFTTT</a>";"cookingscarlet";0;FALSE;FALSE;NA;NA
"575";"#RoyaleGiveaways - #Win a #casaWare Serenity 7-Piece #Tea Pot Set $70 value #LaPrimaShops #Teatime Enter Daily https://t.co/Wwz6TgGJhy";FALSE;2;NA;2016-10-23 14:08:54;FALSE;NA;"790193283872022529";NA;"<a href=""http://linkis.com"" rel=""nofollow"">Put your button on any page! </a>";"NegronSara";0;FALSE;FALSE;NA;NA
"576";"Tea time #teatime #lazysundayafternoon #athome #bellatorinotea #MelissaErboristeria… https://t.co/XYawYCLA6F";FALSE;0;NA;2016-10-23 14:04:49;FALSE;NA;"790192254723973125";NA;"<a href=""http://instagram.com"" rel=""nofollow"">Instagram</a>";"ElisabettaSoler";0;FALSE;FALSE;NA;NA
"577";"RT @fieldsofvintage: #ChristmasTree #TeapotSet / Creamer and Sugar #christmasteapot #teatime #teasetting https://t.co/8IZrG7O0zu #etsy #ho…";FALSE;0;NA;2016-10-23 14:00:14;FALSE;NA;"790191101084860417";NA;"<a href=""http://QuintessencePublications.com"" rel=""nofollow"">QuintessenceBooks </a>";"loveleov";1;TRUE;FALSE;NA;NA
"578";"RT @cupandowl: Gorgeous #RoyalAlbert teacup&saucer #etsy #giftideas #gifts #teaparty #teatime #vintage #etsyshop #temptteam https://t.co/mw…";FALSE;0;NA;2016-10-23 13:54:53;FALSE;NA;"790189754675585025";NA;"<a href=""http://twitter.com"" rel=""nofollow"">Twitter Web Client</a>";"TilliesConsign";14;TRUE;FALSE;NA;NA
"579";"Isn't it perfect for #teatime ? From 'An Odyssey of Wonder' by Zuzanna Kwiecien https://t.co/KwDJQlTg9h #relax… https://t.co/jSRfdnjuwi";FALSE;2;NA;2016-10-23 13:54:19;TRUE;NA;"790189613415534593";NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";"BlackWolfEdit";0;FALSE;FALSE;NA;NA
"580";".
.
so delicious
#chocolatecupcakes
#hostmam
#Thanks
#teatime<U+2615><U+FE0F> https://t.co/mcfHHFBJTZ";FALSE;0;NA;2016-10-23 13:44:36;FALSE;NA;"790187167611953153";NA;"<a href=""http://instagram.com"" rel=""nofollow"">Instagram</a>";"rurun819";0;FALSE;FALSE;NA;NA
"581";"The daily essentials
#tea #teatime #brew #sunglasses #denimsunglasses #iphonecase #nodus… https://t.co/Y7wFeZ8nEY";FALSE;3;NA;2016-10-23 13:40:10;FALSE;NA;"790186054280220672";NA;"<a href=""http://instagram.com"" rel=""nofollow"">Instagram</a>";"Mosevic_Eyewear";0;FALSE;FALSE;NA;NA
"582";"RT @laurieshan: #CHILDHOOD art Print #Princess,#teatime #Beach #Kitty #Dolls #pretendplay #LaurieShanholtzer https://t.co/HeAU43x6dy https:…";FALSE;0;NA;2016-10-23 13:34:30;FALSE;NA;"790184624605442048";NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";"QDPurdu";41;TRUE;FALSE;NA;NA
"583";"RT @cupandowl: Gorgeous #RoyalAlbert teacup&saucer #etsy #giftideas #gifts #teaparty #teatime #vintage #etsyshop #temptteam https://t.co/mw…";FALSE;0;NA;2016-10-23 13:33:16;FALSE;NA;"790184314046742528";NA;"<a href=""https://mobile.twitter.com"" rel=""nofollow"">Mobile Web (M5)</a>";"SellableStuff";14;TRUE;FALSE;NA;NA
"584";"Time for Tea.. Whats you tea of choice? Are you a classic blend or herbal infusion? #TeaTime #ChinaCup #Infusions https://t.co/K5XBk092C3";FALSE;1;NA;2016-10-23 13:30:48;FALSE;NA;"790183695873376258";NA;"<a href=""http://www.hootsuite.com"" rel=""nofollow"">Hootsuite</a>";"TheMaryborough";0;FALSE;FALSE;NA;NA
"585";"#ChristmasTree #TeapotSet / Creamer and Sugar #christmasteapot #teatime #teasetting https://t.co/8IZrG7O0zu #etsy… https://t.co/ySheEUiI9u";FALSE;0;NA;2016-10-23 13:20:06;TRUE;NA;"790181003281174530";NA;"<a href=""https://www.socialjukebox.com"" rel=""nofollow"">The Social Jukebox</a>";"fieldsofvintage";1;FALSE;FALSE;NA;NA
"586";"My french vanilla cake #homebaking #sundayfunday #nothisbirthday #teatime #foodporn #food #cake… https://t.co/tnIgJQQzZ2";FALSE;2;NA;2016-10-23 13:10:22;FALSE;NA;"790178553161580545";NA;"<a href=""http://instagram.com"" rel=""nofollow"">Instagram</a>";"intanalwi";0;FALSE;FALSE;"-0.12731805";"51.50711486"
"587";"Tasty cottage cheese dessert<ed><U+00A0><U+00BD><ed><U+00B8><U+008B>
#diwali #deepavali #dessert #sweet #festival #teatime #cottagecheese #paneer… https://t.co/BF281T348t";FALSE;0;NA;2016-10-23 12:53:58;TRUE;NA;"790174425714950144";NA;"<a href=""http://twitter.com/#!/download/ipad"" rel=""nofollow"">Twitter for iPad</a>";"indianclaypot";0;FALSE;FALSE;NA;NA
"588";"Had a wonderful tea time with my sisters and cousins.
#teatime #wonderful #family #sisters… https://t.co/E92oSwujGZ";FALSE;1;NA;2016-10-23 12:51:10;FALSE;NA;"790173721457594368";NA;"<a href=""http://instagram.com"" rel=""nofollow"">Instagram</a>";"zacrin";0;FALSE;FALSE;"101.54408341";"3.00370346"
"589";"A nice cup of tea on this nice and chilly morning. #tea #teatime #eltecito… https://t.co/R31kGDNerJ";FALSE;0;NA;2016-10-23 12:47:58;FALSE;NA;"790172915882987520";NA;"<a href=""http://instagram.com"" rel=""nofollow"">Instagram</a>";"BooksPastelitos";0;FALSE;FALSE;NA;NA
"590";"Who doesn't love #Banana #Bread?
https://t.co/kvzVPnUzqH #homemade
#breakfast #healthy #snacktime #recipe #baking… https://t.co/KihnEwHEpP";FALSE;0;NA;2016-10-23 12:47:36;TRUE;NA;"790172825097211904";NA;"<a href=""http://twitter.com"" rel=""nofollow"">Twitter Web Client</a>";"WATCfood";0;FALSE;FALSE;NA;NA
"591";"Good morning beautiful!! #picoftheday #teatime #lettering #ipadpro #lifeidesign https://t.co/FFwl2yJg7I";FALSE;2;NA;2016-10-23 12:36:10;FALSE;NA;"790169948043829252";NA;"<a href=""http://www.facebook.com/twitter"" rel=""nofollow"">Facebook</a>";"lifeidesign";0;FALSE;FALSE;NA;NA
"592";"It's #teatime! Japanese Earl Grey ice tea + lemon tea flavoured pop-corn.";FALSE;0;NA;2016-10-23 12:17:29;FALSE;NA;"790165243129241600";NA;"<a href=""http://twitter.com"" rel=""nofollow"">Twitter Web Client</a>";"panapp";0;FALSE;FALSE;NA;NA
"593";"Sunday #TeaTime viewing. @TomHawkin5 https://t.co/qRBETdkS00";FALSE;6;NA;2016-10-23 12:06:15;FALSE;NA;"790162415946174464";NA;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";"LevelUpLynch";0;FALSE;FALSE;NA;NA
"594";"My feeling today... <ed><U+00A0><U+00BC><ed><U+00BD><U+00B5>
#tea #teatime #milktea #lazy #lazysunday #sunday #eeyore #disney… https://t.co/ZcfDuIFStF";FALSE;1;NA;2016-10-23 11:52:02;FALSE;NA;"790158838557208576";NA;"<a href=""http://instagram.com"" rel=""nofollow"">Instagram</a>";"Lyva_World";0;FALSE;FALSE;NA;NA
"595";"RT @JosefinasPt: That's our cup of #tea <U+2615><U+FE0F><ed><U+00A0><U+00BC><ed><U+00BC><U+00B8><ed><U+00A0><U+00BC><ed><U+00BE><U+0082> #josefinasportugal #teatime https://t.co/w7Zv8SsGwt";FALSE;0;NA;2016-10-23 11:39:50;FALSE;NA;"790155770704826369";NA;"<a href=""https://mobile.twitter.com"" rel=""nofollow"">Mobile Web (M5)</a>";"Maryfefi";2;TRUE;FALSE;NA;NA
"596";"Once upon a time.. <ed><U+00A0><U+00BC><ed><U+00BF><U+00A1><ed><U+00A0><U+00BC><ed><U+00BC><U+0085>
<ed><U+00A0><U+00BD><ed><U+00B4><U+00BD>
<ed><U+00A0><U+00BD><ed><U+00B4><U+00BD>
<ed><U+00A0><U+00BD><ed><U+00B4><U+00BD>
#hometime #eveningsun #teatime <U+2615> #viewfrommywindow <ed><U+00A0><U+00BD><ed><U+00B8><U+008D> #ilikeit <ed><U+00A0><U+00BD><ed><U+00B1><U+0080>… https://t.co/j1GQmibaWn";FALSE;0;NA;2016-10-23 11:36:20;FALSE;NA;"790154887564783617";NA;"<a href=""http://instagram.com"" rel=""nofollow"">Instagram</a>";"mohammednishank";0;FALSE;FALSE;NA;NA
"597";".
healing time <ed><U+00A0><U+00BD><ed><U+00B2><U+00AD>
#furniture #journalstandardfurniture #sofa #lyon #coffeetime #teatime… https://t.co/R7lg8sxEbl";FALSE;1;NA;2016-10-23 11:35:57;FALSE;NA;"790154793335554048";NA;"<a href=""http://instagram.com"" rel=""nofollow"">Instagram</a>";"smiley_628";0;FALSE;FALSE;NA;NA
"598";"<U+2728>•A BALANCED DIET IS A CAKE IN EACH HAND•<U+2728> #goodtimes #teatime #happy #bakery #bakemyday… https://t.co/kuByqjiwrJ";FALSE;1;NA;2016-10-23 11:29:11;FALSE;NA;"790153091140165632";NA;"<a href=""http://instagram.com"" rel=""nofollow"">Instagram</a>";"DidYouC";0;FALSE;FALSE;NA;NA
"599";"#teatime today is #blacktea latte https://t.co/gPHqzJjMmz";FALSE;3;NA;2016-10-23 11:28:57;FALSE;NA;"790153030217961472";NA;"<a href=""http://instagram.com"" rel=""nofollow"">Instagram</a>";"tea_and_such";0;FALSE;FALSE;NA;NA
"600";"@RealGeorgieGirl Running up that hill is playing on the radio at work suddenly the day got better #KateBush so the kettle is on #teatime :)";FALSE;2;"RealGeorgieGirl";2016-10-23 11:26:19;FALSE;NA;"790152367324925952";"1268158992";"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";"StevePowner";0;FALSE;FALSE;NA;NA
"601";"English tea and cakes overlooking tea farm on a cold sunny afternoon.
#teafarm #teatime… https://t.co/wI6doe9E2C";FALSE;0;NA;2016-10-23 11:16:03;FALSE;NA;"790149783939874816";NA;"<a href=""http://instagram.com"" rel=""nofollow"">Instagram</a>";"limhockseng";0;FALSE;FALSE;NA;NA
"602";"Coffee & Cake, cant beat it! <ed><U+00A0><U+00BD><ed><U+00B8><U+008B><U+2615><ed><U+00A0><U+00BC><ed><U+00BD><U+00B0> Pop in and join us #Sunday #CoffeeTime #TeaTime https://t.co/a7zS5CqCwu";FALSE;3;NA;2016-10-23 11:10:17;FALSE;NA;"790148331293081600";NA;"<a href=""http://www.hootsuite.com"" rel=""nofollow"">Hootsuite</a>";"VanHage";0;FALSE;FALSE;NA;NA
"603";"Oh for a cuppa! The twin green banks produce the finest tea on Earth. #Darjeeling #quattroXpedition #teatime https://t.co/kAzTbOa2Ea";FALSE;0;NA;2016-10-23 11:09:57;FALSE;NA;"790148249617170432";NA;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";"anindasardar";0;FALSE;FALSE;NA;NA
"604";"RT @TaffertyDesigns: Treat your teapot to a beautiful #teacosy & it'll treat you to hot #tea ! #atsocialmediart #uksopro #teatime #etsyRT h…";FALSE;0;NA;2016-10-23 11:06:31;FALSE;NA;"790147385607479296";NA;"<a href=""http://twitter.com"" rel=""nofollow"">Twitter Web Client</a>";"TweetYouUK";5;TRUE;FALSE;NA;NA
"605";"MAD HATTERS TEA PARTY AT HOF #teatime #bespoke #assam #tea by #newbyteas #instoreonly… https://t.co/a56lJ7sF79";FALSE;0;NA;2016-10-23 11:06:28;FALSE;NA;"790147372026302464";NA;"<a href=""http://instagram.com"" rel=""nofollow"">Instagram</a>";"formlabNL";0;FALSE;FALSE;"4.8899264";"52.3557963"
"606";"RT @LadyTeapots: Enjoy a good pot of Irish tea and scones at The Tea Junction. Ballyvaghan, County Clare #Ireland #Signpost #teatime<U+2615> https…";FALSE;0;NA;2016-10-23 10:57:29;FALSE;NA;"790145111774621696";NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";"lovecountyclare";4;TRUE;FALSE;NA;NA
"607";"Sunday <ed><U+00A0><U+00BD><ed><U+00B2><U+0095> #cozy #princessbed #teatime #beingsicksucks #movietime #manintheironmask… https://t.co/CQrqjm4QgJ";FALSE;2;NA;2016-10-23 10:25:15;FALSE;NA;"790136997960482816";NA;"<a href=""http://instagram.com"" rel=""nofollow"">Instagram</a>";"candycane2401";0;FALSE;FALSE;NA;NA
"608";"Ridgway Homemaker Black Jug https://t.co/LoKivGtAAB via @Etsy #Homemaker #MCM #Woolworths #VintageKitchen #RidgwayHomemaker #TeaTime";FALSE;0;NA;2016-10-23 10:15:09;FALSE;NA;"790134460377341952";NA;"<a href=""http://twitter.com"" rel=""nofollow"">Twitter Web Client</a>";"SquarePegShoes";0;FALSE;FALSE;NA;NA
"609";"current mood <ed><U+00A0><U+00BC><ed><U+00BD><U+00B5><ed><U+00A0><U+00BD><ed><U+00B8><U+00BC>
#sunday #morning #teatime #with #grumpycat #meow #currentmode #lazysunday https://t.co/X4slF9weDo";FALSE;0;NA;2016-10-23 10:12:13;FALSE;NA;"790133718631448576";NA;"<a href=""http://instagram.com"" rel=""nofollow"">Instagram</a>";"KSFluesterin";0;FALSE;FALSE;NA;NA
"610";"#todolist
it's to be a #teatime with #icedmilktea <ed><U+00A0><U+00BD><ed><U+00B8><U+008A> https://t.co/o4Zo36PXq4";FALSE;1;NA;2016-10-23 10:08:55;FALSE;NA;"790132891069976576";NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";"RenaAppletea";0;FALSE;FALSE;NA;NA
"611";"RT @TaffertyDesigns: Back in stock: the 'Marigold Garden' #tea cosy. Only 1 in stock. Medium size. #tweeturbiz #teatime #afternoontea http…";FALSE;0;NA;2016-10-23 09:43:33;FALSE;NA;"790126503992451072";NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";"MitoniaUK";1;TRUE;FALSE;NA;NA
"612";"RT @TiendaBebeTe: Autumn is coming and delicious tea.
#teatime #harneyteas https://t.co/a7v4eouSVM";FALSE;0;NA;2016-10-23 09:42:52;FALSE;NA;"790126334844411904";NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";"RenaAppletea";1;TRUE;FALSE;NA;NA
"613";"RT @KusmiTeaUS: Kusmi Tea offers an exclusive #teatime in @jaegerlecoultre US stores this weekend for Mother's Day! #Reverso85 https://t.co…";FALSE;0;NA;2016-10-23 09:33:08;FALSE;NA;"790123884880072704";NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";"RenaAppletea";7;TRUE;FALSE;NA;NA
"614";"Sunday's special. #bloomingtea #floweringtea #teatime #instatea #teatime #artoftea #teaart… https://t.co/m4e45KjrWG";FALSE;1;NA;2016-10-23 09:25:14;FALSE;NA;"790121896734027776";NA;"<a href=""http://instagram.com"" rel=""nofollow"">Instagram</a>";"RangsaaTea";0;FALSE;FALSE;NA;NA
"615";"Pampering myself with a cup of tea on this relaxing sunday<ed><U+00A0><U+00BC><ed><U+00BD><U+0083> #teatime @ Sofia the Gunawarman https://t.co/mHtfp6wI8V";FALSE;0;NA;2016-10-23 09:09:34;FALSE;NA;"790117954608214016";NA;"<a href=""http://instagram.com"" rel=""nofollow"">Instagram</a>";"Pheifenn";0;FALSE;FALSE;"106.80759065";"-6.23164887"
"616";"Tea time with one of my favorite... #lovers from kusmi tea<ed><U+00A0><U+00BD><ed><U+00B2><U+009E>
#teatime #kusmitea # https://t.co/LxMtsa8VDy";FALSE;1;NA;2016-10-23 08:59:44;FALSE;NA;"790115480904224768";NA;"<a href=""http://instagram.com"" rel=""nofollow"">Instagram</a>";"tipasse";0;FALSE;FALSE;NA;NA
"617";"Black Tea with Aloe and Prickly Pear
#Tea #Teatime… https://t.co/GWF9adlcyF";FALSE;0;NA;2016-10-23 08:46:14;FALSE;NA;"790112079722246144";NA;"<a href=""http://linkis.com"" rel=""nofollow"">Put your button on any page! </a>";"n3n3_0602";0;FALSE;FALSE;NA;NA
"618";"RT @MontINNTO: Looks like just the sort of event our tea room regulars would enjoy! @TBG_Canada https://t.co/yLhKLddh2c #tea #teatime #ste…";FALSE;0;NA;2016-10-23 08:39:07;FALSE;NA;"790110291648352256";NA;"<a href=""http://twitter.com"" rel=""nofollow"">Twitter Web Client</a>";"LionHearts2016";1;TRUE;FALSE;NA;NA
"619";"Perfect for tea time with the #titasofmanila #teatime #dessert #strawberry #chocovron #ilovechocovron https://t.co/uD4t2baFeB";FALSE;0;NA;2016-10-23 08:25:35;FALSE;NA;"790106885269487616";NA;"<a href=""http://www.facebook.com/twitter"" rel=""nofollow"">Facebook</a>";"ChocoVronPh";0;FALSE;FALSE;NA;NA
"620";"#ChristmasTree #TeapotSet / Creamer and Sugar #christmasteapot #teatime #teasetting https://t.co/8IZrG7O0zu #etsy… https://t.co/NJBFkI9Sta";FALSE;0;NA;2016-10-23 08:20:04;TRUE;NA;"790105496145526784";NA;"<a href=""https://www.socialjukebox.com"" rel=""nofollow"">The Social Jukebox</a>";"fieldsofvintage";0;FALSE;FALSE;NA;NA
"621";"The Cookes Eat: Strawberry Custard Tart #TheCookesEat #dessert #teatime #tea #pastry #brulee… https://t.co/kOIeGAXyTj";FALSE;0;NA;2016-10-23 08:15:39;FALSE;NA;"790104385804201984";NA;"<a href=""http://instagram.com"" rel=""nofollow"">Instagram</a>";"iamjoannelim";0;FALSE;FALSE;NA;NA
"622";"First of all... have a #cupoftea :-) 3x #cinamon from #pukkatea my #autumn #favorite! #teatime… https://t.co/H9mKYojhtN";FALSE;1;NA;2016-10-23 08:10:08;FALSE;NA;"790102998819168256";NA;"<a href=""http://instagram.com"" rel=""nofollow"">Instagram</a>";"mahtava1";0;FALSE;FALSE;NA;NA
"623";"Essy https://t.co/5zHyQjn43e as #model #fotografdukkanim #pizza #coconut #teatime #celibrity";FALSE;0;NA;2016-10-23 08:03:09;FALSE;NA;"790101237425401856";NA;"<a href=""http://manage.megapo.st/"" rel=""nofollow"">MEGAPO.ST</a>";"GonzalezoDavid";0;FALSE;FALSE;NA;NA
"624";"TEA TIME <U+2764><U+FE0F> #LoveTea #tea #teatime #teaaddict https://t.co/JFgeX2dBrl";FALSE;2;NA;2016-10-23 08:01:00;FALSE;NA;"790100698520137728";NA;"<a href=""http://instagram.com"" rel=""nofollow"">Instagram</a>";"LLAbbygael";0;FALSE;FALSE;NA;NA
"625";"Sunday morning <U+2615> #greentea #sunday #sundaymorning #tea #teatime #cozy #homesweethome #cold… https://t.co/C396x7Bqtf";FALSE;2;NA;2016-10-23 07:48:19;FALSE;NA;"790097505929363456";NA;"<a href=""http://instagram.com"" rel=""nofollow"">Instagram</a>";"leabotteron";0;FALSE;FALSE;NA;NA
"626";"The happenings are happening. #teatime #morningsafternoonsandevenings #theuniverseknows https://t.co/y9qUdWSHAR";FALSE;1;NA;2016-10-23 07:41:46;FALSE;NA;"790095856707842048";NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";"actressaratomko";0;FALSE;FALSE;NA;NA
"627";"RT @TaffertyDesigns: Hand knitted Owl #Tea Cosy by #taffertydesigns. Great #holiday #giftidea for a #tealover. @ATSocialUK #teatime https…";FALSE;0;NA;2016-10-23 07:15:50;FALSE;NA;"790089331931222018";NA;"<a href=""http://twitter.com"" rel=""nofollow"">Twitter Web Client</a>";"UniqYourWordArt";2;TRUE;FALSE;NA;NA
"628";"RT @MissKaties102: Tiny #Teapot, Teabag Holder, Salt & Pepper Purple Violets Set of 3 #tea #teatime #violet https://t.co/lN6ObbH6Tv https:…";FALSE;0;NA;2016-10-23 07:14:31;FALSE;NA;"790089000123895808";NA;"<a href=""http://twitter.com"" rel=""nofollow"">Twitter Web Client</a>";"butterandco";1;TRUE;FALSE;NA;NA
"629";"Tiny #Teapot, Teabag Holder, Salt & Pepper Purple Violets Set of 3 #tea #teatime #violet https://t.co/lN6ObbH6Tv https://t.co/RNgy89g50b";FALSE;2;NA;2016-10-23 07:10:07;FALSE;NA;"790087893494542337";NA;"<a href=""https://www.SchedulePictures.com"" rel=""nofollow"">SchedulePictures</a>";"MissKaties102";1;FALSE;FALSE;NA;NA
"630";"{ Sunday morning always starts with tea <U+2615><U+FE0F>} #tea #teatime #morning #goodmorning #coffee… https://t.co/AfQjZs2DUp";FALSE;1;NA;2016-10-23 06:47:16;FALSE;NA;"790082141635960832";NA;"<a href=""http://instagram.com"" rel=""nofollow"">Instagram</a>";"FloMaeli";0;FALSE;FALSE;NA;NA
"631";"RT @poodyandberty: Fancy a cuppa?
#cuppa #tea #teatime #handmade #homedecor #hare
https://t.co/4heLdx6YiY https://t.co/wRQmjFM0By";FALSE;0;NA;2016-10-23 06:44:53;FALSE;NA;"790081541753929728";NA;"<a href=""http://twitter.com/#!/download/ipad"" rel=""nofollow"">Twitter for iPad</a>";"poodyandberty";2;TRUE;FALSE;NA;NA
"632";"Connected <ed><U+00A0><U+00BC><ed><U+00BC><U+00BF><ed><U+00A0><U+00BD><ed><U+00B2><U+009A><ed><U+00A0><U+00BC><ed><U+00BC><U+00BF> #teatime https://t.co/ttTdWRCMC3";FALSE;0;NA;2016-10-23 06:13:54;FALSE;NA;"790073746627244032";NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";"corbettjulia";0;FALSE;FALSE;NA;NA
"633";"Carbonara Unagi Spaghetti as #late #lunch or #teatime #whatever the sauce is thick and they give… https://t.co/GAqNYYFYdS";FALSE;0;NA;2016-10-23 06:10:35;FALSE;NA;"790072909020663808";NA;"<a href=""http://instagram.com"" rel=""nofollow"">Instagram</a>";"wonderqueentv";0;FALSE;FALSE;"100.33177855";"5.41429844"
"634";"Experience the delicious chocolate outer with vanilla cream filling! Make the moments count! #Teatime #chocolate… https://t.co/lAyl8hzGIw";FALSE;2;NA;2016-10-23 06:01:19;TRUE;NA;"790070579638534144";NA;"<a href=""http://twitter.com"" rel=""nofollow"">Twitter Web Client</a>";"signaturesnacks";0;FALSE;FALSE;NA;NA
"635";"Have a beau-tea-ful Sundae!
#igsg #sg #sgig #ig #instatea #teatime #hightea #jn #joshua… https://t.co/74lRa9rMsC";FALSE;1;NA;2016-10-23 05:59:20;FALSE;NA;"790070081409744897";NA;"<a href=""http://instagram.com"" rel=""nofollow"">Instagram</a>";"joshua57ng";0;FALSE;FALSE;"103.85998784";"1.30373304"
"636";"RT @cupandowl: Two teacups&saucers w/matching cake plate #etsy #vintage #teaparty #teatime #etsyseller #etsysocial #etsyshop https://t.co/9…";FALSE;0;NA;2016-10-23 05:59:00;FALSE;NA;"790069995254329345";NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";"nerakmugnet";2;TRUE;FALSE;NA;NA
"637";"""donning"" the English tea set #english #englishbreakfast #tea #teatime #sip #sipstea #tealover… https://t.co/eDtlx2xzJ7";FALSE;0;NA;2016-10-23 05:57:13;FALSE;NA;"790069547139231745";NA;"<a href=""http://instagram.com"" rel=""nofollow"">Instagram</a>";"KennyFreddy";0;FALSE;FALSE;NA;NA
"638";"RT @cupandowl: Wonderful hand painted pansy teacup & saucer #etsy #giftideas #gifts #teaparty #teatime #vintage #epiconetsy https://t.co/Ew…";FALSE;0;NA;2016-10-23 05:21:48;FALSE;NA;"790060633530040320";NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";"nerakmugnet";3;TRUE;FALSE;NA;NA
"639";"Get a free $5 Gift Card for signing up at https://t.co/jkTvuDL9ud were launching soon! #tea #teatime #startup… https://t.co/M03Gw3qp6b";FALSE;8;NA;2016-10-23 05:19:54;TRUE;NA;"790060154351865856";NA;"<a href=""http://twitter.com"" rel=""nofollow"">Twitter Web Client</a>";"AlakabanOnline";1;FALSE;FALSE;NA;NA
"640";"Loving the new tissage_moutet display in the store! #frenchdesign #tissage #teatime #kitchen… https://t.co/5JJsUpdfte";FALSE;0;NA;2016-10-23 04:47:10;FALSE;NA;"790051917519093760";NA;"<a href=""http://instagram.com"" rel=""nofollow"">Instagram</a>";"helloessentials";0;FALSE;FALSE;"-72.62993855";"42.31924729"
"641";"Parents deserve some time to learn something new too! Join paint & tea time every Mon. & Fri. 6:30-8:30! #party… https://t.co/bf72gCW0RX";FALSE;0;NA;2016-10-23 04:19:12;TRUE;NA;"790044879246295040";NA;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";"CathayFuture";0;FALSE;FALSE;NA;NA
"642";"Afternoon tea
***
#HappyBirthdayAuntie #FancyShmancy #FamilyTime #TeaTime @ Little White House… https://t.co/qkybdiN3zW";FALSE;0;NA;2016-10-23 04:15:24;FALSE;NA;"790043924589056001";NA;"<a href=""http://instagram.com"" rel=""nofollow"">Instagram</a>";"coty5mel";0;FALSE;FALSE;"-122.58057";"49.16742"
"643";"RT @cupandowl: Lovely hand painted flower teacup&saucer #etsy #vintage #etsyteamunity #teaparty #teatime #gifts #giftidea https://t.co/MCrw…";FALSE;0;NA;2016-10-23 03:59:43;FALSE;NA;"790039975718813696";NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";"nerakmugnet";1;TRUE;FALSE;NA;NA
"644";"RT @cupandowl: Beautiful #RoyalAlbert teacup and saucer #etsy #vintage #teaparty #teatime #shoppershour #giftideas #gifts https://t.co/zPnv…";FALSE;0;NA;2016-10-23 03:59:28;FALSE;NA;"790039913877999617";NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";"nerakmugnet";1;TRUE;FALSE;NA;NA
"645";"#RoyaleGiveaways - #Win a #casaWare Serenity 7-Piece #Tea Pot Set $70 value #LaPrimaShops #Teatime Enter Daily https://t.co/tKWzggsT8P";FALSE;0;NA;2016-10-23 03:58:46;FALSE;NA;"790039739655188480";NA;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";"TES283";0;FALSE;FALSE;NA;NA
"646";"#RoyaleGiveaways - #Win a #casaWare Serenity 7-Piece #Tea Pot Set $70 value #LaPrimaShops #Teatime Enter Daily https://t.co/LvwMEmWHAi";FALSE;0;NA;2016-10-23 03:46:15;FALSE;NA;"790036588524953600";NA;"<a href=""http://twitter.com"" rel=""nofollow"">Twitter Web Client</a>";"katrinadehart";0;FALSE;FALSE;NA;NA
"647";"Make coffee and tea a delicious experience with Butter Pecan Sugar Shapes. https://t.co/wsU0lw6IW7 #teatime #coffee https://t.co/0oPa5Otx7A";FALSE;4;NA;2016-10-23 03:30:30;FALSE;NA;"790032624639238144";NA;"<a href=""http://meetedgar.com"" rel=""nofollow"">Meet Edgar</a>";"ArtisanSugars";0;FALSE;FALSE;NA;NA
"648";"RT @laurieshan: #CHILDHOOD art Print #Princess,#teatime #Beach #Kitty #Dolls #pretendplay #LaurieShanholtzer https://t.co/HeAU43x6dy https:…";FALSE;0;NA;2016-10-23 03:22:54;FALSE;NA;"790030713668206593";NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";"OTWCollectibles";41;TRUE;FALSE;NA;NA
"649";"#ChristmasTree #TeapotSet / Creamer and Sugar #christmasteapot #teatime #teasetting https://t.co/8IZrG7O0zu #etsy… https://t.co/mVh9SuX6c6";FALSE;1;NA;2016-10-23 03:20:06;TRUE;NA;"790030008534302720";NA;"<a href=""https://www.socialjukebox.com"" rel=""nofollow"">The Social Jukebox</a>";"fieldsofvintage";0;FALSE;FALSE;NA;NA
"650";"RT @itsjudytime: Can't believe how much she has grown!!! ¢<U+FE0F><ed><U+00A0><U+00BD><ed><U+00B8><U+0098><ed><U+00A0><U+00BC><ed><U+00BE><U+0082><ed><U+00A0><U+00BC><ed><U+00BE><U+0089> #birthdaygirl #juliannabear #itsjudyslife #teatime https://t.co/fdH18OAPbb";FALSE;0;NA;2016-10-23 03:16:57;FALSE;NA;"790029216091926528";NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";"SweetMhavrick";132;TRUE;FALSE;NA;NA
"651";"RT @teapet_salon: Teapet #halloween style! <ed><U+00A0><U+00BC><ed><U+00BD><U+00AD><ed><U+00A0><U+00BD><ed><U+00B1><U+00BB><ed><U+00A0><U+00BC><ed><U+00BD><U+00AC> #teatimeforpets #dogsoftwitter #CatsOfTwitter #dog #cat #pets #Caturday #teatime #trickortr…";FALSE;0;NA;2016-10-23 03:16:44;FALSE;NA;"790029159397400576";NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";"EdgarWiener";1;TRUE;FALSE;NA;NA
"652";"@myjaffa @The_Tardis_Toms @karen_hackett @cherylpoestone @generalxginger it does be #teatime";FALSE;0;"myjaffa";2016-10-23 03:15:21;FALSE;"789850783261089796";"790028812432052224";"228293667";"<a href=""http://www.tweetcaster.com"" rel=""nofollow"">TweetCaster for Android</a>";"spike_cat";0;FALSE;FALSE;NA;NA
"653";"Starting my #workweek #isdbd #isdlearns #teatime<U+2615><U+FE0F> https://t.co/nOgK1zDsrH";FALSE;0;NA;2016-10-23 02:56:04;FALSE;NA;"790023957873303553";NA;"<a href=""http://instagram.com"" rel=""nofollow"">Instagram</a>";"AMEC10";0;FALSE;FALSE;NA;NA
"654";"Want to learn how to make this yummy <ed><U+00A0><U+00BD><ed><U+00B8><U+008B> laddus!
https://t.co/UQco55nV7T
#recipe #deepavali #diwali #laddu #ladoo… https://t.co/XGspWnd142";FALSE;1;NA;2016-10-23 02:55:50;TRUE;NA;"790023899794771969";NA;"<a href=""http://twitter.com/#!/download/ipad"" rel=""nofollow"">Twitter for iPad</a>";"indianclaypot";0;FALSE;FALSE;NA;NA
"655";"RT @ChristinaCucina: A teatime treat recipe and a chance to win some British goodies! #anglophile #british #teatime #recipes https://t.co/o…";FALSE;0;NA;2016-10-23 02:51:39;FALSE;NA;"790022847863201794";NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";"SweetheartsSts";1;TRUE;FALSE;NA;NA
"656";"#RoyaleGiveaways - #Win a #casaWare Serenity 7-Piece #Tea Pot Set $70 value #LaPrimaShops #Teatime Enter Daily https://t.co/IOUhVkp1Lu";FALSE;0;NA;2016-10-23 02:37:37;FALSE;NA;"790019315382771712";NA;"<a href=""http://twitter.com"" rel=""nofollow"">Twitter Web Client</a>";"ThatTuxedoCat";0;FALSE;FALSE;NA;NA
"657";"About last Sunday #latergram #domingo #teatime #coladamorada #hotelcasagangotena #casagangotena… https://t.co/7rFBiCv4q5";FALSE;0;NA;2016-10-23 02:34:27;FALSE;NA;"790018520050339840";NA;"<a href=""http://instagram.com"" rel=""nofollow"">Instagram</a>";"IzquierdoMauri";0;FALSE;FALSE;NA;NA
"658";"Always #Teatime. Always https://t.co/DkwwE9mdKF";FALSE;0;NA;2016-10-23 02:30:34;FALSE;NA;"790017543184330752";NA;"<a href=""http://www.hootsuite.com"" rel=""nofollow"">Hootsuite</a>";"FloweringTeas";0;FALSE;FALSE;NA;NA
"659";"It's #TeaTime because it's cold in here. Watching #TheLegendofTarzan.";FALSE;0;NA;2016-10-23 02:28:39;FALSE;NA;"790017061581910017";NA;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";"TheReal_Gidget";0;FALSE;FALSE;NA;NA
"660";"Via @SantanaGarrett_ **WorkOut**
w/ my tag partner.
<ed><U+00A0><U+00BD><ed><U+00B1><U+008A><ed><U+00A0><U+00BD><ed><U+00B2><U+0097><ed><U+00A0><U+00BD><ed><U+00B2><U+00AA><ed><U+00A0><U+00BD><ed><U+00B1><U+0091><ed><U+00A0><U+00BD><ed><U+00B1><U+00AF>
#MyWife
#Japan
#TeaTime
#Stardom
#LadyWarriors https://t.co/UrNVktLSIv";FALSE;2;NA;2016-10-23 02:22:45;FALSE;NA;"790015573308518400";NA;"<a href=""http://twitter.com"" rel=""nofollow"">Twitter Web Client</a>";"cesarulices";0;FALSE;FALSE;NA;NA
"661";"#RoyaleGiveaways - #Win a #casaWare Serenity 7-Piece #Tea Pot Set $70 value #LaPrimaShops #Teatime Enter Daily https://t.co/rxDuz1jVzl";FALSE;0;NA;2016-10-23 02:02:36;FALSE;NA;"790010503871524864";NA;"<a href=""http://twitter.com"" rel=""nofollow"">Twitter Web Client</a>";"flyingping";0;FALSE;FALSE;NA;NA
"662";"RT @cupandowl: Gorgeous #RoyalAlbert teacup&saucer #etsy #giftideas #gifts #teaparty #teatime #vintage #etsyshop #temptteam https://t.co/mw…";FALSE;0;NA;2016-10-23 01:28:24;FALSE;NA;"790001897625321472";NA;"<a href=""https://roundteam.co"" rel=""nofollow"">RoundTeam</a>";"LuckyFrogEtsy";14;TRUE;FALSE;NA;NA
"663";"RT @hanmeimei1955: Soothing Rose Hibiscus Skin Detox from Yogi Tea... https://t.co/guDCGXBBP3 #tea #teatime https://t.co/m4HQnIgBHE";FALSE;0;NA;2016-10-23 01:26:28;FALSE;NA;"790001410658045953";NA;"<a href=""http://www.website.com/"" rel=""nofollow"">Key.1</a>";"syncless5";1;TRUE;FALSE;NA;NA
"664";"The latest Tea Time! https://t.co/5m9HGOt8ud Thanks to @jlamatm @RachaelDivers @ZealongTea #tea #teatime";FALSE;0;NA;2016-10-23 01:18:53;FALSE;NA;"789999500337242113";NA;"<a href=""http://paper.li"" rel=""nofollow"">Paper.li</a>";"The_Cup_Of_Tea";0;FALSE;FALSE;NA;NA
"665";"RT @aax13110: Green tea time #greentea #teatime #mommylife https://t.co/hqZW8eFwgR";FALSE;0;NA;2016-10-23 01:18:45;FALSE;NA;"789999469832048640";NA;"<a href=""https://roundteam.co"" rel=""nofollow"">RoundTeam</a>";"MatchaDrinkers";1;TRUE;FALSE;NA;NA
"666";"RT @guidedogs: Celebrate #NationalBakingWeek and organise a Great Guide Dogs Tea Party! https://t.co/rZJ3Ch1qCe #teatime https://t.co/ZK5zH…";FALSE;0;NA;2016-10-23 01:17:55;FALSE;NA;"789999257856020480";NA;"<a href=""http://twitter.com"" rel=""nofollow"">Twitter Web Client</a>";"sparrow_45_";10;TRUE;FALSE;NA;NA
"667";"RT @AesaCat: [2/365] #365daysoftea Having some incredible dark roast #Yaupon tea from @LostPinesYaupon today! #teatime #teablog #yaupon #su…";FALSE;0;NA;2016-10-23 01:16:27;FALSE;NA;"789998890971832321";NA;"<a href=""http://twitter.com"" rel=""nofollow"">Twitter Web Client</a>";"sparrow_45_";3;TRUE;FALSE;NA;NA
"668";"RT @LooseLeafTeaTim: That perfect cup of tea. #looseleaftea #earlgrey #teatime #tea https://t.co/3xzUQdsU3G";FALSE;0;NA;2016-10-23 01:16:05;FALSE;NA;"789998796969086977";NA;"<a href=""http://twitter.com"" rel=""nofollow"">Twitter Web Client</a>";"sparrow_45_";1;TRUE;FALSE;NA;NA
"669";"Green tea time #greentea #teatime #mommylife https://t.co/hqZW8eFwgR";FALSE;2;NA;2016-10-23 01:14:36;FALSE;NA;"789998425437769728";NA;"<a href=""http://linkis.com"" rel=""nofollow"">Put your button on any page! </a>";"aax13110";1;FALSE;FALSE;NA;NA
"670";"RT @HealthyUNow: Ever get stumped at what kind of tea to order? This should help. #TeaTime #Nutrition https://t.co/cHXcKaOfOQ";FALSE;0;NA;2016-10-23 01:13:58;FALSE;NA;"789998266813337600";NA;"<a href=""http://twitter.com"" rel=""nofollow"">Twitter Web Client</a>";"sparrow_45_";4;TRUE;FALSE;NA;NA
"671";"RT @cupandowl: Gorgeous pink teacup and saucer #etsy #Aynsley #vintage #teaparty #teatime #temptteam #shoppershour https://t.co/zxKpXOeJ5S";FALSE;0;NA;2016-10-23 01:13:13;FALSE;NA;"789998077708947456";NA;"<a href=""http://twitter.com"" rel=""nofollow"">Twitter Web Client</a>";"sparrow_45_";12;TRUE;FALSE;NA;NA
"672";"RT @tea_and_such: My indoor food growing project. The yellow pear tomato are doing really good. Very exciting. #teatime #urbancitylife http…";FALSE;0;NA;2016-10-23 01:10:32;FALSE;NA;"789997399766773760";NA;"<a href=""http://twitter.com"" rel=""nofollow"">Twitter Web Client</a>";"sparrow_45_";1;TRUE;FALSE;NA;NA
"673";"A teatime treat recipe and a chance to win some British goodies! #anglophile #british #teatime #recipes… https://t.co/cHeX9hJ5Sh";FALSE;2;NA;2016-10-23 00:53:04;TRUE;NA;"789993005524643841";NA;"<a href=""http://bufferapp.com"" rel=""nofollow"">Buffer</a>";"ChristinaCucina";1;FALSE;FALSE;NA;NA
"674";"Flowers with coffee. Good start to the morning, no?
#hongdae #teatime #coffeetime #seoul… https://t.co/zhh0nlBnm8";FALSE;0;NA;2016-10-23 00:49:57;FALSE;NA;"789992221227356160";NA;"<a href=""http://instagram.com"" rel=""nofollow"">Instagram</a>";"novaturienteur";0;FALSE;FALSE;NA;NA
"675";"Incase you all were wondering what my adult purchase of the day was. #TheFlash #teatime #fangirling https://t.co/C3c9NOrouI";FALSE;2;NA;2016-10-23 00:46:06;FALSE;NA;"789991250350968832";NA;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";"lifeofmimi_";0;FALSE;FALSE;NA;NA
"676";"#RoyaleGiveaways - #Win a #casaWare Serenity 7-Piece #Tea Pot Set $70 value #LaPrimaShops #Teatime Enter Daily https://t.co/i4Rzcwm3gB";FALSE;1;NA;2016-10-23 00:39:47;FALSE;NA;"789989661401714688";NA;"<a href=""http://twitter.com"" rel=""nofollow"">Twitter Web Client</a>";"vlvettegal";0;FALSE;FALSE;NA;NA
"677";"RT @cupandowl: Gorgeous #RoyalAlbert teacup&saucer #etsy #giftideas #gifts #teaparty #teatime #vintage #etsyshop #temptteam https://t.co/mw…";FALSE;0;NA;2016-10-23 00:26:51;FALSE;NA;"789986406814932992";NA;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";"shopWilewood";14;TRUE;FALSE;NA;NA
"678";"RT @cupandowl: Gorgeous #RoyalAlbert teacup&saucer #etsy #giftideas #gifts #teaparty #teatime #vintage #etsyshop #temptteam https://t.co/mw…";FALSE;0;NA;2016-10-23 00:24:54;FALSE;NA;"789985918203592704";NA;"<a href=""http://twitter.com/#!/download/ipad"" rel=""nofollow"">Twitter for iPad</a>";"lyndilane";14;TRUE;FALSE;NA;NA
"679";"@BaileeMadison #teatime #goodwitch You rock Bailee! https://t.co/3izGKOSh7P";FALSE;1;"BaileeMadison";2016-10-23 00:10:36;FALSE;NA;"789982319729778689";"94039455";"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";"JeannaCowgill";0;FALSE;FALSE;NA;NA
"680";"Our Champagne & Raspberry Tea is amazing! https://t.co/ZQH48L3HZ2 #tea #champagne #energy #caffeine #raspberry… https://t.co/qSuDJETYXO";FALSE;1;NA;2016-10-22 23:51:42;TRUE;NA;"789977559941451776";NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";"worldofteas_";0;FALSE;FALSE;NA;NA
"681";"#teatime Autumn tea party with my sister and niece. #teaparty #usethegoodstuff #fall #autumn https://t.co/eCeKccHdX1";FALSE;2;NA;2016-10-22 23:48:56;FALSE;NA;"789976865951903744";NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";"VChetcuti";0;FALSE;FALSE;NA;NA
"682";"""You can never get a cup of tea large enough or a book long enough to suit me."" ~ C.S. Lewis #Tea #TeaTime #MeTime… https://t.co/l8zUESNtsm";FALSE;2;NA;2016-10-22 23:45:16;TRUE;NA;"789975944853393412";NA;"<a href=""http://www.hootsuite.com"" rel=""nofollow"">Hootsuite</a>";"AlpValCoffee";0;FALSE;FALSE;NA;NA
"683";"#Vintageteapot, #coffeepot, Certified International #TeaPot #teatime by KyriesTreasureChest https://t.co/8PEhCTRrrs via @Etsy";FALSE;0;NA;2016-10-22 23:44:10;FALSE;NA;"789975664568840192";NA;"<a href=""http://twitter.com"" rel=""nofollow"">Twitter Web Client</a>";"jndahl";0;FALSE;FALSE;NA;NA
"684";"Get a free $5 Gift Card at https://t.co/Mm0vNPjbg3 for all your #tea needs! #subscriptionaddict #SubscriptionBoxes… https://t.co/XUcBlo686n";FALSE;0;NA;2016-10-22 23:29:33;TRUE;NA;"789971986311110656";NA;"<a href=""http://twitter.com"" rel=""nofollow"">Twitter Web Client</a>";"DustinKaban";0;FALSE;FALSE;NA;NA
"685";"RT @QueenOfChibiArt: Warm welcome to @Siefe! From my Kingdom and beautiful tea cups, to your community! See you on #TeaTime!";FALSE;0;NA;2016-10-22 23:22:33;FALSE;NA;"789970224111955969";NA;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";"ANIM4L8U";4;TRUE;FALSE;NA;NA
"686";"@BaileeMadison I am always sure to drink my tea everyday! Especially while watching #goodwitch! #teatime";FALSE;0;"BaileeMadison";2016-10-22 23:22:08;FALSE;NA;"789970122144378880";"94039455";"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";"JeannaCowgill";0;FALSE;FALSE;NA;NA
"687";"RT @simplesubtletea: Tea everyday <ed><U+00A0><U+00BC><ed><U+00BC><U+009E><ed><U+00A0><U+00BC><ed><U+00BD><U+00B5>. <ed><U+00A0><U+00BD><ed><U+00B4><U+00B9>https://t.co/sJZNBdX76J
.
.
.
.
#cupoftea #teatime #teatraining #teaeduc… https://t.co/vdbslE8wuW ht…";FALSE;0;NA;2016-10-22 23:13:46;FALSE;NA;"789968014552686592";NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";"RenaAppletea";1;TRUE;FALSE;NA;NA
"688";"Could Go For A Cup Of Tea Right About Now? <ed><U+00A0><U+00BD><ed><U+00B2><U+0095>#tea #teaofthemonth #teatime #blacktea #greentea #tealover #teavana https://t.co/vEyv62LeE4";FALSE;3;NA;2016-10-22 23:10:47;FALSE;NA;"789967263554211845";NA;"<a href=""http://twitter.com"" rel=""nofollow"">Twitter Web Client</a>";"TeailyTea";1;FALSE;FALSE;NA;NA
"689";"Marrakesh Hua Hin Resort #perfectplaces #places #instaplaces #morrocco #marrakesh #teatime https://t.co/ARcVE66sO1";FALSE;0;NA;2016-10-22 23:05:21;FALSE;NA;"789965896752041984";NA;"<a href=""http://www.facebook.com/twitter"" rel=""nofollow"">Facebook</a>";"lau__costa";0;FALSE;FALSE;NA;NA
"690";"This is what I need to do today! #teaplease #teatime<U+2615><U+FE0F> #lovesteepedtea #weekendvibes #steepedtea https://t.co/Zg0U3fnZRk";FALSE;0;NA;2016-10-22 23:03:57;FALSE;NA;"789965545848369152";NA;"<a href=""http://instagram.com"" rel=""nofollow"">Instagram</a>";"sdubreuilkarpa";0;FALSE;FALSE;NA;NA
"691";"The clock has struck Four - and everything stops for tea! What's in your cup? #TeaTime #4pm #JollyGood #Evil";FALSE;2;NA;2016-10-22 23:00:04;FALSE;NA;"789964567627563008";NA;"<a href=""http://ifttt.com"" rel=""nofollow"">IFTTT</a>";"FlamingMonocle";0;FALSE;FALSE;NA;NA
"692";"It's the most wonderful time, #TEATIME! #teacups #catholictwitter https://t.co/9HlZkklcQK";FALSE;6;NA;2016-10-22 22:57:43;FALSE;NA;"789963976540991488";NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";"RosalieContrite";0;FALSE;FALSE;NA;NA
"693";"It's #teatime! Soukenbicha ice tea + banana muffin.";FALSE;0;NA;2016-10-22 22:42:41;FALSE;NA;"789960191521398784";NA;"<a href=""http://twipple.jp/"" rel=""nofollow""><U+3064><U+3044><U+3063><U+3077><U+308B> for Android</a>";"panapp";0;FALSE;FALSE;NA;NA
"694";"<ed><U+00A0><U+00BC><ed><U+00BD><U+0081><ed><U+00A0><U+00BC><ed><U+00BD><U+0082><ed><U+00A0><U+00BC><ed><U+00BD><U+0081>Time for warm spicy tea! #herbandteainfusion #autumnintheair #fireside #cozynights #teatime https://t.co/GGDDMIDkeB";FALSE;0;NA;2016-10-22 22:39:41;FALSE;NA;"789959440019644417";NA;"<a href=""http://instagram.com"" rel=""nofollow"">Instagram</a>";"traceyadelej";0;FALSE;FALSE;NA;NA
"695";"What I drink with lunch #Indian #spiced #tea #hottea #teatime @ PIND Indian Cuisine - One Loudoun https://t.co/QU4Yx1s8m5";FALSE;0;NA;2016-10-22 22:39:10;FALSE;NA;"789959310155608064";NA;"<a href=""http://instagram.com"" rel=""nofollow"">Instagram</a>";"CherryAdj";0;FALSE;FALSE;"-77.4546356";"39.0526466"
"696";"#ChristmasTree #TeapotSet / Creamer and Sugar #christmasteapot #teatime #teasetting https://t.co/8IZrG7O0zu #etsy… https://t.co/d6d2x1lhLy";FALSE;0;NA;2016-10-22 22:20:06;TRUE;NA;"789954508558303232";NA;"<a href=""https://www.socialjukebox.com"" rel=""nofollow"">The Social Jukebox</a>";"fieldsofvintage";0;FALSE;FALSE;NA;NA
"697";"RT @StarNoctis: I really don't like to have fever+stay in bed most of the day..<ed><U+00A0><U+00BD><ed><U+00B8><U+00B7><ed><U+00A0><U+00BD><ed><U+00B9><U+0080>
#TeaTime <ed><U+00A0><U+00BC><ed><U+00BD><U+00B5>
#WannaGetAway";FALSE;0;NA;2016-10-22 22:11:35;FALSE;NA;"789952368615972864";NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";"bsutter";1;TRUE;FALSE;NA;NA
"698";"Teapet #halloween style! <ed><U+00A0><U+00BC><ed><U+00BD><U+00AD><ed><U+00A0><U+00BD><ed><U+00B1><U+00BB><ed><U+00A0><U+00BC><ed><U+00BD><U+00AC> #teatimeforpets #dogsoftwitter #CatsOfTwitter #dog #cat #pets #Caturday #teatime… https://t.co/BYgmkMKjtp";FALSE;6;NA;2016-10-22 22:05:23;TRUE;NA;"789950806808227841";NA;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";"teapet_salon";1;FALSE;FALSE;NA;NA
"699";"Fancy a cuppa?
#cuppa #tea #teatime #handmade #homedecor #hare
https://t.co/4heLdx6YiY https://t.co/wRQmjFM0By";FALSE;1;NA;2016-10-22 22:04:29;FALSE;NA;"789950578029916160";NA;"<a href=""http://twitter.com/#!/download/ipad"" rel=""nofollow"">Twitter for iPad</a>";"poodyandberty";2;FALSE;FALSE;NA;NA
"700";"Tea. Just for me.
#teatime #<U+2615><U+FE0F> https://t.co/ozLAsg3n7P";FALSE;0;NA;2016-10-22 22:02:08;FALSE;NA;"789949987056709632";NA;"<a href=""http://instagram.com"" rel=""nofollow"">Instagram</a>";"LeeAnn915";0;FALSE;FALSE;NA;NA
"701";"""socialise with compassion, kindness and grace.""
#socialise #yogitea #teatime… https://t.co/zPeIsQZFHy";FALSE;1;NA;2016-10-22 21:58:17;FALSE;NA;"789949019271204864";NA;"<a href=""http://instagram.com"" rel=""nofollow"">Instagram</a>";"RitaCovre";0;FALSE;FALSE;NA;NA
"702";"Individual lids for individual taste! Variety packs, anyone?!?! #crafttea #teatime #ftw https://t.co/re9FlmWidQ";FALSE;3;NA;2016-10-22 21:48:32;FALSE;NA;"789946565167345664";NA;"<a href=""http://instagram.com"" rel=""nofollow"">Instagram</a>";"truehoneyteas";0;FALSE;FALSE;NA;NA
"703";"RT @QueenOfChibiArt: Warm welcome to @Siefe! From my Kingdom and beautiful tea cups, to your community! See you on #TeaTime!";FALSE;0;NA;2016-10-22 21:47:11;FALSE;NA;"789946224824709121";NA;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";"sauceda_rm";4;TRUE;FALSE;NA;NA
"704";"RT @QueenOfChibiArt: Warm welcome to @Siefe! From my Kingdom and beautiful tea cups, to your community! See you on #TeaTime!";FALSE;0;NA;2016-10-22 21:46:48;FALSE;NA;"789946128259280896";NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";"EvilMindedGirl";4;TRUE;FALSE;NA;NA
"705";"Infinite teatime <ed><U+00A0><U+00BC><ed><U+00BE><U+00A9><ed><U+00A0><U+00BD><ed><U+00B0><U+0098> #dumbosmovingup #tea #teatime #white #elephant @ Thai Boo Cuisine , Norwood https://t.co/QXcQsWpjxR";FALSE;1;NA;2016-10-22 21:35:33;FALSE;NA;"789943299414994944";NA;"<a href=""http://instagram.com"" rel=""nofollow"">Instagram</a>";"CPetrouski";0;FALSE;FALSE;"-71.20195698";"42.19220234"
"706";"amazing brunch this morning with #family and #friends <ed><U+00A0><U+00BD><ed><U+00B8><U+0098>#brunch #breakfast #lunch #teatime… https://t.co/E6CBbojrWg";FALSE;0;NA;2016-10-22 21:28:27;FALSE;NA;"789941513723805696";NA;"<a href=""http://instagram.com"" rel=""nofollow"">Instagram</a>";"LifeMadeYummy";0;FALSE;FALSE;"-73.57702";"45.527"
"707";"RT @QueenOfChibiArt: Warm welcome to @Siefe! From my Kingdom and beautiful tea cups, to your community! See you on #TeaTime!";FALSE;0;NA;2016-10-22 21:27:50;FALSE;NA;"789941355539824640";NA;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";"radiooptimism";4;TRUE;FALSE;NA;NA
"708";"Warm welcome to @Siefe! From my Kingdom and beautiful tea cups, to your community! See you on #TeaTime!";FALSE;14;NA;2016-10-22 21:27:10;FALSE;NA;"789941190162542593";NA;"<a href=""https://mobile.twitter.com"" rel=""nofollow"">Mobile Web (M5)</a>";"QueenOfChibiArt";4;FALSE;FALSE;NA;NA
"709";"15%OFF+Free Shipping https://t.co/Rm9eCfHIJS #tapestries #pillows #mugs #laptopsleeves #blankets #homedecor… https://t.co/POgpuFVHRZ";FALSE;0;NA;2016-10-22 21:22:14;TRUE;NA;"789939946719154178";NA;"<a href=""http://twitter.com"" rel=""nofollow"">Twitter Web Client</a>";"SILVACAPITANA";0;FALSE;FALSE;NA;NA
"710";"I really don't like to have fever+stay in bed most of the day..<ed><U+00A0><U+00BD><ed><U+00B8><U+00B7><ed><U+00A0><U+00BD><ed><U+00B9><U+0080>
#TeaTime <ed><U+00A0><U+00BC><ed><U+00BD><U+00B5>
#WannaGetAway";FALSE;2;NA;2016-10-22 21:14:28;FALSE;NA;"789937993750548480";NA;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";"StarNoctis";1;FALSE;FALSE;NA;NA
"711";"Grab a hot cup of #tazo tea today from the cafe! Tea is perfect for warming up on a cold fall day! #fallweather #teatime";FALSE;0;NA;2016-10-22 21:00:17;FALSE;NA;"789934421533073409";NA;"<a href=""http://twuffer.com"" rel=""nofollow"">Twuffer</a>";"VUDining";0;FALSE;FALSE;NA;NA
"712";"Soothing Rose Hibiscus Skin Detox from Yogi Tea... https://t.co/guDCGXBBP3 #tea #teatime https://t.co/m4HQnIgBHE";FALSE;0;NA;2016-10-22 20:35:06;FALSE;NA;"789928087207104512";NA;"<a href=""http://aa.com"" rel=""nofollow"">pptweet123</a>";"hanmeimei1955";1;FALSE;FALSE;NA;NA
"713";"Tea-Time!! <ed><U+00A0><U+00BD><ed><U+00B8><U+0088>
#cute #emo #boy #emoboy #love #hot #hotboy #girl #emogirl #cosplay #naruto #emohair #kawaii #<U+304B><U+308F><U+3044><U+3044>… https://t.co/w3hqa991iI";FALSE;3;NA;2016-10-22 20:32:02;TRUE;NA;"789927315404980224";NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";"Monkey_YuffYuff";0;FALSE;FALSE;NA;NA
"714";"A proper pot of Earl Grey #Selfridges #earliest #Teatime #Dollys https://t.co/YceM571QcS";FALSE;0;NA;2016-10-22 20:09:09;FALSE;NA;"789921556894015488";NA;"<a href=""http://instagram.com"" rel=""nofollow"">Instagram</a>";"SecretPSGoddess";0;FALSE;FALSE;NA;NA
"715";"RT @cupandowl: Lovely dark brown and white teacup&saucer #etsyteamunity #vintage #gotvintage #teaparty #teatime #gifts https://t.co/NMJJWEt…";FALSE;0;NA;2016-10-22 20:03:58;FALSE;NA;"789920249969684480";NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";"nerakmugnet";2;TRUE;FALSE;NA;NA
"716";"RT @laurieshan: #CHILDHOOD art Print #Princess,#teatime #Beach #Kitty #Dolls #pretendplay #LaurieShanholtzer https://t.co/HeAU43x6dy https:…";FALSE;0;NA;2016-10-22 20:02:05;FALSE;NA;"789919777263276032";NA;"<a href=""http://twitter.com"" rel=""nofollow"">Twitter Web Client</a>";"gravityx9";41;TRUE;FALSE;NA;NA
"717";"Amazing blend! Mahamosa Almond Fruit Delight #Tea 2 oz https://t.co/karrUYMguS #vegan #vegetarian #teas #foodporn #foodie #teatime #cook";FALSE;1;NA;2016-10-22 20:00:04;FALSE;NA;"789919270905999363";NA;"<a href=""https://about.twitter.com/products/tweetdeck"" rel=""nofollow"">TweetDeck</a>";"AskTheTeatender";0;FALSE;FALSE;NA;NA
"718";"#Teatime! Beth Nielsen was treated to these #delicious #goodies when she visited @ChefScottGreen at @LanghamChicago. https://t.co/0iyh2fvJRk";FALSE;6;NA;2016-10-22 20:00:02;FALSE;NA;"789919263121211393";NA;"<a href=""https://about.twitter.com/products/tweetdeck"" rel=""nofollow"">TweetDeck</a>";"NielsenMassey";0;FALSE;FALSE;NA;NA
"719";"Soothing #Oolong #Tea! Mahamosa Ginger Orange Green Oolong Tea 2 oz https://t.co/xpMyCJgyN4 #gingertea #oolongtea #greentea #teas #teatime";FALSE;2;NA;2016-10-22 19:59:31;FALSE;NA;"789919132284248064";NA;"<a href=""https://about.twitter.com/products/tweetdeck"" rel=""nofollow"">TweetDeck</a>";"AskTheTeatender";0;FALSE;FALSE;NA;NA
"720";"Astrid https://t.co/z9zT0nLHP2 ok #followforlike #chilegramers #isis #eating #teatime #wrestler";FALSE;2;NA;2016-10-22 19:58:06;FALSE;NA;"789918776242372608";NA;"<a href=""http://manage.megapo.st/"" rel=""nofollow"">MEGAPO.ST</a>";"uvasilevakon";0;FALSE;FALSE;NA;NA
"721";"Delicious sweet treat for our guest #ritzcarltoncancun #clublounge #teatime @ The Ritz-Carlton,… https://t.co/f5jmAhqvC3";FALSE;1;NA;2016-10-22 19:57:44;FALSE;NA;"789918682851971073";NA;"<a href=""http://instagram.com"" rel=""nofollow"">Instagram</a>";"andreas5374";0;FALSE;FALSE;"-86.76800397";"21.09318833"
"722";"Always fresh, always! Stay fresh y'all
.
.
.
.
.
#teatime #stayfresh #chicago #iwannagohome… https://t.co/V9k2yAUDIW";FALSE;1;NA;2016-10-22 19:53:20;FALSE;NA;"789917576826654726";NA;"<a href=""http://instagram.com"" rel=""nofollow"">Instagram</a>";"markmywordss";0;FALSE;FALSE;NA;NA
"723";"Time for tea :) #teatime #nutellaandtoast https://t.co/fTuz6Hv14y";FALSE;0;NA;2016-10-22 19:49:20;FALSE;NA;"789916567077126144";NA;"<a href=""http://instagram.com"" rel=""nofollow"">Instagram</a>";"MFischerWriter";0;FALSE;FALSE;NA;NA
"724";"Well, let's put on the kettle then. #Titanic lifeboat biscuit sells for L15,000 at auction #teatime https://t.co/R7O14eDkbO";FALSE;0;NA;2016-10-22 19:42:42;FALSE;NA;"789914897903677440";NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";"woutwoutwout";0;FALSE;FALSE;NA;NA
"725";"RT @HealthyUNow: Ever get stumped at what kind of tea to order? This should help. #TeaTime #Nutrition https://t.co/cHXcKaOfOQ";FALSE;0;NA;2016-10-22 19:30:07;FALSE;NA;"789911734286970880";NA;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";"FREE2BV";4;TRUE;FALSE;NA;NA
"726";"RT @AskTheTeatender: Delicious #Rooibos! Mahamosa Blueberry Yogurt Tea 2 oz Herbal Loose Leaf #Tea Blend https://t.co/1wwSQvSLTj #teatime #…";FALSE;0;NA;2016-10-22 19:14:28;FALSE;NA;"789907795185369088";NA;"<a href=""http://twitter.com"" rel=""nofollow"">Twitter Web Client</a>";"EarlGreyTeaCat";1;TRUE;FALSE;NA;NA
"727";"RT @AskTheTeatender: ""Heavenly!""-Mahamosa Lemon Chamomile Tea 2 oz #herbaltea https://t.co/dHBTsZ9kH6 #lemontea #teas #teatime #tealovers #…";FALSE;0;NA;2016-10-22 19:14:23;FALSE;NA;"789907772980752386";NA;"<a href=""http://twitter.com"" rel=""nofollow"">Twitter Web Client</a>";"EarlGreyTeaCat";2;TRUE;FALSE;NA;NA
"728";"Could Go For A Cup Of Tea Right About Now? <ed><U+00A0><U+00BD><ed><U+00B2><U+0095>#tea #teaofthemonth #teatime #blacktea #greentea #tealover #teavana https://t.co/15FyuoROrY";FALSE;3;NA;2016-10-22 19:12:48;FALSE;NA;"789907373133561857";NA;"<a href=""http://twitter.com"" rel=""nofollow"">Twitter Web Client</a>";"TeailyTea";2;FALSE;FALSE;NA;NA
"729";"RT @laurieshan: #CHILDHOOD art Print #Princess,#teatime #Beach #Kitty #Dolls #pretendplay #LaurieShanholtzer https://t.co/HeAU43x6dy https:…";FALSE;0;NA;2016-10-22 19:05:45;FALSE;NA;"789905601514074112";NA;"<a href=""http://twitter.com"" rel=""nofollow"">Twitter Web Client</a>";"NeatNicheinWood";41;TRUE;FALSE;NA;NA
"730";"Secret Garden from Pinch of Geek... https://t.co/sv1B5TmDCM #tea #teatime https://t.co/zgaWhVC3Ok";FALSE;0;NA;2016-10-22 19:05:06;FALSE;NA;"789905437193756672";NA;"<a href=""http://aa.com"" rel=""nofollow"">pptweet123</a>";"hanmeimei1955";0;FALSE;FALSE;NA;NA
"731";"Pinkies up! @thegettyvilla has Tea Time every Thursday & Saturday at 1 PM! <U+2615><U+FE0F> #TeaByTheSea #TeaTime #LA https://t.co/YE7ja94aOY";FALSE;1;NA;2016-10-22 19:01:39;FALSE;NA;"789904566837977088";NA;"<a href=""http://www.hootsuite.com"" rel=""nofollow"">Hootsuite</a>";"theLAsocialites";0;FALSE;FALSE;NA;NA
"732";"Tea for two? #petiteamelie #teatime #teas #healthylife #nola #frenchquarter https://t.co/4TebBSpnne";FALSE;4;NA;2016-10-22 18:56:15;FALSE;NA;"789903207858405380";NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";"PetiteAmelieNO";0;FALSE;FALSE;NA;NA
"733";"@SandyBoynton We have the same mug! #DesertRose #MomGrandmotherGreatAuntDidToo! #TeaTime https://t.co/5VZwLy4Jvn";FALSE;1;"SandyBoynton";2016-10-22 18:54:06;FALSE;"789895082644238336";"789902667254472705";"437176698";"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";"beansmcd";0;FALSE;FALSE;NA;NA
"734";"It's #teatime in the House of Hall";FALSE;0;NA;2016-10-22 18:46:39;FALSE;NA;"789900795382607872";NA;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";"CNICROUTE";0;FALSE;FALSE;NA;NA
"735";"#RoyaleGiveaways - #Win a #casaWare Serenity 7-Piece #Tea Pot Set $70 value #LaPrimaShops #Teatime Enter Daily https://t.co/JvLtrafxJc";FALSE;0;NA;2016-10-22 18:40:56;FALSE;NA;"789899353464922116";NA;"<a href=""http://twitter.com"" rel=""nofollow"">Twitter Web Client</a>";"kollectible";0;FALSE;FALSE;NA;NA
"736";"Lymphatic Cleanse Brew.
#teatime #cleanse #detox #herbalmedicine https://t.co/u6Cnpb5Eeu";FALSE;0;NA;2016-10-22 18:40:51;FALSE;NA;"789899332124151808";NA;"<a href=""http://instagram.com"" rel=""nofollow"">Instagram</a>";"_Simply_Megan_";0;FALSE;FALSE;NA;NA
"737";"Count us in! #tea #teaaddict #afternoontea #teatime #greentea #matcha #relaxing #refreshing #caffeine #organic… https://t.co/89FbcguOmv";FALSE;1;NA;2016-10-22 18:21:57;TRUE;NA;"789894576135892992";NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";"worldofteas_";0;FALSE;FALSE;NA;NA
"738";"@bigelowtea Cheers my dears! #TeaTime https://t.co/1Prgi0QwGr";FALSE;1;"bigelowtea";2016-10-22 18:21:47;FALSE;"789889072974077954";"789894536268947457";"16119115";"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";"ReadyOwl";0;FALSE;FALSE;NA;NA
"739";"RT @WaheedkiWeed: #chaiwala #teatime #friday night #bff #chilling #lastday #collectingmemories @ Chai Wala https://t.co/ThNB3q4576";FALSE;0;NA;2016-10-22 18:17:47;FALSE;NA;"789893528524578817";NA;"<a href=""http://twitter.com"" rel=""nofollow"">Twitter Web Client</a>";"muhammadasadman";1;TRUE;FALSE;NA;NA
"740";"Me, art & tea #happymorning #parenting #shortstories #teatime #Seattle #tea #illustrations… https://t.co/fXFpI0x0pb";FALSE;0;NA;2016-10-22 18:03:34;FALSE;NA;"789889950531452928";NA;"<a href=""http://instagram.com"" rel=""nofollow"">Instagram</a>";"j_olivee";0;FALSE;FALSE;NA;NA
"741";"Savor your favorite cup of tea over the weekend with our delectable Rosemary-Parmesan Scones.… https://t.co/CBYOLDPA3M";FALSE;7;NA;2016-10-22 18:00:50;TRUE;NA;"789889261428498433";NA;"<a href=""http://bufferapp.com"" rel=""nofollow"">Buffer</a>";"TeaTimeMag";2;FALSE;FALSE;NA;NA
"742";"Come on in everybody!Bottomless Iced Tea for all of our Twitter friends today! #DrinkTea #IcedTea #ColdWeather… https://t.co/PXinpG3PKo";FALSE;0;NA;2016-10-22 18:00:07;TRUE;NA;"789889084886048768";NA;"<a href=""https://www.later.com"" rel=""nofollow"">LaterMedia</a>";"BettinasTea";0;FALSE;FALSE;NA;NA
"743";"A quick spot of tea... @TitosMarcus #teatime @ Shangri-La (Toronto) https://t.co/z9TxOcNLzG";FALSE;0;NA;2016-10-22 17:40:14;FALSE;NA;"789884079592407040";NA;"<a href=""http://instagram.com"" rel=""nofollow"">Instagram</a>";"iamsimonhooper";0;FALSE;FALSE;"-79.3865";"43.6497"
"744";"Festive Coffee Fushion from Stylin’ Tea Blends... https://t.co/HuU0TdReYz #tea #teatime https://t.co/LbpBGUGgZc";FALSE;1;NA;2016-10-22 17:35:06;FALSE;NA;"789882788719661056";NA;"<a href=""http://aa.com"" rel=""nofollow"">pptweet123</a>";"hanmeimei1955";0;FALSE;FALSE;NA;NA
"745";"RT @TaffertyDesigns: Treat your teapot to a beautiful #teacosy & it'll treat you to hot #tea ! #atsocialmediart #uksopro #teatime #etsyRT h…";FALSE;0;NA;2016-10-22 17:29:00;FALSE;NA;"789881251079553024";NA;"<a href=""http://twitter.com"" rel=""nofollow"">Twitter Web Client</a>";"UKHashtags";5;TRUE;FALSE;NA;NA
"746";"RT @laurieshan: #CHILDHOOD art Print #Princess,#teatime #Beach #Kitty #Dolls #pretendplay #LaurieShanholtzer https://t.co/HeAU43x6dy https:…";FALSE;0;NA;2016-10-22 17:21:23;FALSE;NA;"789879337428234240";NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";"TheNLVampire";41;TRUE;FALSE;NA;NA
"747";"#ChristmasTree #TeapotSet / Creamer and Sugar #christmasteapot #teatime #teasetting https://t.co/8IZrG7O0zu #etsy… https://t.co/wKpQGujbKZ";FALSE;0;NA;2016-10-22 17:20:06;TRUE;NA;"789879014353764352";NA;"<a href=""https://www.socialjukebox.com"" rel=""nofollow"">The Social Jukebox</a>";"fieldsofvintage";0;FALSE;FALSE;NA;NA
"748";"Love watching my children #drinktea & do #homework. #relaxing #teatime #chocolatemint #rooibos #tea #natural… https://t.co/oyeAqw3Onc";FALSE;0;NA;2016-10-22 17:19:52;TRUE;NA;"789878953422884865";NA;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";"VuliesTea";0;FALSE;FALSE;NA;NA
"749";"Enjoy time with good friends ! #friend #teatime #bestfriend… https://t.co/uvDJW0fi5D";FALSE;0;NA;2016-10-22 17:15:10;FALSE;NA;"789877772873334784";NA;"<a href=""http://instagram.com"" rel=""nofollow"">Instagram</a>";"MarinaRcoimbra";0;FALSE;FALSE;"1.28168639";"45.8943988"
"750";"Back in stock: the 'Marigold Garden' #tea cosy. Only 1 in stock. Medium size. #tweeturbiz #teatime #afternoontea https://t.co/xCUqvkZ8Ec";FALSE;2;NA;2016-10-22 17:08:26;FALSE;NA;"789876077707587584";NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";"TaffertyDesigns";1;FALSE;FALSE;NA;NA
"751";"Festive Coffee Fushion from Stylin’ Tea Blends... https://t.co/hJZJfIMIL5 #tea #teatime https://t.co/urCRZknkGk";FALSE;0;NA;2016-10-22 17:05:11;FALSE;NA;"789875258824073216";NA;"<a href=""http://aa.com"" rel=""nofollow"">pptweet123</a>";"hanmeimei1955";0;FALSE;FALSE;NA;NA
"752";"RT @HerbalAcademyNE: 4 Herbal Teas for Autumn and Winter - Natural Health - MOTHER EARTH NEWS https://t.co/BGlVtYBWTA #teatime #herbalism";FALSE;0;NA;2016-10-22 17:04:17;FALSE;NA;"789875032986099712";NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";"Secretgardenslo";4;TRUE;FALSE;NA;NA
"753";"Poodle teapot #saturdayfeasting #teatime #boeresjiek #capetown @… https://t.co/3a68SfD2ly";FALSE;0;NA;2016-10-22 17:03:07;FALSE;NA;"789874737933606913";NA;"<a href=""http://instagram.com"" rel=""nofollow"">Instagram</a>";"Hugosquare";0;FALSE;FALSE;"18.69748";"-33.86004"
"754";"RT @cupandowl: Gorgeous #RoyalAlbert teacup&saucer #etsy #giftideas #gifts #teaparty #teatime #vintage #etsyshop #temptteam https://t.co/mw…";FALSE;0;NA;2016-10-22 17:02:30;FALSE;NA;"789874584967221248";NA;"<a href=""http://twitter.com"" rel=""nofollow"">Twitter Web Client</a>";"LornajaneCosign";14;TRUE;FALSE;NA;NA
"755";"There is nothing like a good #ChaiLatte to warm up the soul in the colder months <U+2615><ed><U+00A0><U+00BD><ed><U+00B2><U+0095>
#DrinkTea #TeaTime #ColdMonths… https://t.co/QtViO4lMyL";FALSE;2;NA;2016-10-22 16:55:15;TRUE;NA;"789872759723687936";NA;"<a href=""https://www.later.com"" rel=""nofollow"">LaterMedia</a>";"BettinasTea";0;FALSE;FALSE;NA;NA
"756";"Being English #Teatime
#KensingtonPalace #London #Britain #weekend https://t.co/W2jsYH9Mi2";FALSE;2;NA;2016-10-22 16:54:07;FALSE;NA;"789872475601526785";NA;"<a href=""http://www.tweetcaster.com"" rel=""nofollow"">TweetCaster for Android</a>";"pienipusu";0;FALSE;FALSE;NA;NA
"757";"Cold London runs followed up by green tea <ed><U+00A0><U+00BC><ed><U+00BD><U+0083> #kenbek #london #teatime @ West london https://t.co/PAsF5AN4YH";FALSE;3;NA;2016-10-22 16:49:32;FALSE;NA;"789871321618448386";NA;"<a href=""http://instagram.com"" rel=""nofollow"">Instagram</a>";"KennethBek";0;FALSE;FALSE;"-0.22413289";"51.48972051"
"758";"RT @HealthyUNow: Ever get stumped at what kind of tea to order? This should help. #TeaTime #Nutrition https://t.co/cHXcKaOfOQ";FALSE;0;NA;2016-10-22 16:45:39;FALSE;NA;"789870340964962305";NA;"<a href=""http://clarestrand.co.uk"" rel=""nofollow"">Stump Bot</a>";"stump_bot";4;TRUE;FALSE;NA;NA
"759";"Ever get stumped at what kind of tea to order? This should help. #TeaTime #Nutrition https://t.co/cHXcKaOfOQ";FALSE;2;NA;2016-10-22 16:45:11;FALSE;NA;"789870225311330304";NA;"<a href=""http://www.hootsuite.com"" rel=""nofollow"">Hootsuite</a>";"HealthyUNow";4;FALSE;FALSE;NA;NA
"760";"Lemon Drizzle cake for this afternoons guests!<ed><U+00A0><U+00BC><ed><U+00BD><U+008B> #teatime #cake #lemondrizzle #bedandbreakfast #thursford https://t.co/RyZP1mwViS";FALSE;0;NA;2016-10-22 16:32:11;FALSE;NA;"789866955016634373";NA;"<a href=""http://twitter.com/#!/download/ipad"" rel=""nofollow"">Twitter for iPad</a>";"GreenFarmBarns";0;FALSE;FALSE;NA;NA
"761";"RT @TaffertyDesigns: Treat your teapot to a beautiful #teacosy & it'll treat you to hot #tea ! #atsocialmediart #uksopro #teatime #etsyRT h…";FALSE;0;NA;2016-10-22 16:21:09;FALSE;NA;"789864178114846720";NA;"<a href=""http://twitter.com"" rel=""nofollow"">Twitter Web Client</a>";"UKSmallBizRT";5;TRUE;FALSE;NA;NA
"762";"Hey @DunkinDonuts why does your tea game have to be so weak!?! #TeaTime";FALSE;3;NA;2016-10-22 16:05:18;FALSE;NA;"789860188790648832";NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";"VampBunny";0;FALSE;FALSE;NA;NA
"763";"Brew time with a newly found @CadburyUK Dairy Milk Mint Crisp. Aero meets crunchy #teatime <U+2615><U+FE0F> https://t.co/NzR4VP6cFU";FALSE;1;NA;2016-10-22 15:51:27;FALSE;NA;"789856704565477376";NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";"Ilovecakeandtea";0;FALSE;FALSE;NA;NA
"764";"Lost ALL of my voice <ed><U+00A0><U+00BD><ed><U+00B8><U+0092><ed><U+00A0><U+00BD><ed><U+00B9><U+0084><ed><U+00A0><U+00BD><ed><U+00B8><U+0091> #teatime";FALSE;0;NA;2016-10-22 15:35:41;FALSE;NA;"789852737001230336";NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";"neilcurtis16";0;FALSE;FALSE;NA;NA
"765";"Enjoy #teatime in style. Dress your teapot in one of my #handmade #tea cosies. @UKBusinessRT #taffertydesigns #etsy https://t.co/xpmLexyx8w";FALSE;1;NA;2016-10-22 15:26:48;FALSE;NA;"789850501580029960";NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";"TaffertyDesigns";0;FALSE;FALSE;NA;NA
"766";"Treat your teapot to a beautiful #teacosy & it'll treat you to hot #tea ! #atsocialmediart #uksopro #teatime #etsyRT https://t.co/3M0mcX3cwS";FALSE;3;NA;2016-10-22 15:23:37;FALSE;NA;"789849698945363968";NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";"TaffertyDesigns";5;FALSE;FALSE;NA;NA
"767";"""Nanna's Tea"" by Cailin Green #art #collage #mixedmedia #art #fineart #tea #teacup #teatime #mixedmediaart… https://t.co/EJ0KsZZ3ix";FALSE;0;NA;2016-10-22 15:00:04;TRUE;NA;"789843770523152384";NA;"<a href=""https://about.twitter.com/products/tweetdeck"" rel=""nofollow"">TweetDeck</a>";"ArtZoneGallery";0;FALSE;FALSE;NA;NA
"768";"Upstairs as bought a whistle kettle, yes the walls/floors are that thin. Is going to be a long winter #WhistleForTea #Neighbours #teatime?";FALSE;0;NA;2016-10-22 14:59:36;FALSE;NA;"789843654097694720";NA;"<a href=""http://twitter.com"" rel=""nofollow"">Twitter Web Client</a>";"GeekyGiza";0;FALSE;FALSE;NA;NA
"769";"#teatime with #rollsnote