-
Notifications
You must be signed in to change notification settings - Fork 88
/
noun-generation-formats.txt
1257 lines (1250 loc) · 82.5 KB
/
noun-generation-formats.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
en:
faker:
address:
city_prefix: [North, East, West, South, New, Lake, Port]
city_suffix: [town, ton, land, ville, berg, burgh, borough, bury, view, port, mouth, stad, furt, chester, mouth, fort, haven, side, shire]
building_number: ['#####', '####', '###']
street_suffix: [Alley, Avenue, Branch, Bridge, Brook, Brooks, Burg, Burgs, Bypass, Camp, Canyon, Cape, Causeway, Center, Centers, Circle, Circles, Cliff, Cliffs, Club, Common, Corner, Corners, Course, Court, Courts, Cove, Coves, Creek, Crescent, Crest, Crossing, Crossroad, Curve, Dale, Dam, Divide, Drive, Drive, Drives, Estate, Estates, Expressway, Extension, Extensions, Fall, Falls, Ferry, Field, Fields, Flat, Flats, Ford, Fords, Forest, Forge, Forges, Fork, Forks, Fort, Freeway, Garden, Gardens, Gateway, Glen, Glens, Green, Greens, Grove, Groves, Harbor, Harbors, Haven, Heights, Highway, Hill, Hills, Hollow, Inlet, Inlet, Island, Island, Islands, Islands, Isle, Isle, Junction, Junctions, Key, Keys, Knoll, Knolls, Lake, Lakes, Land, Landing, Lane, Light, Lights, Loaf, Lock, Locks, Locks, Lodge, Lodge, Loop, Mall, Manor, Manors, Meadow, Meadows, Mews, Mill, Mills, Mission, Mission, Motorway, Mount, Mountain, Mountain, Mountains, Mountains, Neck, Orchard, Oval, Overpass, Park, Parks, Parkway, Parkways, Pass, Passage, Path, Pike, Pine, Pines, Place, Plain, Plains, Plains, Plaza, Plaza, Point, Points, Port, Port, Ports, Ports, Prairie, Prairie, Radial, Ramp, Ranch, Rapid, Rapids, Rest, Ridge, Ridges, River, Road, Road, Roads, Roads, Route, Row, Rue, Run, Shoal, Shoals, Shore, Shores, Skyway, Spring, Springs, Springs, Spur, Spurs, Square, Square, Squares, Squares, Station, Station, Stravenue, Stravenue, Stream, Stream, Street, Street, Streets, Summit, Summit, Terrace, Throughway, Trace, Track, Trafficway, Trail, Trail, Tunnel, Tunnel, Turnpike, Turnpike, Underpass, Union, Unions, Valley, Valleys, Via, Viaduct, View, Views, Village, Village, Villages, Ville, Vista, Vista, Walk, Walks, Wall, Way, Ways, Well, Wells]
secondary_address: ['Apt. ###', 'Suite ###']
# Though these are US-specific, they are here (in the default locale) for backwards compatibility
postcode: ['#####', '#####-####']
state: [Alabama, Alaska, Arizona, Arkansas, California, Colorado, Connecticut, Delaware, Florida, Georgia, Hawaii, Idaho, Illinois, Indiana, Iowa, Kansas, Kentucky, Louisiana, Maine, Maryland, Massachusetts, Michigan, Minnesota, Mississippi, Missouri, Montana, Nebraska, Nevada, New Hampshire, New Jersey, New Mexico, New York, North Carolina, North Dakota, Ohio, Oklahoma, Oregon, Pennsylvania, Rhode Island, South Carolina, South Dakota, Tennessee, Texas, Utah, Vermont, Virginia, Washington, West Virginia, Wisconsin, Wyoming]
state_abbr: [AL, AK, AS, AZ, AR, CA, CO, CT, DE, DC, FM, FL, GA, GU, HI, ID, IL, IN, IA, KS, KY, LA, ME, MH, MD, MA, MI, MN, MS, MO, MT, NE, NV, NH, NJ, NM, NY, NC, ND, MP, OH, OK, OR, PW, PA, PR, RI, SC, SD, TN, TX, UT, VT, VI, VA, WA, WV, WI, WY, AE, AA, AP]
time_zone: [Pacific/Midway, Pacific/Pago_Pago, Pacific/Honolulu, America/Juneau, America/Los_Angeles, America/Tijuana, America/Denver, America/Phoenix, America/Chihuahua, America/Mazatlan, America/Chicago, America/Regina, America/Mexico_City, America/Mexico_City, America/Monterrey, America/Guatemala, America/New_York, America/Indiana/Indianapolis, America/Bogota, America/Lima, America/Lima, America/Halifax, America/Caracas, America/La_Paz, America/Santiago, America/St_Johns, America/Sao_Paulo, America/Argentina/Buenos_Aires, America/Guyana, America/Godthab, Atlantic/South_Georgia, Atlantic/Azores, Atlantic/Cape_Verde, Europe/Dublin, Europe/London, Europe/Lisbon, Europe/London, Africa/Casablanca, Africa/Monrovia, Etc/UTC, Europe/Belgrade, Europe/Bratislava, Europe/Budapest, Europe/Ljubljana, Europe/Prague, Europe/Sarajevo, Europe/Skopje, Europe/Warsaw, Europe/Zagreb, Europe/Brussels, Europe/Copenhagen, Europe/Madrid, Europe/Paris, Europe/Amsterdam, Europe/Berlin, Europe/Berlin, Europe/Rome, Europe/Stockholm, Europe/Vienna, Africa/Algiers, Europe/Bucharest, Africa/Cairo, Europe/Helsinki, Europe/Kiev, Europe/Riga, Europe/Sofia, Europe/Tallinn, Europe/Vilnius, Europe/Athens, Europe/Istanbul, Europe/Minsk, Asia/Jerusalem, Africa/Harare, Africa/Johannesburg, Europe/Moscow, Europe/Moscow, Europe/Moscow, Asia/Kuwait, Asia/Riyadh, Africa/Nairobi, Asia/Baghdad, Asia/Tehran, Asia/Muscat, Asia/Muscat, Asia/Baku, Asia/Tbilisi, Asia/Yerevan, Asia/Kabul, Asia/Yekaterinburg, Asia/Karachi, Asia/Karachi, Asia/Tashkent, Asia/Kolkata, Asia/Kolkata, Asia/Kolkata, Asia/Kolkata, Asia/Kathmandu, Asia/Dhaka, Asia/Dhaka, Asia/Colombo, Asia/Almaty, Asia/Novosibirsk, Asia/Rangoon, Asia/Bangkok, Asia/Bangkok, Asia/Jakarta, Asia/Krasnoyarsk, Asia/Shanghai, Asia/Chongqing, Asia/Hong_Kong, Asia/Urumqi, Asia/Kuala_Lumpur, Asia/Singapore, Asia/Taipei, Australia/Perth, Asia/Irkutsk, Asia/Ulaanbaatar, Asia/Seoul, Asia/Tokyo, Asia/Tokyo, Asia/Tokyo, Asia/Yakutsk, Australia/Darwin, Australia/Adelaide, Australia/Melbourne, Australia/Melbourne, Australia/Sydney, Australia/Brisbane, Australia/Hobart, Asia/Vladivostok, Pacific/Guam, Pacific/Port_Moresby, Asia/Magadan, Asia/Magadan, Pacific/Noumea, Pacific/Fiji, Asia/Kamchatka, Pacific/Majuro, Pacific/Auckland, Pacific/Auckland, Pacific/Tongatapu, Pacific/Fakaofo, Pacific/Apia]
city:
- "#{city_prefix} #{Name.first_name}#{city_suffix}"
- "#{city_prefix} #{Name.first_name}"
- "#{Name.first_name}#{city_suffix}"
- "#{Name.last_name}#{city_suffix}"
street_name:
- "#{Name.first_name} #{street_suffix}"
- "#{Name.last_name} #{street_suffix}"
street_address:
- "#{building_number} #{street_name}"
default_country: [United States of America]
company:
suffix: [Inc, and Sons, LLC, Group]
# Buzzword wordlist from http://www.1728.com/buzzword.htm
buzzwords:
- ["Adaptive", "Advanced", "Ameliorated", "Assimilated", "Automated", "Balanced", "Business-focused", "Centralized", "Cloned", "Compatible", "Configurable", "Cross-group", "Cross-platform", "Customer-focused", "Customizable", "Decentralized", "De-engineered", "Devolved", "Digitized", "Distributed", "Diverse", "Down-sized", "Enhanced", "Enterprise-wide", "Ergonomic", "Exclusive", "Expanded", "Extended", "Face to face", "Focused", "Front-line", "Fully-configurable", "Function-based", "Fundamental", "Future-proofed", "Grass-roots", "Horizontal", "Implemented", "Innovative", "Integrated", "Intuitive", "Inverse", "Managed", "Mandatory", "Monitored", "Multi-channelled", "Multi-lateral", "Multi-layered", "Multi-tiered", "Networked", "Object-based", "Open-architected", "Open-source", "Operative", "Optimized", "Optional", "Organic", "Organized", "Persevering", "Persistent", "Phased", "Polarised", "Pre-emptive", "Proactive", "Profit-focused", "Profound", "Programmable", "Progressive", "Public-key", "Quality-focused", "Reactive", "Realigned", "Re-contextualized", "Re-engineered", "Reduced", "Reverse-engineered", "Right-sized", "Robust", "Seamless", "Secured", "Self-enabling", "Sharable", "Stand-alone", "Streamlined", "Switchable", "Synchronised", "Synergistic", "Synergized", "Team-oriented", "Total", "Triple-buffered", "Universal", "Up-sized", "Upgradable", "User-centric", "User-friendly", "Versatile", "Virtual", "Visionary", "Vision-oriented"]
- ["24 hour", "24/7", "3rd generation", "4th generation", "5th generation", "6th generation", "actuating", "analyzing", "assymetric", "asynchronous", "attitude-oriented", "background", "bandwidth-monitored", "bi-directional", "bifurcated", "bottom-line", "clear-thinking", "client-driven", "client-server", "coherent", "cohesive", "composite", "context-sensitive", "contextually-based", "content-based", "dedicated", "demand-driven", "didactic", "directional", "discrete", "disintermediate", "dynamic", "eco-centric", "empowering", "encompassing", "even-keeled", "executive", "explicit", "exuding", "fault-tolerant", "foreground", "fresh-thinking", "full-range", "global", "grid-enabled", "heuristic", "high-level", "holistic", "homogeneous", "human-resource", "hybrid", "impactful", "incremental", "intangible", "interactive", "intermediate", "leading edge", "local", "logistical", "maximized", "methodical", "mission-critical", "mobile", "modular", "motivating", "multimedia", "multi-state", "multi-tasking", "national", "needs-based", "neutral", "next generation", "non-volatile", "object-oriented", "optimal", "optimizing", "radical", "real-time", "reciprocal", "regional", "responsive", "scalable", "secondary", "solution-oriented", "stable", "static", "systematic", "systemic", "system-worthy", "tangible", "tertiary", "transitional", "uniform", "upward-trending", "user-facing", "value-added", "web-enabled", "well-modulated", "zero administration", "zero defect", "zero tolerance"]
- ["ability", "access", "adapter", "algorithm", "alliance", "analyzer", "application", "approach", "architecture", "archive", "artificial intelligence", "array", "attitude", "benchmark", "budgetary management", "capability", "capacity", "challenge", "circuit", "collaboration", "complexity", "concept", "conglomeration", "contingency", "core", "customer loyalty", "database", "data-warehouse", "definition", "emulation", "encoding", "encryption", "extranet", "firmware", "flexibility", "focus group", "forecast", "frame", "framework", "function", "functionalities", "Graphic Interface", "groupware", "Graphical User Interface", "hardware", "help-desk", "hierarchy", "hub", "implementation", "info-mediaries", "infrastructure", "initiative", "installation", "instruction set", "interface", "internet solution", "intranet", "knowledge user", "knowledge base", "local area network", "leverage", "matrices", "matrix", "methodology", "middleware", "migration", "model", "moderator", "monitoring", "moratorium", "neural-net", "open architecture", "open system", "orchestration", "paradigm", "parallelism", "policy", "portal", "pricing structure", "process improvement", "product", "productivity", "project", "projection", "protocol", "secured line", "service-desk", "software", "solution", "standardization", "strategy", "structure", "success", "superstructure", "support", "synergy", "system engine", "task-force", "throughput", "time-frame", "toolset", "utilisation", "website", "workforce"]
# BS wordlist from http://dack.com/web/bullshit.html
bs:
- ["implement", "utilize", "integrate", "streamline", "optimize", "evolve", "transform", "embrace", "enable", "orchestrate", "leverage", "reinvent", "aggregate", "architect", "enhance", "incentivize", "morph", "empower", "envisioneer", "monetize", "harness", "facilitate", "seize", "disintermediate", "synergize", "strategize", "deploy", "brand", "grow", "target", "syndicate", "synthesize", "deliver", "mesh", "incubate", "engage", "maximize", "benchmark", "expedite", "reintermediate", "whiteboard", "visualize", "repurpose", "innovate", "scale", "unleash", "drive", "extend", "engineer", "revolutionize", "generate", "exploit", "transition", "e-enable", "iterate", "cultivate", "matrix", "productize", "redefine", "recontextualize"]
- ["clicks-and-mortar", "value-added", "vertical", "proactive", "robust", "revolutionary", "scalable", "leading-edge", "innovative", "intuitive", "strategic", "e-business", "mission-critical", "sticky", "one-to-one", "24/7", "end-to-end", "global", "B2B", "B2C", "granular", "frictionless", "virtual", "viral", "dynamic", "24/365", "best-of-breed", "killer", "magnetic", "bleeding-edge", "web-enabled", "interactive", "dot-com", "sexy", "back-end", "real-time", "efficient", "front-end", "distributed", "seamless", "extensible", "turn-key", "world-class", "open-source", "cross-platform", "cross-media", "synergistic", "bricks-and-clicks", "out-of-the-box", "enterprise", "integrated", "impactful", "wireless", "transparent", "next-generation", "cutting-edge", "user-centric", "visionary", "customized", "ubiquitous", "plug-and-play", "collaborative", "compelling", "holistic", "rich"]
- ["synergies", "web-readiness", "paradigms", "markets", "partnerships", "infrastructures", "platforms", "initiatives", "channels", "eyeballs", "communities", "ROI", "solutions", "e-tailers", "e-services", "action-items", "portals", "niches", "technologies", "content", "vortals", "supply-chains", "convergence", "relationships", "architectures", "interfaces", "e-markets", "e-commerce", "systems", "bandwidth", "infomediaries", "models", "mindshare", "deliverables", "users", "schemas", "networks", "applications", "metrics", "e-business", "functionalities", "experiences", "web services", "methodologies"]
name:
- "#{Name.last_name} #{suffix}"
- "#{Name.last_name}-#{Name.last_name}"
- "#{Name.last_name}, #{Name.last_name} and #{Name.last_name}"
iso_3166_1_alpha2: [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW]
country_by_code:
AF:
short_name: Afghanistan
iso_3166_1_alpha2: AF
official_name: Islamic Republic of Afghanistan
demonym: Afghan
tld: .af
AL:
short_name: Albania
iso_3166_1_alpha2: AL
official_name: Republic of Albania
demonym: Albanian
tld: .al
DZ:
short_name: Algeria
iso_3166_1_alpha2: DZ
official_name: People’s Democratic Republic of Algeria
demonym: Algerian
tld: .dz
AD:
short_name: Andorra
iso_3166_1_alpha2: AD
official_name: Principality of Andorra
demonym: Andorran
tld: .ad
AO:
short_name: Angola
iso_3166_1_alpha2: AO
official_name: Republic of Angola
demonym: Angolan
tld: .ao
AG:
short_name: Antigua and Barbuda
iso_3166_1_alpha2: AG
official_name: Antigua and Barbuda
demonym: [Antiguan, Barbudan]
tld: .ag
AR:
short_name: Argentina
iso_3166_1_alpha2: AR
official_name: Argentine Republic
demonym: Argentine
tld: .ar
AM:
short_name: Armenia
iso_3166_1_alpha2: AM
official_name: Republic of Armenia
demonym: Armenian
tld: .am
AU:
short_name: Australia
iso_3166_1_alpha2: AU
official_name: Commonwealth of Australia
demonym: Australian
tld: .au
AT:
short_name: Austria
iso_3166_1_alpha2: AT
official_name: Republic of Austria
demonym: Austrian
tld: .at
AZ:
short_name: Azerbaijan
iso_3166_1_alpha2: AZ
official_name: Republic of Azerbaijan
demonym: Azerbaijani
tld: .az
BS:
short_name: Bahamas
iso_3166_1_alpha2: BS
official_name: Commonwealth of The Bahamas
demonym: Bahamian
tld: .bs
BH:
short_name: Bahrain
iso_3166_1_alpha2: BH
official_name: Kingdom of Bahrain
demonym: Bahraini
tld: .bh
BD:
short_name: Bangladesh
iso_3166_1_alpha2: BD
official_name: People’s Republic of Bangladesh
demonym: Bangladeshi
tld: .bd
BB:
short_name: Barbados
iso_3166_1_alpha2: BB
official_name: Barbados
demonym: Barbadian
tld: .bb
BY:
short_name: Belarus
iso_3166_1_alpha2: BY
demonym: Belarusian
tld: .by
BE:
short_name: Belgium
iso_3166_1_alpha2: BE
official_name: Kingdom of Belgium
demonym: Belgian
tld: .be
BZ:
short_name: Belize
iso_3166_1_alpha2: BZ
official_name: Belize
demonym: Belizean
tld: .bz
BJ:
short_name: Benin
iso_3166_1_alpha2: BJ
official_name: Republic of Benin
demonym: [Beninese, Beninoi]
tld: .bj
BT:
short_name: Bhutan
iso_3166_1_alpha2: BT
official_name: Kingdom of Bhutan
demonym: Bhutanese
tld: .bt
BO:
short_name: Bolivia
iso_3166_1_alpha2: BO
official_name: Plurinational State of Bolivia
demonym: Bolivian
tld: .bo
BA:
short_name: Bosnia and Herzegovina
iso_3166_1_alpha2: BA
official_name: Bosnia and Herzegovina
demonym: Bosnian
tld: .ba
BW:
short_name: Botswana
iso_3166_1_alpha2: BW
official_name: Republic of Botswana
demonym: Batswana
tld: .bw
BR:
short_name: Brazil
iso_3166_1_alpha2: BR
official_name: Federative Republic of Brazil
demonym: Brazilian
tld: .br
BN:
short_name: Brunei
iso_3166_1_alpha2: BN
official_name: State of Brunei Darussalam
demonym: Bruneian
tld: .bn
BG:
short_name: Bulgaria
iso_3166_1_alpha2: BG
official_name: Republic of Bulgaria
demonym: Bulgarian
tld: .bg
BF:
short_name: Burkina Faso
iso_3166_1_alpha2: BF
demonym: Burkinabé
tld: .bf
MM:
short_name: Burma
iso_3166_1_alpha2: MM
official_name: Union of Myanmar
demonym: [Burmese, Myanma]
tld: .mm
BI:
short_name: Burundi
iso_3166_1_alpha2: BI
official_name: Republic of Burundi
demonym: Burundian
tld: .bi
KH:
short_name: Cambodia
iso_3166_1_alpha2: KH
official_name: Kingdom of Cambodia
demonym: Khmer
tld: .kh
CM:
short_name: Cameroon
iso_3166_1_alpha2: CM
official_name: Republic of Cameroon
demonym: Cameroonian
tld: .cm
CA:
short_name: Canada
iso_3166_1_alpha2: CA
demonym: Canadian
tld: .ca
CV:
short_name: Cape Verde
iso_3166_1_alpha2: CV
official_name: Republic of Cape Verde
demonym: Cape Verdean
tld: .cv
CF:
short_name: Central African Republic
iso_3166_1_alpha2: CF
official_name: Central African Republic
demonym: Central African
tld: .cf
TD:
short_name: Chad
iso_3166_1_alpha2: TD
official_name: Republic of Chad
demonym: Chadian
tld: .td
CL:
short_name: Chile
iso_3166_1_alpha2: CL
official_name: Republic of Chile
demonym: Chilean
tld: .cl
CN:
short_name: China
iso_3166_1_alpha2: CN
official_name: People’s Republic of China
demonym: Chinese
tld: .cn
CO:
short_name: Colombia
iso_3166_1_alpha2: CO
official_name: Republic of Colombia
demonym: Colombian
tld: .co
KM:
short_name: Comoros
iso_3166_1_alpha2: KM
official_name: Union of the Comoros
demonym: Comorian
tld: .km
CD:
short_name: Democratic Republic of the Congo
sortable_name: Congo, Democratic Republic of the
iso_3166_1_alpha2: CD
demonym: Congolese
tld: .cd
CG:
short_name: Republic of the Congo
sortable_name: Congo, Republic of the
iso_3166_1_alpha2: CG
demonym: Congolese
tld: .cg
CR:
short_name: Costa Rica
iso_3166_1_alpha2: CR
official_name: Republic of Costa Rica
demonym: Costa Rican
tld: .cr
CI:
short_name: Côte d’Ivoire
iso_3166_1_alpha2: CI
official_name: Republic of Côte d’Ivoire
demonym: [Ivorian, Ivoirian]
tld: .ci
HR:
short_name: Croatia
iso_3166_1_alpha2: HR
official_name: Republic of Croatia
demonym: Croat
tld: .hr
CU:
short_name: Cuba
iso_3166_1_alpha2: CU
official_name: Republic of Cuba
demonym: Cuban
tld: .cu
CY:
short_name: Cyprus
iso_3166_1_alpha2: CY
official_name: Republic of Cyprus
demonym: Cypriot
tld: .cy
CZ:
short_name: Czech Republic
iso_3166_1_alpha2: CZ
official_name: Czech Republic
demonym: Czech
tld: .cz
DK:
short_name: Denmark
iso_3166_1_alpha2: DK
official_name: Kingdom of Denmark
demonym: Danish
tld: .dk
DJ:
short_name: Djibouti
iso_3166_1_alpha2: DJ
official_name: Republic of Djibouti
demonym: Djiboutian
tld: .dj
DM:
short_name: Dominica
iso_3166_1_alpha2: DM
official_name: Commonwealth of Dominica
demonym: Dominican
tld: .dm
DO:
short_name: Dominican Republic
iso_3166_1_alpha2: DO
official_name: Dominican Republic
demonym: Dominican
tld: .do
TL:
short_name: East Timor
iso_3166_1_alpha2: TL
official_name: Democratic Republic of Timor-Leste
demonym: East Timorese
tld: .tl
EC:
short_name: Ecuador
iso_3166_1_alpha2: EC
official_name: Republic of Ecuador
demonym: Ecuadorian
tld: .ec
EG:
short_name: Egypt
iso_3166_1_alpha2: EG
official_name: Arab Republic of Egypt
demonym: Egyptian
tld: .eg
SV:
short_name: El Salvador
iso_3166_1_alpha2: SV
official_name: Republic of El Salvador
demonym: [Salvadorian, Salvadorean, Salvadoran, Central American]
tld: .sv
GQ:
short_name: Equatorial Guinea
iso_3166_1_alpha2: GQ
demonym: [Equatoguinean, Equatorial Guinean]
tld: .gq
ER:
short_name: Eritrea
iso_3166_1_alpha2: ER
official_name: State of Eritrea
demonym: Eritrean
tld: .er
EE:
short_name: Estonia
iso_3166_1_alpha2: EE
official_name: Republic of Estonia
demonym: Estonian
tld: .ee
ET:
short_name: Ethiopia
iso_3166_1_alpha2: ET
official_name: Federal Democratic Republic of Ethiopia
demonym: Ethiopian
tld: .et
FJ:
short_name: Fiji
iso_3166_1_alpha2: FJ
official_name: Republic of the Fiji Islands
demonym: [Fiji Islander, Fijian]
tld: .fj
FI:
short_name: Finland
iso_3166_1_alpha2: FI
official_name: Republic of Finland
demonym: [Finn, Finnish]
tld: .fi
FR:
short_name: France
iso_3166_1_alpha2: FR
official_name: French Republic
demonym: French
tld: .fr
GA:
short_name: Gabon
iso_3166_1_alpha2: GA
official_name: Gabonese Republic
demonym: [Gabonese, Gabonaise]
tld: .ga
GM:
short_name: The Gambia
sortable_name: Gambia, The
iso_3166_1_alpha2: GM
official_name: Republic of the Gambia
demonym: Gambian
tld: .gm
GE:
short_name: Georgia
iso_3166_1_alpha2: GE
demonym: Georgian
tld: .ge
DE:
short_name: Germany
iso_3166_1_alpha2: DE
official_name: Federal Republic of Germany
demonym: German
tld: .de
GH:
short_name: Ghana
iso_3166_1_alpha2: GH
official_name: Republic of Ghana
demonym: Ghanaian
tld: .gh
GR:
short_name: Greece
iso_3166_1_alpha2: GR
official_name: Hellenic Republic
demonym: Greek
tld: .gr
GD:
short_name: Grenada
iso_3166_1_alpha2: GD
demonym: [Grenadian, Greenz, Greens]
tld: .gd
GT:
short_name: Guatemala
iso_3166_1_alpha2: GT
official_name: Republic of Guatemala
demonym: Guatemalan
tld: .gt
GN:
short_name: Guinea
iso_3166_1_alpha2: GN
official_name: Republic of Guinea
demonym: Guinean
tld: .gn
GW:
short_name: Guinea-Bissau
iso_3166_1_alpha2: GW
official_name: Republic of Guinea-Bissau
demonym: Bissau-Guinean
tld: .gw
GY:
short_name: Guyana
iso_3166_1_alpha2: GY
official_name: Co-operative Republic of Guyana
demonym: Guyanese
tld: .gy
HT:
short_name: Haiti
iso_3166_1_alpha2: HT
official_name: Republic of Haiti
demonym: Haitian
tld: .ht
HN:
short_name: Honduras
iso_3166_1_alpha2: HN
official_name: Republic of Honduras
demonym: Honduran
tld: .hn
HU:
short_name: Hungary
iso_3166_1_alpha2: HU
official_name: Hungarian Republic
demonym: Hungarian
tld: .hu
IS:
short_name: Iceland
iso_3166_1_alpha2: IS
official_name: Iceland
demonym: Icelander
tld: .is
IN:
short_name: India
iso_3166_1_alpha2: IN
official_name: Republic of India
demonym: Indian
tld: .in
ID:
short_name: Indonesia
iso_3166_1_alpha2: ID
official_name: Republic of Indonesia
demonym: Indonesian
tld: .id
IR:
short_name: Iran
iso_3166_1_alpha2: IR
official_name: Islamic Republic of Iran
demonym: Iranian
tld: .ir
IQ:
short_name: Iraq
iso_3166_1_alpha2: IQ
official_name: Republic of Iraq
demonym: Iraqi
tld: .iq
IE:
short_name: Ireland
iso_3166_1_alpha2: IE
official_name: Ireland
demonym: Irish
tld: .ie
IL:
short_name: Israel
iso_3166_1_alpha2: IL
official_name: State of Israel
demonym: Israeli
tld: .il
IT:
short_name: Italy
iso_3166_1_alpha2: IT
official_name: Italian Republic
demonym: Italian
tld: .it
JM:
short_name: Jamaica
iso_3166_1_alpha2: JM
official_name: Jamaica
demonym: Jamaican
tld: .jm
JP:
short_name: Japan
iso_3166_1_alpha2: JP
official_name: Japan
demonym: Japanese
tld: .jp
JO:
short_name: Jordan
iso_3166_1_alpha2: JO
official_name: Hashemite Kingdom of Jordan
demonym: Jordanian
tld: .jo
KZ:
short_name: Kazakhstan
iso_3166_1_alpha2: KZ
official_name: Republic of Kazakhstan
demonym: Kazakh
tld: .kz
KE:
short_name: Kenya
iso_3166_1_alpha2: KE
official_name: Republic of Kenya
demonym: Kenyan
tld: .ke
KI:
short_name: Kiribati
iso_3166_1_alpha2: KI
official_name: Republic of Kiribati
demonym: I-Kiribati
tld: .ki
KP:
short_name: North Korea
iso_3166_1_alpha2: KP
official_name: Democratic People’s Republic of Korea
demonym: North Korean
tld: .kp
KR:
short_name: South Korea
iso_3166_1_alpha2: KR
official_name: Republic of Korea
demonym: South Korean
tld: .kr
KW:
short_name: Kuwait
iso_3166_1_alpha2: KW
official_name: State of Kuwait
demonym: Kuwaiti
tld: .kw
KG:
short_name: Kyrgyzstan
iso_3166_1_alpha2: KG
official_name: Kyrgyz Republic
demonym: [Kyrgyz, Kyrgyzstani]
tld: .kg
LA:
short_name: Laos
iso_3166_1_alpha2: LA
official_name: Lao People’s Democratic Republic
demonym: Laotian
tld: .la
LV:
short_name: Latvia
iso_3166_1_alpha2: LV
official_name: Republic of Latvia
demonym: Latvian
tld: .lv
LB:
short_name: Lebanon
iso_3166_1_alpha2: LB
official_name: Republic of Lebanon
demonym: Lebanese
tld: .lb
LS:
short_name: Lesotho
iso_3166_1_alpha2: LS
official_name: Kingdom of Lesotho
demonym: Mosotho
tld: .ls
LR:
short_name: Liberia
iso_3166_1_alpha2: LR
official_name: Republic of Liberia
demonym: Liberian
tld: .lr
LY:
short_name: Libya
iso_3166_1_alpha2: LY
official_name: Great Socialist People’s Libyan Arab Jamahiriya
demonym: Libyan
tld: .ly
LI:
short_name: Liechtenstein
iso_3166_1_alpha2: LI
official_name: Principality of Liechtenstein
demonym:
male: Liechtensteiner
female: Liechtensteinerin
tld: .li
LT:
short_name: Lithuania
iso_3166_1_alpha2: LT
official_name: Republic of Lithuania
demonym: Lithuanian
tld: .lt
LU:
short_name: Luxembourg
iso_3166_1_alpha2: LU
official_name: Grand Duchy of Luxembourg
demonym: Luxembourger
tld: .lu
MK:
short_name: Macedonia
iso_3166_1_alpha2: MK
official_name: Republic of Macedonia
demonym: Macedonian
tld: .mk
MG:
short_name: Madagascar
iso_3166_1_alpha2: MG
demonym: Malagasy
tld: .mg
MW:
short_name: Malawi
iso_3166_1_alpha2: MW
official_name: Republic of Malaŵi
demonym: Malawian
tld: .mw
MY:
short_name: Malaysia
iso_3166_1_alpha2: MY
official_name: Malaysia
demonym: Malaysian
tld: .my
MV:
short_name: Maldives
iso_3166_1_alpha2: MV
official_name: Republic of Maldives
demonym: Maldivian
tld: .mv
ML:
short_name: Mali
iso_3166_1_alpha2: ML
official_name: Republic of Mali
demonym: Malian
tld: .ml
MT:
short_name: Malta
iso_3166_1_alpha2: MT
official_name: Republic of Malta
demonym: Maltese
tld: .mt
MH:
short_name: Marshall Islands
iso_3166_1_alpha2: MH
demonym: Marshallese
tld: .mh
MR:
short_name: Mauritania
iso_3166_1_alpha2: MR
official_name: Islamic Republic of Mauritania
demonym: Mauritanian
tld: .mr
MU:
short_name: Mauritius
iso_3166_1_alpha2: MU
official_name: Republic of Mauritius
demonym: Mauritian
tld: .mu
MX:
short_name: Mexico
iso_3166_1_alpha2: MX
official_name: United Mexican States
demonym: Mexican
tld: .mx
FM:
short_name: Federated States of Micronesia
sortable_name: Micronesia, Federated States of
iso_3166_1_alpha2: FM
official_name: Federated States of Micronesia
demonym: Micronesian
tld: .fm
MD:
short_name: Moldova
iso_3166_1_alpha2: MD
official_name: Republic of Moldova
demonym: [Moldovan, Moldavian]
tld: .md
MC:
short_name: Monaco
iso_3166_1_alpha2: MC
official_name: Principality of Monaco
demonym: Monégasque
tld: .mc
MN:
short_name: Mongolia
iso_3166_1_alpha2: MN
official_name: Mongolia
demonym: Mongolian
tld: .mn
ME:
short_name: Montenegro
iso_3166_1_alpha2: ME
official_name: Montenegro
demonym: Montenegrin
tld: .me
MA:
short_name: Morocco
iso_3166_1_alpha2: MA
official_name: Kingdom of Morocco
demonym: Moroccan
tld: .ma
MZ:
short_name: Mozambique
iso_3166_1_alpha2: MZ
official_name: Republic of Mozambique
demonym: Mozambican
tld: .mz
NA:
short_name: Namibia
iso_3166_1_alpha2: NA
official_name: Republic of Namibia
demonym: Namibian
tld: .na
NR:
short_name: Nauru
iso_3166_1_alpha2: NR
official_name: Republic of Nauru
demonym: Nauruan
tld: .nr
NP:
short_name: Nepal
iso_3166_1_alpha2: NP
demonym: Nepali
tld: .np
NL:
short_name: Netherlands
iso_3166_1_alpha2: NL
official_name: Kingdom of the Netherlands
tld: .nl
NZ:
short_name: New Zealand
iso_3166_1_alpha2: NZ
official_name: New Zealand
demonym: New Zealander
tld: .nz
NI:
short_name: Nicaragua
iso_3166_1_alpha2: NI
official_name: Republic of Nicaragua
demonym: Nicaraguan
tld: .ni
NE:
short_name: Niger
iso_3166_1_alpha2: NE
official_name: Republic of Niger
demonym: Nigerien
tld: .ne
NG:
short_name: Nigeria
iso_3166_1_alpha2: NG
official_name: Federal Republic of Nigeria
demonym: Nigerian
tld: .ng
NO:
short_name: Norway
iso_3166_1_alpha2: NO
official_name: Kingdom of Norway
demonym: Norwegian
tld: .no
OM:
short_name: Oman
iso_3166_1_alpha2: OM
official_name: Sultanate of Oman
demonym: Omani
tld: .om
PK:
short_name: Pakistan
iso_3166_1_alpha2: PK
official_name: Islamic Republic of Pakistan
demonym: Pakistani
tld: .pk
PW:
short_name: Palau
iso_3166_1_alpha2: PW
official_name: Republic of Palau
demonym: Palauan
tld: .pw
PA:
short_name: Panama
iso_3166_1_alpha2: PA
official_name: Republic of Panama
demonym: Panamanian
tld: .pa
PG:
short_name: Papua New Guinea
iso_3166_1_alpha2: PG
official_name: Independent State of Papua New Guinea
demonym: Papua New Guinean
tld: .pg
PY:
short_name: Paraguay
iso_3166_1_alpha2: PY
official_name: Republic of Paraguay
demonym: Paraguayan
tld: .py
PE:
short_name: Peru
iso_3166_1_alpha2: PE
official_name: Republic of Peru
demonym: Peruvian
tld: .pe
PH:
short_name: Philippines
iso_3166_1_alpha2: PH
official_name: Republic of the Philippines
demonym:
male: Filipino
female: Filipina
tld: .ph
PL:
short_name: Poland
iso_3166_1_alpha2: PL
official_name: Republic of Poland
demonym: [Pole, Polish]
tld: .pl
PT:
short_name: Portugal
iso_3166_1_alpha2: PT
official_name: Portuguese Republic
demonym: Portuguese
tld: .pt
QA:
short_name: Qatar
iso_3166_1_alpha2: QA
official_name: State of Qatar
demonym: Qatari
tld: .qa
RO:
short_name: Romania
iso_3166_1_alpha2: RO
official_name: Romania
demonym: Romanian
tld: .ro
RU:
short_name: Russia
iso_3166_1_alpha2: RU
official_name: Russian Federation
demonym: Russian
tld: .ru
RW:
short_name: Rwanda
iso_3166_1_alpha2: RW
official_name: Republic of Rwanda
demonym: [Rwandan, Rwandese]
tld: .rw
KN:
short_name: Saint Kitts and Nevis
iso_3166_1_alpha2: KN
official_name: Federation of Saint Kitts and Nevis
demonym: [Kittitian, Kittian, Nevisian]
tld: .kn
LC:
short_name: Saint Lucia
iso_3166_1_alpha2: LC
demonym: Saint Lucian
tld: .lc
VC:
short_name: Saint Vincent and the Grenadines
iso_3166_1_alpha2: VC
official_name: Saint Vincent and the Grenadines
demonym: Vincentian
tld: .vc
WS:
short_name: Samoa
iso_3166_1_alpha2: WS
official_name: Samoa
demonym: Samoan
tld: .ws
SM:
short_name: San Marino
iso_3166_1_alpha2: SM
official_name: Republic of San Marino
demonym: Sammarinese
tld: .sm
ST:
short_name: São Tomé and Príncipe
iso_3166_1_alpha2: ST
official_name: Democratic Republic of São Tomé and Príncipe
demonym: Santomean
tld: .st
SA:
short_name: Saudi Arabia
iso_3166_1_alpha2: SA
official_name: Kingdom of Saudi Arabia
demonym: [Saudi, Saudi Arabian]
tld: .sa
SN:
short_name: Senegal
iso_3166_1_alpha2: SN
official_name: Republic of Senegal
demonym: Senegalese
tld: .sn
RS:
short_name: Serbia
iso_3166_1_alpha2: RS
official_name: Republic of Serbia
demonym: Serbian
tld: .rs
SC:
short_name: Seychelles
iso_3166_1_alpha2: SC
official_name: Republic of Seychelles
demonym:
- Seychellois
- Seychelloise
tld: .sc
SL:
short_name: Sierra Leone
iso_3166_1_alpha2: SL
official_name: Republic of Sierra Leone
demonym: Sierra Leonean
tld: .sl
SG:
short_name: Singapore
iso_3166_1_alpha2: SG
official_name: Republic of Singapore
demonym: Singaporean
tld: .sg
SK:
short_name: Slovakia
iso_3166_1_alpha2: SK
official_name: Slovak Republic
demonym: Slovak
tld: .sk
SI:
short_name: Slovenia
iso_3166_1_alpha2: SI
official_name: Republic of Slovenia
demonym: Slovene
tld: .si
SB:
short_name: Solomon Islands
iso_3166_1_alpha2: SB
official_name: Solomon Islands
demonym: Solomon Islander
tld: .sb
SO:
short_name: Somalia
iso_3166_1_alpha2: SO
official_name: Republic of Somalia