-
Notifications
You must be signed in to change notification settings - Fork 0
/
install.sql
executable file
·696 lines (684 loc) · 77.7 KB
/
install.sql
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
CREATE DATABASE IF NOT EXISTS happytweet
CHARACTER SET utf8 collate utf8_turkish_ci;
USE happytweet;
CREATE TABLE IF NOT EXISTS Users(
UserID bigint NOT NULL PRIMARY KEY,
AuthToken varchar(255) NOT NULL,
AuthSecret varchar(255) NOT NULL,
ScreenName varchar(255) NOT NULL,
WeeklyPoint int DEFAULT 0 NOT NULL,
TotalPoint int DEFAULT 0 NOT NULL,
CreatedOn datetime NOT NULL,
LastSync datetime DEFAULT '0000-00-00' NOT NULL,
LastSyncID bigint DEFAULT 0 NOT NULL
)CHARACTER SET utf8 collate utf8_turkish_ci;
CREATE TABLE IF NOT EXISTS Tweets(
TweetID bigint NOT NULL PRIMARY KEY,
UserID bigint NOT NULL,
TweetText varchar(512) NOT NULL,
TweetTime datetime NOT NULL,
CreatedOn datetime NOT NULL,
TotalVote bigint DEFAULT 0 NOT NULL,
VoteCount int DEFAULT 0 NOT NULL,
InSets int DEFAULT 0 NOT NULL,
FOREIGN KEY (UserID)
REFERENCES Users(UserID)
ON UPDATE CASCADE
)CHARACTER SET utf16 collate utf16_turkish_ci;
CREATE TABLE IF NOT EXISTS Sets(
SetID bigint NOT NULL AUTO_INCREMENT PRIMARY KEY,
Tweet1 bigint NOT NULL,
Tweet2 bigint NOT NULL,
Tweet3 bigint NOT NULL,
Tweet4 bigint NOT NULL,
Tweet5 bigint NOT NULL,
Tweet6 bigint NOT NULL,
Tweet7 bigint NOT NULL,
Tweet8 bigint NOT NULL,
Tweet9 bigint NOT NULL,
Tweet10 bigint NOT NULL,
CreatedOn DATETIME NOT NULL,
FOREIGN KEY(Tweet1)
REFERENCES Tweets(TweetID)
ON UPDATE CASCADE,
FOREIGN KEY(Tweet2)
REFERENCES Tweets(TweetID)
ON UPDATE CASCADE,
FOREIGN KEY(Tweet3)
REFERENCES Tweets(TweetID)
ON UPDATE CASCADE,
FOREIGN KEY(Tweet4)
REFERENCES Tweets(TweetID)
ON UPDATE CASCADE,
FOREIGN KEY(Tweet5)
REFERENCES Tweets(TweetID)
ON UPDATE CASCADE,
FOREIGN KEY(Tweet6)
REFERENCES Tweets(TweetID)
ON UPDATE CASCADE,
FOREIGN KEY(Tweet7)
REFERENCES Tweets(TweetID)
ON UPDATE CASCADE,
FOREIGN KEY(Tweet8)
REFERENCES Tweets(TweetID)
ON UPDATE CASCADE,
FOREIGN KEY(Tweet9)
REFERENCES Tweets(TweetID)
ON UPDATE CASCADE,
FOREIGN KEY(Tweet10)
REFERENCES Tweets(TweetID)
ON UPDATE CASCADE
)CHARACTER SET utf8 collate utf8_turkish_ci;
CREATE TABLE IF NOT EXISTS Words(
WordID bigint NOT NULL AUTO_INCREMENT PRIMARY KEY ,
WordText varchar(255) NOT NULL,
Vote1Count tinyint DEFAULT 0 NOT NULL,
Vote2Count tinyint DEFAULT 0 NOT NULL,
Vote3Count tinyint DEFAULT 0 NOT NULL,
Vote4Count tinyint DEFAULT 0 NOT NULL,
Vote5Count tinyint DEFAULT 0 NOT NULL,
CreatedOn DATETIME NOT NULL,
LastVoteOn datetime default '0000-00-00' NOT NULL,
UNIQUE(WordText)
)CHARACTER SET utf8 collate utf8_turkish_ci;
CREATE TABLE IF NOT EXISTS Plays(
UserID bigint NOT NULL,
SetID bigint NOT NULL,
Vote1 tinyint DEFAULT -1 NOT NULL,
Vote2 tinyint DEFAULT -1 NOT NULL,
Vote3 tinyint DEFAULT -1 NOT NULL,
Vote4 tinyint DEFAULT -1 NOT NULL,
Vote5 tinyint DEFAULT -1 NOT NULL,
Vote6 tinyint DEFAULT -1 NOT NULL,
Vote7 tinyint DEFAULT -1 NOT NULL,
Vote8 tinyint DEFAULT -1 NOT NULL,
Vote9 tinyint DEFAULT -1 NOT NULL,
Vote10 tinyint DEFAULT -1 NOT NULL,
Word1 bigint DEFAULT 1 NOT NULL,
Word2 bigint DEFAULT 1 NOT NULL,
Word3 bigint DEFAULT 1 NOT NULL,
Word4 bigint DEFAULT 1 NOT NULL,
Word5 bigint DEFAULT 1 NOT NULL,
Word6 bigint DEFAULT 1 NOT NULL,
Word7 bigint DEFAULT 1 NOT NULL,
Word8 bigint DEFAULT 1 NOT NULL,
Word9 bigint DEFAULT 1 NOT NULL,
Word10 bigint DEFAULT 1 NOT NULL,
EndPoint int DEFAULT 0 NOT NULL,
BonusPoint int DEFAULT 0 NOT NULL,
MatchPoint int DEFAULT NULL,
MatchWith int DEFAULT 0 NOT NULL,
PlayedOn DateTime NOT NULL,
PRIMARY KEY(UserID,SetID),
FOREIGN KEY(UserID)
REFERENCES Users(UserID)
ON UPDATE CASCADE,
FOREIGN KEY(SetID)
REFERENCES Sets(SetID)
ON UPDATE CASCADE,
FOREIGN KEY(Word1)
REFERENCES Words(WordID)
ON UPDATE CASCADE,
FOREIGN KEY(Word2)
REFERENCES Words(WordID)
ON UPDATE CASCADE,
FOREIGN KEY(Word3)
REFERENCES Words(WordID)
ON UPDATE CASCADE,
FOREIGN KEY(Word4)
REFERENCES Words(WordID)
ON UPDATE CASCADE,
FOREIGN KEY(Word5)
REFERENCES Words(WordID)
ON UPDATE CASCADE,
FOREIGN KEY(Word6)
REFERENCES Words(WordID)
ON UPDATE CASCADE,
FOREIGN KEY(Word7)
REFERENCES Words(WordID)
ON UPDATE CASCADE,
FOREIGN KEY(Word8)
REFERENCES Words(WordID)
ON UPDATE CASCADE,
FOREIGN KEY(Word9)
REFERENCES Words(WordID)
ON UPDATE CASCADE,
FOREIGN KEY(Word10)
REFERENCES Words(WordID)
ON UPDATE CASCADE
)CHARACTER SET utf8 collate utf8_turkish_ci;
CREATE TABLE IF NOT EXISTS Followers(
FollowerID bigint NOT NULL,
FollowedID bigint NOT NULL,
FOREIGN KEY(FollowedID)
REFERENCES Users(UserID)
ON UPDATE CASCADE,
PRIMARY KEY(FollowerID,FollowedID)
)CHARACTER SET utf8 collate utf8_turkish_ci;
INSERT INTO Users VALUES (0,"NA","NA","NA",0,0,NOW(),'0000-00-00',0);
INSERT INTO Words VALUES (0,"NA",0,0,0,0,0,NOW(),NOW());
INSERT INTO Tweets VALUES (0,0,"NA",NOW(),NOW(),0,0);
INSERT INTO `Tweets` (`TweetID`, `UserID`, `TweetText`, `TweetTime`, `CreatedOn`) VALUES
(1, 0, 'test', '2014-12-03 19:43:56', '2014-12-03 19:43:56'),
(2, 0, 'Good job body clock 👍', '2014-12-03 19:45:22', '2014-12-03 19:45:22'),
(3, 0, '@someone don''t be sad reece , you guys are amazing no matter what people say or do 💗💗💗 i love you', '2014-12-03 19:45:22', '2014-12-03 19:45:22'),
(4, 0, 'Happy Bday Dave #DavidKnowsBest @someone Nordstrom Aventura Happy birthday shay!! Good night krne aya tha 1 hour almost gone', '2014-12-03 19:45:22', '2014-12-03 19:45:22'),
(5, 0, 'Happy birthday shay!! @someone I am a good boy', '2014-12-03 19:45:22', '2014-12-03 19:45:22'),
(6, 0, 'Happy Holidays! - One week away until the Holiday party - - Happy birthday shay!! Happy birthday shay!! I saw Gone Girl last night....😳. It was good, eventhough they kept some parts of the book out.', '2014-12-03 19:45:22', '2014-12-03 19:45:22'),
(7, 0, 'The fact that my roommate got Lu a birthday present makes me so happy❤️ thank you @someone 😊', '2014-12-03 19:45:22', '2014-12-03 19:45:22'),
(8, 0, 'Good job body clock 👍', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(9, 0, '@someone don''t be sad reece , you guys are amazing no matter what people say or do 💗💗💗 i love you', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(10, 0, 'Happy Bday Dave #DavidKnowsBest @someone Nordstrom Aventura Happy birthday shay!! Good night krne aya tha 1 hour almost gone', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(11, 0, 'Happy birthday shay!! @someone I am a good boy', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(12, 0, 'Happy Holidays! - One week away until the Holiday party - - Happy birthday shay!! Happy birthday shay!! I saw Gone Girl last night....😳. It was good, eventhough they kept some parts of the book out.', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(13, 0, 'The fact that my roommate got Lu a birthday present makes me so happy❤️ thank you @someone 😊', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(14, 0, 'This makes me happy 💖👑 Wishing a very happy birthday & also wedding anniversary to @someone Happy holidays to everyone in Maine and Wisconsin (go Badgers!) I still haven''t started my personal statement but im feeling so emotional rn so it might be a good time', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(15, 0, '@someone @someone This @someone was ex of London based Paki businessman Salman who had BAD relationship with SoniaG in 1965.', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(16, 0, 'Tummy hurting,running on little sleep, no good:/', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(17, 0, '@someone The only thing I''m consistently good at is being late ⏰ in my case is being late and tired. 😁', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(18, 0, 'FSU does have a good ass qb but I''m still a 🐊🐊', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(19, 0, 'Randy and the 52-lb. turkey. Took 12 hours to cook this bad boy. Amazing. @someone sad.... Just sad', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(20, 0, 'I ate so much of it bc I was so happy I threw up :/', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(21, 0, '@someone Happy birthday beautiful 💘 enjoy 😘 @someone thank you 💗💗💗', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(22, 0, '#Pisces can be evil, but will keep a straight face to a person they hate and remain as a good person while stabbing them in the back.', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(23, 0, '♫ Just Announced: Agoura Hills, CA - Dec 18 at The Canyon happy birthday pretty💓miss and love you so much @someone Thanks to @someone for sponsoring, had great afternoon, well deserved MOM to @someone have a good night @someone @someone Happy birthday shay!! @someone fantastic good times are back', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(24, 0, '@someone @someone @someone @someone @someone why we have to bring that nonsense over here from the U.S. good', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(25, 0, 'Bc I''m happy There''s no unselfish good deed.', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(26, 0, '@someone Good Morning pita ji', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(27, 0, 'So i see me a top notch guy bu not to good wat would you say if i felt i need to have more women on me', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(28, 0, '@someone it is my aunt painted it for me in 2005 and I would feel bad taking it down', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(29, 0, '#fxllowhelp_ChristmasGiveaway 🎄 I''ve been a ❌GOOD GIRL ❌I swear! ✌️ Can this be my Christmas present 🎁please santa🎅? 🎄 X586', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(30, 0, '@someone we arent a good team..thats why im not too torn up about it.', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(31, 0, 'Thesis looking a little slow, it''s either his big ass pants or he had a good thanksgiving #bcone', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(32, 0, '@someone well good ☺️', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(33, 0, 'good game for state 💯💪🐺 maybe next year unc.. #GoPack #WolfpackNation #STATEment #ourSTATE', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(34, 0, 'Olivia told me I could be on Broadway and I am so happy bc someone finally recognized my calling in life', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(35, 0, '#Arriving #JehovaJireh ☺ Happy Day .', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(36, 0, '@someone Good news. Hopefully it sells out.', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(37, 0, '@someone A great display of sportsmanship. this makes my heart so happy', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(38, 0, 'Good start for MSU😂😂😂', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(39, 0, 'All my friends seem to be pissed bad timez I am so bored I need a social life', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(40, 0, 'who can help me with a resume cover letter? anyone? i made one but i dont think it''s good enough. i''m looking for ways to make it better', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(41, 0, '@someone yah man. Hawks you''re the coolest good tweet bro', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(42, 0, 'Good night friends love ur country love PMLN hate ur enemy hate PTI', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(43, 0, '@someone your good, your dam good.', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(44, 0, 'Happy birthday @someone 😘🌸🎉', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(45, 0, '@someone properly there good man', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(46, 0, 'Forecast for C San Bernardino M, CA: Nov 29 Good (Green), Nov 30 Good (Green)', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(47, 0, 'Better team def didn''t win that game but I have always said sometimes it''s better to be lucky then good!', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(48, 0, 'Only thing i am really happy about throughout this whole year, is the new people i have met and the people i have become close with😊👌👐', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(49, 0, 'FAV IF UR A BAD BITCH AND HAVE MY NOTIFICATIONS ON !💕', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(50, 0, '@someone Hey you! Happy birthday you little peach!!', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(51, 0, 'Double weekend seminar ✒️📗 any knowledge is good knowledge @someone 10/4 good buddy #overnout', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(52, 0, 'I hate when people tell Jacob to shave like he can''t be a boy forever and it actually looks good on him', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(53, 0, '@someone ''I''ve done nothing wrong. I''ve just been happy'' 😂😂😂', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(54, 0, 'So many good games', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(55, 0, 'Because I am insecure! just does not cut it, it is not good enough.', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(56, 0, 'Too bad I''m starving at work & I have to watch people eat delicious food. 😅', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(57, 0, 'Ok no good', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(58, 0, '@someone good luck', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(59, 0, '*dreams about dying hair a vibrant color* *thinks about @someone hair* *doesnt dye hair bc I know It won''t look as good as his*', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(60, 0, 'Had such a good evening with the family, first time @someone has been on ice too 😄 I love getting in to #Christmas good thing my phone is broken yet again', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(61, 0, 'Happy birthday @someone ! Hope you have a great day!', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(62, 0, 'I know @someone and @someone feelin good right about now😂', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(63, 0, 'Qualifying for the $5000 Big Gobbler is in the books. Slow start today with a couple of bad games in between,... How about I can pay my bills bitch', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(64, 0, 'He scores he is greedy, he assists he won''t be good enough right?', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(65, 0, 'That''s good stuff. #CardNation', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(66, 0, 'Happy birthday bitch niggaaaa 💯 @someone 18 seconds and you can''t even squib the ball far enough to keep them from setting up for a FG on one run? Sad.', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(67, 0, 'Not a bad start. #GoGreen', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(68, 0, 'I had such a wonderful time with my co-workers yesterday during our Christmas party! (happy days)', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(69, 0, '#WhyWeLoveReynolds because you''re funny, you put smile on the sad face. You make us happy! :) @someone X7', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(70, 0, '@someone @someone good move.', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(71, 0, 'i watched mockingjay today and it was wow sooo good', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(72, 0, 'This was very good : BBC iPlayer - Turn it up to 11 - Play it Loud: The Story of the Marshall Amp @someone looks like the happy little pill video. I WANT A VIDEO FOR TOUCH', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(73, 0, ' How about I can pay my bills bitch', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(74, 0, '♫ Just Announced: Agoura Hills, CA - Dec 11 at The Canyon hs I feel bad for b', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(75, 0, 'Lol good game isu.', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(76, 0, '@someone I would be happy if you also tell how much agencies pay to buy channels against govt.read neha Ansaris article if u have doubt', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(77, 0, 'This is kind of amazing. #todaywasagoodday #icecube @someone @someone Casper Nyovest fans have similar traits to Messi supporters And that''s a bad thing, [why?] Did I say its bad', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(78, 0, 'This i a good piece and no matter what Obama does his skin color will nullify it read Rt #Uniteblue #Libcrib Mocking jay just started and it looks good', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(79, 0, 'Sometimes when we suffer wrongfully, its hard. But God''s Word says this... Love your enemies, do good to them which hate you.... Bless them.', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(80, 0, 'I''m so happy with the people I surround my life with😘', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(81, 0, 'S/o to the people who go to the military with good intentions... sucks that you''re not fighting for what you think you are', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(82, 0, '@someone so many bad decisions', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(83, 0, '@someone sounds good', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(84, 0, 'If I lived in a lofty apartment in a place like the Old Market all my life, I would be a happy little critter.', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(85, 0, 'The thing abt Jack Nicholson is that his movies are good but you end up feeling violated', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(86, 0, 'Wow, why can''t I like a good football team?', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(87, 0, 'Thompson: If I’d have known he was coming, I would have thrown it. Good play by him, bad play on me.', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(88, 0, '@someone happy birthday! (:', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(89, 0, '@someone HAPPY BIRTHDAY Amira!! I wish you the very best and many more years to come !! God Bless you beautiful ❤️🎉🎊', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(90, 0, 'that''s a good start', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(91, 0, '@someone SUPER PRIZES GOOD LUCK TO ALL @someone ....Every bad situation has something positive...Even a Clock that has stopped is correct twice a day. So have... Michigan State started out good though', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(92, 0, '@someone @someone good point, my fault', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(93, 0, '#besties. So happy Kitty came to karaoke last night! Haliditshabe @someone Lmao @someone Good evening Sir @someone can you kindly dedicate Congratulate you to Cassper please?', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(94, 0, 'Forecast for E San Bernardino, CA: Nov 29 Good (Green), Nov 30 Moderate (Yellow)', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(95, 0, '@someone UGA is routinely overrated year after year. They are never anywhere close to as good as all the pundits like to say they are', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(96, 0, '@someone good man!! And good luck', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(97, 0, 'Let''s build a community of good :) Become a Messenger of Humanity: #TFB #FF #Life', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(98, 0, 'i want to watch horrible bosses 2 so bad', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(99, 0, '@someone @someone y''all are so bad lmao😂', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(100, 0, '@someone Personne aime LoL au début mais quand tu deviens bon tu te rend compte que c''est good , apres tu peut ne pas aimer hein', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(101, 0, 'Nice win for the good guys #GoJackets #GeorgiaTechSports', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(102, 0, '@someone BREAKING: Israeli cricket umpire has died after being hit on jaw by cricket ball. #SSNHQ so sad.', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(103, 0, 'ok I feel bad now lol', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(104, 0, '@someone but right about now is a good time to get up', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(105, 0, '@someone umm. 16th ranked 10-2 teams generally go to good bowls. Don''t let the salt impair your judgment.', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(106, 0, 'Still can''t get over how good the silent disco was earlier. It should be like that in every club #amazing', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(107, 0, 'A lengthy, bit dated but a very good article. I texted so many people Happy Thanksgiving and I only got three replies', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(108, 0, 'Kids seeing their parents naked encourages a good body image? Yes or No? Good read, give yourself ten minutes to think about it as you read There are very few times when I''m too sad to smoke.', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(109, 0, ' #celebrities good #twitterafterdark #nsfw #adult #porn #Sexy latest celebrity nudes Plot twist: People lose their shit when the good guys win.', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(110, 0, '@someone it was a good game too lol', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(111, 0, '@someone nah I wish. Mankato in my conference though. It''s a good game?', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(112, 0, 'I hope this in n out is as good as the ones in Cali', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(113, 0, '@someone yeah!didnt do much actual work and stole a lot of books/listened to a lot of jazz. was the good life till i got sacked', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(114, 0, 'He''s not fake he may make mistakes but at least can apologize for what he has done and make us happy still #WhyWeLoveReynolds', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(115, 0, 'Baby now we got bad blood, now we got problems and I don''t think we can solve them💋', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(116, 0, 'Forecast for E San Fernando Vly, CA: Nov 29 Good (Green), Nov 30 Moderate (Yellow)', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(117, 0, 'Forecast for Big Bear Lake, CA: Nov 29 Good (Green), Nov 30 Good (Green)', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(118, 0, 'I have a good time with my work. I jump out of bed every morning to go to work and...think up weird things. I like my job John Waters', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(119, 0, 'Forecast for East Riverside CO, CA: Nov 29 Good (Green), Nov 30 Good (Green)', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(120, 0, 'Athletes…If you are not strong and confident enough to accept coaching, you are probably as good as you’re ever going to be. ', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(121, 0, 'there''s no good films out😴', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(122, 0, 'Kids seeing their parents naked encourages a good body image? Yes or No? College rivalries are all in good fun. The love/respect for the game, team & players make these rivalries enjoyable to watch with everyone.', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(123, 0, 'That''s a good start psu', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(124, 0, 'Watching the USC and Notre Dame game until Oregon comes on, this should be good', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(125, 0, ' How about I can pay my bills bitch', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(126, 0, 'she''s not really sad 8 top UI tools good read', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(127, 0, 'not feeling good at all 😓', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(128, 0, 'definitely not a good start 😭', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(129, 0, '@someone @someone quality player and was immense before the injury. Good to see him rediscover that firm. Onwards and upwards 👍', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(130, 0, 'Good job bucks 😏🏈', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(131, 0, 'That was a good way to start the game', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(132, 0, '@someone @someone Stani ja sad treba da kazem volim tsom <3', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(133, 0, 'Is it sad that all i wanna do today is get high and be extra cozy?', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(134, 0, 'Ahh not bad uk blow it at the end:[', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(135, 0, '😊❤😊❤😊❤😊❤ hi luke hemmings @someone from 5sos i''ll be so damn happy :---) if you follow me so please follow me 😊 i love you 😊❤😊❤😊❤😊❤ 1298', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(136, 0, 'She a bad bitch and she already know it', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(137, 0, 'feeling extra sad today', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(138, 0, '#dwts #TVD #TheVoice #Nashville #ncfilm #Dayofthegirl #heforshe #Christmas stayed #hotel #good #service #NC #SC @someone Happy almost holidays! @someone cover.', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(139, 0, '@someone not too good n you babe?', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(140, 0, '10 Good Reasons To Get A Flu Shot @someone The weather here is not good :/', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(141, 0, 'You need to go out and do something, I''m tired of just watching you be sad and sit in your room and watch One Tree Hill all day', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(142, 0, 'Had such a good weekend with my faves❤️❤️❤️', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(143, 0, 'Did Urban say not good when @someone mentioned J.T. Barrett''s status?', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(144, 0, 'Happy birthday to my partner in crime and my very best friend. I love you so much!! katyjanev @someone robeland @someone Belated Happy Thanks to you, and the entire Waltrip family. Poot Gabby', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(145, 0, '#WhyWeLoveReynolds because it just makes me happy, and I love him very much 💕', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(146, 0, 'Ordered 2 cushions with family pictures on them... Can''t wait for them to come next week Inshallah #Excited #Happy :))', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(147, 0, '@someone thinks he''s good at madden', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(148, 0, 'Always a good day when NCSU wins. And an even better day when they kill UNC! #GTHC #PackNation', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(149, 0, 'I want you to be happy & I want to be the curse of it but I didn’t make your eyes light up like they light up for her.', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(150, 0, 'Sometimes Smash Bros is a good summary of my life 🎶💕🎶 @someone you always make me happy just by being who you are pls always stay true to yourself ☺️ i love you so much 💕🎶💕 x1137', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(151, 0, 'It''s great to be a fuzzy bee! What''s the good word? #THWG', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(152, 0, 'SAME REASON Florida beat UGA... THEY CANT STOP A GOOD RUSHING ATTACK !', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(153, 0, '@someone I''m little sad because apparently you guys not back to Brazil in next year.', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(154, 0, 'Will looks like he don''t gaf lol bad business', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(155, 0, 'Forecast for E San Gabriel V-1, CA: Nov 29 Good (Green), Nov 30 Good (Green)', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(156, 0, 'You should be happy. I thought of you when my mind wasn''t functioning properly.', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(157, 0, 'you did many things that I liked.. you made me feel so good before I left!', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(158, 0, 'Feel like I should write a merlin fanfic at some point. Have some really good ideas!', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(159, 0, 'Feels good to be back on track.', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(160, 0, 'Forecast for Hemet/San Jacinto, CA: Nov 29 Good (Green), Nov 30 Good (Green)', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(161, 0, '@someone @someone Sorry I missed you guys at Four Barrel... have a good weekend.', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(162, 0, 'It feel good enough to open up my window.', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(163, 0, 'oh bale scored. good for him.', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(164, 0, '@someone and @someone were so good #FreeRadioLive 👆', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(165, 0, 'If you were happy with the wrong one, just think how happy you will be when the RIGHT one comes!', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(166, 0, 'Sad about your #BlackFriday impulse buys? Giving makes you happy and healthy! #GivingTuesday Dec 2! Get giving!', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(167, 0, 'Good services dont have to cost more, improving value for money means more budget goes to support the frontline @someone Kick me when I''m down. But congrats. Good luck in the B1G championship. You and @someone should go and get wild.', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(168, 0, '@someone Ijust screamed bad words', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(169, 0, ' How about I can pay my bills bitch', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(170, 0, 'When something bad, the first person point me, please look at your nose and leave me alone', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(171, 0, 'Happy valley is the greatest environment in the entire world', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(172, 0, 'Second win good job everyone👊🏀', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(173, 0, 'Good night last night, sorry if i forgot totag yous', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(174, 0, 'The movies gonna be good but why a three pronged lightsaber?? Shit looks like a cross bruhh', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(175, 0, '@someone Too bad for you geaux-douche.', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(176, 0, '@someone It''s going to be a good episode. I wonder what happened to Angela. And I love when they do flashbacks.', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(177, 0, '@someone thanks for making me happy when I''m sad, I love you so damn much 💕', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(178, 0, 'mollies going on the 5th im so happy bc people from school😂', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(179, 0, 'Ah. Your corn was not bad at all. However, we seem to have done slightly better than you.', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(180, 0, 'Good tackling Penn State', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(181, 0, 'Do your little bit of good where you are; its those little bits of good put together that overwhelm the world. ~ Desmond Tutu #good #world', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(182, 0, 'Not a bad way to start a football game. #GoGreen', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(183, 0, 'Good start Penn State...', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(184, 0, '@someone That match was so intense, good god. GG guys (:', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(185, 0, '@someone bad asl😂she gettin big tho😍', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(186, 0, 'That''s a good way to start the game', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(187, 0, 'I''m watching if I stay and now I''m sad af', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(188, 0, 'Forecast for E San Gabriel V-2, CA: Nov 29 Good (Green), Nov 30 Good (Green)', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(189, 0, 'Well that''s not good', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(190, 0, 'Don''t talk to me if I''m trying to get good like who did you think you are', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(191, 0, 'I have it on good authority from my inside sources: the voice on those BT ads belongs to Andy Serkis.', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(192, 0, 'Hello @someone from @someone 🌼 Please be my 1/4 💜 Love you so much 👼 You make me happy every day 💐 Please follow me 🍀 🍓 X126', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(193, 0, 'It''s sad that the privileged people are saying my life matters too as some way to dilute the black people''s current struggle for equality.', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(194, 0, 'Happy birthday @someone 😘 You are a ray of sunshine whenever you''re around, have a magical day ✨🎉', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(195, 0, '@someone Whiplash had an incredible script that''s for sure. Hear the film is just as good.', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(196, 0, 'New week, new tweets, new stats. 2 new unfollowers. Via good old Good job tech fans 2nd win in 15 years must feel pretty good', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(197, 0, 'Lol at Dabo being happy with his 2-5 record against USC.', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(198, 0, '❤🌺❤🌺🌹❤💖 Hi baby you makes me happy when skies are grey Follow me please @someone 🌸🌺⭐⭐☺x210', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(199, 0, 'me and @someone heard a sad story about a kids mom at the park today while pennyboarding.... #AlwaysListenToPeople', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(200, 0, 'Im so fcking in love with her smile like fck i love to see her happy cuz it makes me happy #FakingIt #Reamy 😍💕💖😀 if Florida gets the win today I will be very happy.🐊💙 #GatorNation #BeatTheNoles', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(201, 0, '@someone I do love a Bakewell Tart (is that a cake?) or a good old fashioned fruit cake.', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(202, 0, '@someone Ol boy said when ya GPA was good.. Did we call ya back? Lmao I done spit my damn drink out I dropped the blunt b😢', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(203, 0, 'That wasn''t a good start for Penn State!😂😂', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(204, 0, 'Woohoo! RT @someone FINAL SCORE: #GaTech 30, UGA 24. What''s the Good Word? #GTvsUGA #TogetherWeSwarm', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(205, 0, 'Baby girl so happy . Happy Birthday! 😊🎉 @someone @someone Life is good 😊 rt😍', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(206, 0, '@someone If you a bad bitch I won''t date you 😂😂😹😹😹💀', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(207, 0, '@someone @someone happy bday lil nigga Nate thanks lil nigga', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(208, 0, 'All those seniors.... Feel bad for them', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(209, 0, '@someone Hi, thanks for everything that you''ve done for me I can''t even describe how much I love you follow me, make me happy X 783', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(210, 0, 'num dia black friday no outro happy holi no outro ainda teve o halloween E A CULTURA BRASILEIRA DO SAMBA E DA FEIJOADA VAI FALECEND', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(211, 0, 'Good day to be a tiger @someone You’re not a bad person for the ways you tried to kill your sadness. ', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(212, 0, 'DeVante Parker is too good', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(213, 0, '6. The life we live on earth is approximately 26000 days. Let us make it happy for everyone around us', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(214, 0, '@someone 👾 👻 💥 👽 michael from 5sos!! u make me so happy & a follow would mean the world ily 💀 🌙 ⛄️ 🍆 // 4,125', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(215, 0, 'Good luck to Treon. Wishing him a good game. #F5Nation', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(216, 0, '@someone At least Vince was good for more then 17 games...', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(217, 0, 'Why not make a resolution to make friends with your finances? Happy saving (and investing, budgeting, & planning)! I forgot how good K-State football games were', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(218, 0, '@someone Happy b-day 🎂', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(219, 0, 'Fleurs good but shes deffo my least favourite! #xfactor', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(220, 0, 'Happy birthday PPP #PPPFoundationDay @someone @someone THIS ORNAMENT OMG IM CRYING I WANT SO BAD ⛄❄', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(221, 0, 'Good job Penn State ;)', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(222, 0, 'Forecast for N Coastal Orange, CA: Nov 29 Good (Green), Nov 30 Moderate (Yellow)', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(223, 0, '🌸🌸🌸 @someone Ashton Irwin from 5sos Please follow me You make me really happy💖 I love you so much 🌸🌸🌸 207', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(224, 0, 'Check out merry christmas and a happy new year by demolishtion - hiii @someone ✩⋆ฺ࿐ i hope ur good! #FOUR is absolutely amazing would u mind following me? love you loads! (ू•‧̫•ू⑅) x6,462', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(225, 0, '@someone so happy! Such a dork lol', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(226, 0, 'This a good ass game!', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(227, 0, 'Nu met ons pap de lol erin gooien met Jackass Bad Grandpa en daarna een mooie, ijzersterke harde gevangenisdrama Starred Up beide on Dvd!!!', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(228, 0, 'Good start psu', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(229, 0, 'Happiness is a choice and I choose to be happy Manifest greatness', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(230, 0, 'We are underway from Happy Valley, and fireworks early, R.J. Shelton houses the opening kickoff for a touchdown.', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(231, 0, 'Don''t even feel bad for ya Georgia', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(232, 0, 'Forecast for Lake Elsinore, CA: Nov 29 Good (Green), Nov 30 Good (Green)', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(233, 0, '@someone @someone those were some good chips too', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(234, 0, 'Backyard bowls sound so good', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(235, 0, 'I can make the bad guy good for a weekend', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(236, 0, 'I also am a fan of a good turn the other cheek if their coaching staff starts yelling.', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(237, 0, 'Bad bad badass victory. I''m hoping the best for JT. The kid deserves good things. And Urban is a cold-hearted killer.', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(238, 0, 'State beat Carolina.....I say its a good day🐺❤️', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(239, 0, 'Happy birthday @someone !!! Hope college is great ☺️❤️🎉🎈', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(240, 0, 'bruh. no comment. ✋😨 I''m in my happy place with these margaritas. I''m not gonna die over UGA football''s constant BS. UGH.', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(241, 0, 'This is a good ass game. Period.', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(242, 0, '@someone Posh place. Have a good time!', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(243, 0, '@someone I know mate it''s been a while. Yes all good here, see you''ve corrupted all ur family into supporting utd!! Tut tut lol, BFC flying', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(244, 0, 'That so good im your great fan', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(245, 0, '@someone u were good shut up', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(246, 0, '@someone Great win. Good game to watch', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(247, 0, 'Florida has some good defense tho , should be a good game.', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(248, 0, 'I hate that game every year cuz I''m on edge but we got the win. Sad to see JT hurt but at least we beat michigan. Buckeyes for life.', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(249, 0, 'Watching the spongebob motion picture and it''s good @someone Too bad j''ai pas d''amis haha 😂😭', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(250, 0, 'THIS GAME IS GOOD AS SHIT!!!!!!!!!', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(251, 0, 'The Doctor Reacts to Am I A Good Man? | #Capaldeyebrows!: via @someone @someone I think ud look so good as a Carmel blonde', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(252, 0, 'Must be a sad day to be a Michigan fan. 😂😂 #BuckeyeNation', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(253, 0, '@someone No doubt. Good thing it''s hard for users to sue them...', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(254, 0, 'Dude!@someone I would eat that ass nge tispoon RT @someone RT@someone She always looks GOOD @someone Regardless of what it is, I hope our love lives overflow with bliss. Happy 121 Day Honey. I love you. Happy birthday to my nigga @someone everyone should check out his soundcloud for some dope shit, keep up the good work brother and drop 🔥🔥', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(255, 0, 'Good morning', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(256, 0, '@someone hi ☀! @someone and I love Night Changes so much, it''s our fav song. Can you follow us and make us happy? Please 🙏💕 x864', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(257, 0, 'Being happy and sad at the same time sucks', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(258, 0, 'not bad for that scrawny little spit-fuck', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(259, 0, '@someone good point, but you will be accused of ruining the club lol.', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(260, 0, 'Well that will quiet Happy Valley..', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(261, 0, '@someone i know you do i assumed we were both being cheeky. i''m good i''f you''re good.', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(262, 0, 'I slept good . 😌', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(263, 0, 'Good job Buckeyes !!!!! Woo!', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(264, 0, 'Good start for PSU', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(265, 0, 'CEOs Getting Ready To Revolt Against Obamacare... good read @someone Garnets in my blood and always be but I can honestly say not a good end to a bad season ', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(266, 0, '@someone Jeff bridges is in it right? He doesn''t make bad movies IMO', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(267, 0, '@someone i really don''t know hmm it''ll be good if they do but soo hard to get tickets!', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(268, 0, '@someone Well, that’s good… Eat up and I’ll be back in a bit for the tray.', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(269, 0, 'A win is a win. Team stepped up when we needed it. Good jobs men. #GoBucks #WeBeatmich-AGAIN', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(270, 0, 'My cousin sad she look like a side hoe I''m weak af', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(271, 0, 'Well that was not a good start', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(272, 0, 'Hey peeeeeps do you have any good ariana blogs on TUMBLR I can follow? Let me know I''m going on a follow spree! 💜💜💜💜', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(273, 0, '#WhyWeLoveReynolds cause he makes us happy', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(274, 0, '#HailSparty OPENING KICK TO THE HOUSE! Happy Valley is awfully quieted down', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(275, 0, 'IVE BEEN ALWAYS WANTED TO SEE HIS ID PHOTO DAMN HE LOOKS GOOD MY DREAM CAME TRU THANKS GOD How about I can pay my bills bitch', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(276, 0, 'Good rice, good curry, good Gandhi, let''s hurry. @someone you can say that again Hun ... She''s the only act I can''t miss her performance tbh she''s too good !', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(277, 0, 'Happy bursdag to meee😌🎉🎂 #birthday #holdfast #samuelmassie This is gonna be good 🚫🐊🚫', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(278, 0, '#WhyWeLoveReynolds he will do anything he can and makes us happy and he''s amazing and treats us like family❤️💛 @someone 🌀', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(279, 0, '@someone It didn''t even look that bad!', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(280, 0, '@someone @someone I''ve been in College 8 years. Your own pace is NOT A BAD THING. You havent given up. THAT is what''s important', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(281, 0, 'Wow penn state is off to a good start today', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(282, 0, 'The heart wants what it wants music video is so good💕', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(283, 0, '@someone person: do you know any good tv shows? me: are you sure you''re ready for this conversation? انااااااااا', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(284, 0, '@someone loveuhh bale uh made me happy now', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(285, 0, 'every time I get way to mad or sad it comes', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(286, 0, 'Hm, good start MSU', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(287, 0, '@someone happy birthday ☺️☺️☺️', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(288, 0, 'Good job boys ❤️🏈42-28 #BuckeyeNation', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(289, 0, 'If you are happy with that person,then why did you cheat on them¿', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(290, 0, '@someone good one', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(291, 0, 'I also bought a pair of shoes called Athena so that made me and my alter ego happy', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(292, 0, 'ide mi se kuci sad, najednom', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(293, 0, 'update: madtown are not very good at acting cute h.o currently holds title of cutest', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(294, 0, '@someone if you''re having a bad day just remember, you could be tech''s quarterback', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(295, 0, 'Why do they play good music in the gym and not in the shop at work :(', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(296, 0, '@someone @someone @someone @someone @someone 😂😂...at least Rob was in good position in PR def. Bad defense by corner man', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(297, 0, 'This beatdown plus 2 baskeball wins is what I call a damn good week to be a part of the Wolfpack. #STATEment', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(298, 0, '@someone Good job, Clemson! Took you 5 years. 😂 exactly what I said', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(299, 0, 'I want some chinamen bad! 😩', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(300, 0, 'Good game Pack!! #STATEment #GoPack ❤️🐺🏈', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(301, 0, ' #celebrities good #NSFW #nsfw #adult #porn #Sexy latest celebrity nudes @someone it would be good if also organized in East Africa', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(302, 0, '@someone The four seasons make me happy 💘 SHERRY, BIG GIRLS DONT CRY, DAWN, DECEMBER ''63 😭😭😭😭😭💘', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(303, 0, 'When you Qopetsa too much but God remembers that you said he''s good at the time Why are Mizzou fans happy Georgia Tech won? Cause Fuck Georgia', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(304, 0, 'About time. Great to see Buckley looking for the scrum. Would be the wrong decision, but good to see nonetheless.', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(305, 0, '@someone reece no you were all amazing wtf don''t be sad', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(306, 0, '@someone what seems so obviously a good thing where you or I are sitting doesn''t loom the same from all communities.', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(307, 0, 'Happy birthday @someone @someone oh my bad you''re right, that was an accident', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(308, 0, 'Why is our coverage soooo bad ?', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(309, 0, 'Who df was Hutson mason throwing it to???? Smh ruined my whole damn day. Good for tech though. Don''t necessarily hate them like other teams', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(310, 0, 'Nice! RT @someone 3 bedroom/2 1/2 Bath, 2 story, fenced in bkyard...$775 mortgage Indianapolis God is Good @someone glad to hear it. I''m not bad thanks, worked today so got the night off :) when are you starting your new job? x', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(311, 0, '@someone @someone happy birthday girllll☺️💖 awh thank you so much bb💗😚', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(312, 0, 'find that happy place and stay. 😌', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(313, 0, 'I was so glad to meet you Now you''re having all these good times without me Don''t worry, I see you You don''t even care when I subtweet you', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(314, 0, '@someone never happy, but I wasn''t even hopeful or optimistic after it. Just unhappy.', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(315, 0, 'There is nothing in this world to be happy about', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(316, 0, 'Fotoğraf albümü: tinypawpets: She is more than happy to eat hanging in mid-air. Ultimate Mole Control: Eliminate Mole And Gopher Problems For Good @someone aw miss u too xx u had a good day?', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(317, 0, 'I feel bad fuh shawty but thass nun of my buisness ...😒😔😔', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(318, 0, 'Well, that was a bad start.', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(319, 0, 'Good start for MSU💁', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(320, 0, 'Happy birthday school traitor and Jesus camp friend have a fab day love ya🎉🎉❤️ #godbless I know this probably sounds bad, but there is nothing I hate more than putting the Christmas Tree up lol', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(321, 0, '@someone @someone we know they can be a good team. They have showed it in the past. Inconsistent and confidence issues due them in', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(322, 0, 'Good luck bill @someone x', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(323, 0, 'I also want to FaceTime friends & make them happy but there''s such shitty service at the SAP center', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(324, 0, '@someone is going good thank you', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(325, 0, 'Happy girls are the prettiest 💋', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(326, 0, 'Good luck to all the park hockey Boys tonight and for the rest of the season #bringhomethecup #forthehaas #fuckparsippany #levis #FTB', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(327, 0, 'Thanks ! Appreciate it @someone @someone happy birthday!', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(328, 0, 'I''m so happy.', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(329, 0, 'Malaga''s keeper is a fucking badass but his defenders are trash. Feel bad for the guy.', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(330, 0, 'Weed is good for the body', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(331, 0, 'He want a little sister so bad', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(332, 0, 'I''m like turnt turnt turnt turn upppp Like were Da bad bitches at', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(333, 0, 'All good here fella. Well recovered! @someone Why do niggas feel like tall can be friends after a bad breakup? Lol like.. you must not have loved me my nigga', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(334, 0, 'Good Lord, we fought through so much adversity to win that game.', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(335, 0, 'No one knows how happy #bigfatliealbum @someone makes me!!!', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(336, 0, 'Good start', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(337, 0, '@someone OKAY OKAY SOUNDS GOOD', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(338, 0, 'Happy Birthday!! @someone 🎉🎉🎈💖', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(339, 0, '@someone knee. Looked real bad. Probably done for season..', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(340, 0, 'With the birthday girl happy bday Pao Pao!! 🎂🍰🎉🎈🎁 p_a_g11 United won and Georgia lost..God is good', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(341, 0, 'We won. It wasn''t what we needed it to be, but we beat TTUN and that''s good enough for me. #GoBucks ', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(342, 0, 'Really happy Harrys in la right now and not any where near the vs fashion show.', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(343, 0, 'Too bad it wasn''t 35-0 but still GO WOLFPACK!🐺❤️ #gotthatwin #GTHC', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(344, 0, 'Watching the lemont game online bc I''m very sad I''m not there', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(345, 0, 'Every day oughta be a bad day for you 🎶', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(346, 0, 'good tackling guys', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(347, 0, '@someone thats all good...I tweeted that for a reason fam not taking shots', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(348, 0, 'Bad things can happen in love if you don''t play it right. - Taylor Swift', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(349, 0, 'I don''t wanna hear any excuses. It was a good game. UGA shot themselves in the foot over and over again. But I will always love my dawgs❤️', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(350, 0, 'Only good thing about that is the Cats have time. #UKvsLOU', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(351, 0, 'Still in shock about j.t. Barrett...hope he''s ok...but it don''t look good', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(352, 0, 'happy birthday Hannah!!! ily&imy❤️🎉 @someone @someone aww i hope everything gets better for you really soon i will miss you please don''t leave for good', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(353, 0, 'Well that''s a good start', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(354, 0, '@someone laughed out loud at your new column today. Big shoes to fill - good on you', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(355, 0, 'yall one for the first time in 6 years... good game', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(356, 0, 'Good things come to those who wait. Better things come to those who don''t give up, and the best things come to those who believe.', '2014-12-03 19:45:38', '2014-12-03 19:45:38');
INSERT INTO `Tweets` (`TweetID`, `UserID`, `TweetText`, `TweetTime`, `CreatedOn`) VALUES
(357, 0, 'Much love to Ferris State, no one expected you to go as far as you did. You made Big Rapids proud! Good luck to you all @someone Paid off $1500 in tickets AND got a new license after driving without one since May. It''s a good day.', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(358, 0, 'Maybe college apps wouldn''t be so bad if my parents weren''t up my butt all the time about schools I don''t even want to go to anymore', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(359, 0, 'Good day to fix this scruffy hair I have on my head', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(360, 0, '@someone to keep his girl and side hoes happy RT @someone one day don''t let him fool you', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(361, 0, '@someone Hi how are u? Please follow me it''s my dream. I love u more than anything. When I''m sad u are here for me so thank you x4,960', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(362, 0, '2014 #thanksgiving #love #family #friends #food #fun Happy Holidays! @someone beachboppy I don''t like #Cranberrys but why is #CranberrySauce so damn good', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(363, 0, 'Just watched the fault in our stars 😍🙌 that movie good asl', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(364, 0, 'Oh, this? This isn''t for me. It''s a gift. -Good thing to say if you''re caught shoplifting', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(365, 0, 'My home boy El Chavo... Good laughs were spent on watching him.. @someone Really happy you''re enjoying our book! Our business insight continues monthly here #HowToBuildABrand :-)', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(366, 0, 'There''s a drop. We''re off to a good start.', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(367, 0, '@someone shit that''s not a good way to start it out', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(368, 0, 'Good start penn state -_-', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(369, 0, 'i feel so bad imagine killing 3 people but waking up not remembering that at all cmon why am i in jail', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(370, 0, 'If you check my channel for the match reaction tommorow it will 100% be there for you but from now til 12 idk time it will be up (bad wifi)', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(371, 0, '🎶💕🎶 @someone you always make me happy just by being who you are pls always stay true to yourself ☺️ i love you so much 💕🎶💕 x1138', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(372, 0, 'I rather be happy then right not everything needs a reaction only when i feel like it lol', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(373, 0, '@someone What''s good fam, you need a unique producer? Sign Up here and let''s build: Thank you for spotting for us. Not appreciated or recognised enough for your good work @someone #CCPC14 #darts', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(374, 0, 'Happy birthday @someone I hope you have an amazing day, I miss your laugh and your dads cookies 😋 miss you buddy 😘 Ms Abby always does me good . I got african food in my fridge for Tom 💃💃💃💃💃💃💃', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(375, 0, 'That shit is strange and sad for it to be a #goal of yours', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(376, 0, '@someone punch em one or two times. That''s what I do to my lil cousins when they bad.', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(377, 0, '@someone qp: the thing is, everyone got it, so they didn''t assume you didn''t... i''m losing it good bye me: Well,', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(378, 0, 'Happy birthday @someone @someone thanks Julio hope your doing good ☺️😜', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(379, 0, '@someone good😁', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(380, 0, 'Life gets in the way of making the best money decisions. Have a life. Make good decisions: @someone Hate how there''s so many good games on at the same time 😑 RIIIGGGGHHHHTTTT', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(381, 0, '@someone love you so bad Danielle', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(382, 0, '@someone you boys did so so good and you looked hot af', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(383, 0, '@someone It was good. We had a big family get together, and then I went shopping. I was in tears looking at the open bracket yesterday.', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(384, 0, '@someone If you don''t got no bread you don''t deserve a bad bitch and some of the baddest are with the brokest its disgusting.', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(385, 0, '1871 LIBERTY SEATED HALF DOLLAR VERY GOOD++ COIN! #5 $51.99 via eBay I don''t know if I should be happy or mad that my sister is moving back in 😂', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(386, 0, '#WhyWeLoveReynolds bc he makes me smile everyday when I''m sad and I''m thankful 💗🙌', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(387, 0, 'Haven''t got any partisan feelings about the boxing tonight.just want to see a good old Fashion dustup between the pugilists', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(388, 0, 'Typical UGA fans will be like Hey 9-3 is good or Glory in our losses and wins I''m sick of that', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(389, 0, 'Lolz were so good', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(390, 0, '@someone Hey good job Tech! Y''all beat us 2 times in 14 years😂😂😂 this made me feel better', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(391, 0, 'You all need to know that @someone is a fabulous friend , gig buddy and all round good egg.', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(392, 0, '` - If you want to be happy Just close your eyes, And start thinking about me ? Believe me you''ll feel better ~ - Just try it.', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(393, 0, '✖ @someone you''re my sunshine. I love you so much. You makes me happy everyday so follow me babe, please. ✖ x508', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(394, 0, '[Mixtape] Albee Al //Bad Guy - Not Guilty here are some good black friday online specials: :)', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(395, 0, 'It''s a good day in this house. 😊', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(396, 0, '@someone OKAY GOOD', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(397, 0, 'Happy birthday stud @someone @someone What''s Good? Go to If you''re workin and you need dope beats.', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(398, 0, 'Good start MSU', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(399, 0, 'I don''t feel good so jake bring Panera bread soup to me in bed 😍😍😍', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(400, 0, 'Dear @someone 🙋 are you a microwave oven? cause you melt my heart 🙈 please follow me and make me happy☺ i love you 💕 x 290', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(401, 0, 'Watching Silver Linings Playbook for the first time and just wow! Such a good movie!', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(402, 0, 'already seeing small results in my body and it makes me so happy😊💪', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(403, 0, '@someone no one would even know so it''s all good😂', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(404, 0, '@someone I will be ❤️ until you die❤️❤️ that sounds sad but I mean it in a touching way❤️❤️😂😊', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(405, 0, 'Best/worst thing ever to do right after a game is twitter search a QB after a bad game', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(406, 0, '@someone is soooooooo bad!😍', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(407, 0, '#good save from #Parsons', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(408, 0, 'Penn state is so bad it''s embarrassing', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(409, 0, 'So happy I have a job this Christmas so I can spoil my friends and family ☺️😍', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(410, 0, '@someone sav doesn''t text me anymore it''s sad):', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(411, 0, ' How about I can pay my bills bitch', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(412, 0, '@someone When you''re having a good hair day @someone on t''a retrouvé', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(413, 0, '@someone @someone what''s the good word THWG #pissonem justin Thomas is Reggie ball, you heard it here 1st Love me harder! 😽 - #Likes #Happy #Me #Boy #Follow #FollowMe #FollowBack #Instamood #Instago… Just did liquid liner in the car and it actually looks somewhat good...you can now down to me know💁', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(414, 0, 'I want cute gifts, good convo, and affection wothout there being an obligation of doing it just because we''re together.', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(415, 0, 'Good afternoon everyone, how you doing today? 2-9. Iowa State Cyclone football. Wow how bad is that program right now. #firepaulrhoads', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(416, 0, '@someone This food Natalina will be good whatever it is I will eat anything.', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(417, 0, 'Two plays, two penalties. Good start.', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(418, 0, 'A lilllow sad my ombrè is fading back in 😐', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(419, 0, 'Facts are few, friends are fewer, and rarely worth the effort. But today… Today was a good day.', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(420, 0, 'It seriously melts my heart when I see my parents so happy together, like can I have that?', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(421, 0, 'I feel so bad for myself having to watch XF just for the ads it''s so shit', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(422, 0, '@someone I understand lol I just don''t think it was that bad a call', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(423, 0, 'tsunderrorist: if you’re having a bad day here is a baby polar bear being tickled the only bad thing is that she''s taking the car with her', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(424, 0, 'after going to the movies twice and mocking jay being sold out both times I finally saw it today & peeta/gale looked so good it was worth it', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(425, 0, 'New day, new tweets, new stats. 2 new unfollowers. Via good old Penstate is good 😀', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(426, 0, 'Always good', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(427, 0, '@someone @someone good to know 😒', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(428, 0, 'I''ve sworn 75 times on Twitter, so I''m on Santa''s naughty list. Sad face. Find out if you''ve been naughty or nice at @someone 5 is an absolute answer to all my questions! Correction: 1. Read good books', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(429, 0, '@someone happy birthday, was a privilege spending your birthday with you tonight you made Aladdin', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(430, 0, 'Good mood crew.', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(431, 0, 'As pointed out by five of them in a pretty major way. That''s, uh, a potential employee bothering to research the job is a GOOD thing,', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(432, 0, 'Good morning!', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(433, 0, 'Well that''s a pretty good start', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(434, 0, '@someone Definitely! Great gun on it! Kept my Matilda. :) Wish other British tanks had that gun. So good.', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(435, 0, 'Now I''m in a bad mood.', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(436, 0, '#nowplaying Problem-Like Whaaat Feat Bad Lucc Prod By Jaynari Of League Of Starz - Problem / Welcome To Mollywood 2 Lots of good rivalry games today!', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(437, 0, '@someone UGHHH that video is not good tbh. Like the song though', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(438, 0, 'Wanna be like me so bad', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(439, 0, 'Im still sad yall', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(440, 0, '@someone I don''t know him but his name is Joel, he''s good', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(441, 0, 'Forecast for North Orange CO, CA: Nov 29 Good (Green), Nov 30 Moderate (Yellow)', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(442, 0, '@someone I''lL TRY BUT I''VE NEVER BEEN GOOD AT CLOTHING FOLDS OR CREASES OR ANYTHING LIKE THAT', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(443, 0, 'That''s a good start, Terps. 7-0.', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(444, 0, 'Do you know how sad twitter is when your favourite rapper is being roasted', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(445, 0, 'that victory almost tasted as good as the zaxbys i had earlier 🐯', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(446, 0, 'happy birthday buat yeka 👸💋🎂🍻 panjang unur shat slalu jadi anak yang baik dan cita bisa tercapai dan sulses 💐', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(447, 0, 'See world, you''re no good...', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(448, 0, '@someone -💗- PLEASE FOLLOW SAMMY! WORDS CANNOT DESCRIBE HOW MUCH YOU MEAN TO ME💗😊 !! I WOULD BE SO HAPPY IF YOU FOLLOWED!💗 79', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(449, 0, '@someone am I good enough to get one ?', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(450, 0, 'Marcus could''ve ended the game ! but it''s all good, he gone make up for it', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(451, 0, '@someone AWHH tell him I said happy birthday!!!❤️', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(452, 0, 'This week I was reminded learning new skills can be scary but it''s good to do every now and then... All I''m focused on is passing exams and then I''ll be happy about Christmas and New Years😭', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(453, 0, 'Good start', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(454, 0, '#TheMagdaleneSisters So sad.', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(455, 0, 'this makes me happy @someone @someone @someone don''t think so. Her dad was a good teacher is about it!', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(456, 0, 'The Good, the Bad, and the Ugly of SEO @someone Glad we can be good sports about it.''d b talkin shit if I were u You''re a better man than I am 😂 but that''s what''s it''s all about', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(457, 0, 'Hello @someone from @someone 🌼 Please be my 1/4 💜 Love you so much 👼 You make me happy every day 💐 Please follow me 🍀 🍓 X127', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(458, 0, 'It''s the little things that make me happy! Thanks baby!! #sephora #buxom #winnertakesall #minis… Too many good single girls, too many hoes taken.', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(459, 0, '@someone @someone e sad , u aljine se ne tendim , ali roba u aljini je prvorazredna ;)', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(460, 0, '@someone Good thing is both Philly and Columbus have reasonable depth at C, they could afford to make a deal there..', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(461, 0, '@someone €150 for the winner, if it doesn''t interfere with winning back the Inter Clus title for @someone good luck!', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(462, 0, 'Hahahahaha time to sad drink', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(463, 0, '@someone #HalfOff #Ticket prices code: Cyber2014 #Offer only good until Dec 2 Good day to be a Wolfpack fan🐺>🐑', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(464, 0, '@someone MY BAD😨🙈', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(465, 0, 'So Happy to see you two joining the Twitter world! So weird that @someone decided to get a Twitter right after @someone got one...', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(466, 0, 'Tonight ON MTV / Rome - Italy Make A Wish #make #wish #happy #smile #cool #fun #crazy #happy #fun… Happy birthday to one of my favorite baddies @someone 💗🔥 Love you Jen! 🎈💞', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(467, 0, 'No good deed goes unpunished', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(468, 0, 'MT @someone Good post by @someone - 3 Good Reasons To Skip Music School #MusicBiz hiii @someone ✩⋆ฺ࿐ i hope ur good! #FOUR is absolutely amazing would u mind following me? love you loads! (ू•‧̫•ू⑅) x6,463', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(469, 0, '@someone That''s a good girl now xD', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(470, 0, '@someone Happy Birthday Naan !!! ♥♥♥ J''espère que tu t''es éclatée et qu''on ne t''a pas trop saoulée !!! ;) ;) ♥', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(471, 0, 'The worst part of success is trying to find someone who is happy for you Mahmoud Mohey In Starac #مين_ده', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(472, 0, 'Tech played good but we handed them that game on a silver platter.', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(473, 0, '@someone hi sunshine, could you please follow me and @someone You''ll make us so happy! Hope you''re fine. Love you, thanks! x6,161', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(474, 0, 'Lmao I''m Dead Asf , That Was A Good One On Some Real Shit 😂😂😂', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(475, 0, 'Wait, Michigan-Nicholls State is only on BTN Plus? Good grief. I''m so over this. Just put it on 610-4 or something.', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(476, 0, 'This Kentucky v Louisville game is a good one.', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(477, 0, '@someone lol it''s all good man... Just don''t like any team coached by urban myer', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(478, 0, '@someone he look so good!! he like my complexion now&the real big😂he in talbot hall', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(479, 0, 'Lolz good start doe penn state 😂', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(480, 0, '@someone not that you need to lose weight but Quest Bars are taste really good and are filled with protein and such! @someone Forecast for NW Coastal LA, CA: Nov 29 Good (Green), Nov 30 Good (Green)', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(481, 0, 'This a good ass game though no lie. I respect UK team for coming to play. They going hard', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(482, 0, 'Not a bad start', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(483, 0, '@someone @someone cannot get over how gorgeous Nala is. Soo happy for you both. Love you lots. Such inspirations. Xxxxx', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(484, 0, '@someone @someone good luck. post the results.', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(485, 0, 'Terrible RT @someone AWFUL RT @someone You bad for pouring the milk first. RT @someone 2. ', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(486, 0, 'Bad, bad, Andy Brown.', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(487, 0, '@someone IVE HAD IT FOR ABT A WEEK TOO IDK MAN IM GETTING P GOOD AT THE HARD SONGS MAYBE IM NJST A FAST LEARNER', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(488, 0, 'Good game Wolverines. Hope the best for JT. On to the Big Ten Championship.', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(489, 0, '@someone I want them so bad omg 😻', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(490, 0, 'Everybody gone bad...situation, aggravation, everybody allegation... Griot''s Lament - Trailer: via @someone I took the over in the State game, that''s a good start for me!', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(491, 0, 'Scored on opening kickoff I think state is gonna have a good game', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(492, 0, 'Not so Happy start in the Valley.', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(493, 0, '@someone personally, I think that you are perfect, but there is this thing called ''fittea'' and apparently it''s really good idk ☕💕', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(494, 0, '@someone orrrr that I''ve had alot on my mind. That one gets me good.', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(495, 0, '@someone well I''m from Indiana and I never been to a pro basketball game before. However, I do agree with you they''re not a bad team to watch', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(496, 0, 'It will be so sad if it is Henry''s last ever game tonight #legend', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(497, 0, '@someone Congatulations Maaarco! Perfect match!!! you remember my name and sad cześć! to me :) it is success:) thank you for all!', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(498, 0, 'Good morning baby😏😏 @someone Of course.~ I''d be happy to. :3', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(499, 0, '#WhyWeLoveReynolds he works very hard to make good rice !', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(500, 0, 'I can truly say I have never been so let down, sad, and angry in my entire lifetime.', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(501, 0, 'Good morning :)', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(502, 0, '@someone hi ☀! @someone and I love Night Changes so much, it''s our fav song. Can you follow us and make us happy? Please 🙏💕 x865', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(503, 0, '@someone happy birthday @someone sweet seventeen gurlll💕👸👸 enjoy your day 7bebty thankyou💛💛', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(504, 0, 'Good day of games so far', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(505, 0, '@someone SOLD OUT AND V SAD', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(506, 0, '#WhyWeLoveReynolds because you''re funny, you put smile on the sad face. You make us happy! :) @someone X8', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(507, 0, 'Good game still a dawg fan!!! #GoDawgs 🐶🐶🐶', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(508, 0, 'Yesterday was a good ass day, todays been a good ass day, and im finna have a good ass week 💃', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(509, 0, '#SOSOFITOLDPOST VIDEO: Adewale Ayuba – Happy People Ft. Vector & Tm9ja Georgia literally played so bad fucking stupid', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(510, 0, '@someone @someone @someone @someone @someone @someone @someone Happy Caturday to all from us all 🐈🐈🐈🐈🐈🐈🐈🐕', '2014-12-03 19:45:38', '2014-12-03 19:45:38'),
(511, 0, '@someone Michigan will get better with a new coach. Has not been good for the last half decade. The rivalry needs a good Mich. team.', '2014-12-03 19:45:38', '2014-12-03 19:45:38');
INSERT INTO `Sets` (`SetID`, `Tweet1`, `Tweet2`, `Tweet3`, `Tweet4`, `Tweet5`, `Tweet6`, `Tweet7`, `Tweet8`, `Tweet9`, `Tweet10`, `CreatedOn`) VALUES
(1, 111, 175, 113, 168, 153, 155, 181, 14, 139, 200, '2014-12-03 22:30:46'),
(2, 110, 179, 134, 148, 137, 195, 163, 171, 174, 13, '2014-12-03 22:30:46'),
(3, 186, 151, 129, 184, 140, 166, 183, 189, 132, 114, '2014-12-03 22:30:46'),
(4, 19, 192, 122, 118, 138, 15, 152, 127, 190, 135, '2014-12-03 22:30:46'),
(5, 112, 128, 126, 150, 16, 177, 170, 187, 165, 185, '2014-12-03 22:30:46'),
(6, 12, 162, 143, 136, 11, 159, 141, 178, 116, 130, '2014-12-03 22:30:46'),
(7, 198, 188, 169, 117, 180, 164, 149, 17, 147, 199, '2014-12-03 22:30:46'),
(8, 133, 125, 156, 120, 182, 191, 154, 172, 160, 119, '2014-12-03 22:30:46'),
(9, 124, 196, 173, 115, 144, 121, 123, 131, 193, 146, '2014-12-03 22:30:46'),
(10, 158, 157, 194, 176, 142, 161, 18, 167, 197, 145, '2014-12-03 22:30:46');