-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdata.json
More file actions
1562 lines (1562 loc) · 43 KB
/
data.json
File metadata and controls
1562 lines (1562 loc) · 43 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"": 18100,
"Penn & Teller": 18100,
"Jackie Chan": 1500000,
"Wikileaks": 823000,
"Memento": 368000,
"Monaco Grand Prix": 49500,
"Dalai Lama": 450000,
"FaZe Clan": 74000,
"Wayne Gretzky": 201000,
"Wembley Stadium": 201000,
"Warren Harding": 22200,
"Adidas": 16600000,
"Rocky": 450000,
"Victoria Secret": 7480000,
"David And Goliath": 74000,
"Mortgage Calculator": 3350000,
"Birthday Cake": 2240000,
"Peter Kay": 246000,
"BNP Paribas": 1830000,
"Loneliness": 135000,
"Sherlock": 1220000,
"Die Hard": 368000,
"UPS": 6120000,
"Quentin Tarantino": 673000,
"Churchill": 450000,
"Power Rangers": 4090000,
"Hawthorne Effect": 40500,
"Piano": 6120000,
"Cleaner": 1220000,
"Hemmeroids": 1220000,
"Mike Tyson": 823000,
"Atletico Madrid": 1500000,
"Braveheart": 450000,
"Indiana Jones": 673000,
"Capitalism": 368000,
"Cult": 201000,
"Mad Max": 673000,
"Avatar": 2240000,
"Huffington Post": 7480000,
"Sydney Opera House": 165000,
"Poodle": 450000,
"Bart Simpson": 246000,
"Bankruptcy": 246000,
"Auschwitz": 823000,
"Chinese New Year": 301000,
"Colombia": 1000000,
"Chris Jericho": 246000,
"Serial": 246000,
"Solar Panels": 368000,
"Oliver Cromwell": 110000,
"Colossus Of Rhodes": 74000,
"Mark Zuckerberg": 1220000,
"Egyptian Pyramids": 135000,
"Corruption": 246000,
"Psoriasis": 1500000,
"Road Runner": 368000,
"Pringles": 368000,
"Maria Sharapova": 673000,
"Celine Dion": 1500000,
"Ryanair": 24900000,
"Zinedine Zidane": 301000,
"Oakland Raiders": 1500000,
"Toy Story 3": 246000,
"Female Genital Mutilation": 165000,
"Wimbledon": 2740000,
"Chelsea Manning": 550000,
"Blood Moon": 110000,
"Atlanta Falcons": 1500000,
"The Simpsons": 550000,
"Six Feet Under": 135000,
"Ohio Stadium": 9900,
"Best Diets": 27100,
"Reddit": 11100000,
"Rothschild Family": 74000,
"Michael Bay": 201000,
"Gonorrhea": 673000,
"Legal Highs": 60500,
"Football Results": 673000,
"Owen Hart": 60500,
"Crabs": 368000,
"Banana Cake": 165000,
"Shutter Island": 550000,
"Summer Solstice": 135000,
"Magic The Gathering": 368000,
"Cleveland Indians": 1500000,
"Juan Manuel Santos": 60500,
"The Big Bang Theory": 2240000,
"Disneyland": 2240000,
"Cankles": 90500,
"Lennox Lewis": 90500,
"Buddhism": 550000,
"Red Hot Chili Peppers": 1000000,
"Drug Addiction": 60500,
"Santorini": 1000000,
"Gladiator": 673000,
"Goldman Sachs": 550000,
"Jurassic World": 1500000,
"No Mans Sky": 550000,
"Tax Evasion": 33100,
"Aldi": 6120000,
"Hulk Hogan": 450000,
"Shanghai": 550000,
"Mini Cooper": 1500000,
"UFO": 673000,
"Melania Trump": 4090000,
"Tree Surgeon": 27100,
"XXX": 151000000,
"Eating Disorders": 135000,
"Prada": 823000,
"Tunisia": 301000,
"Volcano Surfing": 1300,
"Anna Kournikova": 368000,
"China Mobile": 74000,
"Stranger Things": 6120000,
"Oculus Rift": 550000,
"Toronto Raptors": 673000,
"Maldives": 1220000,
"Johan Cruyff": 90500,
"Qantas": 1500000,
"Franz Beckenbauer": 60500,
"Game Of Thrones": 11100000,
"Dr Dre": 550000,
"Bon Jovi": 823000,
"Paul Mccartney": 823000,
"Train Times": 3350000,
"No Country For Old Men": 301000,
"Blue Lagoon": 450000,
"KFC": 5000000,
"Beyonce": 5000000,
"Motocross": 1220000,
"Anorexia": 550000,
"Jimmy Carter": 450000,
"Kelly Clarkson": 673000,
"Mechanic": 450000,
"Netflix": 83100000,
"Suicide": 673000,
"Superbad": 368000,
"Rich": 201000,
"Deutsche Bank": 3350000,
"Rosa Parks": 450000,
"Augmented Reality": 246000,
"Tesla": 4090000,
"Canada": 2240000,
"Chicago White Sox": 246000,
"VanossGaming": 301000,
"Stroke": 450000,
"Tetris": 3350000,
"Neptune": 368000,
"John Lennon": 1000000,
"United States": 823000,
"David Icke": 165000,
"Beer": 823000,
"Putin": 1000000,
"Boeing": 450000,
"Police": 1000000,
"Fostering": 165000,
"Shooting": 1500000,
"Charlotte'S Web": 165000,
"HTC Vive": 550000,
"Blueberry Wine": 6600,
"Sergio Aguero": 201000,
"Pampers": 673000,
"Prince": 1220000,
"Downton Abbey": 673000,
"Saturn": 3350000,
"Jay Z": 1220000,
"Archery": 368000,
"Flamengo": 9140000,
"Magic Mushrooms": 135000,
"Schizophrenia": 1000000,
"Pittsburgh Penguins": 1220000,
"Blackfish": 135000,
"The Green Mile": 201000,
"Temple Run": 6120000,
"Dominican Republic": 673000,
"Benjamin Franklin": 550000,
"Despacito": 13600000,
"How To Train Your Dragon": 301000,
"Love Island": 1500000,
"South Korea": 550000,
"Royal Family": 110000,
"Pink Floyd": 1220000,
"Malaysia Airlines": 1500000,
"Jenna Marbles": 201000,
"The Home Depot": 24900000,
"Ashley Madison": 823000,
"Angela Merkel": 823000,
"New England Patriots": 1830000,
"Uno": 1830000,
"Scented Candles": 40500,
"Eden Hazard": 550000,
"Singapore": 1830000,
"Americas Got Talent": 368000,
"Cheap Flights": 6120000,
"Adam Curtis": 33100,
"Paris Attack": 74000,
"Harp": 201000,
"Tiananmen Square": 90500,
"Johnny Cash": 1000000,
"Coffee Beans": 201000,
"Luxury Hotels": 49500,
"Donna Summer": 201000,
"The Great Escape": 135000,
"Russia": 2240000,
"Broadband": 135000,
"Criss Angel": 246000,
"Curb Your Enthusiasm": 368000,
"Fawlty Towers": 90500,
"Free Tibet": 14800,
"Ariana Grande": 7480000,
"The Lion King": 1000000,
"Ben Affleck": 1830000,
"Joe Montana": 165000,
"Kobe Bryant": 823000,
"Spirited Away": 450000,
"AIDS": 550000,
"Ronaldinho": 1000000,
"Alzheimers": 1220000,
"Heart Disease": 135000,
"Bali Bombing": 9900,
"Horoscope": 7480000,
"Dyson": 1000000,
"Tom Petty": 3350000,
"Requiem For A Dream": 368000,
"Torah": 110000,
"Driving Lessons": 110000,
"The Sims": 1830000,
"Everton": 1830000,
"Bayer": 301000,
"Justin Gatlin": 135000,
"Nike": 13600000,
"Big Brother": 1500000,
"David Fincher": 246000,
"Code Computerlove": 1600,
"Calculator": 24900000,
"Real Madrid": 20400000,
"Honda": 5000000,
"Batman Begins": 301000,
"Epilepsy": 368000,
"Manchester Bombing": 368000,
"Facepalm": 301000,
"Madonna": 1830000,
"Lays": 368000,
"Margaret Thatcher": 368000,
"Wikipedia": 13600000,
"Los Angeles": 2240000,
"Salmonella": 550000,
"Donkey Kong Country": 90500,
"Base Jumping": 60500,
"One Direction": 1830000,
"Chapecoense": 673000,
"Marathon": 368000,
"Tai Chi": 301000,
"Tattooist": 5400,
"Athletics": 246000,
"Elton John": 823000,
"Clash Of Clans": 24900000,
"Alcohol": 673000,
"Uncharted 4": 673000,
"The Terminator": 74000,
"Camp Nou": 301000,
"Twerking": 823000,
"Fate": 673000,
"Michael Jackson": 4090000,
"9 11": 1000000,
"Martin Scorsese": 301000,
"Andrea Pirlo": 135000,
"Fake News": 301000,
"Black Mirror": 2240000,
"Crossfit": 1830000,
"Heineken": 673000,
"Citizen Kane": 165000,
"Carpenter": 301000,
"Meth": 201000,
"Lebanon": 450000,
"Golf": 1830000,
"Bobo Doll Experiment": 9900,
"Miami Dolphins": 1500000,
"Nintendo Wii": 201000,
"The Wind In The Willows": 49500,
"Walmart": 45500000,
"Neil Diamond": 301000,
"Whitney Houston": 1000000,
"Fibonacci Sequence": 165000,
"Baidu": 2240000,
"Beaver Stadium": 12100,
"Malcolm X": 673000,
"Katy Perry": 4090000,
"Cancer": 823000,
"Homelessness": 165000,
"Oklahoma City Bombing": 74000,
"David Beckham": 1000000,
"Springer Spaniel": 165000,
"Narcos": 1500000,
"Vienna": 450000,
"Twin Peaks": 1830000,
"Schindlers List": 60500,
"Jim Carrey": 1500000,
"Xi Jinping": 201000,
"Testicular Cancer": 135000,
"R Kelly": 550000,
"Staffordshire Bull Terrier": 246000,
"Amsterdam": 2240000,
"Superman": 1830000,
"Super Bowl": 1830000,
"Unilever": 450000,
"True Detective": 450000,
"Restaurant": 45500000,
"Dry Cleaners": 823000,
"Yao Ming": 246000,
"Donnie Darko": 550000,
"New Zealand": 1220000,
"IP Address": 550000,
"Lady Gaga": 4090000,
"South Park": 1830000,
"Kitty Genovese": 49500,
"Mastercard": 1000000,
"Canoeing": 90500,
"Apple": 16600000,
"Football": 6120000,
"General Electric": 246000,
"Sikh": 301000,
"SpongeBob SquarePants": 368000,
"Mount Sinai": 110000,
"Election Results": 673000,
"Guns": 2240000,
"Israel": 1830000,
"Anxiety": 1000000,
"Sausage Party": 673000,
"A Clockwork Orange": 135000,
"George Foreman": 201000,
"Miami Heat": 1220000,
"Bank Of China": 201000,
"Karl Marx": 673000,
"Christ The Redeemer": 74000,
"Strictly Come Dancing": 550000,
"Dentist": 1220000,
"Kenny Rogers": 368000,
"Divorce Lawyer": 40500,
"April The Giraffe": 1500000,
"Trainspotting": 823000,
"Boxer": 1500000,
"The Dark Knight": 673000,
"Alex Ferguson": 90500,
"Cannabis": 823000,
"Neymar": 6120000,
"Jerusalem": 823000,
"Mercury": 550000,
"Slacklining": 40500,
"Roma": 1220000,
"Lemmings": 201000,
"Edward Snowden": 550000,
"Snowboard": 550000,
"NFL": 13600000,
"IMDB": 11100000,
"Hillsborough Disaster": 33100,
"Oman": 550000,
"Golden State Warriors": 4090000,
"Kurt Angle": 301000,
"The Diary Of Anne Frank": 90500,
"Jeremy Clarkson": 246000,
"Thomas Edison": 450000,
"Gal Gadot": 4090000,
"Driving Instructor": 49500,
"Boston Celtics": 1830000,
"Global Warming": 673000,
"The Intouchables": 60500,
"Wayne Rooney": 673000,
"The Dark Knight Rises": 450000,
"Britains Got Talent": 368000,
"United Kingdom": 1500000,
"Business Insider": 450000,
"Tottenham Hotspur": 368000,
"Playstation VR": 450000,
"Arthritis": 673000,
"Haagen Dazs": 368000,
"Andre The Giant": 301000,
"Uri Geller": 60500,
"Ramadan": 673000,
"The Marshmallow Test": 4400,
"Prince Charles": 550000,
"Vegetarian": 368000,
"Reykjavik": 368000,
"Virgin Atlantic": 823000,
"Muhammad Ali": 3350000,
"Black Hole": 368000,
"Currency Converter": 6120000,
"Search Engine Optimisation": 673000,
"General Election": 135000,
"Rear Window": 90500,
"The Sixth Sense": 165000,
"New York Yankees": 1220000,
"Christian Dior": 201000,
"Egypt": 1000000,
"San Antonio Spurs": 1000000,
"Scuba Diving": 165000,
"Lesbian": 1500000,
"Chicago Bulls": 1000000,
"Electrician": 301000,
"Wordpress": 3350000,
"Bjorn Borg": 110000,
"Microsoft": 5000000,
"Roland Garros": 1220000,
"Doctors": 1220000,
"Victoria Falls": 165000,
"Kyle Field": 9900,
"Stonehenge": 673000,
"Adele": 2240000,
"North Pole": 135000,
"Saudi Arabia": 823000,
"AFL": 1500000,
"Malaysia": 1000000,
"Protein Shakes": 201000,
"Tax Avoidance": 12100,
"Olympics": 301000,
"Chocolate Cake": 368000,
"Periodic Table": 3350000,
"Zoella": 368000,
"Algeria": 301000,
"Teeth Whitening": 301000,
"Bulldog": 1000000,
"The Dress": 110000,
"Nanny": 74000,
"Long Island Iced Tea": 301000,
"Lionel Messi": 1830000,
"Xbox One": 5000000,
"Jeanne Calment": 60500,
"P&G": 201000,
"Harvey Weinstein": 2240000,
"Jeep": 2240000,
"JFK": 550000,
"Poland": 550000,
"HP": 2740000,
"Kitkat": 135000,
"Chyna": 135000,
"Tom Hanks": 1220000,
"Triple H": 368000,
"The Pianist": 135000,
"Hilton": 1000000,
"Jose Mourinho": 550000,
"Pluto": 450000,
"Aurora": 673000,
"Homophobia": 135000,
"Kim Kardashian": 9140000,
"North Korea": 9140000,
"Chanel": 1830000,
"Cremation": 90500,
"Chicago Blackhawks": 550000,
"Cheeky Nandos": 14800,
"Justin Timberlake": 1220000,
"Melbourne Cricket Ground": 18100,
"Ford": 4090000,
"Bob Dylan": 823000,
"FC Barcelona": 9140000,
"The Hitchhikers Guide To The Galaxy": 201000,
"Tom Hardy": 2240000,
"Milgram Experiment": 49500,
"Pablo Picasso": 450000,
"El Rubius": 246000,
"Slimfast": 135000,
"Harry Potter": 5000000,
"Immigration": 823000,
"The Secret Life Of Pets": 550000,
"All Blacks": 368000,
"Miss Universe": 450000,
"German Shepherd": 1220000,
"Brian Clough": 33100,
"Janet Jackson": 823000,
"The Joe Rogan Experience": 49500,
"Islam": 823000,
"Golden Gate Bridge": 368000,
"Kitesurfing": 74000,
"New York Rangers": 301000,
"The Wonder Years": 74000,
"Emirates": 3350000,
"ISIS": 1830000,
"Nits": 301000,
"Stonemason": 27100,
"Shaquille O'Neal": 550000,
"Cheese Fondue": 40500,
"Vodafone": 11100000,
"Lionel Richie": 450000,
"Derren Brown": 60500,
"Audi": 4090000,
"Reggae": 550000,
"Prison Break": 3350000,
"Betty Boop": 301000,
"David Blaine": 201000,
"Raiders Of The Lost Ark": 135000,
"Saxophone": 301000,
"Steven Spielberg": 450000,
"Rape": 550000,
"Spa": 1830000,
"Twelve Monkeys": 33100,
"Gillette": 301000,
"Scarlett Johansson": 3350000,
"Cristiano Ronaldo": 6120000,
"Reincarnation": 135000,
"Aretha Franklin": 368000,
"Skrillex": 823000,
"Doctor Who": 1500000,
"Google": 755000000,
"Exchange Rate": 2740000,
"Moon Landing": 90500,
"Luis Suarez": 550000,
"Mcdonalds": 13600000,
"Kuala Lumpur": 550000,
"Antoine Griezmann": 550000,
"Popeye": 1830000,
"Domestic Abuse": 33100,
"Bill Russell": 135000,
"Starry Night": 246000,
"Emmanuel Macron": 1830000,
"Recipes": 1220000,
"Monopoly": 1500000,
"Shih Tzu": 1220000,
"George Orwell": 246000,
"Doctors Without Borders": 74000,
"Menopause": 450000,
"Hotel Rwanda": 90500,
"Holocaust": 450000,
"Cocaine": 450000,
"Border Terrier": 165000,
"The Secret": 301000,
"Payday Loans": 673000,
"The Jacksons": 18100,
"Vietnam": 1220000,
"Marvel": 2740000,
"Jerry Rice": 90500,
"Hoover Dam": 246000,
"Ice Climbing": 33100,
"Discrimination": 301000,
"Maroon 5": 823000,
"Fargo": 823000,
"Weightloss": 368000,
"Jurassic Park": 1220000,
"Vin Diesel": 2240000,
"Abortion": 368000,
"WWE": 13600000,
"Bupa": 301000,
"Sin City": 301000,
"General Mills": 74000,
"Scrubs": 550000,
"The Grand Budapest Hotel": 110000,
"Scabies": 823000,
"Guitar": 1500000,
"Chester Bennington": 3350000,
"Haiti Earthquake": 49500,
"Samaritans": 135000,
"Notts County": 90500,
"Cello": 246000,
"Leicester City": 823000,
"YSL": 550000,
"Jennifer Lawrence": 2740000,
"Eurovision": 450000,
"Beauty Salon": 165000,
"Washington Redskins": 450000,
"LifeHacker": 550000,
"Strip Club": 673000,
"Gmail": 506000000,
"Deforestation": 201000,
"Ralph Lauren": 2240000,
"Weightlifting": 40500,
"Lent": 201000,
"Subway": 6120000,
"American Express": 6120000,
"Corinthians": 6120000,
"Death": 368000,
"Jesus": 1500000,
"Marijuana": 1000000,
"Mariah Carey": 2740000,
"Edoardo Mangiarotti": 590,
"Morocco": 823000,
"United Arab Emirates": 550000,
"Jupiter": 1000000,
"Grenfell Tower": 550000,
"Pug": 1500000,
"Gawker": 60500,
"Cartoons": 673000,
"Fleas": 135000,
"T-Mobile": 6120000,
"Truman Show": 246000,
"Outlook": 68000000,
"IPhone X": 11100000,
"Darren Aronofsky": 301000,
"Bungee Jump": 27100,
"Delta": 4090000,
"Mickey Mouse": 2740000,
"The Office": 823000,
"Clint Eastwood": 1220000,
"William Shakespeare": 550000,
"Border Collie": 1220000,
"Family Guy": 1220000,
"Mass Surveillance": 2400,
"Window Cleaner": 33100,
"Loans": 450000,
"Kraft": 165000,
"Mental Health": 201000,
"Midwifery": 135000,
"Manchester By The Sea": 1500000,
"Matt Mullenweg": 5400,
"Western Union": 4090000,
"Larisa Latynina": 2400,
"Car Rental": 2240000,
"F1": 5000000,
"Christianity": 450000,
"Taekwondo": 673000,
"Robert Redford": 550000,
"Novak Djokovic": 673000,
"Rhinoplasty": 110000,
"San Francisco 49ers": 368000,
"Uber": 20400000,
"2001 A Space Odyssey": 201000,
"Grand Canyon": 823000,
"Don Quixote": 165000,
"Tumblr": 13600000,
"Nikolai Andrianov": 480,
"Coachella Festival": 18100,
"Dictionary": 7480000,
"Manny Pacquiao": 550000,
"Six Nations": 135000,
"Maltese": 1830000,
"Air Pollution": 246000,
"Julian Assange": 368000,
"Cleveland Cavaliers": 3350000,
"Easter": 673000,
"Marie Curie": 550000,
"Terrorism": 550000,
"Bitcoin": 11100000,
"BMW": 6120000,
"ITunes": 7480000,
"Dachshund": 550000,
"This American Life": 246000,
"Palestine": 450000,
"Alarm Clock": 1220000,
"Emoji": 5000000,
"TED": 1220000,
"Pensions": 49500,
"Sunglasses": 673000,
"OJ Simpson": 2240000,
"Oscar Wilde": 450000,
"Bilderberg Group": 22200,
"Bahai Gardens": 5400,
"Cruise": 368000,
"12 Years A Slave": 246000,
"BMX": 1220000,
"Alcoholics Anonymous": 90500,
"Michael Schumacher": 1000000,
"Jet Li": 368000,
"God": 823000,
"Rafael Nadal": 1500000,
"Stanley Kubrick": 301000,
"Coffee Shop": 673000,
"Sexism": 823000,
"Sex Positions": 1830000,
"Shawn Michaels": 165000,
"Tony Blair": 165000,
"Handball": 450000,
"Nelly": 1000000,
"Green Bay Packers": 2240000,
"Basketball": 2240000,
"Kevin Durant": 1500000,
"Identity Theft": 90500,
"Welder": 301000,
"Renault Clio": 550000,
"Pulp Fiction": 823000,
"American History X": 301000,
"Starbucks": 9140000,
"Argentina": 1500000,
"Dior": 823000,
"IAMS": 22200,
"Chow Chow": 1000000,
"The Walking Dead": 7480000,
"DC Comics": 450000,
"Boston Red Sox": 823000,
"Whiplash": 673000,
"Manus Island": 27100,
"Max Martin": 49500,
"The X Factor": 74000,
"Taylor Swift": 6120000,
"Venus Williams": 823000,
"Diet Pills": 74000,
"To Kill A Mockingbird": 368000,
"AK 47": 673000,
"New York Giants": 673000,
"Se7En": 165000,
"Nelson Mandela": 1000000,
"Hair Transplant": 110000,
"Chris Benoit": 165000,
"Car Wash": 1000000,
"Inglourious Basterds": 450000,
"Free Climbing": 12100,
"Daft Punk": 673000,
"Aston Martin": 1000000,
"Fruit Ninja": 1500000,
"Hurricane Irma": 7480000,
"Forrest Gump": 1000000,
"Wuthering Heights": 201000,
"Crystal Meth": 201000,
"Charles Darwin": 368000,
"Mercedes Benz": 2240000,
"Adoption": 246000,
"Porsche": 2740000,
"Inception": 823000,
"Earth": 1830000,
"Democracy": 450000,
"Noahs Ark": 246000,
"Zlatan Ibrahimovic": 673000,
"Seinfeld": 450000,
"Bayern Munich": 1220000,
"Bulimia": 550000,
"Arsene Wenger": 368000,
"Chelsea": 7480000,
"NHS": 450000,
"Leukemia": 550000,
"DMT": 368000,
"Calvin Harris": 673000,
"Karachi Bombing": 1000,
"Karate": 550000,
"Insomnia": 1000000,
"Russell Brand": 368000,
"Chichen Itza": 301000,
"Exam Results": 60500,
"AT&T": 7480000,
"Microsoft Word": 1500000,
"Girl With A Pearl Earring": 110000,
"Cosmetic Surgery": 49500,
"Street Fighter": 1220000,
"Geocaching": 823000,
"Contraception": 201000,
"Floyd Mayweather": 2240000,
"Brazil": 673000,
"Saving Private Ryan": 368000,
"Ferrari": 2240000,
"Nescafe": 301000,
"Yoko Ono": 301000,
"IPhone 7": 11100000,
"Covfefe": 1500000,
"Pizza": 7480000,
"Hanukkah": 450000,
"Gran Torino": 246000,
"Into The Wild": 450000,
"Selena Gomez": 7480000,
"Gamblers Anonymous": 14800,
"Princess Diana": 823000,
"Flights": 5000000,
"Pot Noodle": 22200,
"Some Like It Hot": 90500,
"Obesity": 201000,
"Skin Cancer": 301000,
"Disney": 2740000,
"Leonardo Da Vinci": 1220000,
"The Beach Boys": 74000,
"Orlando Magic": 301000,
"VR": 2740000,
"Lynn Hill": 8100,
"Peaky Blinders": 1500000,
"How I Met Your Mother": 1000000,
"Stumbleupon": 246000,
"NWA": 368000,
"PH Scale": 165000,
"Nintendo Switch": 11100000,
"Ketamine": 301000,
"Miley Cyrus": 3350000,
"John Cena": 2240000,
"Taipei": 301000,
"The Psychopath Test": 9900,
"Beauty": 823000,
"Eminem": 4090000,
"Dubai": 2740000,
"Snapchat": 45500000,
"Gangnam Style": 673000,
"Racism": 450000,
"Mozambique": 246000,
"Fallout 4": 1000000,
"Four Tops": 22200,
"Peru": 1220000,
"Revenge Porn": 201000,
"Nepal Earthquake": 49500,
"Serengeti": 135000,
"Granola": 246000,
"French Bulldog": 1000000,
"Torture": 201000,
"Mona Lisa": 823000,
"Nestle": 550000,
"Fitbit": 4090000,
"David Bowie": 1220000,
"Spectre": 450000,
"ESPN": 24900000,
"Barnes And Noble": 4090000,
"Rose Bowl": 165000,
"Eagles": 1830000,
"Depression": 1220000,
"The Jester": 8100,
"Willie Mays": 49500,
"Sangria": 450000,
"Nikola Tesla": 673000,
"Inside Out": 550000,
"Pomeranian": 1220000,
"Moscow Mule": 673000,
"Germany": 1220000,
"Alien": 1830000,
"Michigan Stadium": 14800,
"Ten Commandments": 368000,
"Limousine": 246000,
"Red Bull": 550000,
"Turkey": 1220000,
"British Airways": 3350000,
"Lung Cancer": 201000,
"Lockerbie Bombing": 9900,
"Indeed": 24900000,
"Eczema": 1220000,
"Tampa Bay Buccaneers": 246000,
"Dark Souls III": 74000,
"Malaria": 550000,
"Rihanna": 5000000,
"The White Helmets": 49500,
"US Open": 1500000,
"Diabetes": 1500000,
"The Sopranos": 201000,
"DuckDuckGo": 2740000,
"Harley Davidson": 2240000,
"FA Cup": 1000000,
"Kamasutra": 1830000,
"Bill Gates": 1500000,
"Zimbabwe": 823000,
"IBM": 823000,
"The Colour Purple": 110000,
"Juventus": 7480000,
"Royal Robbins": 22200,
"Sky Dive": 22200,
"Condoms": 301000,
"Thailand": 1220000,
"Therapy": 301000,
"Jordan": 2740000,
"Qi Gong": 110000,
"Breaking Bad": 2240000,
"Borussia Dortmund": 1500000,
"Sports Direct": 5000000,
"Texas Rangers": 823000,
"Karma": 823000,
"Liposuction": 201000,
"Blood Diamond": 201000,
"Interstellar": 1220000,
"The Shawshank Redemption": 550000,
"Powerball": 6120000,
"Las Vegas": 2740000,
"Volkswagen": 5000000,
"Hay Fever": 165000,
"Amazon": 277000000,
"Plato": 450000,
"Benzodiazepines": 301000,
"Call Of Duty": 3350000,
"Avon": 5000000,
"Ray Charles": 301000,
"Facelift": 74000,
"General Motors": 201000,
"E-Cigarettes": 368000,
"Fidget Spinner": 11100000,
"The OC": 301000,
"Billy Joel": 450000,
"Metropolis": 550000,
"Rome": 673000,
"Sheldon Adelson": 49500,
"Buzzfeed": 5000000,
"New York Mets": 246000,
"Vaseline": 301000,
"Gareth Bale": 823000,
"Walle": 90500,
"PayPal": 30400000,
"Jimi Hendrix": 550000,
"Plumber": 450000,
"France": 1500000,
"Boxing": 1500000,
"The Silence Of The Lambs": 368000,
"Faith Healing": 8100,
"Greece": 673000,
"Leo Tolstoy": 74000,
"The New York Times": 673000,
"Nottingham Forest": 550000,
"Gymnastics": 550000,
"Pac-Man": 5000000,
"Top Gear": 673000,
"Ugly": 201000,
"Boris Becker": 301000,
"Elvis Presley": 1830000,
"JuegaGerman": 450000,
"Boots": 4090000,
"Chia Seeds": 368000,
"Snakes And Ladders": 246000,
"Twenty20": 12100,
"Winnie The Pooh": 550000,
"Hank Aaron": 49500,
"European Union": 823000,
"Bahrain": 450000,
"Serena Williams": 1830000,
"Megan Fox": 1830000,
"James Brown": 450000,
"The Godfather": 450000,
"Photoshop": 6120000,
"Hang Gliding": 60500,
"Paragliding": 201000,
"V For Vendetta": 368000,
"Lebron James": 3350000,
"Santiago Bernabeu": 201000,
"Wonder Woman": 7480000,
"Gold": 1220000,
"London": 2740000,
"American Idol": 550000,
"Bradley Cooper": 1000000,
"Suicide Squad": 201000,
"Engagement Rings": 1500000,
"Volleyball": 673000,
"Super Mario Run": 1830000,
"Tim Berners Lee": 74000,
"Kareem Abdul-Jabbar": 246000,
"Orange": 16600000,
"Christopher Columbus": 368000,
"Albert Einstein": 1500000,
"Alicia Keys": 1000000,
"Periods": 368000,
"Guantanamo Bay": 135000,
"Fight Club": 673000,
"Comcast": 4090000,
"Spain": 823000,
"Abraham Lincoln": 823000,
"Swimming": 823000,
"Broadchurch": 550000,
"Quran": 1220000,
"Ayrton Senna": 301000,
"Valentines Day": 1500000,
"Hinduism": 246000,
"Skydiving": 301000,
"Profiteroles": 201000,
"Venus": 1220000,
"Hunger": 74000,
"Michael Flynn": 368000,
"Santander": 20400000,
"Boca Juniors": 673000,
"Clarinet": 165000,
"Minimum Wage": 550000,
"Refugee Crisis": 18100,
"Rugby World Cup": 90500,
"Feminism": 550000,
"Masseuse": 90500,
"Hotmail": 338000000,
"Cavalier King Charles Spaniel": 368000,
"There Will Be Blood": 165000,
"Meghan Markle": 4090000,
"Pete Sampras": 110000,
"Fifty Shades Of Grey": 1500000,
"Mafia 3": 301000,
"PewDiePie": 1830000,
"Blade Runner": 1830000,
"Waterskiing": 5400,
"Formula 1": 2740000,
"Tiler": 9900,
"Am I Pregnant": 110000,
"Bank Of America": 16600000,
"FedEx": 7480000,
"Iran": 1500000,
"The Matrix": 301000,
"Istanbul": 1220000,
"Nadia Toffa": 450000,
"Syria": 1220000,
"Michael Jordan": 1500000,
"Hong Kong": 1500000,
"Diving": 165000,
"Paramount Pictures": 49500,
"Silver": 450000,
"Erectile Dysfunction": 823000,
"Stevie Wonder": 673000,
"Ebola": 301000,
"Fencing": 1220000,
"Andre Agassi": 165000,
"Ecstasy": 550000,
"Mexico": 2240000,
"Paul Pogba": 550000,
"Palm Islands": 49500,
"50 Cent": 1000000,
"Houston Rockets": 1000000,
"Water Polo": 60500,
"HIV": 823000,
"Find My IPhone": 1830000,
"Jim Thorpe": 74000,
"Home Insurance": 201000,
"James Foley": 60500,
"Star Trek": 1220000,
"5 Star Hotels": 60500,
"Chlamydia": 1220000,
"Mirrors Edge": 135000,
"Theresa May": 1000000,
"Homer Simpson": 246000,
"Seoul": 368000,
"Bisexual": 368000,
"Singapore Airlines": 1830000,
"Paris Saint Germain": 7480000,
"Dyslexia": 368000,
"Autism": 673000,