-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdata.go
More file actions
936 lines (933 loc) · 119 KB
/
Copy pathdata.go
File metadata and controls
936 lines (933 loc) · 119 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
package mcccodes
// Code generated from Merchant-Category-Codes.pdf; DO NOT EDIT.
var categoryRanges = []Category{
{Name: "Agricultural Services", Start: "0001", End: "1499"},
{Name: "Contracted Services", Start: "1500", End: "2999"},
{Name: "Airlines", Start: "3000", End: "3299"},
{Name: "Car Rental", Start: "3300", End: "3499"},
{Name: "Lodging", Start: "3500", End: "3999"},
{Name: "Transportation Services", Start: "4000", End: "4799"},
{Name: "Utility Services", Start: "4800", End: "4999"},
{Name: "Retail Outlet Services", Start: "5000", End: "5599"},
{Name: "Clothing Stores", Start: "5600", End: "5699"},
{Name: "Miscellaneous Stores", Start: "5700", End: "7299"},
{Name: "Business Services", Start: "7300", End: "7999"},
{Name: "Professional Services and Membership Organizations", Start: "8000", End: "8999"},
{Name: "Government Services", Start: "9000", End: "9999"},
}
var mccCodes = []MCC{
{Code: "0742", Description: "Veterinary Services", Category: "Agricultural Services", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "0763", Description: "Agricultural Cooperatives", Category: "Agricultural Services", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "0780", Description: "Horticultural and Landscaping Services", Category: "Agricultural Services", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "1520", Description: "General Contractors-Residential and Commercial", Category: "Contracted Services", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "1711", Description: "Air Conditioning, Heating and Plumbing Contractors", Category: "Contracted Services", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "1731", Description: "Electrical Contractors", Category: "Contracted Services", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "1740", Description: "Insulation, Masonry, Plastering, Stonework and Tile Setting Contractors", Category: "Contracted Services", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "1750", Description: "Carpentry Contractors", Category: "Contracted Services", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "1761", Description: "Roofing and Siding, Sheet Metal Work Contractors", Category: "Contracted Services", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "1771", Description: "Concrete Work Contractors", Category: "Contracted Services", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "1799", Description: "Contractors, Special Trade Contractors-not elsewhere classified", Category: "Contracted Services", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "2741", Description: "Miscellaneous Publishing and Printing", Category: "Contracted Services", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "2791", Description: "Typesetting, Plate Making and Related Services", Category: "Contracted Services", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "2842", Description: "Sanitation, Polishing and Specialty Cleaning Preparations", Category: "Contracted Services", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3000", Description: "United Airlines", Category: "Airlines", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3001", Description: "American Airlines", Category: "Airlines", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3002", Description: "Pan American", Category: "Airlines", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3003", Description: "Eurofly", Category: "Airlines", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3004", Description: "Dragon Airlines", Category: "Airlines", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3005", Description: "British Airways", Category: "Airlines", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3006", Description: "Japan Air Lines", Category: "Airlines", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3007", Description: "Air France", Category: "Airlines", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3008", Description: "Lufthansa German Airlines", Category: "Airlines", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3009", Description: "Air Canada", Category: "Airlines", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3010", Description: "Royal Dutch Airlines (KLM Airlines)", Category: "Airlines", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3011", Description: "Aeroflot", Category: "Airlines", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3012", Description: "Qantas", Category: "Airlines", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3013", Description: "Alitalia", Category: "Airlines", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3014", Description: "Saudi Arabian Airlines", Category: "Airlines", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3015", Description: "Swiss International Air Lines", Category: "Airlines", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3016", Description: "Scandinavian Airline System (SAS)", Category: "Airlines", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3017", Description: "South African Airways", Category: "Airlines", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3018", Description: "Varig", Category: "Airlines", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3019", Description: "Germanwings", Category: "Airlines", PaymentBrands: []PaymentBrand{TSYS}},
{Code: "3020", Description: "Air India", Category: "Airlines", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3021", Description: "Air Algerie", Category: "Airlines", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3022", Description: "Philippine Airlines", Category: "Airlines", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3023", Description: "Mexicana", Category: "Airlines", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3024", Description: "Pakistan International", Category: "Airlines", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3025", Description: "Air New Zealand Ltd. International", Category: "Airlines", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3026", Description: "Emirates Airlines", Category: "Airlines", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3027", Description: "Union De Transports Aeriens (UTA/interair)", Category: "Airlines", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3028", Description: "Air Malta", Category: "Airlines", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3029", Description: "SN Brussels Airlines", Category: "Airlines", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3030", Description: "Aerolineas Argentinas", Category: "Airlines", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3031", Description: "Olympic Airways", Category: "Airlines", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3032", Description: "El Al", Category: "Airlines", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3033", Description: "Ansett Airlines", Category: "Airlines", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3034", Description: "Etihadair", Category: "Airlines", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3035", Description: "TAP Air Portugal (TAP)", Category: "Airlines", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3036", Description: "Viacao Aerea Sao P\u00e3ulo (VASP)", Category: "Airlines", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3037", Description: "Egyptair", Category: "Airlines", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3038", Description: "Kuwait Airways", Category: "Airlines", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3039", Description: "Avianca", Category: "Airlines", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3040", Description: "Gulf Air (Bahrain)", Category: "Airlines", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3041", Description: "Balkan-Bulgarian Airlines", Category: "Airlines", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3042", Description: "Finnair", Category: "Airlines", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3043", Description: "Aer Lingus", Category: "Airlines", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3044", Description: "Air Lanka", Category: "Airlines", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3045", Description: "Nigeria Airways", Category: "Airlines", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3046", Description: "Cruzeiro Do Sul", Category: "Airlines", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3047", Description: "Turk Hava Yollari", Category: "Airlines", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3048", Description: "Royal Air Maroc", Category: "Airlines", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3049", Description: "Tunis Air", Category: "Airlines", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3050", Description: "Icelandair", Category: "Airlines", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3051", Description: "Austrian Airlines", Category: "Airlines", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3052", Description: "LAN Airlines", Category: "Airlines", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3053", Description: "Aviacion Y Comercio (AVIACO)", Category: "Airlines", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3054", Description: "Linea Aerea Del Cobre (LADECO)", Category: "Airlines", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3055", Description: "Lloyd Aero Boliviano (LAB)", Category: "Airlines", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3056", Description: "Jet Airways", Category: "Airlines", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3057", Description: "Virgin America", Category: "Airlines", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3058", Description: "Delta", Category: "Airlines", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3059", Description: "DBA Airline", Category: "Airlines", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3060", Description: "Northwest Airlines", Category: "Airlines", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3061", Description: "Continental", Category: "Airlines", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3062", Description: "Hapag-Lloyd Express", Category: "Airlines", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3063", Description: "US Airways", Category: "Airlines", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3064", Description: "Adria Airways", Category: "Airlines", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3065", Description: "Airinter", Category: "Airlines", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3066", Description: "Southwest Airlines", Category: "Airlines", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3067", Description: "Vanguard Airlines", Category: "Airlines", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3068", Description: "Air Astana", Category: "Airlines", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3069", Description: "Sun Country Airlines", Category: "Airlines", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3071", Description: "Air British Columbia", Category: "Airlines", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3072", Description: "Cebu Pacific Airlines", Category: "Airlines", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3075", Description: "Singapore Airlines", Category: "Airlines", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3076", Description: "Aeromexico", Category: "Airlines", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3077", Description: "Thai Airways", Category: "Airlines", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3078", Description: "China Airlines", Category: "Airlines", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3079", Description: "Jetstar Airways", Category: "Airlines", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3081", Description: "NordAir", Category: "Airlines", PaymentBrands: []PaymentBrand{TSYS}},
{Code: "3082", Description: "Korean Airlines", Category: "Airlines", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3083", Description: "Air Afrique", Category: "Airlines", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3084", Description: "Eva Airways", Category: "Airlines", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3085", Description: "Midwest Express Airlines", Category: "Airlines", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3086", Description: "Carnival Airlines", Category: "Airlines", PaymentBrands: []PaymentBrand{Visa}},
{Code: "3087", Description: "Metro Airlines", Category: "Airlines", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3088", Description: "Croatia Air", Category: "Airlines", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3089", Description: "Transaero", Category: "Airlines", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3090", Description: "Uni Airways Corporation", Category: "Airlines", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3094", Description: "Zambia Airways", Category: "Airlines", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3096", Description: "Air Zimbabwe Corp", Category: "Airlines", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3097", Description: "Spanair", Category: "Airlines", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3098", Description: "Asiana Airlines", Category: "Airlines", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3099", Description: "Cathay Pacific", Category: "Airlines", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3100", Description: "Malaysian Airline System", Category: "Airlines", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3102", Description: "Iberia", Category: "Airlines", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3103", Description: "Garuda", Category: "Airlines", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3106", Description: "Braathens S.A.F.E.", Category: "Airlines", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3110", Description: "Wings Airways", Category: "Airlines", PaymentBrands: []PaymentBrand{Visa}},
{Code: "3111", Description: "British Midland", Category: "Airlines", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3112", Description: "Windward Island", Category: "Airlines", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3115", Description: "Tower Air", Category: "Airlines", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3117", Description: "Venezolana International De Aviacion", Category: "Airlines", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3118", Description: "Valley Airlines", Category: "Airlines", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3125", Description: "Tan Sahsa", Category: "Airlines", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3126", Description: "Talair PTY Ltd.", Category: "Airlines", PaymentBrands: []PaymentBrand{Visa}},
{Code: "3127", Description: "Taca International", Category: "Airlines", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3129", Description: "Surinam Airways", Category: "Airlines", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3130", Description: "Sunworld International", Category: "Airlines", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3131", Description: "VLM Airlines", Category: "Airlines", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3132", Description: "Frontier Airlines", Category: "Airlines", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3133", Description: "Sunbelt Airlines", Category: "Airlines", PaymentBrands: []PaymentBrand{Visa}},
{Code: "3135", Description: "Sudan Airways", Category: "Airlines", PaymentBrands: []PaymentBrand{Visa}},
{Code: "3136", Description: "Qatar Airways", Category: "Airlines", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3137", Description: "Singleton", Category: "Airlines", PaymentBrands: []PaymentBrand{Visa}},
{Code: "3138", Description: "Simmons Airlines", Category: "Airlines", PaymentBrands: []PaymentBrand{Visa}},
{Code: "3143", Description: "Scenic Airlines", Category: "Airlines", PaymentBrands: []PaymentBrand{Visa}},
{Code: "3144", Description: "Virgin Atlantic", Category: "Airlines", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3145", Description: "San Juan", Category: "Airlines", PaymentBrands: []PaymentBrand{Visa}},
{Code: "3146", Description: "Luxair", Category: "Airlines", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3148", Description: "Air Littoral S.A.", Category: "Airlines", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3151", Description: "Air Zaire", Category: "Airlines", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3154", Description: "Princeville", Category: "Airlines", PaymentBrands: []PaymentBrand{Visa}},
{Code: "3156", Description: "Go Fly Ltd.", Category: "Airlines", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3159", Description: "Provincetown-Boston Airways", Category: "Airlines", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3161", Description: "All Nipon Airways", Category: "Airlines", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3164", Description: "Norontair", Category: "Airlines", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3165", Description: "New York Helicopter", Category: "Airlines", PaymentBrands: []PaymentBrand{Visa}},
{Code: "3167", Description: "Aero Continente", Category: "Airlines", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3170", Description: "Mount Cook", Category: "Airlines", PaymentBrands: []PaymentBrand{Visa}},
{Code: "3171", Description: "Canadian Airlines International", Category: "Airlines", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3172", Description: "Nationair", Category: "Airlines", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3174", Description: "Jetblue Airways", Category: "Airlines", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3175", Description: "Middle East Air", Category: "Airlines", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3176", Description: "Metroflight Airlines", Category: "Airlines", PaymentBrands: []PaymentBrand{Visa}},
{Code: "3177", Description: "AirTran Airways", Category: "Airlines", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3178", Description: "Mesa Air", Category: "Airlines", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3180", Description: "Westjet Airlines", Category: "Airlines", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3181", Description: "Malev", Category: "Airlines", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3182", Description: "LOT (Polish Airlines)", Category: "Airlines", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3183", Description: "Oman Air", Category: "Airlines", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3184", Description: "LIAT", Category: "Airlines", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3185", Description: "Linea Aeropostal Venezolana (LAV)", Category: "Airlines", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3186", Description: "Lineas Aereas Paraguayas (LAP)", Category: "Airlines", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3187", Description: "LACSA (Costa Rica)", Category: "Airlines", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3188", Description: "Virgin Express", Category: "Airlines", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3190", Description: "Jugoslav Air", Category: "Airlines", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3191", Description: "Island Airlines", Category: "Airlines", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3193", Description: "Indian Airlines", Category: "Airlines", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3196", Description: "Hawaiian Air", Category: "Airlines", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3197", Description: "Havasu Airlines", Category: "Airlines", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3200", Description: "Guyana Airways", Category: "Airlines", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3203", Description: "Golden Pacific Air", Category: "Airlines", PaymentBrands: []PaymentBrand{Visa}},
{Code: "3204", Description: "Freedom Airlines", Category: "Airlines", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3206", Description: "China Eastern Airlines", Category: "Airlines", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3211", Description: "Norwegian Air Shuttle", Category: "Airlines", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3212", Description: "Dominicana De Aviacion", Category: "Airlines", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3213", Description: "Malmo Aviation", Category: "Airlines", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3215", Description: "Dan Air Services", Category: "Airlines", PaymentBrands: []PaymentBrand{Visa}},
{Code: "3216", Description: "Cumberland Airlines", Category: "Airlines", PaymentBrands: []PaymentBrand{Visa}},
{Code: "3217", Description: "Ceskoslovenske Aerolinie (CSA)", Category: "Airlines", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3218", Description: "Crown Air", Category: "Airlines", PaymentBrands: []PaymentBrand{Visa}},
{Code: "3219", Description: "Compania Panamena De Aviacion (COPA)", Category: "Airlines", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3220", Description: "Compania Faucett", Category: "Airlines", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3221", Description: "Transportes Aeros Militares", Category: "Airlines", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3222", Description: "Command Airways", Category: "Airlines", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3223", Description: "Comair", Category: "Airlines", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3226", Description: "Skyways", Category: "Airlines", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3228", Description: "Cayman Airways", Category: "Airlines", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3229", Description: "SA De Transportes Aereos)", Category: "Airlines", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3231", Description: "SAHSA (Servicio Aero De Honduras)", Category: "Airlines", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3233", Description: "Capitol Air", Category: "Airlines", PaymentBrands: []PaymentBrand{Visa}},
{Code: "3234", Description: "Caribbean Airlines", Category: "Airlines", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3235", Description: "Brockway Air", Category: "Airlines", PaymentBrands: []PaymentBrand{Visa}},
{Code: "3236", Description: "Air Arabia Airline", Category: "Airlines", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3238", Description: "Bemidji Aviation", Category: "Airlines", PaymentBrands: []PaymentBrand{Visa}},
{Code: "3239", Description: "Bar Harbor Airlines", Category: "Airlines", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3240", Description: "Bahamasair", Category: "Airlines", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3241", Description: "Aviateca", Category: "Airlines", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3242", Description: "Avensa", Category: "Airlines", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3243", Description: "Austrian Air Service", Category: "Airlines", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3245", Description: "Easyjet Air", Category: "Airlines", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3246", Description: "Ryanair", Category: "Airlines", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3247", Description: "Gol Airlines", Category: "Airlines", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3248", Description: "Tam Airlines", Category: "Airlines", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3251", Description: "Aloha Airlines", Category: "Airlines", PaymentBrands: []PaymentBrand{Visa}},
{Code: "3252", Description: "Antilean Airlines (ALM)", Category: "Airlines", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3253", Description: "America West", Category: "Airlines", PaymentBrands: []PaymentBrand{Mastercard}},
{Code: "3254", Description: "U.S. Air Shuttle", Category: "Airlines", PaymentBrands: []PaymentBrand{Visa}},
{Code: "3256", Description: "Alaska Airlines Inc.", Category: "Airlines", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3259", Description: "American Trans Air", Category: "Airlines", PaymentBrands: []PaymentBrand{Visa}},
{Code: "3260", Description: "Spirit Airlines", Category: "Airlines", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3261", Description: "Air China", Category: "Airlines", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3262", Description: "Reno Air", Category: "Airlines", PaymentBrands: []PaymentBrand{Visa}},
{Code: "3263", Description: "Aero Servicio Carabobo", Category: "Airlines", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3266", Description: "Air Seychelles", Category: "Airlines", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3267", Description: "Air Panama International", Category: "Airlines", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3273", Description: "Rica Hotels", Category: "Airlines", PaymentBrands: []PaymentBrand{TSYS}},
{Code: "3274", Description: "Inter Nor Hotels", Category: "Airlines", PaymentBrands: []PaymentBrand{TSYS}},
{Code: "3280", Description: "Air Jamaica", Category: "Airlines", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3281", Description: "Air Djibouti", Category: "Airlines", PaymentBrands: []PaymentBrand{TSYS}},
{Code: "3282", Description: "Air Djibouti", Category: "Airlines", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3284", Description: "Aero Virgin Islands", Category: "Airlines", PaymentBrands: []PaymentBrand{Visa}},
{Code: "3285", Description: "Aero Peru", Category: "Airlines", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3286", Description: "Aero Nicaraguensis", Category: "Airlines", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3287", Description: "Aero Coach Aviation", Category: "Airlines", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3292", Description: "Cyprus Airways", Category: "Airlines", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3293", Description: "Ecuatoriana", Category: "Airlines", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3294", Description: "Ethiopian Airlines", Category: "Airlines", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3295", Description: "Kenya Airways", Category: "Airlines", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3296", Description: "Air Berlin", Category: "Airlines", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3297", Description: "Tarom Romanian Air Transport", Category: "Airlines", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3298", Description: "Air Mauritius", Category: "Airlines", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3299", Description: "Wideroes Flyveselskap", Category: "Airlines", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3351", Description: "Affiliated Auto Rental", Category: "Car Rental", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3352", Description: "American International", Category: "Car Rental", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3353", Description: "Brooks Rent-A-Car", Category: "Car Rental", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3354", Description: "Action Auto Rental", Category: "Car Rental", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3355", Description: "Sixt Car Rental", Category: "Car Rental", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3357", Description: "Hertz", Category: "Car Rental", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3359", Description: "Payless Car Rental", Category: "Car Rental", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3360", Description: "Snappy Car Rental", Category: "Car Rental", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3361", Description: "Airways", Category: "Car Rental", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3362", Description: "Altra Auto Rental", Category: "Car Rental", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3364", Description: "Agency Rent-A-Car", Category: "Car Rental", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3366", Description: "Budget Rent-A-Car", Category: "Car Rental", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3368", Description: "Holiday Rent-A-Car", Category: "Car Rental", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3370", Description: "Rent-A-Wreck", Category: "Car Rental", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3374", Description: "Accent Rent-A-Car", Category: "Car Rental", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3376", Description: "Ajax Rent-A-Car", Category: "Car Rental", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3380", Description: "Triangle Rent-A-Car", Category: "Car Rental", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3381", Description: "Europcar", Category: "Car Rental", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3385", Description: "Tropical Rent-A-Car", Category: "Car Rental", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3386", Description: "Showcase Rental Cars", Category: "Car Rental", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3387", Description: "Alamo Rent-A-Car", Category: "Car Rental", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3388", Description: "Merchants Rent-A-Car", Category: "Car Rental", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3389", Description: "Avis Rent-A-Car", Category: "Car Rental", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3390", Description: "Dollar Rent-A-Car", Category: "Car Rental", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3391", Description: "Europe By Car", Category: "Car Rental", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3393", Description: "National Car Rental", Category: "Car Rental", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3394", Description: "Kemwell Group", Category: "Car Rental", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3395", Description: "Thrifty Car Rental", Category: "Car Rental", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3396", Description: "Tilden Rent-A-Car", Category: "Car Rental", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3398", Description: "Econo-Car Rent-A-Car", Category: "Car Rental", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3400", Description: "Auto Host Rental Cars", Category: "Car Rental", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3405", Description: "Enterprise Rent-A-Car", Category: "Car Rental", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3409", Description: "General Rent-A-Car", Category: "Car Rental", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3412", Description: "A1 Rent-A-Car", Category: "Car Rental", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3414", Description: "Godfrey National", Category: "Car Rental", PaymentBrands: []PaymentBrand{Visa}},
{Code: "3420", Description: "Ansa International", Category: "Car Rental", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3421", Description: "Allstate", Category: "Car Rental", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3423", Description: "AVCAR", Category: "Car Rental", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3425", Description: "Automate", Category: "Car Rental", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3427", Description: "Avon Rent-A-Car", Category: "Car Rental", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3428", Description: "Carey", Category: "Car Rental", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3429", Description: "Insurance Rent-A-Car", Category: "Car Rental", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3430", Description: "Major Rent-A-Car", Category: "Car Rental", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3431", Description: "Replacement Rent-A-Car", Category: "Car Rental", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3432", Description: "Reserve Rent-A-Car", Category: "Car Rental", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3433", Description: "Ugly Duckling Rent-A-Car", Category: "Car Rental", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3434", Description: "USA", Category: "Car Rental", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3435", Description: "Value Rent-A-Car", Category: "Car Rental", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3436", Description: "Autohansa", Category: "Car Rental", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3437", Description: "Cite", Category: "Car Rental", PaymentBrands: []PaymentBrand{Visa}},
{Code: "3438", Description: "Interent", Category: "Car Rental", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3439", Description: "Milleville", Category: "Car Rental", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3441", Description: "Advantage Rent A Car", Category: "Car Rental", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3501", Description: "Holiday Inns", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3502", Description: "Best Western", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3503", Description: "Sheraton", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3504", Description: "Hilton", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3505", Description: "Trusthouse Forte", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3506", Description: "Golden Tulip", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3507", Description: "Friendship Inns International", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3508", Description: "Quality International", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3509", Description: "Marriott", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3510", Description: "Days Inns Of America", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3511", Description: "Arabella Hotels", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3512", Description: "Intercontinental", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3513", Description: "Westin Hotels", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3514", Description: "Amerisuites", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3515", Description: "Rodeway Inns International", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3516", Description: "La Quinta Motor Inns", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3517", Description: "Americana Hotels Corporation", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3518", Description: "Sol Hotels", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3519", Description: "PLM/", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3520", Description: "Meridien", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3521", Description: "Crest Hotels", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3522", Description: "Tokyo Group", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3523", Description: "Peninsula Hotels", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3524", Description: "Welcomgroup", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3525", Description: "Dunfey Hotels", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3526", Description: "Prince Hotels", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3527", Description: "Downtowner Passport", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3528", Description: "Thunderbird/Red Lion", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3529", Description: "CP (Canadian Pacific)", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3530", Description: "Renaissance Hotels", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3531", Description: "Kauai Coconut Beach Resort", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3532", Description: "Royal Kona Resort", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3533", Description: "Park Inn by Radisson", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3534", Description: "Southern Pacific Hotel", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3535", Description: "Hilton International", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3536", Description: "AMFAC Hotels", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3537", Description: "Ana Hotels", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3538", Description: "Concorde Hotels", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3539", Description: "Summerfield Suites Hotel", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3540", Description: "Iberotel", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3541", Description: "Hotel Okura", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3542", Description: "Royal Hotels", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3543", Description: "Four Seasons", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3544", Description: "Cigahotels", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3545", Description: "Shangri-La International", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3546", Description: "Hotel Sierra", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3547", Description: "Breakers Resort", Category: "Lodging", PaymentBrands: []PaymentBrand{Mastercard}},
{Code: "3548", Description: "Hotels Melia", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3549", Description: "Auberge Des Governeurs", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3550", Description: "Regal 8 Inns", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3551", Description: "Mirage Hotel and Casino", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3552", Description: "Coast Hotels", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3553", Description: "Parks Inns International", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3554", Description: "Pinehurst Resort", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3555", Description: "Treasure Island Hotel and Casino", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3556", Description: "Barton Creek Resort", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3557", Description: "Manhattan East Suite Hotels", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3558", Description: "Jolly Hotels", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3559", Description: "Candlewood Suites", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3560", Description: "Aladdin Resort and Casino", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3561", Description: "Golden Nugget", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3562", Description: "Comfort Hotel International", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3563", Description: "Journeys End Motels", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3564", Description: "Sams Town Hotel and Casino", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3565", Description: "Relax Inns", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3566", Description: "Garden Place Hotel", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3567", Description: "Soho Grand Hotel", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3568", Description: "Ladbroke Hotels", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3569", Description: "Tribeca Grand Hotel", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3570", Description: "Grand Met Forum Hotels", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3571", Description: "Grand Wailea Resort", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3572", Description: "Miyako Hotel/Kintetsu", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3573", Description: "Sandman Hotels", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3574", Description: "Venture Inn", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3575", Description: "Vagabond Hotels", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3576", Description: "La Quinta Resort", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3577", Description: "Mandarin International", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3578", Description: "Frankenmuth Bavarian", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3579", Description: "Hotel Mercure", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3580", Description: "Hotel Del Coronado", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3581", Description: "Delta Hotels", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3582", Description: "California Hotel and Casino", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3583", Description: "Radisson BLU", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3584", Description: "Princess Hotels International", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3585", Description: "Hungar Hotels", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3586", Description: "Sokos Hotel", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3587", Description: "Doral Hotels", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3588", Description: "Helmsley Hotels", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3589", Description: "Doral Golf Resort", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3590", Description: "Fairmont Hotels Corporation", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3591", Description: "Sonesta International Hotels", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3592", Description: "Omni International", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3593", Description: "Cunard Hotels", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3594", Description: "Arizona Biltmore", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3595", Description: "Hospitality Inns", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3596", Description: "Wynn Las Vegas", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3597", Description: "Riverside Resort and Casino", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3598", Description: "Regent Hotels", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3599", Description: "Pannonia Hotels", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3600", Description: "Saddlebrook Resort-Tampa", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3601", Description: "Tradewinds Resort", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3602", Description: "Hudson Hotel", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3603", Description: "Noahs Hotel (Melbourne)", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3604", Description: "Hilton Garden Inn", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3605", Description: "Jurys Doyle Hotel Group", Category: "Lodging", PaymentBrands: []PaymentBrand{Mastercard}},
{Code: "3606", Description: "Jefferson Hotel", Category: "Lodging", PaymentBrands: []PaymentBrand{Mastercard}},
{Code: "3607", Description: "Fontainebleau Resort", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3608", Description: "Gaylord Opryland", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3609", Description: "Gaylord Palms", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3610", Description: "Gaylord Texan", Category: "Lodging", PaymentBrands: []PaymentBrand{Mastercard}},
{Code: "3611", Description: "C MON INN", Category: "Lodging", PaymentBrands: []PaymentBrand{Mastercard}},
{Code: "3612", Description: "Moevenpick", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3613", Description: "Microtel Inn and Suites", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3614", Description: "AmericInn", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3615", Description: "Travelodge Motels", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3616", Description: "Hermitage Hotels", Category: "Lodging", PaymentBrands: []PaymentBrand{Mastercard}},
{Code: "3617", Description: "America's Best Value Inn", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3618", Description: "Great Wolf", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3619", Description: "Aloft", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3620", Description: "Binions Horseshoe Club", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3621", Description: "Extended Stay", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3622", Description: "Merlin Hotel (Perth)", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3623", Description: "Dorint Hotels", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3624", Description: "Lady Luck Hotel and Casino", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3625", Description: "Hotel Universal", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3626", Description: "Studio Plus", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3627", Description: "Extended Stay America", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3628", Description: "Excalibur Hotel and Casino", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3629", Description: "Dan Hotels", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3630", Description: "Extended Stay Deluxe", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3631", Description: "Sleep Inn", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3632", Description: "The Phoenician", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3633", Description: "Rank Hotels", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3634", Description: "Swissotel", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3635", Description: "Reso Hotels", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3636", Description: "Sarova Hotels", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3637", Description: "Ramada Inns", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3638", Description: "Howard Johnson", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3639", Description: "Mount Charlotte Hotels", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3640", Description: "Hyatt Hotels/International", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3641", Description: "Sofitel Hotels", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3642", Description: "Novotel Sieh (Accor)", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3643", Description: "Steigenberger", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3644", Description: "Econo-Travel Motor Hotel", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3645", Description: "Queens Moat Houses", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3646", Description: "Swallow Hotels", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3647", Description: "Grupo Hotels HUSA SA", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3648", Description: "De Vere Hotels", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3649", Description: "Radisson", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3650", Description: "Red Roof Inns", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3651", Description: "Imperial London Hotels", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3652", Description: "Embassy Hotels", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3653", Description: "Penta Hotels", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3654", Description: "Loews Hotels", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3655", Description: "Scandic Hotels", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3656", Description: "Sara Hotels", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3657", Description: "Oberoi Hotels", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3658", Description: "New Otani Hotels", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3659", Description: "Taj Hotels Intl", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3660", Description: "Knights Inn", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3661", Description: "Metropole Hotels", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3662", Description: "Circus Circus Hotel and Casino", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3663", Description: "Hoteles El Presidente", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3664", Description: "Flag Inns", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3665", Description: "Hampton Inns", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3666", Description: "Stakis Hotels", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3667", Description: "Luxor Hotel and Casino", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3668", Description: "Maritim", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3669", Description: "Eldorado Hotel and Casino", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3670", Description: "Arcade", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3671", Description: "Arctia", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3672", Description: "Campanile", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3673", Description: "Ibusz Hotels", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3674", Description: "Rantasipi Hotels", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3675", Description: "Interhotel Cedok", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3676", Description: "Monte Carlo Hotel and Casino", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3677", Description: "Climat De France", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3678", Description: "Cumulus Hotels", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3679", Description: "Silver Legacy Hotel and Casino", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3680", Description: "Hoteis Othan", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3681", Description: "Adams Mark", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3682", Description: "Sahara Hotel and Casino", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3683", Description: "Bradbury Suites", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3684", Description: "Budget Host Inns", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3685", Description: "Budgetel", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3686", Description: "Suisse Chalet", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3687", Description: "Clarion Hotel", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3688", Description: "Compri Hotel", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3689", Description: "Consort", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3690", Description: "Courtyard by Marriott", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3691", Description: "Dillon Inn", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3692", Description: "Doubletree", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3693", Description: "Drury Inn", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3694", Description: "Economy Inns Of America", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3695", Description: "Embassy Suites", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3696", Description: "Excel Inn", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3697", Description: "Fairfield Hotel", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3698", Description: "Harley Hotel", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3699", Description: "Midway Motor Lodge", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3700", Description: "Motel 6", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3701", Description: "La Mansion Del Rio", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3702", Description: "Registry Hotels", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3703", Description: "Residence Inn", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3704", Description: "Royce Hotel", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3705", Description: "Sandman Inn", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3706", Description: "Shilo Inn", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3707", Description: "Shoneys Inn", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3708", Description: "Virgin River Hotel and Casino", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3709", Description: "Super 8 Motel", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3710", Description: "Ritz-Carlton", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3711", Description: "Flag Inns (Australia)", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3712", Description: "Buffalo Bills Hotel and Casino", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3713", Description: "Quality Pacific Hotel", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3714", Description: "Four Seasons (Australia)", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3715", Description: "Fairfield Inn", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3716", Description: "Carlton Hotels", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3717", Description: "City Lodge Hotels", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3718", Description: "Karos Hotels", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3719", Description: "Protea Hotels", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3720", Description: "Southern Sun Hotels", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3721", Description: "Conrad Hotels", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3722", Description: "Wyndham", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3723", Description: "Rica Hotels", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3724", Description: "Inter Nor Hotels", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3725", Description: "Sea Pines Resort", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3726", Description: "Rio Suites", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3727", Description: "Broadmoor Hotel", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3728", Description: "Ballys Hotel and Casino", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3729", Description: "John Ascuagas Nugget", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3730", Description: "MGM Grand Hotel", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3731", Description: "Harrah's Hotels and Casinos", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3732", Description: "Opryland Hotel", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3733", Description: "Boca Raton Resort", Category: "Lodging", PaymentBrands: []PaymentBrand{Mastercard}},
{Code: "3734", Description: "Harvey Bristol Hotels", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3735", Description: "Masters Economy Inns", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3736", Description: "Colorado Belle Edgewater Resort", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3737", Description: "Riviera Hotel and Casino", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3738", Description: "Tropicana Resort and Casino", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3739", Description: "Woodside Hotels and Resorts", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3740", Description: "Towneplace Suites", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3741", Description: "Millennium Broadway Hotel", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3742", Description: "Club Med", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3743", Description: "Biltmore Hotel and Suites", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3744", Description: "Carefree Resorts", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3745", Description: "St. Regis Hotel", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3746", Description: "The Eliot Hotel", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3747", Description: "Club Corporation/Club Resorts", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3748", Description: "Wellesley Inns", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3749", Description: "Beverly Hills Hotel", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3750", Description: "Crowne Plaza Hotels", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3751", Description: "Homewood Suites", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3752", Description: "Peabody Hotels", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3753", Description: "Greenbriar Resorts", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3754", Description: "Amelia Island Plantation", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3755", Description: "Homestead", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3757", Description: "Canyon Ranch", Category: "Lodging", PaymentBrands: []PaymentBrand{TSYS}},
{Code: "3758", Description: "Kahala Mandarin Oriental Hotel", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3759", Description: "Orchid At Mauna Lai", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3760", Description: "Halekulani Hotel/Waikiki Parc", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3761", Description: "Primadonna Hotel and Casino", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3762", Description: "Whiskey Pete's Hotel and Casino", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3763", Description: "Chateau Elan Winery and Resort", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3764", Description: "Beau Rivage Hotel and Casino", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3765", Description: "Bellagio", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3766", Description: "Fremont Hotel and Casino", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3767", Description: "Main Street Station Hotel and Casino", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3768", Description: "Silver Star Hotel and Casino", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3769", Description: "Stratosphere Hotel and Casino", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3770", Description: "Springhill Suites", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3771", Description: "Caesars Hotel and Casino", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3772", Description: "Nemacolin Woodlands", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3773", Description: "Venetian Resort Hotel and Casino", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3774", Description: "New York-New York Hotel and Casino", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3775", Description: "Sands Resort", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3776", Description: "Nevele Grande Resort and Country Club", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3777", Description: "Mandalay Bay Resort", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3778", Description: "Four Points Hotels", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3779", Description: "W Hotels", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3780", Description: "Disneyland Resorts", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3781", Description: "Patricia Grand Resort Hotels", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3782", Description: "Rosen Hotel and Resorts", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3783", Description: "Town and Country Resort and Convention Center", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3784", Description: "First Hospitality Hotels", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3785", Description: "Outrigger Hotels and Resorts", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3786", Description: "Ohana Hotels of Hawaii", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3787", Description: "Caribe Royal Resort Suite and Villas", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3788", Description: "Ala Moana Hotel", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3789", Description: "Smugglers Notch Resort", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3790", Description: "Raffles Hotels", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3791", Description: "Staybridge Suites", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3792", Description: "Claridge Casino Hotel", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3793", Description: "The Flamingo Hotels", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3794", Description: "Grand Casino Hotels", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3795", Description: "Paris Las Vegas Hotel", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3796", Description: "Peppermill Hotel Casino", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3797", Description: "Atlantic City Hilton", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3798", Description: "Embassy Vacation Resort", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3799", Description: "Hale Koa Hotel", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3800", Description: "Homestead Suites", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3801", Description: "Wilderness Hotel and Resort", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3802", Description: "The Palace Hotel", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3803", Description: "The Wigwam Golf Resort and Spa", Category: "Lodging", PaymentBrands: []PaymentBrand{Mastercard}},
{Code: "3804", Description: "The Diplomat Country Club and Spa", Category: "Lodging", PaymentBrands: []PaymentBrand{Mastercard}},
{Code: "3805", Description: "The Atlantic", Category: "Lodging", PaymentBrands: []PaymentBrand{Mastercard}},
{Code: "3806", Description: "Princeville Resort", Category: "Lodging", PaymentBrands: []PaymentBrand{Mastercard}},
{Code: "3807", Description: "Element", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3808", Description: "LXR (Luxury Resorts)", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3809", Description: "Settle Inn", Category: "Lodging", PaymentBrands: []PaymentBrand{Mastercard}},
{Code: "3810", Description: "La Costa Resort", Category: "Lodging", PaymentBrands: []PaymentBrand{Mastercard}},
{Code: "3811", Description: "Premier Travel Inns", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3812", Description: "Hyatt Place", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3813", Description: "Hotel Indigo", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3814", Description: "The Roosevelt Hotel NY", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3815", Description: "Nickelodeon Family Suites by Holiday Inn", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3816", Description: "Home2Suites", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3817", Description: "Affinia", Category: "Lodging", PaymentBrands: []PaymentBrand{Mastercard}},
{Code: "3818", Description: "Mainstay Suites", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3819", Description: "Oxford Suites", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3820", Description: "Jumeirah Essex House", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3821", Description: "Caribe Royal", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3822", Description: "Crossland", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3823", Description: "Grand Sierra Resort", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3824", Description: "Aria", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3825", Description: "Vdara", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3826", Description: "Autograph", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3827", Description: "Galt House", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3828", Description: "Cosmopolitan of Las Vegas", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3829", Description: "Country Inn By Carlson", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3830", Description: "Park Plaza Hotel", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "3831", Description: "Waldorf", Category: "Lodging", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "4011", Description: "Railroads-Freight", Category: "Transportation Services", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "4111", Description: "Transportation-Suburban and Local Commuter Passenger, including Ferries", Category: "Transportation Services", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "4112", Description: "Passenger Railways", Category: "Transportation Services", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "4119", Description: "Ambulance Services", Category: "Transportation Services", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "4121", Description: "Taxicabs and Limousines", Category: "Transportation Services", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "4131", Description: "Bus Lines", Category: "Transportation Services", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "4214", Description: "Motor Freight Carriers,Trucking-Local/Long Distance, Moving and Storage Companies, Local Delivery", Category: "Transportation Services", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "4215", Description: "Courier Services-Air and Ground, Freight Forwarders", Category: "Transportation Services", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "4225", Description: "Public Warehousing-Farm Products, Refrigerated Goods, Household Goods Storage", Category: "Transportation Services", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "4411", Description: "Cruise Lines", Category: "Transportation Services", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "4457", Description: "Boat Leases and Boat Rentals", Category: "Transportation Services", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "4468", Description: "Marinas, Marine Service/Supplies", Category: "Transportation Services", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "4511", Description: "Air Carriers, Airlines-not elsewhere classified", Category: "Transportation Services", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "4582", Description: "Airports, Airport Terminals, Flying Fields", Category: "Transportation Services", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "4722", Description: "Travel Agencies and Tour Operators", Category: "Transportation Services", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "4723", Description: "Package Tour Operators (Germany Only)", Category: "Transportation Services", PaymentBrands: []PaymentBrand{Visa}},
{Code: "4761", Description: "Telemarketing of Travel Related Services and Vitamins", Category: "Transportation Services", PaymentBrands: []PaymentBrand{TSYS}},
{Code: "4784", Description: "Bridge and Road Fees, Tolls", Category: "Transportation Services", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "4789", Description: "Transportation Services Not Elsewhere Classified", Category: "Transportation Services", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "4812", Description: "Telecommunication Equipment Including Telephone Sales", Category: "Utility Services", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "4813", Description: "Key-Entry Telecom Merchant providing single local and long-distance phone calls using a central access number in a non-face-to-face environment using key entry", Category: "Utility Services", PaymentBrands: []PaymentBrand{Mastercard}},
{Code: "4814", Description: "Telecommunication Services including but not limited to prepaid phone services and recurring phone services", Category: "Utility Services", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "4816", Description: "Computer Network/Information Services", Category: "Utility Services", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "4821", Description: "Telegraph Services", Category: "Utility Services", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "4829", Description: "Wire Transfer Money Orders (V, D, G, X) Money Transfer (M)", Category: "Utility Services", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "4899", Description: "Cable, Satellite, and Other Pay Television and Radio Services", Category: "Utility Services", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "4900", Description: "Utilities-Electric, Gas, Heating Oil, Sanitary, Water", Category: "Utility Services", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "5013", Description: "Motor Vehicle Supplies and New Parts", Category: "Retail Outlet Services", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "5021", Description: "Office and Commercial Furniture", Category: "Retail Outlet Services", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "5039", Description: "Construction Materials Not Elsewhere Classified", Category: "Retail Outlet Services", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "5044", Description: "Office, Photographic, Photocopy and Microfilm Equipment", Category: "Retail Outlet Services", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "5045", Description: "Computers, Computer Peripheral Equipment, Software", Category: "Retail Outlet Services", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "5046", Description: "Commercial Equipment Not Elsewhere Classified", Category: "Retail Outlet Services", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "5047", Description: "Dental/Laboratory/Medical/Ophthalmic Hospital Equipment and Supplies", Category: "Retail Outlet Services", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "5051", Description: "Metal Service Centers and Offices", Category: "Retail Outlet Services", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "5065", Description: "Electrical Parts and Equipment", Category: "Retail Outlet Services", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "5072", Description: "Hardware Equipment and Supplies", Category: "Retail Outlet Services", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "5074", Description: "Plumbing and Heating Equipment", Category: "Retail Outlet Services", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "5085", Description: "Industrial Supplies Not Elsewhere Classified", Category: "Retail Outlet Services", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "5094", Description: "Precious Stones and Metals, Watches and Jewelry", Category: "Retail Outlet Services", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "5099", Description: "Durable Goods Not Elsewhere Classified", Category: "Retail Outlet Services", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "5111", Description: "Stationery, Office Supplies, Printing and Writing Paper", Category: "Retail Outlet Services", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "5122", Description: "Drugs, Drug Proprietors and Druggists Sundries", Category: "Retail Outlet Services", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "5131", Description: "Piece Goods, Notions, and Other Dry Goods", Category: "Retail Outlet Services", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "5137", Description: "Men's, Women's and Children's Uniforms and Commercial Clothing", Category: "Retail Outlet Services", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "5139", Description: "Commercial Footware", Category: "Retail Outlet Services", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "5169", Description: "Chemicals and Allied Products Not Elsewhere Classified", Category: "Retail Outlet Services", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "5172", Description: "Petroleum and Petroleum Products", Category: "Retail Outlet Services", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "5192", Description: "Books, Periodicals and Newspapers", Category: "Retail Outlet Services", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "5193", Description: "Florists Supplies, Nursery Stock and Flowers", Category: "Retail Outlet Services", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "5198", Description: "Paints, Varnishes and Supplies", Category: "Retail Outlet Services", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "5199", Description: "Non-Durable Goods Not Elsewhere Classified", Category: "Retail Outlet Services", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "5200", Description: "Home Supply Warehouse Stores", Category: "Retail Outlet Services", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "5211", Description: "Building Materials, Lumber Stores", Category: "Retail Outlet Services", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "5231", Description: "Glass, Paint, Wallpaper Stores", Category: "Retail Outlet Services", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "5251", Description: "Hardware Stores", Category: "Retail Outlet Services", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "5261", Description: "Lawn and Garden Supply Stores", Category: "Retail Outlet Services", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "5271", Description: "Mobile Home Dealers", Category: "Retail Outlet Services", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "5299", Description: "Warehouse Club Gas", Category: "Retail Outlet Services", PaymentBrands: []PaymentBrand{TSYS}},
{Code: "5300", Description: "Wholesale Clubs", Category: "Retail Outlet Services", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "5309", Description: "Duty Free Stores", Category: "Retail Outlet Services", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "5310", Description: "Discount Stores", Category: "Retail Outlet Services", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "5311", Description: "Department Stores", Category: "Retail Outlet Services", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "5331", Description: "Variety Stores", Category: "Retail Outlet Services", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "5399", Description: "Miscellaneous General Merchandise Stores", Category: "Retail Outlet Services", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "5411", Description: "Grocery Stores, Supermarkets", Category: "Retail Outlet Services", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "5422", Description: "Freezer and Locker Meat Provisioners", Category: "Retail Outlet Services", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "5441", Description: "Candy, Nut and Confectionery Stores", Category: "Retail Outlet Services", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "5451", Description: "Dairy Products Stores", Category: "Retail Outlet Services", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "5462", Description: "Bakeries", Category: "Retail Outlet Services", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "5499", Description: "Miscellaneous Food Stores-Convenience Stores, Markets, Specialty Stores, and Vending Machines", Category: "Retail Outlet Services", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "5511", Description: "Automobile and Truck Dealers-Sales, Service, Repairs, Parts and Leasing", Category: "Retail Outlet Services", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "5521", Description: "Automobile and Truck Dealers-(Used Only)-Sales", Category: "Retail Outlet Services", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "5532", Description: "Automotive Tire Stores", Category: "Retail Outlet Services", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "5533", Description: "Automotive Parts and Accessories Stores", Category: "Retail Outlet Services", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "5541", Description: "Service Stations (With or Without Ancillary Services)", Category: "Retail Outlet Services", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "5542", Description: "Fuel Dispenser, Automated", Category: "Retail Outlet Services", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "5551", Description: "Boat Dealers", Category: "Retail Outlet Services", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "5561", Description: "Camper Dealers, Recreational and Utility Trailers", Category: "Retail Outlet Services", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "5571", Description: "Motorcycle Shops and Dealers", Category: "Retail Outlet Services", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "5592", Description: "Motor Home Dealers", Category: "Retail Outlet Services", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "5598", Description: "Snowmobile Dealers", Category: "Retail Outlet Services", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "5599", Description: "Miscellaneous Automotive, Aircraft, and Farm Equipment Dealers-Not Elsewhere Classified", Category: "Retail Outlet Services", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "5611", Description: "Men's and Boys' Clothing and Accessories Stores", Category: "Clothing Stores", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "5621", Description: "Women's Ready to Wear Stores", Category: "Clothing Stores", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "5631", Description: "Women's Accessory and Specialty Stores", Category: "Clothing Stores", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "5641", Description: "Children's and Infants' Wear Stores", Category: "Clothing Stores", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "5651", Description: "Family Clothing Stores", Category: "Clothing Stores", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "5655", Description: "Sports Apparel, and Riding Apparel Stores", Category: "Clothing Stores", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "5661", Description: "Shoe Stores", Category: "Clothing Stores", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "5681", Description: "Furriers and Fur Shops", Category: "Clothing Stores", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "5691", Description: "Men's and Women's Clothing Stores", Category: "Clothing Stores", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "5697", Description: "Alterations, Mending, Seamstresses, Tailors", Category: "Clothing Stores", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "5698", Description: "Wig and Toupee Shops", Category: "Clothing Stores", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "5699", Description: "Accessory and Apparel Stores-Miscellaneous", Category: "Clothing Stores", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "5712", Description: "Equipment, Furniture and Home Furnishings Stores (except Appliances)", Category: "Miscellaneous Stores", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "5713", Description: "Floor Covering Stores", Category: "Miscellaneous Stores", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "5714", Description: "Drapery, Upholstery and Window Coverings Stores", Category: "Miscellaneous Stores", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "5718", Description: "Fireplace, Fireplace Screens and Accessories Stores", Category: "Miscellaneous Stores", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "5719", Description: "Miscellaneous House Furnishing Specialty Shops", Category: "Miscellaneous Stores", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "5722", Description: "Household Appliance Stores", Category: "Miscellaneous Stores", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "5732", Description: "Electronics Sales", Category: "Miscellaneous Stores", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "5733", Description: "Music Stores-Musical Instruments, Pianos and Sheet Music", Category: "Miscellaneous Stores", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "5734", Description: "Computer Software Stores", Category: "Miscellaneous Stores", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "5735", Description: "Record Shops", Category: "Miscellaneous Stores", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "5811", Description: "Caterers", Category: "Miscellaneous Stores", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "5812", Description: "Eating Places and Restaurants", Category: "Miscellaneous Stores", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "5813", Description: "Bars, Cocktail Lounges, Discotheques, Nightclubs and Taverns-Drinking Places (Alcoholic Beverages)", Category: "Miscellaneous Stores", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "5814", Description: "Fast Food Restaurants", Category: "Miscellaneous Stores", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "5815", Description: "Digital Goods: Books, Movies, Music", Category: "Miscellaneous Stores", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "5816", Description: "Digital Goods: Games", Category: "Miscellaneous Stores", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "5817", Description: "Digital Goods: Applications (Excludes Games)", Category: "Miscellaneous Stores", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "5818", Description: "Digital Goods: Large Digital Goods Merchant (V) Digital Goods: Multi-Category (M)", Category: "Miscellaneous Stores", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "5912", Description: "Drug Stores and Pharmacies", Category: "Miscellaneous Stores", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "5921", Description: "Package Stores-Beer, Wine and Liquor", Category: "Miscellaneous Stores", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "5931", Description: "Second Hand Stores, Used Merchandise Stores", Category: "Miscellaneous Stores", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "5932", Description: "Antique Shops-Sales, Repairs and Restoration Services", Category: "Miscellaneous Stores", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "5933", Description: "Pawn Shops", Category: "Miscellaneous Stores", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "5935", Description: "Wrecking and Salvage Yards", Category: "Miscellaneous Stores", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "5937", Description: "Antique Reproduction Stores", Category: "Miscellaneous Stores", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "5940", Description: "Bicycle Shops-Sales and Service", Category: "Miscellaneous Stores", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "5941", Description: "Sporting Goods Stores", Category: "Miscellaneous Stores", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "5942", Description: "Book Stores", Category: "Miscellaneous Stores", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "5943", Description: "Office, School Supply and Stationery Stores", Category: "Miscellaneous Stores", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "5944", Description: "Clock, Jewelry, Watch and Silverware Stores", Category: "Miscellaneous Stores", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "5945", Description: "Game, Toy and Hobby Shops", Category: "Miscellaneous Stores", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "5946", Description: "Camera and Photographic Supply Stores", Category: "Miscellaneous Stores", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "5947", Description: "Card, Gift, Novelty and Souvenir Shops", Category: "Miscellaneous Stores", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "5948", Description: "Leather Goods and Luggage Stores", Category: "Miscellaneous Stores", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "5949", Description: "Fabric, Needlework, Piece Goods and Sewing Stores", Category: "Miscellaneous Stores", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "5950", Description: "Crystal and Glassware Stores", Category: "Miscellaneous Stores", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "5960", Description: "Direct Marketing Insurance Services", Category: "Miscellaneous Stores", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "5961", Description: "Mail Order Houses Including Catalog Order Stores", Category: "Miscellaneous Stores", PaymentBrands: []PaymentBrand{TSYS}},
{Code: "5962", Description: "Direct Marketing-Travel Related Arrangement Services", Category: "Miscellaneous Stores", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "5963", Description: "Door-to-Door Sales", Category: "Miscellaneous Stores", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "5964", Description: "Direct Marketing-Catalog Merchants", Category: "Miscellaneous Stores", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "5965", Description: "Direct Marketing-Combination Catalog and Retail Merchant", Category: "Miscellaneous Stores", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "5966", Description: "Direct Marketing-Outbound Telemarketing Merchants", Category: "Miscellaneous Stores", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "5967", Description: "Direct Marketing-Inbound Telemarketing Merchants", Category: "Miscellaneous Stores", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "5968", Description: "Direct Marketing-Continuity/Subscription Merchants", Category: "Miscellaneous Stores", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "5969", Description: "Direct Marketing-Other Direct Marketers-Not Elsewhere Classified", Category: "Miscellaneous Stores", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "5970", Description: "Artist Supply Stores, Craft Shops", Category: "Miscellaneous Stores", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "5971", Description: "Art Dealers and Galleries", Category: "Miscellaneous Stores", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "5972", Description: "Stamp and Coin Stores-Philatelic and Numismatic Supplies", Category: "Miscellaneous Stores", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "5973", Description: "Religious Goods Stores", Category: "Miscellaneous Stores", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "5974", Description: "Rubber Stamp Store", Category: "Miscellaneous Stores", PaymentBrands: []PaymentBrand{TSYS}},
{Code: "5975", Description: "Hearing Aids-Sales, Service, Supply Stores", Category: "Miscellaneous Stores", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "5976", Description: "Orthopedic Goods-Artificial Limb Stores", Category: "Miscellaneous Stores", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "5977", Description: "Cosmetic Stores", Category: "Miscellaneous Stores", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "5978", Description: "Typewriter Stores-Rentals, Sales, Service", Category: "Miscellaneous Stores", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "5983", Description: "Fuel Dealers-Coal, Fuel Oil, Liquefied Petroleum, Wood", Category: "Miscellaneous Stores", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "5992", Description: "Florists", Category: "Miscellaneous Stores", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "5993", Description: "Cigar Stores and Stands", Category: "Miscellaneous Stores", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "5994", Description: "News Dealers and Newsstands", Category: "Miscellaneous Stores", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "5995", Description: "Pet Shops, Pet Food and Supplies", Category: "Miscellaneous Stores", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "5996", Description: "Swimming Pools-Sales and Supplies", Category: "Miscellaneous Stores", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "5997", Description: "Electric Razor Stores-Sales and Service", Category: "Miscellaneous Stores", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "5998", Description: "Tent and Awning Shops", Category: "Miscellaneous Stores", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "5999", Description: "Miscellaneous and Specialty Retail Stores", Category: "Miscellaneous Stores", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "6010", Description: "Member Financial Institution-Manual Cash Disbursements", Category: "Miscellaneous Stores", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "6011", Description: "Member Financial Institution-Automated Cash Disbursements", Category: "Miscellaneous Stores", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "6012", Description: "Member Financial Institution-Merchandise And Services", Category: "Miscellaneous Stores", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "6050", Description: "Quasi Cash-Member Financial Institution", Category: "Miscellaneous Stores", PaymentBrands: []PaymentBrand{Mastercard}},
{Code: "6051", Description: "Quasi Cash-Merchant", Category: "Miscellaneous Stores", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "6211", Description: "Securities-Brokers and Dealers", Category: "Miscellaneous Stores", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "6236", Description: "Aero Servicio Carabobo", Category: "Miscellaneous Stores", PaymentBrands: []PaymentBrand{TSYS}},
{Code: "6300", Description: "Insurance Sales, Underwriting and Premiums", Category: "Miscellaneous Stores", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "6381", Description: "Insurance-Premiums", Category: "Miscellaneous Stores", PaymentBrands: []PaymentBrand{TSYS}},
{Code: "6513", Description: "Real Estate Agents and Managers-Rentals", Category: "Miscellaneous Stores", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "6529", Description: "Remote Stored Value Load - Member Financial Institution", Category: "Miscellaneous Stores", PaymentBrands: []PaymentBrand{TSYS}},
{Code: "6530", Description: "Remove Stored Value Load - Merchant", Category: "Miscellaneous Stores", PaymentBrands: []PaymentBrand{TSYS}},
{Code: "6535", Description: "Value Purchase-Member Financial Institution", Category: "Miscellaneous Stores", PaymentBrands: []PaymentBrand{TSYS}},
{Code: "6536", Description: "MoneySend", Category: "Miscellaneous Stores", PaymentBrands: []PaymentBrand{Mastercard}},
{Code: "6537", Description: "MoneySend", Category: "Miscellaneous Stores", PaymentBrands: []PaymentBrand{Mastercard}},
{Code: "6538", Description: "MoneySend", Category: "Miscellaneous Stores", PaymentBrands: []PaymentBrand{Mastercard}},
{Code: "6539", Description: "Funding Transaction (Excluding", Category: "Miscellaneous Stores", PaymentBrands: []PaymentBrand{Mastercard}},
{Code: "6540", Description: "POI (Point of Interaction) Funding Transactions (Excluding", Category: "Miscellaneous Stores", PaymentBrands: []PaymentBrand{Mastercard}},
{Code: "6611", Description: "Overpayments", Category: "Miscellaneous Stores", PaymentBrands: []PaymentBrand{TSYS}},
{Code: "6760", Description: "Savings Bonds", Category: "Miscellaneous Stores", PaymentBrands: []PaymentBrand{TSYS}},
{Code: "7011", Description: "Lodging-Hotels, Motels, Resorts-not elsewhere classified", Category: "Miscellaneous Stores", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "7012", Description: "Timeshares", Category: "Miscellaneous Stores", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "7032", Description: "Sporting and Recreational Camps", Category: "Miscellaneous Stores", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "7033", Description: "Campgrounds and Trailer Parks", Category: "Miscellaneous Stores", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "7210", Description: "Cleaning, Garment and Laundry Services", Category: "Miscellaneous Stores", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "7211", Description: "Laundry Services-Family and Commercial", Category: "Miscellaneous Stores", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "7216", Description: "Dry Cleaners", Category: "Miscellaneous Stores", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "7217", Description: "Carpet and Upholstery Cleaning", Category: "Miscellaneous Stores", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "7221", Description: "Photographic Studios", Category: "Miscellaneous Stores", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "7230", Description: "Barber and Beauty Shops", Category: "Miscellaneous Stores", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "7251", Description: "Hat Cleaning Shops, Shoe Repair Shops, Shoe Shine Parlors", Category: "Miscellaneous Stores", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "7261", Description: "Funeral Service and Crematories", Category: "Miscellaneous Stores", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "7273", Description: "Dating Services", Category: "Miscellaneous Stores", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "7276", Description: "Tax Preparation Service", Category: "Miscellaneous Stores", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "7277", Description: "Debt, Marriage, Personal-Counseling Services", Category: "Miscellaneous Stores", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "7278", Description: "Buying/Shopping Clubs, Services", Category: "Miscellaneous Stores", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "7280", Description: "Hospital Patient-Personal Funds Withdrawal", Category: "Miscellaneous Stores", PaymentBrands: []PaymentBrand{TSYS}},
{Code: "7295", Description: "Babysitting Services", Category: "Miscellaneous Stores", PaymentBrands: []PaymentBrand{TSYS}},
{Code: "7296", Description: "Clothing Rental-Costumes, Uniforms and Formal Wear", Category: "Miscellaneous Stores", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "7297", Description: "Massage Parlors", Category: "Miscellaneous Stores", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "7298", Description: "Health and Beauty Spas", Category: "Miscellaneous Stores", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "7299", Description: "Other Services-Not Elsewhere Classified", Category: "Miscellaneous Stores", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "7311", Description: "Advertising Services", Category: "Business Services", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "7321", Description: "Consumer Credit Reporting Agencies", Category: "Business Services", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "7332", Description: "Blueprinting and Photocopying Services", Category: "Business Services", PaymentBrands: []PaymentBrand{TSYS}},
{Code: "7333", Description: "Commercial Art, Graphics, Photography", Category: "Business Services", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "7338", Description: "Quick Copy, Reproduction and Blueprinting Services", Category: "Business Services", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "7339", Description: "Stenographic and Secretarial Support Services", Category: "Business Services", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "7342", Description: "Exterminating and Disinfecting Services", Category: "Business Services", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "7349", Description: "Cleaning and Maintenance, Janitorial Services", Category: "Business Services", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "7361", Description: "Employment Agencies and Temporary Help Services", Category: "Business Services", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "7372", Description: "Computer Programming, Data Processing and Integrated System Design Services", Category: "Business Services", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "7375", Description: "Information Retrieval Services", Category: "Business Services", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "7379", Description: "Computer Maintenance, Repair And Services-Not Elsewhere Classified", Category: "Business Services", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "7392", Description: "Consulting, Management and Public Relations Services", Category: "Business Services", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "7393", Description: "Detective Agencies, Protective Agencies, Security Services including Armored Cars, Guard Dogs", Category: "Business Services", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "7394", Description: "Equipment Rental and Leasing Services, Furniture Rental, Tool Rental", Category: "Business Services", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "7395", Description: "Photo Developing, Photofinishing Laboratories", Category: "Business Services", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "7399", Description: "Business Services Not Elsewhere Classified", Category: "Business Services", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "7512", Description: "Automobile Rental Agency-Not Elsewhere Classified", Category: "Business Services", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "7513", Description: "Truck Rental", Category: "Business Services", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "7519", Description: "Motor Home and Recreational Vehicle Rental", Category: "Business Services", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "7523", Description: "Automobile Parking Lots and Garages", Category: "Business Services", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "7524", Description: "Express Payment Service Merchants-Parking Lots and Garages", Category: "Business Services", PaymentBrands: []PaymentBrand{TSYS}},
{Code: "7531", Description: "Automotive Body Repair Shops", Category: "Business Services", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "7534", Description: "Tire Retreading and Repair Shops", Category: "Business Services", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "7535", Description: "Automotive Paint Shops", Category: "Business Services", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "7538", Description: "Automotive Service Shops", Category: "Business Services", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "7542", Description: "Car Washes", Category: "Business Services", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "7549", Description: "Towing Services", Category: "Business Services", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "7622", Description: "Electronic Repair Shops", Category: "Business Services", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "7623", Description: "Air Conditioning and Refrigeration Repair Shops", Category: "Business Services", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "7629", Description: "Appliance Repair Shops, Electrical and Small", Category: "Business Services", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "7631", Description: "Clock, Jewelry and Watch Repair Shops", Category: "Business Services", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "7641", Description: "Furniture-Reupholstery, Repair and Refinishing", Category: "Business Services", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "7692", Description: "Welding Repair", Category: "Business Services", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "7699", Description: "Miscellaneous Repair Shops and Related Services", Category: "Business Services", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "7800", Description: "Government Owned Lottery", Category: "Business Services", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "7801", Description: "Government-Licensed Casinos (Online or Internet Gambling)", Category: "Business Services", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "7802", Description: "Government-Licensed Horse/Dog Racing", Category: "Business Services", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "7829", Description: "Motion Picture and Video Tape Production and Distribution", Category: "Business Services", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "7832", Description: "Motion Picture Theaters", Category: "Business Services", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "7833", Description: "Express Payment Service - Motion Picture Theater", Category: "Business Services", PaymentBrands: []PaymentBrand{TSYS}},
{Code: "7841", Description: "DVD/Video Tape Rental Stores", Category: "Business Services", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "7911", Description: "Dance Halls, Schools and Studios", Category: "Business Services", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "7922", Description: "Theatrical Producers (Except Motion Pictures), Ticket Agencies", Category: "Business Services", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "7929", Description: "Bands, Orchestras and Miscellaneous Entertainers- Not Elsewhere Classified", Category: "Business Services", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "7932", Description: "Pool and Billiard Establishments", Category: "Business Services", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "7933", Description: "Bowling Alleys", Category: "Business Services", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "7941", Description: "Athletic Fields, Commercial Sports, Professional Sports Clubs, Sports Promoters", Category: "Business Services", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "7991", Description: "Tourist Attractions and Exhibits", Category: "Business Services", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "7992", Description: "Golf Courses, Public", Category: "Business Services", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "7993", Description: "Video Amusement Game Supplies", Category: "Business Services", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "7994", Description: "Video Game Arcades and Establishments", Category: "Business Services", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "7995", Description: "Gambling Transactions Betting (Sportsbook, fantasy, social gaming; when regulated and not covered by other MCCs) (D)", Category: "Business Services", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "7996", Description: "Amusement Parks, Carnivals, Circuses, Carnivals, Fortune Tellers", Category: "Business Services", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "7997", Description: "Clubs-Country Clubs, Membership (Athletic, Recreation, Sports), Private Golf Courses", Category: "Business Services", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "7998", Description: "Aquariums, Dolphinariums, Zoos and Seaquariums", Category: "Business Services", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "7999", Description: "Recreation Services-Not Elsewhere Classified", Category: "Business Services", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "8011", Description: "Doctors-not elsewhere classified", Category: "Professional Services and Membership Organizations", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "8021", Description: "Dentists and Orthodontists", Category: "Professional Services and Membership Organizations", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "8031", Description: "Osteopathic Physicians", Category: "Professional Services and Membership Organizations", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "8041", Description: "Chiropractors", Category: "Professional Services and Membership Organizations", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "8042", Description: "Optometrists and Ophthalmologists", Category: "Professional Services and Membership Organizations", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "8043", Description: "Opticians, Optical Goods and Eyeglasses", Category: "Professional Services and Membership Organizations", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "8044", Description: "Optical Goods and Eyeglasses", Category: "Professional Services and Membership Organizations", PaymentBrands: []PaymentBrand{TSYS}},
{Code: "8049", Description: "Chiropodists, Podiatrists", Category: "Professional Services and Membership Organizations", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "8050", Description: "Nursing and Personal Care Facilities", Category: "Professional Services and Membership Organizations", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "8062", Description: "Hospitals", Category: "Professional Services and Membership Organizations", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "8071", Description: "Dental and Medical Laboratories", Category: "Professional Services and Membership Organizations", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "8099", Description: "Health Practitioners, Medical Services-Not Elsewhere Classified", Category: "Professional Services and Membership Organizations", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "8111", Description: "Attorneys, Legal Services", Category: "Professional Services and Membership Organizations", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "8211", Description: "Schools, Elementary and Secondary", Category: "Professional Services and Membership Organizations", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "8220", Description: "Colleges, Universities, Professional Schools and Junior Colleges", Category: "Professional Services and Membership Organizations", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "8241", Description: "Schools, Correspondence", Category: "Professional Services and Membership Organizations", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "8244", Description: "Schools, Business and Secretarial", Category: "Professional Services and Membership Organizations", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "8249", Description: "Schools, Trade and Vocational", Category: "Professional Services and Membership Organizations", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "8299", Description: "Schools And Educational Services-Not Elsewhere Classified", Category: "Professional Services and Membership Organizations", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "8351", Description: "Child Care Services", Category: "Professional Services and Membership Organizations", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "8398", Description: "Organizations, Charitable and Social Service", Category: "Professional Services and Membership Organizations", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "8641", Description: "Associations-Civic, Social and Fraternal", Category: "Professional Services and Membership Organizations", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "8651", Description: "Organizations, Political", Category: "Professional Services and Membership Organizations", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "8661", Description: "Organizations, Religious", Category: "Professional Services and Membership Organizations", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "8675", Description: "Automobile Associations", Category: "Professional Services and Membership Organizations", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "8699", Description: "Organizations, Membership-Not Elsewhere Classified", Category: "Professional Services and Membership Organizations", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "8734", Description: "Testing Laboratories (Non-Medical)", Category: "Professional Services and Membership Organizations", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "8743", Description: "Testing Laboratories (Non-Medical)", Category: "Professional Services and Membership Organizations", PaymentBrands: []PaymentBrand{TSYS}},
{Code: "8911", Description: "Architectural, Engineering and Surveying Services", Category: "Professional Services and Membership Organizations", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "8931", Description: "Accounting, Auditing and Bookkeeping Services", Category: "Professional Services and Membership Organizations", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "8999", Description: "Professional Services-Not Elsewhere Classified", Category: "Professional Services and Membership Organizations", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "9034", Description: "I-Purchasing Pilot", Category: "Government Services", PaymentBrands: []PaymentBrand{TSYS}},
{Code: "9211", Description: "Court Costs Including Alimony and Child Support", Category: "Government Services", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "9222", Description: "Fines", Category: "Government Services", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "9223", Description: "Bail and Bond Payments", Category: "Government Services", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "9311", Description: "Tax Payments", Category: "Government Services", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "9399", Description: "Government Services-Not Elsewhere Classified", Category: "Government Services", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "9401", Description: "I-Purchasing Pilot", Category: "Government Services", PaymentBrands: []PaymentBrand{TSYS}},
{Code: "9402", Description: "Postal Services-Government Only", Category: "Government Services", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "9405", Description: "Intra-Government Purchases-Government Only", Category: "Government Services", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
{Code: "9700", Description: "Automated Referral Service", Category: "Government Services", PaymentBrands: []PaymentBrand{Visa}},
{Code: "9701", Description: "Visa Credential Server", Category: "Government Services", PaymentBrands: []PaymentBrand{Visa}},
{Code: "9702", Description: "GCAS Emergency Services", Category: "Government Services", PaymentBrands: []PaymentBrand{Visa}},
{Code: "9751", Description: "UK Supermarkets, Electronic Hot File", Category: "Government Services", PaymentBrands: []PaymentBrand{TSYS}},
{Code: "9752", Description: "UK Petrol Stations, Electronic Hot File", Category: "Government Services", PaymentBrands: []PaymentBrand{TSYS}},
{Code: "9754", Description: "Gambling-Horse, Dog Racing, State Lottery", Category: "Government Services", PaymentBrands: []PaymentBrand{Mastercard}},
{Code: "9950", Description: "Intra-Company Purchases", Category: "Government Services", PaymentBrands: []PaymentBrand{Visa, Mastercard}},
}