-
Notifications
You must be signed in to change notification settings - Fork 33
/
country-data.json
1829 lines (1829 loc) · 42.4 KB
/
country-data.json
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
{
"World": {
"name": "Earth",
"longname": "",
"sovereignty": "",
"region": "",
"population": 7658209137
},
"AD": {
"name": "Andorra",
"longname": "The Principality of Andorra",
"sovereignty": "UN",
"region": "EU",
"population": 77543
},
"AE": {
"name": "United Arab Emirates",
"longname": "The United Arab Emirates",
"sovereignty": "UN",
"region": "AS",
"population": 9890400
},
"AF": {
"name": "Afghanistan",
"longname": "The Islamic Republic of Afghanistan",
"sovereignty": "UN",
"region": "AS",
"population": 32225560
},
"AG": {
"name": "Antigua and Barbuda",
"longname": "Antigua and Barbuda",
"sovereignty": "UN",
"region": "NA",
"population": 96453
},
"AI": {
"name": "Anguilla",
"longname": "Anguilla",
"sovereignty": "United Kingdom",
"region": "NA",
"population": 14869
},
"AL": {
"name": "Albania",
"longname": "The Republic of Albania",
"sovereignty": "UN",
"region": "EU",
"population": 2862427
},
"AM": {
"name": "Armenia",
"longname": "The Republic of Armenia",
"sovereignty": "UN",
"region": "AS",
"population": 2957500
},
"AO": {
"name": "Angola",
"longname": "The Republic of Angola",
"sovereignty": "UN",
"region": "AF",
"population": 31127674
},
"AQ": {
"name": "Antarctica",
"longname": "All land and ice shelves south of the 60th parallel south",
"sovereignty": "Antarctic Treaty",
"region": "AN",
"population": 0
},
"AR": {
"name": "Argentina",
"longname": "The Argentine Republic",
"sovereignty": "UN",
"region": "SA",
"population": 44938712
},
"AS": {
"name": "American Samoa",
"longname": "The Territory of American Samoa",
"sovereignty": "United States",
"region": "OC",
"population": 55191
},
"AT": {
"name": "Austria",
"longname": "The Republic of Austria",
"sovereignty": "UN",
"region": "EU",
"population": 8902600
},
"AU": {
"name": "Australia",
"longname": "The Commonwealth of Australia",
"sovereignty": "UN",
"region": "OC",
"population": 25646823,
"provinces": {
"AU-ACT": { "name": "Australian Capital Territory", "capital": "Canberra", "population": 426709 },
"AU-NSW": { "name": "New South Wales", "capital": "Sydney", "population": 8089526 },
"AU-NT": { "name": "Northern Territory", "capital": "Darwin", "population": 245869 },
"AU-QLD": { "name": "Queensland", "capital": "Brisbane", "population": 5095100 },
"AU-SA": { "name": "South Australia", "capital": "Adelaide", "population": 1751693 },
"AU-TAS": { "name": "Tasmania", "capital": "Hobart", "population": 534281 },
"AU-VIC": { "name": "Victoria", "capital": "Melbourne", "population": 6594804 },
"AU-WA": { "name": "Western Australia", "capital": "Perth", "population": 2621680 }
}
},
"AW": {
"name": "Aruba",
"longname": "Aruba",
"sovereignty": "Netherlands",
"region": "SA",
"population": 112309
},
"AX": {
"name": "Åland Islands",
"longname": "Åland",
"sovereignty": "Finland",
"region": "EU",
"population": 29789
},
"AZ": {
"name": "Azerbaijan",
"longname": "The Republic of Azerbaijan",
"sovereignty": "UN",
"region": "AS",
"population": 10067108
},
"BA": {
"name": "Bosnia and Herzegovina",
"longname": "Bosnia and Herzegovina",
"sovereignty": "UN",
"region": "EU",
"population": 3301000
},
"BB": {
"name": "Barbados",
"longname": "Barbados",
"sovereignty": "UN",
"region": "SA",
"population": 287025
},
"BD": {
"name": "Bangladesh",
"longname": "The People's Republic of Bangladesh",
"sovereignty": "UN",
"region": "AS",
"population": 168270652
},
"BE": {
"name": "Belgium",
"longname": "The Kingdom of Belgium",
"sovereignty": "UN",
"region": "EU",
"population": 11524454
},
"BF": {
"name": "Burkina Faso",
"longname": "Burkina Faso",
"sovereignty": "UN",
"region": "AF",
"population": 20870060
},
"BG": {
"name": "Bulgaria",
"longname": "The Republic of Bulgaria",
"sovereignty": "UN",
"region": "EU",
"population": 7000039
},
"BH": {
"name": "Bahrain",
"longname": "The Kingdom of Bahrain",
"sovereignty": "UN",
"region": "AS",
"population": 1569446
},
"BI": {
"name": "Burundi",
"longname": "The Republic of Burundi",
"sovereignty": "UN",
"region": "AF",
"population": 10953317
},
"BJ": {
"name": "Benin",
"longname": "The Republic of Benin",
"sovereignty": "UN",
"region": "AF",
"population": 11733059
},
"BL": {
"name": "Saint Barthelemy",
"longname": "The Collectivity of Saint-Barthélemy",
"sovereignty": "France",
"region": "NA",
"population": 9793
},
"BM": {
"name": "Bermuda",
"longname": "Bermuda",
"sovereignty": "United Kingdom",
"region": "NA",
"population": 64027
},
"BN": {
"name": "Brunei",
"longname": "The Nation of Brunei",
"sovereignty": "UN",
"region": "AS",
"population": 442400
},
"BO": {
"name": "Bolivia",
"longname": "The Plurinational State of Bolivia",
"sovereignty": "UN",
"region": "SA",
"population": 11469896
},
"BQ": {
"name": "Bonaire, Sint Eustatius and Saba",
"longname": "Bonaire, Sint Eustatius and Saba",
"sovereignty": "Netherlands",
"region": "SA",
"population": 25157
},
"BR": {
"name": "Brazil",
"longname": "The Federative Republic of Brazil",
"sovereignty": "UN",
"region": "SA",
"population": 211257279
},
"BS": {
"name": "Bahamas",
"longname": "The Commonwealth of The Bahamas",
"sovereignty": "UN",
"region": "NA",
"population": 385340
},
"BT": {
"name": "Bhutan",
"longname": "The Kingdom of Bhutan",
"sovereignty": "UN",
"region": "AS",
"population": 741672
},
"BV": {
"name": "Bouvet Island",
"longname": "Bouvet Island",
"sovereignty": "Norway",
"region": "AN",
"population": 0
},
"BW": {
"name": "Botswana",
"longname": "The Republic of Botswana",
"sovereignty": "UN",
"region": "AF",
"population": 2338851
},
"BY": {
"name": "Belarus",
"longname": "The Republic of Belarus",
"sovereignty": "UN",
"region": "EU",
"population": 9413446
},
"BZ": {
"name": "Belize",
"longname": "Belize",
"sovereignty": "UN",
"region": "NA",
"population": 408487
},
"CA": {
"name": "Canada",
"longname": "Canada",
"sovereignty": "UN",
"region": "NA",
"population": 37958039,
"provinces": {
"CA-AB": { "name": "Alberta", "capital": "Edmonton", "population": 4413146 },
"CA-BC": { "name": "British Columbia", "capital": "Victoria", "population": 5110917 },
"CA-MB": { "name": "Manitoba", "capital": "Winnipeg", "population": 1377517 },
"CA-NB": { "name": "New Brunswick", "capital": "Fredericton", "population": 779993 },
"CA-NL": { "name": "Newfoundland and Labrador", "capital": "St. John's", "population": 521365 },
"CA-NT": { "name": "Northwest Territories", "capital": "Yellowknife", "population": 44904 },
"CA-NU": { "name": "Nunavut", "capital": "Iqaluit", "population": 39097 },
"CA-NS": { "name": "Nova Scotia", "capital": "Halifax", "population": 977457 },
"CA-ON": { "name": "Ontario", "capital": "Toronto", "population": 14711827 },
"CA-PE": { "name": "Prince Edward Island", "capital": "Charlottetown", "population": 158158 },
"CA-QC": { "name": "Quebec", "capital": "Quebec City", "population": 8537674 },
"CA-SK": { "name": "Saskatchewan", "capital": "Regina", "population": 1181666 },
"CA-YT": { "name": "Yukon", "capital": "Whitehorse", "population": 41078 }
}
},
"CC": {
"name": "Cocos (Keeling) Islands",
"longname": "The Territory of Cocos (Keeling) Islands",
"sovereignty": "Australia",
"region": "AS",
"population": 544
},
"CD": {
"name": "Congo (Dem. Rep.)",
"longname": "The Democratic Republic of the Congo",
"altnames": "Democratic Republic of the Congo",
"sovereignty": "UN",
"region": "AF",
"population": 89561404
},
"CF": {
"name": "Central African Republic",
"longname": "The Central African Republic",
"sovereignty": "UN",
"region": "AF",
"population": 5496011
},
"CG": {
"name": "Congo",
"longname": "The Republic of the Congo",
"altnames": "Republic of the Congo",
"sovereignty": "UN",
"region": "AF",
"population": 5518092
},
"CH": {
"name": "Switzerland",
"longname": "The Swiss Confederation",
"sovereignty": "UN",
"region": "EU",
"population": 8586550
},
"CI": {
"name": "Côte d'Ivoire",
"longname": "The Republic of Côte d'Ivoire",
"altnames": "Ivory Coast",
"sovereignty": "UN",
"region": "AF",
"population": 25823071
},
"CK": {
"name": "Cook Islands",
"longname": "The Cook Islands",
"sovereignty": "New Zealand",
"region": "OC",
"population": 17518
},
"CL": {
"name": "Chile",
"longname": "The Republic of Chile",
"sovereignty": "UN",
"region": "SA",
"population": 19107216
},
"CM": {
"name": "Cameroon",
"longname": "The Republic of Cameroon",
"sovereignty": "UN",
"region": "AF",
"population": 26545864
},
"CN": {
"name": "China",
"longname": "The People's Republic of China",
"sovereignty": "UN",
"region": "AS",
"population": 1401768800,
"provinces": {
"CN-AH": { "name": "Anhui", "capital": "Hefei", "population": 59500510 },
"CN-BJ": { "name": "Beijing", "capital": "Beijing", "population": 19612368 },
"CN-CQ": { "name": "Chongqing", "capital": "Chongqing", "population": 28846170 },
"CN-FJ": { "name": "Fujian", "capital": "Fuzhou", "population": 36894216 },
"CN-GD": { "name": "Guangdong", "capital": "Guangzhou", "population": 104303132 },
"CN-GS": { "name": "Gansu", "capital": "Lanzhou", "population": 25575254 },
"CN-GX": { "name": "Guangxi", "capital": "Nanning", "population": 46026629 },
"CN-GZ": { "name": "Guizhou", "capital": "Guiyang", "population": 34746468 },
"CN-HA": { "name": "Henan", "capital": "Zhengzhou", "population": 94023567 },
"CN-HB": { "name": "Hubei", "capital": "Wuhan", "population": 57237740 },
"CN-HE": { "name": "Hebei", "capital": "Shijiazhuang", "population": 71854202 },
"CN-HI": { "name": "Hainan", "capital": "Haikou", "population": 9171300 },
"CN-HK": { "name": "Hong Kong", "capital": "Hong Kong", "population": 7061200 },
"CN-HL": { "name": "Heilongjiang", "capital": "Harbin", "population": 38312224 },
"CN-HN": { "name": "Hunan", "capital": "Changsha", "population": 65683722 },
"CN-JL": { "name": "Jilin", "capital": "Changchun", "population": 27462297 },
"CN-JS": { "name": "Jiangsu", "capital": "Nanjing", "population": 78659903 },
"CN-JX": { "name": "Jiangxi", "capital": "Nanchang", "population": 44567475 },
"CN-LN": { "name": "Liaoning", "capital": "Shenyang", "population": 43746323 },
"CN-MO": { "name": "Macau", "capital": "Macau", "population": 552300 },
"CN-NM": { "name": "Inner Mongolia", "capital": "Hohhot", "population": 24706321 },
"CN-NX": { "name": "Ningxia", "capital": "Yinchuan", "population": 6301350 },
"CN-QH": { "name": "Qinghai", "capital": "Xining", "population": 5626722 },
"CN-SC": { "name": "Sichuan", "capital": "Chengdu", "population": 80418200 },
"CN-SD": { "name": "Shandong", "capital": "Jinan", "population": 95793065 },
"CN-SH": { "name": "Shanghai", "capital": "Shanghai", "population": 23019148 },
"CN-SN": { "name": "Shaanxi", "capital": "Xi'an", "population": 37327378 },
"CN-SX": { "name": "Shanxi", "capital": "Taiyuan", "population": 35712111 },
"CN-TJ": { "name": "Tianjin", "capital": "Tianjin", "population": 12938224 },
"CN-XJ": { "name": "Xinjiang", "capital": "Ürümqi", "population": 21813334 },
"CN-XZ": { "name": "Tibet", "capital": "Lhasa", "population": 3002166 },
"CN-YN": { "name": "Yunnan", "capital": "Kunming", "population": 45966239 },
"CN-ZJ": { "name": "Zhejiang", "capital": "Hangzhou", "population": 54426891 }
}
},
"CO": {
"name": "Colombia",
"longname": "The Republic of Colombia",
"sovereignty": "UN",
"region": "SA",
"population": 49395678
},
"CR": {
"name": "Costa Rica",
"longname": "The Republic of Costa Rica",
"sovereignty": "UN",
"region": "NA",
"population": 5058007
},
"CU": {
"name": "Cuba",
"longname": "The Republic of Cuba",
"sovereignty": "UN",
"region": "NA",
"population": 11209628
},
"CV": {
"name": "Cabo Verde",
"longname": "The Republic of Cabo Verde",
"altnames": "Cape Verde",
"sovereignty": "UN",
"region": "AF",
"population": 550483
},
"CW": {
"name": "Curacao",
"longname": "The Country of Curaçao",
"sovereignty": "Netherlands",
"region": "SA",
"population": 158665
},
"CX": {
"name": "Christmas Island",
"longname": "The Territory of Christmas Island",
"sovereignty": "Australia",
"region": "AS",
"population": 1843
},
"CY": {
"name": "Cyprus",
"longname": "The Republic of Cyprus",
"sovereignty": "UN",
"region": "EU",
"population": 875900
},
"CZ": {
"name": "Czechia",
"longname": "The Czech Republic",
"altnames": "Czech Republic",
"sovereignty": "UN",
"region": "EU",
"population": 10681161
},
"DE": {
"name": "Germany",
"longname": "The Federal Republic of Germany",
"sovereignty": "UN",
"region": "EU",
"population": 83149300
},
"DJ": {
"name": "Djibouti",
"longname": "The Republic of Djibouti",
"sovereignty": "UN",
"region": "AF",
"population": 1078373
},
"DK": {
"name": "Denmark",
"longname": "The Kingdom of Denmark",
"sovereignty": "UN",
"region": "EU",
"population": 5822763
},
"DM": {
"name": "Dominica",
"longname": "The Commonwealth of Dominica",
"sovereignty": "UN",
"region": "NA",
"population": 71808
},
"DO": {
"name": "Dominican Republic",
"longname": "The Dominican Republic",
"sovereignty": "UN",
"region": "NA",
"population": 10358320
},
"DZ": {
"name": "Algeria",
"longname": "The People's Democratic Republic of Algeria",
"sovereignty": "UN",
"region": "AF",
"population": 43000000
},
"EC": {
"name": "Ecuador",
"longname": "The Republic of Ecuador",
"sovereignty": "UN",
"region": "SA",
"population": 17444556
},
"EE": {
"name": "Estonia",
"longname": "The Republic of Estonia",
"sovereignty": "UN",
"region": "EU",
"population": 1328360
},
"EG": {
"name": "Egypt",
"longname": "The Arab Republic of Egypt",
"sovereignty": "UN",
"region": "AF",
"population": 100131097
},
"EH": {
"name": "Western Sahara",
"longname": "The Sahrawi Arab Democratic Republic",
"altnames": "Sahrawi Arab Democratic Republic",
"sovereignty": "disputed",
"region": "AF",
"population": 582463
},
"ER": {
"name": "Eritrea",
"longname": "The State of Eritrea",
"sovereignty": "UN",
"region": "AF",
"population": 582463
},
"ES": {
"name": "Spain",
"longname": "The Kingdom of Spain",
"sovereignty": "UN",
"region": "EU",
"population": 47100396
},
"ET": {
"name": "Ethiopia",
"longname": "The Federal Democratic Republic of Ethiopia",
"sovereignty": "UN",
"region": "AF",
"population": 98665000
},
"FI": {
"name": "Finland",
"longname": "The Republic of Finland",
"sovereignty": "UN",
"region": "EU",
"population": 5527573
},
"FJ": {
"name": "Fiji",
"longname": "The Republic of Fiji",
"sovereignty": "UN",
"region": "OC",
"population": 884887
},
"FK": {
"name": "Falkland Islands",
"longname": "The Falkland Islands",
"sovereignty": "United Kingdom",
"region": "SA",
"population": 3198
},
"FM": {
"name": "Micronesia",
"longname": "The Federated States of Micronesia",
"sovereignty": "UN",
"region": "OC",
"population": 112640
},
"FO": {
"name": "Faroe Islands",
"longname": "The Faroe Islands",
"sovereignty": "Denmark",
"region": "EU",
"population": 52124
},
"FR": {
"name": "France",
"longname": "The French Republic",
"sovereignty": "UN",
"region": "EU",
"population": 67064000
},
"GA": {
"name": "Gabon",
"longname": "The Gabonese Republic",
"sovereignty": "UN",
"region": "AF",
"population": 2172579
},
"GB": {
"name": "United Kingdom",
"longname": "The United Kingdom of Great Britain and Northern Ireland",
"sovereignty": "UN",
"region": "EU",
"population": 66435600
},
"GD": {
"name": "Grenada",
"longname": "Grenada",
"sovereignty": "UN",
"region": "NA",
"population": 112003
},
"GE": {
"name": "Georgia",
"longname": "Georgia",
"sovereignty": "UN",
"region": "AS",
"population": 3723464
},
"GF": {
"name": "French Guiana",
"longname": "Guyane",
"sovereignty": "France",
"region": "SA",
"population": 290691
},
"GG": {
"name": "Guernsey",
"longname": "The Bailiwick of Guernsey",
"sovereignty": "British Crown",
"region": "EU",
"population": 63026
},
"GH": {
"name": "Ghana",
"longname": "The Republic of Ghana",
"sovereignty": "UN",
"region": "AF",
"population": 30280811
},
"GI": {
"name": "Gibraltar",
"longname": "Gibraltar",
"sovereignty": "United Kingdom",
"region": "EU",
"population": 32194
},
"GL": {
"name": "Greenland",
"longname": "Kalaallit Nunaat",
"sovereignty": "Denmark",
"region": "NA",
"population": 56081
},
"GM": {
"name": "Gambia",
"longname": "The Republic of The Gambia",
"sovereignty": "UN",
"region": "AF",
"population": 2347706
},
"GN": {
"name": "Guinea",
"longname": "The Republic of Guinea",
"sovereignty": "UN",
"region": "AF",
"population": 12218357
},
"GP": {
"name": "Guadeloupe",
"longname": "Guadeloupe",
"sovereignty": "France",
"region": "NA",
"population": 395700
},
"GQ": {
"name": "Equatorial Guinea",
"longname": "The Republic of Equatorial Guinea",
"sovereignty": "UN",
"region": "AF",
"population": 1358276
},
"GR": {
"name": "Greece",
"longname": "The Hellenic Republic",
"sovereignty": "UN",
"region": "EU",
"population": 10724599
},
"GS": {
"name": "South Georgia and the South Sandwich Islands",
"longname": "South Georgia and the South Sandwich Islands",
"sovereignty": "United Kingdom",
"region": "AN",
"population": 30
},
"GT": {
"name": "Guatemala",
"longname": "The Republic of Guatemala",
"sovereignty": "UN",
"region": "NA",
"population": 16604026
},
"GU": {
"name": "Guam",
"longname": "The Territory of Guam",
"sovereignty": "United States",
"region": "OC",
"population": 165768
},
"GW": {
"name": "Guinea-Bissau",
"longname": "The Republic of Guinea-Bissau",
"sovereignty": "UN",
"region": "AF",
"population": 12218357
},
"GY": {
"name": "Guyana",
"longname": "The Co-operative Republic of Guyana",
"sovereignty": "UN",
"region": "SA",
"population": 782766
},
"HK": {
"name": "Hong Kong",
"longname": "The Hong Kong Special Administrative Region of China",
"sovereignty": "China",
"region": "AS",
"population": 7500700
},
"HM": {
"name": "Heard Island and McDonald Islands",
"longname": "The Territory of Heard Island and McDonald Islands",
"sovereignty": "Australia",
"region": "AN",
"population": 0
},
"HN": {
"name": "Honduras",
"longname": "The Republic of Honduras",
"sovereignty": "UN",
"region": "NA",
"population": 9158345
},
"HR": {
"name": "Croatia",
"longname": "The Republic of Croatia",
"sovereignty": "UN",
"region": "EU",
"population": 4076246
},
"HT": {
"name": "Haiti",
"longname": "The Republic of Haiti",
"sovereignty": "UN",
"region": "NA",
"population": 11577779
},
"HU": {
"name": "Hungary",
"longname": "Hungary",
"sovereignty": "UN",
"region": "EU",
"population": 9772756
},
"ID": {
"name": "Indonesia",
"longname": "The Republic of Indonesia",
"sovereignty": "UN",
"region": "AS",
"population": 266911900
},
"IE": {
"name": "Ireland",
"longname": "Ireland",
"sovereignty": "UN",
"region": "EU",
"population": 4921500
},
"IL": {
"name": "Israel",
"longname": "The State of Israel",
"sovereignty": "UN",
"region": "AS",
"population": 9171900
},
"IM": {
"name": "Isle of Man",
"longname": "The Isle of Man",
"sovereignty": "British Crown",
"region": "EU",
"population": 83314
},
"IN": {
"name": "India",
"longname": "The Republic of India",
"sovereignty": "UN",
"region": "AS",
"population": 1359812346
},
"IO": {
"name": "British Indian Ocean Territory",
"longname": "The British Indian Ocean Territory",
"sovereignty": "United Kingdom",
"region": "AS",
"population": 0
},
"IQ": {
"name": "Iraq",
"longname": "The Republic of Iraq",
"sovereignty": "UN",
"region": "AS",
"population": 39127900
},
"IR": {
"name": "Iran",
"longname": "The Islamic Republic of Iran",
"sovereignty": "UN",
"region": "AS",
"population": 83281956
},
"IS": {
"name": "Iceland",
"longname": "Iceland",
"sovereignty": "UN",
"region": "EU",
"population": 364260
},
"IT": {
"name": "Italy",
"longname": "The Italian Republic",
"sovereignty": "UN",
"region": "EU",
"population": 60243406
},
"JE": {
"name": "Jersey",
"longname": "The Bailiwick of Jersey",
"sovereignty": "British Crown",
"region": "EU",
"population": 106800
},
"JM": {
"name": "Jamaica",
"longname": "Jamaica",
"sovereignty": "UN",
"region": "NA",
"population": 2726667
},
"JO": {
"name": "Jordan",
"longname": "The Hashemite Kingdom of Jordan",
"sovereignty": "UN",
"region": "AS",
"population": 10636364
},
"JP": {
"name": "Japan",
"longname": "Japan",
"sovereignty": "UN",
"region": "AS",
"population": 126010000
},
"KE": {
"name": "Kenya",
"longname": "The Republic of Kenya",
"sovereignty": "UN",
"region": "AF",
"population": 47564296
},
"KG": {
"name": "Kyrgyzstan",
"longname": "The Kyrgyz Republic",
"sovereignty": "UN",
"region": "AS",
"population": 6523500
},
"KH": {
"name": "Cambodia",
"longname": "The Kingdom of Cambodia",
"sovereignty": "UN",
"region": "AS",
"population": 15288489
},
"KI": {
"name": "Kiribati",
"longname": "The Republic of Kiribati",
"sovereignty": "UN",
"region": "OC",
"population": 115847
},
"KM": {
"name": "Comoros",
"longname": "The Union of the Comoros",
"sovereignty": "UN",
"region": "AF",
"population": 873724
},
"KN": {
"name": "Saint Kitts and Nevis",
"longname": "Saint Kitts and Nevis",
"sovereignty": "UN",
"region": "NA",
"population": 52823
},
"KP": {
"name": "North Korea",
"longname": "The Democratic People's Republic of Korea",
"sovereignty": "UN",
"region": "AS",
"population": 25450000
},
"KR": {
"name": "South Korea",
"longname": "The Republic of Korea",
"sovereignty": "UN",
"region": "AS",
"population": 51780579
},
"KW": {
"name": "Kuwait",
"longname": "The State of Kuwait",
"sovereignty": "UN",
"region": "AS",
"population": 4420110
},
"KY": {
"name": "Cayman Islands",
"longname": "The Cayman Islands",
"sovereignty": "United Kingdom",
"region": "NA",
"population": 65813
},
"KZ": {
"name": "Kazakhstan",
"longname": "The Republic of Kazakhstan",
"sovereignty": "UN",
"region": "AS",
"population": 18663384
},
"LA": {
"name": "Laos",
"longname": "The Lao People's Democratic Republic",
"sovereignty": "UN",
"region": "AS",
"population": 7123205
},
"LB": {
"name": "Lebanon",
"longname": "The Lebanese Republic",
"sovereignty": "UN",
"region": "AS",
"population": 6825442
},
"LC": {
"name": "Saint Lucia",
"longname": "Saint Lucia",
"sovereignty": "UN",
"region": "NA",
"population": 178696
},
"LI": {
"name": "Liechtenstein",
"longname": "The Principality of Liechtenstein",
"sovereignty": "UN",
"region": "EU",
"population": 38557
},
"LK": {
"name": "Sri Lanka",
"longname": "The Democratic Socialist Republic of Sri Lanka",
"sovereignty": "UN",
"region": "AS",
"population": 21803000
},
"LR": {
"name": "Liberia",
"longname": "The Republic of Liberia",
"sovereignty": "UN",
"region": "AF",
"population": 4475353
},
"LS": {
"name": "Lesotho",
"longname": "The Kingdom of Lesotho",
"sovereignty": "UN",
"region": "AF",
"population": 2007201
},
"LT": {
"name": "Lithuania",