-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwords.json
More file actions
2444 lines (2444 loc) · 41.4 KB
/
Copy pathwords.json
File metadata and controls
2444 lines (2444 loc) · 41.4 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
{
"indian": {
"displayName": "Desi Blend",
"icon": "🇮🇳",
"desc": "Indian street food, sweets, Bollywood, cities, and landmarks.",
"pairs": [
{
"c": "Samosa",
"m": "Kachori"
},
{
"c": "Vada Pav",
"m": "Dabeli"
},
{
"c": "Pani Puri",
"m": "Dahi Puri"
},
{
"c": "Pav Bhaji",
"m": "Misal Pav"
},
{
"c": "Momos",
"m": "Dimsums"
},
{
"c": "Pakora",
"m": "Bhajiya"
},
{
"c": "Chole Bhature",
"m": "Puri Sabzi"
},
{
"c": "Kathi Roll",
"m": "Frankie"
},
{
"c": "Bhel Puri",
"m": "Sev Puri"
},
{
"c": "Dhokla",
"m": "Khandvi"
},
{
"c": "Poha",
"m": "Upma"
},
{
"c": "Kebab",
"m": "Tikka"
},
{
"c": "Manchurian",
"m": "Chowmein"
},
{
"c": "Gulab Jamun",
"m": "Rasgulla"
},
{
"c": "Jalebi",
"m": "Imarti"
},
{
"c": "Kaju Katli",
"m": "Soan Papdi"
},
{
"c": "Ladoo",
"m": "Modak"
},
{
"c": "Kulfi",
"m": "Matka Ice Cream"
},
{
"c": "Rasmalai",
"m": "Cham Cham"
},
{
"c": "Halwa",
"m": "Kheer"
},
{
"c": "Mishti Doi",
"m": "Shrikhand"
},
{
"c": "Chai",
"m": "Kaapi"
},
{
"c": "Lassi",
"m": "Chaas"
},
{
"c": "Nimbu Pani",
"m": "Aam Panna"
},
{
"c": "Biryani",
"m": "Pulao"
},
{
"c": "Butter Chicken",
"m": "Dal Makhani"
},
{
"c": "Dosa",
"m": "Uttapam"
},
{
"c": "Rajma",
"m": "Chole"
},
{
"c": "Aloo Paratha",
"m": "Gobi Paratha"
},
{
"c": "Roti",
"m": "Naan"
},
{
"c": "Palak Paneer",
"m": "Matar Paneer"
},
{
"c": "Idli",
"m": "Medu Vada"
},
{
"c": "Zomato",
"m": "Swiggy"
},
{
"c": "Ola",
"m": "Rapido"
},
{
"c": "Flipkart",
"m": "Meesho"
},
{
"c": "Paytm",
"m": "PhonePe"
},
{
"c": "Jio",
"m": "Airtel"
},
{
"c": "Amul",
"m": "Mother Dairy"
},
{
"c": "Tata",
"m": "Mahindra"
},
{
"c": "Reliance",
"m": "Adani"
},
{
"c": "Shah Rukh Khan",
"m": "Salman Khan"
},
{
"c": "Amitabh Bachchan",
"m": "Dharmendra"
},
{
"c": "Deepika Padukone",
"m": "Alia Bhatt"
},
{
"c": "Ranveer Singh",
"m": "Ranbir Kapoor"
},
{
"c": "Priyanka Chopra",
"m": "Katrina Kaif"
},
{
"c": "Akshay Kumar",
"m": "Ajay Devgn"
},
{
"c": "Virat Kohli",
"m": "Rohit Sharma"
},
{
"c": "MS Dhoni",
"m": "Sourav Ganguly"
},
{
"c": "Sachin Tendulkar",
"m": "Rahul Dravid"
},
{
"c": "PV Sindhu",
"m": "Saina Nehwal"
},
{
"c": "Neeraj Chopra",
"m": "Abhinav Bindra"
},
{
"c": "Sania Mirza",
"m": "Leander Paes"
},
{
"c": "3 Idiots",
"m": "Taare Zameen Par"
},
{
"c": "DDLJ",
"m": "Kuch Kuch Hota Hai"
},
{
"c": "Sholay",
"m": "Deewar"
},
{
"c": "Dangal",
"m": "Sultan"
},
{
"c": "Baahubali",
"m": "Pushpa"
},
{
"c": "Dil Chahta Hai",
"m": "Zindagi Na Milegi Dobara"
},
{
"c": "Lagaan",
"m": "Swades"
},
{
"c": "Andaz Apna Apna",
"m": "Hera Pheri"
},
{
"c": "Taarak Mehta",
"m": "Bhabiji Ghar Par Hain"
},
{
"c": "KBC",
"m": "Bigg Boss"
},
{
"c": "Sacred Games",
"m": "Mirzapur"
},
{
"c": "CID",
"m": "Crime Patrol"
},
{
"c": "Mumbai",
"m": "Pune"
},
{
"c": "Delhi",
"m": "Noida"
},
{
"c": "Bangalore",
"m": "Hyderabad"
},
{
"c": "Chennai",
"m": "Coimbatore"
},
{
"c": "Kolkata",
"m": "Patna"
},
{
"c": "Jaipur",
"m": "Udaipur"
},
{
"c": "Ahmedabad",
"m": "Surat"
},
{
"c": "Goa",
"m": "Pondicherry"
},
{
"c": "Gateway of India",
"m": "India Gate"
},
{
"c": "Lotus Temple",
"m": "Akshardham"
},
{
"c": "Red Fort",
"m": "Agra Fort"
},
{
"c": "Charminar",
"m": "Golconda Fort"
},
{
"c": "Golden Temple",
"m": "Jagannath Temple"
},
{
"c": "Hawa Mahal",
"m": "City Palace"
},
{
"c": "Auto Rickshaw",
"m": "Cycle Rickshaw"
},
{
"c": "Metro",
"m": "Local Train"
},
{
"c": "Vande Bharat",
"m": "Tejas Express"
},
{
"c": "Royal Enfield",
"m": "Bajaj Pulsar"
},
{
"c": "Honda Activa",
"m": "TVS Jupiter"
},
{
"c": "Maruti Swift",
"m": "Hyundai i20"
},
{
"c": "Tata Nexon",
"m": "Mahindra Scorpio"
},
{
"c": "Innova Crysta",
"m": "Ertiga"
},
{
"c": "Diwali",
"m": "Holi"
},
{
"c": "Navratri",
"m": "Durga Puja"
},
{
"c": "Rakhi",
"m": "Karwa Chauth"
},
{
"c": "Ganesh Chaturthi",
"m": "Janmashtami"
},
{
"c": "UPSC",
"m": "SSC"
},
{
"c": "CBSE",
"m": "ICSE"
},
{
"c": "JEE",
"m": "NEET"
},
{
"c": "Kurkure",
"m": "Lays"
},
{
"c": "Maggi",
"m": "Yippee"
},
{
"c": "Parle-G",
"m": "Good Day"
},
{
"c": "Haldiram's",
"m": "Bikano"
},
{
"c": "Rupee",
"m": "Dollar"
},
{
"c": "Wedding",
"m": "Engagement"
},
{
"c": "Yoga",
"m": "Meditation"
}
]
},
"american": {
"displayName": "American Culture",
"icon": "🇺🇸",
"desc": "US fast foods, popular sports, American landmarks, and famous brands.",
"pairs": [
{
"c": "Pancake",
"m": "Waffle"
},
{
"c": "Hot Dog",
"m": "Corndog"
},
{
"c": "New York City",
"m": "Los Angeles"
},
{
"c": "Broadway",
"m": "Hollywood"
},
{
"c": "Disney World",
"m": "Universal Studios"
},
{
"c": "Target",
"m": "Walmart"
},
{
"c": "Costco",
"m": "Sam's Club"
},
{
"c": "Apple Pie",
"m": "Pumpkin Pie"
},
{
"c": "NFL",
"m": "NBA"
},
{
"c": "Baseball",
"m": "Softball"
},
{
"c": "S'mores",
"m": "Marshmallow"
},
{
"c": "Diner",
"m": "Cafe"
},
{
"c": "Grand Canyon",
"m": "Yellowstone"
},
{
"c": "Central Park",
"m": "Golden Gate Park"
},
{
"c": "Ford",
"m": "Chevrolet"
},
{
"c": "Harvard",
"m": "Yale"
},
{
"c": "MIT",
"m": "Stanford"
},
{
"c": "Times Square",
"m": "Las Vegas Strip"
},
{
"c": "French Fries",
"m": "Tater Tots"
},
{
"c": "Bagel",
"m": "Croissant"
},
{
"c": "Mac and Cheese",
"m": "Mashed Potatoes"
},
{
"c": "Tesla",
"m": "Jeep"
},
{
"c": "NASA",
"m": "SpaceX"
},
{
"c": "Uber",
"m": "Lyft"
},
{
"c": "Peanut Butter",
"m": "Nutella"
},
{
"c": "Donut",
"m": "Cupcake"
},
{
"c": "Milkshake",
"m": "Smoothie"
},
{
"c": "Chicken Wings",
"m": "Chicken Nuggets"
},
{
"c": "Bud Light",
"m": "Coors Light"
},
{
"c": "Chipotle",
"m": "Taco Bell"
},
{
"c": "Whole Foods",
"m": "Trader Joe's"
},
{
"c": "Route 66",
"m": "Pacific Coast Highway"
},
{
"c": "Coca-Cola",
"m": "Dr Pepper"
},
{
"c": "Washington DC",
"m": "Philadelphia"
},
{
"c": "Dollar Tree",
"m": "Dollar General"
},
{
"c": "Jeep",
"m": "Hummer"
},
{
"c": "Eggnog",
"m": "Apple Cider"
},
{
"c": "Thanksgiving",
"m": "Halloween"
},
{
"c": "Super Bowl",
"m": "World Series"
},
{
"c": "Five Guys",
"m": "Shake Shack"
},
{
"c": "Dunkin'",
"m": "Starbucks"
},
{
"c": "Chicago Deep Dish",
"m": "New York Pizza"
},
{
"c": "Ranch Dressing",
"m": "Honey Mustard"
},
{
"c": "Home Depot",
"m": "Lowe's"
},
{
"c": "Yellow Cab",
"m": "School Bus"
},
{
"c": "Popcorn",
"m": "Cotton Candy"
},
{
"c": "Oreo",
"m": "Chocolate Chip Cookie"
},
{
"c": "Pepsi",
"m": "Coca-Cola"
},
{
"c": "Chevrolet Corvette",
"m": "Ford Mustang"
},
{
"c": "Wall Street",
"m": "Silicon Valley"
},
{
"c": "Fourth of July",
"m": "Memorial Day"
},
{
"c": "Chevrolet",
"m": "Dodge"
},
{
"c": "Nike",
"m": "Under Armour"
},
{
"c": "San Francisco",
"m": "Seattle"
},
{
"c": "Florida Keys",
"m": "Hawaii"
},
{
"c": "Boston",
"m": "Chicago"
},
{
"c": "Las Vegas",
"m": "Atlantic City"
},
{
"c": "Mount Rushmore",
"m": "Statue of Liberty"
},
{
"c": "Buffalo Wings",
"m": "Mozzarella Sticks"
},
{
"c": "Cheerios",
"m": "Froot Loops"
},
{
"c": "Twinkies",
"m": "Ding Dongs"
},
{
"c": "Gatorade",
"m": "Powerade"
},
{
"c": "Mountain Dew",
"m": "Sprite"
},
{
"c": "Subway",
"m": "Quiznos"
},
{
"c": "Wendy's",
"m": "Burger King"
},
{
"c": "Domino's",
"m": "Pizza Hut"
},
{
"c": "Ben & Jerry's",
"m": "Häagen-Dazs"
},
{
"c": "Hershey's",
"m": "Snickers"
},
{
"c": "Nordstrom",
"m": "Macy's"
},
{
"c": "Best Buy",
"m": "Circuit City"
},
{
"c": "Amazon",
"m": "eBay"
},
{
"c": "FedEx",
"m": "UPS"
},
{
"c": "Visa",
"m": "Mastercard"
},
{
"c": "Netflix",
"m": "Hulu"
},
{
"c": "NFL",
"m": "College Football"
},
{
"c": "Major League Baseball",
"m": "Minor League Baseball"
},
{
"c": "NASCAR",
"m": "IndyCar"
},
{
"c": "Tailgating",
"m": "Picnicking"
},
{
"c": "Root Beer",
"m": "Dr Pepper"
},
{
"c": "Cornbread",
"m": "Biscuit"
},
{
"c": "Clam Chowder",
"m": "Lobster Roll"
},
{
"c": "Texas BBQ",
"m": "Carolina BBQ"
},
{
"c": "Philly Cheesesteak",
"m": "Sloppy Joe"
},
{
"c": "Bagel and Cream Cheese",
"m": "Avocado Toast"
},
{
"c": "New Orleans",
"m": "Miami"
},
{
"c": "Yosemite",
"m": "Yellowstone"
},
{
"c": "Niagara Falls",
"m": "Grand Canyon"
},
{
"c": "Hollywood Walk of Fame",
"m": "Beverly Hills"
},
{
"c": "Las Vegas Strip",
"m": "Fremont Street"
},
{
"c": "Mount Everest",
"m": "Mount Hood"
},
{
"c": "Lake Tahoe",
"m": "Lake Michigan"
},
{
"c": "Groundhog Day",
"m": "April Fools' Day"
},
{
"c": "Black Friday",
"m": "Cyber Monday"
},
{
"c": "Harley-Davidson",
"m": "Indian Motorcycle"
},
{
"c": "Cadillac",
"m": "Lincoln"
},
{
"c": "Chrysler",
"m": "Buick"
},
{
"c": "Levi's",
"m": "Wranglers"
},
{
"c": "Converse",
"m": "Vans"
},
{
"c": "Ralph Lauren",
"m": "Tommy Hilfiger"
},
{
"c": "Red Solo Cup",
"m": "Mason Jar"
}
]
},
"monuments": {
"displayName": "World Landmarks",
"icon": "🏛️",
"desc": "Famous historical wonders, natural icons, bridges, and monuments.",
"pairs": [
{
"c": "Eiffel Tower",
"m": "Leaning Tower of Pisa"
},
{
"c": "Pyramids of Giza",
"m": "Chichen Itza"
},
{
"c": "Statue of Liberty",
"m": "Christ the Redeemer"
},
{
"c": "Colosseum",
"m": "Parthenon"
},
{
"c": "Sydney Opera House",
"m": "London Eye"
},
{
"c": "Golden Gate Bridge",
"m": "Brooklyn Bridge"
},
{
"c": "Big Ben",
"m": "Arc de Triomphe"
},
{
"c": "Louvre Museum",
"m": "British Museum"
},
{
"c": "Machu Picchu",
"m": "Petra"
},
{
"c": "Vatican City",
"m": "Mecca"
},
{
"c": "White House",
"m": "Buckingham Palace"
},
{
"c": "Grand Canyon",
"m": "Mount Everest"
},
{
"c": "Niagara Falls",
"m": "Victoria Falls"
},
{
"c": "Times Square",
"m": "Hollywood Sign"
},
{
"c": "Burj Khalifa",
"m": "Empire State Building"
},
{
"c": "Notre-Dame Cathedral",
"m": "Westminster Abbey"
},
{
"c": "Stonehenge",
"m": "Easter Island Moai"
},
{
"c": "Amazon Rainforest",
"m": "Sahara Desert"
},
{
"c": "Tokyo Tower",
"m": "Space Needle"
},
{
"c": "Panama Canal",
"m": "Suez Canal"
},
{
"c": "Mount Fuji",
"m": "Mount Kilimanjaro"
},
{
"c": "Versailles Palace",
"m": "Forbidden City"
},
{
"c": "Venice Canals",
"m": "Amsterdam Canals"
},
{
"c": "Pompeii Ruins",
"m": "Athens Acropolis"
},
{
"c": "Great Barrier Reef",
"m": "Galapagos Islands"
},
{
"c": "Mount Rushmore",
"m": "Easter Island Moai"
},
{
"c": "Loch Ness",
"m": "Bermuda Triangle"
},
{
"c": "Burj Al Arab",
"m": "Marina Bay Sands"
},
{
"c": "Tower of London",
"m": "Alcatraz"
},
{
"c": "Acropolis of Athens",
"m": "Colosseum"
},
{
"c": "Neuschwanstein Castle",
"m": "Dracula's Castle"
},
{
"c": "Sherwood Forest",
"m": "Black Forest"
},
{
"c": "Dead Sea",
"m": "Lake Baikal"
},
{
"c": "Gibraltar",
"m": "Suez Canal"
},
{
"c": "Chichen Itza",
"m": "Angkor Wat"
},
{
"c": "Notre-Dame",
"m": "Cologne Cathedral"
},
{
"c": "Leaning Tower of Pisa",
"m": "Big Ben"
},
{
"c": "Kremlin",
"m": "Pentagon"
},
{
"c": "Great Sphinx",
"m": "Mummy Tomb"
},
{
"c": "Tower Bridge",
"m": "London Bridge"
},
{
"c": "Angel Falls",
"m": "Niagara Falls"
},
{
"c": "Mount Vesuvius",
"m": "Mount Fuji"
},
{
"c": "Salar de Uyuni",
"m": "Sahara Desert"
},
{
"c": "Golden Gate Bridge",
"m": "Sydney Harbour Bridge"
},
{
"c": "Central Park",
"m": "Hyde Park"
},