-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtranslated_data.txt
2592 lines (2592 loc) · 242 KB
/
translated_data.txt
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
['is', 'song', 'to', 'hi', 'is', 'modi', 'show', 'up', 'or', 'labor', 'or', 'let', 'hi', 'where', 'one', 'from', 'pure', 'world', 'me', 'infuse', 'but', 'is', 'to', 'only', 'turkmenistan', 'hi', 'is', 'great', 'modi', 'show', 'up']
['love', 'sir', 'love', 'soo', 'much', 'urs', 'ts', 'beautyful', 'video']
['gleamed', 'sure', 'jee', 'pahelae', 'our', 'bharat', 'the', 'children', 'or', 'pharaoh', 'firr', 'behaving', 'may', 'the', 'who']
['wah', 'more', 'beautiful', 'geet', 'the', 'emotion', 'huh', 'utnihi', 'beautiful', 'gold', 'sureeli', 'sound', 'is']
['beautiful', 'at', 'once', 'actually', 'style', 'flower', 'desire', 'chhotisi', 'doll', 'my', 'so']
['they', 'patch', 'mangekar']
['spirit', 'gold', 'from', 'of', 'purity', 'of', 'glance', 'is', 'is', 'always', 'of', 'sound', 'may', 'happy', 'stay', 'always']
['joy', 'hind', 'joy', 'price', 'sea', 'watten', 'foreign', 'salammodi', 'show', 'up', 'you', 'regards']
['kash', 'mr.', 'modi', 'you', 'manmohan', 'singh', 'i', 'know', 'phly', 'aa', 'gy', 'the', 'and', 'humara', 'country', 'kha', 'the', 'access', 'gone', 'happen']
['india', 'me', 'student', 'on', 'persecution', 'choir', 'is', 'result', 'to', 'dikhaijra', 'is', 'gold', 'here', 'is', 'they', 'eyes', 'me', 'shade', 'jokra', 'is']
['']
['is', 'song', 'to', 'hi', 'is', 'modi', 'show', 'up', 'or', 'labor', 'or', 'let', 'hi', 'where', 'one', 'from', 'pure', 'world', 'me', 'showing', 'balance', 'is', 'to', 'only', 'turkmenistan', 'hi', 'is', 'great', 'modi', 'show', 'up', 'great']
['mr.', 'modi', 'world', 'messiah', 'he', 'enough', 'that', 'did', 'he', 'or', 'before', 'too', 'karna', 'he']
['bah', 'guru', 'what', 'style', 'is', 'your', 'duniako', 'device', 'the', 'fired', 'huh']
['awsome', 'him', 'kehte', 'huh', 'hindustan', 'of', 'pressure', 'leave', 'poore', 'world', 'me']
['hello', 'down', 'modi', 'show', 'up']
['modi', 'show', 'up', 'you', 'my', 'seven', 'seven', 'so', 'is', 'already', 'you', 'born', 'pure', 'universe', 'me', 'ours', 'hindustan', 'or', 'parcham', 'waved']
['good', 'modi', 'show', 'up', 'you', 'law', 'are', 'hum', 'your', 'with', 'he']
['fantabulous', 'we', 'proud', 'of', 'you', 'modi', 'show', 'up', 'our', 'country', 'of', 'description', 'too', 'improving', 'nazar', 'aa', 'doing', 'sblogon', 'me', 'change', 'see', 'money', 'india', 'my', 'your', 'as', 'hi', 'pm', 'needed', 'bharat', 'of', 'some', 'the', 'floor', 'issues', 'too', 'oh', 'well', 'care', 'try', 'of', 'if', 'necessary', 'asha', 'of', 'soon', 'hi', 'them', 'too', 'correction', 'will']
['wah', 'sir', 'from', 'country', 'actually', 'hands', 'me', 'gone', 'you', 'see', 'what', 'like', 'this', 'hi', 'think']
['its', 'not', 'hindi', 'its', 'urdu', 'and', 'bollywood', 'ager', 'managed', 'is', 'you', 'urdu', 'of', 'steel', 'say']
['narendra', 'modi', 'yeh', 'what', 'bkchodi', 'by', 'are', 'guarantee', 'facebook', 'on', 'work', 'when', 'plz']
['kash', 'is', 'all', 'bangladesh', 'gold', 'pakistan', 'gate', 'toh', 'kitna', 'think', 'happen']
['wah', 'wah', 'turkes']
['masha', 'god', 'good', 'yeh', 'huh', 'custom', 'hindi']
['wah', 'wah', 'may', 'aa', 'gone', 'indian', 'govt', 'should', 'host', 'an', 'international', 'hindi', 'song', 'competition', 'trrkki', 'very', 'guarantee', 'added', 'from', 'little', 'entertainment', 'guarantee', 'jai', 'home', 'baio', 'gold', 'sisters']
['me', 'anger', 'a', 'saale', 'hindus', 'by', 'aata', 'is', 'already', 'imprudence', 'me', 'modi', 'show', 'up', 'or', 'against', 'map', 'huh']
['bharat', 'my', 'world', 'guru', 'become', 'i', 'know', 'someone', 'to', 'year', 'accurate', 'oath', 'the']
['sir', 'yeh', 'tho', 'only', 'you', 'hi', 'what', 'slowly', 'is', 'great', 'sir']
['modi', 'jigood', 'preiminister', 'she']
['jai', 'sri', 'ram', 'name', 'home']
['jan', 'jan', 'or', 'biswas', 'came', 'guarantee', 'on', 'jai', 'hind']
['modi', 'show', 'up', 'before', 'dam', 'pure', 'country', 'your', 'with', 'is']
['raj', 'kapoor', 'of', 'movie', 'the', 'about', 'me', 'sounds', 'i', 'will', 'of', 'ussr', 'me', 'like', 'of', 'are', 'is', 'think', 'is', 'he', 'today', 'too', 'injury', 'there', 'are']
['we', 'are', 'proud', 'our', 'pm', 'from', 'lg', 'stayed', 'of', 'ass', 'country', 'one', 'kcci', 'rah', 'per', 'movable', 'for', 'is', 'oh', 'well', 'i', 'know', 'hm', 'puri', 'world', 'me', 'ours', 'flag', 'special', 'can', 'is']
['modi', 'show', 'up', 'you', 'of', 'hair', 'very', 'actually', 'seems', 'is', 'progress', 'here', 'hi', 'all', 'face', 'is', 'is', 'for', 'from', 'all', 'necessary', 'is', 'of', 'country', 'or', 'vikas', 'guarantee']
['flag', 'my', 'no', 'become', 'me', 'from', 'more', 'themselves', 'to', 'will', 'home', 'of', 'modi', 'show', 'up', 'as', 'pm', 'large', 'fate', 'i', 'know', 'see', 'is', 'already', 'bharat', 'of', 'rftar', 'my', 'increase', 'me', 'someone', 'rough', 'to', 'leave', 'this', 'jai', 'hind']
['children', 'hearts', 'brain', 'my', 'satya', 'cases', 'on', 'lane', 'took', 'is', 'geet', 'my', 'schools', 'me', 'vandana', 'form', 'me', 'mandatory', 'karna', 'needed']
['kartikeya', 'kumar', 'modi', 'hi', 'of', 'the', 'my', 'ag', 'if', 'can', 'is']
['hahaha', 'buddha', 'girls', 'my', 'his', 'money']
['like', 'this', 'pm', 'no', 'flower', 'is', 'gold', 'no', 'hee', 'will', 'happen', 'sometimes']
['someone', 'hindu', 'children', 'someone', 'muslim', 'children', 'hm', 'all', 'hundustani', 'is']
['modi', 'you', 'i', 'stay', 'i', 'know', 'turned', 'mera', 'work', 'is', 'main', 'khalistan', 'huuuuuuu']
['mr.', 'modi', 'mera', 'request', 'is', 'the', 'you', 'ours', 'whatsapp', 'no', 'from', 'take', 'may', 'live', 'pic', 'you', 'see', 'saku']
['mr.', 'modi', 'you', 'ours', 'country', 'or', 'tricolor', 'sari', 'duni', 'me', 'waved', 'hum', 'everyone', 'tanning', 'is', 'you', 'per', 'earth', 'bharti', 'or', 'man', 'world', 'me', 'extended', 'ours', 'you', 'hum', 'bartwasio', 'the', 'the', 'heart', 'me', 'low', 'went', 'guarantee', 'salute', 'sir', 'you', 'jai', 'hind']
['hum', 'bihar', 'or', 'to', 'win', 'went', 'gold', 'up', 'or', 'election', 'won', 'everything', 'now', 'to', 'hum', 'seaton', 'i', 'know', 'won', 'is', 'hume', 'gold', 'humen', 'seaton', 'i', 'know', 'won', 'everything']
['pm', 'guarantee', 'to', 'like', 'this', 'modi', 'as', 'show', 'up', 'hind', 'jay', 'can']
['manka', 'biswas', 'came', 'above', 'here']
['modi', 'is', 'kind', 'so', 'view', 'i', 'know', 'some', 'to', 'happen']
['modi', 'show', 'up', 'hi', 'easy', 'only', 'person', 'is', 'contains', 'country', 'my', 'age', 'the', 'jane', 'of', 'magic', 'gold', 'spirit', 'is']
['mahan', 'bharat', 'or', 'mahan', 'beta', 'has', 'has', 'modhi']
['modi', 'show', 'up', 'before', "let's", 'go', 'haem', 'your', 'need', 'is']
['jai', 'guarantee', 'bharat', 'eye', 'of', 'our', 'culture', 'of', 'already', 'foreigner', 'too', 'follow', 'is']
['modi', 'sir', 'app', 'first', 'obs', 'president', 'guarantee', 'obs', 'the', 'for', 'some', 'somebody', 'bad', 'me', 'someone', 'some', 'to', 'will']
['all', 'or', 'malik', 'one']
['modi', 'all', 'greetings', 'app', 'very', 'achy', 'came', 'what', 'are', 'is', 'is', 'came', 'me', 'ham', 'all', 'your', 'with', 'is', 'or', 'custom', 'apse', 'won', 'is', 'of', 'app', 'mine', 'health', 'or', 'fiction', 'keep', 'app', 'or', 'app', 'organisms', 'hjaro', 'will', 'oath', 'the', 'bharat', 'eye', 'of', 'jai']
['modi', 'show', 'up', 'kale', 'louse', 'or', 'treatment', 'because', 'do', 'very', 'sick', 'is']
['sir', 'app', 'the', 'already', 'hair', 'he', 'anointed', 'with', 'me', 'is', 'yours', 'to', 'walk', 'one', 'from', 'is', 'hair', 'appako', 'this', 'much', 'upper', 'lejayega', 'whether', 'something', 'appako', 'forget', 'of', 'kosice', 'kerenge', 'to', 'unnke', 'before', 'appako', 'to', 'forget', 'nehi', 'maybe', 'country', 'my', 'to', 'forget', 'nazar', 'will']
['jai', 'hind', 'modi', 'sir']
['that', 'app', 'ours', 'country', 'of', 'money', 'my', 'bad', 'what', 'are', 'guarantee', 'ours', 'country', 'to', 'sleep', 'the', 'see', 'nehi', 'you', 'leave', 'dusre', 'of', 'country', 'roam', 'someone', 'the', 'came', 'you', 'nehi', 'will', 'happen', 'modi']
['very', 'guarantee', 'style', 'to', 'roam', 'around', 'eventual', 'from', 'water', 'became', 'i', 'know', 'up', 'going', 'money', 'is']
['jai', 'hind', 'mera', 'bharat', 'mera', 'hindusthan']
['world', 'best', 'pm', 'narender', 'modi', 'show', 'up', 'look', 'india', 'mahan']
['lageraho', 'mr.', 'modi', 'pure', 'of', 'the', 'your', 'with', 'he']
['sir', 'show', 'up', 'you', 'great', 'you', 'only', 'abroad', 'tour', 'when', 'straightening', 'the', 'country', 'of', 'children', 'my', 'fiction', 'will', 'kitna', 'garub', 'is', 'hum', 'log', 'gave', 'time', 'sir']
['pm', 'or', 'together', 'mera', 'together', 'jay', 'hind']
['jay', 'jay', 'guarantee', 'bharat']
['what', 'talk', 'is']
['nice', 'pic', 'modi', 'show', 'up']
['soon', 'aa', 'what', 'vyapam', 'by', 'some', 'please', 'to', 'the', 'pair', 'httyaan', 'access', 'guardian', 'is']
['salute', 'you', 'sir', 'app', 'very', 'labor', 'map', 'is']
['congrats', 'modi', 'jee']
['modi', 'show', 'up', 'you', 'ours', 'work', 'please', 'lattice', 'of', 'talk', 'my', 'mat', 'listen', 'so', 'that', 'children', 'me', 'i', 'know', 'do', 'worse', 'visit', 'to', 'too', 'to', 'nurse', 'to', 'has', 'hi', 'is']
['sir', 'hm', 'all', 'digital', 'india', 'the', 'platform', 'on', 'to', 'walk', 'want', 'is', 'may', 'sngta', 'guarantee', 'kifirst', 'priority', 'ours', 'force', 'my', 'hny', 'needed', 'becaymuse', 'them', 'from', 'all', 'more', 'digital', 'here', 'must', 'is', 'india', 'the', 'for']
['wah', 'modi', 'all']
['grt', 'step', 'grt', 'relation', 'thread', 'job', 'sir']
['some', 'to', 'will', 'tum', 'india', 'the', 'for']
['addd', 'along', 'frnds']
['jab', 'so', 'suraj', 'phoebe', 'will', 'modi', 'show', 'up', 'or', 'name', 'will']
['unstoppable', 'modi', 'sir']
['jada', 'stroll', 'mat', 'stay', 'hamlet', 'my', 'opium', 'somebody', 'soon', 'bare', 'seocho', 'who', 'ham', 'opium', 'powers', 'to', 'found', 'to', 'qq']
['mr.', 'modi', 'ours', 'country', 'or', 'tho', 'fiction', 'keep', 'only', 'gumne', 'the', 'pm', 'bane', 'guarantee', 'did', 'falthi', 'pm', 'is']
['modi', 'show', 'up', 'one', 'like', 'this', 'star', 'is', 'where', 'of', 'course', 'india', 'or', 'star', 'change', 'what', 'eat', 'guarantee', 'mera', 'baio', 'or', 'bheno']
['modi', 'show', 'up', 'namashkarsorry', 'to', 'say', 'but', 'you', 'jab', 'kahin', 'facebook', 'on', 'some', 'share', 'map', 'huh', 'to', 'status', 'my', 'english', 'me', 'update', 'map', 'is', 'secretary', 'will', 'jab', 'aapka', 'updates', 'hindi', 'me']
['jai', 'hind', 'ks', 'chouhan', 'bhinmal', 'jalore']
['world', 'of', 'technology', 'lane', 'by', 'hi', 'its', 'or', 'vikas', 'will', 'happen']
['greetings', 'show', 'up', 'some', 'country', 'the', 'for', 'may', 'too', 'krna', 'wants', 'he', 'low', 'your', 'little', 'with', 'needed', 'so', 'that', 'one', 'thousand', 'should', 'to', 'mera', 'work', 'easy', 'or', 'hubshurat', 'ass', 'country', 'will', 'happen']
['extra', 'time', 'to', 'is']
['sir', 'you', 'to', 'india', 'my', 'forget', 'which', 'or', 'gov', 'peso', 'per', 'holiday', 'per', 'sleep', 'are', 'guarantee', 'you', 'india', 'me', 'toh', 'show', 'hi', 'absent', 'kid']
['hello', 'modi', 'show', 'up']
['app', 'country', 'or', 'dhadkan', 'jai', 'hind']
['devotee', 'i', 'know', 'if', 'follower', 'happen', 'is']
['modi', 'show', 'up', 'our', 'hindustan', 'or', 'name', 'send', 'peak', 'to', 'keep', 'jai', 'bharat', 'eye', 'jai', 'hind']
['namasthae', 'sir', 'jai', 'gurudev']
['is', 'country', 'my', 'need', 'guidelines', 'of', 'varna', 'so', 'much', 'more', 'population', 'or', 'country', 'world', 'no', 'to', 'guarantee', 'accurate', 'already', 'vikas', 'the', 'cases', 'may', 'aata', 'is', 'belief', 'always', 'the', 'for', 'ring', 'what', 'do', 'whether', 'where', 'someone', 'party', 'guarantee', 'the', 'error', 'human', 'country', 'my', 'improvement', 'needed', 'lattice', 'too', 'price', 'by']
['location', 'stay', 'sir']
['sir', 'hi', 'may', 'bihar', 'i', 'know', 'their', 'gold', 'your', 'jberdsht', 'prasnsk', 'he', 'you', 'already', 'country', 'the', 'for', 'selfless', 'father', 'i', 'know', 'came', 'what', 'are', 'is', 'you', 'sidab', 'best', 'the', 'form', 'me', 'jane', 'will', 'salute', 'to', 'you', 'sir']
['our', 'civilization', 'our', 'recognise']
['what', 'to', 'tab', 'is', 'jab', 'kohinoor', 'return', 'lao']
['ache', 'log', 'my', 'ache', 'gifts', 'hi', 'see', 'huh', 'like', 'indians', 'my', 'you', 'thousand', 'sir', 'show', 'up']
['respected', 'sir', 'you', 'today', 'pure', 'bharat', 'of', 'expectation', 'guarantee', 'one', 'new', 'savera', 'you', 'hi', 'rim', 'my', 'shown', 'he', 'you', 'sunlight', 'too', 'take']
['onli', 'modi', 'government']
['modi', 'show', 'up', 'ours', 'is', 'to', 'said', 'gave', 'of', 'already', 'capable', 'is', 'within', 'subsiti', 'on', 'the', 'main', 'agreeable', 'he', 'per', 'please', 'one', 'bar', 'courage', 'million', 'because', 'he', 'was', 'please', 'already', 'capable', 'is', 'within', 'reservation', 'on', 'the']
['jai', 'guarantee', 'modi', 'masturbation']
['sir', 'you', 'i', 'know', 'koch', 'talk', 'krna', 'he', 'necessary']
['sir', 'you', 'what', 'thing', 'guarantee', 'kamal']
['country', 'glory', 'barrier', 'are', 'guarantee', 'aayushman', 'emotion']
['sir', 'so', 'that', 'your', 'not', 'little', 'to', 'time', 'guarantee', 'toh', 'salt', 'by', 'is', 'country', 'of', 'nojwano', 'the', 'for', 'with', 'a', 'some', 'remind', 'more', 'information', 'the', 'for', 'please', 'msg', 'remind', 'me']
['great', 'pm', 'sir', 'yeh', 'all', 'only', 'our', 'modi', 'show', 'up', 'hi', 'what', 'can']
['ours', 'country', 'walking', 'the', 'for', 'she', 'was', 'mine', 'myiya', 'skinny', 'are', 'guarantee', 'sleep', 'sleep', 'the']
['up', 'me', 'some', 'inn', 'bared', 'to', 'mebsp', 'aa', 'will']
['modi', 'saab', 'is', 'considerable', 'country', 'is']
['jai', 'hind', 'manio', 'primary', 'incantation', 'show', 'up', 'me', 'year', 'bharti', 'children', 'flower', 'but', 'me', 'country', 'of', 'year', 'my', 'regards', 'card', 'hunju', 'hind', 'jai', 'eye', 'of']
['mr.', 'modi', 'you', 'thousands', 'regards', 'very', 'pm', 'he', 'came', 'style', 'million', 'write', 'style', 'but', 'aptho', 'honest', 'pm', 'best', 'of', 'luck']
['namastey', 'sir', 'it', 'kind', 'you', 'country', 'of', 'fish', 'correction', 'are', 'uses', 'kind', 'please', 'hum', 'like', 'peoples', 'per', 'with', 'a', 'care', 'please']
['modi', 'show', 'up', 'kay', 'sare', 'came', 'good', 'there', 'is', 'by', 'one', 'work', 'bra', 'there', 'is', 'inco', 'aapan', 'born', 'won', 'election', 'there', 'is', 'the', 'world', 'tour', 'package', 'mythology', 'pm', 'to', 'silent', 'mode', 'or', 'and', 'pm', 'flight', 'mode', 'our', 'country', 'of', 'to', 'fate', 'hi', 'bad', 'there', 'is']
['modi', 'at', 'the', 'time', 'i', 'know', 'india', 'of', 'rim', 'my', 'already', 'wet', 'exam', 'within', 'now', 'so', 'oh', 'well', 'of', 'behind', 'is', 'some', 'that', 'strong', 'and', 'already', 'coming', 'time', 'me', 'too', 'to', 'me', 'are', 'kiik', 'time', 'from', 'came', 'he']
['has', 'has', 'modi', 'house', 'house', 'modi', 'modi', 'show', 'up', 'you', 'the', 'which', 'kongresio', 'the', 'pet', 'me', 'dard', 'guarantee', 'money', 'is', 'your', 'yttr', 'see', 'the']
['sleep', 'the', 'puri', 'world', 'taste', 'to', 'me', 'money', 'pure', 'india', 'my', 'kutta', 'room']
['mr.', 'modi', 'of', 'the', 'born', 'you', 'per', 'believe', 'reso`cha', 'is', 'you', 'our', 'expectations', 'per', 'candid', 'alight']
['prime', 'minister', 'me', 'spth', 'year', 'he', 'of', 'it', 'from', 'our', 'country', 'the', 'sare', 'neta', 'subsidy', 'food', 'band', 'what', 'branch', 'us', 'from', 'me', 'too', 'ours', 'share', 'of', 'subsidy', 'return', 'what', 'rainbow']
['india', 'the', 'from', 'all', 'popular', 'pm', 'modi', 'show', 'up', 'may', 'you', 'request', 'krthu', 'pm', 'become', 'the', 'some', 'you', 'mp', 'the', 'hour', 'to', 'came', 'please', 'you', 'jab', 'too', 'mp', 'came', 'hour', 'arrival', 'my', 'acsept', 'what', 'take', 'his']
['mr.', 'modi', 'nice', 'parson', 'help', 'initialised', 'is', 'age', 'age', 'on', 'happen', 'is', 'kay']
['modi', 'show', 'up', 'you', 'dam', "let's", 'go', 'rim', 'your', 'with', 'is']
['hindustan', 'or', 'sher', 'modi', 'already', 'has', 'country', 'my', 'ours', 'country', 'khobiyo', 'i', 'know', 'intro', 'convoy', 'wants', 'cholera', 'hind']
['gandhi', 'show', 'up', 'gold', 'you', 'mine', 'image', 'i', 'know', 'on', 'in', 'college', 'country', 'me', 'maybe', 'pure', 'wiswa', 'me', 'bharat', 'or', 'male', 'glorify', 'did', 'is', 'wish', 'all', 'the', 'best']
['bharat', 'or', 'mountain', 'narender', 'modi', 'but', 'bihar', 'or', 'what', 'will', 'happen', 'modi', 'jee']
['urgent', 'wrk', 'is', 'your', 'with', 'modi']
['bharat', 'eye', 'of', 'jai']
['gandhi', 'gandhi', 'gandhi', 'finally', 'is', 'gandhi', 'hi', 'what', 'one', 'logo', 'my', 'idiot', 'to', 'me', 'kr', 'of', 'the', 'my', 'sell', 'nothing']
['jai', 'hind', 'jai', 'bharat', 'eye', 'of', 'jai']
['poojjya', 'narendra', 'mr.', 'modi', 'good', 'evening', 'mera', 'one', 'swpn', 'hi', 'apaksat', 'one', 'selpy', 'pure', 'chaiea', 'grace', 'the', 'amount', 'of', 'home', 'ples']
['modi', 'jee', 'you', 'oh', 'well', 'are', 'guarantee', 'that', 'everyone', 'ours', 'make', 'bring', 'guarantee', 'good', 'wishes', 'for', 'you']
['call', 'hind', 'jai', 'bharat']
['modi', 'show', 'up', 'country', 'or', 'male', 'big', 'are', 'he']
['wafiq', 'laxmi', 'white', 'tatya', 'stop', 'subhas', 'chandra', 'forest', 'times', 'bhagat', 'etc', 'are', 'the', 'true', 'leaders']
['gandhiji', 'or', 'undisciplined', 'itnato', 'congress', 'born', 'too', 'to', 'did']
['country', 'my', 'you', 'of', 'need', 'is', 'before', 'the', 'jane', 'the', 'for']
['gandhi', 'he', 'from', 'murderer', 'he', 'killed', 'subhas', 'ch', 'bose']
['don', 'forget', 'godse']
['one', 'aayas', 'admi', 'i', 'will', 'nehru']
['india', 'kbhi', 'too', 'china', 'my', 'behind', 'children', 'kr', 'paaega']
['home', 'home', 'today', 'your', 'reason', 'i', 'know', 'the', 'island', 'world', 'echo', 'up', 'is', 'only', 'modi', 'modi', 'thanks']
['modi', 'to', 'be', 'country', 'me', 'bad', 'guarantee', 'stayed', 'anaaaj', 'its', 'bare', 'me', 'what', 'hair', 'are', 'he', 'you']
['hindustan', 'the', 'others', 'mahatma', 'gandhi', 'nerndr', 'modi', 'jee', 'is', 'has', 'has', 'modi', 'house', 'house', 'modi']
['jai', 'hind', 'mera', 'country', 'great']
['one', 'new', 'history', 'will', 'modi', 'show', 'up', 'or', 'karyekaal']
['today', 'the', 'mahatma', 'gandhi', 'modi', 'jee', 'modi', 'jee', 'me', 'swami', 'vivekananda', 'of', 'image', 'too', 'looks', 'is']
['sometimes', 'subhas', 'ch', 'bose', 'bhagat', 'singh', 'of', 'too', 'talk', 'did', 'somebody', 'sirji', 'whosoever', 'country', 'pieces', 'what', 'that', 'us', 'man', 'gandhi', 'of', 'cculpture', 'anvaran', 'map', 'again', 'had', 'been', 'narendra', 'mr.', 'modi']
['maine', 'and', 'bar', 'sounds', 'of', 'bharat', 'one', 'from', 'bitchaboutsmoking', 'guru', 'banega', 'but', 'yakeen', 'not', 'happen', 'i', 'will', 'per', 'you', 'what', 'leisurely', 'gold', 'creation', 'style', 'i', 'know', 'from', 'poora', 'yakeen', 'guarantee', 'style', 'very', 'soon', 'bharat', 'down', 'guru', 'half', 'will', 'go', 'bharat', 'earth', 'of', 'jai']
['mast', 'lag', 'are', 'guarantee', 'modi', 'all']
['ours', 'country', 'of', 'mhnta', 'my', 'as', 'too', 'country', 'me', 'discussion', 'did', 'jaya', 'bhut', 'hi', 'think', 'is']
['mr.', 'modi', 'you', 'this', 'much', 'money', 'roam', 'me', 'lgarhe', 'guarantee', 'country', 'mortgage', 'to', 'keep', 'is', 'what']
['tomorrow', 'mr.', 'modi', 'nagpur', 'jar', 'male', 'only', 'sir', 'he', 'won', 'aahe', 'sir']
['may', 'custom', 'puri', 'family', 'modi', 'sir', 'i', 'know', 'too', 'name', 'map', 'is']
['oath', 'mataram', 'jai', 'hind', 'jai', 'bharath']
['modi', 'show', 'up', 'bangladesh', 'to', 'all', 'vicious', 'my', 'india', 'what', 'the', 'continue', 'plz', 'sunset', 'glow', 'muslim', 'vicious', 'or', 'vume', 'dakal', 'krleta', 'he', 'has', 'or', 'and', 'spares', 'you', 'card', 'he', 'has']
['mr.', 'modi', 'to', 'ours', 'country', 'my', 'before', 'the', 'jane', 'the', 'for', 'very', 'some', 'kr', 'are', 'is', 'from', 'country', 'the', 'youngest', 'my', 'i', 'born', 'of', 'bari', 'is', 'jay', 'hind']
['modi', 'sir', 'welcome', 'you', 'or', 'hum', 'you', 'like', 'sir', 'of', 'need']
['sir', 'show', 'up', 'you', 'i', 'know', 'bat', 'karna', 'is', 'wainscoting']
['bharat', 'are', 'not', 'nirmaan', 'will', 'do', 'modi', 'show', 'up', 'the', 'most', 'powerful', 'raster', 'banavena', 'modi', 'show', 'up']
['jai', 'hind', 'modi', 'show', 'up']
['hit', 'our', 'indian', 'faoj', 'my', 'pakistan', 'pill', 'i', 'know', 'bhuj', 'money', 'is', 'or', 'nawaz', 'i', 'know', 'hath', 'thousand', 'are', 'is']
['low', 'their', 'kind', 'you', 'age', 'take', 'heed', 'stay', 'hum', 'your', 'with', 'is']
['modi', 'show', 'up', 'sorry', 'bidesoon', 'main', 'mat', 'sleep', 'ours', 'leaders', 'mps', 'my', 'catch', 'difficile', 'from', 'and', 'will', 'huh', 'poor', 'of', 'seocho', 'rs', 'of', 'policies', 'i', 'know', 'some', 'to', 'will', 'happen', 'bother', 'asamion', 'i', 'know', 'money', 'get', 'poor', 'i', 'know', 'to']
['good', 'deed', 'modi', 'bhai', 'show', 'up', 'us', 'ass', 'country', 'fir', 'i', 'know', 'golden', 'sparrow', 'to', 'make', 'where', 'dream', 'sch', 'will', 'happen', 'which', 'for', 'god', 'you', 'select', 'did', 'tnku', 'god', 'modi', 'show', 'up']
['modi', 'show', 'up', 'assam', 'and', 'megalaya', 'me', 'if', 'sport', 'happen', 'he', 'up', 'male', 'he', 'tue', 'plz', 'usha', 'bond', 'article', 'e', 'a']
['may', 'pm', 'upset', 'dupar', 'mo', 'mo']
['modi', 'show', 'up', 'jay', 'ram', 'show', 'up', 'of']
['league', 'rhia', 'play', 'rate', 'with', 'all', 'bharrt', 'venseyo', 'of', 'duaey', 'you', 'with', 'is']
['modi', 'show', 'up', 'pakishtn', 'my', 'muhtod', 'reply', 'everything', 'will', 'happen']
['someone', 'benefit', 'is', 'inco', 'is', 'all', 'view', 'i', 'know']
['what', 'pm', 'bihar', 'me', 'anna', 'want', 'is']
['sir', 'show', 'up', 'kamal', 'kardi', 'ours', 'vides', 'me', 'too']
['chanakya', 'born', 'kha', 'is', 'so', 'that', 'you', 'one', 'foot', 'before', 'half', 'is', 'to', 'first', 'foot', 'behind', 'keep']
['pm', 'show', 'up', 'born', 'toh', 'poore', 'world', 'my', 'is', 'saabit', 'what', 'gave', 'is', 'of', 'india', 'all', 'the', 'with', 'grow']
['modi', 'show', 'up', 'gratis']
['modi', 'sir', 'yeh', 'what', 'place', 'leave', 'went', 'guarantee', 'mere', 'i', 'know', 'toh', 'name', 'too', 'actually', 'i', 'know', 'absent', 'took', 'and', 'money', 'lol']
['modi', 'only', 'name', 'he', 'said', 'and']
['so', 'much', 'energy', 'vaala', 'perhaps', 'he', 'someone', 'money', 'guarantee', 'india', 'or', 'your', 'liye', 'god', 'i', 'know', 'prey', 'do', 'is', 'all', 'with', 'all', 'vikas', 'jai', 'guarantee']
['modi', 'mission', 'establish', 'world', 'brotherhood', 'grt', 'man', 'grt', 'thinking', 'modi', 'boon', 'earth']
['modi', 'show', 'up', 'you', 'before', 'still', 'hum', 'your', 'with', 'he']
['modi', 'oh', 'well', 'too', 'style', 'ours', 'flag', 'special', 'what', 'whatever']
['modi', 'show', 'up', 'bharat', 'of', 'increasing', 'cultivable', 'of', 'have', 'coffee', 'please', 'already', 'bharat', 'my', 'pattern', 'the', 'path', 'per', 'take', 'away', 'doing']
['our', 'country', 'my', 'before', 'grow', 'vale', 'logo', 'me', 'excitement', 'wake', 'up', 'narendra', 'modi', 'show', 'up', 'my', 'god', 'always', 'happy', 'housed']
['your', 'what', 'henna', 'pm', 'show', 'up']
['love', 'modi', 'sir', 'jankibi', 'need', 'guarantee', 'to', 'carry', 'lena', 'haste', 'haste', 'and', 'taller', 'you', 'or', 'morning', 'sintak']
['ahi', 'magic', 'is', 'mr.', 'modi', 'or', 'oh', 'well', 'are', 'log', 'love', 'map', 'is']
['modi', 'show', 'up', 'country', 'the', 'law', 'me', 'some', 'sridhar', 'caryen']
['law', 'modi', 'show', 'up']
['yes', 'yes', 'yes']
['me', 'well,', 'you', 'or', 'very', 'if', 'devna', 'he']
['modi', 'show', 'up', 'you', 'actually', 'brain', 'my', 'me', 'salute', 'card', 'he']
['mr', 'pm', 'us', 'you', 'by', 'graw', 'is', 'manish', 'kumar', 'nasriganj']
['lick', 'time', 'the', 'some', 'country', 'my', 'one', 'capable', 'powerful', 'neta', 'thousand', 'is', 'already', 'overseas', 'me', 'too', 'popular', 'is']
['india', 'or', 'log', 'or', 'vote', 'or', 'pain', 'delhi', 'me', 'smac', 'ayyena', 'india', 'me', 'grandfather', 'mr.', 'modi', 'here', 'bhut', 'problems', 'he', 'solve', 'to', 'or']
['akele', 'modi', 'what', 'because', 'slowly', 'is', 'akela', 'man', 'bad', 'children', 'course', 'accurate']
['joy', 'hind', 'could', 'eye', 'of', 'joy']
['mr.', 'modi', 'you', 'great', 'guarantee', 'but', 'to', 'see', 'kahin', 'sea', 'relations', 'ache', 'map', 'map', 'your', 'room', 'on', 'out', 'visit']
['you', 'great', 'guarantee', 'modi', 'show', 'up', 'your', 'face', 'i', 'know', 'our', 'sir', 'think', 'i', 'know', 'peak', 'guarantee', 'style', 'world', 'me', 'jay', 'guarantee']
['sicha', 'department', 'of', 'kind', 'someone', 'care', 'it', 'came', 'out', 'already', 'most', 'important', 'is', 'log', 'ours', 'children', 'my', 'governmental', 'college', 'of', 'place', 'private', 'i', 'connect', 'me', 'read', 'is']
['if', 'is', 'country', 'me', 'change', 'lane', 'is', 'to', 'contact', 'do', 'on', 'mere', 'pass', 'suggestion', 'gold', 'groups', 'which', 'is', 'teachero', 'or', 'the', 'wages', 'filled', 'mounting', 'the', 'already', 'sote', 'is', 'i', 'connect', 'me', 'statue', 'fir', 'comment', 'do']
['to', 'roam', 'around', 'band', 'somebody', 'mr.', 'modi', 'from', 'little', 'government', 'my', 'too', 'dekhlo']
['great', 'prime', 'minister', 'modi', 'show', 'up', 'jai', 'hind']
['pm', 'modi', 'show', 'up', 'very', 'moderate', 'vikas', 'chili', 'huh']
['modi', 'show', 'up', 'you', 'teo', 'amazing', 'what', 'gave', 'show', 'up', 'you', 'or', 'work', 'given', 'hi', 'wipe', 'maja', 'aa', 'go', 'is', 'tv', 'per', 'viewed', 'children', 'of', 'mud', 'fresh', 'congratulations', 'show', 'up']
['honorable', 'decent', 'narendra', 'modi', 'show', 'up', 'is', 'south', 'you', 'lahw', 'male', 'is', 'me', 'you', 'by', 'tanning', 'is', 'you', 'home', 'home', 'so']
['modi', 'show', 'up', 'wainscoting', 'app', 'per', 'tanning', 'but', 'country', 'or', 'vikas', 'tab', 'will', 'happen', 'jab', 'say', 'indians', 'of', 'hair', 'appake', 'like', 'will']
['today', 'mere', 'country', 'my', 'anteraatma', 'i', 'know', 'share', 'flower', 'honable', 'pm', 'thousand']
['modi', 'show', 'up', 'you', 'jesa', 'someone', 'children', 'thank', 'you', 'you', 'country', 'of', 'how', 'lease', 'map', 'is', 'like', 'if', 'beta', 'mine', 'what', 'my', 'worships', 'is']
['narendra', 'damodar', 'modi', 'good', 'from', 'kab', 'will', 'babu', 'is', 'someone', 'measures']
['ppp', 'model', 'lamp', 'in', 'rajasthan', 'is', 'lalit', 'modi']
['tajikistan', 'born', 'gurudev', 'tagore', 'mahatma', 'gandhi', 'of', 'pito', 'of', 'founding', 'by', 'bharat', 'declarative', 'unity', 'my', 'strengthened', 'did']
['hammers', 'vote', 'to', 'will', 'meet', 'you', 'so', 'that', 'us', 'from', 'muslim', 'of', 'cap', 'wore', 'to']
['mahan', 'bibhutio', 'my', 'so', 'karna', 'bags', 'dridhta', 'or', 'from', 'all', 'priceless', 'marg', 'is', 'you', 'conscious', 'so']
['hi', 'app', 'of', 'cry', 'very', 'good', 'gurdev', 'all', 'i', 'know', 'good']
['you', 'hindutva', 'sometimes', 'on', 'forget', 'to']
['hindustan', 'or', 'raja', 'he', 'bhai']
['good', 'hair', 'pm', 'narendra', 'modi']
['plz', 'sir', 'you', 'i', 'know', 'talk', 'what', 'born', 'is']
['cry', 'bar', 'again', 'modi', 'government']
['oh', 'great', 'has', 'from', 'you', 'see', 'the', 'absent', 'energy', 'get', 'is', 'you', 'geo', 'major', 'will', 'sir', 'show', 'up', 'or', 'india', 'my', 'world', 'fear', 'make']
['write', 'bast', 'pm', 'guarantee', 'modi', 'show', 'up', 'sade', 'punjabi']
['sir', 'ours', 'national', 'employment', 'harvested', 'me', 'sms', 'job', 'the', 'for', 'news', 'paper', 'me', 'add', 'kindness', 'he', 'what']
['me', 'you', 'the', 'near', 'mail', 'did', 'is', 'mughhhhhe', 'you', 'i', 'know', 'answer', 'needed']
['modi', 'the', 'roll', 'chooooooooth', 'me', 'mera', 'booooooooooolaaaaaaaaaaaaaaa']
['bharat', 'eye', 'the', 'show', 'up']
['if', 'share', 'somebody', 'plz']
['bjp', 'vijay', 'hooooooooooooo']
['you', 'too', 'liar', 'nickel', 'wada', 'tera', 'wada', 'hi', 'nickel']
['ours', 'pm', 'modi', 'or', 'incinerate']
['pm', 'saab', 'your', 'swatch', 'bharat', 'mission', 'the', 'himachal', 'of', 'capital', 'that', 'one', 'photo', 'sent', 'is', 'i', 'tomorrow', 'that', 'of', 'course', 'see', 'lena']
['priya', 'narendra', 'modi', 'pm', 'show', 'up', 'sprinkle', 'guarantee', 'good', 'night']
['pm', 'uncle', 'cry', 'bar', 'new', 'bihar', 'bihar', 'of', 'rim', 'will', 'bjp', 'government']
['develop', 'only', 'desert', 'me', 'happen', 'is', 'part', 'me', 'to']
['along', 'vajpayee', 'my', 'arrogant', 'like', 'did', 'i', 'will', 'their', 'ideal', 'great', 'i', 'will', 'his', 'bad', 'app', 'then', 'sir', 'salute', 'you']
['sometimes', 'house', 'me', 'too', 'money', 'somebody', 'modi', 'show', 'up']
['pm', 'modi', 'show', 'up', 'of', 'jai', 'guarantee']
['because', 'your', 'about', 'main', 'knows', 'he', 'to', 'you', 'too', 'mere', 'about', 'me', 'shin', 'information', 'to']
['very', 'beautiful', 'hearty', 'subkamnaie']
['mr.', 'modi', 'humane', 'you', 'wot', 'gave', 'but', 'muze', 'from', 'lag', 'money', 'he', 'of', 'me', 'algae', 'i', 'will']
['greetings', 'jai', 'guarantee']
['good', 'morning', 'to', 'all', 'of', 'up', 'shri', 'narendra', 'bhai', 'modi', 'show', 'up', 'jay', 'shri', 'krishnathanks', 'to', 'both', 'of', 'usangita', 'patil', 'mlvijay', 'kumar', 'vicky', 'mavn', 'sonijay', 'shri', 'krishna']
['modi', 'show', 'up', 'one', 'easy', 'shashank', 'is', 'already', 'wacky', 'of', 'hindustan', 'my', 'hindustan', 'he', 'to', 'me', 'doing', 'is', 'from', 'jaake', 'hindustan', 'progress', 'what', 'money', 'is', 'love', 'modi', 'government']
['modi', 'sir', 'my', 'home', 'home', 'we', 'garb', 'it', 'happens', 'kiuki', 'our', 'homeland', 'born', 'yesa', 'birpurus', 'my', 'birth', 'diyahe']
['your', 'someone', 'plan', 'plan', 'actually', 'purebred', 'i', 'know', 'use', 'to', 'guarantee', 'swamp']
['may', 'you', 'i', 'know', 'get', 'wants', 'he', 'but', 'may', 'one', 'thousand', 'to', 'pawga']
['modi', 'show', 'up', 'bags', 'guarantee', 'you', 'foreign', 'me', 'your', 'deyan', 'hold', 'and', 'money', 'is', 'on', 'sir', 'sir', 'you', 'please', 'soon', 'i', 'know', 'staying', 'fir', 'terrestrial', 'of', 'talk', 'karna', 'waiting', 'for', 'it', 'sir', 'take', 'care', 'sir']
['narendra', 'modi', 'show', 'up', 'plz', 'court', 'me', 'already', 'cases', 'pending', 'is', 'use', 'soon', 'gammer', 'mile', 'such', 'someone', 'upai', 'plan', 'do']
['election', 'jntak', 'choosing', 'happen', 'the', 'neta', 'group', 'tell', 'large', 'wade', 'map', 'but', 'place', 'engragi', 'sasan', 'if', 'change', 'could', 'which', 'we', 'saw', 'but', 'where', 'change', 'to', 'where', 'power', 'happiness', 'large', 'scam', 'rim', 'or', 'weighs', 'rim', 'leah', 'home', 'pryoge', 'to', 'and', 'money']
['bhai', 'swirling', 'rhio', 'work', 'someone', 'on', 'curry']
['or', 'some', 'guarantee', 'and', 'on', 'guarantee', 'by', 'panda', 'governmental', 'cash', 'by', 'world', 'of', 'course', 'sleep', 'league']
['jb', 'choosing', 'or', 'adikar', 'rim', 'my', 'to', 'jb', 'them', 'location', 'the', 'error', 'man', 'chosen', 'style', 'to', 'yr', 'home', 'sahe', 'his', 'tanasahi', 'reject', 'do', 'usa', 'by', 'this', 'neta', 'rim', 'bath', 'dislocated', 'liable', 'will']
['sunil', 'show', 'up', 'universe', 'the', 'sher', 'huh', 'our', 'modi', 'show', 'up']
['india', 'or', 'thing', 'like', 'this', 'from', 'jaiaga', 'to', 'india', 'may', 'someone', 'educated', 'person', 'nehi', 'nicklegi']
['plz', 'modi', 'show', 'up', 'your', 'country', 'basioko', 'explain', 'of', 'buddha', 'or', 'birth', 'nepalmen', 'is', 'huh', 'on', 'of', 'india', 'me']
['modi', 'sir', 'you', 'come', 'bihar', 'because', 'neccessary', 'to', 'bjp', 'government', 'in', 'bihar', 'has', 'has', 'modi', 'house', 'house', 'modi']
['in', 'college', 'stroll', 'stay', 'gold', 'india', 'or', 'my', 'hell', 'me', 'allowance', 'do', "your's", 'modi', 'this', 'only', 'story']
['modi', 'born', 'some', 'did', 'of', 'to', 'where', 'page', 'children', 'per', 'where', 'will', 'me', 'pure', 'world', 'of', 'course', 'sleep', 'kr', 'will']
['background', 'music', 'plz', 'flower', 'bangkok', 'on', 'spring', 'bangkok', 'may', 'to', 'sanam', 'tera', 'love', 'bangkok']
['modi', 'show', 'up', 'you', 'dash', 'khenhi', 'sbheka', 'diloke', 'guarantee']
['unless', 'sun', 'chand', 'will', 'till', 'then', 'modi', 'show', 'up', 'government', 'will', 'jay', 'hind']
['has', 'has', 'modi', 'house', 'house', 'modi', 'all', 'world', 'modi', 'show', 'up', 'god', 'work', 'sir', 'show', 'up']
['how', 'khoobsurat', 'is', 'photo']
['modi', 'show', 'up', 'the', 'sun', 'thousands', 'on', 'kat', 'doing', 'he', 'uanka', 'kuc', 'inn', 'already', 'with', 'a', 'suvari', 'guy', 'my', 'garnished', 'he', 'a', 'my', 'phases', 'do', 'the', 'hate', 'per', 'kat', 'kr', 'saying', 'per', 'in', 'you', 'do', 'salo', 'my']
['large', 'note', 'i', 'know', 'see', 'are', 'guarantee']
['more', 'good', 'fortune', 'is', 'neta', 'log', 'vides', 'roam', 'me', 'expenditure', 'what', 'kid', 'so', 'that', 'where', 'poor', 'me', 'bat', 'of', 'to', 'how', 'many', 'or', 'pet', 'filled', 'will', 'go']
['sir', 'gay', 'mat', 'who', 'murders', 'hand']
['while', 'actually', 'decision', 'actually', 'sachi', 'my', 'actually', 'while', 'by', 'actually', 'decision', 'gonna', 'take', 'our', 'with', 'is', 'tho', 'our', 'bharath', 'my', 'our', 'bharat', 'inhabitants', 'my', 'our', 'what', 'needed', 'sir', 'show', 'up', 'hum', 'all', 'your', 'with', 'is', 'sir', 'show', 'up']
['home', 'lying', 'guarantee', 'wheels', 'me', 'someone', 'to', 'is', 'cover', 'me', 'modi', 'is', 'best', 'pm']
['bapu', 'nirdos', 'auko', 'soon', 'spring', 'lao']
['now', 'goods', 'vote', 'guarantee', 'goes', 'bjp', 'seat', 'too', 'to', 'mlaygi', 'jai', 'rajasthan']
['pm', 'ky', 'with', 'foreign', 'minister', 'too', 'modi']
['srijem', 'dinner', 'mantra', 'welcome', 'you', 'star', 'is']
['you', 'best', 'modi', 'show', 'up']
['modi', 'show', 'up', 'ours', 'said', 'i', 'will', 'of', 'assam', 'i', 'know', 'all', 'bangladeshi', 'soon', 'hi', 'will', 'by', 'ours', 'to', 'shit', 'call', 'on', 'call', 'gave', 'already', 'naukile', 'word', 'takes', 'i', 'know', 'assam', 'they', 'he', 'his', 'for', 'to', 'ours', 'volvo', 'bus', 'send', 'that', 'apse', 'we', 'is', 'expectation', 'nehi', 'exam']
['your', 'nor', 'i', 'know', 'that', 'wale', 'salo', 'me', 'bharat', 'from', 'all', 'age', 'will', 'happen', 'or', 'your', 'widesh', 'nor', 'spares', 'hi', 'fine']
['enjoy', 'krlo', 'our', 'cash', 'i', 'know', 'world', 'tour', 'waw']
['mr.', 'modi', 'ahi', 'she', 'country', 'is', 'already', 'hume', 'gold', 'strong', 'will', 'build']
['will', 'together', 'country', 'or', 'together', 'mature', 'trees', 'progress', 'country', 'of', 'improved']
['first', 'bar', 'country', 'of', 'on', 'half', 'mountain', 'dikt', 'he', 'specify', 'wainscoting', 'affectation', 'he', 'regards', 'to']
['welcome', 'modi', 'jee']
['attention', 'i', 'know', 'sir', 'bike', 'i', 'know', 'mt', 'provides', 'know', 'hahaha']
['great', 'modi', 'show', 'up']
['please', 'sir', 'your', 'live', 'vito', 'power', 'dila', 'everything']
['dress', 'work', 'of', 'nh', 'is', 'already']
['sir', 'you', 'before', "let's", 'go', 'hum', 'your', 'time', 'he']
['sir', 'some', 'ours', 'country', 'me', 'too', 'sleep', 'took', 'should', 'kahin', 'lightning', 'to', 'kahin', 'you', 'gold', 'kahin', 'road', 'hi', 'to', 'hiachce', 'from', 'jab', 'will', 'come', 'will', 'you', 'to', 'aao']
['bharat', 'country', 'the', 'for', 'avatar', 'is', 'pm', 'modi', 'show', 'up']
['price', 'my', 'shove', 'tp', 'mat', 'somebody']
['already', 'you', 'the', 'sat', 'rat', 'from', 'felt', 'stayed']
['sir', 'reconnection', 'the', 'for', 'fir', 'i', 'know', 'know', 'pad', 'accurate', 'is', 'what']
['kailash', 'vijayavargiya', 'my', 'fired', 'spring', 'will', 'do', 'you', 'the', 'mine', 'shin', 'labor', 'or', 'haamare', 'broshe', 'on', 'water', 'firwaiyega']
['india', 'or', 'times', 'as', 'fall', 'sleep', 'the', 'will', 'the', 'bad', 'you', 'nehin', 'coming']
['brave', 'great', 'pm', 'but', 'a', 'soldiers', 'or', 'too', 'someone', 'solutation', 'already', 'phylactery', 'mantra', 'pat', 'from', 'i', 'know', 'hunger', 'hardtal', 'oar', 'seated', 'gold', 'our', 'media', 'is', 'news', 'my', 'showing', 'too', 'children', 'money', 'wah', 'india', 'or', 'media', 'wah']
['the', 'island', 'where', 'i', 'know', 'good', 'hindusta', 'our']
['already', 'closed', 'killing', 'band', 'to', 'what', 'accurate', 'woh', 'our', 'came', 'or', 'nehi']
['thank', 'you', 'sir', 'your', 'yatra', 'i', 'know', 'country', 'my', 'of', 'course', 'profit', 'will', 'happen', 'wainscoting', 'tanning', 'is', 'app', 'by', 'gold', 'your', 'policies', 'by']
['great', 'sir', 'unless', 'suraz', 'chand', 'will', 'mr.', 'modi', 'or', 'name', 'will']
['modi', 'show', 'up', 'zindabaad', 'our', 'country', 'or', 'strong', 'huh', 'joh', 'india', 'of', 'image', 'change']
['tan', 'gold', 'mann', 'country', 'kay', 'for', 'greetings', 'modi', 'show', 'up']
['great', 'modi', 'show', 'up', 'welcomes']
['today', 'has', 'citizen', 'the', 'man', 'main', 'one', 'hi', 'wanting', 'is', 'of', 'narendra', 'modi', 'some', 'will', 'do', 'today', 'her', 'yuba']
['sat', 'sat', 'so']
['welcome', 'back', 'mr', 'pm', 'from', 'blue', 'from', 'will', 'india', 'me', 'is', 'money', 'oxygen', 'father', 'or', 'nehi', 'is', 'our', 'is', 'our', 'money', 'i', 'know', 'abroad', 'and', 'what', 'stroll', 'guarantee', 'extract', 'nehi', 'arrival']
['svagatam', 'earth', 'bharti', 'ours', 'pass', 'bubble', 'doing']
['became', 'in', 'pakistanio', 'or', 'some', 'please', 'some', 'pakistani', 'log', 'daily', 'your', 'name', 'with', 'india', 'walo', 'my', 'abuses', 'kid']
['show', 'up', 'the', 'sun', 'this', 'only', 'khare', 'see', 'guarantee']
['sehar', 'aa', 'style']
['became', 'you', 'i', 'know', 'important', 'talk', 'what', 'on', 'he', 'became', 'mera', 'no']
['punjab', 'me', 'dissat', 'ferozpur']
['one', 'rank', 'one', 'pension', 'the', 'for', 'pease', 'to', 'is', 'sharm', 'somebody', 'forget', 'went', 'rewari', 'of', 'first', 'relli', 'my', 'pm', 'saab']
['sir', 'you', 'already', 'came', 'country', 'the', 'lea', 'what', 'are', 'is', 'his', 'lie', 'you', 'enhanced']
['modi', 'jee', 'and', 'mgnarega', 'all', 'i', 'know', 'top', 'by', 'is', 'rural', 'cetro', 'may', 'that', 'playa', 'hand', 'is', 'but', 'esme', 'gram', 'employment', 'sewk', 'in', 'all', 'vawisy', 'you', 'the', 'hath', 'may', 'is', 'hum', 'ours', 'family', 'or', 'lalan', 'follow', 'behaviour', 'i', 'know', 'children', 'kr', 'can', 'beware', 'my', 'good', 'education', 'too', 'children', 'of', 'can']
['jai', 'hind', 'evil']
['sir', 'now', 'country', 'the', 'all', 'state', 'or', 'tour', 'begin', 'born', 'to', 'out', 'like', 'the', 'election', 'me', 'you', 'out', 'the', 'aab', 'look', 'kitna', 'change', 'change', 'flower', 'is', 'the', 'to']
['modi', 'the', 'spirit', 'my', 'home', 'home', 'so']
['aabay', 'india', 'photo', 'cow', 'or', 'urine', 'pinay', 'no', 'pakistan', 'aja', 'you', 'karachi', 'or', 'urine', 'eat', 'ly', 'jaounga', 'pink', 'liter', 'pelaounga', 'or', 'eat', 'is', 'you', 'cow', 'or', 'cow-dung', 'well,', 'khelaounga', 'earth', 'the', 'concession', 'tere', 'or', 'teray', 'in', 'loray', 'gardeners', 'of']
['sir', 'hum', 'pad', 'write', 'what', 'be', 'unemployed', 'sleep', 'rha', 'huh', 'their', 'ethnical', 'hard', 'work', 'what', 'kye', 'lying', 'or', 'etna', 'fall', 'despite', 'be', 'someone', 'work', 'children', 'one', 'thousand', 'stayed', 'all', 'cash', 'kye', 'behind', 'huh', 'sir', 'plz', 'hlp', 'me', 'sir']
['future', 'of', 'talk', 'mat', 'somebody', 'our', 'today', 'worse', 'money', 'is']
['trust', 'you', 'so', 'very', 'nice', 'improvement', 'sometimes', 'we', 'ours', 'pm', 'i', 'know', 'to', 'she', 'was', 'i', 'will', 'first', 'bar', 'our', 'talk', 'i', 'stay', 'however,', 'doing', 'is', 'me', 'asahi', 'pm', 'hindustan', 'of', 'land', 'on', 'needed', 'i', 'will']
['sir', 'country', 'which', 'they', 'the', 'for', 'some', 'to', 'or', 'will', 'the', 'again', 'is', 'air', 'india', 'me', 'hi', 'gumtree', 'will']
['successful', 'foreign', 'yatra', 'the', 'for', 'congratulations', 'guarantee', 'sir']
['sir', 'what', 'unemployment', 'or', 'someone', 'treatment', 'is', 'your', 'near']
['jai', 'guarantee', 'modi', 'show', 'up']
['is', 'photographer', 'that', 'gone', 'what', 'blurred', 'photo', 'aayi']
['house', 'me', 'welcome', 'gajanand', 'show', 'up', 'from', 'house', 'me', 'welcome']
['log', 'ours', 'dream', 'pure', 'to', 'the', 'for', 'puri', 'world', 'my', 'too', 'doha', 'of', 'accurate']
['poor', 'ro', 'are', 'or', 'tum', 'like', 'kr', 'are', 'guarantee']
['honorable', 'primary', 'respected', 'minister', 'you', 'regards', 'our', 'ramazan', 'eid', 'mubarak']
['india', 'father', 'randi', 'magana', 'they', 'farmers', 'upcoming', 'tsu', 'sayaka']
['ohhhh', 'bsss', 'krrrr', 'modi', 'tenuous', 'sleep', 'toh', 'shiva', 'horror', 'someone', 'kmmm']
['its', 'not', 'or', 'to', 'came', 'is', 'children', 'walked', 'is', 'for', 'in', 'country']
['country', 'of', 'bad', 'luck', 'dismantle', 'nothing', 'or', 'they', 'wrote', 'to', 'taste']
['congratulation', 'sir', 'show', 'up']
['jealous', 'the', 'lund', 'mine', 'in', 'skinny', 'stayed', 'randi', 'the']
['extremist', 'prick', 'with', 'hateful', 'ideologies', 'and', 'hostile', 'intentions', 'towards', 'neighbors', 'ultimate', 'dueschbag']
['she', 'came', 'it']
['heartly', 'salute', 'you', 'mr', 'prime', 'minister', 'your', 'term', 'bharat', 'the', 'year', 'the', 'history', 'me', 'svarnim', 'south', 'constant', 'will', 'happen', 'jai', 'hind']
['modi', 'show', 'up', 'you', 'my', 'all', 'born', 'believe', 'did', 'is', 'but', 'us', 'by', 'you', 'return', 'see', 'are', 'is', 'mp', 'balaghat', 'may', 'you', 'of', 'think', 'blue', 'dino', 'i', 'know', 'pure', 'to', 'meeting', 'is', 'spares', 'log', 'diseases', 'the', 'surround', 'may', 'all', 'you', 'hi', 'right', 'what', 'slowly', 'guarantee']
['shi', 'sell', 'sell', 'country', 'mat', 'bey', 'everything']
['mera', 'bharat', 'mahan', 'modi', 'show', 'up', 'true', 'human', 'of', 'the', 'of', 'dilayenge', 'actually', 'recognise', 'jai', 'hind', 'jai', 'bharat']
['mr.', 'modi', 'govt', 'wonderful', 'programs', 'jaadu', 'your', 'clean', 'your', 'suse', 'bharat', 'money', 'your', 'account', 'your', 'jean', 'wealth', 'body', 'your', 'mat', 'your', 'yoga', 'day', 'always', 'your', 'responsibility', 'your', 'always', 'help', 'always', 'boats', 'mobile', 'your', 'always', 'your', 'gold', 'selfie', 'be', 'your', 'save', 'girl', 'child', 'program', 'amazing', 'fe', 'lottery']
['good', 'from', 'aa', 'which']
['she', 'modi', 'jee', 'kyai', 'say', 'guarantee', 'you', 'samaritans', 'bihar', 'say', 'you', 'jada', 'witness', 'mill', 'to', 'bihar', 'my', 'hi', 'i', 'want', 'added', 'is', 'pleace', 'bihar', 'my', 'taraki', 'may', 'please', 'jaai', 'say', 'gujrt', 'my', 'tarrki', 'may', 'what', 'is', 'it']
['sometimes', 'to', 'indian', 'me', 'stay', 'modi', 'show', 'up', 'cashmere', 'our', 'birth', 'shid', 'rights', 'he', 'will', 'congress', 'born', 'idiot', 'make', 'you', 'my', 'won', 'he', 'from', 'believe', 'mat', 'cupboard', 'pilija', 'became', 'more', 'too', 'wrong', 'clause', 'he', 'cashmere', 'me', 'use', 'be', 'done', 'baki', 'of', 'the', 'to', 'ham', 'midnight', 'clahi', 'long']
['you', 'of', 'kind', 'hi', 'the', 'race', 'hard', 'work', 'what', 'money', 'but', 'children', 'plane', 'attention', 'guarantee', 'doing', 'farmers', 'my']
['ham', 'log', 'ours', 'you', 'my', 'luck', 'sali', 'samajte', 'is', 'of', 'country', 'my', 'you', 'like', 'pm', 'mile', 'jay', 'hind']
['country', 'you', 'expert', 'blessed', 'flower', 'the', 'iron', 'man']
['sir', 'your', 'shoots', 'to', 'fan', 'he', 'is', 'by', 'some', 'well,', 'what', 'accurate', 'he', 'is']
['case', 'randi', 'or', 'bacha']
['me', 'ours', 'business', 'start', 'karen', 'keep', 'lite', 'lakes', 'of', 'need', 'is']
['your', 'incoming', 'i', 'know', 'sir', 'our', 'country', 'my', 'freedom', 'one', 'thousand', 'added', 'is']
['one', 'bar', 'bihar', 'my', 'too', 'look']
['mr.', 'modi', 'our', 'one', 'gujaris', 'huh', 'the', 'hum', 'one', 'song', 'than', 'khulna', 'wants', 'huh', 'the', 'new', 'new', 'elcoman', 'sari', 'lokoko', 'help', 'karna', 'or', 'its', 'for', 'help', 'of', 'proyjon', 'huh']
['full', 'world', 'today', 'bharat', 'of', 'or', 'see', 'money']
['mother', 'india', 'lovely', 'son', 'modi', 'jahu']
['what', 'flower', 'your', 'wada', 'woh', 'promise', 'woh', 'will']
['what', 'show', 'up', 'modi', 'show', 'up', 'mast', 'lag', 'are', 'guarantee']
['home', 'guard', 'logo', 'of', 'bla', 'somebody', 'pull', 'down', 'some', 'me', 'large', 'large', 'work', 'for', 'cotta', 'to', 'work', 'kerdo', 'pull', 'down']
['bus', 'filled', 'ink', 'daath', 'together', 'views', 'kaa']
['choir', 'or', 'dogs', 'per', 'smile', 'mt', 'inn']
['sir', 'plz', 'jhansi', 'of', 'lightning', 'the', 'arrangement', 'right', 'cranes', 'of', 'salt', 'do', 'thank', 'you']
['sir', 'you', 'skill', 'development', 'programs', 'lunch', 'this', 'which', 'millions', 'logo', 'my', 'employment', 'will', 'get', 'thanks', 'sir']
['sir', 'suse', 'bharat', 'mission', 'my', 'gawon', 'i', 'know', 'urban', 'of', 'side', 'lao', 'sir', 'mission', 'of', 'jinmedari', 'nagar', 'nigam', 'or', 'council', 'my', 'responsibility', 'do', 'thanks']
['all', 'with', 'all', 'vikas', 'god']
['home', 'modi', 'show', 'up', 'bihar', 'the', 'yua', 'unemployed', 'hi', 'will', 'bihar', 'of', 'gandi', 'politics', 'me', 'sare', 'yua', 'piss', 'are']
['all', 'you', 'ips', 'amitabh', 'thakur', 'of', 'help', 'kigiye', 'but']
['vikas', 'the', 'for', 'govt', 'my', 'severe', 'rule', 'banana', 'needed']
['dear', 'prime', 'minister', 'job', 'the', 'for', 'some', 'cry', 'only', 'policies', 'make', 'i', 'know', 'employment', 'of', 'problem', 'do', 'you', 'children', 'will']
['modi', 'saab', 'flaws', 'gives', 'arm', 'created', 'will', 'also', 'hooks']
['sir', 'from', 'bihar', 'me', 'then', 'nitish', 'or', 'sweep', 'pure', 'inn']
['house', 'house', 'modi', 'hi', 'modi', 'oh', 'well', 'logo', 'of', 'hair', 'frying', 'the', 'is', 'modi', 'show', 'up', 'varies', 'i', 'know', 'think', 'make', 'map', 'is']
['modi', 'jorj', 'before', 'still', 'ham', 'your', 'with', 'is', 'jai', 'bharat']
['bjp', 'my', 'lao', 'beiapam', 'somebody', 'again', 'mader', 'because', 'aatam', 'killing', 'tell']
['modi', 'show', 'up', 'you', 'or', 'en', 'asakeam', 'fail', 'is']
['your', 'skill', 'scheme', 'very', 'good!', 'helog', 'came', 'krna', 'learn', 'to', 'km', 'i', 'know', 'km', 'unemployed', 'to', 'to', 'will', 'thanks', 'to', 'pm', 'for', 'it']
['modi', 'as', 'you', 'of', 'plan', 'greatest', 'is', 'hum', 'you', 'with', 'is', 'sir']
['country', 'or', 'vikas', 'has', 'someone', 'petrol', 'or', 'diseal', 'the', 'rate', 'big', 'what', 'hi', 'queue', 'krna', 'wants', 'is']
['bikaner', 'kb', 'there', 'fish', 'bad', 'bikaner', 'surdhna', 'gave', 'jane', 'guardian', 'road', 'or', 'too', 'kbit', 'movable', 'the', 'on', 'us', 'road', 'on']
['india', 'digital', 'to', 'me', 'everything', 'modi', 'government', 'pm']
['thnx', 'sir', 'show', 'up']
['came', 'me', 'believe', 'maps', 'is', 'bjp']
['today', 'am', 'totally', 'confuse', 'bcoz', 'may', 'section', 'show', 'up', 'my', 'best', 'pm', 'manta', 'harassment', 'think', 'is', 'modi', 'show', 'up', 'best', 'pm', 'of', 'bharat', 'ill', 'will', 'jai', 'jai', 'guarantee']
['hum', 'bhuke', 'wall', 'are', 'is', 'sir']
['dhanyavad', 'exit', 'show', 'up', 'shubharatri', 'show', 'up']
['modi', 'show', 'up', 'is', 'error', 'talk', 'is', 'already', 'communicate', 'crore', 'or', 'stage', 'installed', 'money', 'they', 'have', 'please', 'think', 'about', 'it']
['from', 'nevertheless', 'lattice', 'pm', 'i', 'know', 'you', 'the', 'vikas', 'of', 'bat', 'to', 'artificial', 'exam', 'muze', 'think', 'is', 'is', 'ache', 'dino', 'of', 'initialised', 'guarantee', 'that', 'is']
['respected', 'pm', 'show', 'up', 'your', 'not', 'seek', 'plan', 'very', 'lighted', 'is', 'you', 'regards']
['bharat', 'modi', 'the', 'with']
['great', 'modi', 'show', 'up', 'duja', 'someone', 'children', 'you', 'as']
['mission', 'good', 'is', 'low', 'song', 'actually', 'i', 'know', 'guarantee']
['forget', 'jawo', 'of', 'hour', 'or', 'some', 'will', 'happen']
['modi', 'show', 'up', 'so', 'that', 'will', 'first', 'pm', 'bane', 'from', 'to', 'today', 'india', 'of', 'tsbir', 'second', 'the', 'sayad', 'india', 'china', 'the', 'equal', 'me', 'happen']
['ground', 'by', 'somebody', 'is', 'more', 'rubbish', 'karna', 'band', 'somebody', 'now', 'so', 'logo', 'of', 'life', 'by', 'someone', 'fark', 'to', 'is', 'someone', 'too', 'plan', 'the', 'policy', 'or', 'ground', 'by', 'jakar', 'feedback', 'took', 'somebody', 'policy', 'launch', 'to', 'i', 'know', 'the', 'cash', 'try', 'i', 'know', 'rim', 'or', 'as', 'to', 'happen', 'inspiration', 'middle', 'me', 'eat', 'restrains', 'very', 'is']
['sir', 'show', 'up', 'home', 'nmohumari', 'muskile', 'kab', 'door', 'hogikaushmbi', 'of', 'light', 'gold', 'road', 'or', 'correction', 'last', 'year', 'i', 'know', 'to', 'flower']
['modi', 'show', 'up', 'achi', 'suruwat', 'is', 'skill', 'india', 'program', 'we', 'heartly', 'congratulated']
['very', 'good', 'work', 'gold', 'very', 'good', 'our', 'government']
['sir', 'such', 'as', 'jammu', 'kashmir', 'you', 'case', 'toh', 'on', 'someone', 'staff', 'to', 'someone', 'metrial', 'to', 'gold', 'you', 'skill', 'development', 'of', 'talk', 'map', 'guarantee']
['you', 'beautiful', 'sir', 'from', 'all', 'off', 'the', 'oath', 'sir']
['so', 'that', 'modi', 'show', 'up', 'room', 'first', 'pm', 'bane', 'from', 'to', 'ham', 'today', 'room', 'before', 'from']
['bjp', 'youth', 'of', 'skill', 'niche', 'video', 'me', 'vide']
['sir', 'show', 'up', 'hi', 'our', 'bjp', 'party', 'the', 'kuchha', 'leaders', 'born', 'party', 'of', 'image', 'my', 'infamous', 'what', 'gave', 'is', 'that', 'me', 'them', 'their', 'posts', 'i', 'know', 'fault', 'and', 'can', 'is', 'which', 'second', 'someone', 'too', 'that', 'work', 'on', 'and', 'jai', 'hind', 'i', 'salute', 'you,', 'mother']
['sir', 'hum', 'your', 'with', 'huh']
['sir', 'you', 'roam', 'the', 'technique', 'already', 'too', 'guarantee', 'you', 'so', 'that', 'odisha', 'or', 'electricity', 'me', 'correction', 'bring', 'to', 'some', 'think', 'will', 'happen', 'or', 'already', 'talk', 'this', 'the', 'you', 'will', 'to', 'sometimes', 'nehi', 'guarantee', 'accurate', 'low', 'electricity', 'me', 'correction', 'please', 'low']
['you', 'as', 'pm', 'has', 'country', 'my', 'milna', 'needed', 'already', 'ours', 'country', 'the', 'future', 'the', 'for', 'so', 'much', 'card', 'labor', 'by', 'such', 'scheme', 'launch', 'what', 'are', 'is', 'you', 'pramaam', 'is', 'mera', 'pm', 'show', 'up']
['sbi', 'congressmen', 'i', 'know', 'request', 'where', 'skill', 'india', 'may', 'admisn', 'with', 'some', 'work', 'learn', 'the', 'vacate', 'sitting', 'brain', 'khurapat', 'offers', 'scam', 'my', 'mine', 'skill', 'on', 'understand']
['understand', 'india', 'to', 'tab', 'will', 'happen', 'jab', 'india', 'will', 'modi', 'former', 'salvation', 'fire', 'said', 'their', 'maoist', 'you', 'jai', 'hind']
['bhai', 'already', 'loved', 'ones', 'i', 'know', 'hard', 'guarantee', 'toh', 'their', 'toh', 'this', 'only', 'one', 'theme', 'is', 'touch', 'me', 'rehne', 'or']
['then', 'indeed', 'with', 'hardship', 'comes', 'ease', 'indeed', 'with', 'hardship', 'comes', 'ease', 'quran']
['what', 'talk', 'manawa', 'happy', 'kerr', 'that']
['kash', 'god', 'them', 'within', 'society', 'do', 'already', 'sect', 'or', 'error', 'used', 'by', 'one', 'of', 'place', 'char', 'char', 'bibio', 'i', 'know', 'wedding', 'by', 'genitalia', 'of', 'force', 'or', 'profit', 'taking', 'is']
['uncle', 'uncle', 'has', 'chiz', 'my', 'religion', 'religion', 'dismissal', 'quran', 'guarantee', 'the', 'bible', 'you', 'ache', 'here', 'page', 'shows', 'is', 'low', 'ushme', 'too', 'is', 'all', 'bribery', 'gave', 'dismissal']
['the', 'allah', 'all', 'my', 'sahe', 'found', 'showing']
['paid', 'cup', 'kiss', 'vychil']
['government', 'my', 'dub', 'never', 'needed', 'of', 'iss', 'omar', 'my', 'them', 'work', 'karna', 'has', 'is']
['respect', 'to', 'this', 'madam', 'no', 'offence', 'but', 'gujarat', 'my', 'to', 'lattice', 'master', 'born', 'like', 'this', 'change', 'kr', 'gave', 'i', 'will', 'of', 'someone', 'too', 'human', 'slum', 'me', 'to', 'stays']
['jai', 'jai', 'becoming', 'gujarat']
['jai', 'bajrang', 'bali']
['today', 'to', 'devotee', 'very', 'happy', 'homje']
['is', 'tell', 'room', 'main', 'congress', 'born', 'what', 'did']
['country', 'chodo', 'first', 'yeh', 'media', 'my', 'change', 'somebody']
['bhai', 'yeh', 'all', 'has', 'police', 'station', 'on', 'here', 'appetite', 'facebook', 'on', 'to']
['where', 'all', 'toh', 'right', 'is', 'but', 'yeh', 'green', 'apple', 'mojito', 'with', 'ras', 'malayi', 'who', 'floats']
['others', 'or', 'but', 'the', 'to', 'me', 'was', 'others', 'or', 'kill', 'the', 'affair', 'me', 'phase']
['the', 'logical', 'indian', 'some', 'too', 'write', 'guarantee', 'one', 'bar', 'hair', 'too', 'took', 'inn', 'write', 'i', 'know', 'first']
['samsung', 'galaxy', 'grand', 'max', 'or', 'i', 'will', 'sale', 'the', 'from', 'or', 'guarantee', 'style', 'typically', 'hum', 'by', 'absent', 'flow', 'is', 'heard', 'company', 'those']
['damn', 'then', 'invisible', 'ninjas', 'cuttin', 'onions']
['love', 'salman', 'or', 'like', 'so', 'much', 'god', 'always', 'your', 'with', 'will', 'or']
['sale', 'salman', 'khan', 'cry', 'to', 'see', 'is', 'of', 'teri', 'pic', 'how', 'hit', 'will', 'coffee', 'beans', 'muslim', 'the', 'sale', 'tum', 'log', 'muslim', 'per', 'mark', 'guarantee']
['kaheytey', 'guarantee', 'of', 'muslim', 'fans', 'pic', 'to', 'view', 'to', 'too', 'hit', 'will']
['salman', 'bhai', 'visit', 'necessary', 'is', 'apse', 'soapy', 'kii', 'levs', 'bro']
['salman', 'so', 'much', 'problem', 'may', 'too', 'country', 'of', 'duty', 'because', 'are', 'is', 'so', 'why', 'not']
['salman', 'khan', 'bhai', 'you', 'my', 'likes', 'or', 'comments', 'km', 'see', 'huh', 'shah', 'rukh', 'khan', 'of', 'ratio']
['our', 'too', 'duties', 'is', 'clean', 'bharat', 'do']
['jai', 'guarantee', 'bharat', 'of']
['salman', 'khan', 'app', 'next', 'film', 'of', 'shooting', 'agra', 'city', 'i', 'know', 'karna', 'plz', 'sir']
['dolled', 'you', 'or', 'very', 'if', 'i', 'know', 'if', 'minute']
['love', 'salman', 'sir', 'enough', 'on', 'someone', 'floor', 'he', 'on', 'someone', 'partner', 'he', 'fir', 'too', 'out', 'on', 'there', 'i', 'know', 'sayad', 'it', 'of', 'search', 'he', 'place', 'partner', 'he', 'place', 'floor', 'he', 'jane', 'jane', 'find', 'you', 'crazy', 'salman', 'sir', 'love', 'you']
['abe', 'majid', 'i', 'know', 'playful', 'chori', 'to', 'the', 'which', 'need', 'the', 'he', 'where', 'with', 'go', 'he']
['ram', 'ram', 'bhai', 'salman']
['salman', 'bhai', 'your', 'nagpur', 'bb', 'promotion', 'incoming', 'or', 'wait', 'is']
['humara', 'country', 'suse', 'are', 'but', 'only', 'humara', 'india', 'all', 'i', 'know', 'up', 'will', 'happen']
['softly', 'this', 'much', 'anger', 'see', 'her', 'is', 'vomit', 'kardugi', 'its', 'muh', 'may', 'subject', 'sudarega', 'cut']
['bye', 'sleeping', 'he', 'was', 'of', 'tere', 'so', 'are', 'my', 'toh', 'rubbish', 'think', 'is', 'name', 'toh', 'sunna', 'is', 'very', 'bar']
['more', 'he', 'was', 'of', 'keep', 'distance', 'wid', 'me', 'nonsense', 'admi', 'already', 'only', 'ours', 'came', 'getting', 'housed']
['hath', 'may', 'hath', 'housed', 'sitting', 'milo', 'which']
['and', 'doing', 'he', 'one', 'bottle', 'you', 'pine', 'from', 'pandey', 'show', 'up', 'vide', 'already', 'isp', 'such', 'as', 'mere', 'before', 'laye', 'too']
['tum', 'kab', 'jwab', 'doge', 'me']
['custom', 'i', 'stay', 'already', 'km', 'the', 'he', 'within', 'nice', 'hi', 'happen', 'he']
['tum', 'milna', 'want', 'hi', 'to', 'what', 'with', 'me']
['known', 'main', 'he', 'was', 'doing', 'he', 'of', 'tum', 'mere', 'twits', 'on']
['maine', 'what', 'mistake', 'of', 'is', 'me', 'small', 'bat', 'of', 'sja', 'of', 'are', 'guarantee', 'tum']
['came', 'is', 'frying', 'what', 'years', 'their', 'bad', 'me', 'bat', 'will']
['bollywood', 'too', 'swachch', 'from', 'do', 'where', 'to', 'now', 'too', 'nanga', 'hi', 'is']
['may', 'life', 'me', 'what', 'karna', 'wants', 'their', 'to', 'you', 'sadi', 'to', 'the', 'also']
['they', 'have', 'businesses', 'women', 'to', 'become', 'wants', 'their', 'your', 'affair', 'me', 'all', 'forget', 'that', 'their', 'one', 'tum', 'guarantee', 'which', 'only', 'may', 'hi', 'aad', 'to', 'their']
['salman', 'show', 'up', 'hey']
['salman', 'bhai', 'jan']
['tum', 'what', 'are', 'guarantee', 'like', 'this', 'phone', 'so', 'to', 'map', 'what', 'is', 'is']
['what', 'love', 'hum', 'milne', 'came', 'or', 'you', 'to', 'mile', 'hi', 'children']
['sounds', 'he', 'of', 'you', 'actors', 'log', 'public', 'rim', 'my', 'reply', 'to', 'map', 'like', 'this', 'to', 'karna', 'needed']
['salman', 'khan', 'you', 'you', 'or', 'feyn', 'trnn', 'style', 'what', 'to', 'see', 'wants', 'is']
['salman', 'sir', 'you', 'how', 'guarantee', 'plz', 'reply', 'of', 'gave', 'somebody']
['super', 'bjrdagibai', 'i', 'stay', 'super', 'hit', 'movie']
['punjab', 'my', 'father', 'terrestrial', 'gold', 'bombay', 'my', 'salman', 'as', 'someone', 'children', 'is', 'in', 'which', 'as', 'someone', 'gold', 'children', 'cause', 'guarantee', 'accurate', 'salman', 'bhai', 'one', 'song', 'father', 'terrestrial', 'or', 'to', 'getting', 'is', 'your', 'next', 'movie', 'my']
['salman', 'bhai', 'so', 'that', 'you', 'born', 'mine', 'movie', 'my', 'father', 'terrestrial', 'or', 'song', 'the', 'took', 'to', 'came', 'i', 'know', 'came', 'lac', 'fan', 'one', 'from', 'my', 'more', 'guarantee', 'will']
['bohat', 'very', 'salman', 'bhai']
['bhai', 'if', 'bar', 'haryana', 'me', 'come', 'on', 'you', 'very', 'good!', 'story', 'rainbow']
['sapourt', 'that', 'bhai', 'hole', 'bajrangi', 'brother', 'it', 'going']
['love', 'ur', 'film', 'thursday', 'guarantee', 'bhai', 'hope', 'ur', 'flim', 'bajrangi', 'brother']
['haha', 'im', 'selected', 'mzaaa', 'aa', 'gone', 'mhha', 'bhai', 'luvv', 'uhh']
['maine', 'he', 'was', 'tum', 'so', 'the', 'may', 'morning', 'mnglgi']
['ache', 'i', 'know', 'understood', 'the', 'lasted', 'added', 'gold', 'may', 'so', 'added']
['thanx', 'salman', 'bhai', 'love', 'forever']
['india', 'no', 'star', 'salman', 'bhai']
['bhai', 'jan', 'long', 'live']
['hi', 'my', 'cute', 'bookie', 'kha', 'guarantee', 'what', 'guarantee', 'stayed', 'is', 'right', 'guarantee', 'miss', 'ends', 'miss', 'so', 'much']
['plz', 'cal', 'sallu', 'bhai', 'bangladesh', 'fan', 'plz', 'cal', 'met', 'sallu', 'bhai']
['she', 'may', 'ok', 'treaty']
['abe', 'you', 'kutta', 'is', 'be', 'teri', 'movie', 'flop', 'will', 'dakhna', 'tere', 'blue', 'fan', 'came', 'guarantee', 'went']
['hmmm', 'taliyao', 'of', 'sound', 'help', 'i', 'know', 'softly', 'heard', 'i', 'know', 'doing', 'is', 'hall', 'may', 'all', 'only', 'one', 'hi', 'talk', 'tell', 'is', 'wah', 'bhai', 'place', 'may', 'sharmarke', 'chupke', 'i', 'know', 'well', 'he', 'gold', 'love', 'faithful']
['teri', 'picture', 'view', 'the', 'nah', 'may', 'ajatah', 'is', 'such', 'iiiiiiii']
['may', 'to', 'position', 'boliii', 'all', 'hall', 'may', 'bhai', 'bhai', 'wah', 'bai', 'hi', 'tell', 'is', 'haste', 'is', 'josh', 'may', 'come', 'is', 'very', 'may', 'aata', 'is']
['one', 'necessary', 'talk', 'he', 'someone', 'too', 'muslim', 'bhai', 'salman', 'khan', 'of', 'bajrangi', 'brother', 'movie', 'view', 'for', 'no', 'things', 'us', 'harami', 'born', 'muslims', 'my', 'challenge', 'did', 'is', 'where']
['abe', 'you', 'is', 'all', 'pussycat', 'bat', 'what', 'doing', 'is', 'love']
['ends', 'last', 'time', 'you', 'jab', 'which', 'exam', 'tab', 'kitna', 'some', 'did', 'low', 'from', 'thing', 'bach', 'gone', 'is', 'you', 'aa', 'and', 'soon', 'pljhghghgh']
['bhai', 'someone', 'photo', 'already', 'you', 'the', 'the', 'heart', 'the', 'caribbean', 'guarantee']
['god', 'i', 'know', 'two', 'is', 'the', 'teri', 'film', 'supper', 'supper', 'supper', 'flap', 'guarantee', 'malon']
['main', 'hindu', 'he', 'bhai', 'bajrang', 'bali', 'too', 'hindu', 'god', 'is', 'closed', 'eye', 'of', 'bali', 'kid', 'guarantee', 'sir', 'gold', 'bajrangi', 'banned', 'guarantee']
['you', 'to', 'upset', 'hit', 'guarantee', 'aor', 'your', 'film', 'upset', 'hit', 'is']
['my', 'parcel', 'recognized']
['sacha', 'bharat', 'india']
['hlooo', 'slaughter', 'bhai', 'what', 'thing']
['the', 'heart', 'the', 'two']
['muje', 'know', 'he', 'you', 'reply', 'children', 'hooks', 'again', 'too', 'your', 'film', 'good!', 'are', 'and', 'girl', 'doctor', 'to', 'become', 'sixth', 'he', 'two', 'inn']
['tum', 'dried', 'itself', 'guarantee', 'bhot', 'dried', 'hate', 'really', 'hate']
['custom', 'someone', 'ijjata', 'a', 'is']
['hair', 'or', 'judgment', 'bhai', 'of', 'kind', 'live', 'needed']
['what', 'talk', 'huh']
['you', 'as', 'precious', 'mind', 'everyone', 'not', 'here', 'looking', 'by', 'this', 'disease', 'absent', 'paired', 'is']
['them', 'bhai']
['custom', 'read', 'khosies', 'one', 'br', 'tujase', 'only', 'milna', 'cottage', 'bs']
['love', 'you', 'salman', 'sir', 'you', 'of', 'movie', 'see', 'money', 'he', 'now', 'it', 'tree']
['mera', 'toilet', 'too', 'pure', 'because', 'jane', 'salman', 'khan']
['realllllly', 'loooovvv', 'salman']
['original', 'cleanliness', 'clean', 'krne', 'i', 'know', 'the', 'is', 'sir', 'photo', 'photographed', 'i', 'know', 'children']
['special', 'already', 'muslims', 'the', 'controversy', 'statement', 'that', 'where', 'error', 'he']
['did', 'fate', 'is']
['it', 'this', 'much', 'time', 'knha', 'will', 'happen', 'you', 'all', 'my', 'comments', 'by', 'nazar', 'daleha', 'he', 'has', 'he', 'has', 'he', 'has', 'he', 'has', 'he', 'has']
['hum', 'my', 'tho', 'chance', 'finger', 'who', 'salman']
['salei', 'suwar', 'or', 'pilla', 'mar', 'going', 'aishwarya', 'the', 'moot', 'may', 'sinks', 'the', 'chiः', 'modi', 'gold', 'rss', 'or', 'new', 'kutta']
['sir', 'mat', 'it', 'was', 'sale', 'my', 'harami', 'is', 'where', 'muslim', 'the', 'name', 'by', 'dhabba', 'is', 'room', 'shortest']
['levs', 'bhai', 'cnt', 'wait', 'fst', 'two', 'fst', 'shw', 'biiii']
['what', 'to', 'wale', 'guarantee', 'some', 'statue', 'too', 'the', 'someone', 'difference', 'to', 'has']
['brother', 'me', 'too', 'some', 'karna', 'cottage', 'he', 'plizz', 'chance', 'me', 'bhai']
['grt', 'super', 'star', 'sallu', 'bhai']
['great', 'salman', 'white']
['looking', 'soo', 'handsome']
['harami', 'room', 'salman']
['mera', 'my', 'too', 'one', 'chance', 'of', 'do', 'bajrangi', 'brother']
['teri', 'movie', 'flop', 'guarantee', 'should']
['sale', 'tum', 'games', 'guarantee', 'muslim', 'to', 'tum', 'sites', 'guarantee']
['love', 'salman', 'khan', 'one', 'bar', 'ups', 'milna', 'says', 'he', 'the', 'time', 'dream', 'he', 'has', 'low', 'one', 'bar', 'love', 'love', 'love', 'love', 'love', 'so', 'mach', 'salman', 'khan']
['kamal', 'map', 'guarantee', 'yr', 'bhai']
['wow', 'what', 'talk', 'itne', 'comment', 'what', 'command', 're', 'baba', 're', 'from', 'happy', 'hassan', 'nd', 'my', 'real', 'name', 'ruby', 'hassan']
['what', 'is', 'campaign', 'now', 'too', 'ongoing']
['right', 'exit', 'i', 'stay', 'ham', 'my', 'forget', 'which', 'no']
['hum', 'too', 'stay', 'me', 'at', 'me', 'hajj', 'or', 'dargha', 'on', 'salman', 'brother', 'my', 'baizzt', 'bari', 'hone', 'of', 'two', 'eat']
['hello', 'sir', 'you', 'online', 'ata', 'guarantee', 'page', 'absent', 'shows', 'kab', 'ata', 'guarantee', 'gold', 'leave', 'are', 'guarantee']
['the', 'me', 'toh', 'ours', 'hi', 'intention', 'i', 'know']
['the']
['mummy', 'papaa', 'gold', 'bacha', 'party', 'gold', 'all', 'how', 'is']
['what', 'statue', 'is', 'wedding', 'bare', 'may']
['may', 'know', 'so', 'that', 'you', 'use', 'wedding', 'of', 'to', 'where', 'me', 'tum', 'he', 'sometimes', 'talk', 'so', 'to', 'children', 'day', 'me', 'page', 'is', 'today', 'belief', 'custom', 'the', 'need', 'to', 'is', 'to', 'where', 'me', 'this', 'much', 'important', 'to']
['gold', 'where', 'good!', 'girl', 'is']
['someone', 'gold', 'like', 'ahead', 'is', 'one', 'place', 'only', 'to', 'slowly', 'tum']
['brother', 'main', 'your', 'builds', 'if', 'fan', 'guarantee', 'love', 'brother', 'unless', 'brother', 'he', 'taptak', 'main', 'guarantee']
['salman', 'custom', 'a', 'forty-seven', 'only', 'to', 'you', 'is']
['what', 'kah', 'gave', 'sallu', 'brother']
['asslamu', 'on', 'you', 'bhai', 'one', 'bar', 'jwab', 'of', 'course', 'do', 'bhai']
['salman', 'bhai', 'only', 'sohrt', 'violin', 'i', 'know', 'some', 'will', 'happen', 'little', 'very', 'god', 'my', 'too', 'remember', 'did', 'somebody', 'mahe', 'ramadan', 'if', 'hi', 'then', 'gold', 'touba', 'to', 'the', 'weak', 'plz', 'worship', 'brother']
['salman', 'bhai', 'maine', 'there', 'is', 'said', 'you', 'answer', 'children', 'gave']
['shah', 'rukh', 'khan', 'or', 'amir', 'khan', 'too', 'your', 'before', 'up', 'he']
['mortath', 'non', 'believer', 'he', 'you', 'salman', 'bedouin']
['non', 'believer', 'he', 'you', 'salman', 'knjr', 'marwasy', 'btty']
['salman', 'sir', 'you', 'london', 'kab', 'aao', 'went', 'plz', 'aik', 'bar', 'driving', 'want', 'to', 'meet', 'once', 'in', 'life', 'are', 'cororo', 'my', 'aik', 'sir']
['salman', 'one', 'bar', 'answer', 'to', 'do', 'who']
['salman', 'you', 'to', 'our', 'like', 'guarantee', 'eek', 'bar', 'some', 'it', 'was']
['salman', 'khan', 'show', 'up', 'you', 'looking', 'owsm', 'love', 'you', 'salman', 'me', 'tell', 'children', 'apoplectic', 'of', 'me', 'your', 'how', 'bri', 'fan', 'he']
['salman', 'khan', 'nice']
['now', 'shri', 'or', 'while', 'too', 'ring', 'children', 'flower', 'gold', 'ears', 'here', 'too', 'pending', 'is']
['what', 'mow', 'society', 'children', 'more', 'bhot', 'sleep', 'property', 'is', 'by', 'namaaz', 'is', 'very', 'important']
['namaaz', 'medal', 'two', 'map', 'guarantee', 'children']
['low', 'morning', 'morning', 'up', 'gold', 'exercise', 'karna', 'chaalu']
['raat', 'may', 'late', 'silk', 'exam', 'and', 'abba', 'does', 'not', 'raat', 'late', 'aaey']
['big', 'favorite', 'sallu', 'we']
['assalamualikum', 'great', 'mubarak']
['salman', 'khan', 'sir', 'tayyar', 'he', 'has', 'today', 'the', 'party', 'the', 'for']
['which', 'not', 'weather', 'he', 'where', 'from', 'all', 'amir', 'he']
['anjana', 'thamotheram', 'hi', 'suweet', 'hart', 'originated', 'good!', 'lag', 'doing']
['are', 'my', 'freind', 'bags']
['real', 'hero', 'sallu', 'bhai']
['bhai', 'me', 'too', 'the', 'sword', 'nominate', 'plz']
['bhai', 'dove', 'me', 'aad', 'mahi']
['bhai', 'app', 'bollywood', 'king', 'through', 'ours', 'app', 'my', 'bajrangi', 'brother', 'what', 'late', 'guarantee', 'eid', 'me', 'under', 'my', 'let', 'the', 'to', 'begin', 'a', 'lot', 'of', 'sms', 'see', 'her', 'he', 'has', 'is', 'move', 'my', 'mat', 'dikho', 'ours', 'majahaba', 'my', 'tiny', 'from', 'he', 'has', 'kay', 'chsch', 'he', 'has']
['bhai', 'what', 'app', 'or', 'mobile', 'number', 'muje', 'will', 'get', 'mera', 'mobile', 'number']
['bhai', 'what', 'thing', 'is']
['swachchh', 'bharat', 'spirit', 'the', 'for', 'danyabaad']
['ramzan', 'or', 'weak', 'the', 'heart', 'living', 'room', 'what', 'worship', 'somebody']
['bhai', 'levs', 'you', 'life', 'me', 'one', 'bar', 'milna', 'plz', 'bhai', 'kbhi', 'is', 'msg', 'read', 'to', 'plz', 'me', 'one', 'call', 'krka', 'custom', 'life', 'happiness', 'i', 'know', 'filled', 'everything']
['you', 'shdi', 'kr', 'loooo']
['you', 'salman', 'i', 'is']
['regards', 'or', 'jan']
['welcome', 'saluu']
['did', 'custom', 'you', 'i', 'know', 'bat', 'guarantee', 'magic', 'is', 'lattice', 'time', 'fb', 'by']
['mr', 'khan', 'maine', 'you', 'of', 'sari', 'things', 'artificial', 'gold', 'use', 'follow', 'too', 'did', 'trust', 'me']
['okk', 'boss', 'your', 'law', 'to', 'be', 'eyes', 'what']
['you', 'mere', 'for', 'housed', 'on', 'name']
['dolled', 'cloth', 'opened', 'ours', 'body', 'see', 'the', 'girls', 'kpda', 'worn', 'istrt', 'kr', 'day', 'colr', 'so', 'uses', 'my', 'sikahne', 'the', 'at', 'the', 'ours', 'kpda', 'open']
['bhai', 'bajrangi', 'brother', 'to', 'understand', 'of', 'hit', 'is']
['jane', 'kab', 'custom', 'sleep', 'that']
["let's", 'go', 'likeability', 'smile', 'to', 'of', 'if', 'necessary', 'children', 'is']
['bby', 'love', 'you', 'hemchi', 'see', 'you', 'the', 'dies', 'dam', 'so', 'kbhi', 'to', 'rply', 'soil']
['salman', 'luv', 'alot', 'wanna', 'meet', 'uh', 'plzz', 'mjse', 'milo', 'the', 'chat', 'inn', 'mjse', 'pljhghghgh', 'luv', 'ummaahhh']
['sir', 'plz', 'london', 'ajoa', 'plz']
['notified', 'lag', 'are', 'guarantee', 'salman', 'bro', 'miss', 'you']
['did', 'bhai', 'i', 'stay']
['so', 'that', 'you', 'on', 'media', 'my', 'the', 'kha', 'will', 'happen', 'of', 'muslims', 'of', 'worse', 'bajrangi', 'brother', 'hit', 'will', 'then', 'are', 'foll']
['what', 'be', 'salman', 'bdve']
['great', 'mubarak', 'brother', 'kbhi', 'hume', 'house', 'eid', 'on', 'not', 'old', 'jst', 'joking', 'god', 'wazz', 'bless', 'god', 'of', 'rehmat', 'are', 'ganeh', 'show', 'up', 'or', 'hath', 'now', 'your', 'sir', 'on', 'are', 'and', 'the', 'guruji', 'kshtrchhaya', 'me', 'before', 'mounting', 'the', 'all', 'gods', 'wid', 'wazz']
['what', 'the', 'bhai', 'sadi', 'think', 'pay']
['salman', 'khan', 'criminal']
['what', 'loook', 'bhai', 'i', 'stay']
['did', 'is', 'bewde', 'flies', 'contribution', 'puppet', 'the', 'behtha', 'is']
['may', 'salman', 'or', 'frnd']
['salman', 'bhai', 'billet', 'rock', 'star']
['one', 'ch', 'bhai', 'salman', 'bhai']
['bajrangi', 'bhai', 'from', 'us', 'too', 'conversation', 'what', 'took', 'somebody']
['they', 'have', 'rakhi', 'too', 'tum', 'all', 'hi', 'detention', 'attractive', 'girls', 'huh', 'who']
['love', 'toooo', 'sooooo', 'mache', 'salman', 'khan']
['he', 'sir', 'me', 'your', 'very', 'if', 'minute', 'he']
['hamein', 'kaash', 'to', 'you', 'love', 'on', 'the']
['my', 'salman', 'khan']
['nice', 'pic', 'how', 'takes', 'guarantee', 'you', 'itne', 'handsome']
['bhai', 'i', 'stay', 'tho', 'bhai', 'i', 'stay', 'he', 'will', 'continue', 'someone', 'gold', 'their', 'copy', 'to', 'because', 'strict', 'to', 'do', 'yes', 'or', 'no']
['hi', 'show', 'up', 'what', 'hall', 'she', 'me', 'lamb', 'same', 'to', 'you']
['sir', 'you', 'some', 'care', 'to', 'kid', 'plz', 'plz', 'plz']
['today', 'of', 'party', 'custom', 'side', 'i', 'know', 'nice', 'song', 'brother']
['good', 'night', 'sir', 'capillary', 'comedy', 'me', 'came', 'mamko', 'very', 'good', 'begin', 'good', 'night', 'sir']
['masks', 'he', 'could', 'me', 'cahi', 'hangover', 'he', 'developed', 'that', 'the', 'beth', 'which', 'per', 'mine', 'party', 'ongoing', 'he', 'feeling', 'happy', 'with', 'the', 'salman', 'coming', 'soon', 'bajrangi', 'brother', 'on', 'this', 'eid']
['bhai', 'sometimes', 'to', 'ours', 'not', 'too', 'to', 'on', 'himself.i', 'forget', 'will', 'he', 'he']
['mast', 'he', 'has', 'salman', 'khan', 'sir', 'songs']
['muslim', 'or', 'male', 'mat', 'bad', 'karna', 'salman', 'bhai', 'whether', 'some', 'too', 'somebody', 'someone', 'tention', 'to']
['sallu', 'bhai']
['hiiii', 'brother', 'kaiae', 'is', 'you', 'you', 'of', 'pic', 'very', 'good', 'lag', 'doing', 'is']
['main', 'your', 'very', 'if', 'fan', 'he']
['luv', 'salman', 'khan']
['bhai', 'you', 'of', 'brother', 'movi', 'too', 'cr', 'will']
['eid', 'mubarak', 'songs', 'bajrangi', 'brother', 'me', 'here', 'special']
['looking', 'murderous', 'style']
['sale', 'bhai', 'dabangg', 'kab', 'release', 'what', 'are', 'guarantee']
['salman', 'khan', 'the', 'on', 'sari', 'world', 'marti', 'hey']
['sallo', 'bhai', 'pink', 'because', 'he']
['you', 'muslim', 'to', 'contribution', 'of', 'you', 'mandir', 'go', 'you', 'qadiani', 'salman']
['dashing', 'salman', 'khan']
['app', 'my', 'ramzan', 'or', 'weak', 'mobarrak', 'guarantee', 'or', 'app', 'guarantee', 'god', 'speak', 'or', 'trrki', 'of']
['indian', 'star', 'calmantn']
['if', 'tom', 'on', 'the', 'to', 'bollywood', 'or', 'what', 'with', 'a', 'on', 'happen', 'haha']
['custom', 'zindingi', 'you', 'lag', 'should', 'brother', 'yeh', 'two', 'is', 'custom']
['abe', 'salman', 'so', 'that', 'tere', 'me', 'this', 'much', 'hi', 'dum', 'to', 'ied', 'me', 'film', 'mat', 'release', 'did', 'what', 'fir', 'view', 'view', 'how', 'hit', 'the', 'teri', 'film']
['salman', 'bhai', 'yeh', 'bajrangi', 'brother', 'on', 'comment', 'aa', 'are', 'is', 'is', 'movie', 'my', 'no', 'to', 'see']
['saale', 'salman', 'you', 'muslim', 'the', 'against', 'through', 'love', 'that', 'niche', 'fall']
['salman', 'bhai', 'masha', 'god', 'you', 'one', 'good', 'act', 'guarantee', 'one', 'good', 'human', 'guarantee', 'what', 'you', 'one', 'good', 'muslim', 'guarantee']
['salman', 'always', 'kind', 'heartnt', 'kmparjo', 'log', 'muslim', 'hindu', 'kr', 'are', 'their', 'logo', 'of', 'nichi', 'hair', 'on', 'mixed', 'ginn', 'arrival', 'yr']
['salman', 'white', 'you', 'bags', 'very', 'what', 'you', 'or', 'minute', 'their']
['ours', 'name', 'i', 'know', 'khan', 'power']
['you', 'talk', 'karna', 'wants', 'he', 'bhai', 'very', 'great', 'problem', 'there', 'he', 'your', 'help', 'wants', 'he']
['bhai', 'jan', 'at', 'once', 'kadak']
['nice', 'bhai', 'whatsapp', 'number', 'palz']
['salman', 'khan', 'of', 'jai', 'guarantee']
['nice', 'pic', 'abdul', 'rashid', 'saleem', 'salman', 'khan']
['bhai', 'bhai', 'nice', 'pic']
['sir', 'you', 'human', 'being', 'run', 'is', 'you', 'cash', 'kid', 'kab', 'so', 'jab', 'so', 'you', 'is', 'may', 'you', 'like', 'this', 'found', 'will', 'tell', 'all', 'multimillionaire', 'half', 'jayege']
['bhai', 'apky', 'chrys', 'so', 'me', 'garlic', 'pierre', 'keep', 'not', 'he', 'apmuslim', 'through', 'wrong', 'kr', 'too', 'guarantee', 'god', 'hafeez']
['salman', 'show', 'up', 'you', 'mine', 'life', 'me', 'one', 'bar', 'jaru', 'milna', 'cottage', 'is', 'you', 'talk', 'karna', 'cottage', 'is', 'already', 'you', 'logo', 'of', 'help', 'map', 'guarantee', 'his', 'for', 'thank', 'versus', 'so', 'much', 'you', 'custom', 'too', 'omar', 'lag', 'should']
['tere', 'name', 'the', 'boy', 'floor', 'page', 'to']
['sirji', 'pls', 'visit', 'to', 'kanpur', 'oncem', 'plssss']
['salman', 'realy', 'good', 'love']
['exit', 'the', 'glance', 'all', 'to', 'aalag', 'what', 'to', 'superman', 'salman', 'or', 'fan']
['human', 'jab', 'turkey', 'krleta', 'is', 'to', 'where', 'ours', 'sect', 'my', 'find', 'go', 'is', 'jab', 'stumble', 'seems', 'is', 'use', 'to', 'use', 'mine', 'mistake', 'or', 'realization', 'hone', 'think', 'is', 'koch', 'aisy', 'is', 'salman', 'of', 'story', 'measures', 'kuban']
['beta', 'salman', 'kbis', 'tera', 'film', 'falop', 'will', 'happen', 'beeee', 'to', 'sweat']
['plz', 'cal', 'sallu', 'bhai', 'bangladesh', 'big', 'fan', 'me', 'plz', 'cal', 'jai', 'guarantee']
['lightning', 'to', 'harami', 'he', 'you', 'muslim', 'hoke', 'non', 'believer', 'half', 'style', 'he', 'sale', 'cut', 'before', 'to', 'aa', 'i', 'stay', 'i', 'know', 'but', 'of', 'foreign']
['help', 'so', 'i', 'are', 'guarantee', 'all', 'log']
['love', 'jend', 'actor', 'where', 'already', 'has', 'lock', 'my', 'sweet', 'beautiful', 'guineas', 'hot', 'sohrn', 'takes', 'axis', 'says', 'huh']
['today', 'so', 'by', 'news', 'thing', 'is', 'plss', 'reply', 'supporters', 'of']
['call', 'guarantee', 'on', 'guarantee', 'ham', 'yayege', 'or', 'waiting', 'the', 'for', 'leave', 'should', 'give']
['collection', 'collection', 'collection', 'dogs']
['salman', 'khan', 'hand', 'actar', 'bollywood']
['handsom', 'to', 'is', 'mera', 'bhai', 'bhai', 'he', 'mera']
['hi', 'bhai', 'you', 'how', 'guarantee', 'bhai', 'you', 'or', 'fan']
['enough', 'your', 'has', 'there', 'is', 'good!', 'seems']
['salman', 'bhai', 'look', 'to', 'very', 'baby', 'hi', 'too']
['very', 'very', 'very', 'very', 'very', 'very', 'very', 'very', 'very', 'very', 'very', 'very', 'very', 'very', 'very', 'very', 'niceeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee', 'and', 'loveeeeeeeeeeeeeeeeeeeeeeeeee', 'uuuuuuuuuuuuuuuuuuuuuu', 'bhai', 'i', 'stay']
['swgat', 'to', 'somebody', 'give', 'our']
['idoit', 'salman', 'you', 'muslim', 'is', 'like', 'this', 'faission', 'show', 'why', 'orchestrated', 'god', 'likkr']
['you', 'born', 'what', 'that', 'already', 'log', 'itne', 'free', 'coments', 'of', 'are', 'they', 'have', 'mixed', 'to', 'know', 'what', 'you', 'informing', 'give']
['salman', 'khan', 'rock', 'ss']
['merit', 'maya', 'or', 'oppreation', 'is', 'app', 'of', 'madaat', 'well']
['spares', 'good', 'is']
['nice', 'pic', 'salman', 'bhai', 'you', 'to', 'all', 'my', 'crazy', 'to', 'me', 'hold', 'is']
['all', 'or', 'bhai', 'custom', 'jan', 'salman', 'khan']
['brother', 'main', 'your', 'very', 'if', 'fan', 'he', 'is']
['mast', 'is', 'exit']
['hye', 'custom', 'cutey']
['now', 'bhai', 'i', 'stay', 'hum', 'too', 'to', 'you', 'the', 'bhai', 'is', 'small', 'bhai', 'i', 'stay']
['sale', 'born', 'muslims', 'my', 'run', 'did', 'of', 'your', 'coffee', 'beans', 'hit', 'will']
['salman', 'break', 'bad']
['is', 'to', 'will', 'super', 'upset', 'hit', 'dum', 'is', 'to', 'someone', 'to', 'rook', 'the']
['yeh', 'of', 'yeh', 'impotent', 'is']
['that', 'salman', 'or', 'name', 'coffee', 'beans', 'use', 'and', 'came', 'children', 'happen', 'what', 'bhai', 'logo']
['cute', 'or', 'bacha', 'is']
['already', 'dusaro', 'my', 'beauty', 'tell', 'is', 'woh', 'myself', 'place', 'from', 'is']
['kay', 'tell', 'six', 'doing', 'guarantee']
['bhadra', 'is', 'room']
['job', 'needed', 'hm', 'some', 'boy', 'jobless', 'or', 'hone', 'wale', 'read', 'km', 'bt', 'work', 'krna', 'wheels']
['bhai', 'ur', 'evergreen']
['plz', 'you', 'mere', 'frnd', 'make']
['sir', 'mera', 'dream', 'is', 'of', 'may', 'you', 'soap', 'salman', 'sir', 'one', 'bar', 'pls', 'nagpur', 'me']
['bajrangi', 'brother', 'one', 'no']
['okprdn', 'owaisis', 'one', 'sacha', 'muslim', 'he', 'or', 'you', 'sale', 'muslims', 'the', 'name', 'on', 'the', 'ignominy', 'he', 'sale', 'suvari', 'like', 'refine', 'vale']
['salman', 'khan', 'fans', 'is', 'fucker']
['buddha', 'is', 'salman', 'khan']
['of', 'tera', 'gold', 'salman', 'or', 'character', 'hi', 'vice', 'is', 'chip']
['salmon', 'bhai', 'may', 'your', 'boooooohat', 'bari', 'fan', 'hn']
['ours', 'you', 'my', 'what', 'understand', 'guarantee', 'muslman', 'my', 'challenge', 'kid', 'guarantee', 'from', 'on', 'hum', 'mushlman', 'too', 'some', 'came', 'absent', 'he']
['so', 'that', 'muslman', 'my', 'challange', 'of', 'are', 'guarantee', 'to', 'bro', 'movi', 'filled', 'of', 'won', 'guardian', 'cavalli', 'home', 'you', 'of']
['woh', 'calculation', 'all', 'mere', 'for', 'to', 'become', 'doing', 'is', 'may', 'suune', 'give']
['gr', 'love', 'salman', 'challenge', 'too', 'good', 'or', 'challenge', 'try', 'the', 'too', 'good']
['salman', 'khan', 'bet', 'hilo', 'may', 'uske', 'with', 'pkchr', 'me', 'or', 'krna', 'hue', 'he', 'is']
['bhai', 'tum', 'shahi', 'guarantee']
['nazar', 'on', 'location']
['bhai', 'you', 'to', 'think', 'of', 'kareena', 'born', 'bhot', 'more', 'make', 'up', 'kr', 'took', 'is', 'movie', 'my', 'calmantn']
['me', 'wedding', 'karni', 'salman', 'apse', 'plzzzzzzzzzzzzzzzz', 'marry', 'me']
['brother', 'god', 'of', 'ibadt', 'you', 'money', 'money', 'are', 'money', 'will', 'bajrangi', 'brother', 'of', 'course', 'hit', 'will']
['muslim', 'guarantee', 'ours', 'log', 'of', 'baja', 'stayed', 'if', 'flop', 'kr', 'do', 'bdve', 'my']
['someone', 'friendship', 'do', 'but']
['bhai', 'x', 'bazrangi', 'brother', 'movi', 'song', 'verey', 'nice']
['harami', 'kutta', 'room', 'drags', 'guarantee', 'upon', 'you']
['teri', 'film', 'flop', 'will', 'see', 'you', 'from', 'salman', 'khan']
['hi', 'sallu', 'bhai']
['want', 'film', 'mat', 'to', 'see', 'friends']
["let's", 'go', 'new', 'frndz', 'daughters', 'hn']
['me', 'me', 'or', 'song', 'here', 'special', 'i', 'will']
['hi', 'salman', 'sir']
['hello', 'i', 'stay']
['salman', 'bhai', 'from', 'to', 'you', 'wedding', 'kr', 'other']
['bhai', 'salman', 'bhai']
['as', 'salemoly', 'to', 'or', 'jan']
['teri', 'status', 'what', 'is', 'khabbis', 'already', 'ham', 'muslims', 'my', 'them', 'ball', 'is']
['salman', 'bhai', 'smolakm']
['rooms', 'you', 'block', 'i', 'know', 'stay', 'my', 'my', 'already', 'bra', 'the', 'two', 'but', 'god', 'then', 'deketa', 'is']
['salman', 'khan', 'sir', 'sounds', 'he', 'has', 'you', 'pakistan', 'ah', 'rahya', 'he', 'has']
['salman', 'bhai', 'you', 'is', 'comments', 'read', 'the', 'reply', 'map', 'guarantee', 'the', 'to']
['fucker', 'salman', 'khan', 'to', 'become', 'is', 'to', 'first', 'shahrukh', 'half']
['wrong', 'talk', 'the', 'muslims', 'and', 'against', 'ovisey', 'or', 'with', 'of', 'on', 'of', 'wrong', 'she', 'was']
['world', 'me', 'from', 'all', 'think', 'could', 'is', 'to', 'only', 'our', 'veer', 'of', 'only', 'the', 'heart', 'of', 'hardboard', 'is']
['bhikari', 'eid', 'or', 'cottage', 'sedco', 'fitra', 'tell', 'aa', 'stayed', 'he']
['is', 'salman', 'bhai']
['hi', 'salman', 'show', 'up', 'me', 'your', 'very', 'if', 'friend', 'he', 'is']
['your', 'the', 'heart', 'me', 'some', 'on', 'some', 'though', 'to', 'is', 'phone', 'to', 'to', 'or', 'region', 'understand', 'me', 'to', 'aata', 'like', 'this', 'small', 'relationship', 'me', 'happen', 'is']
['god', 'morning', 'brother']
['mistake', 'tum', 'what', 'are', 'guarantee', 'gold', 'just', 'me', 'one', 'thousand', 'stayed', 'is']
['salman', 'khan', 'of', 'magee', 'chit', 'her', 'magee', 'cutme', 'modi', 'or', 'aloda', 'loans', 'harami', 'of', 'janwaad', 'naliya', 'open', 'of', 'padas', 'her', 'scar', 'of', 'nose', 'me', 'ganpati', 'or', 'land', 'where', 'hussy', 'randi', 'motherfucker', 'is']
['love', 'love', 'love']
['they', 'have', 'bro', 'rose', 'flower', 'to', 'rahkta', 'their']
['fucker', 'no', 'already', 'ours', 'dharam', 'of', 'to', 'guarantee', 'says', 'lattice', 'too', 'dharam', 'or', 'to', 'kehte', 'is', 'on', 'log', 'already', 'myself', 'my', 'love', 'to', 'card', 'anyone', 'too', 'love', 'to', 'card']
['may', 'your', 'more', 'good', 'to', 'looks', 'by', 'to', 'you', 'bhot', 'good', 'their', 'your', 'purebred', 'jhute', 'love', 'or', 'drama', 'to', 'maps']
['on', 'tum', 'with', 'me', 'love', 'map', 'the', 'gold', 'on', 'hi', 'from', 'map', 'guarantee', 'sadi', 'to', 'karna', 'hi', 'to', 'want', 'so', 'on', 'phone', 'map', 'guarantee', 'gold', 'on', 'hi', 'see', 'guarantee', 'false', 'mecca', 'traitors', 'guarantee', 'tum']
['bb', 'me', 'already', 'some', 'the', 'the', 'two', 'all', 'forget', 'went', 'drama', 'i', 'will', 'on', 'all', 'camera', 'the', 'for', 'the', 'the', 'on']
['vidya', 'gupta', 'by', 'guarantee', 'that', 'kay']
['me', 'is', 'talk', 'or', 'fakhar', 'is', 'kay', 'you', 'muslim', 'is']
['hi', 'salman', 'sir', 'love', 'piz', 'one', 'bar', 'muje', 'i', 'know', 'bat', 'somebody', 'on', 'sir', 'piz', 'piz', 'piz']
['hi', 'bhai', 'you', 'of', 'film', 'super', 'guarantee', 'should', 'bajrangi', 'bhai', 'i', 'stay']
['naice', 'naice', 'naice']
['already', 'beauty', 'log', 'is', 'woh', 'beauty', 'hi', 'will', 'according', 'to', 'psychology', 'cant', 'change', 'anyones', 'behavior', 'woh', 'act', 'will', 'do', 'by', 'change', 'children', 'from']
['tum', 'i', 'know', 'love']
['salman', 'or', 'pls', 'ours', 'dare', 'rakey', 'or', 'app', 'my', 'boss', 'boss', 'location', 'but']
['oye', 'you', 'queue', 'great', 'great', 'talks', 'choir', 'hi', 'by', 'guarantee', 'what']
['islam', 'on', 'you', 'salman', 'khanhun', 'your', 'fans', 'want', 'is', 'of', 'you', 'one', 'bar', 'haj', 'the', 'ages', 'by', 'came', 'build', 'up', 'god', 'your', 'life', 'of', 'difficulties', 'easy', 'let', 'it', 'happen', 'amin']
['salman', 'so', 'that', 'is', 'msg', 'see', 'are', 'it', 'was', 'reply', 'somebody', 'plz']
['page', 'nehi', 'you', 'msg', 'see', 'are', 'guarantee', 'the', 'nehi']
['by', 'me', 'salman', 'i', 'know', 'this', 'much', 'love', 'maps', 'he', 'is', 'is', 'page', 'to', 'their', 'is', 'their', 'for', 'more', 'comment', 'me', 'maps', 'he', 'is', 'such', 'them', 'page', 'leave', 'me', 'their', 'how', 'bari', 'councilman', 'he', 'is']
['love', 'salman', 'khan', 'show', 'up', 'love', 'so', 'much', 'the', 'picture', 'is', 'uuu', 'mmuuaahh']
['tum', 'small', 'waist', 'i', 'know', 'bane', 'guarantee', 'someone', 'your', 'with', 'i', 'know', 'bat', 'what', 'stayed', 'is', 'will', 'i', 'know', 'one', 'hi', 'thing', 'i', 'know', 'one', 'hi', 'bat', 'kah', 'doing', 'is', 'you', 'someone', 'difference', 'to', 'has']
['sare', 'slantwise', 'tede', 'mere', 'hi', 'cost', 'me', 'wrote', 'is', 'up', 'wale', 'born', 'to', 'to', 'the', 'felt', 'i', 'will', 'tum', 'to', 'sayad', 'actually', 'high', 'but', 'to']
['woh', 'twitter', 'on', 'painting', 'you', 'that', 'think', 'i', 'will']
['kutta', 'is', 'to', 'on', 'to', 'muslim', 'on', 'to', 'hindu']
['children', 'children', 'thanks', 'children', 'logo', 'my', 'gold', 'tell', 'everything']
['but', 'salman', 'bhai', 'you', 'wedding', 'to', 'karna', 'want']
['drop', 'the', 'same', 'absent', 'location']
['high', 'silver', 'bolhta', 'is', 'saadi', 'to', 'will', 'custom', 'gold', 'salman', 'of', 'saadi', 'will', 'october', 'first', 'week']
['i', 'stay', 'softly', 'he', 'was', 'foreign', 'someone', 'trouble', 'may', 'ours', 'god', 'my', 'wants', 'is', 'answer', 'of']
['mar', 'should', 'woh', 'log', 'already', 'with', 'me', 'burning', 'is', 'mere', 'brmini', 'hone', 'i', 'know', 'burning', 'is', 'their', 'wenaash', 'guarantee', 'should']
['salman', 'handsome', 'king']
['custom', 'talk', 'by', 'lattice', 'too', 'hamazade', 'my', 'someone', 'too', 'doubt', 'guarantee', 'shock', 'i', 'know', 'aye', 'mere', 'village']
['salman', 'fans', 'adhme']
['already', 'me', 'req', 'send', 'may', 'more', 'ours', 'no.', 'stripes', 'promise']
['salman', 'khan', 'bollywood', 'rss', 'or', 'bjp', 'or', 'new', 'kutta']
['straight', 'vinayak', 'ganesh', 'show', 'up', 'of', 'jai', 'huuu']
['kutta', 'harami', 'orbit', 'course', 'bigrit', 'salman', 'to', 'so', 'that', 'mixed', 'one', 'thousand', 'jai', 'teri', 'earth', 'ies', 'one', 'kardonga']
['salman', 'khan', 'cash', 'guarantee', 'you', 'eid', 'by', 'already', 'movie', 'he', 'has', 'where', 'single', 'he', 'has', 'by', 'name', 'single', 'ney', 'he', 'has', 'time', 'msg', 'what', 'lana', 'ok']
['smile', 'of', 'steel', 'tum', 'guarantee']
['there', 'is', 'sallumeya', 'eid', 'congratulations', 'guarantee']
['salman', 'custom', 'family', 'boht', 'sharif', 'he', 'hm', 'mine', 'bf', 'with', 'cradling', 'waste', 'ours', 'earth', 'father', 'of', 'izet', 'ashes', 'me', 'absent', 'thousand', 'sect']
['salman', 'khan', 'your', 'name', 'behind', 'khan', 'good', 'to', 'looks', 'like', 'error', 'of', 'muslim', 'the', 'name', 'my', 'already', 'this', 'much', 'hi', 'bra', 'kagta', 'is', 'islamic', 'religion', 'to', 'now', 'course', 'of', 'if', 'necessary', 'to', 'is', 'your', 'islam', 'my']
['bb', 'of', 'for', 'toh', 'maine', 'already', 'he', 'was', 'hold', 'is', 'help', 'i', 'know']
['custom', 'low', 'one', 'two', 'is', 'one', 'bar', 'me', 'milna', 'is', 'ours', 'brother', 'i', 'know']
['tomorrow', 'lakshmi', 'eye', 'of', 'aarti', 'will', 'morning', 'the', 'while', 'hello', 'masturbation']
['already', 'already', 'can', 'gave', 'is', 'everyone', 'sunna', 'will', 'happen', 'from']
['which', 'salman', 'the', 'love', 'love', 'salman']
['no', 'array', 'whatsapp', 'or', 'photo', 'bey', 'kid', 'is']
['you', 'mere', 'high', 'of', 'story', 'one', 'film', 'to', 'me', 'do']
['one', 'talk', 'tell']
['god', 'you', 'my', 'has', 'side', 'i', 'know', 'kameya', 'date', 'of']
['helo', 'salman', 'bhai', 'i', 'stay']
['salman', 'white', 'so', 'that', 'you', 'the', 'coments', 'by', 'out', 'they', 'have', 'to', 'plz', 'years', 'and', 'you', 'cash', 'they', 'have', 'gold', 'rozay', 'cash', 'through', 'money', 'they', 'have']
['hi', 'salman', 'sameer', 'baloch', 'in', 'balochistan', 'biggggg', 'fan', 'of', 'you']
['very', 'beauty', 'msg', 'i', 'will']
['bajrangi', 'veer', 'son', 'from', 'of']
['loveu', 'tooooo', 'ur', 'vey', 'handsome']
['is', 'all', 'some', 'to', 'is', 'exal', 'gold', 'coral', 'me', 'bhot', 'sare', 'formula', 'and', 'short', 'cut', 'is', 'where', 'aad', 'to', 'keep', 'has', 'is']
['question', 'and', 'is', 'jwab', 'kab', 'doge']
['ethnical', 'long', 'speech', 'to', 'some', 'me', 'killing', 'only', 'word', 'henna', 'or', 'their', 'sounds', 'to', 'ms', 'atta', 'sekho', 'love', 'you', 'sallu']
['from', 'all', 'if', 'fan', 'he', 'is', 'salman', 'bhai', 'you', 'or']
['rfta', 'rfta', 'look', 'oh', 'big', 'card', 'oh', 'time', 'difference', 'lgi', 'mera', 'face', 'within', 'stand', 'love', 'you', 'salman', 'show', 'up']
['low', 'bhai', 'the', 'lag', 'are', 'you', 'to']
['hello', 'sir', 'how', 'guarantee', 'plz', 'reply', 'of', 'of', 'all', 'today', 'plz', 'sir']
['sir', 'orissa', 'on', 'poet', 'aao', 'on', 'plz']
['soon', 'tell', 'bhai', 'i', 'stay']
['brother', 'kolkata', 'or', 'has', 'log', 'ready', 'up', 'once', 'kolkatame', 'come', 'on']
['aslma', 'on', 'you', 'bhai', 'i', 'stay']
['is', 'all', 'record', 'breaking', 'guardian', 'he']
['bollywood', 'king', 'my', 'bro', 'salman', 'khan']
['bajrangi', 'brother', 'all', 'record', 'break', 'off', 'salman', 'bhai', 'jiii']
['salman', 'you', 'milne', 'the', 'for', 'hume', 'what', 'and']
['bhai', 'i', 'stay', 'apse', 'one', 'request', 'i', 'will', 'one', 'bar', 'your', 'someone', 'dance', 'functions', 'me', 'dance', 'to', 'or', 'pay', 'kid', 'toh', 'is', 'life', 'of', 'from', 'all', 'if', 'dream', 'pure', 'guarantee', 'go']
['law', 'sallu', 'bhai']
['ramzan', 'me', 'all', 'help', 'map', 'guarantee', 'you', 'why', 'within', 'came', 'the']
['cr', 'committee', 'from']
['tayyar', 'guarantee', 'went', 'kab', 'i', 'know', 'from', 'soon', 'aao']
['salman', 'show', 'up', 'hm', 'of', 'course', 'will', 'see', 'today', 'your', 'teaser', 'and', 'th', 'july', 'in', 'cinema', 'bajrangi', 'brother', 'love', 'you', 'salman', 'show', 'up']
['they', 'have', 'bhai', 'today', 'raat', 'party', 'to', 'paired']
['some', 'reply', 'to', 'please', 'salman', 'bhai', 'now', 'straightway']
['he', 'has', 'bhai', 'kab', 'i', 'know', 'ready', 'is', 'patten', 'the', 'for']
['eid', 'the', 'coffee', 'beans', 'salman', 'khan', 'of', 'movie', 'flop', 'akshay', 'kumar', 'of', 'movie', 'whether', 'jab', 'release', 'guarantee', 'hit', 'the', 'is']
['yessss', 'my', 'cuteee', 'salman']
['salman', 'bhai', 'you', 'love', 'mat', 'somebody', 'your', 'movie', 'ham', 'hit', 'and', 'give']
['bhai', 'pljhghjhghjh', 'mine', 'movie', 'ramzan', 'my', 'release', 'on', 'did', 'inn', 'its', 'my', 'request', 'ramzan', 'of', 'rat', 'holy', 'night', 'my', 'sbe', 'frame', 'the', 'he', 'sare', 'muslim', 'worship', 'commission', 'he', 'you', 'muslim', 'guarantee', 'on', 'beingsalmankhan', 'bbthiseid', 'aajkiparty', 'bjrdagibhijn']
['iftar', 'party', 'mere', 'side', 'i', 'know', 'come', 'on']
['you', 'log', 'spares', 'amir', 'he', 'your', 'for', 'party', 'karna', 'public', 'talk', 'he', 'by', 'a', 'logo', 'or', 'what', 'already', 'our', 'treatment', 'too', 'to', 'to', 'skte', 'like', 'the', 'custom', 'friend', 'use', 'your', 'help', 'needed', 'aor', 'you', 'party', 'what', 'are', 'he', 'you', 'her', 'happy', 'help', 'card', 'pliz']
['eid', 'some', 'will', 'bhai', 'party', 'to', 'where', 'too', 'bajrangi', 'brother', 'movie', 'the', 'with', 'all', 'no', 'tv', 'no', 'movie']
['are', 'salman', 'sir', 'so', 'that', 'mere', 'coment', 'my', 'padhma', 'to', 'plzzz', 'one', 'bar', 'reply', 'karna']
['what', 'love', 'some', 'muslim', 'bhai', 'salman', 'bhai', 'i', 'know', 'at', 'once', 'guarantee', 'are', 'guarantee', 'salman', 'bhai', 'think', 'human', 'he']
['first', 'pink', 'to', 'keep', 'the', 'fir', 'eid', 'has']
['absolutely', 'kab', 'i', 'know', 'net', 'on', 'search', 'what', 'are', 'he', 'your', 'how', 'for', 'bajrangi', 'brother']
['queue', 'to', 'you', 'eid', 'per', 'you', 'bolaa', 'or', 'hum', 'on', 'aye', 'hum', 'of', 'course', 'aye']
['barely', 'the', 'gddaro', 'the', 'with', 'set', 'off', 'to', 'do', 'hum']
['salman', 'of', 'diwaniya', 'my', 'i', 'know', 'one', 'bar', 'chat', 'krlo', 'plzz']
['sory', 'main', 'bared', 'aasg', 'main', 'pakistan', 'main', 'guarantee']
['movie', 'flop', 'ham', 'all', 'the', 'tarfse', 'you', 'my', 'bhai', 'blessing']
['mjh', 'say', 'bat', 'somebody', 'on', 'sweeeto', 'ber', 'bus', 'ber']
['yunki', 'party', 'for', 'to', 'hum', 'ready', 'huh', 'by', 'what', 'karen', 'to', 'aa', 'slowly', 'because', 'invitation', 'only', 'brothers', 'gold', 'sisters', 'for', 'is']
['no', 'way', 'pure', 'one', 'weak', 'ramzan', 'of', 'worship', 'some', 'eid', 'girl', 'such', 'movie', 'could', 'see', 'oh', 'well', 'hanuman', 'chalisa', 'idalin', 'and', 'money', 'guarantee']
['ready', 'guarantee', 'bhai', 'today', 'of', 'party', 'the', 'for']
['main', 'to', 'to', 'is', 'movie', 'dekuga', 'salman', 'of', 'has', 'one', 'movie', 'i', 'but', 'is', 'to', 'dekuga']
['someone', 'too', 'larki', 'enjoy', 'guarantee', 'place', 'app', 'or', 'up', 'to', 'see', 'app']
['is', 'we', 'ill', 'of', 'talk', 'you', 'call', 'gold', 'hum', 'on', 'then', 'brother']
['big', 'brother', 'party', 'of', 'or', 'is', 'tiny', 'bhai', 'party', 'me', 'children', 'aae', 'to', 'see', 'guarantee', 'can', 'is', 'what', 'kbhi', 'sale', 'bhai', 'bajrangi', 'brother']
['bhai', 'our', 'luck', 'kha', 'hum', 'your', 'with', 'party', 'what', 'sake']
['pomegranate', 'and', 'cut']
['you', 'riyad', 'salman', 'khan', 'is', 'to', 'sun', 'no', 'the', 'first', 'is', 'seocho', 'the', 'msalman', 'is', 'the', 'to', 'is', 'to', 'hereafter', 'of', 'coffee', 'what']
['lovly', 'sallu', 'bagine']
['bhai', 'iftar', 'farty', 'is', 'what']
['small', 'happy', 'me', 'the', 'lets', 'do', 'it', 'bhai', 'wedding', 'of', 'party', 'you', 'guarantee']
['herd', 'you', 'too', 'kiss', 'the', 'movie', 'view', 'will', 'jab', 'is', 'born', 'he', 'he', 'was', 'gave', 'of', 'mere', 'movies', 'muslims', 'the', 'coffee', 'beans', 'too', 'go', 'hn']
['today', 'of', 'party', 'bhai', 'side', 'i', 'know']
['kitty', 'party', 'brainless', 'rude']
['salman', 'from', 'hindu', 'bangya', 'he', 'byu', 'someone', 'movie', 'dkne', 'children', 'things']
['one', 'dum', 'tayyar']
['brothers', 'is', 'meal', 'rumor', 'he', 'muslims', 'my', 'challenge', 'to', 'wale']
['super', 'duper', 'flop', 'anchallah', 'them', 'is', 'salman', 'khan', 'you']
['hm', 'toh', 'ready', 'bs', 'your', 'tasrif', 'keep', 'of', 'to']
['tum', 'room', 'hindu']
['is', 'cut', 'of', 'filam', 'view', 'someone', 'too', 'true', 'muslim', 'children', 'will', 'go']
['haaa', 'bhai', 'hoooo', 'added', 'party', 'today', 'of']
['aaja', 'sister', 'ice', 'cream', 'ours', 'father', 'to', 'talk', 'kr', 'loud', 'earth', 'or', 'maru', 'bhoxda', 'room', 'cutta']
['what', 'teyar', 'here', 'jnb']
['teri', 'party', 'tere', 'baab', 'my', 'of', 'on', 'worthy']
['tanik', 'seafood', 'guarantee']
['mere', 'some', 'society', 'may', 'children', 'more', 'what', 'borrowed', 'hoon']
['khan', 'says', 'tho', 'salman', 'khan', 'the', 'heart', 'yearning', 'out', 'brother', 'the', 'for']
['bhai', 'ours', 'she', 'was', 'air', 'maine', 'comment', 'but', 'day', 'eid', 'mubarak', 'guarantee']
['her', 'party', 'whereof', 'here', 'bhai']
['then', 'may', 'kb', 'will', 'party', 'with', 'salman']
['salman', 'bhai', 'is', 'songs', 'my', 'movie', 'me', 'too', 'could', 'plz']
['salman', 'is', 'me', 'which', 'hi', 'mayor', 'favourite', 'is', 'hanuman', 'show', 'up', 'or', 'salman', 'you', 'is', 'movie', 'hit', 'children', 'super', 'hit', 'will']
['dress', 'happy', 'main', 'party', 'of', 'is', 'you', 'born', 'ours', 'said', 'i', 'will', 'you', 'sare', 'comment', 'read', 'guarantee', 'to', 'one', 'reply', 'to', 'getting', 'is']
['he', 'has', 'bhai', 'party', 'said', 'could', 'and', 'place', 'per', 'did', 'timing', 'party', 'of', 'or', 'could', 'could', 'aa', 'money', 'party', 'me']
['bhai', 'song', 'so', 'much', 'think', 'to', 'i', 'will', 'as', 'statue', 'i', 'will', 'but', 'nyc', 'song']
['room', 'kutta', 'tera', 'movi', 'could', 'view', 'but', 'harami']
['salman', 'bhai', 'show', 'up', 'my', 'namastey', 'salaam', 'is', 'eid', 'your', 'hit', 'guarantee', 'jai', 'bajrangbali']
['very', 'very', 'very', 'very', 'very', 'nice']
['eid', 'mubarak', 'bajrangi', 'bhijan']
['law', 'you', 'salman']
['yes', 'bhai', 'billet', 'testimonies', 'song']
['bhai', 'so', 'sad', 'mixed', 'this', 'song', 'site', 'on', 'bared', 'one', 'thousand', 'rhma', 'bags', 'deliver', 'this', 'sng']
['eight', 'party', 'salman', 'bhai', 'your', 'gift']
['someone', 'too', 'muslim', 'is', 'of', 'picture', 'to', 'to', 'see']
['mast', 'bhai', 'one', 'no']
['one', 'talk', 'your', 'kcci', 'children', 'lgi', 'salman', 'bhai', 'softly', 'know', 'you', 'lilacs', 'bt', 'within', 'talk', 'you', 'know', 'children', 'article', 'will', 'jab', 'so', 'you', 'softly', 'cntct', 'children', 'will', 'do', 'mine', 'talk', 'clear', 'children', 'kr', 'end']
['ramadan', 'gold', 'eid', 'very', 'very', 'mubarak', 'guarantee', 'love']
['is', 'to', 'mr.', 'kehte', 'is', 'the', 'coffee', 'beans', 'muslims', 'the', 'film', 'hit', 'stirred', 'up', 'shows', 'give']
['ramadan', 'mubarak', 'sale', 'too']
['lubbbbb', 'yyyy', 'sallllluuuu']
['isski', 'film', 'god', 'and', 'flop', 'guarantee', 'gold', 'age', 'already', 'will', 'where', 'all', 'flop', 'guarantee', 'gold', 'will', 'you', 'did', 'page', 'salman', 'muslim', 'of', 'two', 'of', 'did', 'taseer', 'the', 'is']
['hell', 'hate', 'while', 'is', 'correction', 'the']
['nice', 'bajrangi', 'bhai']
['all', 'muslim', 'exit', 'i', 'know', 'gujaris', 'of', 'two', 'somebody', 'of', 'yes', 'ramadan', 'me', 'yeto', 'fence', 'will', 'ramadan', 'me', 'to', 'guarantee']
['god', 'the', 'male', 'of', 'behurmati', 'of', 'tune', 'salman']
['from', 'dajjal', 'is', 'salman', 'khan']
['jai', 'jai', 'bajrang', 'bali', 'sallu', 'bhai', 'one', 'number']
['fabulous', 'song', 'is']
['god', 'you', 'my', 'ours', 'haveza', 'secure', 'what', 'hold']
['bhai', 'of', 'moving', 'he', 'so', 'there', 'is', 'good', 'of', 'burning', 'he']
['love', 'salman', 'or', 'always', 'like', 'brother', 'god', 'always', 'your', 'with', 'will']
['yes', 'boss', 'main', 'toh', 'your', 'film', 'they', 'for', 'small', 'when', 'the', 'i', 'know', 'the', 'majority', 'of', 'guarantee', 'doing', 'he', 'is', 'young', 'nehi', 'magic']
['salman', 'of', 'band', 'charm', 'i', 'know', 'needed', 'is', 'bar']
['yas', 'is', 'film', 'put', 'with', 'a', 'math', 'on', 'bjrng', 'brother', 'uterus', 'flop', 'here', 'is', 'film']
['and', 'salman', 'sale', 'that', 'bohat', 'boasting', 'which', 'muslims', 'that', 'she', 'was', 'of', 'muslim', 'put', 'with', 'a', 'to', 'view', 'tho', 'with', 'a', 'will', 'custom', 'film', 'bolke', 'she', 'was']
['so', 'is', 'salman', 'cut', 'film', 'put', 'muslim', 'math', 'on']
['sllam', 'bhai', 'i', 'stay', 'admubrkh']
['has', 'room', 'eid', 'me', 'mother', 'dhoom', 'pains', 'jane']
['nice', 'bhai', 'may', 'of', 'course', 'will']
['the', 'special', 'song', 'eid', 'the', 'party', 'custom', 'side', 'i', 'know']
['initial', 'fucker', 'room', 'bhosrdi', 'evil', 'gart', 'name', 'of', 'someone', 'chiz', 'children', 'what', 're', 'tujme']
['verse', 'zain', 'my', 'lattice', 'born', 'see', 'what']
['salman', 'what', 'tm', 'really', 'muslim', 'guarantee', 'if', 'guarantee', 'you', 'muslims', 'the', 'name', 'per', 'dhbba', 'guarantee']
['yes', 'yes', 'yes', 'you', 'log', 'actually', 'bolre', 'guarantee']
['dektia', 'their', 'how', 'release', 'will', 'movie']
['chup', 'down', 'humiliated', 'you', 'muslim', 'to', 'is', 'gold', 'you', 'one', 'stepmother', 'is', 'yet']
['hit', 'what', 'course', 'do', 'salman', 'of']
['room', 'muslim', 'the', 'name', 'by', 'the', 'ignominy', 'is', 'is', 'sale', 'tune', 'muslim', 'the', 'for', 'did', 'hi', 'what', 'is', 'or', 'already', 'what', 'money', 'is', 'you', 'us', 'i', 'know', 'too', 'water', 'money', 'is']
['cub', 'shame', 'of', 'is', 'children', 'tujh', 'may', 'zalill', 'human']
['enka', 'someone', 'up', 'religion', 'to', 'is']
['bhosdiwale', 'bhai', 'the', 'against', 'some', 'wrong', 'mat', 'it', 'was', 'your', 'life', 'jnd', 'krdunga', 'me', 'mc', 'harami', 'log']
['tum', 'foot', 'guarantee']
['salo', 'this', 'queue', 'mine', 'malt', 'was', 'reviled', 'are', 'guarantee', 'sale', 'success', 'share', 'the', 'to', 'to', 'but', 'nd', 'path', 'dunga']
['commission', 'or', 'firalha', 'i', 'know', 'makes', 'salman', 'idar', 'what', 'lelo', 'hereafter', 'me', 'very', 'torturing', 'torturing', 'the', 'die']
['is', 'bhosdiwale', 'escape', 'vale', 'children', 'bc', 'mc', 'harami', 'sale', 'suwar', 'of', 'olad']
['eid', 'of', 'party', 'kahape', 'soap', 'bhai']
['bohat', 'think', 'song', 'bhai', 'i', 'stay', 'you', 'bohat', 'dislocated', 'smart', 'guarantee']
['brother', 'eid', 'mubarak']
['thnks', 'alot', 'sallu']
['chor', 'is', 'motherfucker', 'salman']
['someone', 'bared', 'see', 'is', 'tere', 'mivie']
['hindu', 'muslim', 'the', 'name', 'on', 'money', 'like', 'money', 'is', 'salman', 'khan', 'shame']
['bhai', 'eid', 'or', 'gift', 'children', 'doge']
['so', 'that', 'true', 'muslim', 'guarantee', 'to', 'eid', 'the', 'from', 'is', 'cut', 'of', 'film', 'mat', 'to', 'see']
['ahi', 'actually', 'while', 'is', 'jab', 'our', 'coming', 'bone', 'will', 'go']
['non', 'believer', 'of', 'copy', 'may', 'teri', 'movi', 'children', 'see']
['wise', 'too', 'fill', 'hm', 'bs', 'here', 'mother', 'bs', 'came', 'this', 'is', 'color', 'hm', 'often', 'this', 'only', 'money', 'map', 'the']
['salman', 'bhai', 'me', 'too', 'anna', 'is']
['wise', 'you', 'were', 'absent', 'of', 'is', 'said', 'i', 'know']
['you', 'or', 'too', 'conscious', 'hong', 'here', 'to', 'to', 'varies', 'hong', 'anchallah']
['evening', 'salman', 'bat', 'absent', 'will']
['alisha', 'sallu', 'hat', 'to', 'incoming', 'the', 'the', 'dream', 'to', 'see', 'band', 'somebody']
['or', 'me', 'too', 'indian', 'he', 'could', 'happen', 'he', 'is', 'already', 'muslim', 'my', 'can', 'of', 'or', 'myself', 'my', 'muslim', 'kehta', 'he', 'jaheel']
['yeh', 'flair', 'my', 'toys', 'zaker', 'bathroom', 'my', 'dam', 'somebody', 're']
['sallu', 'is', 'bst']
['ready', 'is', 'bhai', 'jan']
['salman', 'men', 'mere', 'question', 'or', 'answer', 'needed', 'hum', 'them', 'to', 'you', 'could', 'else', 'you', 'too', 'muslim', 'on', 'most', 'reply']
['them', 'muslim', 'small', 'my', 'she', 'was', 'first', 'ours', 'you', 'my', 'see', 'you', 'today', 'oh', 'well', 'by', 'is', 'a', 'musa', 'mano', 'of', 'exercises', 'i', 'know', 'is', 'samga', 'we', 'threat', 'it', 'came', 'out', 'is', 'could', 'to', 'see', 'would', 'is', 'sadi', 'movie']
['weat', 'karna', 'will']
['you', 'thing', 'wale', 'being', 'human', 'guarantee', 'bus', 'your', 'this', 'only', 'bt', 'from', 'all', 'apart', 'you', 'letter', 'i', 'know', 'some', 'jada', 'smart', 'children', 'per', 'the', 'heart', 'i', 'know', 'ess', 'pure', 'bollywood', 'beautiful', 'guarantee', 'pure', 'package', 'the', 'heart', 'your', 'pass', 'already', 'ethnical', 'all']
['so', 'that', 'one', 'muslim', 'through', 'faith', 'the', 'with', 'traitors', 'subject', 'is', 'use', 'support', 'integrator', 'more', 'if', 'disbelief', 'someone', 'to', 'first', 'obey', 'god', 'and', 'dawath', 'do', 'already', 'us', 'cruel', 'my', 'support', 'subject', 'guarantee', 'kaho', 'of', 'islam', 'what']
['very', 'love', 'you', 'children', 'understand']
['now', 'easvariya', 'or', 'very', 'morning', 'hi', 'to', 'he', 'to', 'to', 'you', 'said', 'i', 'know', 'will', 'get']
['you', 'the', 'heart', 'is', 'you', 'i', 'stay', 'is', 'mera', 'salman', 'is']
['and', 'pants', 'survivors', 'muslim', 'guarantee', 'hindu', 'make', 'is', 'drags', 'tere', 'on']
['teri', 'party', 'you', 'hi', 'mubarak', 'our', 'for', 'god', 'hi', 'coffee']
['may', 'wants', 'he', 'what', 'of', 'bajrangi', 'brother', 'film', 'flap', 'here', 'pukka']
['bajrangi', 'film', 'flop', 'hogiii', 'salman', 'of', 'aaa', 'scar', 'he', 'gii', 'saaaalaaaa', 'chotia']
['this', 'time,', 'talk', 'cr', 'by', 'bajrangi', 'brother']
['awsome', 'song', 'brother']
['yes', 'levs', 'sallu', 'brother']
['sir', 'show', 'up', 'mine', 'dress', 'wada', 'kea', 'hi']
['drags', 'guarantee', 'bajrangi', 'a', 'demon', 'by', 'lanti', 'salman']
['hume', 'too', 'party', 'needed']
['flop', 'movie', 'kutta', 'salman']
['yes', 'ready', 'close', 'so', 'handsome', 'bhagwaan', 'you', 'yellowtail', 'nazar', 'i', 'know', 'saved']
['salman', 'you', 'to', 'allah', 'or', 'brkt', 'already', 'dark', 'bad', 'says', 'his', 'grme', 'jurjate', 'thats', 'means', 'haram', 'choir', 'or', 'rebuttal', 'ok']
['eid', 'kab', 'huh', 'it', 'from', 'salman', 'of', 'film', 'release', 'the', 'is']
['she', 'toh', 'haiiiiii']
['ied', 'mubarak', 'guarantee', 'salman', 'god', 'i', 'know', 'two', 'is', 'your', 'is', 'movie', 'too', 'great', 'hit', 'guarantee', 'your', 'last', 'moved', 'of', 'kind']
['your', 'movie', 'me', 'everyone', 'ill', 'is', 'jai', 'she', 'ram', 'tab', 'oath', 'treat', 'good']
['bhai', 'i', 'stay', 'as', 'someone', 'children', 'may', 'super', 'man', 'bhai', 'i', 'stay', 'or', 'fan']
['eid', 'the', 'from', 'salman', 'mine', 'malt', 'ransomed']
['all', 'i', 'stay', 'salman', 'khan']
['to', 'to', 'is', 'mat', 'hair', 'the', 'you', 'fanna', 'to', 'will', 'happen', 'is', 'care', 'tera', 'liar']
['he', 'has', 'bhai', 'regards']
['my', 'sallu', 'bro', 'always', 'mindblowing', 'regards', 'sallu', 'bhai']
['iss', 'bar', 'eid', 'of', 'party', 'bhai', 'of', 'end', 'i', 'know']
['you', 'what', 'what', 'stayed', 'brother', 'kab', 'will', 'big', 'boss', 'plz', 'reply', 'karna']
['salman', 'khan', 'teri', 'film', 'flop', 'will', 'you', 'muslim', 'children', 'you', 'non', 'believer']
['don', 'wary', 'always', 'be', 'happy', 'insalhatla', 'you', 'the', 'film', 'sb', 'i', 'know', 'jada', 'box', 'office', 'me', 'violin', 'wale', 'film', 'high']
['amazngggggg', 'brother', 'love', 'uuuuh', 'someone', 'some', 'the', 'the', 'may', 'toh', 'st', 'day', 'show', 'would', 'go']
['salman', 'khan', 'one', 'there', 'is', 'grace', 'hill', 'is', 'mere', 'bhai', 'is']
['from', 'small', 'talk', 'bheek', 'carry', 'stayed', 'stayed', 'hath', 'file', 'kr', 'eid', 'per']
['eid', 'mubarak', 'brother', 'in', 'advance']
['party', 'to', 'tab', 'will', 'jab', 'life', 'my', 'pretty', 'will', 'and', 'pretty', 'life', 'will', 'and', 'pretty', 'hi', 'my', 'beloved', 'wife', 'will']
['fireplace', 'salman', 'ahi', 'ill', 'chare', 'guarantee', 'on', 'maqsood', 'bhai']
['pirty', 'toh', 'you', 'with', 'karni', 'exam', 'boss']
['ramadan', 'or', 'eid', 'mubbark', 'guarantee', 'salman', 'bhai', 'may', 'you', 'or', 'wait']
['hum', 'to', 'always', 'tayaar', 'rehte', 'huh', 'low', 'your', 'incoming', 'of', 'to', 'the', 'is']
['yes', 'salman', 'khan']
['you', 'poet', 'our', 'orissa', 'me', 'to', 'aao']
['salman', 'bhai', 'main', 'your', 'very', 'if', 'fan', 'he', 'me', 'your', 'very', 'like', 'aata', 'huh']
['love', 'fill', 'up', 'show', 'up', 'main', 'your', 'bohat', 'if', 'fan', 'she', 'sir', 'me', 'you', 'by', 'read', 'brochure', 'is', 'you', 'me', 'back', 'msg', 'somebody', 'give', 'main', 'you', 'i', 'know', 'jab', 'melunga', 'on', 'main', 'you', 'acting', 'dekhaoyanga']
['sallu', 'bhai', 'ilove', 'you']
['bhai', 'festival', 'to', 'bhai', 'or', 'is', 'of', 'where', 'humara', 'flower', 'on']
['salman', 'tum', 'shameless', 'guarantee', 'first', 'male', 'or', 'matlab', 'for', 'the', 'bridge', 'sanjo', 'that']
['color', 'your', 'khairnah', 'he', 'has', 'or', 'waisabi', 'eid', 'to', 'help', 'to', 'is', 'some', 'dino', 'some', 'is']
['sir', 'me', 'your', 'big', 'big', 'fan', 'he', 'mujy', 'apse', 'call', 'on', 'bt', 'karni', 'is', 'one', 'bar', 'sir', 'mera', 'contact', 'on', 'one', 'skype', 'abdul', 'rehman', 'pljhghghgh', 'contact', 'meabdul', 'rehman', 'sahabto']
['bhai', 'logo', 'from', 'all', 'big', 'religion', 'humane', 'belief', 'follow', 'somebody']
['iss', 'bar', 'bjp', 'or', 'kutta', 'muslim', 'on', 'dhabba', 'aanne', 'nothing', 'is', 'eid', 'from', 'oh', 'well', 'is', 'kutta', 'will', 'jute', 'mar', 'shove', 'sale', 'house', 'me', 'ghusn']
['is', 'high', 'silver', 'kutta', 'she', 'was']
['this', 'only', 'to', 'all', 'log', 'want', 'huh', 'of', 'hum', 'let', 'gold', 'tum', 'log', 'vohi', 'kr', 'are', 'guarantee']
['uncle', 'singh', 'you', 'what', 'rim', 'is']