-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
939 lines (938 loc) · 67.1 KB
/
index.js
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
'use strict';
exports.categories = [{"category_id": "4d4b7104d754a06370d81259", "title": "Arts & Entertainment"},
{"category_id": "56aa371be4b08b9a8d5734db", "title": "Amphitheater"},
{"category_id": "4fceea171983d5d06c3e9823", "title": "Aquarium"},
{"category_id": "4bf58dd8d48988d1e1931735", "title": "Arcade"},
{"category_id": "4bf58dd8d48988d1e2931735", "title": "Art Gallery"},
{"category_id": "4bf58dd8d48988d1e4931735", "title": "Bowling Alley"},
{"category_id": "4bf58dd8d48988d17c941735", "title": "Casino"},
{"category_id": "52e81612bcbc57f1066b79e7", "title": "Circus"},
{"category_id": "4bf58dd8d48988d18e941735", "title": "Comedy Club"},
{"category_id": "5032792091d4c4b30a586d5c", "title": "Concert Hall"},
{"category_id": "52e81612bcbc57f1066b79ef", "title": "Country Dance Club"},
{"category_id": "52e81612bcbc57f1066b79e8", "title": "Disc Golf"},
{"category_id": "56aa371be4b08b9a8d573532", "title": "Exhibit"},
{"category_id": "4bf58dd8d48988d1f1931735", "title": "General Entertainment"},
{"category_id": "52e81612bcbc57f1066b79ea", "title": "Go Kart Track"},
{"category_id": "4deefb944765f83613cdba6e", "title": "Historic Site"},
{"category_id": "5744ccdfe4b0c0459246b4bb", "title": "Karaoke Box"},
{"category_id": "52e81612bcbc57f1066b79e6", "title": "Laser Tag"},
{"category_id": "5642206c498e4bfca532186c", "title": "Memorial Site"},
{"category_id": "52e81612bcbc57f1066b79eb", "title": "Mini Golf"},
{"category_id": "4bf58dd8d48988d17f941735", "title": "Movie Theater"},
{"category_id": "56aa371be4b08b9a8d5734de", "title": "Drive-in Theater"},
{"category_id": "4bf58dd8d48988d17e941735", "title": "Indie Movie Theater"},
{"category_id": "4bf58dd8d48988d180941735", "title": "Multiplex"},
{"category_id": "4bf58dd8d48988d181941735", "title": "Museum"},
{"category_id": "4bf58dd8d48988d18f941735", "title": "Art Museum"},
{"category_id": "559acbe0498e472f1a53fa23", "title": "Erotic Museum"},
{"category_id": "4bf58dd8d48988d190941735", "title": "History Museum"},
{"category_id": "4bf58dd8d48988d192941735", "title": "Planetarium"},
{"category_id": "4bf58dd8d48988d191941735", "title": "Science Museum"},
{"category_id": "4bf58dd8d48988d1e5931735", "title": "Music Venue"},
{"category_id": "4bf58dd8d48988d1e7931735", "title": "Jazz Club"},
{"category_id": "4bf58dd8d48988d1e8931735", "title": "Piano Bar"},
{"category_id": "4bf58dd8d48988d1e9931735", "title": "Rock Club"},
{"category_id": "5744ccdfe4b0c0459246b4b8", "title": "Pachinko Parlor"},
{"category_id": "4bf58dd8d48988d1f2931735", "title": "Performing Arts Venue"},
{"category_id": "4bf58dd8d48988d134941735", "title": "Dance Studio"},
{"category_id": "4bf58dd8d48988d135941735", "title": "Indie Theater"},
{"category_id": "4bf58dd8d48988d136941735", "title": "Opera House"},
{"category_id": "4bf58dd8d48988d137941735", "title": "Theater"},
{"category_id": "4bf58dd8d48988d1e3931735", "title": "Pool Hall"},
{"category_id": "507c8c4091d498d9fc8c67a9", "title": "Public Art"},
{"category_id": "52e81612bcbc57f1066b79ed", "title": "Outdoor Sculpture"},
{"category_id": "52e81612bcbc57f1066b79ee", "title": "Street Art"},
{"category_id": "56aa371be4b08b9a8d573514", "title": "Racecourse"},
{"category_id": "4bf58dd8d48988d1f4931735", "title": "Racetrack"},
{"category_id": "52e81612bcbc57f1066b79e9", "title": "Roller Rink"},
{"category_id": "52e81612bcbc57f1066b79ec", "title": "Salsa Club"},
{"category_id": "56aa371be4b08b9a8d5734f9", "title": "Samba School"},
{"category_id": "4bf58dd8d48988d184941735", "title": "Stadium"},
{"category_id": "4bf58dd8d48988d18c941735", "title": "Baseball Stadium"},
{"category_id": "4bf58dd8d48988d18b941735", "title": "Basketball Stadium"},
{"category_id": "4bf58dd8d48988d18a941735", "title": "Cricket Ground"},
{"category_id": "4bf58dd8d48988d189941735", "title": "Football Stadium"},
{"category_id": "4bf58dd8d48988d185941735", "title": "Hockey Arena"},
{"category_id": "56aa371be4b08b9a8d573556", "title": "Rugby Stadium"},
{"category_id": "4bf58dd8d48988d188941735", "title": "Soccer Stadium"},
{"category_id": "4e39a891bd410d7aed40cbc2", "title": "Tennis Stadium"},
{"category_id": "4bf58dd8d48988d187941735", "title": "Track Stadium"},
{"category_id": "4bf58dd8d48988d182941735", "title": "Theme Park"},
{"category_id": "5109983191d435c0d71c2bb1", "title": "Theme Park Ride / Attraction"},
{"category_id": "56aa371be4b08b9a8d573520", "title": "Tour Provider"},
{"category_id": "4bf58dd8d48988d193941735", "title": "Water Park"},
{"category_id": "4bf58dd8d48988d17b941735", "title": "Zoo"},
{"category_id": "58daa1558bbb0b01f18ec1fd", "title": "Zoo Exhibit"},
{"category_id": "4d4b7105d754a06372d81259", "title": "College & University"},
{"category_id": "4bf58dd8d48988d198941735", "title": "College Academic Building"},
{"category_id": "4bf58dd8d48988d199941735", "title": "College Arts Building"},
{"category_id": "4bf58dd8d48988d19a941735", "title": "College Communications Building"},
{"category_id": "4bf58dd8d48988d19e941735", "title": "College Engineering Building"},
{"category_id": "4bf58dd8d48988d19d941735", "title": "College History Building"},
{"category_id": "4bf58dd8d48988d19c941735", "title": "College Math Building"},
{"category_id": "4bf58dd8d48988d19b941735", "title": "College Science Building"},
{"category_id": "4bf58dd8d48988d19f941735", "title": "College Technology Building"},
{"category_id": "4bf58dd8d48988d197941735", "title": "College Administrative Building"},
{"category_id": "4bf58dd8d48988d1af941735", "title": "College Auditorium"},
{"category_id": "4bf58dd8d48988d1b1941735", "title": "College Bookstore"},
{"category_id": "4bf58dd8d48988d1a1941735", "title": "College Cafeteria"},
{"category_id": "4bf58dd8d48988d1a0941735", "title": "College Classroom"},
{"category_id": "4bf58dd8d48988d1b2941735", "title": "College Gym"},
{"category_id": "4bf58dd8d48988d1a5941735", "title": "College Lab"},
{"category_id": "4bf58dd8d48988d1a7941735", "title": "College Library"},
{"category_id": "4bf58dd8d48988d1aa941735", "title": "College Quad"},
{"category_id": "4bf58dd8d48988d1a9941735", "title": "College Rec Center"},
{"category_id": "4bf58dd8d48988d1a3941735", "title": "College Residence Hall"},
{"category_id": "4bf58dd8d48988d1b4941735", "title": "College Stadium"},
{"category_id": "4bf58dd8d48988d1bb941735", "title": "College Baseball Diamond"},
{"category_id": "4bf58dd8d48988d1ba941735", "title": "College Basketball Court"},
{"category_id": "4bf58dd8d48988d1b9941735", "title": "College Cricket Pitch"},
{"category_id": "4bf58dd8d48988d1b8941735", "title": "College Football Field"},
{"category_id": "4bf58dd8d48988d1b5941735", "title": "College Hockey Rink"},
{"category_id": "4bf58dd8d48988d1b7941735", "title": "College Soccer Field"},
{"category_id": "4e39a9cebd410d7aed40cbc4", "title": "College Tennis Court"},
{"category_id": "4bf58dd8d48988d1b6941735", "title": "College Track"},
{"category_id": "4bf58dd8d48988d1ac941735", "title": "College Theater"},
{"category_id": "4bf58dd8d48988d1a2941735", "title": "Community College"},
{"category_id": "4bf58dd8d48988d1b0941735", "title": "Fraternity House"},
{"category_id": "4bf58dd8d48988d1a8941735", "title": "General College & University"},
{"category_id": "4bf58dd8d48988d1a6941735", "title": "Law School"},
{"category_id": "4bf58dd8d48988d1b3941735", "title": "Medical School"},
{"category_id": "4bf58dd8d48988d141941735", "title": "Sorority House"},
{"category_id": "4bf58dd8d48988d1ab941735", "title": "Student Center"},
{"category_id": "4bf58dd8d48988d1ad941735", "title": "Trade School"},
{"category_id": "4bf58dd8d48988d1ae941735", "title": "University"},
{"category_id": "4d4b7105d754a06373d81259", "title": "Event"},
{"category_id": "52f2ab2ebcbc57f1066b8b3b", "title": "Christmas Market"},
{"category_id": "5267e4d9e4b0ec79466e48c6", "title": "Conference"},
{"category_id": "5267e4d9e4b0ec79466e48c9", "title": "Convention"},
{"category_id": "5267e4d9e4b0ec79466e48c7", "title": "Festival"},
{"category_id": "58daa1558bbb0b01f18ec1fa", "title": "Line / Queue"},
{"category_id": "5267e4d9e4b0ec79466e48d1", "title": "Music Festival"},
{"category_id": "5267e4d9e4b0ec79466e48c8", "title": "Other Event"},
{"category_id": "52741d85e4b0d5d1e3c6a6d9", "title": "Parade"},
{"category_id": "5bae9231bedf3950379f89c5", "title": "Sporting Event"},
{"category_id": "52f2ab2ebcbc57f1066b8b54", "title": "Stoop Sale"},
{"category_id": "5267e4d8e4b0ec79466e48c5", "title": "Street Fair"},
{"category_id": "5bae9231bedf3950379f89c3", "title": "Trade Fair"},
{"category_id": "4d4b7105d754a06374d81259", "title": "Food"},
{"category_id": "503288ae91d4c4b30a586d67", "title": "Afghan Restaurant"},
{"category_id": "4bf58dd8d48988d1c8941735", "title": "African Restaurant"},
{"category_id": "4bf58dd8d48988d10a941735", "title": "Ethiopian Restaurant"},
{"category_id": "4bf58dd8d48988d14e941735", "title": "American Restaurant"},
{"category_id": "4bf58dd8d48988d157941735", "title": "New American Restaurant"},
{"category_id": "4bf58dd8d48988d142941735", "title": "Asian Restaurant"},
{"category_id": "56aa371be4b08b9a8d573568", "title": "Burmese Restaurant"},
{"category_id": "52e81612bcbc57f1066b7a03", "title": "Cambodian Restaurant"},
{"category_id": "4bf58dd8d48988d145941735", "title": "Chinese Restaurant"},
{"category_id": "52af3a5e3cf9994f4e043bea", "title": "Anhui Restaurant"},
{"category_id": "52af3a723cf9994f4e043bec", "title": "Beijing Restaurant"},
{"category_id": "52af3a7c3cf9994f4e043bed", "title": "Cantonese Restaurant"},
{"category_id": "58daa1558bbb0b01f18ec1d3", "title": "Cha Chaan Teng"},
{"category_id": "52af3a673cf9994f4e043beb", "title": "Chinese Aristocrat Restaurant"},
{"category_id": "52af3a903cf9994f4e043bee", "title": "Chinese Breakfast Place"},
{"category_id": "4bf58dd8d48988d1f5931735", "title": "Dim Sum Restaurant"},
{"category_id": "52af3a9f3cf9994f4e043bef", "title": "Dongbei Restaurant"},
{"category_id": "52af3aaa3cf9994f4e043bf0", "title": "Fujian Restaurant"},
{"category_id": "52af3ab53cf9994f4e043bf1", "title": "Guizhou Restaurant"},
{"category_id": "52af3abe3cf9994f4e043bf2", "title": "Hainan Restaurant"},
{"category_id": "52af3ac83cf9994f4e043bf3", "title": "Hakka Restaurant"},
{"category_id": "52af3ad23cf9994f4e043bf4", "title": "Henan Restaurant"},
{"category_id": "52af3add3cf9994f4e043bf5", "title": "Hong Kong Restaurant"},
{"category_id": "52af3af23cf9994f4e043bf7", "title": "Huaiyang Restaurant"},
{"category_id": "52af3ae63cf9994f4e043bf6", "title": "Hubei Restaurant"},
{"category_id": "52af3afc3cf9994f4e043bf8", "title": "Hunan Restaurant"},
{"category_id": "52af3b053cf9994f4e043bf9", "title": "Imperial Restaurant"},
{"category_id": "52af3b213cf9994f4e043bfa", "title": "Jiangsu Restaurant"},
{"category_id": "52af3b293cf9994f4e043bfb", "title": "Jiangxi Restaurant"},
{"category_id": "52af3b343cf9994f4e043bfc", "title": "Macanese Restaurant"},
{"category_id": "52af3b3b3cf9994f4e043bfd", "title": "Manchu Restaurant"},
{"category_id": "52af3b463cf9994f4e043bfe", "title": "Peking Duck Restaurant"},
{"category_id": "52af3b633cf9994f4e043c01", "title": "Shaanxi Restaurant"},
{"category_id": "52af3b513cf9994f4e043bff", "title": "Shandong Restaurant"},
{"category_id": "52af3b593cf9994f4e043c00", "title": "Shanghai Restaurant"},
{"category_id": "52af3b6e3cf9994f4e043c02", "title": "Shanxi Restaurant"},
{"category_id": "52af3b773cf9994f4e043c03", "title": "Szechuan Restaurant"},
{"category_id": "52af3b813cf9994f4e043c04", "title": "Taiwanese Restaurant"},
{"category_id": "52af3b893cf9994f4e043c05", "title": "Tianjin Restaurant"},
{"category_id": "52af3b913cf9994f4e043c06", "title": "Xinjiang Restaurant"},
{"category_id": "52af3b9a3cf9994f4e043c07", "title": "Yunnan Restaurant"},
{"category_id": "52af3ba23cf9994f4e043c08", "title": "Zhejiang Restaurant"},
{"category_id": "4eb1bd1c3b7b55596b4a748f", "title": "Filipino Restaurant"},
{"category_id": "52e81612bcbc57f1066b79fb", "title": "Himalayan Restaurant"},
{"category_id": "52af0bd33cf9994f4e043bdd", "title": "Hotpot Restaurant"},
{"category_id": "4deefc054765f83613cdba6f", "title": "Indonesian Restaurant"},
{"category_id": "52960eda3cf9994f4e043ac9", "title": "Acehnese Restaurant"},
{"category_id": "52960eda3cf9994f4e043acb", "title": "Balinese Restaurant"},
{"category_id": "52960eda3cf9994f4e043aca", "title": "Betawinese Restaurant"},
{"category_id": "52960eda3cf9994f4e043acc", "title": "Indonesian Meatball Place"},
{"category_id": "52960eda3cf9994f4e043ac7", "title": "Javanese Restaurant"},
{"category_id": "52960eda3cf9994f4e043ac8", "title": "Manadonese Restaurant"},
{"category_id": "52960eda3cf9994f4e043ac5", "title": "Padangnese Restaurant"},
{"category_id": "52960eda3cf9994f4e043ac6", "title": "Sundanese Restaurant"},
{"category_id": "4bf58dd8d48988d111941735", "title": "Japanese Restaurant"},
{"category_id": "55a59bace4b013909087cb0c", "title": "Donburi Restaurant"},
{"category_id": "55a59bace4b013909087cb30", "title": "Japanese Curry Restaurant"},
{"category_id": "55a59bace4b013909087cb21", "title": "Kaiseki Restaurant"},
{"category_id": "55a59bace4b013909087cb06", "title": "Kushikatsu Restaurant"},
{"category_id": "55a59bace4b013909087cb1b", "title": "Monjayaki Restaurant"},
{"category_id": "55a59bace4b013909087cb1e", "title": "Nabe Restaurant"},
{"category_id": "55a59bace4b013909087cb18", "title": "Okonomiyaki Restaurant"},
{"category_id": "55a59bace4b013909087cb24", "title": "Ramen Restaurant"},
{"category_id": "55a59bace4b013909087cb15", "title": "Shabu-Shabu Restaurant"},
{"category_id": "55a59bace4b013909087cb27", "title": "Soba Restaurant"},
{"category_id": "55a59bace4b013909087cb12", "title": "Sukiyaki Restaurant"},
{"category_id": "4bf58dd8d48988d1d2941735", "title": "Sushi Restaurant"},
{"category_id": "55a59bace4b013909087cb2d", "title": "Takoyaki Place"},
{"category_id": "55a59a31e4b013909087cb00", "title": "Tempura Restaurant"},
{"category_id": "55a59af1e4b013909087cb03", "title": "Tonkatsu Restaurant"},
{"category_id": "55a59bace4b013909087cb2a", "title": "Udon Restaurant"},
{"category_id": "55a59bace4b013909087cb0f", "title": "Unagi Restaurant"},
{"category_id": "55a59bace4b013909087cb33", "title": "Wagashi Place"},
{"category_id": "55a59bace4b013909087cb09", "title": "Yakitori Restaurant"},
{"category_id": "55a59bace4b013909087cb36", "title": "Yoshoku Restaurant"},
{"category_id": "4bf58dd8d48988d113941735", "title": "Korean Restaurant"},
{"category_id": "56aa371be4b08b9a8d5734e4", "title": "Bossam/Jokbal Restaurant"},
{"category_id": "56aa371be4b08b9a8d5734f0", "title": "Bunsik Restaurant"},
{"category_id": "56aa371be4b08b9a8d5734e7", "title": "Gukbap Restaurant"},
{"category_id": "56aa371be4b08b9a8d5734ed", "title": "Janguh Restaurant"},
{"category_id": "56aa371be4b08b9a8d5734ea", "title": "Samgyetang Restaurant"},
{"category_id": "4bf58dd8d48988d156941735", "title": "Malay Restaurant"},
{"category_id": "5ae9595eb77c77002c2f9f26", "title": "Mamak Restaurant"},
{"category_id": "4eb1d5724b900d56c88a45fe", "title": "Mongolian Restaurant"},
{"category_id": "4bf58dd8d48988d1d1941735", "title": "Noodle House"},
{"category_id": "56aa371be4b08b9a8d57350e", "title": "Satay Restaurant"},
{"category_id": "4bf58dd8d48988d149941735", "title": "Thai Restaurant"},
{"category_id": "56aa371be4b08b9a8d573502", "title": "Som Tum Restaurant"},
{"category_id": "52af39fb3cf9994f4e043be9", "title": "Tibetan Restaurant"},
{"category_id": "4bf58dd8d48988d14a941735", "title": "Vietnamese Restaurant"},
{"category_id": "4bf58dd8d48988d169941735", "title": "Australian Restaurant"},
{"category_id": "52e81612bcbc57f1066b7a01", "title": "Austrian Restaurant"},
{"category_id": "4bf58dd8d48988d1df931735", "title": "BBQ Joint"},
{"category_id": "4bf58dd8d48988d179941735", "title": "Bagel Shop"},
{"category_id": "4bf58dd8d48988d16a941735", "title": "Bakery"},
{"category_id": "52e81612bcbc57f1066b7a02", "title": "Belgian Restaurant"},
{"category_id": "52e81612bcbc57f1066b79f1", "title": "Bistro"},
{"category_id": "4bf58dd8d48988d143941735", "title": "Breakfast Spot"},
{"category_id": "52e81612bcbc57f1066b7a0c", "title": "Bubble Tea Shop"},
{"category_id": "52e81612bcbc57f1066b79f4", "title": "Buffet"},
{"category_id": "4bf58dd8d48988d16c941735", "title": "Burger Joint"},
{"category_id": "4bf58dd8d48988d128941735", "title": "Cafeteria"},
{"category_id": "4bf58dd8d48988d16d941735", "title": "Caf\u00e9"},
{"category_id": "4bf58dd8d48988d17a941735", "title": "Cajun / Creole Restaurant"},
{"category_id": "4bf58dd8d48988d144941735", "title": "Caribbean Restaurant"},
{"category_id": "4bf58dd8d48988d154941735", "title": "Cuban Restaurant"},
{"category_id": "5293a7d53cf9994f4e043a45", "title": "Caucasian Restaurant"},
{"category_id": "4bf58dd8d48988d1e0931735", "title": "Coffee Shop"},
{"category_id": "52e81612bcbc57f1066b7a00", "title": "Comfort Food Restaurant"},
{"category_id": "52e81612bcbc57f1066b79f2", "title": "Creperie"},
{"category_id": "52f2ae52bcbc57f1066b8b81", "title": "Czech Restaurant"},
{"category_id": "4bf58dd8d48988d146941735", "title": "Deli / Bodega"},
{"category_id": "4bf58dd8d48988d1d0941735", "title": "Dessert Shop"},
{"category_id": "4bf58dd8d48988d1bc941735", "title": "Cupcake Shop"},
{"category_id": "512e7cae91d4cbb4e5efe0af", "title": "Frozen Yogurt Shop"},
{"category_id": "4bf58dd8d48988d1c9941735", "title": "Ice Cream Shop"},
{"category_id": "5744ccdfe4b0c0459246b4e2", "title": "Pastry Shop"},
{"category_id": "52e81612bcbc57f1066b7a0a", "title": "Pie Shop"},
{"category_id": "4bf58dd8d48988d147941735", "title": "Diner"},
{"category_id": "4bf58dd8d48988d148941735", "title": "Donut Shop"},
{"category_id": "4bf58dd8d48988d108941735", "title": "Dumpling Restaurant"},
{"category_id": "5744ccdfe4b0c0459246b4d0", "title": "Dutch Restaurant"},
{"category_id": "4bf58dd8d48988d109941735", "title": "Eastern European Restaurant"},
{"category_id": "52e928d0bcbc57f1066b7e97", "title": "Belarusian Restaurant"},
{"category_id": "58daa1558bbb0b01f18ec1ee", "title": "Bosnian Restaurant"},
{"category_id": "56aa371be4b08b9a8d5734f3", "title": "Bulgarian Restaurant"},
{"category_id": "52960bac3cf9994f4e043ac4", "title": "Romanian Restaurant"},
{"category_id": "52e928d0bcbc57f1066b7e98", "title": "Tatar Restaurant"},
{"category_id": "52e81612bcbc57f1066b7a05", "title": "English Restaurant"},
{"category_id": "4bf58dd8d48988d10b941735", "title": "Falafel Restaurant"},
{"category_id": "4bf58dd8d48988d16e941735", "title": "Fast Food Restaurant"},
{"category_id": "4edd64a0c7ddd24ca188df1a", "title": "Fish & Chips Shop"},
{"category_id": "52e81612bcbc57f1066b7a09", "title": "Fondue Restaurant"},
{"category_id": "4bf58dd8d48988d120951735", "title": "Food Court"},
{"category_id": "56aa371be4b08b9a8d57350b", "title": "Food Stand"},
{"category_id": "4bf58dd8d48988d1cb941735", "title": "Food Truck"},
{"category_id": "4bf58dd8d48988d10c941735", "title": "French Restaurant"},
{"category_id": "57558b36e4b065ecebd306b6", "title": "Alsatian Restaurant"},
{"category_id": "57558b36e4b065ecebd306b8", "title": "Auvergne Restaurant"},
{"category_id": "57558b36e4b065ecebd306bc", "title": "Basque Restaurant"},
{"category_id": "57558b36e4b065ecebd306b0", "title": "Brasserie"},
{"category_id": "57558b36e4b065ecebd306c5", "title": "Breton Restaurant"},
{"category_id": "57558b36e4b065ecebd306c0", "title": "Burgundian Restaurant"},
{"category_id": "57558b36e4b065ecebd306cb", "title": "Catalan Restaurant"},
{"category_id": "57558b36e4b065ecebd306ce", "title": "Ch'ti Restaurant"},
{"category_id": "57558b36e4b065ecebd306d1", "title": "Corsican Restaurant"},
{"category_id": "57558b36e4b065ecebd306b4", "title": "Estaminet"},
{"category_id": "57558b36e4b065ecebd306b2", "title": "Labour Canteen"},
{"category_id": "57558b35e4b065ecebd306ad", "title": "Lyonese Bouchon"},
{"category_id": "57558b36e4b065ecebd306d4", "title": "Norman Restaurant"},
{"category_id": "57558b36e4b065ecebd306d7", "title": "Proven\u00e7al Restaurant"},
{"category_id": "57558b36e4b065ecebd306da", "title": "Savoyard Restaurant"},
{"category_id": "57558b36e4b065ecebd306ba", "title": "Southwestern French Restaurant"},
{"category_id": "4d4ae6fc7a7b7dea34424761", "title": "Fried Chicken Joint"},
{"category_id": "55d25775498e9f6a0816a37a", "title": "Friterie"},
{"category_id": "4bf58dd8d48988d155941735", "title": "Gastropub"},
{"category_id": "4bf58dd8d48988d10d941735", "title": "German Restaurant"},
{"category_id": "56aa371ce4b08b9a8d573583", "title": "Apple Wine Pub"},
{"category_id": "56aa371ce4b08b9a8d573572", "title": "Bavarian Restaurant"},
{"category_id": "56aa371ce4b08b9a8d57358e", "title": "Bratwurst Joint"},
{"category_id": "56aa371ce4b08b9a8d57358b", "title": "Currywurst Joint"},
{"category_id": "56aa371ce4b08b9a8d573574", "title": "Franconian Restaurant"},
{"category_id": "56aa371ce4b08b9a8d573592", "title": "German Pop-Up Restaurant"},
{"category_id": "56aa371ce4b08b9a8d573578", "title": "Palatine Restaurant"},
{"category_id": "56aa371ce4b08b9a8d57357b", "title": "Rhenisch Restaurant"},
{"category_id": "56aa371ce4b08b9a8d573587", "title": "Schnitzel Restaurant"},
{"category_id": "56aa371ce4b08b9a8d57357f", "title": "Silesian Restaurant"},
{"category_id": "56aa371ce4b08b9a8d573576", "title": "Swabian Restaurant"},
{"category_id": "4c2cd86ed066bed06c3c5209", "title": "Gluten-free Restaurant"},
{"category_id": "4bf58dd8d48988d10e941735", "title": "Greek Restaurant"},
{"category_id": "53d6c1b0e4b02351e88a83e8", "title": "Bougatsa Shop"},
{"category_id": "53d6c1b0e4b02351e88a83e2", "title": "Cretan Restaurant"},
{"category_id": "53d6c1b0e4b02351e88a83d8", "title": "Fish Taverna"},
{"category_id": "53d6c1b0e4b02351e88a83d6", "title": "Grilled Meat Restaurant"},
{"category_id": "53d6c1b0e4b02351e88a83e6", "title": "Kafenio"},
{"category_id": "53d6c1b0e4b02351e88a83e4", "title": "Magirio"},
{"category_id": "53d6c1b0e4b02351e88a83da", "title": "Meze Restaurant"},
{"category_id": "53d6c1b0e4b02351e88a83d4", "title": "Modern Greek Restaurant"},
{"category_id": "53d6c1b0e4b02351e88a83dc", "title": "Ouzeri"},
{"category_id": "53d6c1b0e4b02351e88a83e0", "title": "Patsa Restaurant"},
{"category_id": "52e81612bcbc57f1066b79f3", "title": "Souvlaki Shop"},
{"category_id": "53d6c1b0e4b02351e88a83d2", "title": "Taverna"},
{"category_id": "53d6c1b0e4b02351e88a83de", "title": "Tsipouro Restaurant"},
{"category_id": "52e81612bcbc57f1066b79ff", "title": "Halal Restaurant"},
{"category_id": "52e81612bcbc57f1066b79fe", "title": "Hawaiian Restaurant"},
{"category_id": "5bae9231bedf3950379f89d4", "title": "Poke Place"},
{"category_id": "4bf58dd8d48988d16f941735", "title": "Hot Dog Joint"},
{"category_id": "52e81612bcbc57f1066b79fa", "title": "Hungarian Restaurant"},
{"category_id": "4bf58dd8d48988d10f941735", "title": "Indian Restaurant"},
{"category_id": "54135bf5e4b08f3d2429dfe5", "title": "Andhra Restaurant"},
{"category_id": "54135bf5e4b08f3d2429dff3", "title": "Awadhi Restaurant"},
{"category_id": "54135bf5e4b08f3d2429dff5", "title": "Bengali Restaurant"},
{"category_id": "54135bf5e4b08f3d2429dfe2", "title": "Chaat Place"},
{"category_id": "54135bf5e4b08f3d2429dff2", "title": "Chettinad Restaurant"},
{"category_id": "54135bf5e4b08f3d2429dfe1", "title": "Dhaba"},
{"category_id": "54135bf5e4b08f3d2429dfe3", "title": "Dosa Place"},
{"category_id": "54135bf5e4b08f3d2429dfe8", "title": "Goan Restaurant"},
{"category_id": "54135bf5e4b08f3d2429dfe9", "title": "Gujarati Restaurant"},
{"category_id": "54135bf5e4b08f3d2429dfe6", "title": "Hyderabadi Restaurant"},
{"category_id": "54135bf5e4b08f3d2429dfdf", "title": "Indian Chinese Restaurant"},
{"category_id": "54135bf5e4b08f3d2429dfe4", "title": "Indian Sweet Shop"},
{"category_id": "54135bf5e4b08f3d2429dfe7", "title": "Irani Cafe"},
{"category_id": "54135bf5e4b08f3d2429dfea", "title": "Jain Restaurant"},
{"category_id": "54135bf5e4b08f3d2429dfeb", "title": "Karnataka Restaurant"},
{"category_id": "54135bf5e4b08f3d2429dfed", "title": "Kerala Restaurant"},
{"category_id": "54135bf5e4b08f3d2429dfee", "title": "Maharashtrian Restaurant"},
{"category_id": "54135bf5e4b08f3d2429dff4", "title": "Mughlai Restaurant"},
{"category_id": "54135bf5e4b08f3d2429dfe0", "title": "Multicuisine Indian Restaurant"},
{"category_id": "54135bf5e4b08f3d2429dfdd", "title": "North Indian Restaurant"},
{"category_id": "54135bf5e4b08f3d2429dff6", "title": "Northeast Indian Restaurant"},
{"category_id": "54135bf5e4b08f3d2429dfef", "title": "Parsi Restaurant"},
{"category_id": "54135bf5e4b08f3d2429dff0", "title": "Punjabi Restaurant"},
{"category_id": "54135bf5e4b08f3d2429dff1", "title": "Rajasthani Restaurant"},
{"category_id": "54135bf5e4b08f3d2429dfde", "title": "South Indian Restaurant"},
{"category_id": "54135bf5e4b08f3d2429dfec", "title": "Udupi Restaurant"},
{"category_id": "52e81612bcbc57f1066b7a06", "title": "Irish Pub"},
{"category_id": "4bf58dd8d48988d110941735", "title": "Italian Restaurant"},
{"category_id": "55a5a1ebe4b013909087cbb6", "title": "Abruzzo Restaurant"},
{"category_id": "55a5a1ebe4b013909087cb7c", "title": "Agriturismo"},
{"category_id": "55a5a1ebe4b013909087cba7", "title": "Aosta Restaurant"},
{"category_id": "55a5a1ebe4b013909087cba1", "title": "Basilicata Restaurant"},
{"category_id": "55a5a1ebe4b013909087cba4", "title": "Calabria Restaurant"},
{"category_id": "55a5a1ebe4b013909087cb95", "title": "Campanian Restaurant"},
{"category_id": "55a5a1ebe4b013909087cb89", "title": "Emilia Restaurant"},
{"category_id": "55a5a1ebe4b013909087cb9b", "title": "Friuli Restaurant"},
{"category_id": "55a5a1ebe4b013909087cb98", "title": "Ligurian Restaurant"},
{"category_id": "55a5a1ebe4b013909087cbbf", "title": "Lombard Restaurant"},
{"category_id": "55a5a1ebe4b013909087cb79", "title": "Malga"},
{"category_id": "55a5a1ebe4b013909087cbb0", "title": "Marche Restaurant"},
{"category_id": "55a5a1ebe4b013909087cbb3", "title": "Molise Restaurant"},
{"category_id": "55a5a1ebe4b013909087cb74", "title": "Piadineria"},
{"category_id": "55a5a1ebe4b013909087cbaa", "title": "Piedmontese Restaurant"},
{"category_id": "55a5a1ebe4b013909087cb83", "title": "Puglia Restaurant"},
{"category_id": "55a5a1ebe4b013909087cb8c", "title": "Romagna Restaurant"},
{"category_id": "55a5a1ebe4b013909087cb92", "title": "Roman Restaurant"},
{"category_id": "55a5a1ebe4b013909087cb8f", "title": "Sardinian Restaurant"},
{"category_id": "55a5a1ebe4b013909087cb86", "title": "Sicilian Restaurant"},
{"category_id": "55a5a1ebe4b013909087cbb9", "title": "South Tyrolean Restaurant"},
{"category_id": "55a5a1ebe4b013909087cb7f", "title": "Trattoria/Osteria"},
{"category_id": "55a5a1ebe4b013909087cbbc", "title": "Trentino Restaurant"},
{"category_id": "55a5a1ebe4b013909087cb9e", "title": "Tuscan Restaurant"},
{"category_id": "55a5a1ebe4b013909087cbc2", "title": "Umbrian Restaurant"},
{"category_id": "55a5a1ebe4b013909087cbad", "title": "Veneto Restaurant"},
{"category_id": "52e81612bcbc57f1066b79fd", "title": "Jewish Restaurant"},
{"category_id": "52e81612bcbc57f1066b79fc", "title": "Kosher Restaurant"},
{"category_id": "4bf58dd8d48988d112941735", "title": "Juice Bar"},
{"category_id": "5283c7b4e4b094cb91ec88d7", "title": "Kebab Restaurant"},
{"category_id": "4bf58dd8d48988d1be941735", "title": "Latin American Restaurant"},
{"category_id": "4bf58dd8d48988d152941735", "title": "Arepa Restaurant"},
{"category_id": "52939a8c3cf9994f4e043a35", "title": "Empanada Restaurant"},
{"category_id": "5745c7ac498e5d0483112fdb", "title": "Salvadoran Restaurant"},
{"category_id": "4bf58dd8d48988d1cd941735", "title": "South American Restaurant"},
{"category_id": "4bf58dd8d48988d107941735", "title": "Argentinian Restaurant"},
{"category_id": "4bf58dd8d48988d16b941735", "title": "Brazilian Restaurant"},
{"category_id": "5294c7523cf9994f4e043a62", "title": "Acai House"},
{"category_id": "52939ae13cf9994f4e043a3b", "title": "Baiano Restaurant"},
{"category_id": "52939a9e3cf9994f4e043a36", "title": "Central Brazilian Restaurant"},
{"category_id": "52939a643cf9994f4e043a33", "title": "Churrascaria"},
{"category_id": "5294c55c3cf9994f4e043a61", "title": "Empada House"},
{"category_id": "52939af83cf9994f4e043a3d", "title": "Goiano Restaurant"},
{"category_id": "52939aed3cf9994f4e043a3c", "title": "Mineiro Restaurant"},
{"category_id": "52939aae3cf9994f4e043a37", "title": "Northeastern Brazilian Restaurant"},
{"category_id": "52939ab93cf9994f4e043a38", "title": "Northern Brazilian Restaurant"},
{"category_id": "5294cbda3cf9994f4e043a63", "title": "Pastelaria"},
{"category_id": "52939ac53cf9994f4e043a39", "title": "Southeastern Brazilian Restaurant"},
{"category_id": "52939ad03cf9994f4e043a3a", "title": "Southern Brazilian Restaurant"},
{"category_id": "52939a7d3cf9994f4e043a34", "title": "Tapiocaria"},
{"category_id": "58daa1558bbb0b01f18ec1f4", "title": "Colombian Restaurant"},
{"category_id": "4eb1bfa43b7b52c0e1adc2e8", "title": "Peruvian Restaurant"},
{"category_id": "56aa371be4b08b9a8d573558", "title": "Venezuelan Restaurant"},
{"category_id": "4bf58dd8d48988d1bf941735", "title": "Mac & Cheese Joint"},
{"category_id": "4bf58dd8d48988d1c0941735", "title": "Mediterranean Restaurant"},
{"category_id": "4bf58dd8d48988d1c3941735", "title": "Moroccan Restaurant"},
{"category_id": "4bf58dd8d48988d1c1941735", "title": "Mexican Restaurant"},
{"category_id": "58daa1558bbb0b01f18ec1d9", "title": "Botanero"},
{"category_id": "4bf58dd8d48988d153941735", "title": "Burrito Place"},
{"category_id": "4bf58dd8d48988d151941735", "title": "Taco Place"},
{"category_id": "56aa371ae4b08b9a8d5734ba", "title": "Tex-Mex Restaurant"},
{"category_id": "5744ccdfe4b0c0459246b4d3", "title": "Yucatecan Restaurant"},
{"category_id": "4bf58dd8d48988d115941735", "title": "Middle Eastern Restaurant"},
{"category_id": "5bae9231bedf3950379f89e1", "title": "Egyptian Restaurant"},
{"category_id": "5bae9231bedf3950379f89e7", "title": "Iraqi Restaurant"},
{"category_id": "56aa371be4b08b9a8d573529", "title": "Israeli Restaurant"},
{"category_id": "5744ccdfe4b0c0459246b4ca", "title": "Kurdish Restaurant"},
{"category_id": "58daa1558bbb0b01f18ec1cd", "title": "Lebanese Restaurant"},
{"category_id": "52e81612bcbc57f1066b79f7", "title": "Persian Restaurant"},
{"category_id": "58daa1558bbb0b01f18ec1bc", "title": "Ash and Haleem Place"},
{"category_id": "58daa1558bbb0b01f18ec1c0", "title": "Dizi Place"},
{"category_id": "58daa1558bbb0b01f18ec1c4", "title": "Gilaki Restaurant"},
{"category_id": "58daa1558bbb0b01f18ec1c7", "title": "Jegaraki"},
{"category_id": "5744ccdfe4b0c0459246b4a8", "title": "Tabbakhi"},
{"category_id": "5bae9231bedf3950379f89e4", "title": "Shawarma Place"},
{"category_id": "5bae9231bedf3950379f89da", "title": "Syrian Restaurant"},
{"category_id": "5bae9231bedf3950379f89ea", "title": "Yemeni Restaurant"},
{"category_id": "52e81612bcbc57f1066b79f9", "title": "Modern European Restaurant"},
{"category_id": "4bf58dd8d48988d1c2941735", "title": "Molecular Gastronomy Restaurant"},
{"category_id": "52e81612bcbc57f1066b79f8", "title": "Pakistani Restaurant"},
{"category_id": "56aa371be4b08b9a8d573508", "title": "Pet Caf\u00e9"},
{"category_id": "4bf58dd8d48988d1ca941735", "title": "Pizza Place"},
{"category_id": "52e81612bcbc57f1066b7a04", "title": "Polish Restaurant"},
{"category_id": "4def73e84765ae376e57713a", "title": "Portuguese Restaurant"},
{"category_id": "56aa371be4b08b9a8d5734c7", "title": "Poutine Place"},
{"category_id": "4bf58dd8d48988d1c4941735", "title": "Restaurant"},
{"category_id": "5293a7563cf9994f4e043a44", "title": "Russian Restaurant"},
{"category_id": "52e928d0bcbc57f1066b7e9d", "title": "Blini House"},
{"category_id": "52e928d0bcbc57f1066b7e9c", "title": "Pelmeni House"},
{"category_id": "4bf58dd8d48988d1bd941735", "title": "Salad Place"},
{"category_id": "4bf58dd8d48988d1c5941735", "title": "Sandwich Place"},
{"category_id": "4bf58dd8d48988d1c6941735", "title": "Scandinavian Restaurant"},
{"category_id": "5744ccdde4b0c0459246b4a3", "title": "Scottish Restaurant"},
{"category_id": "4bf58dd8d48988d1ce941735", "title": "Seafood Restaurant"},
{"category_id": "56aa371be4b08b9a8d57355a", "title": "Slovak Restaurant"},
{"category_id": "4bf58dd8d48988d1c7941735", "title": "Snack Place"},
{"category_id": "4bf58dd8d48988d1dd931735", "title": "Soup Place"},
{"category_id": "4bf58dd8d48988d14f941735", "title": "Southern / Soul Food Restaurant"},
{"category_id": "4bf58dd8d48988d150941735", "title": "Spanish Restaurant"},
{"category_id": "4bf58dd8d48988d14d941735", "title": "Paella Restaurant"},
{"category_id": "4bf58dd8d48988d1db931735", "title": "Tapas Restaurant"},
{"category_id": "5413605de4b0ae91d18581a9", "title": "Sri Lankan Restaurant"},
{"category_id": "4bf58dd8d48988d1cc941735", "title": "Steakhouse"},
{"category_id": "4bf58dd8d48988d158941735", "title": "Swiss Restaurant"},
{"category_id": "4bf58dd8d48988d1dc931735", "title": "Tea Room"},
{"category_id": "56aa371be4b08b9a8d573538", "title": "Theme Restaurant"},
{"category_id": "57558b36e4b065ecebd306dd", "title": "Truck Stop"},
{"category_id": "4f04af1f2fb6e1c99f3db0bb", "title": "Turkish Restaurant"},
{"category_id": "530faca9bcbc57f1066bc2f3", "title": "Borek Place"},
{"category_id": "530faca9bcbc57f1066bc2f4", "title": "Cigkofte Place"},
{"category_id": "5283c7b4e4b094cb91ec88d8", "title": "Doner Restaurant"},
{"category_id": "5283c7b4e4b094cb91ec88d9", "title": "Gozleme Place"},
{"category_id": "5283c7b4e4b094cb91ec88db", "title": "Kofte Place"},
{"category_id": "5283c7b4e4b094cb91ec88d6", "title": "Kokore\u00e7 Restaurant"},
{"category_id": "56aa371be4b08b9a8d573535", "title": "Kumpir Restaurant"},
{"category_id": "56aa371be4b08b9a8d5734bd", "title": "Kumru Restaurant"},
{"category_id": "5283c7b4e4b094cb91ec88d5", "title": "Manti Place"},
{"category_id": "5283c7b4e4b094cb91ec88da", "title": "Meyhane"},
{"category_id": "530faca9bcbc57f1066bc2f2", "title": "Pide Place"},
{"category_id": "58daa1558bbb0b01f18ec1df", "title": "Pilavc\u0131"},
{"category_id": "58daa1558bbb0b01f18ec1dc", "title": "S\u00f6\u011f\u00fc\u015f Place"},
{"category_id": "56aa371be4b08b9a8d5734bf", "title": "Tantuni Restaurant"},
{"category_id": "56aa371be4b08b9a8d5734c1", "title": "Turkish Coffeehouse"},
{"category_id": "5283c7b4e4b094cb91ec88d4", "title": "Turkish Home Cooking Restaurant"},
{"category_id": "58daa1558bbb0b01f18ec1e2", "title": "\u00c7\u00f6p \u015ei\u015f Place"},
{"category_id": "52e928d0bcbc57f1066b7e96", "title": "Ukrainian Restaurant"},
{"category_id": "52e928d0bcbc57f1066b7e9a", "title": "Varenyky restaurant"},
{"category_id": "52e928d0bcbc57f1066b7e9b", "title": "West-Ukrainian Restaurant"},
{"category_id": "4bf58dd8d48988d1d3941735", "title": "Vegetarian / Vegan Restaurant"},
{"category_id": "4bf58dd8d48988d14c941735", "title": "Wings Joint"},
{"category_id": "4d4b7105d754a06376d81259", "title": "Nightlife Spot"},
{"category_id": "4bf58dd8d48988d116941735", "title": "Bar"},
{"category_id": "52e81612bcbc57f1066b7a0d", "title": "Beach Bar"},
{"category_id": "56aa371ce4b08b9a8d57356c", "title": "Beer Bar"},
{"category_id": "4bf58dd8d48988d117941735", "title": "Beer Garden"},
{"category_id": "52e81612bcbc57f1066b7a0e", "title": "Champagne Bar"},
{"category_id": "4bf58dd8d48988d11e941735", "title": "Cocktail Bar"},
{"category_id": "4bf58dd8d48988d118941735", "title": "Dive Bar"},
{"category_id": "4bf58dd8d48988d1d8941735", "title": "Gay Bar"},
{"category_id": "4bf58dd8d48988d119941735", "title": "Hookah Bar"},
{"category_id": "4bf58dd8d48988d1d5941735", "title": "Hotel Bar"},
{"category_id": "4bf58dd8d48988d120941735", "title": "Karaoke Bar"},
{"category_id": "4bf58dd8d48988d11b941735", "title": "Pub"},
{"category_id": "4bf58dd8d48988d11c941735", "title": "Sake Bar"},
{"category_id": "4bf58dd8d48988d1d4941735", "title": "Speakeasy"},
{"category_id": "4bf58dd8d48988d11d941735", "title": "Sports Bar"},
{"category_id": "56aa371be4b08b9a8d57354d", "title": "Tiki Bar"},
{"category_id": "4bf58dd8d48988d122941735", "title": "Whisky Bar"},
{"category_id": "4bf58dd8d48988d123941735", "title": "Wine Bar"},
{"category_id": "50327c8591d4c4b30a586d5d", "title": "Brewery"},
{"category_id": "4bf58dd8d48988d121941735", "title": "Lounge"},
{"category_id": "53e510b7498ebcb1801b55d4", "title": "Night Market"},
{"category_id": "4bf58dd8d48988d11f941735", "title": "Nightclub"},
{"category_id": "4bf58dd8d48988d11a941735", "title": "Other Nightlife"},
{"category_id": "4bf58dd8d48988d1d6941735", "title": "Strip Club"},
{"category_id": "4d4b7105d754a06377d81259", "title": "Outdoors & Recreation"},
{"category_id": "4f4528bc4b90abdf24c9de85", "title": "Athletics & Sports"},
{"category_id": "52e81612bcbc57f1066b7a2b", "title": "Badminton Court"},
{"category_id": "4bf58dd8d48988d1e8941735", "title": "Baseball Field"},
{"category_id": "4bf58dd8d48988d1e1941735", "title": "Basketball Court"},
{"category_id": "52e81612bcbc57f1066b7a2f", "title": "Bowling Green"},
{"category_id": "56aa371be4b08b9a8d57351a", "title": "Curling Ice"},
{"category_id": "4bf58dd8d48988d1e6941735", "title": "Golf Course"},
{"category_id": "58daa1558bbb0b01f18ec1b0", "title": "Golf Driving Range"},
{"category_id": "4bf58dd8d48988d175941735", "title": "Gym / Fitness Center"},
{"category_id": "52f2ab2ebcbc57f1066b8b47", "title": "Boxing Gym"},
{"category_id": "503289d391d4c4b30a586d6a", "title": "Climbing Gym"},
{"category_id": "52f2ab2ebcbc57f1066b8b49", "title": "Cycle Studio"},
{"category_id": "4bf58dd8d48988d105941735", "title": "Gym Pool"},
{"category_id": "52f2ab2ebcbc57f1066b8b48", "title": "Gymnastics Gym"},
{"category_id": "4bf58dd8d48988d176941735", "title": "Gym"},
{"category_id": "4bf58dd8d48988d101941735", "title": "Martial Arts Dojo"},
{"category_id": "58daa1558bbb0b01f18ec203", "title": "Outdoor Gym"},
{"category_id": "5744ccdfe4b0c0459246b4b2", "title": "Pilates Studio"},
{"category_id": "4bf58dd8d48988d106941735", "title": "Track"},
{"category_id": "590a0744340a5803fd8508c3", "title": "Weight Loss Center"},
{"category_id": "4bf58dd8d48988d102941735", "title": "Yoga Studio"},
{"category_id": "4f452cd44b9081a197eba860", "title": "Hockey Field"},
{"category_id": "56aa371be4b08b9a8d57352c", "title": "Hockey Rink"},
{"category_id": "5032829591d4c4b30a586d5e", "title": "Paintball Field"},
{"category_id": "52e81612bcbc57f1066b7a2c", "title": "Rugby Pitch"},
{"category_id": "4bf58dd8d48988d167941735", "title": "Skate Park"},
{"category_id": "4bf58dd8d48988d168941735", "title": "Skating Rink"},
{"category_id": "4cce455aebf7b749d5e191f5", "title": "Soccer Field"},
{"category_id": "52e81612bcbc57f1066b7a2e", "title": "Sports Club"},
{"category_id": "52e81612bcbc57f1066b7a2d", "title": "Squash Court"},
{"category_id": "4e39a956bd410d7aed40cbc3", "title": "Tennis Court"},
{"category_id": "4eb1bf013b7b6f98df247e07", "title": "Volleyball Court"},
{"category_id": "52e81612bcbc57f1066b7a28", "title": "Bathing Area"},
{"category_id": "56aa371be4b08b9a8d573544", "title": "Bay"},
{"category_id": "4bf58dd8d48988d1e2941735", "title": "Beach"},
{"category_id": "52e81612bcbc57f1066b7a30", "title": "Nudist Beach"},
{"category_id": "4bf58dd8d48988d1e3941735", "title": "Surf Spot"},
{"category_id": "56aa371be4b08b9a8d57355e", "title": "Bike Trail"},
{"category_id": "52e81612bcbc57f1066b7a22", "title": "Botanical Garden"},
{"category_id": "4bf58dd8d48988d1df941735", "title": "Bridge"},
{"category_id": "4bf58dd8d48988d1e4941735", "title": "Campground"},
{"category_id": "56aa371be4b08b9a8d57353b", "title": "Canal Lock"},
{"category_id": "56aa371be4b08b9a8d573562", "title": "Canal"},
{"category_id": "50aaa49e4b90af0d42d5de11", "title": "Castle"},
{"category_id": "56aa371be4b08b9a8d573511", "title": "Cave"},
{"category_id": "4bf58dd8d48988d15c941735", "title": "Cemetery"},
{"category_id": "52e81612bcbc57f1066b7a12", "title": "Dive Spot"},
{"category_id": "4bf58dd8d48988d1e5941735", "title": "Dog Run"},
{"category_id": "4bf58dd8d48988d15b941735", "title": "Farm"},
{"category_id": "4bf58dd8d48988d15f941735", "title": "Field"},
{"category_id": "52e81612bcbc57f1066b7a0f", "title": "Fishing Spot"},
{"category_id": "52e81612bcbc57f1066b7a23", "title": "Forest"},
{"category_id": "56aa371be4b08b9a8d573547", "title": "Fountain"},
{"category_id": "4bf58dd8d48988d15a941735", "title": "Garden"},
{"category_id": "52e81612bcbc57f1066b7a11", "title": "Gun Range"},
{"category_id": "4bf58dd8d48988d1e0941735", "title": "Harbor / Marina"},
{"category_id": "5bae9231bedf3950379f89cd", "title": "Hill"},
{"category_id": "4bf58dd8d48988d160941735", "title": "Hot Spring"},
{"category_id": "5744ccdfe4b0c0459246b4b5", "title": "Indoor Play Area"},
{"category_id": "50aaa4314b90af0d42d5de10", "title": "Island"},
{"category_id": "4bf58dd8d48988d161941735", "title": "Lake"},
{"category_id": "4bf58dd8d48988d15d941735", "title": "Lighthouse"},
{"category_id": "55a5a1ebe4b013909087cb77", "title": "Mountain Hut"},
{"category_id": "4eb1d4d54b900d56c88a45fc", "title": "Mountain"},
{"category_id": "52e81612bcbc57f1066b7a21", "title": "National Park"},
{"category_id": "52e81612bcbc57f1066b7a13", "title": "Nature Preserve"},
{"category_id": "4bf58dd8d48988d162941735", "title": "Other Great Outdoors"},
{"category_id": "52e81612bcbc57f1066b7a14", "title": "Palace"},
{"category_id": "4bf58dd8d48988d163941735", "title": "Park"},
{"category_id": "52e81612bcbc57f1066b7a25", "title": "Pedestrian Plaza"},
{"category_id": "4bf58dd8d48988d1e7941735", "title": "Playground"},
{"category_id": "4bf58dd8d48988d164941735", "title": "Plaza"},
{"category_id": "4bf58dd8d48988d15e941735", "title": "Pool"},
{"category_id": "52e81612bcbc57f1066b7a29", "title": "Rafting"},
{"category_id": "52e81612bcbc57f1066b7a26", "title": "Recreation Center"},
{"category_id": "56aa371be4b08b9a8d573541", "title": "Reservoir"},
{"category_id": "4eb1d4dd4b900d56c88a45fd", "title": "River"},
{"category_id": "50328a4b91d4c4b30a586d6b", "title": "Rock Climbing Spot"},
{"category_id": "4bf58dd8d48988d133951735", "title": "Roof Deck"},
{"category_id": "4bf58dd8d48988d165941735", "title": "Scenic Lookout"},
{"category_id": "4bf58dd8d48988d166941735", "title": "Sculpture Garden"},
{"category_id": "4bf58dd8d48988d1e9941735", "title": "Ski Area"},
{"category_id": "4bf58dd8d48988d1ea941735", "title": "Apres Ski Bar"},
{"category_id": "4eb1c0ed3b7b52c0e1adc2ea", "title": "Ski Chairlift"},
{"category_id": "4bf58dd8d48988d1ec941735", "title": "Ski Chalet"},
{"category_id": "4bf58dd8d48988d1eb941735", "title": "Ski Lodge"},
{"category_id": "4eb1c0f63b7b52c0e1adc2eb", "title": "Ski Trail"},
{"category_id": "58daa1558bbb0b01f18ec1b9", "title": "Skydiving Drop Zone"},
{"category_id": "4eb1baf03b7b2c5b1d4306ca", "title": "Stables"},
{"category_id": "5bae9231bedf3950379f89d0", "title": "State / Provincial Park"},
{"category_id": "530e33ccbcbc57f1066bbfe4", "title": "States & Municipalities"},
{"category_id": "50aa9e094b90af0d42d5de0d", "title": "City"},
{"category_id": "5345731ebcbc57f1066c39b2", "title": "County"},
{"category_id": "530e33ccbcbc57f1066bbff7", "title": "Country"},
{"category_id": "4f2a25ac4b909258e854f55f", "title": "Neighborhood"},
{"category_id": "530e33ccbcbc57f1066bbff8", "title": "State"},
{"category_id": "530e33ccbcbc57f1066bbff3", "title": "Town"},
{"category_id": "530e33ccbcbc57f1066bbff9", "title": "Village"},
{"category_id": "52e81612bcbc57f1066b7a10", "title": "Summer Camp"},
{"category_id": "4bf58dd8d48988d159941735", "title": "Trail"},
{"category_id": "52e81612bcbc57f1066b7a24", "title": "Tree"},
{"category_id": "4bf58dd8d48988d1de941735", "title": "Vineyard"},
{"category_id": "5032848691d4c4b30a586d61", "title": "Volcano"},
{"category_id": "56aa371be4b08b9a8d573560", "title": "Waterfall"},
{"category_id": "56aa371be4b08b9a8d5734c3", "title": "Waterfront"},
{"category_id": "4fbc1be21983fc883593e321", "title": "Well"},
{"category_id": "5bae9231bedf3950379f89c7", "title": "Windmill"},
{"category_id": "4d4b7105d754a06375d81259", "title": "Professional & Other Places"},
{"category_id": "4e52d2d203646f7c19daa8ae", "title": "Animal Shelter"},
{"category_id": "58daa1558bbb0b01f18ec1d6", "title": "Art Studio"},
{"category_id": "4bf58dd8d48988d173941735", "title": "Auditorium"},
{"category_id": "56aa371be4b08b9a8d5734cf", "title": "Ballroom"},
{"category_id": "4bf58dd8d48988d130941735", "title": "Building"},
{"category_id": "56aa371be4b08b9a8d573517", "title": "Business Center"},
{"category_id": "52e81612bcbc57f1066b7a35", "title": "Club House"},
{"category_id": "52e81612bcbc57f1066b7a34", "title": "Community Center"},
{"category_id": "4bf58dd8d48988d1ff931735", "title": "Convention Center"},
{"category_id": "4bf58dd8d48988d100941735", "title": "Meeting Room"},
{"category_id": "52e81612bcbc57f1066b7a32", "title": "Cultural Center"},
{"category_id": "4e0e22f5a56208c4ea9a85a0", "title": "Distillery"},
{"category_id": "52e81612bcbc57f1066b7a37", "title": "Distribution Center"},
{"category_id": "4bf58dd8d48988d171941735", "title": "Event Space"},
{"category_id": "56aa371be4b08b9a8d57356a", "title": "Outdoor Event Space"},
{"category_id": "4eb1bea83b7b6f98df247e06", "title": "Factory"},
{"category_id": "4eb1daf44b900d56c88a4600", "title": "Fair"},
{"category_id": "4f4534884b9074f6e4fb0174", "title": "Funeral Home"},
{"category_id": "4bf58dd8d48988d126941735", "title": "Government Building"},
{"category_id": "4bf58dd8d48988d12a941735", "title": "Capitol Building"},
{"category_id": "4bf58dd8d48988d129941735", "title": "City Hall"},
{"category_id": "4bf58dd8d48988d12b941735", "title": "Courthouse"},
{"category_id": "4bf58dd8d48988d12c951735", "title": "Embassy / Consulate"},
{"category_id": "4bf58dd8d48988d12c941735", "title": "Fire Station"},
{"category_id": "4bf58dd8d48988d12d941735", "title": "Monument / Landmark"},
{"category_id": "4bf58dd8d48988d12e941735", "title": "Police Station"},
{"category_id": "52e81612bcbc57f1066b7a38", "title": "Town Hall"},
{"category_id": "56aa371be4b08b9a8d5734d7", "title": "Industrial Estate"},
{"category_id": "5744ccdfe4b0c0459246b4d6", "title": "Laboratory"},
{"category_id": "4bf58dd8d48988d12f941735", "title": "Library"},
{"category_id": "4bf58dd8d48988d104941735", "title": "Medical Center"},
{"category_id": "52e81612bcbc57f1066b7a3b", "title": "Acupuncturist"},
{"category_id": "52e81612bcbc57f1066b7a3c", "title": "Alternative Healer"},
{"category_id": "52e81612bcbc57f1066b7a3a", "title": "Chiropractor"},
{"category_id": "4bf58dd8d48988d178941735", "title": "Dentist's Office"},
{"category_id": "4bf58dd8d48988d177941735", "title": "Doctor's Office"},
{"category_id": "4bf58dd8d48988d194941735", "title": "Emergency Room"},
{"category_id": "522e32fae4b09b556e370f19", "title": "Eye Doctor"},
{"category_id": "4bf58dd8d48988d196941735", "title": "Hospital"},
{"category_id": "58daa1558bbb0b01f18ec1f7", "title": "Hospital Ward"},
{"category_id": "56aa371be4b08b9a8d5734ff", "title": "Maternity Clinic"},
{"category_id": "4f4531b14b9074f6e4fb0103", "title": "Medical Lab"},
{"category_id": "52e81612bcbc57f1066b7a39", "title": "Mental Health Office"},
{"category_id": "58daa1558bbb0b01f18ec1d0", "title": "Nutritionist"},
{"category_id": "5744ccdfe4b0c0459246b4af", "title": "Physical Therapist"},
{"category_id": "56aa371be4b08b9a8d57351d", "title": "Rehab Center"},
{"category_id": "56aa371be4b08b9a8d573526", "title": "Urgent Care Center"},
{"category_id": "4d954af4a243a5684765b473", "title": "Veterinarian"},
{"category_id": "4e52adeebd41615f56317744", "title": "Military Base"},
{"category_id": "50328a8e91d4c4b30a586d6c", "title": "Non-Profit"},
{"category_id": "5744ccdfe4b0c0459246b4d9", "title": "Observatory"},
{"category_id": "4bf58dd8d48988d124941735", "title": "Office"},
{"category_id": "52e81612bcbc57f1066b7a3d", "title": "Advertising Agency"},
{"category_id": "5032764e91d4c4b30a586d5a", "title": "Campaign Office"},
{"category_id": "4bf58dd8d48988d127941735", "title": "Conference Room"},
{"category_id": "5665ef1d498ec706735f0e59", "title": "Corporate Amenity"},
{"category_id": "54f4ba06498e2cf5561da814", "title": "Corporate Cafeteria"},
{"category_id": "5665c7b9498e7d8a4f2c0f06", "title": "Corporate Coffee Shop"},
{"category_id": "4bf58dd8d48988d174941735", "title": "Coworking Space"},
{"category_id": "4bf58dd8d48988d125941735", "title": "Tech Startup"},
{"category_id": "4c38df4de52ce0d596b336e1", "title": "Parking"},
{"category_id": "4bf58dd8d48988d172941735", "title": "Post Office"},
{"category_id": "58daa1548bbb0b01f18ec1a9", "title": "Power Plant"},
{"category_id": "5310b8e5bcbc57f1066bcbf1", "title": "Prison"},
{"category_id": "5032856091d4c4b30a586d63", "title": "Radio Station"},
{"category_id": "52f2ab2ebcbc57f1066b8b57", "title": "Recruiting Agency"},
{"category_id": "58daa1558bbb0b01f18ec1b2", "title": "Research Station"},
{"category_id": "4bf58dd8d48988d13b941735", "title": "School"},
{"category_id": "56aa371ce4b08b9a8d573570", "title": "Adult Education Center"},
{"category_id": "52e81612bcbc57f1066b7a43", "title": "Circus School"},
{"category_id": "58daa1558bbb0b01f18ec200", "title": "Cooking School"},
{"category_id": "52e81612bcbc57f1066b7a42", "title": "Driving School"},
{"category_id": "4f4533804b9074f6e4fb0105", "title": "Elementary School"},
{"category_id": "52e81612bcbc57f1066b7a49", "title": "Flight School"},
{"category_id": "4bf58dd8d48988d13d941735", "title": "High School"},
{"category_id": "52e81612bcbc57f1066b7a48", "title": "Language School"},
{"category_id": "4f4533814b9074f6e4fb0106", "title": "Middle School"},
{"category_id": "4f04b10d2fb6e1c99f3db0be", "title": "Music School"},
{"category_id": "4f4533814b9074f6e4fb0107", "title": "Nursery School"},
{"category_id": "52e81612bcbc57f1066b7a45", "title": "Preschool"},
{"category_id": "52e81612bcbc57f1066b7a46", "title": "Private School"},
{"category_id": "52e81612bcbc57f1066b7a47", "title": "Religious School"},
{"category_id": "52e81612bcbc57f1066b7a44", "title": "Swim School"},
{"category_id": "52e81612bcbc57f1066b7a33", "title": "Social Club"},
{"category_id": "4bf58dd8d48988d131941735", "title": "Spiritual Center"},
{"category_id": "52e81612bcbc57f1066b7a3e", "title": "Buddhist Temple"},
{"category_id": "58daa1558bbb0b01f18ec1eb", "title": "Cemevi"},
{"category_id": "4bf58dd8d48988d132941735", "title": "Church"},
{"category_id": "56aa371be4b08b9a8d5734fc", "title": "Confucian Temple"},
{"category_id": "52e81612bcbc57f1066b7a3f", "title": "Hindu Temple"},
{"category_id": "5744ccdfe4b0c0459246b4ac", "title": "Kingdom Hall"},
{"category_id": "52e81612bcbc57f1066b7a40", "title": "Monastery"},
{"category_id": "4bf58dd8d48988d138941735", "title": "Mosque"},
{"category_id": "52e81612bcbc57f1066b7a41", "title": "Prayer Room"},
{"category_id": "4eb1d80a4b900d56c88a45ff", "title": "Shrine"},
{"category_id": "5bae9231bedf3950379f89c9", "title": "Sikh Temple"},
{"category_id": "4bf58dd8d48988d139941735", "title": "Synagogue"},
{"category_id": "4bf58dd8d48988d13a941735", "title": "Temple"},
{"category_id": "56aa371be4b08b9a8d5734f6", "title": "Terreiro"},
{"category_id": "52e81612bcbc57f1066b7a31", "title": "TV Station"},
{"category_id": "4cae28ecbf23941eb1190695", "title": "Voting Booth"},
{"category_id": "52e81612bcbc57f1066b7a36", "title": "Warehouse"},
{"category_id": "58daa1558bbb0b01f18ec1ac", "title": "Waste Facility"},
{"category_id": "56aa371be4b08b9a8d5734c5", "title": "Wedding Hall"},
{"category_id": "4bf58dd8d48988d14b941735", "title": "Winery"},
{"category_id": "4e67e38e036454776db1fb3a", "title": "Residence"},
{"category_id": "5032891291d4c4b30a586d68", "title": "Assisted Living"},
{"category_id": "4bf58dd8d48988d103941735", "title": "Home (private)"},
{"category_id": "4f2a210c4b9023bd5841ed28", "title": "Housing Development"},
{"category_id": "4d954b06a243a5684965b473", "title": "Residential Building (Apartment / Condo)"},
{"category_id": "52f2ab2ebcbc57f1066b8b55", "title": "Trailer Park"},
{"category_id": "4d4b7105d754a06378d81259", "title": "Shop & Service"},
{"category_id": "52f2ab2ebcbc57f1066b8b56", "title": "ATM"},
{"category_id": "5267e446e4b0ec79466e48c4", "title": "Adult Boutique"},
{"category_id": "4bf58dd8d48988d116951735", "title": "Antique Shop"},
{"category_id": "4bf58dd8d48988d127951735", "title": "Arts & Crafts Store"},
{"category_id": "52f2ab2ebcbc57f1066b8b43", "title": "Astrologer"},
{"category_id": "4eb1c1623b7b52c0e1adc2ec", "title": "Auto Dealership"},
{"category_id": "52f2ab2ebcbc57f1066b8b44", "title": "Auto Garage"},
{"category_id": "56aa371be4b08b9a8d5734d3", "title": "Auto Workshop"},
{"category_id": "4bf58dd8d48988d124951735", "title": "Automotive Shop"},
{"category_id": "52f2ab2ebcbc57f1066b8b32", "title": "Baby Store"},
{"category_id": "4bf58dd8d48988d10a951735", "title": "Bank"},
{"category_id": "52e81612bcbc57f1066b7a27", "title": "Bath House"},
{"category_id": "56aa371be4b08b9a8d5734cb", "title": "Batik Shop"},
{"category_id": "52f2ab2ebcbc57f1066b8b40", "title": "Betting Shop"},
{"category_id": "52f2ab2ebcbc57f1066b8b42", "title": "Big Box Store"},
{"category_id": "4bf58dd8d48988d115951735", "title": "Bike Shop"},
{"category_id": "4bf58dd8d48988d1f1941735", "title": "Board Shop"},
{"category_id": "4bf58dd8d48988d114951735", "title": "Bookstore"},
{"category_id": "4bf58dd8d48988d11a951735", "title": "Bridal Shop"},
{"category_id": "5453de49498eade8af355881", "title": "Business Service"},
{"category_id": "4eb1bdf03b7b55596b4a7491", "title": "Camera Store"},
{"category_id": "4bf58dd8d48988d117951735", "title": "Candy Store"},
{"category_id": "4f04ae1f2fb6e1c99f3db0ba", "title": "Car Wash"},
{"category_id": "52f2ab2ebcbc57f1066b8b2a", "title": "Carpet Store"},
{"category_id": "52f2ab2ebcbc57f1066b8b2d", "title": "Check Cashing Service"},
{"category_id": "5744ccdfe4b0c0459246b4c7", "title": "Child Care Service"},
{"category_id": "4f4532974b9074f6e4fb0104", "title": "Daycare"},
{"category_id": "52f2ab2ebcbc57f1066b8b31", "title": "Chocolate Shop"},
{"category_id": "4bf58dd8d48988d103951735", "title": "Clothing Store"},
{"category_id": "4bf58dd8d48988d102951735", "title": "Accessories Store"},
{"category_id": "4bf58dd8d48988d104951735", "title": "Boutique"},
{"category_id": "4bf58dd8d48988d105951735", "title": "Kids Store"},
{"category_id": "4bf58dd8d48988d109951735", "title": "Lingerie Store"},
{"category_id": "4bf58dd8d48988d106951735", "title": "Men's Store"},
{"category_id": "4bf58dd8d48988d107951735", "title": "Shoe Store"},
{"category_id": "4bf58dd8d48988d108951735", "title": "Women's Store"},
{"category_id": "52f2ab2ebcbc57f1066b8b18", "title": "Comic Shop"},
{"category_id": "5454144b498ec1f095bff2f2", "title": "Construction & Landscaping"},
{"category_id": "4d954b0ea243a5684a65b473", "title": "Convenience Store"},
{"category_id": "4bf58dd8d48988d10c951735", "title": "Cosmetics Shop"},
{"category_id": "52f2ab2ebcbc57f1066b8b17", "title": "Costume Shop"},
{"category_id": "5032850891d4c4b30a586d62", "title": "Credit Union"},
{"category_id": "5744ccdfe4b0c0459246b4be", "title": "Currency Exchange"},
{"category_id": "4bf58dd8d48988d1f6941735", "title": "Department Store"},
{"category_id": "4bf58dd8d48988d1f4941735", "title": "Design Studio"},
{"category_id": "52dea92d3cf9994f4e043dbb", "title": "Discount Store"},
{"category_id": "52f2ab2ebcbc57f1066b8b1a", "title": "Dive Shop"},
{"category_id": "5745c2e4498e11e7bccabdbd", "title": "Drugstore"},
{"category_id": "52f2ab2ebcbc57f1066b8b1d", "title": "Dry Cleaner"},
{"category_id": "5032872391d4c4b30a586d64", "title": "EV Charging Station"},
{"category_id": "4bf58dd8d48988d122951735", "title": "Electronics Store"},
{"category_id": "56aa371be4b08b9a8d573554", "title": "Entertainment Service"},
{"category_id": "5454152e498ef71e2b9132c6", "title": "Event Service"},
{"category_id": "52f2ab2ebcbc57f1066b8b26", "title": "Fabric Shop"},
{"category_id": "56aa371be4b08b9a8d573523", "title": "Film Studio"},
{"category_id": "503287a291d4c4b30a586d65", "title": "Financial or Legal Service"},
{"category_id": "52f2ab2ebcbc57f1066b8b3a", "title": "Fireworks Store"},
{"category_id": "52f2ab2ebcbc57f1066b8b16", "title": "Fishing Store"},
{"category_id": "4bf58dd8d48988d1f7941735", "title": "Flea Market"},
{"category_id": "56aa371be4b08b9a8d573505", "title": "Floating Market"},
{"category_id": "4bf58dd8d48988d11b951735", "title": "Flower Shop"},
{"category_id": "4bf58dd8d48988d1f9941735", "title": "Food & Drink Shop"},
{"category_id": "5370f356bcbc57f1066c94c2", "title": "Beer Store"},
{"category_id": "4bf58dd8d48988d11d951735", "title": "Butcher"},
{"category_id": "4bf58dd8d48988d11e951735", "title": "Cheese Shop"},
{"category_id": "58daa1558bbb0b01f18ec1ca", "title": "Dairy Store"},
{"category_id": "4bf58dd8d48988d1fa941735", "title": "Farmers Market"},
{"category_id": "4bf58dd8d48988d10e951735", "title": "Fish Market"},
{"category_id": "56aa371be4b08b9a8d573550", "title": "Food Service"},
{"category_id": "4bf58dd8d48988d1f5941735", "title": "Gourmet Shop"},
{"category_id": "4bf58dd8d48988d118951735", "title": "Grocery Store"},
{"category_id": "50aa9e744b90af0d42d5de0e", "title": "Health Food Store"},
{"category_id": "58daa1558bbb0b01f18ec1e8", "title": "Kuruyemi\u015f\u00e7i"},
{"category_id": "4bf58dd8d48988d186941735", "title": "Liquor Store"},
{"category_id": "52f2ab2ebcbc57f1066b8b45", "title": "Organic Grocery"},
{"category_id": "56aa371be4b08b9a8d573564", "title": "Sausage Shop"},
{"category_id": "53e0feef498e5aac066fd8a9", "title": "Street Food Gathering"},
{"category_id": "52f2ab2ebcbc57f1066b8b46", "title": "Supermarket"},
{"category_id": "58daa1558bbb0b01f18ec1e5", "title": "Tur\u015fucu"},
{"category_id": "4bf58dd8d48988d119951735", "title": "Wine Shop"},
{"category_id": "52f2ab2ebcbc57f1066b8b24", "title": "Frame Store"},
{"category_id": "52f2ab2ebcbc57f1066b8b1c", "title": "Fruit & Vegetable Store"},
{"category_id": "4bf58dd8d48988d1f8941735", "title": "Furniture / Home Store"},
{"category_id": "55888a5a498e782e3303b43a", "title": "Lighting Store"},
{"category_id": "4bf58dd8d48988d18d941735", "title": "Gaming Cafe"},
{"category_id": "4eb1c0253b7b52c0e1adc2e9", "title": "Garden Center"},
{"category_id": "4bf58dd8d48988d113951735", "title": "Gas Station"},
{"category_id": "4bf58dd8d48988d128951735", "title": "Gift Shop"},
{"category_id": "52f2ab2ebcbc57f1066b8b19", "title": "Gun Shop"},
{"category_id": "4bf58dd8d48988d112951735", "title": "Hardware Store"},
{"category_id": "54541900498ea6ccd0202697", "title": "Health & Beauty Service"},
{"category_id": "52f2ab2ebcbc57f1066b8b2c", "title": "Herbs & Spices Store"},
{"category_id": "4bf58dd8d48988d1fb941735", "title": "Hobby Shop"},
{"category_id": "545419b1498ea6ccd0202f58", "title": "Home Service"},
{"category_id": "50aaa5234b90af0d42d5de12", "title": "Hunting Supply"},
{"category_id": "52f2ab2ebcbc57f1066b8b36", "title": "IT Services"},
{"category_id": "58daa1558bbb0b01f18ec1f1", "title": "Insurance Office"},
{"category_id": "4bf58dd8d48988d1f0941735", "title": "Internet Cafe"},
{"category_id": "4bf58dd8d48988d111951735", "title": "Jewelry Store"},
{"category_id": "58daa1558bbb0b01f18ec1b4", "title": "Kitchen Supply Store"},
{"category_id": "52f2ab2ebcbc57f1066b8b25", "title": "Knitting Store"},
{"category_id": "52f2ab2ebcbc57f1066b8b33", "title": "Laundromat"},
{"category_id": "4bf58dd8d48988d1fc941735", "title": "Laundry Service"},
{"category_id": "52f2ab2ebcbc57f1066b8b3f", "title": "Lawyer"},
{"category_id": "52f2ab2ebcbc57f1066b8b2b", "title": "Leather Goods Store"},
{"category_id": "52f2ab2ebcbc57f1066b8b1e", "title": "Locksmith"},
{"category_id": "52f2ab2ebcbc57f1066b8b38", "title": "Lottery Retailer"},
{"category_id": "52f2ab2ebcbc57f1066b8b29", "title": "Luggage Store"},
{"category_id": "52c71aaf3cf9994f4e043d17", "title": "Marijuana Dispensary"},
{"category_id": "50be8ee891d4fa8dcc7199a7", "title": "Market"},
{"category_id": "52f2ab2ebcbc57f1066b8b3c", "title": "Massage Studio"},
{"category_id": "52f2ab2ebcbc57f1066b8b27", "title": "Mattress Store"},
{"category_id": "58daa1558bbb0b01f18ec206", "title": "Medical Supply Store"},
{"category_id": "4bf58dd8d48988d1ff941735", "title": "Miscellaneous Shop"},
{"category_id": "4f04afc02fb6e1c99f3db0bc", "title": "Mobile Phone Shop"},
{"category_id": "56aa371be4b08b9a8d57354a", "title": "Mobility Store"},
{"category_id": "5032833091d4c4b30a586d60", "title": "Motorcycle Shop"},
{"category_id": "59d79d6b2e268052fa2a3332", "title": "Motorsports Shop"},
{"category_id": "4bf58dd8d48988d1fe941735", "title": "Music Store"},
{"category_id": "4f04aa0c2fb6e1c99f3db0b8", "title": "Nail Salon"},
{"category_id": "4f04ad622fb6e1c99f3db0b9", "title": "Newsstand"},
{"category_id": "5ae95d208a6f17002ce792b2", "title": "Notary"},
{"category_id": "4d954afda243a5684865b473", "title": "Optical Shop"},
{"category_id": "52f2ab2ebcbc57f1066b8b2f", "title": "Other Repair Shop"},
{"category_id": "52f2ab2ebcbc57f1066b8b22", "title": "Outdoor Supply Store"},
{"category_id": "5744ccdfe4b0c0459246b4df", "title": "Outlet Mall"},
{"category_id": "52f2ab2ebcbc57f1066b8b35", "title": "Outlet Store"},
{"category_id": "4bf58dd8d48988d121951735", "title": "Paper / Office Supplies Store"},
{"category_id": "52f2ab2ebcbc57f1066b8b34", "title": "Pawn Shop"},
{"category_id": "52f2ab2ebcbc57f1066b8b23", "title": "Perfume Shop"},
{"category_id": "5032897c91d4c4b30a586d69", "title": "Pet Service"},
{"category_id": "4bf58dd8d48988d100951735", "title": "Pet Store"},
{"category_id": "4bf58dd8d48988d10f951735", "title": "Pharmacy"},
{"category_id": "4eb1bdde3b7b55596b4a7490", "title": "Photography Lab"},
{"category_id": "554a5e17498efabeda6cc559", "title": "Photography Studio"},
{"category_id": "52f2ab2ebcbc57f1066b8b20", "title": "Piercing Parlor"},
{"category_id": "52f2ab2ebcbc57f1066b8b3d", "title": "Pop-Up Shop"},
{"category_id": "52f2ab2ebcbc57f1066b8b28", "title": "Print Shop"},
{"category_id": "5744ccdfe4b0c0459246b4c4", "title": "Public Bathroom"},
{"category_id": "5032885091d4c4b30a586d66", "title": "Real Estate Office"},
{"category_id": "4bf58dd8d48988d10d951735", "title": "Record Shop"},
{"category_id": "52f2ab2ebcbc57f1066b8b37", "title": "Recording Studio"},
{"category_id": "4f4531084b9074f6e4fb0101", "title": "Recycling Facility"},
{"category_id": "56aa371be4b08b9a8d573552", "title": "Rental Service"},
{"category_id": "4bf58dd8d48988d110951735", "title": "Salon / Barbershop"},
{"category_id": "58daa1558bbb0b01f18ec1ae", "title": "Sauna / Steam Room"},
{"category_id": "52f2ab2ebcbc57f1066b8b1f", "title": "Shipping Store"},
{"category_id": "52f2ab2ebcbc57f1066b8b39", "title": "Shoe Repair"},
{"category_id": "4bf58dd8d48988d1fd941735", "title": "Shopping Mall"},
{"category_id": "5744ccdfe4b0c0459246b4dc", "title": "Shopping Plaza"},
{"category_id": "5bae9231bedf3950379f89d2", "title": "Skate Shop"},
{"category_id": "56aa371be4b08b9a8d573566", "title": "Ski Shop"},
{"category_id": "4bf58dd8d48988d123951735", "title": "Smoke Shop"},
{"category_id": "52f2ab2ebcbc57f1066b8b41", "title": "Smoothie Shop"},
{"category_id": "52f2ab2ebcbc57f1066b8b1b", "title": "Souvenir Shop"},
{"category_id": "4bf58dd8d48988d1ed941735", "title": "Spa"},
{"category_id": "4bf58dd8d48988d1f2941735", "title": "Sporting Goods Shop"},
{"category_id": "52f2ab2ebcbc57f1066b8b21", "title": "Stationery Store"},
{"category_id": "4f04b1572fb6e1c99f3db0bf", "title": "Storage Facility"},
{"category_id": "5744ccdfe4b0c0459246b4cd", "title": "Supplement Shop"},
{"category_id": "5032781d91d4c4b30a586d5b", "title": "Tailor Shop"},
{"category_id": "4d1cf8421a97d635ce361c31", "title": "Tanning Salon"},
{"category_id": "4bf58dd8d48988d1de931735", "title": "Tattoo Parlor"},
{"category_id": "4bf58dd8d48988d101951735", "title": "Thrift / Vintage Store"},
{"category_id": "4bf58dd8d48988d1f3941735", "title": "Toy / Game Store"},
{"category_id": "4f04b08c2fb6e1c99f3db0bd", "title": "Travel Agency"},
{"category_id": "52f2ab2ebcbc57f1066b8b30", "title": "Used Bookstore"},
{"category_id": "56aa371be4b08b9a8d57355c", "title": "Vape Store"},
{"category_id": "4bf58dd8d48988d10b951735", "title": "Video Game Store"},
{"category_id": "4bf58dd8d48988d126951735", "title": "Video Store"},
{"category_id": "52e816a6bcbc57f1066b7a54", "title": "Warehouse Store"},
{"category_id": "52f2ab2ebcbc57f1066b8b2e", "title": "Watch Shop"},
{"category_id": "4d4b7105d754a06379d81259", "title": "Travel & Transport"},
{"category_id": "4bf58dd8d48988d1ed931735", "title": "Airport"},
{"category_id": "4bf58dd8d48988d1ef931735", "title": "Airport Food Court"},
{"category_id": "4bf58dd8d48988d1f0931735", "title": "Airport Gate"},
{"category_id": "4eb1bc533b7b2c5b1d4306cb", "title": "Airport Lounge"},
{"category_id": "56aa371be4b08b9a8d57352f", "title": "Airport Service"},
{"category_id": "4bf58dd8d48988d1eb931735", "title": "Airport Terminal"},
{"category_id": "4bf58dd8d48988d1ec931735", "title": "Airport Tram"},
{"category_id": "5744ccdfe4b0c0459246b4e5", "title": "Baggage Claim"},
{"category_id": "4bf58dd8d48988d1f7931735", "title": "Plane"},
{"category_id": "5744ccdfe4b0c0459246b4e8", "title": "Baggage Locker"},
{"category_id": "4e4c9077bd41f78e849722f9", "title": "Bike Rental / Bike Share"},
{"category_id": "5744ccdfe4b0c0459246b4c1", "title": "Boat Rental"},
{"category_id": "4bf58dd8d48988d12d951735", "title": "Boat or Ferry"},
{"category_id": "52f2ab2ebcbc57f1066b8b4b", "title": "Border Crossing"},
{"category_id": "4bf58dd8d48988d1fe931735", "title": "Bus Station"},
{"category_id": "4bf58dd8d48988d12b951735", "title": "Bus Line"},
{"category_id": "52f2ab2ebcbc57f1066b8b4f", "title": "Bus Stop"},
{"category_id": "52f2ab2ebcbc57f1066b8b50", "title": "Cable Car"},
{"category_id": "55077a22498e5e9248869ba2", "title": "Cruise"},
{"category_id": "589ddde98ae3635c072819ee", "title": "Duty-free Shop"},
{"category_id": "4bf58dd8d48988d1f6931735", "title": "General Travel"},
{"category_id": "56aa371ce4b08b9a8d57356e", "title": "Heliport"},
{"category_id": "4bf58dd8d48988d1fa931735", "title": "Hotel"},
{"category_id": "4bf58dd8d48988d1f8931735", "title": "Bed & Breakfast"},
{"category_id": "4f4530a74b9074f6e4fb0100", "title": "Boarding House"},
{"category_id": "4bf58dd8d48988d1ee931735", "title": "Hostel"},
{"category_id": "4bf58dd8d48988d132951735", "title": "Hotel Pool"},
{"category_id": "5bae9231bedf3950379f89cb", "title": "Inn"},
{"category_id": "4bf58dd8d48988d1fb931735", "title": "Motel"},
{"category_id": "4bf58dd8d48988d12f951735", "title": "Resort"},
{"category_id": "56aa371be4b08b9a8d5734e1", "title": "Vacation Rental"},
{"category_id": "52f2ab2ebcbc57f1066b8b4c", "title": "Intersection"},
{"category_id": "4bf58dd8d48988d1fc931735", "title": "Light Rail Station"},
{"category_id": "4bf58dd8d48988d1fd931735", "title": "Metro Station"},
{"category_id": "4f2a23984b9023bd5841ed2c", "title": "Moving Target"},
{"category_id": "4e74f6cabd41c4836eac4c31", "title": "Pier"},
{"category_id": "56aa371be4b08b9a8d57353e", "title": "Port"},
{"category_id": "52f2ab2ebcbc57f1066b8b53", "title": "RV Park"},
{"category_id": "4bf58dd8d48988d1ef941735", "title": "Rental Car Location"},
{"category_id": "4d954b16a243a5684b65b473", "title": "Rest Area"},
{"category_id": "4bf58dd8d48988d1f9931735", "title": "Road"},
{"category_id": "53fca564498e1a175f32528b", "title": "Taxi Stand"},
{"category_id": "4bf58dd8d48988d130951735", "title": "Taxi"},
{"category_id": "52f2ab2ebcbc57f1066b8b4d", "title": "Toll Booth"},
{"category_id": "52f2ab2ebcbc57f1066b8b4e", "title": "Toll Plaza"},
{"category_id": "4f4530164b9074f6e4fb00ff", "title": "Tourist Information Center"},
{"category_id": "4bf58dd8d48988d129951735", "title": "Train Station"},
{"category_id": "4f4531504b9074f6e4fb0102", "title": "Platform"},
{"category_id": "4bf58dd8d48988d12a951735", "title": "Train"},
{"category_id": "52f2ab2ebcbc57f1066b8b51", "title": "Tram Station"},
{"category_id": "54541b70498ea6ccd0204bff", "title": "Transportation Service"},
{"category_id": "4f04b25d2fb6e1c99f3db0c0", "title": "Travel Lounge"},
{"category_id": "52f2ab2ebcbc57f1066b8b4a", "title": "Tunnel"}];