normalize_country 0.0.1 → 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml ADDED
@@ -0,0 +1,15 @@
1
+ ---
2
+ !binary "U0hBMQ==":
3
+ metadata.gz: !binary |-
4
+ MGIyNjllZTViNTQ3ZjEyZjlkMDBlZDk1ZDgwMGU1YTczOTkxMjNhMQ==
5
+ data.tar.gz: !binary |-
6
+ OGQ1NDRlYTgzYjk0MWJhYzQ5MTFiYjM0ZGZjOTIyZGI5ZDIwMzNhZg==
7
+ !binary "U0hBNTEy":
8
+ metadata.gz: !binary |-
9
+ MTA4MWExODA0NDQyZjIwMTM3YmJkNzM0NTkzM2JmZjFlNWFjYzc4NjVhY2E5
10
+ MTk4ZjlkYTkyMTU1OGYzZTUxN2QwZmIxNThkY2Y4Yzk4OTlmODUwYTg4Y2E5
11
+ N2I5NjMxMjQzMWIzYmRhNDhmZGFmYWYwMTVkOTY3ZDkzYmFjMDQ=
12
+ data.tar.gz: !binary |-
13
+ ZDk2YTRhYTZmMWMxM2RiOTA4NzRmZTNhMDM1MzM0ZDdlODVjYWVhNDk0OWI5
14
+ MWM5Njk4ZWFlMGZjMTZlY2M5NzU5ZTg2NjNhNjliOGJkMjczODNmYWFlMDli
15
+ OWZkM2VhNTZlZDZmMmI1NDMzOTg1ODk1YTlkZDBiM2IzMzY1ZWQ=
data/README.rdoc CHANGED
@@ -2,6 +2,9 @@
2
2
 
3
3
  Convert country names and codes to a standard.
4
4
 
5
+ {<img src="https://travis-ci.org/sshaw/normalize_country.png?branch=master" alt="Build Status" />}[https://travis-ci.org/sshaw/normalize_country]
6
+ {<img src="https://codeclimate.com/github/sshaw/normalize_country.png" />}[https://codeclimate.com/github/sshaw/normalize_country]
7
+
5
8
  === Overview
6
9
 
7
10
  require "normalize_country"
@@ -11,6 +14,7 @@ Convert country names and codes to a standard.
11
14
  NormalizeCountry("USA", :to => :official) # "United States of America"
12
15
  NormalizeCountry("Iran", :to => :official) # "Islamic Republic of Iran"
13
16
  NormalizeCountry("U.S.", :to => :alpha2) # "US"
17
+ NormalizeCountry("U.S.", :to => :numeric) # "840"
14
18
  NormalizeCountry("US", :to => :fifa) # "USA"
15
19
  NormalizeCountry("Iran", :to => :alpha3) # "IRN"
16
20
  NormalizeCountry("Iran", :to => :ioc) # "IRI"
@@ -36,8 +40,53 @@ will convert to/from the following:
36
40
  [:official] The country's official name
37
41
  [:ioc] International Olympic Committee
38
42
  [:iso_name] Country name used by ISO 3166-1
43
+ [:numeric] ISO 3166-1 numeric code
39
44
  [:short] A shortned version of the country's name, commonly used when speaking and/or writing (US English)
40
45
 
46
+ A list of valid formats can be obtained by calling +NormalizeCountry.formats+.
47
+
48
+ === Obtaining an Array or Hash
49
+
50
+ NormalizeCountry.to_a # Defaults to NormalizeCountry.to
51
+ NormalizeCountry.to_a(:ioc) # Array of IOC codes in ascending order
52
+ NormalizeCountry.to_h(:ioc) # :ioc => NormalizeCountry.to
53
+ NormalizeCountry.to_h(:ioc, :to => :numeric) # :ioc => :numeric
54
+
55
+ === Conversion Utility
56
+
57
+ A small script is included that can convert country names contained in a DB table or a set of XML or CSV files
58
+
59
+ shell > normalize_country -h
60
+ usage: normalize_country [options] SOURCE
61
+ -h, --help Show this message
62
+ -f, --format FORMAT The format of SOURCE
63
+ -t, --to CONVERSION Convert country names to this format (see docs for valid formats)
64
+ -l, --location LOCATION The location of the conversion
65
+
66
+ Some examples
67
+
68
+ normalize_country -t alpha2 -l 'Country Name' -f csv data.csv
69
+ normalize_country -t numeric -l countries.code -f db postgres://usr:pass@localhost/conquests
70
+ normalize_country -t fifa -l //teams[@sport = 'fútbol americano']//country -f xml data.xml
71
+
72
+ If the format is +xml+ or +csv+ you can spefify a directory instead of a filename
73
+
74
+ normalize_country -t alpha2 -l 'Country Name' -f csv /home/sshaw/capital-losses/2008
75
+
76
+ With a format of +csv+ it will read all files with an extension of +csv+ or +tsv+.
77
+ For +csv+ and +xml+ <b>the original file(s) will be overwritten with new file(s) containing the converted country names</b>.
78
+
79
+ To convert an XML file with namespaces just include the namespace prefix defined in the file in the
80
+ XPath query (+LOCATION+).
81
+
82
+ The +db+ format's +SOURCE+ argument must be a {Sequel connection string}[http://sequel.jeremyevans.net/rdoc/classes/Sequel.html#method-c-connect].
83
+ Here +LOCATION+ is in the format +table.column+, which will be updated with the converted name.
84
+
85
+ === Random Country Data for Your Tests
86
+
87
+ Random data generating gems like {Faker}[http://rubygems.org/gems/faker] and {RandomData}[http://rubygems.org/gems/random_data] don't generate much country data.
88
+ If you'd like to use this gem to do so I suggest checking out this gist: https://gist.github.com/sshaw/6068404
89
+
41
90
  === Faulty/Missing/Erroneous Country Names
42
91
 
43
92
  Please submit a patch or {open an issue}[https://github.com/sshaw/normalize_country/issues].
@@ -0,0 +1,183 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "normalize_country"
4
+ require "optparse"
5
+ require "tempfile"
6
+ require "fileutils"
7
+
8
+ class FileSource
9
+ def initialize(pattern)
10
+ @pattern = pattern
11
+ end
12
+
13
+ def build_paths(path)
14
+ File.directory?(path) ? Dir[ File.join(path, @pattern) ] : [path]
15
+ end
16
+
17
+ def tmpfile
18
+ Tempfile.new("normalize_country")
19
+ end
20
+
21
+ def normalize(path)
22
+ paths = build_paths(path)
23
+ paths.each do |path|
24
+ print "Processing #{path}... "
25
+ process(path)
26
+ print "done!\n"
27
+ end
28
+ end
29
+ end
30
+
31
+ class NormalizeXML < FileSource
32
+ def initialize(to, xpath)
33
+ super "*.xml"
34
+ @to = to
35
+ @xpath = xpath
36
+ end
37
+
38
+ def process(path)
39
+ io = File.open(path)
40
+
41
+ begin
42
+ doc = REXML::Document.new(io)
43
+ REXML::XPath.each(doc, @xpath).each do |e|
44
+ # element or attribute
45
+ value, writer = e.is_a?(REXML::Element) ? [ e.text, :text= ] : [ e.to_s, :normalized= ]
46
+ value.strip!
47
+ next if value.empty?
48
+
49
+ replace = NormalizeCountry(value, :to => @to)
50
+ next unless replace
51
+
52
+ e.send(writer, replace)
53
+ end
54
+
55
+ tmp = tmpfile
56
+ doc.write(tmp)
57
+ tmp.close
58
+ io.close
59
+ FileUtils.mv(tmp.path, path)
60
+ ensure
61
+ tmp.close if tmp and !tmp.closed?
62
+ io.close unless io.closed?
63
+ end
64
+ end
65
+ end
66
+
67
+ class NormalizeCSV < FileSource
68
+ def initialize(to, column)
69
+ super "*.[tc]sv"
70
+ @to = to
71
+ @column = column
72
+ end
73
+
74
+ def process(path)
75
+ dest = tmpfile
76
+
77
+ begin
78
+ CSV.open dest.path, "wb" do |out_csv|
79
+ CSV.foreach path, :headers => true, :return_headers => true do |in_csv|
80
+ if in_csv.header_row?
81
+ raise "#{path} does not include a column named '#@column'" unless in_csv.include?(@column)
82
+ out_csv << in_csv
83
+ else
84
+ if replace = NormalizeCountry(in_csv[@column], :to => @to)
85
+ in_csv[@column] = replace
86
+ end
87
+ out_csv << in_csv
88
+ end
89
+ end
90
+ end
91
+
92
+ dest.close
93
+ FileUtils.mv(dest.path, path)
94
+ ensure
95
+ dest.close unless dest.closed?
96
+ end
97
+ end
98
+ end
99
+
100
+ class NormalizeDB
101
+ def initialize(to, column)
102
+ @to = to
103
+ @table, @column = column.split(".", 2)
104
+ raise "no database column given" if @column.nil? or @column.empty?
105
+ @table = @table.to_sym
106
+ @column = @column.to_sym
107
+ end
108
+
109
+ def normalize(dsn)
110
+ rs = connect(dsn)
111
+ rs.select(@column).distinct.each do |row|
112
+ new_name = NormalizeCountry(row[@column], :to => @to)
113
+ next unless new_name and new_name != row[@column]
114
+ rs.where(@column => row[@column]).update(@column => new_name)
115
+ end
116
+ end
117
+
118
+ def connect(dsn)
119
+ db = Sequel.connect(dsn)
120
+ raise "database has no table named '#@table'" unless db.table_exists?(@table)
121
+ raise "database has no column named '#@table.#@column'" unless db[@table].columns.include?(@column)
122
+ db[@table]
123
+ end
124
+ end
125
+
126
+ options = {}
127
+ OptionParser.new do |opts|
128
+ opts.banner = "usage: #{File.basename($0)} [options] SOURCE"
129
+
130
+ opts.on("-h", "--help", "Show this message") do
131
+ puts opts
132
+ exit 2
133
+ end
134
+
135
+ opts.on "-f", "--format FORMAT", "The format of SOURCE" do |format|
136
+ options[:format] = format.to_sym
137
+ end
138
+
139
+ opts.on "-t", "--to CONVERSION", "Convert country names to this format (see docs for valid formats)" do |to|
140
+ options[:to] = to
141
+ end
142
+
143
+ opts.on "-l", "--location LOCATION ", "The location of the conversion" do |source|
144
+ options[:location] = source
145
+ end
146
+
147
+ opts.on("-v", "--version", "Version") do
148
+ puts "v#{NormalizeCountry::VERSION}"
149
+ exit
150
+ end
151
+ end.parse!
152
+
153
+ abort "source option required" unless ARGV.any?
154
+
155
+ missing = [:location, :format, :to].find { |opt| options[opt].nil? }
156
+ abort "#{missing} option required" if missing
157
+
158
+ abort "unknown conversion format '#{options[:to]}'" unless NormalizeCountry.formats.include?(options[:to].to_sym)
159
+
160
+ klass = case options[:format]
161
+ when :csv
162
+ abort "CSV processing requires ruby 1.9" if RUBY_VERSION < "1.9"
163
+ require "csv"
164
+ NormalizeCSV
165
+ when :db
166
+ begin
167
+ require "sequel"
168
+ rescue LoadError => e
169
+ abort "the db format requires Sequel, you can install it by running `gem install sequel`"
170
+ end
171
+ NormalizeDB
172
+ when :xml
173
+ require "rexml/document"
174
+ NormalizeXML
175
+ else
176
+ abort "don't know how to normalize the format '#{options[:format]}'"
177
+ end
178
+
179
+ begin
180
+ klass.new(options[:to], options[:location]).normalize(ARGV[0])
181
+ rescue => e
182
+ abort "normalization failed: #{e}"
183
+ end
@@ -1,7 +1,7 @@
1
1
  require "yaml"
2
2
 
3
3
  module NormalizeCountry
4
- VERSION = "0.0.1"
4
+ VERSION = "0.1.0"
5
5
  Countries = {}
6
6
 
7
7
  class << self
@@ -11,18 +11,37 @@ module NormalizeCountry
11
11
  @to ||= :iso_name
12
12
  end
13
13
 
14
+ def formats
15
+ @formats ||= Countries.values.map(&:formats).flatten.uniq # format might not be defined for all countries
16
+ end
17
+
14
18
  def convert(name, options = {})
15
19
  country = country_for(name)
16
20
  return unless country
17
21
  country[ options[:to] || to ]
18
22
  end
19
23
 
24
+ def to_a(name = to)
25
+ return [] if Countries.values.find { |c| c[name] }.nil? # format might not be defined for all countries
26
+ Countries.values.uniq.map { |c| c[name] }.compact.sort { |a, b| a <=> b }
27
+ end
28
+
29
+ def to_h(key, options = {})
30
+ value = options[:to] || to
31
+ countries = Countries.values
32
+ return {} unless [ key, value ].all? { |v| countries.first[v] }
33
+
34
+ hash = {}
35
+ countries.each { |c| hash[ c[key] ] = c[value] }
36
+ hash
37
+ end
38
+
20
39
  private
21
40
  def country_for(name)
22
41
  name = name.to_s.downcase.strip.squeeze(" ")
23
42
  return if name.empty?
24
43
  Countries[name.to_sym]
25
- end
44
+ end
26
45
  end
27
46
 
28
47
  class Country
@@ -31,9 +50,9 @@ module NormalizeCountry
31
50
 
32
51
  @mapping = {}
33
52
  config.each do |id, value|
34
- @mapping[id.to_sym] = Array === value ?
35
- value.compact.map { |v| v.squeeze(" ").strip } :
36
- value ? value.squeeze(" ").strip : value
53
+ @mapping[id.to_sym] = Array === value ?
54
+ value.compact.map { |v| v.squeeze(" ").strip } :
55
+ value ? value.squeeze(" ").strip : value
37
56
  end
38
57
  end
39
58
 
@@ -44,6 +63,14 @@ module NormalizeCountry
44
63
  return name.dup if name
45
64
  end
46
65
 
66
+ def formats
67
+ @formats ||= begin
68
+ keys = @mapping.keys
69
+ keys.delete(:aliases)
70
+ keys
71
+ end
72
+ end
73
+
47
74
  def names
48
75
  @names ||= @mapping.values.flatten.uniq.compact
49
76
  end
@@ -1,2084 +1,2331 @@
1
1
  ---
2
2
  AD:
3
+ aliases:
4
+ - Principality of the Valleys of Andorra
3
5
  alpha2: AD
4
6
  alpha3: AND
7
+ fifa: AND
5
8
  ioc: AND
6
9
  iso_name: Andorra
10
+ numeric: "20"
7
11
  official: Principality of Andorra
8
- aliases:
9
- - Principality of the Valleys of Andorra
10
- fifa: AND
11
12
  short: Andorra
12
13
  AE:
13
- alpha2: AE
14
- alpha3: ARE
15
- ioc: UAE
16
- iso_name: United Arab Emirates
17
14
  aliases:
18
15
  - Emirates
19
16
  - UAE
17
+ alpha2: AE
18
+ alpha3: ARE
20
19
  fifa: UAE
21
- short: United Arab Emirates
20
+ ioc: UAE
21
+ iso_name: United Arab Emirates
22
+ numeric: "784"
22
23
  official: United Arab Emirates
24
+ short: United Arab Emirates
23
25
  AF:
24
26
  alpha2: AF
25
27
  alpha3: AFG
26
- ioc: AFG
27
28
  fifa: AFG
29
+ ioc: AFG
28
30
  iso_name: Afghanistan
29
31
  official: Islamic Republic of Afghanistan
32
+ numeric: "4"
30
33
  short: Afghanistan
31
34
  AG:
32
35
  alpha2: AG
33
36
  alpha3: ATG
37
+ fifa: ATG
34
38
  ioc: ANT
35
39
  iso_name: Antigua and Barbuda
36
- fifa: ATG
37
- short: Antigua and Barbuda
40
+ numeric: "28"
38
41
  official: Antigua and Barbuda
42
+ short: Antigua and Barbuda
39
43
  AI:
40
44
  alpha2: AI
41
45
  alpha3: AIA
46
+ fifa:
42
47
  ioc:
43
48
  iso_name: Anguilla
44
- fifa:
45
- short: Anguilla
49
+ numeric: "660"
46
50
  official: Anguilla
51
+ short: Anguilla
47
52
  AL:
48
53
  alpha2: AL
49
54
  alpha3: ALB
55
+ fifa: ALB
50
56
  ioc: ALB
51
57
  iso_name: Albania
52
58
  official: Republic of Albania
53
- fifa: ALB
59
+ numeric: "8"
54
60
  short: Albania
55
61
  AM:
56
62
  alpha2: AM
57
63
  alpha3: ARM
64
+ fifa: ARM
58
65
  ioc: ARM
59
66
  iso_name: Armenia
67
+ numeric: "51"
60
68
  official: Republic of Armenia
61
- fifa: ARM
62
69
  short: Armenia
63
70
  AN:
71
+ aliases:
72
+ - Dutch Antilles
64
73
  alpha2: AN
65
74
  alpha3: ANT
75
+ fifa: ANT
66
76
  ioc: AHO
67
77
  iso_name: Netherlands Antilles
68
- aliases:
69
- - Dutch Antilles
70
- fifa: ANT
71
- short: Netherlands Antilles
78
+ numeric: "530"
72
79
  official: Netherlands Antilles
80
+ short: Netherlands Antilles
73
81
  AO:
74
82
  alpha2: AO
75
83
  alpha3: AGO
84
+ fifa: ANG
76
85
  ioc: ANG
77
86
  iso_name: Angola
87
+ numeric: "24"
78
88
  official: Republic of Angola
79
- fifa: ANG
80
89
  short: Angola
81
90
  AQ:
82
91
  alpha2: AQ
83
92
  alpha3: ATA
93
+ fifa:
84
94
  ioc:
85
95
  iso_name: Antarctica
86
- fifa:
87
- short: Antarctica
96
+ numeric: "10"
88
97
  official: Antarctica
98
+ short: Antarctica
89
99
  AR:
90
100
  alpha2: AR
91
101
  alpha3: ARG
102
+ fifa: ARG
92
103
  ioc: ARG
93
104
  iso_name: Argentina
105
+ numeric: "32"
94
106
  official: Argentine Republic
95
- fifa: ARG
96
107
  short: Argentina
97
108
  AS:
98
109
  alpha2: AS
99
110
  alpha3: ASM
111
+ fifa: ASA
100
112
  ioc: ASA
101
113
  iso_name: American Samoa
102
- fifa: ASA
103
- short: American Samoa
114
+ numeric: "16"
104
115
  official: American Samoa
116
+ short: American Samoa
105
117
  AT:
106
118
  alpha2: AT
107
119
  alpha3: AUT
120
+ fifa: AUT
108
121
  ioc: AUT
109
122
  iso_name: Austria
123
+ numeric: "40"
110
124
  official: Republic of Austria
111
- fifa: AUT
112
125
  short: Austria
113
126
  AU:
114
127
  alpha2: AU
115
128
  alpha3: AUS
129
+ fifa: AUS
116
130
  ioc: AUS
117
131
  iso_name: Australia
132
+ numeric: "36"
118
133
  official: Commonwealth of Australia
119
- fifa: AUS
120
134
  short: Australia
121
135
  AW:
122
136
  alpha2: AW
123
137
  alpha3: ABW
138
+ fifa: ARU
124
139
  ioc: ARU
125
140
  iso_name: Aruba
126
- fifa: ARU
127
- short: Aruba
141
+ numeric: "533"
128
142
  official: Aruba
143
+ short: Aruba
129
144
  AX:
130
145
  alpha2: AX
131
146
  alpha3: ALA
147
+ fifa:
132
148
  ioc:
133
149
  iso_name: "\xC3\x85land Islands"
134
- fifa:
135
- short: "\xC3\x85land Islands"
150
+ numeric: "248"
136
151
  official: "\xC3\x85land Islands"
152
+ short: "\xC3\x85land Islands"
137
153
  AZ:
138
154
  alpha2: AZ
139
155
  alpha3: AZE
156
+ fifa: AZE
140
157
  ioc: AZE
141
158
  iso_name: Azerbaijan
142
- short: Azerbaijan
159
+ numeric: "31"
143
160
  official: Republic of Azerbaijan
144
- fifa: AZE
161
+ short: Azerbaijan
145
162
  BA:
163
+ aliases:
164
+ - Bosnia-Herzegovina
146
165
  alpha2: BA
147
166
  alpha3: BIH
167
+ fifa: BIH
148
168
  ioc: BIH
149
169
  iso_name: Bosnia and Herzegovina
150
- short: Bosnia
151
- aliases:
152
- - Bosnia-Herzegovina
153
- fifa: BIH
170
+ numeric: "70"
154
171
  official: Bosnia and Herzegovina
172
+ short: Bosnia
155
173
  BB:
156
174
  alpha2: BB
157
175
  alpha3: BRB
176
+ fifa: BRB
158
177
  ioc: BAR
159
178
  iso_name: Barbados
160
- fifa: BRB
161
- short: Barbados
179
+ numeric: "52"
162
180
  official: Barbados
181
+ short: Barbados
163
182
  BD:
164
183
  alpha2: BD
165
184
  alpha3: BGD
185
+ fifa: BAN
166
186
  ioc: BAN
167
187
  iso_name: Bangladesh
188
+ numeric: "50"
168
189
  official: People's Republic of Bangladesh
169
- fifa: BAN
170
190
  short: Bangladesh
171
191
  BE:
172
192
  alpha2: BE
173
193
  alpha3: BEL
194
+ fifa: BEL
174
195
  ioc: BEL
175
196
  iso_name: Belgium
197
+ numeric: "56"
176
198
  official: Kingdom of Belgium
177
- fifa: BEL
178
199
  short: Belgium
179
200
  BF:
180
201
  alpha2: BF
181
202
  alpha3: BFA
203
+ fifa: BFA
182
204
  ioc: BUR
183
205
  iso_name: Burkina Faso
184
- short: Burkina
185
- fifa: BFA
206
+ numeric: "854"
186
207
  official: Burkina Faso
208
+ short: Burkina
187
209
  BG:
188
210
  alpha2: BG
189
211
  alpha3: BGR
212
+ fifa: BUL
190
213
  ioc: BUL
191
214
  iso_name: Bulgaria
215
+ numeric: "100"
192
216
  official: Republic of Bulgaria
193
- fifa: BUL
194
217
  short: Bulgaria
195
218
  BH:
196
219
  alpha2: BH
197
220
  alpha3: BHR
221
+ fifa: BHR
198
222
  ioc: BRN
199
223
  iso_name: Bahrain
224
+ numeric: "48"
200
225
  official: Kingdom of Bahrain
201
- fifa: BHR
202
226
  short: Bahrain
203
227
  BI:
204
228
  alpha2: BI
205
229
  alpha3: BDI
230
+ fifa: BDI
206
231
  ioc: BDI
207
232
  iso_name: Burundi
208
- short: Burundi
233
+ numeric: "108"
209
234
  official: Republic of Burundi
210
- fifa: BDI
235
+ short: Burundi
211
236
  BJ:
212
237
  alpha2: BJ
213
238
  alpha3: BEN
239
+ fifa: BEN
214
240
  ioc: BEN
215
241
  iso_name: Benin
242
+ numeric: "204"
216
243
  official: Republic of Benin
217
- fifa: BEN
218
244
  short: Benin
219
245
  BL:
246
+ aliases:
247
+ - Saint Barts
248
+ - St. Barts
249
+ - St. Barths
220
250
  alpha2: BL
221
251
  alpha3: BLM
252
+ fifa:
222
253
  ioc:
223
254
  iso_name: "Saint Barth\xC3\xA9lemy"
255
+ numeric: "652"
224
256
  official: "Territorial Collectivity of Saint Barth\xC3\xA9lemy"
225
257
  short: Saint Barths
226
- aliases:
227
- - Saint Barts
228
- - St. Barts
229
- - St. Barths
230
- fifa:
231
258
  BM:
232
- alpha2: BM
233
- alpha3: BMU
234
- ioc: BER
235
- iso_name: Bermuda
236
259
  aliases:
237
260
  - Bermudas
238
261
  - Somers Isles
239
262
  - The Bermudas
240
263
  - The Somers Isles
264
+ alpha2: BM
265
+ alpha3: BMU
241
266
  fifa: BER
242
- short: Bermuda
267
+ ioc: BER
268
+ iso_name: Bermuda
269
+ numeric: "60"
243
270
  official: Bermuda
271
+ short: Bermuda
244
272
  BN:
245
273
  alpha2: BN
246
274
  alpha3: BRN
275
+ fifa: BRU
247
276
  ioc: BRU
248
277
  iso_name: Brunei Darussalam
249
- short: Brunei
278
+ numeric: "96"
250
279
  official: Nation of Brunei, Abode of Peace
251
- fifa: BRU
280
+ short: Brunei
252
281
  BO:
253
282
  alpha2: BO
254
283
  alpha3: BOL
284
+ fifa: BOL
255
285
  ioc: BOL
256
286
  iso_name: Bolivia, Plurinational State of
257
- short: Bolivia
287
+ numeric: "68"
258
288
  official: Plurinational State of Bolivia
259
- fifa: BOL
289
+ short: Bolivia
260
290
  BR:
261
291
  alpha2: BR
262
292
  alpha3: BRA
293
+ fifa: BRA
263
294
  ioc: BRA
264
295
  iso_name: Brazil
296
+ numeric: "76"
265
297
  official: Federative Republic of Brazil
266
- fifa: BRA
267
298
  short: Brazil
268
299
  BS:
269
300
  alpha2: BS
270
301
  alpha3: BHS
302
+ fifa: BAH
271
303
  ioc: BAH
272
304
  iso_name: Bahamas
305
+ numeric: "44"
273
306
  official: Commonwealth of the Bahamas
274
- fifa: BAH
275
307
  short: Bahamas
276
308
  BT:
277
309
  alpha2: BT
278
310
  alpha3: BTN
311
+ fifa: BHU
279
312
  ioc: BHU
280
313
  iso_name: Bhutan
314
+ numeric: "64"
281
315
  official: Kingdom of Bhutan
282
- fifa: BHU
283
316
  short: Bhutan
284
317
  BV:
285
318
  alpha2: BV
286
319
  alpha3: BVT
320
+ fifa:
287
321
  ioc:
288
322
  iso_name: Bouvet Island
289
- short: Bouvet Island
290
- fifa:
323
+ numeric: "74"
291
324
  official: Bouvet Island
325
+ short: Bouvet Island
292
326
  BW:
293
327
  alpha2: BW
294
328
  alpha3: BWA
329
+ fifa: BOT
295
330
  ioc: BOT
296
331
  iso_name: Botswana
332
+ numeric: "72"
297
333
  official: Republic of Botswana
298
- fifa: BOT
299
334
  short: Botswana
300
335
  BY:
301
336
  alpha2: BY
302
337
  alpha3: BLR
338
+ fifa: BLR
303
339
  ioc: BLR
304
340
  iso_name: Belarus
341
+ numeric: "112"
305
342
  official: Republic of Belarus
306
- fifa: BLR
307
343
  short: Belarus
308
344
  BZ:
309
345
  alpha2: BZ
310
346
  alpha3: BLZ
347
+ fifa: BLZ
311
348
  ioc: BIZ
312
349
  iso_name: Belize
313
- fifa: BLZ
314
- short: Belize
350
+ numeric: "84"
315
351
  official: Belize
352
+ short: Belize
316
353
  CA:
317
354
  alpha2: CA
318
355
  alpha3: CAN
356
+ fifa: CAN
319
357
  ioc: CAN
320
358
  iso_name: Canada
321
- fifa: CAN
322
- short: Canada
359
+ numeric: "124"
323
360
  official: Canada
361
+ short: Canada
324
362
  CC:
363
+ aliases:
364
+ - Cocos Islands
365
+ - Keeling Islands
325
366
  alpha2: CC
326
367
  alpha3: CCK
368
+ fifa:
327
369
  ioc:
328
370
  iso_name: Cocos (Keeling) Islands
371
+ numeric: "166"
329
372
  official: Territory of the Cocos (Keeling) Islands
330
- aliases:
331
- - Cocos Islands
332
- - Keeling Islands
333
- fifa:
334
373
  short: Cocos (Keeling) Islands
335
374
  CD:
336
- alpha2: CD
337
- alpha3: COD
338
- ioc: COD
339
- iso_name: Congo, The Democratic Republic Of The
340
- official: Democratic Republic of the Congo
341
375
  aliases:
342
376
  - Congo-Kinshasa
343
377
  - DRC
344
378
  - DR Congo
379
+ alpha2: CD
380
+ alpha3: COD
345
381
  fifa: COD
382
+ ioc: COD
383
+ iso_name: Congo, The Democratic Republic Of The
384
+ numeric: "180"
385
+ official: Democratic Republic of the Congo
346
386
  short: Congo, The Democratic Republic Of The
347
387
  CF:
348
388
  alpha2: CF
349
389
  alpha3: CAF
390
+ fifa: CTA
350
391
  ioc: CAF
351
392
  iso_name: Central African Republic
352
- short: Central African Republic
353
- fifa: CTA
393
+ numeric: "140"
354
394
  official: Central African Republic
395
+ short: Central African Republic
355
396
  CG:
397
+ aliases:
398
+ - Congo-Brazzaville
356
399
  alpha2: CG
357
400
  alpha3: COG
401
+ fifa: CGO
358
402
  ioc: CGO
359
403
  iso_name: Congo
404
+ numeric: "178"
360
405
  official: People's Republic of the Congo
361
- aliases:
362
- - Congo-Brazzaville
363
- fifa: CGO
364
406
  short: Congo
365
407
  CH:
366
408
  alpha2: CH
367
409
  alpha3: CHE
410
+ fifa: SUI
368
411
  ioc: SUI
369
412
  iso_name: Switzerland
413
+ numeric: "756"
370
414
  official: Swiss Confederation
371
- fifa: SUI
372
415
  short: Switzerland
373
416
  CI:
374
417
  alpha2: CI
375
418
  alpha3: CIV
419
+ fifa: CIV
376
420
  ioc: CIV
377
421
  iso_name: "C\xC3\xB4te D'Ivoire"
422
+ numeric: "384"
378
423
  official: "Republic of C\xC3\xB4te D'Ivoire"
379
424
  short: Ivory Coast
380
- fifa: CIV
381
425
  CK:
382
426
  alpha2: CK
383
427
  alpha3: COK
428
+ fifa: COK
384
429
  ioc: COK
385
430
  iso_name: Cook Islands
386
- fifa: COK
387
- short: Cook Islands
431
+ numeric: "184"
388
432
  official: Cook Islands
433
+ short: Cook Islands
389
434
  CL:
390
435
  alpha2: CL
391
436
  alpha3: CHL
437
+ fifa: CHI
392
438
  ioc: CHI
393
439
  iso_name: Chile
440
+ numeric: "152"
394
441
  official: Republic of Chile
395
- fifa: CHI
396
442
  short: Chile
397
443
  CM:
398
444
  alpha2: CM
399
445
  alpha3: CMR
446
+ fifa: CMR
400
447
  ioc: CMR
401
448
  iso_name: Cameroon
449
+ numeric: "120"
402
450
  official: Republic of Cameroon
403
- fifa: CMR
404
451
  short: Cameroon
405
452
  CN:
406
453
  alpha2: CN
407
454
  alpha3: CHN
455
+ fifa: CHN
408
456
  ioc: CHN
409
457
  iso_name: China
458
+ numeric: "156"
410
459
  official: People's Republic of China
411
- fifa: CHN
412
460
  short: China
413
461
  CO:
414
462
  alpha2: CO
415
463
  alpha3: COL
464
+ fifa: COL
416
465
  ioc: COL
417
466
  iso_name: Colombia
467
+ numeric: "170"
418
468
  official: Republic of Colombia
419
- fifa: COL
420
469
  short: Colombia
421
470
  CR:
422
471
  alpha2: CR
423
472
  alpha3: CRI
473
+ fifa: CRC
424
474
  ioc: CRC
425
475
  iso_name: Costa Rica
476
+ numeric: "188"
426
477
  official: Republic of Costa Rica
427
- fifa: CRC
428
478
  short: Costa Rica
429
479
  CU:
430
480
  alpha2: CU
431
481
  alpha3: CUB
482
+ fifa: CUB
432
483
  ioc: CUB
433
484
  iso_name: Cuba
485
+ numeric: "192"
434
486
  official: Republic of Cuba
435
- fifa: CUB
436
487
  short: Cuba
437
488
  CV:
438
489
  alpha2: CV
439
490
  alpha3: CPV
491
+ fifa: CPV
440
492
  ioc: CPV
441
493
  iso_name: Cape Verde
494
+ numeric: "132"
442
495
  official: Republic of Cape Verde
443
- fifa: CPV
444
496
  short: Cape Verde
445
497
  CX:
446
498
  alpha2: CX
447
499
  alpha3: CXR
500
+ fifa:
448
501
  ioc:
449
502
  iso_name: Christmas Island
503
+ numeric: "162"
450
504
  official: Territory of Christmas Island
451
- fifa:
452
505
  short: Christmas Island
453
506
  CY:
454
507
  alpha2: CY
455
508
  alpha3: CYP
509
+ fifa: CYP
456
510
  ioc: CYP
457
511
  iso_name: Cyprus
512
+ numeric: "196"
458
513
  official: Republic of Cyprus
459
- fifa: CYP
460
514
  short: Cyprus
461
515
  CZ:
462
516
  alpha2: CZ
463
517
  alpha3: CZE
518
+ fifa: CZE
464
519
  ioc: CZE
465
520
  iso_name: Czech Republic
466
- fifa: CZE
467
- short: Czech Republic
521
+ numeric: "203"
468
522
  official: Czech Republic
523
+ short: Czech Republic
469
524
  DE:
470
525
  alpha2: DE
471
526
  alpha3: DEU
527
+ fifa: GER
472
528
  ioc: GER
473
529
  iso_name: Germany
530
+ numeric: "276"
474
531
  official: Federal Republic of Germany
475
- fifa: GER
476
532
  short: Germany
477
533
  DJ:
478
534
  alpha2: DJ
479
535
  alpha3: DJI
536
+ fifa: DJI
480
537
  ioc: DJI
481
538
  iso_name: Djibouti
539
+ numeric: "262"
482
540
  official: Republic of Djibouti
483
- fifa: DJI
484
541
  short: Djibouti
485
542
  DK:
486
543
  alpha2: DK
487
544
  alpha3: DNK
545
+ fifa: DEN
488
546
  ioc: DEN
489
547
  iso_name: Denmark
548
+ numeric: "208"
490
549
  official: Kingdom of Denmark
491
- fifa: DEN
492
550
  short: Denmark
493
551
  DM:
494
552
  alpha2: DM
495
553
  alpha3: DMA
554
+ fifa: DMA
496
555
  ioc: DMA
497
556
  iso_name: Dominica
557
+ numeric: "212"
498
558
  official: Commonwealth of Dominica
499
- fifa: DMA
500
559
  short: Dominica
501
560
  DO:
502
561
  alpha2: DO
503
562
  alpha3: DOM
563
+ fifa: DOM
504
564
  ioc: DOM
505
565
  iso_name: Dominican Republic
506
- fifa: DOM
507
- short: Dominican Republic
566
+ numeric: "214"
508
567
  official: Dominican Republic
568
+ short: Dominican Republic
509
569
  DZ:
510
570
  alpha2: DZ
511
571
  alpha3: DZA
512
- ioc: ALG
513
572
  fifa: ALG
573
+ ioc: ALG
514
574
  iso_name: Algeria
575
+ numeric: "12"
515
576
  official: People's Democratic Republic of Algeria
516
577
  short: Algeria
517
578
  EC:
518
579
  alpha2: EC
519
580
  alpha3: ECU
581
+ fifa: ECU
520
582
  ioc: ECU
521
583
  iso_name: Ecuador
584
+ numeric: "218"
522
585
  official: Republic of Ecuador
523
- fifa: ECU
524
586
  short: Ecuador
525
587
  EE:
526
588
  alpha2: EE
527
589
  alpha3: EST
590
+ fifa: EST
528
591
  ioc: EST
529
592
  iso_name: Estonia
593
+ numeric: "233"
530
594
  official: Republic of Estonia
531
- fifa: EST
532
595
  short: Estonia
533
596
  EG:
534
597
  alpha2: EG
535
598
  alpha3: EGY
599
+ fifa: EGY
536
600
  ioc: EGY
537
601
  iso_name: Egypt
602
+ numeric: "818"
538
603
  official: Arab Republic of Egypt
539
- fifa: EGY
540
604
  short: Egypt
541
605
  EH:
542
606
  alpha2: EH
543
607
  alpha3: ESH
608
+ fifa:
544
609
  ioc:
545
610
  iso_name: Western Sahara
546
- fifa:
547
- short: Western Sahara
611
+ numeric: "732"
548
612
  official: Western Sahara
613
+ short: Western Sahara
549
614
  ER:
550
615
  alpha2: ER
551
616
  alpha3: ERI
617
+ fifa: ERI
552
618
  ioc: ERI
553
619
  iso_name: Eritrea
620
+ numeric: "232"
554
621
  official: State of Eritrea
555
- fifa: ERI
556
622
  short: Eritrea
557
623
  ES:
558
624
  alpha2: ES
559
625
  alpha3: ESP
626
+ fifa: ESP
560
627
  ioc: ESP
561
628
  iso_name: Spain
629
+ numeric: "724"
562
630
  official: Kingdom of Spain
563
- fifa: ESP
564
631
  short: Spain
565
632
  ET:
566
633
  alpha2: ET
567
634
  alpha3: ETH
635
+ fifa: ETH
568
636
  ioc: ETH
569
637
  iso_name: Ethiopia
638
+ numeric: "231"
570
639
  official: Federal Democratic Republic of Ethiopia
571
- fifa: ETH
572
640
  short: Ethiopia
573
641
  FI:
574
642
  alpha2: FI
575
643
  alpha3: FIN
644
+ fifa: FIN
576
645
  ioc: FIN
577
646
  iso_name: Finland
647
+ numeric: "246"
578
648
  official: Republic of Finland
579
- fifa: FIN
580
649
  short: Finland
581
650
  FJ:
582
651
  alpha2: FJ
583
652
  alpha3: FJI
653
+ fifa: FIJ
584
654
  ioc: FIJ
585
655
  iso_name: Fiji
656
+ numeric: "242"
586
657
  official: Republic of Fiji
587
- fifa: FIJ
588
658
  short: Fiji
589
659
  FK:
660
+ aliases:
661
+ - The Falklands
590
662
  alpha2: FK
591
663
  alpha3: FLK
664
+ fifa:
592
665
  ioc:
593
666
  iso_name: Falkland Islands (Malvinas)
667
+ numeric: "238"
594
668
  official: Falkland Islands
595
- aliases:
596
- - The Falklands
597
- fifa:
598
669
  short: Falkland Islands (Malvinas)
599
670
  FM:
600
671
  alpha2: FM
601
672
  alpha3: FSM
673
+ fifa: FSM
602
674
  ioc: FSM
603
675
  iso_name: Micronesia, Federated States Of
676
+ numeric: "583"
604
677
  official: Federated States of Micronesia
605
- fifa: FSM
606
678
  short: Micronesia, Federated States Of
607
679
  FO:
608
680
  alpha2: FO
609
681
  alpha3: FRO
682
+ fifa: FRO
610
683
  ioc: FRO
611
684
  iso_name: Faroe Islands
612
- short: Faroe Islands
613
- fifa: FRO
685
+ numeric: "234"
614
686
  official: Faroe Islands
687
+ short: Faroe Islands
615
688
  FR:
616
689
  alpha2: FR
617
690
  alpha3: FRA
691
+ fifa: FRA
618
692
  ioc: FRA
619
693
  iso_name: France
694
+ numeric: "250"
620
695
  official: French Republic
621
- fifa: FRA
622
696
  short: France
623
697
  GA:
624
698
  alpha2: GA
625
699
  alpha3: GAB
700
+ fifa: GAB
626
701
  ioc: GAB
627
702
  iso_name: Gabon
703
+ numeric: "266"
628
704
  official: Gabonese Republic
629
- fifa: GAB
630
705
  short: Gabon
631
706
  GB:
632
- alpha2: GB
633
- alpha3: GBR
634
- ioc: GBR
635
- iso_name: United Kingdom
636
- official: United Kingdom of Great Britain and Northern Ireland
637
707
  aliases:
638
708
  - Britain
639
709
  - U.K.
640
710
  - UK
711
+ alpha2: GB
712
+ alpha3: GBR
641
713
  fifa: GBR
714
+ ioc: GBR
715
+ iso_name: United Kingdom
716
+ numeric: "826"
717
+ official: United Kingdom of Great Britain and Northern Ireland
642
718
  short: United Kingdom
643
719
  GD:
644
720
  alpha2: GD
645
721
  alpha3: GRD
722
+ fifa: GRN
646
723
  ioc: GRN
647
724
  iso_name: Grenada
648
- fifa: GRN
649
- short: Grenada
725
+ numeric: "308"
650
726
  official: Grenada
727
+ short: Grenada
651
728
  GE:
652
729
  alpha2: GE
653
730
  alpha3: GEO
731
+ fifa: GEO
654
732
  ioc: GEO
655
733
  iso_name: Georgia
656
- fifa: GEO
657
- short: Georgia
734
+ numeric: "268"
658
735
  official: Georgia
736
+ short: Georgia
659
737
  GF:
660
738
  alpha2: GF
661
739
  alpha3: GUF
740
+ fifa:
662
741
  ioc:
663
742
  iso_name: French Guiana
664
- fifa:
665
- short: French Guiana
743
+ numeric: "254"
666
744
  official: French Guiana
745
+ short: French Guiana
667
746
  GG:
668
747
  alpha2: GG
669
748
  alpha3: GGY
749
+ fifa:
670
750
  ioc:
671
751
  iso_name: Guernsey
752
+ numeric: "831"
672
753
  official: Bailiwick of Guernsey
673
- fifa:
674
754
  short: Guernsey
675
755
  GH:
676
756
  alpha2: GH
677
757
  alpha3: GHA
758
+ fifa: GHA
678
759
  ioc: GHA
679
760
  iso_name: Ghana
761
+ numeric: "288"
680
762
  official: Republic of Ghana
681
- fifa: GHA
682
763
  short: Ghana
683
764
  GI:
684
765
  alpha2: GI
685
766
  alpha3: GIB
767
+ fifa:
686
768
  ioc:
687
769
  iso_name: Gibraltar
688
- fifa:
689
- short: Gibraltar
770
+ numeric: "292"
690
771
  official: Gibraltar
772
+ short: Gibraltar
691
773
  GL:
692
774
  alpha2: GL
693
775
  alpha3: GRL
776
+ fifa:
694
777
  ioc:
695
778
  iso_name: Greenland
696
- fifa:
697
- short: Greenland
779
+ numeric: "304"
698
780
  official: Greenland
781
+ short: Greenland
699
782
  GM:
700
783
  alpha2: GM
701
784
  alpha3: GMB
785
+ fifa: GAM
702
786
  ioc: GAM
703
787
  iso_name: Gambia
788
+ numeric: "270"
704
789
  official: Republic of the Gambia
705
- fifa: GAM
706
790
  short: Gambia
707
791
  GN:
708
792
  alpha2: GN
709
793
  alpha3: GIN
794
+ fifa: GUI
710
795
  ioc: GUI
711
796
  iso_name: Guinea
797
+ numeric: "324"
712
798
  official: Republic of Guinea
713
- fifa: GUI
714
799
  short: Guinea
715
800
  GP:
716
801
  alpha2: GP
717
802
  alpha3: GLP
803
+ fifa:
718
804
  ioc:
719
805
  iso_name: Guadeloupe
720
- fifa:
721
- short: Guadeloupe
806
+ numeric: "312"
722
807
  official: Guadeloupe
808
+ short: Guadeloupe
723
809
  GQ:
724
810
  alpha2: GQ
725
811
  alpha3: GNQ
812
+ fifa: EQG
726
813
  ioc: GEQ
727
814
  iso_name: Equatorial Guinea
815
+ numeric: "226"
728
816
  official: Republic of Equatorial Guinea
729
- fifa: EQG
730
817
  short: Equatorial Guinea
731
818
  GR:
732
819
  alpha2: GR
733
820
  alpha3: GRC
821
+ fifa: GRE
734
822
  ioc: GRE
735
823
  iso_name: Greece
824
+ numeric: "300"
736
825
  official: Hellenic Republic
737
- fifa: GRE
738
826
  short: Greece
739
827
  GS:
740
828
  alpha2: GS
741
829
  alpha3: SGS
830
+ fifa:
742
831
  ioc:
743
832
  iso_name: South Georgia and the South Sandwich Islands
744
- fifa:
745
- short: South Georgia and the South Sandwich Islands
833
+ numeric: "239"
746
834
  official: South Georgia and the South Sandwich Islands
835
+ short: South Georgia and the South Sandwich Islands
747
836
  GT:
748
837
  alpha2: GT
749
838
  alpha3: GTM
839
+ fifa: GUA
750
840
  ioc: GUA
751
841
  iso_name: Guatemala
842
+ numeric: "320"
752
843
  official: Republic of Guatemala
753
- fifa: GUA
754
844
  short: Guatemala
755
845
  GU:
756
846
  alpha2: GU
757
847
  alpha3: GUM
848
+ fifa: GUM
758
849
  ioc: GUM
759
850
  iso_name: Guam
760
- fifa: GUM
761
- short: Guam
851
+ numeric: "316"
762
852
  official: Guam
853
+ short: Guam
763
854
  GW:
764
855
  alpha2: GW
765
856
  alpha3: GNB
857
+ fifa: GNB
766
858
  ioc: GBS
767
859
  iso_name: Guinea-Bissau
860
+ numeric: "624"
768
861
  official: Republic of Guinea-Bissau
769
- fifa: GNB
770
862
  short: Guinea-Bissau
771
863
  GY:
772
864
  alpha2: GY
773
865
  alpha3: GUY
866
+ fifa: GUY
774
867
  ioc: GUY
775
868
  iso_name: Guyana
869
+ numeric: "328"
776
870
  official: Co-operative Republic of Guyana
777
- fifa: GUY
778
871
  short: Guyana
779
872
  HK:
873
+ aliases:
874
+ - Hong Kong Special Administrative Region
780
875
  alpha2: HK
781
876
  alpha3: HKG
877
+ fifa: HKG
782
878
  ioc: HKG
783
879
  iso_name: Hong Kong
880
+ numeric: "344"
784
881
  official: Hong Kong Special Administrative Region of the People's Republic of China
785
- aliases:
786
- - Hong Kong Special Administrative Region
787
- fifa: HKG
788
882
  short: Hong Kong
789
883
  HM:
884
+ aliases:
885
+ - HIMI
790
886
  alpha2: HM
791
887
  alpha3: HMD
888
+ fifa:
792
889
  ioc:
793
890
  iso_name: Heard and McDonald Islands
794
- aliases:
795
- - HIMI
796
- fifa:
797
- short: Heard and McDonald Islands
891
+ numeric: "334"
798
892
  official: Heard and McDonald Islands
893
+ short: Heard and McDonald Islands
799
894
  HN:
800
895
  alpha2: HN
801
896
  alpha3: HND
897
+ fifa: HON
802
898
  ioc: HON
803
899
  iso_name: Honduras
900
+ numeric: "340"
804
901
  official: Republic of Honduras
805
- fifa: HON
806
902
  short: Honduras
807
903
  HR:
808
904
  alpha2: HR
809
905
  alpha3: HRV
906
+ fifa: CRO
810
907
  ioc: CRO
811
908
  iso_name: Croatia
909
+ numeric: "191"
812
910
  official: Republic of Croatia
813
- fifa: CRO
814
911
  short: Croatia
815
912
  HT:
816
913
  alpha2: HT
817
914
  alpha3: HTI
915
+ fifa: HAI
818
916
  ioc: HAI
819
917
  iso_name: Haiti
918
+ numeric: "332"
820
919
  official: Republic of Haiti
821
- fifa: HAI
822
920
  short: Haiti
823
921
  HU:
824
922
  alpha2: HU
825
923
  alpha3: HUN
924
+ fifa: HUN
826
925
  ioc: HUN
827
926
  iso_name: Hungary
828
- fifa: HUN
829
- short: Hungary
927
+ numeric: "348"
830
928
  official: Hungary
929
+ short: Hungary
831
930
  ID:
832
931
  alpha2: ID
833
932
  alpha3: IDN
933
+ fifa: IDN
834
934
  ioc: INA
835
935
  iso_name: Indonesia
936
+ numeric: "360"
836
937
  official: Republic of Indonesia
837
- fifa: IDN
838
938
  short: Indonesia
839
939
  IE:
840
940
  alpha2: IE
841
941
  alpha3: IRL
942
+ fifa: IRL
842
943
  ioc: IRL
843
944
  iso_name: Ireland
844
- short: Ireland
845
- fifa: IRL
945
+ numeric: "372"
846
946
  official: Ireland
947
+ short: Ireland
847
948
  IL:
848
949
  alpha2: IL
849
950
  alpha3: ISR
951
+ fifa: ISR
850
952
  ioc: ISR
851
953
  iso_name: Israel
954
+ numeric: "376"
852
955
  official: State of Israel
853
- fifa: ISR
854
956
  short: Israel
855
957
  IM:
958
+ aliases:
959
+ - Mann
856
960
  alpha2: IM
857
961
  alpha3: IMN
962
+ fifa:
858
963
  ioc:
859
964
  iso_name: Isle of Man
860
- aliases:
861
- - Mann
862
- fifa:
863
- short: Isle of Man
965
+ numeric: "833"
864
966
  official: Isle of Man
967
+ short: Isle of Man
865
968
  IN:
866
969
  alpha2: IN
867
970
  alpha3: IND
971
+ fifa: IND
868
972
  ioc: IND
869
973
  iso_name: India
974
+ numeric: "356"
870
975
  official: Republic of India
871
- fifa: IND
872
976
  short: India
873
977
  IO:
874
- alpha2: IO
875
- alpha3: IOT
876
- ioc:
877
- iso_name: British Indian Ocean Territory
878
978
  aliases:
879
979
  - BIOT
880
980
  - Chagos Islands
981
+ alpha2: IO
982
+ alpha3: IOT
881
983
  fifa:
882
- short: British Indian Ocean Territory
984
+ ioc:
985
+ iso_name: British Indian Ocean Territory
986
+ numeric: "86"
883
987
  official: British Indian Ocean Territory
988
+ short: British Indian Ocean Territory
884
989
  IQ:
885
990
  alpha2: IQ
886
991
  alpha3: IRQ
992
+ fifa: IRQ
887
993
  ioc: IRQ
888
994
  iso_name: Iraq
995
+ numeric: "368"
889
996
  official: Republic of Iraq
890
- fifa: IRQ
891
997
  short: Iraq
892
998
  IR:
893
999
  alpha2: IR
894
1000
  alpha3: IRN
1001
+ fifa: IRN
895
1002
  ioc: IRI
896
1003
  iso_name: Iran, Islamic Republic Of
897
- short: Iran
1004
+ numeric: "364"
898
1005
  official: Islamic Republic of Iran
899
- fifa: IRN
1006
+ short: Iran
900
1007
  IS:
901
1008
  alpha2: IS
902
1009
  alpha3: ISL
1010
+ fifa: ISL
903
1011
  ioc: ISL
904
1012
  iso_name: Iceland
905
- fifa: ISL
906
- short: Iceland
1013
+ numeric: "352"
907
1014
  official: Iceland
1015
+ short: Iceland
908
1016
  IT:
909
1017
  alpha2: IT
910
1018
  alpha3: ITA
1019
+ fifa: ITA
911
1020
  ioc: ITA
912
1021
  iso_name: Italy
1022
+ numeric: "380"
913
1023
  official: Italian Republic
914
- fifa: ITA
915
1024
  short: Italy
916
1025
  JE:
917
1026
  alpha2: JE
918
1027
  alpha3: JEY
1028
+ fifa:
919
1029
  ioc:
920
1030
  iso_name: Jersey
1031
+ numeric: "832"
921
1032
  official: Bailiwick of Jersey
922
- fifa:
923
1033
  short: Jersey
924
1034
  JM:
925
1035
  alpha2: JM
926
1036
  alpha3: JAM
1037
+ fifa: JAM
927
1038
  ioc: JAM
928
1039
  iso_name: Jamaica
929
- short: Jamaica
930
- fifa: JAM
1040
+ numeric: "388"
931
1041
  official: Jamaica
1042
+ short: Jamaica
932
1043
  JO:
1044
+ aliases:
1045
+ - Kingdom of Jordan
933
1046
  alpha2: JO
934
1047
  alpha3: JOR
1048
+ fifa: JOR
935
1049
  ioc: JOR
936
1050
  iso_name: Jordan
1051
+ numeric: "400"
937
1052
  official: Hashemite Kingdom of Jordan
938
- aliases:
939
- - Kingdom of Jordan
940
- fifa: JOR
941
1053
  short: Jordan
942
1054
  JP:
943
1055
  alpha2: JP
944
1056
  alpha3: JPN
1057
+ fifa: JPN
945
1058
  ioc: JPN
946
1059
  iso_name: Japan
947
- short: Japan
948
- fifa: JPN
1060
+ numeric: "392"
949
1061
  official: Japan
1062
+ short: Japan
950
1063
  KE:
951
1064
  alpha2: KE
952
1065
  alpha3: KEN
1066
+ fifa: KEN
953
1067
  ioc: KEN
954
1068
  iso_name: Kenya
1069
+ numeric: "404"
955
1070
  official: Republic of Kenya
956
- fifa: KEN
957
1071
  short: Kenya
958
1072
  KG:
959
1073
  alpha2: KG
960
1074
  alpha3: KGZ
1075
+ fifa: KGZ
961
1076
  ioc: KGZ
962
1077
  iso_name: Kyrgyzstan
1078
+ numeric: "417"
963
1079
  official: Kyrgyz Republic
964
- fifa: KGZ
965
1080
  short: Kyrgyzstan
966
1081
  KH:
967
1082
  alpha2: KH
968
1083
  alpha3: KHM
1084
+ fifa: CAM
969
1085
  ioc: CAM
970
1086
  iso_name: Cambodia
1087
+ numeric: "116"
971
1088
  official: Kingdom of Cambodia
972
- fifa: CAM
973
1089
  short: Cambodia
974
1090
  KI:
975
1091
  alpha2: KI
976
1092
  alpha3: KIR
1093
+ fifa: KIR
977
1094
  ioc: KIR
978
1095
  iso_name: Kiribati
1096
+ numeric: "296"
979
1097
  official: Republic of Kiribati
980
- fifa: KIR
981
1098
  short: Kiribati
982
1099
  KM:
983
1100
  alpha2: KM
984
1101
  alpha3: COM
1102
+ fifa: COM
985
1103
  ioc: COM
986
1104
  iso_name: Comoros
1105
+ numeric: "174"
987
1106
  official: Union of the Comoros
988
- fifa: COM
989
1107
  short: Comoros
990
1108
  KN:
1109
+ aliases:
1110
+ - Federation of Saint Christopher and Nevi
991
1111
  alpha2: KN
992
1112
  alpha3: KNA
1113
+ fifa: SKN
993
1114
  ioc: SKN
994
1115
  iso_name: Saint Kitts And Nevis
995
- short: Saint Kitts And Nevis
1116
+ numeric: "659"
996
1117
  official: Federation of Saint Kitts and Nevis
997
- aliases:
998
- - Federation of Saint Christopher and Nevi
999
- fifa: SKN
1118
+ short: Saint Kitts And Nevis
1000
1119
  KP:
1001
- alpha2: KP
1002
- alpha3: PRK
1003
- ioc: PRK
1004
- iso_name: Korea, Democratic People's Republic Of
1005
- short: North Korea
1006
- official: Democratic People's Republic of Korea
1007
1120
  aliases:
1008
1121
  - DPRK
1009
1122
  - N Korea
1010
1123
  - N. Korea
1124
+ alpha2: KP
1125
+ alpha3: PRK
1011
1126
  fifa: PRK
1127
+ ioc: PRK
1128
+ iso_name: Korea, Democratic People's Republic Of
1129
+ numeric: "408"
1130
+ official: Democratic People's Republic of Korea
1131
+ short: North Korea
1012
1132
  KR:
1133
+ aliases:
1134
+ - S Korea
1135
+ - S. Korea
1013
1136
  alpha2: KR
1014
1137
  alpha3: KOR
1138
+ fifa: KOR
1015
1139
  ioc: KOR
1016
1140
  iso_name: Korea, Republic of
1017
- short: South Korea
1141
+ numeric: "410"
1018
1142
  official: Republic of Korea
1019
- aliases:
1020
- - S Korea
1021
- - S. Korea
1022
- fifa: KOR
1143
+ short: South Korea
1023
1144
  KW:
1024
1145
  alpha2: KW
1025
1146
  alpha3: KWT
1147
+ fifa: KUW
1026
1148
  ioc: KUW
1027
1149
  iso_name: Kuwait
1150
+ numeric: "414"
1028
1151
  official: State of Kuwait
1029
- fifa: KUW
1030
1152
  short: Kuwait
1031
1153
  KY:
1154
+ aliases:
1155
+ - Caymans
1032
1156
  alpha2: KY
1033
1157
  alpha3: CYM
1158
+ fifa: CAY
1034
1159
  ioc: CAY
1035
1160
  iso_name: Cayman Islands
1036
- aliases:
1037
- - Caymans
1038
- fifa: CAY
1039
- short: Cayman Islands
1161
+ numeric: "136"
1040
1162
  official: Cayman Islands
1163
+ short: Cayman Islands
1041
1164
  KZ:
1042
1165
  alpha2: KZ
1043
1166
  alpha3: KAZ
1167
+ fifa: KAZ
1044
1168
  ioc: KAZ
1045
1169
  iso_name: Kazakhstan
1170
+ numeric: "398"
1046
1171
  official: Republic of Kazakhstan
1047
- fifa: KAZ
1048
1172
  short: Kazakhstan
1049
1173
  LA:
1050
1174
  alpha2: LA
1051
1175
  alpha3: LAO
1176
+ fifa: LAO
1052
1177
  ioc: LAO
1053
1178
  iso_name: Lao People's Democratic Republic
1179
+ numeric: "418"
1054
1180
  official: Lao People's Democratic Republic
1055
- simple: Laos
1056
- fifa: LAO
1057
1181
  short: Lao People's Democratic Republic
1182
+ simple: Laos
1058
1183
  LB:
1059
1184
  alpha2: LB
1060
1185
  alpha3: LBN
1186
+ fifa: LIB
1061
1187
  ioc: LIB
1062
1188
  iso_name: Lebanon
1189
+ numeric: "422"
1063
1190
  official: Lebanese Republic
1064
- fifa: LIB
1065
1191
  short: Lebanon
1066
1192
  LC:
1193
+ aliases:
1194
+ - St. Lucia
1067
1195
  alpha2: LC
1068
1196
  alpha3: LCA
1197
+ fifa: LCA
1069
1198
  ioc: LCA
1070
1199
  iso_name: Saint Lucia
1071
- aliases:
1072
- - St. Lucia
1073
- fifa: LCA
1074
- short: Saint Lucia
1200
+ numeric: "662"
1075
1201
  official: Saint Lucia
1202
+ short: Saint Lucia
1076
1203
  LI:
1077
1204
  alpha2: LI
1078
1205
  alpha3: LIE
1206
+ fifa: LIE
1079
1207
  ioc: LIE
1080
1208
  iso_name: Liechtenstein
1209
+ numeric: "438"
1081
1210
  official: Principality of Liechtenstein
1082
- fifa: LIE
1083
1211
  short: Liechtenstein
1084
1212
  LK:
1085
1213
  alpha2: LK
1086
1214
  alpha3: LKA
1215
+ fifa: SRI
1087
1216
  ioc: SRI
1088
1217
  iso_name: Sri Lanka
1218
+ numeric: "144"
1089
1219
  official: Democratic Socialist Republic of Sri Lanka
1090
- fifa: SRI
1091
1220
  short: Sri Lanka
1092
1221
  LR:
1093
1222
  alpha2: LR
1094
1223
  alpha3: LBR
1224
+ fifa: LBR
1095
1225
  ioc: LBR
1096
1226
  iso_name: Liberia
1227
+ numeric: "430"
1097
1228
  official: Republic of Liberia
1098
- fifa: LBR
1099
1229
  short: Liberia
1100
1230
  LS:
1101
1231
  alpha2: LS
1102
1232
  alpha3: LSO
1233
+ fifa: LES
1103
1234
  ioc: LES
1104
1235
  iso_name: Lesotho
1236
+ numeric: "426"
1105
1237
  official: Kingdom of Lesoth
1106
- fifa: LES
1107
1238
  short: Lesotho
1108
1239
  LT:
1109
1240
  alpha2: LT
1110
1241
  alpha3: LTU
1242
+ fifa: LTU
1111
1243
  ioc: LTU
1112
1244
  iso_name: Lithuania
1245
+ numeric: "440"
1113
1246
  official: Republic of Lithuania
1114
- fifa: LTU
1115
1247
  short: Lithuania
1116
1248
  LU:
1117
1249
  alpha2: LU
1118
1250
  alpha3: LUX
1251
+ fifa: LUX
1119
1252
  ioc: LUX
1120
1253
  iso_name: Luxembourg
1254
+ numeric: "442"
1121
1255
  official: Grand Duchy of Luxembourg
1122
- fifa: LUX
1123
1256
  short: Luxembourg
1124
1257
  LV:
1125
1258
  alpha2: LV
1126
1259
  alpha3: LVA
1260
+ fifa: LVA
1127
1261
  ioc: LAT
1128
1262
  iso_name: Latvia
1263
+ numeric: "428"
1129
1264
  official: Republic of Latvia
1130
- fifa: LVA
1131
1265
  short: Latvia
1132
1266
  LY:
1133
1267
  alpha2: LY
1134
1268
  alpha3: LBY
1269
+ fifa: LBY
1135
1270
  ioc: LBA
1136
1271
  iso_name: Libya
1272
+ numeric: "434"
1137
1273
  official: State of Libya
1138
- fifa: LBY
1139
1274
  short: Libya
1140
1275
  MA:
1141
1276
  alpha2: MA
1142
1277
  alpha3: MAR
1278
+ fifa: MAR
1143
1279
  ioc: MAR
1144
1280
  iso_name: Morocco
1281
+ numeric: "504"
1145
1282
  official: Kingdom of Morocco
1146
- fifa: MAR
1147
1283
  short: Morocco
1148
1284
  MC:
1149
1285
  alpha2: MC
1150
1286
  alpha3: MCO
1287
+ fifa: MON
1151
1288
  ioc: MON
1152
1289
  iso_name: Monaco
1290
+ numeric: "492"
1153
1291
  official: Principality of Monaco
1154
- fifa: MON
1155
1292
  short: Monaco
1156
1293
  MD:
1157
1294
  alpha2: MD
1158
1295
  alpha3: MDA
1296
+ fifa: MDA
1159
1297
  ioc: MDA
1160
1298
  iso_name: Moldova, Republic of
1299
+ numeric: "498"
1161
1300
  official: Republic of Moldova
1162
- fifa: MDA
1163
1301
  short: Moldova, Republic of
1164
1302
  ME:
1165
1303
  alpha2: ME
1166
1304
  alpha3: MNE
1305
+ fifa: MNE
1167
1306
  ioc: MNE
1168
1307
  iso_name: Montenegro
1169
- fifa: MNE
1170
- short: Montenegro
1308
+ numeric: "499"
1171
1309
  official: Montenegro
1310
+ short: Montenegro
1172
1311
  MF:
1312
+ aliases:
1313
+ - St. Martin
1173
1314
  alpha2: MF
1174
1315
  alpha3: MAF
1316
+ fifa:
1175
1317
  ioc:
1176
1318
  iso_name: Saint Martin
1177
- aliases:
1178
- - St. Martin
1179
- fifa:
1180
- short: Saint Martin
1319
+ numeric: "663"
1181
1320
  official: Saint Martin
1321
+ short: Saint Martin
1182
1322
  MG:
1183
1323
  alpha2: MG
1184
1324
  alpha3: MDG
1325
+ fifa: MAD
1185
1326
  ioc: MAD
1186
1327
  iso_name: Madagascar
1328
+ numeric: "450"
1187
1329
  official: Republic of Madagascar
1188
- fifa: MAD
1189
1330
  short: Madagascar
1190
1331
  MH:
1191
1332
  alpha2: MH
1192
1333
  alpha3: MHL
1334
+ fifa: MHL
1193
1335
  ioc: MHL
1194
1336
  iso_name: Marshall Islands
1337
+ numeric: "584"
1195
1338
  official: Republic of the Marshall Islands
1196
- fifa: MHL
1197
1339
  short: Marshall Islands
1198
1340
  MK:
1199
1341
  alpha2: MK
1200
1342
  alpha3: MKD
1343
+ fifa: MKD
1201
1344
  ioc: MKD
1202
1345
  iso_name: Macedonia, the Former Yugoslav Republic Of
1203
- short: Macedonia
1346
+ numeric: "807"
1204
1347
  official: Republic of Macedonia
1205
- fifa: MKD
1348
+ short: Macedonia
1206
1349
  ML:
1207
1350
  alpha2: ML
1208
1351
  alpha3: MLI
1352
+ fifa: MLI
1209
1353
  ioc: MLI
1210
1354
  iso_name: Mali
1355
+ numeric: "466"
1211
1356
  official: Republic of Mali
1212
- fifa: MLI
1213
1357
  short: Mali
1214
1358
  MM:
1359
+ aliases:
1360
+ - Burma
1215
1361
  alpha2: MM
1216
1362
  alpha3: MMR
1363
+ fifa: MYA
1217
1364
  ioc: MYA
1218
1365
  iso_name: Myanmar
1366
+ numeric: "104"
1219
1367
  official: Republic of the Union of Myanmar
1220
- aliases:
1221
- - Burma
1222
- fifa: MYA
1223
1368
  short: Myanmar
1224
1369
  MN:
1225
1370
  alpha2: MN
1226
1371
  alpha3: MNG
1372
+ fifa: MGL
1227
1373
  ioc: MGL
1228
1374
  iso_name: Mongolia
1229
- fifa: MGL
1230
- short: Mongolia
1375
+ numeric: "496"
1231
1376
  official: Mongolia
1377
+ short: Mongolia
1232
1378
  MO:
1379
+ aliases:
1380
+ - Macao
1381
+ - Macao Special Administrative Region
1233
1382
  alpha2: MO
1234
1383
  alpha3: MAC
1384
+ fifa:
1235
1385
  ioc:
1236
1386
  iso_name: Macao
1387
+ numeric: "446"
1237
1388
  official: Macao Special Administrative Region of the People's Republic of China
1238
- aliases:
1239
- - Macao
1240
- - Macao Special Administrative Region
1241
- fifa:
1242
1389
  short: Macao
1243
1390
  MP:
1391
+ aliases:
1392
+ - CNMI
1244
1393
  alpha2: MP
1245
1394
  alpha3: MNP
1395
+ fifa:
1246
1396
  ioc:
1247
1397
  iso_name: Northern Mariana Islands
1398
+ numeric: "580"
1248
1399
  official: Commonwealth of the Northern Mariana Islands
1249
- aliases:
1250
- - CNMI
1251
- fifa:
1252
1400
  short: Northern Mariana Islands
1253
1401
  MQ:
1254
1402
  alpha2: MQ
1255
1403
  alpha3: MTQ
1404
+ fifa:
1256
1405
  ioc:
1257
1406
  iso_name: Martinique
1258
- fifa:
1259
- short: Martinique
1407
+ numeric: "474"
1260
1408
  official: Martinique
1409
+ short: Martinique
1261
1410
  MR:
1262
1411
  alpha2: MR
1263
1412
  alpha3: MRT
1413
+ fifa: MTN
1264
1414
  ioc: MTN
1265
1415
  iso_name: Mauritania
1416
+ numeric: "478"
1266
1417
  official: Islamic Republic of Mauritania
1267
- fifa: MTN
1268
1418
  short: Mauritania
1269
1419
  MS:
1270
1420
  alpha2: MS
1271
1421
  alpha3: MSR
1422
+ fifa:
1272
1423
  ioc:
1273
1424
  iso_name: Montserrat
1274
- fifa:
1275
- short: Montserrat
1425
+ numeric: "500"
1276
1426
  official: Montserrat
1427
+ short: Montserrat
1277
1428
  MT:
1278
1429
  alpha2: MT
1279
1430
  alpha3: MLT
1431
+ fifa: MLT
1280
1432
  ioc: MLT
1281
1433
  iso_name: Malta
1434
+ numeric: "470"
1282
1435
  official: Republic of Malta
1283
- fifa: MLT
1284
1436
  short: Malta
1285
1437
  MU:
1286
1438
  alpha2: MU
1287
1439
  alpha3: MUS
1440
+ fifa: MRI
1288
1441
  ioc: MRI
1289
1442
  iso_name: Mauritius
1443
+ numeric: "480"
1290
1444
  official: Republic of Mauritius
1291
- fifa: MRI
1292
1445
  short: Mauritius
1293
1446
  MV:
1447
+ aliases:
1448
+ - Maldive Islands
1294
1449
  alpha2: MV
1295
1450
  alpha3: MDV
1451
+ fifa: MDV
1296
1452
  ioc: MDV
1297
1453
  iso_name: Maldives
1454
+ numeric: "462"
1298
1455
  official: Republic of the Maldives
1299
- aliases:
1300
- - Maldive Islands
1301
- fifa: MDV
1302
1456
  short: Maldives
1303
1457
  MW:
1304
1458
  alpha2: MW
1305
1459
  alpha3: MWI
1460
+ fifa: MWI
1306
1461
  ioc: MAW
1307
1462
  iso_name: Malawi
1463
+ numeric: "454"
1308
1464
  official: Republic of Malawi
1309
- fifa: MWI
1310
1465
  short: Malawi
1311
1466
  MX:
1312
1467
  alpha2: MX
1313
1468
  alpha3: MEX
1469
+ fifa: MEX
1314
1470
  ioc: MEX
1315
1471
  iso_name: Mexico
1472
+ numeric: "484"
1316
1473
  official: United Mexican States
1317
- fifa: MEX
1318
1474
  short: Mexico
1319
1475
  MY:
1320
1476
  alpha2: MY
1321
1477
  alpha3: MYS
1478
+ fifa: MAS
1322
1479
  ioc: MAS
1323
1480
  iso_name: Malaysia
1324
- short: Malaysia
1325
- fifa: MAS
1481
+ numeric: "458"
1326
1482
  official: Malaysia
1483
+ short: Malaysia
1327
1484
  MZ:
1328
1485
  alpha2: MZ
1329
1486
  alpha3: MOZ
1487
+ fifa: MOZ
1330
1488
  ioc: MOZ
1331
1489
  iso_name: Mozambique
1332
- short: Mozambique
1333
- fifa: MOZ
1490
+ numeric: "508"
1334
1491
  official: Mozambique
1492
+ short: Mozambique
1335
1493
  NA:
1336
1494
  alpha2: NA
1337
1495
  alpha3: NAM
1496
+ fifa: NAM
1338
1497
  ioc: NAM
1339
1498
  iso_name: Namibia
1340
- short: Namibia
1341
- fifa: NAM
1499
+ numeric: "516"
1342
1500
  official: Namibia
1501
+ short: Namibia
1343
1502
  NC:
1344
1503
  alpha2: NC
1345
1504
  alpha3: NCL
1505
+ fifa:
1346
1506
  ioc:
1347
1507
  iso_name: New Caledonia
1348
- short: New Caledonia
1349
- fifa:
1508
+ numeric: "540"
1350
1509
  official: New Caledonia
1510
+ short: New Caledonia
1351
1511
  NE:
1352
1512
  alpha2: NE
1353
1513
  alpha3: NER
1514
+ fifa: NIG
1354
1515
  ioc: NIG
1355
1516
  iso_name: Niger
1517
+ numeric: "562"
1356
1518
  official: Republic of Niger
1357
- fifa: NIG
1358
1519
  short: Niger
1359
1520
  NF:
1360
1521
  alpha2: NF
1361
1522
  alpha3: NFK
1523
+ fifa:
1362
1524
  ioc:
1363
1525
  iso_name: Norfolk Island
1364
- short: Norfolk Island
1526
+ numeric: "574"
1365
1527
  official: Territory of Norfolk Island
1366
- fifa:
1528
+ short: Norfolk Island
1367
1529
  NG:
1368
1530
  alpha2: NG
1369
1531
  alpha3: NGA
1532
+ fifa: NGA
1370
1533
  ioc: NGR
1371
1534
  iso_name: Nigeria
1372
- short: Nigeria
1535
+ numeric: "566"
1373
1536
  official: Federal Republic of Nigeria
1374
- fifa: NGA
1537
+ short: Nigeria
1375
1538
  NI:
1376
1539
  alpha2: NI
1377
1540
  alpha3: NIC
1541
+ fifa: NCA
1378
1542
  ioc: NCA
1379
1543
  iso_name: Nicaragua
1380
- short: Nicaragua
1544
+ numeric: "558"
1381
1545
  official: Republic of Nicaragua
1382
- fifa: NCA
1546
+ short: Nicaragua
1383
1547
  NL:
1384
1548
  alpha2: NL
1385
1549
  alpha3: NLD
1550
+ fifa: NED
1386
1551
  ioc: NED
1387
1552
  iso_name: Netherlands
1388
- short: Netherlands
1389
- fifa: NED
1553
+ numeric: "528"
1390
1554
  official: Netherlands
1555
+ short: Netherlands
1391
1556
  "NO":
1392
1557
  alpha2: "NO"
1393
1558
  alpha3: NOR
1559
+ fifa: NOR
1394
1560
  ioc: NOR
1395
1561
  iso_name: Norway
1562
+ numeric: "578"
1396
1563
  official: Kingdom of Norway
1397
- fifa: NOR
1398
1564
  short: Norway
1399
1565
  NP:
1400
1566
  alpha2: NP
1401
1567
  alpha3: NPL
1568
+ fifa: NEP
1402
1569
  ioc: NEP
1403
1570
  iso_name: Nepal
1404
- short: Nepal
1571
+ numeric: "524"
1405
1572
  official: Federal Democratic Republic of Nepal
1406
- fifa: NEP
1573
+ short: Nepal
1407
1574
  NR:
1408
1575
  alpha2: NR
1409
1576
  alpha3: NRU
1577
+ fifa: NRU
1410
1578
  ioc: NRU
1411
1579
  iso_name: Nauru
1412
- short: Nauru
1580
+ numeric: "520"
1413
1581
  official: Republic of Nauru
1414
- fifa: NRU
1582
+ short: Nauru
1415
1583
  NU:
1416
1584
  alpha2: NU
1417
1585
  alpha3: NIU
1586
+ fifa:
1418
1587
  ioc:
1419
1588
  iso_name: Niue
1420
- short: Niue
1421
- fifa:
1589
+ numeric: "570"
1422
1590
  official: Niue
1591
+ short: Niue
1423
1592
  NZ:
1424
1593
  alpha2: NZ
1425
1594
  alpha3: NZL
1595
+ fifa: NZL
1426
1596
  ioc: NZL
1427
1597
  iso_name: New Zealand
1428
- short: New Zealand
1429
- fifa: NZL
1598
+ numeric: "554"
1430
1599
  official: New Zealand
1600
+ short: New Zealand
1431
1601
  OM:
1432
1602
  alpha2: OM
1433
1603
  alpha3: OMN
1604
+ fifa: OMA
1434
1605
  ioc: OMA
1435
1606
  iso_name: Oman
1436
- short: Oman
1607
+ numeric: "512"
1437
1608
  official: Sultanate of Oman
1438
- fifa: OMA
1609
+ short: Oman
1439
1610
  PA:
1440
1611
  alpha2: PA
1441
1612
  alpha3: PAN
1613
+ fifa: PAN
1442
1614
  ioc: PAN
1443
1615
  iso_name: Panama
1444
- short: Panama
1616
+ numeric: "591"
1445
1617
  official: Republic of Panama
1446
- fifa: PAN
1618
+ short: Panama
1447
1619
  PE:
1448
1620
  alpha2: PE
1449
1621
  alpha3: PER
1622
+ fifa: PER
1450
1623
  ioc: PER
1451
1624
  iso_name: Peru
1452
- short: Peru
1625
+ numeric: "604"
1453
1626
  official: Republic of Peru
1454
- fifa: PER
1627
+ short: Peru
1455
1628
  PF:
1456
1629
  alpha2: PF
1457
1630
  alpha3: PYF
1631
+ fifa:
1458
1632
  ioc:
1459
1633
  iso_name: French Polynesia
1460
- short: French Polynesia
1461
- fifa:
1634
+ numeric: "258"
1462
1635
  official: French Polynesia
1636
+ short: French Polynesia
1463
1637
  PG:
1464
1638
  alpha2: PG
1465
1639
  alpha3: PNG
1640
+ fifa: PNG
1466
1641
  ioc: PNG
1467
1642
  iso_name: Papua New Guinea
1468
- short: Papua New Guinea
1643
+ numeric: "598"
1469
1644
  official: Independent State of Papua New Guinea
1470
- fifa: PNG
1645
+ short: Papua New Guinea
1471
1646
  PH:
1472
1647
  alpha2: PH
1473
1648
  alpha3: PHL
1649
+ fifa: PHI
1474
1650
  ioc: PHI
1475
1651
  iso_name: Philippines
1652
+ numeric: "608"
1476
1653
  official: Republic of the Philippines
1477
- fifa: PHI
1478
1654
  short: Philippines
1479
1655
  PK:
1480
1656
  alpha2: PK
1481
1657
  alpha3: PAK
1658
+ fifa: PAK
1482
1659
  ioc: PAK
1483
1660
  iso_name: Pakistan
1484
- short: Pakistan
1661
+ numeric: "586"
1485
1662
  official: Islamic Republic of Pakistan
1486
- fifa: PAK
1663
+ short: Pakistan
1487
1664
  PL:
1488
1665
  alpha2: PL
1489
1666
  alpha3: POL
1667
+ fifa: POL
1490
1668
  ioc: POL
1491
1669
  iso_name: Poland
1492
- short: Poland
1670
+ numeric: "616"
1493
1671
  official: Republic of Poland
1494
- fifa: POL
1672
+ short: Poland
1495
1673
  PM:
1496
1674
  alpha2: PM
1497
1675
  alpha3: SPM
1676
+ fifa:
1498
1677
  ioc:
1499
1678
  iso_name: Saint Pierre And Miquelon
1500
- short: Saint Pierre And Miquelon
1501
- fifa:
1679
+ numeric: "666"
1502
1680
  official: Saint Pierre And Miquelon
1681
+ short: Saint Pierre And Miquelon
1503
1682
  PN:
1504
1683
  alpha2: PN
1505
1684
  alpha3: PCN
1685
+ fifa:
1506
1686
  ioc:
1507
1687
  iso_name: Pitcairn
1508
- short: Pitcairn
1688
+ numeric: "612"
1509
1689
  official: Pitcairn, Henderson, Ducie and Oeno Islands
1510
- fifa:
1690
+ short: Pitcairn
1511
1691
  PR:
1512
1692
  alpha2: PR
1513
1693
  alpha3: PRI
1694
+ fifa: PUR
1514
1695
  ioc: PUR
1515
1696
  iso_name: Puerto Rico
1516
- short: Puerto Rico
1697
+ numeric: "630"
1517
1698
  official: Commonwealth of Puerto Rico
1518
- fifa: PUR
1699
+ short: Puerto Rico
1519
1700
  PS:
1701
+ aliases:
1702
+ - Palestinian Territories
1703
+ - Palestinian Territory
1520
1704
  alpha2: PS
1521
1705
  alpha3: PSE
1706
+ fifa: PLE
1522
1707
  ioc: PLE
1523
1708
  iso_name: Palestinian Territory, Occupied
1524
- fifa: PLE
1709
+ numeric: "275"
1710
+ official: State of Palestine
1525
1711
  short: Palestine
1526
- aliases:
1527
- - Palestinian Territories
1528
- - Palestinian Territory
1529
- official: Palestinian Territory, Occupied
1530
1712
  PT:
1531
1713
  alpha2: PT
1532
1714
  alpha3: PRT
1715
+ fifa: POR
1533
1716
  ioc: POR
1534
1717
  iso_name: Portugal
1718
+ numeric: "620"
1535
1719
  official: Portuguese Republic
1536
- fifa: POR
1537
1720
  short: Portugal
1538
1721
  PW:
1722
+ aliases:
1723
+ - Belau
1724
+ - Pelew
1539
1725
  alpha2: PW
1540
1726
  alpha3: PLW
1727
+ fifa: PLW
1541
1728
  ioc: PLW
1542
1729
  iso_name: Palau
1543
- short: Palau
1730
+ numeric: "585"
1544
1731
  official: Republic of Palau
1545
- fifa: PLW
1546
- aliases:
1547
- - Belau
1548
- - Pelew
1732
+ short: Palau
1549
1733
  PY:
1550
1734
  alpha2: PY
1551
1735
  alpha3: PRY
1736
+ fifa: PAR
1552
1737
  ioc: PAR
1553
1738
  iso_name: Paraguay
1554
- short: Paraguay
1739
+ numeric: "600"
1555
1740
  official: Republic of Paraguay
1556
- fifa: PAR
1741
+ short: Paraguay
1557
1742
  QA:
1558
1743
  alpha2: QA
1559
1744
  alpha3: QAT
1745
+ fifa: QAT
1560
1746
  ioc: QAT
1561
1747
  iso_name: Qatar
1562
- short: Qatar
1748
+ numeric: "634"
1563
1749
  official: State of Qatar
1564
- fifa: QAT
1750
+ short: Qatar
1565
1751
  RE:
1566
1752
  alpha2: RE
1567
1753
  alpha3: REU
1754
+ fifa:
1568
1755
  ioc:
1569
1756
  iso_name: "R\xC3\xA9union"
1570
- short: "R\xC3\xA9union"
1757
+ numeric: "638"
1571
1758
  official: "R\xC3\xA9union Island"
1572
- fifa:
1759
+ short: "R\xC3\xA9union"
1573
1760
  RO:
1574
1761
  alpha2: RO
1575
1762
  alpha3: ROU
1763
+ fifa: ROU
1576
1764
  ioc: ROU
1577
1765
  iso_name: Romania
1578
- short: Romania
1579
- fifa: ROU
1766
+ numeric: "642"
1580
1767
  official: Romania
1768
+ short: Romania
1581
1769
  RS:
1582
1770
  alpha2: RS
1583
1771
  alpha3: SRB
1772
+ fifa: SRB
1584
1773
  ioc: SRB
1585
1774
  iso_name: Serbia
1586
- short: Serbia
1775
+ numeric: "688"
1587
1776
  official: Republic of Serbia
1588
- fifa: SRB
1777
+ short: Serbia
1589
1778
  RU:
1590
1779
  alpha2: RU
1591
1780
  alpha3: RUS
1781
+ fifa: RUS
1592
1782
  ioc: RUS
1593
1783
  iso_name: Russian Federation
1594
- short: Russia
1595
- fifa: RUS
1784
+ numeric: "643"
1596
1785
  official: Russian Federation
1786
+ short: Russia
1597
1787
  RW:
1598
1788
  alpha2: RW
1599
1789
  alpha3: RWA
1790
+ fifa: RWA
1600
1791
  ioc: RWA
1601
1792
  iso_name: Rwanda
1602
- short: Rwanda
1793
+ numeric: "646"
1603
1794
  official: Republic of Rwanda
1604
- fifa: RWA
1795
+ short: Rwanda
1605
1796
  SA:
1606
1797
  alpha2: SA
1607
1798
  alpha3: SAU
1799
+ fifa: KSA
1608
1800
  ioc: KSA
1609
1801
  iso_name: Saudi Arabia
1802
+ numeric: "682"
1610
1803
  official: Kingdom of Saudi Arabia
1611
- fifa: KSA
1612
1804
  short: Saudi Arabia
1613
1805
  SB:
1614
1806
  alpha2: SB
1615
1807
  alpha3: SLB
1808
+ fifa: SOL
1616
1809
  ioc: SOL
1617
1810
  iso_name: Solomon Islands
1618
- short: Solomon Islands
1619
- fifa: SOL
1811
+ numeric: "90"
1620
1812
  official: Solomon Islands
1813
+ short: Solomon Islands
1621
1814
  SC:
1622
1815
  alpha2: SC
1623
1816
  alpha3: SYC
1817
+ fifa: SEY
1624
1818
  ioc: SEY
1625
1819
  iso_name: Seychelles
1626
- short: Seychelles
1820
+ numeric: "690"
1627
1821
  official: Republic of Seychelles
1628
- fifa: SEY
1822
+ short: Seychelles
1629
1823
  SD:
1630
1824
  alpha2: SD
1631
1825
  alpha3: SDN
1826
+ fifa: SDN
1632
1827
  ioc: SUD
1633
1828
  iso_name: Sudan
1634
- short: Sudan
1829
+ numeric: "729"
1635
1830
  official: Republic of the Sudan
1636
- fifa: SDN
1831
+ short: Sudan
1637
1832
  SE:
1638
1833
  alpha2: SE
1639
1834
  alpha3: SWE
1835
+ fifa: SWE
1640
1836
  ioc: SWE
1641
1837
  iso_name: Sweden
1838
+ numeric: "752"
1642
1839
  official: Kingdom of Sweden
1643
- fifa: SWE
1644
1840
  short: Sweden
1645
1841
  SG:
1646
1842
  alpha2: SG
1647
1843
  alpha3: SGP
1844
+ fifa: SIN
1648
1845
  ioc: SIN
1649
1846
  iso_name: Singapore
1650
- short: Singapore
1847
+ numeric: "702"
1651
1848
  official: Republic of Singapore
1652
- fifa: SIN
1849
+ short: Singapore
1653
1850
  SH:
1654
1851
  alpha2: SH
1655
1852
  alpha3: SHN
1853
+ fifa:
1656
1854
  ioc:
1657
1855
  iso_name: Saint Helena
1658
- short: Saint Helena
1659
- fifa:
1856
+ numeric: "654"
1660
1857
  official: Saint Helena
1858
+ short: Saint Helena
1661
1859
  SI:
1662
1860
  alpha2: SI
1663
1861
  alpha3: SVN
1862
+ fifa: SVN
1664
1863
  ioc: SLO
1665
1864
  iso_name: Slovenia
1666
- short: Slovenia
1865
+ numeric: "705"
1667
1866
  official: Republic of Slovenia
1668
- fifa: SVN
1867
+ short: Slovenia
1669
1868
  SJ:
1670
1869
  alpha2: SJ
1671
1870
  alpha3: SJM
1871
+ fifa:
1672
1872
  ioc:
1673
1873
  iso_name: Svalbard And Jan Mayen
1674
- short: Svalbard And Jan Mayen
1675
- fifa:
1874
+ numeric: "744"
1676
1875
  official: Svalbard And Jan Mayen
1876
+ short: Svalbard And Jan Mayen
1677
1877
  SK:
1678
1878
  alpha2: SK
1679
1879
  alpha3: SVK
1880
+ fifa: SVK
1680
1881
  ioc: SVK
1681
1882
  iso_name: Slovakia
1682
- short: Slovakia
1883
+ numeric: "703"
1683
1884
  official: Slovak Republic
1684
- fifa: SVK
1885
+ short: Slovakia
1685
1886
  SL:
1686
1887
  alpha2: SL
1687
1888
  alpha3: SLE
1889
+ fifa: SLE
1688
1890
  ioc: SLE
1689
1891
  iso_name: Sierra Leone
1690
- short: Sierra Leone
1892
+ numeric: "694"
1691
1893
  official: Republic of Sierra Leone
1692
- fifa: SLE
1894
+ short: Sierra Leone
1693
1895
  SM:
1896
+ aliases:
1897
+ - Most Serene Republic of San Marino
1694
1898
  alpha2: SM
1695
1899
  alpha3: SMR
1900
+ fifa: SMR
1696
1901
  ioc: SMR
1697
1902
  iso_name: San Marino
1698
- short: San Marino
1903
+ numeric: "674"
1699
1904
  official: Republic of San Marino
1700
- fifa: SMR
1701
- aliases:
1702
- - Most Serene Republic of San Marino
1905
+ short: San Marino
1703
1906
  SN:
1704
1907
  alpha2: SN
1705
1908
  alpha3: SEN
1909
+ fifa: SEN
1706
1910
  ioc: SEN
1707
1911
  iso_name: Senegal
1708
- short: Senegal
1912
+ numeric: "686"
1709
1913
  official: Republic of Senegal
1710
- fifa: SEN
1914
+ short: Senegal
1711
1915
  SO:
1712
1916
  alpha2: SO
1713
1917
  alpha3: SOM
1918
+ fifa: SOM
1714
1919
  ioc: SOM
1715
1920
  iso_name: Somalia
1716
- short: Somalia
1921
+ numeric: "706"
1717
1922
  official: Federal Republic of Somalia
1718
- fifa: SOM
1923
+ short: Somalia
1719
1924
  SR:
1925
+ aliases:
1926
+ - Surinam
1720
1927
  alpha2: SR
1721
1928
  alpha3: SUR
1929
+ fifa: SUR
1722
1930
  ioc: SUR
1723
1931
  iso_name: Suriname
1724
- short: Suriname
1932
+ numeric: "740"
1725
1933
  official: Republic of Suriname
1726
- fifa: SUR
1727
- aliases:
1728
- - Surinam
1934
+ short: Suriname
1729
1935
  SS:
1936
+ aliases:
1937
+ - S. Sudan
1730
1938
  alpha2: SS
1731
1939
  alpha3: SSD
1940
+ fifa:
1732
1941
  ioc:
1733
1942
  iso_name: South Sudan
1734
- short: South Sudan
1943
+ numeric: "728"
1735
1944
  official: Republic of South Sudan
1736
- fifa:
1737
- aliases:
1738
- - S. Sudan
1945
+ short: South Sudan
1739
1946
  ST:
1947
+ aliases:
1948
+ - Democratic Republic of Sao Tome and Principe"
1949
+ - "S\xC3\xA3o Tom\xC3\xA9 and Pr\xC3\xADncipe"
1740
1950
  alpha2: ST
1741
1951
  alpha3: STP
1952
+ fifa: STP
1742
1953
  ioc: STP
1743
1954
  iso_name: Sao Tome and Principe
1744
- short: Sao Tome and Principe
1955
+ numeric: "678"
1745
1956
  official: "Democratic Republic of S\xC3\xA3o Tom\xC3\xA9 and Pr\xC3\xADncipe"
1746
- fifa: STP
1747
- aliases:
1748
- - Democratic Republic of Sao Tome and Principe"
1749
- - "S\xC3\xA3o Tom\xC3\xA9 and Pr\xC3\xADncipe"
1957
+ short: Sao Tome and Principe
1750
1958
  SV:
1751
1959
  alpha2: SV
1752
1960
  alpha3: SLV
1961
+ fifa: SLV
1753
1962
  ioc: ESA
1754
1963
  iso_name: El Salvador
1964
+ numeric: "222"
1755
1965
  official: Republic of El Salvador
1756
- fifa: SLV
1757
1966
  short: El Salvador
1758
1967
  SY:
1759
1968
  alpha2: SY
1760
1969
  alpha3: SYR
1970
+ fifa: SYR
1761
1971
  ioc: SYR
1762
1972
  iso_name: Syrian Arab Republic
1763
- short: Syria
1764
- fifa: SYR
1973
+ numeric: "760"
1765
1974
  official: Syrian Arab Republic
1975
+ short: Syria
1766
1976
  SZ:
1977
+ aliases:
1978
+ - Ngwane
1979
+ - Swatini
1767
1980
  alpha2: SZ
1768
1981
  alpha3: SWZ
1982
+ fifa: SWZ
1769
1983
  ioc: SWZ
1770
1984
  iso_name: Swaziland
1985
+ numeric: "748"
1771
1986
  official: Kingdom of Swaziland
1772
1987
  short: Swaziland
1773
- fifa: SWZ
1774
- aliases:
1775
- - Ngwane
1776
- - Swatini
1777
1988
  TC:
1989
+ aliases:
1990
+ - TCI
1778
1991
  alpha2: TC
1779
1992
  alpha3: TCA
1993
+ fifa:
1780
1994
  ioc:
1781
1995
  iso_name: Turks and Caicos Islands
1782
- short: Turks and Caicos Islands
1783
- fifa:
1784
- aliases:
1785
- - TCI
1996
+ numeric: "796"
1786
1997
  official: Turks and Caicos Islands
1998
+ short: Turks and Caicos Islands
1787
1999
  TD:
1788
2000
  alpha2: TD
1789
2001
  alpha3: TCD
2002
+ fifa: CHA
1790
2003
  ioc: CHA
1791
2004
  iso_name: Chad
1792
- short: Chad
2005
+ numeric: "148"
1793
2006
  official: Republic of Chad
1794
- fifa: CHA
2007
+ short: Chad
1795
2008
  TF:
2009
+ aliases:
2010
+ - French Southern and Antarctic Lands
1796
2011
  alpha2: TF
1797
2012
  alpha3: ATF
2013
+ fifa:
1798
2014
  ioc:
1799
2015
  iso_name: French Southern Territories
1800
- short: French Southern Territories
2016
+ numeric: "260"
1801
2017
  official: Territory of the French Southern and Antarctic Land
1802
- fifa:
1803
- aliases:
1804
- - French Southern and Antarctic Lands
2018
+ short: French Southern Territories
1805
2019
  TG:
1806
2020
  alpha2: TG
1807
2021
  alpha3: TGO
2022
+ fifa: TOG
1808
2023
  ioc: TOG
1809
2024
  iso_name: Togo
1810
- short: Togo
2025
+ numeric: "768"
1811
2026
  official: Togolese Republic
1812
- fifa: TOG
2027
+ short: Togo
1813
2028
  TH:
1814
2029
  alpha2: TH
1815
2030
  alpha3: THA
2031
+ fifa: THA
1816
2032
  ioc: THA
1817
2033
  iso_name: Thailand
1818
- short: Thailand
2034
+ numeric: "764"
1819
2035
  official: Kingdom of Thailand
1820
- fifa: THA
2036
+ short: Thailand
1821
2037
  TJ:
1822
2038
  alpha2: TJ
1823
2039
  alpha3: TJK
2040
+ fifa: TJK
1824
2041
  ioc: TJK
1825
2042
  iso_name: Tajikistan
1826
- short: Tajikistan
2043
+ numeric: "762"
1827
2044
  official: Republic of Tajikistan
1828
- fifa: TJK
2045
+ short: Tajikistan
1829
2046
  TK:
1830
2047
  alpha2: TK
1831
2048
  alpha3: TKL
2049
+ fifa:
1832
2050
  ioc:
1833
2051
  iso_name: Tokelau
1834
- short: Tokelau
1835
- fifa:
2052
+ numeric: "772"
1836
2053
  official: Tokelau
2054
+ short: Tokelau
1837
2055
  TL:
1838
2056
  alpha2: TL
1839
2057
  alpha3: TLS
2058
+ fifa: TLS
1840
2059
  ioc: TLS
1841
2060
  iso_name: Timor-Leste
1842
- short: East Timor
2061
+ numeric: "626"
1843
2062
  official: Democratic Republic of Timor-Leste
1844
- fifa: TLS
2063
+ short: East Timor
1845
2064
  TM:
1846
2065
  alpha2: TM
1847
2066
  alpha3: TKM
2067
+ fifa: TKM
1848
2068
  ioc: TKM
1849
2069
  iso_name: Turkmenistan
1850
- short: Turkmenistan
1851
- fifa: TKM
2070
+ numeric: "795"
1852
2071
  official: Turkmenistan
2072
+ short: Turkmenistan
1853
2073
  TN:
1854
2074
  alpha2: TN
1855
2075
  alpha3: TUN
2076
+ fifa: TUN
1856
2077
  ioc: TUN
1857
2078
  iso_name: Tunisia
1858
- short: Tunisia
2079
+ numeric: "788"
1859
2080
  official: Republic of Tunisia
1860
- fifa: TUN
2081
+ short: Tunisia
1861
2082
  TO:
1862
2083
  alpha2: TO
1863
2084
  alpha3: TON
2085
+ fifa: TGA
1864
2086
  ioc: TGA
1865
2087
  iso_name: Tonga
1866
- short: Tonga
2088
+ numeric: "776"
1867
2089
  official: Kingdom of Tonga
1868
- fifa: TGA
2090
+ short: Tonga
1869
2091
  TR:
1870
2092
  alpha2: TR
1871
2093
  alpha3: TUR
2094
+ fifa: TUR
1872
2095
  ioc: TUR
1873
2096
  iso_name: Turkey
1874
- short: Turkey
2097
+ numeric: "792"
1875
2098
  official: Republic of Turkey
1876
- fifa: TUR
2099
+ short: Turkey
1877
2100
  TT:
1878
2101
  alpha2: TT
1879
2102
  alpha3: TTO
2103
+ fifa: TRI
1880
2104
  ioc: TRI
1881
2105
  iso_name: Trinidad and Tobago
1882
- short: Trinidad and Tobago
2106
+ numeric: "780"
1883
2107
  official: Republic of Trinidad and Tobago
1884
- fifa: TRI
2108
+ short: Trinidad and Tobago
1885
2109
  TV:
1886
2110
  alpha2: TV
1887
2111
  alpha3: TUV
2112
+ fifa: TUV
1888
2113
  ioc: TUV
1889
2114
  iso_name: Tuvalu
1890
- short: Tuvalu
1891
- fifa: TUV
2115
+ numeric: "798"
1892
2116
  official: Tuvalu
2117
+ short: Tuvalu
1893
2118
  TW:
2119
+ aliases:
2120
+ - ROC
1894
2121
  alpha2: TW
1895
2122
  alpha3: TWN
2123
+ fifa: TPE
1896
2124
  ioc: TPE
1897
2125
  iso_name: Taiwan, Republic Of China
2126
+ numeric: "158"
1898
2127
  official: Republic of China
1899
2128
  short: Taiwan
1900
- fifa: TPE
1901
- aliases:
1902
- - ROC
1903
2129
  TZ:
1904
2130
  alpha2: TZ
1905
2131
  alpha3: TZA
2132
+ fifa: TAN
1906
2133
  ioc: TAN
1907
2134
  iso_name: Tanzania, United Republic of
1908
- short: Tanzania
2135
+ numeric: "834"
1909
2136
  official: United Republic of Tanzania
1910
- fifa: TAN
2137
+ short: Tanzania
1911
2138
  UA:
1912
2139
  alpha2: UA
1913
2140
  alpha3: UKR
2141
+ fifa: UKR
1914
2142
  ioc: UKR
1915
2143
  iso_name: Ukraine
1916
- short: Ukraine
1917
- fifa: UKR
2144
+ numeric: "804"
1918
2145
  official: Ukraine
2146
+ short: Ukraine
1919
2147
  UG:
1920
2148
  alpha2: UG
1921
2149
  alpha3: UGA
2150
+ fifa: UGA
1922
2151
  ioc: UGA
1923
2152
  iso_name: Uganda
1924
- short: Uganda
2153
+ numeric: "800"
1925
2154
  official: Republic of Uganda
1926
- fifa: UGA
2155
+ short: Uganda
1927
2156
  UM:
1928
2157
  alpha2: UM
1929
2158
  alpha3: UMI
2159
+ fifa:
1930
2160
  ioc:
1931
2161
  iso_name: United States Minor Outlying Islands
1932
- short: United States Minor Outlying Islands
1933
- fifa:
2162
+ numeric: "581"
1934
2163
  official: United States Minor Outlying Islands
2164
+ short: United States Minor Outlying Islands
1935
2165
  US:
1936
- alpha2: US
1937
- alpha3: USA
1938
- ioc: USA
1939
- iso_name: United States
1940
- official: United States of America
1941
2166
  aliases:
1942
2167
  - America
1943
2168
  - U.S.
1944
2169
  - U.S.A.
2170
+ alpha2: US
2171
+ alpha3: USA
1945
2172
  fifa: USA
2173
+ ioc: USA
2174
+ iso_name: United States
2175
+ numeric: "840"
2176
+ official: United States of America
1946
2177
  short: United States
1947
2178
  UY:
2179
+ aliases:
2180
+ - Eastern Republic of Uruguay
1948
2181
  alpha2: UY
1949
2182
  alpha3: URY
2183
+ fifa: URU
1950
2184
  ioc: URU
1951
2185
  iso_name: Uruguay
2186
+ numeric: "858"
1952
2187
  official: Oriental Republic of Uruguay
1953
2188
  short: Uruguay
1954
- fifa: URU
1955
- aliases:
1956
- - Eastern Republic of Uruguay
1957
2189
  UZ:
1958
2190
  alpha2: UZ
1959
2191
  alpha3: UZB
2192
+ fifa: UZB
1960
2193
  ioc: UZB
1961
2194
  iso_name: Uzbekistan
1962
- short: Uzbekistan
2195
+ numeric: "860"
1963
2196
  official: Republic of Uzbekistan
1964
- fifa: UZB
2197
+ short: Uzbekistan
1965
2198
  VA:
1966
2199
  alpha2: VA
1967
2200
  alpha3: VAT
2201
+ fifa:
1968
2202
  ioc:
1969
2203
  iso_name: Holy See (Vatican City State)
1970
- short: Vatican City
2204
+ numeric: "336"
1971
2205
  official: Vatican City State
1972
- fifa:
2206
+ short: Vatican City
1973
2207
  VC:
1974
2208
  alpha2: VC
1975
2209
  alpha3: VCT
2210
+ fifa: VIN
1976
2211
  ioc: VIN
1977
2212
  iso_name: Saint Vincent And The Grenadines
1978
- short: Saint Vincent And The Grenadines
1979
- fifa: VIN
2213
+ numeric: "670"
1980
2214
  official: Saint Vincent And The Grenadines
2215
+ short: Saint Vincent And The Grenadines
1981
2216
  VE:
1982
2217
  alpha2: VE
1983
2218
  alpha3: VEN
2219
+ fifa: VEN
1984
2220
  ioc: VEN
1985
2221
  iso_name: Venezuela, Bolivarian Republic of
2222
+ numeric: "862"
1986
2223
  official: Bolivarian Republic of Venezuela
1987
2224
  short: Venezuela
1988
- fifa: VEN
1989
2225
  VG:
2226
+ aliases:
2227
+ - BVI
1990
2228
  alpha2: VG
1991
2229
  alpha3: VGB
2230
+ fifa: VGB
1992
2231
  ioc: IVB
1993
2232
  iso_name: Virgin Islands, British
2233
+ numeric: "92"
1994
2234
  official: Virgin Islands
1995
2235
  short: British Virgin Islands
1996
- fifa: VGB
1997
- aliases:
1998
- - BVI
1999
2236
  VI:
2237
+ aliases:
2238
+ - USVI
2239
+ - US Virgin Islands
2240
+ - United States Virgin Islands
2000
2241
  alpha2: VI
2001
2242
  alpha3: VIR
2243
+ fifa: VIR
2002
2244
  ioc: ISV
2003
2245
  iso_name: Virgin Islands, U.S.
2246
+ numeric: "850"
2004
2247
  official: Virgin Islands of the United States
2005
2248
  short: U.S. Virgin Islands
2006
- fifa: VIR
2007
- aliases:
2008
- - USVI
2009
- - US Virgin Islands
2010
- - United States Virgin Islands
2011
2249
  VN:
2250
+ aliases:
2251
+ - Viet Nam
2012
2252
  alpha2: VN
2013
2253
  alpha3: VNM
2254
+ fifa: VIE
2014
2255
  ioc: VIE
2015
2256
  iso_name: Vietnam
2257
+ numeric: "704"
2016
2258
  official: Socialist Republic of Vietnam
2017
- fifa: VIE
2018
- aliases:
2019
- - Viet Nam
2020
2259
  short: Vietnam
2021
2260
  VU:
2022
2261
  alpha2: VU
2023
2262
  alpha3: VUT
2263
+ fifa: VAN
2024
2264
  ioc: VAN
2025
2265
  iso_name: Vanuatu
2026
- short: Vanuatu
2266
+ numeric: "548"
2027
2267
  official: Republic of Vanuatu
2028
- fifa: VAN
2268
+ short: Vanuatu
2029
2269
  WF:
2030
2270
  alpha2: WF
2031
2271
  alpha3: WLF
2272
+ fifa:
2032
2273
  ioc:
2033
2274
  iso_name: Wallis and Futuna
2034
- short: Wallis and Futuna
2275
+ numeric: "876"
2035
2276
  official: Territory of the Wallis and Futuna Islands
2036
- fifa:
2277
+ short: Wallis and Futuna
2037
2278
  WS:
2038
2279
  alpha2: WS
2039
2280
  alpha3: WSM
2281
+ fifa: SAM
2040
2282
  ioc: SAM
2041
2283
  iso_name: Samoa
2284
+ numeric: "882"
2042
2285
  official: Independent State of Samoa
2043
- fifa: SAM
2044
2286
  short: Samoa
2045
2287
  YE:
2046
2288
  alpha2: YE
2047
2289
  alpha3: YEM
2290
+ fifa: YEM
2048
2291
  ioc: YEM
2049
2292
  iso_name: Yemen
2050
- short: Yemen
2293
+ numeric: "887"
2051
2294
  official: Republic of Yemen
2052
- fifa: YEM
2295
+ short: Yemen
2053
2296
  YT:
2054
2297
  alpha2: YT
2055
2298
  alpha3: MYT
2299
+ fifa:
2056
2300
  ioc:
2057
2301
  iso_name: Mayotte
2058
- short: Mayotte
2302
+ numeric: "175"
2059
2303
  official: Department of Mayotte
2060
- fifa:
2304
+ short: Mayotte
2061
2305
  ZA:
2062
2306
  alpha2: ZA
2063
2307
  alpha3: ZAF
2308
+ fifa: RSA
2064
2309
  ioc: RSA
2065
2310
  iso_name: South Africa
2311
+ numeric: "710"
2066
2312
  official: Republic of South Africa
2067
- fifa: RSA
2068
2313
  short: South Africa
2069
2314
  ZM:
2070
2315
  alpha2: ZM
2071
2316
  alpha3: ZMB
2317
+ fifa: ZAM
2072
2318
  ioc: ZAM
2073
2319
  iso_name: Zambia
2074
- short: Zambia
2320
+ numeric: "894"
2075
2321
  official: Republic of Zambia
2076
- fifa: ZAM
2322
+ short: Zambia
2077
2323
  ZW:
2078
2324
  alpha2: ZW
2079
2325
  alpha3: ZWE
2326
+ fifa: ZIM
2080
2327
  ioc: ZIM
2081
2328
  iso_name: Zimbabwe
2082
- short: Zimbabwe
2329
+ numeric: "716"
2083
2330
  official: Republic of Zimbabwe
2084
- fifa: ZIM
2331
+ short: Zimbabwe