shopify-money 0.14.2 → 0.14.3

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,77 @@
1
+ ---
2
+ jep:
3
+ priority: 100
4
+ iso_code: JEP
5
+ name: Jersey Pound
6
+ symbol: "£"
7
+ disambiguate_symbol: JEP
8
+ alternate_symbols: []
9
+ subunit: Penny
10
+ subunit_to_unit: 100
11
+ symbol_first: true
12
+ html_entity: "£"
13
+ decimal_mark: "."
14
+ thousands_separator: ","
15
+ iso_numeric: ''
16
+ smallest_denomination: 1
17
+ ggp:
18
+ priority: 100
19
+ iso_code: GGP
20
+ name: Guernsey Pound
21
+ symbol: "£"
22
+ disambiguate_symbol: GGP
23
+ alternate_symbols: []
24
+ subunit: Penny
25
+ subunit_to_unit: 100
26
+ symbol_first: true
27
+ html_entity: "£"
28
+ decimal_mark: "."
29
+ thousands_separator: ","
30
+ iso_numeric: ''
31
+ smallest_denomination: 1
32
+ imp:
33
+ priority: 100
34
+ iso_code: IMP
35
+ name: Isle of Man Pound
36
+ symbol: "£"
37
+ disambiguate_symbol: IMP
38
+ alternate_symbols:
39
+ - M£
40
+ subunit: Penny
41
+ subunit_to_unit: 100
42
+ symbol_first: true
43
+ html_entity: "£"
44
+ decimal_mark: "."
45
+ thousands_separator: ","
46
+ iso_numeric: ''
47
+ smallest_denomination: 1
48
+ xfu:
49
+ priority: 100
50
+ iso_code: XFU
51
+ name: UIC Franc
52
+ symbol: ''
53
+ disambiguate_symbol: XFU
54
+ alternate_symbols: []
55
+ subunit: ''
56
+ subunit_to_unit: 100
57
+ symbol_first: true
58
+ html_entity: ''
59
+ decimal_mark: "."
60
+ thousands_separator: ","
61
+ iso_numeric: ''
62
+ smallest_denomination: ''
63
+ gbx:
64
+ priority: 100
65
+ iso_code: GBX
66
+ name: British Penny
67
+ symbol: ''
68
+ disambiguate_symbol: GBX
69
+ alternate_symbols: []
70
+ subunit: ''
71
+ subunit_to_unit: 1
72
+ symbol_first: true
73
+ html_entity: ''
74
+ decimal_mark: "."
75
+ thousands_separator: ","
76
+ iso_numeric: ''
77
+ smallest_denomination: 1
@@ -1,26 +1,38 @@
1
1
  # frozen_string_literal: true
2
- require 'json'
2
+ require 'yaml'
3
3
 
4
4
  class Money
5
5
  class Currency
6
6
  module Loader
7
- extend self
7
+ class << self
8
+ def load_currencies
9
+ currency_data_path = File.expand_path("../../../../config", __FILE__)
8
10
 
9
- CURRENCY_DATA_PATH = File.expand_path("../../../../config", __FILE__)
11
+ currencies = {}
12
+ currencies.merge! YAML.load_file("#{currency_data_path}/currency_historic.yml")
13
+ currencies.merge! YAML.load_file("#{currency_data_path}/currency_non_iso.yml")
14
+ currencies.merge! YAML.load_file("#{currency_data_path}/currency_iso.yml")
15
+ deep_deduplicate!(currencies)
16
+ end
10
17
 
11
- def load_currencies
12
- currencies = {}
13
- currencies.merge! parse_currency_file("currency_historic.json")
14
- currencies.merge! parse_currency_file("currency_non_iso.json")
15
- currencies.merge! parse_currency_file("currency_iso.json")
16
- end
17
-
18
- private
18
+ private
19
19
 
20
- def parse_currency_file(filename)
21
- json = File.read("#{CURRENCY_DATA_PATH}/#{filename}")
22
- json.force_encoding(::Encoding::UTF_8) if defined?(::Encoding)
23
- JSON.parse(json)
20
+ def deep_deduplicate!(data)
21
+ case data
22
+ when Hash
23
+ return data if data.frozen?
24
+ data.transform_keys! { |k| deep_deduplicate!(k) }
25
+ data.transform_values! { |v| deep_deduplicate!(v) }
26
+ data.freeze
27
+ when Array
28
+ return data if data.frozen?
29
+ data.map! { |d| deep_deduplicate!(d) }.freeze
30
+ when String
31
+ -data
32
+ else
33
+ data.duplicable? ? data.freeze : data
34
+ end
35
+ end
24
36
  end
25
37
  end
26
38
  end
@@ -1,4 +1,4 @@
1
1
  # frozen_string_literal: true
2
2
  class Money
3
- VERSION = "0.14.2"
3
+ VERSION = "0.14.3"
4
4
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: shopify-money
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.14.2
4
+ version: 0.14.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Shopify Inc
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-05-29 00:00:00.000000000 Z
11
+ date: 2020-07-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -111,9 +111,9 @@ files:
111
111
  - README.md
112
112
  - Rakefile
113
113
  - bin/console
114
- - config/currency_historic.json
115
- - config/currency_iso.json
116
- - config/currency_non_iso.json
114
+ - config/currency_historic.yml
115
+ - config/currency_iso.yml
116
+ - config/currency_non_iso.yml
117
117
  - dev.yml
118
118
  - lib/money.rb
119
119
  - lib/money/accounting_money_parser.rb
@@ -1,157 +0,0 @@
1
- {
2
- "cyp": {
3
- "priority": 100,
4
- "iso_code": "CYP",
5
- "name": "Cypriot pound",
6
- "symbol": "£",
7
- "alternate_symbols": [],
8
- "subunit": "Cent",
9
- "subunit_to_unit": 100,
10
- "symbol_first": true,
11
- "html_entity": "&#x00A3;",
12
- "decimal_mark": ".",
13
- "thousands_separator": ",",
14
- "iso_numeric": "196",
15
- "smallest_denomination": 1
16
- },
17
- "eek": {
18
- "priority": 100,
19
- "iso_code": "EEK",
20
- "name": "Estonian Kroon",
21
- "symbol": "KR",
22
- "alternate_symbols": [],
23
- "subunit": "Sent",
24
- "subunit_to_unit": 100,
25
- "symbol_first": false,
26
- "html_entity": "",
27
- "decimal_mark": ".",
28
- "thousands_separator": ",",
29
- "iso_numeric": "233",
30
- "smallest_denomination": 5
31
- },
32
- "ghc": {
33
- "priority": 100,
34
- "iso_code": "GHS",
35
- "name": "Ghanaian Cedi",
36
- "symbol": "₵",
37
- "disambiguate_symbol": "GH₵",
38
- "alternate_symbols": ["GH₵"],
39
- "subunit": "Pesewa",
40
- "subunit_to_unit": 100,
41
- "symbol_first": true,
42
- "html_entity": "&#x20B5;",
43
- "decimal_mark": ".",
44
- "thousands_separator": ",",
45
- "iso_numeric": "288",
46
- "smallest_denomination": 1
47
- },
48
- "mtl": {
49
- "priority": 100,
50
- "iso_code": "MTL",
51
- "name": "Maltese Lira",
52
- "symbol": "₤",
53
- "alternate_symbols": ["Lm"],
54
- "subunit": "Cent",
55
- "subunit_to_unit": 100,
56
- "symbol_first": true,
57
- "html_entity": "&#x00A3;",
58
- "decimal_mark": ".",
59
- "thousands_separator": ",",
60
- "iso_numeric": "470",
61
- "smallest_denomination": 1
62
- },
63
- "tmm": {
64
- "priority": 100,
65
- "iso_code": "TMM",
66
- "name": "Turkmenistani Manat",
67
- "symbol": "m",
68
- "alternate_symbols": [],
69
- "subunit": "Tennesi",
70
- "subunit_to_unit": 100,
71
- "symbol_first": false,
72
- "html_entity": "",
73
- "decimal_mark": ".",
74
- "thousands_separator": ",",
75
- "iso_numeric": "795",
76
- "smallest_denomination": 1
77
- },
78
- "VEB": {
79
- "priority": 100,
80
- "iso_code": "VEB",
81
- "name": "Venezuelan Bolívar",
82
- "symbol": "Bs.",
83
- "alternate_symbols": [],
84
- "subunit": "Céntimo",
85
- "subunit_to_unit": 100,
86
- "symbol_first": true,
87
- "html_entity": "",
88
- "decimal_mark": ",",
89
- "thousands_separator": ".",
90
- "iso_numeric": "862",
91
- "smallest_denomination": 1
92
- },
93
- "zwd": {
94
- "priority": 100,
95
- "iso_code": "ZWD",
96
- "name": "Zimbabwean Dollar",
97
- "symbol": "$",
98
- "disambiguate_symbol": "ZWD",
99
- "alternate_symbols": ["Z$"],
100
- "subunit": "Cent",
101
- "subunit_to_unit": 100,
102
- "symbol_first": true,
103
- "html_entity": "$",
104
- "decimal_mark": ".",
105
- "thousands_separator": ",",
106
- "iso_numeric": "716",
107
- "smallest_denomination": 100
108
- },
109
- "zwl": {
110
- "priority": 100,
111
- "iso_code": "ZWL",
112
- "name": "Zimbabwean Dollar",
113
- "symbol": "$",
114
- "disambiguate_symbol": "ZWL",
115
- "alternate_symbols": ["Z$"],
116
- "subunit": "Cent",
117
- "subunit_to_unit": 100,
118
- "symbol_first": true,
119
- "html_entity": "$",
120
- "decimal_mark": ".",
121
- "thousands_separator": ",",
122
- "iso_numeric": "932",
123
- "smallest_denomination": 100
124
- },
125
- "zwn": {
126
- "priority": 100,
127
- "iso_code": "ZWN",
128
- "name": "Zimbabwean Dollar",
129
- "symbol": "$",
130
- "disambiguate_symbol": "ZWN",
131
- "alternate_symbols": ["Z$"],
132
- "subunit": "Cent",
133
- "subunit_to_unit": 100,
134
- "symbol_first": true,
135
- "html_entity": "$",
136
- "decimal_mark": ".",
137
- "thousands_separator": ",",
138
- "iso_numeric": "942",
139
- "smallest_denomination": 100
140
- },
141
- "zwr": {
142
- "priority": 100,
143
- "iso_code": "ZWR",
144
- "name": "Zimbabwean Dollar",
145
- "symbol": "$",
146
- "disambiguate_symbol": "ZWR",
147
- "alternate_symbols": ["Z$"],
148
- "subunit": "Cent",
149
- "subunit_to_unit": 100,
150
- "symbol_first": true,
151
- "html_entity": "$",
152
- "decimal_mark": ".",
153
- "thousands_separator": ",",
154
- "iso_numeric": "935",
155
- "smallest_denomination": 100
156
- }
157
- }
@@ -1,2642 +0,0 @@
1
- {
2
- "aed": {
3
- "priority": 100,
4
- "iso_code": "AED",
5
- "name": "United Arab Emirates Dirham",
6
- "symbol": "د.إ",
7
- "alternate_symbols": ["DH", "Dhs"],
8
- "subunit": "Fils",
9
- "subunit_to_unit": 100,
10
- "symbol_first": false,
11
- "html_entity": "",
12
- "decimal_mark": ".",
13
- "thousands_separator": ",",
14
- "iso_numeric": "784",
15
- "smallest_denomination": 25
16
- },
17
- "afn": {
18
- "priority": 100,
19
- "iso_code": "AFN",
20
- "name": "Afghan Afghani",
21
- "symbol": "؋",
22
- "alternate_symbols": ["Af", "Afs"],
23
- "subunit": "Pul",
24
- "subunit_to_unit": 100,
25
- "symbol_first": false,
26
- "html_entity": "",
27
- "decimal_mark": ".",
28
- "thousands_separator": ",",
29
- "iso_numeric": "971",
30
- "smallest_denomination": 100
31
- },
32
- "all": {
33
- "priority": 100,
34
- "iso_code": "ALL",
35
- "name": "Albanian Lek",
36
- "symbol": "L",
37
- "disambiguate_symbol": "Lek",
38
- "alternate_symbols": ["Lek"],
39
- "subunit": "Qintar",
40
- "subunit_to_unit": 100,
41
- "symbol_first": false,
42
- "html_entity": "",
43
- "decimal_mark": ".",
44
- "thousands_separator": ",",
45
- "iso_numeric": "008",
46
- "smallest_denomination": 100
47
- },
48
- "amd": {
49
- "priority": 100,
50
- "iso_code": "AMD",
51
- "name": "Armenian Dram",
52
- "symbol": "դր.",
53
- "alternate_symbols": ["dram"],
54
- "subunit": "Luma",
55
- "subunit_to_unit": 100,
56
- "symbol_first": false,
57
- "html_entity": "",
58
- "decimal_mark": ".",
59
- "thousands_separator": ",",
60
- "iso_numeric": "051",
61
- "smallest_denomination": 10
62
- },
63
- "ang": {
64
- "priority": 100,
65
- "iso_code": "ANG",
66
- "name": "Netherlands Antillean Gulden",
67
- "symbol": "ƒ",
68
- "alternate_symbols": ["NAƒ", "NAf", "f"],
69
- "subunit": "Cent",
70
- "subunit_to_unit": 100,
71
- "symbol_first": true,
72
- "html_entity": "&#x0192;",
73
- "decimal_mark": ",",
74
- "thousands_separator": ".",
75
- "iso_numeric": "532",
76
- "smallest_denomination": 1
77
- },
78
- "aoa": {
79
- "priority": 100,
80
- "iso_code": "AOA",
81
- "name": "Angolan Kwanza",
82
- "symbol": "Kz",
83
- "alternate_symbols": [],
84
- "subunit": "Cêntimo",
85
- "subunit_to_unit": 100,
86
- "symbol_first": false,
87
- "html_entity": "",
88
- "decimal_mark": ".",
89
- "thousands_separator": ",",
90
- "iso_numeric": "973",
91
- "smallest_denomination": 10
92
- },
93
- "ars": {
94
- "priority": 100,
95
- "iso_code": "ARS",
96
- "name": "Argentine Peso",
97
- "symbol": "$",
98
- "disambiguate_symbol": "$m/n",
99
- "alternate_symbols": ["$m/n", "m$n"],
100
- "subunit": "Centavo",
101
- "subunit_to_unit": 100,
102
- "symbol_first": true,
103
- "html_entity": "&#x20B1;",
104
- "decimal_mark": ",",
105
- "thousands_separator": ".",
106
- "iso_numeric": "032",
107
- "smallest_denomination": 1
108
- },
109
- "aud": {
110
- "priority": 4,
111
- "iso_code": "AUD",
112
- "name": "Australian Dollar",
113
- "symbol": "$",
114
- "disambiguate_symbol": "A$",
115
- "alternate_symbols": ["A$"],
116
- "subunit": "Cent",
117
- "subunit_to_unit": 100,
118
- "symbol_first": true,
119
- "html_entity": "$",
120
- "decimal_mark": ".",
121
- "thousands_separator": ",",
122
- "iso_numeric": "036",
123
- "smallest_denomination": 5
124
- },
125
- "awg": {
126
- "priority": 100,
127
- "iso_code": "AWG",
128
- "name": "Aruban Florin",
129
- "symbol": "ƒ",
130
- "alternate_symbols": ["Afl"],
131
- "subunit": "Cent",
132
- "subunit_to_unit": 100,
133
- "symbol_first": false,
134
- "html_entity": "&#x0192;",
135
- "decimal_mark": ".",
136
- "thousands_separator": ",",
137
- "iso_numeric": "533",
138
- "smallest_denomination": 5
139
- },
140
- "azn": {
141
- "priority": 100,
142
- "iso_code": "AZN",
143
- "name": "Azerbaijani Manat",
144
- "symbol": "₼",
145
- "alternate_symbols": ["m", "man"],
146
- "subunit": "Qəpik",
147
- "subunit_to_unit": 100,
148
- "symbol_first": true,
149
- "html_entity": "",
150
- "decimal_mark": ".",
151
- "thousands_separator": ",",
152
- "iso_numeric": "944",
153
- "smallest_denomination": 1
154
- },
155
- "bam": {
156
- "priority": 100,
157
- "iso_code": "BAM",
158
- "name": "Bosnia and Herzegovina Convertible Mark",
159
- "symbol": "КМ",
160
- "alternate_symbols": ["KM"],
161
- "subunit": "Fening",
162
- "subunit_to_unit": 100,
163
- "symbol_first": true,
164
- "html_entity": "",
165
- "decimal_mark": ".",
166
- "thousands_separator": ",",
167
- "iso_numeric": "977",
168
- "smallest_denomination": 5
169
- },
170
- "bbd": {
171
- "priority": 100,
172
- "iso_code": "BBD",
173
- "name": "Barbadian Dollar",
174
- "symbol": "$",
175
- "disambiguate_symbol": "Bds$",
176
- "alternate_symbols": ["Bds$"],
177
- "subunit": "Cent",
178
- "subunit_to_unit": 100,
179
- "symbol_first": true,
180
- "html_entity": "$",
181
- "decimal_mark": ".",
182
- "thousands_separator": ",",
183
- "iso_numeric": "052",
184
- "smallest_denomination": 1
185
- },
186
- "bdt": {
187
- "priority": 100,
188
- "iso_code": "BDT",
189
- "name": "Bangladeshi Taka",
190
- "symbol": "৳",
191
- "alternate_symbols": ["Tk"],
192
- "subunit": "Paisa",
193
- "subunit_to_unit": 100,
194
- "symbol_first": true,
195
- "html_entity": "",
196
- "decimal_mark": ".",
197
- "thousands_separator": ",",
198
- "iso_numeric": "050",
199
- "smallest_denomination": 1
200
- },
201
- "bgn": {
202
- "priority": 100,
203
- "iso_code": "BGN",
204
- "name": "Bulgarian Lev",
205
- "symbol": "лв.",
206
- "alternate_symbols": ["lev", "leva", "лев", "лева"],
207
- "subunit": "Stotinka",
208
- "subunit_to_unit": 100,
209
- "symbol_first": false,
210
- "html_entity": "",
211
- "decimal_mark": ".",
212
- "thousands_separator": ",",
213
- "iso_numeric": "975",
214
- "smallest_denomination": 1
215
- },
216
- "bhd": {
217
- "priority": 100,
218
- "iso_code": "BHD",
219
- "name": "Bahraini Dinar",
220
- "symbol": "ب.د",
221
- "alternate_symbols": ["BD"],
222
- "subunit": "Fils",
223
- "subunit_to_unit": 1000,
224
- "symbol_first": true,
225
- "html_entity": "",
226
- "decimal_mark": ".",
227
- "thousands_separator": ",",
228
- "iso_numeric": "048",
229
- "smallest_denomination": 5
230
- },
231
- "bif": {
232
- "priority": 100,
233
- "iso_code": "BIF",
234
- "name": "Burundian Franc",
235
- "symbol": "Fr",
236
- "disambiguate_symbol": "FBu",
237
- "alternate_symbols": ["FBu"],
238
- "subunit": "Centime",
239
- "subunit_to_unit": 1,
240
- "symbol_first": false,
241
- "html_entity": "",
242
- "decimal_mark": ".",
243
- "thousands_separator": ",",
244
- "iso_numeric": "108",
245
- "smallest_denomination": 100
246
- },
247
- "bmd": {
248
- "priority": 100,
249
- "iso_code": "BMD",
250
- "name": "Bermudian Dollar",
251
- "symbol": "$",
252
- "disambiguate_symbol": "BD$",
253
- "alternate_symbols": ["BD$"],
254
- "subunit": "Cent",
255
- "subunit_to_unit": 100,
256
- "symbol_first": true,
257
- "html_entity": "$",
258
- "decimal_mark": ".",
259
- "thousands_separator": ",",
260
- "iso_numeric": "060",
261
- "smallest_denomination": 1
262
- },
263
- "bnd": {
264
- "priority": 100,
265
- "iso_code": "BND",
266
- "name": "Brunei Dollar",
267
- "symbol": "$",
268
- "disambiguate_symbol": "BND",
269
- "alternate_symbols": ["B$"],
270
- "subunit": "Sen",
271
- "subunit_to_unit": 100,
272
- "symbol_first": true,
273
- "html_entity": "$",
274
- "decimal_mark": ".",
275
- "thousands_separator": ",",
276
- "iso_numeric": "096",
277
- "smallest_denomination": 1
278
- },
279
- "bob": {
280
- "priority": 100,
281
- "iso_code": "BOB",
282
- "name": "Bolivian Boliviano",
283
- "symbol": "Bs.",
284
- "alternate_symbols": ["Bs"],
285
- "subunit": "Centavo",
286
- "subunit_to_unit": 100,
287
- "symbol_first": true,
288
- "html_entity": "",
289
- "decimal_mark": ".",
290
- "thousands_separator": ",",
291
- "iso_numeric": "068",
292
- "smallest_denomination": 10
293
- },
294
- "brl": {
295
- "priority": 100,
296
- "iso_code": "BRL",
297
- "name": "Brazilian Real",
298
- "symbol": "R$",
299
- "subunit": "Centavo",
300
- "subunit_to_unit": 100,
301
- "symbol_first": true,
302
- "html_entity": "R$",
303
- "decimal_mark": ",",
304
- "thousands_separator": ".",
305
- "iso_numeric": "986",
306
- "smallest_denomination": 5
307
- },
308
- "bsd": {
309
- "priority": 100,
310
- "iso_code": "BSD",
311
- "name": "Bahamian Dollar",
312
- "symbol": "$",
313
- "disambiguate_symbol": "BSD",
314
- "alternate_symbols": ["B$"],
315
- "subunit": "Cent",
316
- "subunit_to_unit": 100,
317
- "symbol_first": true,
318
- "html_entity": "$",
319
- "decimal_mark": ".",
320
- "thousands_separator": ",",
321
- "iso_numeric": "044",
322
- "smallest_denomination": 1
323
- },
324
- "btn": {
325
- "priority": 100,
326
- "iso_code": "BTN",
327
- "name": "Bhutanese Ngultrum",
328
- "symbol": "Nu.",
329
- "alternate_symbols": ["Nu"],
330
- "subunit": "Chertrum",
331
- "subunit_to_unit": 100,
332
- "symbol_first": false,
333
- "html_entity": "",
334
- "decimal_mark": ".",
335
- "thousands_separator": ",",
336
- "iso_numeric": "064",
337
- "smallest_denomination": 5
338
- },
339
- "bwp": {
340
- "priority": 100,
341
- "iso_code": "BWP",
342
- "name": "Botswana Pula",
343
- "symbol": "P",
344
- "alternate_symbols": [],
345
- "subunit": "Thebe",
346
- "subunit_to_unit": 100,
347
- "symbol_first": true,
348
- "html_entity": "",
349
- "decimal_mark": ".",
350
- "thousands_separator": ",",
351
- "iso_numeric": "072",
352
- "smallest_denomination": 5
353
- },
354
- "byn": {
355
- "priority": 100,
356
- "iso_code": "BYN",
357
- "name": "Belarusian Ruble",
358
- "symbol": "Br",
359
- "disambiguate_symbol": "BYN",
360
- "alternate_symbols": ["бел. руб.", "б.р.", "руб.", "р."],
361
- "subunit": "Kapeyka",
362
- "subunit_to_unit": 100,
363
- "symbol_first": false,
364
- "html_entity": "",
365
- "decimal_mark": ",",
366
- "thousands_separator": " ",
367
- "iso_numeric": "933",
368
- "smallest_denomination": 1
369
- },
370
- "byr": {
371
- "priority": 50,
372
- "iso_code": "BYR",
373
- "name": "Belarusian Ruble",
374
- "symbol": "Br",
375
- "disambiguate_symbol": "BYR",
376
- "alternate_symbols": ["бел. руб.", "б.р.", "руб.", "р."],
377
- "subunit": null,
378
- "subunit_to_unit": 1,
379
- "symbol_first": false,
380
- "html_entity": "",
381
- "decimal_mark": ",",
382
- "thousands_separator": " ",
383
- "iso_numeric": "974",
384
- "smallest_denomination": 100
385
- },
386
- "bzd": {
387
- "priority": 100,
388
- "iso_code": "BZD",
389
- "name": "Belize Dollar",
390
- "symbol": "$",
391
- "disambiguate_symbol": "BZ$",
392
- "alternate_symbols": ["BZ$"],
393
- "subunit": "Cent",
394
- "subunit_to_unit": 100,
395
- "symbol_first": true,
396
- "html_entity": "$",
397
- "decimal_mark": ".",
398
- "thousands_separator": ",",
399
- "iso_numeric": "084",
400
- "smallest_denomination": 1
401
- },
402
- "cad": {
403
- "priority": 5,
404
- "iso_code": "CAD",
405
- "name": "Canadian Dollar",
406
- "symbol": "$",
407
- "disambiguate_symbol": "C$",
408
- "alternate_symbols": ["C$", "CAD$"],
409
- "subunit_symbol": "¢",
410
- "subunit": "Cent",
411
- "subunit_to_unit": 100,
412
- "symbol_first": true,
413
- "html_entity": "$",
414
- "decimal_mark": ".",
415
- "thousands_separator": ",",
416
- "iso_numeric": "124",
417
- "smallest_denomination": 5
418
- },
419
- "cdf": {
420
- "priority": 100,
421
- "iso_code": "CDF",
422
- "name": "Congolese Franc",
423
- "symbol": "Fr",
424
- "disambiguate_symbol": "FC",
425
- "alternate_symbols": ["FC"],
426
- "subunit": "Centime",
427
- "subunit_to_unit": 100,
428
- "symbol_first": false,
429
- "html_entity": "",
430
- "decimal_mark": ".",
431
- "thousands_separator": ",",
432
- "iso_numeric": "976",
433
- "smallest_denomination": 1
434
- },
435
- "chf": {
436
- "priority": 100,
437
- "iso_code": "CHF",
438
- "name": "Swiss Franc",
439
- "symbol": "CHF",
440
- "alternate_symbols": ["SFr", "Fr"],
441
- "subunit": "Rappen",
442
- "subunit_to_unit": 100,
443
- "symbol_first": true,
444
- "html_entity": "",
445
- "decimal_mark": ".",
446
- "thousands_separator": ",",
447
- "iso_numeric": "756",
448
- "smallest_denomination": 5
449
- },
450
- "clf": {
451
- "priority": 100,
452
- "iso_code": "CLF",
453
- "name": "Unidad de Fomento",
454
- "symbol": "UF",
455
- "alternate_symbols": [],
456
- "subunit": "Peso",
457
- "subunit_to_unit": 10000,
458
- "symbol_first": true,
459
- "html_entity": "&#x20B1;",
460
- "decimal_mark": ",",
461
- "thousands_separator": ".",
462
- "iso_numeric": "990"
463
- },
464
- "clp": {
465
- "priority": 100,
466
- "iso_code": "CLP",
467
- "name": "Chilean Peso",
468
- "symbol": "$",
469
- "disambiguate_symbol": "CLP",
470
- "alternate_symbols": [],
471
- "subunit": "Peso",
472
- "subunit_to_unit": 1,
473
- "symbol_first": true,
474
- "html_entity": "&#36;",
475
- "decimal_mark": ",",
476
- "thousands_separator": ".",
477
- "iso_numeric": "152",
478
- "smallest_denomination": 1
479
- },
480
- "cny": {
481
- "priority": 100,
482
- "iso_code": "CNY",
483
- "name": "Chinese Renminbi Yuan",
484
- "symbol": "¥",
485
- "alternate_symbols": ["CN¥", "元", "CN元"],
486
- "subunit": "Fen",
487
- "subunit_to_unit": 100,
488
- "symbol_first": true,
489
- "html_entity": "¥",
490
- "decimal_mark": ".",
491
- "thousands_separator": ",",
492
- "iso_numeric": "156",
493
- "smallest_denomination": 1
494
- },
495
- "cop": {
496
- "priority": 100,
497
- "iso_code": "COP",
498
- "name": "Colombian Peso",
499
- "symbol": "$",
500
- "disambiguate_symbol": "COL$",
501
- "alternate_symbols": ["COL$"],
502
- "subunit": "Centavo",
503
- "subunit_to_unit": 100,
504
- "symbol_first": true,
505
- "html_entity": "&#36;",
506
- "decimal_mark": ",",
507
- "thousands_separator": ".",
508
- "iso_numeric": "170",
509
- "smallest_denomination": 20
510
- },
511
- "crc": {
512
- "priority": 100,
513
- "iso_code": "CRC",
514
- "name": "Costa Rican Colón",
515
- "symbol": "₡",
516
- "alternate_symbols": ["¢"],
517
- "subunit": "Céntimo",
518
- "subunit_to_unit": 100,
519
- "symbol_first": true,
520
- "html_entity": "&#x20A1;",
521
- "decimal_mark": ",",
522
- "thousands_separator": ".",
523
- "iso_numeric": "188",
524
- "smallest_denomination": 500
525
- },
526
- "cuc": {
527
- "priority": 100,
528
- "iso_code": "CUC",
529
- "name": "Cuban Convertible Peso",
530
- "symbol": "$",
531
- "disambiguate_symbol": "CUC$",
532
- "alternate_symbols": ["CUC$"],
533
- "subunit": "Centavo",
534
- "subunit_to_unit": 100,
535
- "symbol_first": false,
536
- "html_entity": "",
537
- "decimal_mark": ".",
538
- "thousands_separator": ",",
539
- "iso_numeric": "931",
540
- "smallest_denomination": 1
541
- },
542
- "cup": {
543
- "priority": 100,
544
- "iso_code": "CUP",
545
- "name": "Cuban Peso",
546
- "symbol": "$",
547
- "disambiguate_symbol": "$MN",
548
- "alternate_symbols": ["$MN"],
549
- "subunit": "Centavo",
550
- "subunit_to_unit": 100,
551
- "symbol_first": true,
552
- "html_entity": "&#x20B1;",
553
- "decimal_mark": ".",
554
- "thousands_separator": ",",
555
- "iso_numeric": "192",
556
- "smallest_denomination": 1
557
- },
558
- "cve": {
559
- "priority": 100,
560
- "iso_code": "CVE",
561
- "name": "Cape Verdean Escudo",
562
- "symbol": "$",
563
- "disambiguate_symbol": "Esc",
564
- "alternate_symbols": ["Esc"],
565
- "subunit": "Centavo",
566
- "subunit_to_unit": 100,
567
- "symbol_first": false,
568
- "html_entity": "",
569
- "decimal_mark": ".",
570
- "thousands_separator": ",",
571
- "iso_numeric": "132",
572
- "smallest_denomination": 100
573
- },
574
- "czk": {
575
- "priority": 100,
576
- "iso_code": "CZK",
577
- "name": "Czech Koruna",
578
- "symbol": "Kč",
579
- "alternate_symbols": [],
580
- "subunit": "Haléř",
581
- "subunit_to_unit": 100,
582
- "symbol_first": false,
583
- "html_entity": "",
584
- "decimal_mark": ",",
585
- "thousands_separator": " ",
586
- "iso_numeric": "203",
587
- "smallest_denomination": 100
588
- },
589
- "djf": {
590
- "priority": 100,
591
- "iso_code": "DJF",
592
- "name": "Djiboutian Franc",
593
- "symbol": "Fdj",
594
- "alternate_symbols": [],
595
- "subunit": "Centime",
596
- "subunit_to_unit": 1,
597
- "symbol_first": false,
598
- "html_entity": "",
599
- "decimal_mark": ".",
600
- "thousands_separator": ",",
601
- "iso_numeric": "262",
602
- "smallest_denomination": 100
603
- },
604
- "dkk": {
605
- "priority": 100,
606
- "iso_code": "DKK",
607
- "name": "Danish Krone",
608
- "symbol": "kr.",
609
- "disambiguate_symbol": "DKK",
610
- "alternate_symbols": [",-"],
611
- "subunit": "Øre",
612
- "subunit_to_unit": 100,
613
- "symbol_first": false,
614
- "html_entity": "",
615
- "decimal_mark": ",",
616
- "thousands_separator": ".",
617
- "iso_numeric": "208",
618
- "smallest_denomination": 50
619
- },
620
- "dop": {
621
- "priority": 100,
622
- "iso_code": "DOP",
623
- "name": "Dominican Peso",
624
- "symbol": "$",
625
- "disambiguate_symbol": "RD$",
626
- "alternate_symbols": ["RD$"],
627
- "subunit": "Centavo",
628
- "subunit_to_unit": 100,
629
- "symbol_first": true,
630
- "html_entity": "&#x20B1;",
631
- "decimal_mark": ".",
632
- "thousands_separator": ",",
633
- "iso_numeric": "214",
634
- "smallest_denomination": 100
635
- },
636
- "dzd": {
637
- "priority": 100,
638
- "iso_code": "DZD",
639
- "name": "Algerian Dinar",
640
- "symbol": "د.ج",
641
- "alternate_symbols": ["DA"],
642
- "subunit": "Centime",
643
- "subunit_to_unit": 100,
644
- "symbol_first": false,
645
- "html_entity": "",
646
- "decimal_mark": ".",
647
- "thousands_separator": ",",
648
- "iso_numeric": "012",
649
- "smallest_denomination": 100
650
- },
651
- "egp": {
652
- "priority": 100,
653
- "iso_code": "EGP",
654
- "name": "Egyptian Pound",
655
- "symbol": "ج.م",
656
- "alternate_symbols": ["LE", "E£", "L.E."],
657
- "subunit": "Piastre",
658
- "subunit_to_unit": 100,
659
- "symbol_first": true,
660
- "html_entity": "&#x00A3;",
661
- "decimal_mark": ".",
662
- "thousands_separator": ",",
663
- "iso_numeric": "818",
664
- "smallest_denomination": 25
665
- },
666
- "ern": {
667
- "priority": 100,
668
- "iso_code": "ERN",
669
- "name": "Eritrean Nakfa",
670
- "symbol": "Nfk",
671
- "alternate_symbols": [],
672
- "subunit": "Cent",
673
- "subunit_to_unit": 100,
674
- "symbol_first": false,
675
- "html_entity": "",
676
- "decimal_mark": ".",
677
- "thousands_separator": ",",
678
- "iso_numeric": "232",
679
- "smallest_denomination": 1
680
- },
681
- "etb": {
682
- "priority": 100,
683
- "iso_code": "ETB",
684
- "name": "Ethiopian Birr",
685
- "symbol": "Br",
686
- "disambiguate_symbol": "ETB",
687
- "alternate_symbols": [],
688
- "subunit": "Santim",
689
- "subunit_to_unit": 100,
690
- "symbol_first": false,
691
- "html_entity": "",
692
- "decimal_mark": ".",
693
- "thousands_separator": ",",
694
- "iso_numeric": "230",
695
- "smallest_denomination": 1
696
- },
697
- "eur": {
698
- "priority": 2,
699
- "iso_code": "EUR",
700
- "name": "Euro",
701
- "symbol": "€",
702
- "alternate_symbols": [],
703
- "subunit": "Cent",
704
- "subunit_to_unit": 100,
705
- "symbol_first": true,
706
- "html_entity": "&#x20AC;",
707
- "decimal_mark": ",",
708
- "thousands_separator": ".",
709
- "iso_numeric": "978",
710
- "smallest_denomination": 1
711
- },
712
- "fjd": {
713
- "priority": 100,
714
- "iso_code": "FJD",
715
- "name": "Fijian Dollar",
716
- "symbol": "$",
717
- "disambiguate_symbol": "FJ$",
718
- "alternate_symbols": ["FJ$"],
719
- "subunit": "Cent",
720
- "subunit_to_unit": 100,
721
- "symbol_first": false,
722
- "html_entity": "$",
723
- "decimal_mark": ".",
724
- "thousands_separator": ",",
725
- "iso_numeric": "242",
726
- "smallest_denomination": 5
727
- },
728
- "fkp": {
729
- "priority": 100,
730
- "iso_code": "FKP",
731
- "name": "Falkland Pound",
732
- "symbol": "£",
733
- "disambiguate_symbol": "FK£",
734
- "alternate_symbols": ["FK£"],
735
- "subunit": "Penny",
736
- "subunit_to_unit": 100,
737
- "symbol_first": false,
738
- "html_entity": "&#x00A3;",
739
- "decimal_mark": ".",
740
- "thousands_separator": ",",
741
- "iso_numeric": "238",
742
- "smallest_denomination": 1
743
- },
744
- "gbp": {
745
- "priority": 3,
746
- "iso_code": "GBP",
747
- "name": "British Pound",
748
- "symbol": "£",
749
- "alternate_symbols": [],
750
- "subunit_symbol": "p",
751
- "subunit": "Penny",
752
- "subunit_to_unit": 100,
753
- "symbol_first": true,
754
- "html_entity": "&#x00A3;",
755
- "decimal_mark": ".",
756
- "thousands_separator": ",",
757
- "iso_numeric": "826",
758
- "smallest_denomination": 1
759
- },
760
- "gel": {
761
- "priority": 100,
762
- "iso_code": "GEL",
763
- "name": "Georgian Lari",
764
- "symbol": "ლ",
765
- "alternate_symbols": ["lari"],
766
- "subunit": "Tetri",
767
- "subunit_to_unit": 100,
768
- "symbol_first": false,
769
- "html_entity": "",
770
- "decimal_mark": ".",
771
- "thousands_separator": ",",
772
- "iso_numeric": "981",
773
- "smallest_denomination": 1
774
- },
775
- "ghs": {
776
- "priority": 100,
777
- "iso_code": "GHS",
778
- "name": "Ghanaian Cedi",
779
- "symbol": "₵",
780
- "alternate_symbols": ["GH¢", "GH₵"],
781
- "subunit": "Pesewa",
782
- "subunit_to_unit": 100,
783
- "symbol_first": true,
784
- "html_entity": "&#x20B5;",
785
- "decimal_mark": ".",
786
- "thousands_separator": ",",
787
- "iso_numeric": "936",
788
- "smallest_denomination": 1
789
- },
790
- "gip": {
791
- "priority": 100,
792
- "iso_code": "GIP",
793
- "name": "Gibraltar Pound",
794
- "symbol": "£",
795
- "disambiguate_symbol": "GIP",
796
- "alternate_symbols": [],
797
- "subunit": "Penny",
798
- "subunit_to_unit": 100,
799
- "symbol_first": true,
800
- "html_entity": "&#x00A3;",
801
- "decimal_mark": ".",
802
- "thousands_separator": ",",
803
- "iso_numeric": "292",
804
- "smallest_denomination": 1
805
- },
806
- "gmd": {
807
- "priority": 100,
808
- "iso_code": "GMD",
809
- "name": "Gambian Dalasi",
810
- "symbol": "D",
811
- "alternate_symbols": [],
812
- "subunit": "Butut",
813
- "subunit_to_unit": 100,
814
- "symbol_first": false,
815
- "html_entity": "",
816
- "decimal_mark": ".",
817
- "thousands_separator": ",",
818
- "iso_numeric": "270",
819
- "smallest_denomination": 1
820
- },
821
- "gnf": {
822
- "priority": 100,
823
- "iso_code": "GNF",
824
- "name": "Guinean Franc",
825
- "symbol": "Fr",
826
- "disambiguate_symbol": "FG",
827
- "alternate_symbols": ["FG", "GFr"],
828
- "subunit": "Centime",
829
- "subunit_to_unit": 1,
830
- "symbol_first": false,
831
- "html_entity": "",
832
- "decimal_mark": ".",
833
- "thousands_separator": ",",
834
- "iso_numeric": "324",
835
- "smallest_denomination": 100
836
- },
837
- "gtq": {
838
- "priority": 100,
839
- "iso_code": "GTQ",
840
- "name": "Guatemalan Quetzal",
841
- "symbol": "Q",
842
- "alternate_symbols": [],
843
- "subunit": "Centavo",
844
- "subunit_to_unit": 100,
845
- "symbol_first": true,
846
- "html_entity": "",
847
- "decimal_mark": ".",
848
- "thousands_separator": ",",
849
- "iso_numeric": "320",
850
- "smallest_denomination": 1
851
- },
852
- "gyd": {
853
- "priority": 100,
854
- "iso_code": "GYD",
855
- "name": "Guyanese Dollar",
856
- "symbol": "$",
857
- "disambiguate_symbol": "G$",
858
- "alternate_symbols": ["G$"],
859
- "subunit": "Cent",
860
- "subunit_to_unit": 100,
861
- "symbol_first": false,
862
- "html_entity": "$",
863
- "decimal_mark": ".",
864
- "thousands_separator": ",",
865
- "iso_numeric": "328",
866
- "smallest_denomination": 100
867
- },
868
- "hkd": {
869
- "priority": 100,
870
- "iso_code": "HKD",
871
- "name": "Hong Kong Dollar",
872
- "symbol": "$",
873
- "disambiguate_symbol": "HK$",
874
- "alternate_symbols": ["HK$"],
875
- "subunit": "Cent",
876
- "subunit_to_unit": 100,
877
- "symbol_first": true,
878
- "html_entity": "$",
879
- "decimal_mark": ".",
880
- "thousands_separator": ",",
881
- "iso_numeric": "344",
882
- "smallest_denomination": 10
883
- },
884
- "hnl": {
885
- "priority": 100,
886
- "iso_code": "HNL",
887
- "name": "Honduran Lempira",
888
- "symbol": "L",
889
- "disambiguate_symbol": "HNL",
890
- "alternate_symbols": [],
891
- "subunit": "Centavo",
892
- "subunit_to_unit": 100,
893
- "symbol_first": true,
894
- "html_entity": "",
895
- "decimal_mark": ".",
896
- "thousands_separator": ",",
897
- "iso_numeric": "340",
898
- "smallest_denomination": 5
899
- },
900
- "hrk": {
901
- "priority": 100,
902
- "iso_code": "HRK",
903
- "name": "Croatian Kuna",
904
- "symbol": "kn",
905
- "alternate_symbols": [],
906
- "subunit": "Lipa",
907
- "subunit_to_unit": 100,
908
- "symbol_first": false,
909
- "html_entity": "",
910
- "decimal_mark": ",",
911
- "thousands_separator": ".",
912
- "iso_numeric": "191",
913
- "smallest_denomination": 1
914
- },
915
- "htg": {
916
- "priority": 100,
917
- "iso_code": "HTG",
918
- "name": "Haitian Gourde",
919
- "symbol": "G",
920
- "alternate_symbols": [],
921
- "subunit": "Centime",
922
- "subunit_to_unit": 100,
923
- "symbol_first": false,
924
- "html_entity": "",
925
- "decimal_mark": ".",
926
- "thousands_separator": ",",
927
- "iso_numeric": "332",
928
- "smallest_denomination": 5
929
- },
930
- "huf": {
931
- "priority": 100,
932
- "iso_code": "HUF",
933
- "name": "Hungarian Forint",
934
- "symbol": "Ft",
935
- "alternate_symbols": [],
936
- "subunit": "",
937
- "subunit_to_unit": 100,
938
- "symbol_first": false,
939
- "html_entity": "",
940
- "decimal_mark": ",",
941
- "thousands_separator": " ",
942
- "iso_numeric": "348",
943
- "smallest_denomination": 5
944
- },
945
- "idr": {
946
- "priority": 100,
947
- "iso_code": "IDR",
948
- "name": "Indonesian Rupiah",
949
- "symbol": "Rp",
950
- "alternate_symbols": [],
951
- "subunit": "Sen",
952
- "subunit_to_unit": 100,
953
- "symbol_first": true,
954
- "html_entity": "",
955
- "decimal_mark": ",",
956
- "thousands_separator": ".",
957
- "iso_numeric": "360",
958
- "smallest_denomination": 5000
959
- },
960
- "ils": {
961
- "priority": 100,
962
- "iso_code": "ILS",
963
- "name": "Israeli New Sheqel",
964
- "symbol": "₪",
965
- "alternate_symbols": ["ש״ח", "NIS"],
966
- "subunit": "Agora",
967
- "subunit_to_unit": 100,
968
- "symbol_first": true,
969
- "html_entity": "&#x20AA;",
970
- "decimal_mark": ".",
971
- "thousands_separator": ",",
972
- "iso_numeric": "376",
973
- "smallest_denomination": 10
974
- },
975
- "inr": {
976
- "priority": 100,
977
- "iso_code": "INR",
978
- "name": "Indian Rupee",
979
- "symbol": "₹",
980
- "alternate_symbols": ["Rs", "৳", "૱", "௹", "रु", "₨"],
981
- "subunit": "Paisa",
982
- "subunit_to_unit": 100,
983
- "symbol_first": true,
984
- "html_entity": "&#x20b9;",
985
- "decimal_mark": ".",
986
- "thousands_separator": ",",
987
- "iso_numeric": "356",
988
- "smallest_denomination": 50
989
- },
990
- "iqd": {
991
- "priority": 100,
992
- "iso_code": "IQD",
993
- "name": "Iraqi Dinar",
994
- "symbol": "ع.د",
995
- "alternate_symbols": [],
996
- "subunit": "Fils",
997
- "subunit_to_unit": 1000,
998
- "symbol_first": false,
999
- "html_entity": "",
1000
- "decimal_mark": ".",
1001
- "thousands_separator": ",",
1002
- "iso_numeric": "368",
1003
- "smallest_denomination": 50000
1004
- },
1005
- "irr": {
1006
- "priority": 100,
1007
- "iso_code": "IRR",
1008
- "name": "Iranian Rial",
1009
- "symbol": "﷼",
1010
- "alternate_symbols": [],
1011
- "subunit": null,
1012
- "subunit_to_unit": 100,
1013
- "symbol_first": true,
1014
- "html_entity": "&#xFDFC;",
1015
- "decimal_mark": ".",
1016
- "thousands_separator": ",",
1017
- "iso_numeric": "364",
1018
- "smallest_denomination": 5000
1019
- },
1020
- "isk": {
1021
- "priority": 100,
1022
- "iso_code": "ISK",
1023
- "name": "Icelandic Króna",
1024
- "symbol": "kr",
1025
- "alternate_symbols": ["Íkr"],
1026
- "subunit": null,
1027
- "subunit_to_unit": 1,
1028
- "symbol_first": true,
1029
- "html_entity": "",
1030
- "decimal_mark": ",",
1031
- "thousands_separator": ".",
1032
- "iso_numeric": "352",
1033
- "smallest_denomination": 1
1034
- },
1035
- "jmd": {
1036
- "priority": 100,
1037
- "iso_code": "JMD",
1038
- "name": "Jamaican Dollar",
1039
- "symbol": "$",
1040
- "disambiguate_symbol": "J$",
1041
- "alternate_symbols": ["J$"],
1042
- "subunit": "Cent",
1043
- "subunit_to_unit": 100,
1044
- "symbol_first": true,
1045
- "html_entity": "$",
1046
- "decimal_mark": ".",
1047
- "thousands_separator": ",",
1048
- "iso_numeric": "388",
1049
- "smallest_denomination": 1
1050
- },
1051
- "jod": {
1052
- "priority": 100,
1053
- "iso_code": "JOD",
1054
- "name": "Jordanian Dinar",
1055
- "symbol": "د.ا",
1056
- "alternate_symbols": ["JD"],
1057
- "subunit": "Fils",
1058
- "subunit_to_unit": 1000,
1059
- "symbol_first": true,
1060
- "html_entity": "",
1061
- "decimal_mark": ".",
1062
- "thousands_separator": ",",
1063
- "iso_numeric": "400",
1064
- "smallest_denomination": 5
1065
- },
1066
- "jpy": {
1067
- "priority": 6,
1068
- "iso_code": "JPY",
1069
- "name": "Japanese Yen",
1070
- "symbol": "¥",
1071
- "alternate_symbols": ["円", "圓"],
1072
- "subunit": null,
1073
- "subunit_to_unit": 1,
1074
- "symbol_first": true,
1075
- "html_entity": "&#x00A5;",
1076
- "decimal_mark": ".",
1077
- "thousands_separator": ",",
1078
- "iso_numeric": "392",
1079
- "smallest_denomination": 1
1080
- },
1081
- "kes": {
1082
- "priority": 100,
1083
- "iso_code": "KES",
1084
- "name": "Kenyan Shilling",
1085
- "symbol": "KSh",
1086
- "alternate_symbols": ["Sh"],
1087
- "subunit": "Cent",
1088
- "subunit_to_unit": 100,
1089
- "symbol_first": true,
1090
- "html_entity": "",
1091
- "decimal_mark": ".",
1092
- "thousands_separator": ",",
1093
- "iso_numeric": "404",
1094
- "smallest_denomination": 50
1095
- },
1096
- "kgs": {
1097
- "priority": 100,
1098
- "iso_code": "KGS",
1099
- "name": "Kyrgyzstani Som",
1100
- "symbol": "som",
1101
- "alternate_symbols": ["сом"],
1102
- "subunit": "Tyiyn",
1103
- "subunit_to_unit": 100,
1104
- "symbol_first": false,
1105
- "html_entity": "",
1106
- "decimal_mark": ".",
1107
- "thousands_separator": ",",
1108
- "iso_numeric": "417",
1109
- "smallest_denomination": 1
1110
- },
1111
- "khr": {
1112
- "priority": 100,
1113
- "iso_code": "KHR",
1114
- "name": "Cambodian Riel",
1115
- "symbol": "៛",
1116
- "alternate_symbols": [],
1117
- "subunit": "Sen",
1118
- "subunit_to_unit": 100,
1119
- "symbol_first": false,
1120
- "html_entity": "&#x17DB;",
1121
- "decimal_mark": ".",
1122
- "thousands_separator": ",",
1123
- "iso_numeric": "116",
1124
- "smallest_denomination": 5000
1125
- },
1126
- "kmf": {
1127
- "priority": 100,
1128
- "iso_code": "KMF",
1129
- "name": "Comorian Franc",
1130
- "symbol": "Fr",
1131
- "disambiguate_symbol": "CF",
1132
- "alternate_symbols": ["CF"],
1133
- "subunit": "Centime",
1134
- "subunit_to_unit": 1,
1135
- "symbol_first": false,
1136
- "html_entity": "",
1137
- "decimal_mark": ".",
1138
- "thousands_separator": ",",
1139
- "iso_numeric": "174",
1140
- "smallest_denomination": 100
1141
- },
1142
- "kpw": {
1143
- "priority": 100,
1144
- "iso_code": "KPW",
1145
- "name": "North Korean Won",
1146
- "symbol": "₩",
1147
- "alternate_symbols": [],
1148
- "subunit": "Chŏn",
1149
- "subunit_to_unit": 100,
1150
- "symbol_first": false,
1151
- "html_entity": "&#x20A9;",
1152
- "decimal_mark": ".",
1153
- "thousands_separator": ",",
1154
- "iso_numeric": "408",
1155
- "smallest_denomination": 1
1156
- },
1157
- "krw": {
1158
- "priority": 100,
1159
- "iso_code": "KRW",
1160
- "name": "South Korean Won",
1161
- "symbol": "₩",
1162
- "subunit": null,
1163
- "subunit_to_unit": 1,
1164
- "alternate_symbols": [],
1165
- "symbol_first": true,
1166
- "html_entity": "&#x20A9;",
1167
- "decimal_mark": ".",
1168
- "thousands_separator": ",",
1169
- "iso_numeric": "410",
1170
- "smallest_denomination": 1
1171
- },
1172
- "kwd": {
1173
- "priority": 100,
1174
- "iso_code": "KWD",
1175
- "name": "Kuwaiti Dinar",
1176
- "symbol": "د.ك",
1177
- "alternate_symbols": ["K.D."],
1178
- "subunit": "Fils",
1179
- "subunit_to_unit": 1000,
1180
- "symbol_first": true,
1181
- "html_entity": "",
1182
- "decimal_mark": ".",
1183
- "thousands_separator": ",",
1184
- "iso_numeric": "414",
1185
- "smallest_denomination": 5
1186
- },
1187
- "kyd": {
1188
- "priority": 100,
1189
- "iso_code": "KYD",
1190
- "name": "Cayman Islands Dollar",
1191
- "symbol": "$",
1192
- "disambiguate_symbol": "CI$",
1193
- "alternate_symbols": ["CI$"],
1194
- "subunit": "Cent",
1195
- "subunit_to_unit": 100,
1196
- "symbol_first": true,
1197
- "html_entity": "$",
1198
- "decimal_mark": ".",
1199
- "thousands_separator": ",",
1200
- "iso_numeric": "136",
1201
- "smallest_denomination": 1
1202
- },
1203
- "kzt": {
1204
- "priority": 100,
1205
- "iso_code": "KZT",
1206
- "name": "Kazakhstani Tenge",
1207
- "symbol": "〒",
1208
- "alternate_symbols": [],
1209
- "subunit": "Tiyn",
1210
- "subunit_to_unit": 100,
1211
- "symbol_first": false,
1212
- "html_entity": "",
1213
- "decimal_mark": ".",
1214
- "thousands_separator": ",",
1215
- "iso_numeric": "398",
1216
- "smallest_denomination": 100
1217
- },
1218
- "lak": {
1219
- "priority": 100,
1220
- "iso_code": "LAK",
1221
- "name": "Lao Kip",
1222
- "symbol": "₭",
1223
- "alternate_symbols": ["₭N"],
1224
- "subunit": "Att",
1225
- "subunit_to_unit": 100,
1226
- "symbol_first": false,
1227
- "html_entity": "&#x20AD;",
1228
- "decimal_mark": ".",
1229
- "thousands_separator": ",",
1230
- "iso_numeric": "418",
1231
- "smallest_denomination": 10
1232
- },
1233
- "lbp": {
1234
- "priority": 100,
1235
- "iso_code": "LBP",
1236
- "name": "Lebanese Pound",
1237
- "symbol": "ل.ل",
1238
- "alternate_symbols": ["£", "L£"],
1239
- "subunit": "Piastre",
1240
- "subunit_to_unit": 100,
1241
- "symbol_first": true,
1242
- "html_entity": "&#x00A3;",
1243
- "decimal_mark": ".",
1244
- "thousands_separator": ",",
1245
- "iso_numeric": "422",
1246
- "smallest_denomination": 25000
1247
- },
1248
- "lkr": {
1249
- "priority": 100,
1250
- "iso_code": "LKR",
1251
- "name": "Sri Lankan Rupee",
1252
- "symbol": "₨",
1253
- "disambiguate_symbol": "SLRs",
1254
- "alternate_symbols": ["රු", "ரூ", "SLRs", "/-"],
1255
- "subunit": "Cent",
1256
- "subunit_to_unit": 100,
1257
- "symbol_first": false,
1258
- "html_entity": "&#8360;",
1259
- "decimal_mark": ".",
1260
- "thousands_separator": ",",
1261
- "iso_numeric": "144",
1262
- "smallest_denomination": 100
1263
- },
1264
- "lrd": {
1265
- "priority": 100,
1266
- "iso_code": "LRD",
1267
- "name": "Liberian Dollar",
1268
- "symbol": "$",
1269
- "disambiguate_symbol": "L$",
1270
- "alternate_symbols": ["L$"],
1271
- "subunit": "Cent",
1272
- "subunit_to_unit": 100,
1273
- "symbol_first": false,
1274
- "html_entity": "$",
1275
- "decimal_mark": ".",
1276
- "thousands_separator": ",",
1277
- "iso_numeric": "430",
1278
- "smallest_denomination": 5
1279
- },
1280
- "lsl": {
1281
- "priority": 100,
1282
- "iso_code": "LSL",
1283
- "name": "Lesotho Loti",
1284
- "symbol": "L",
1285
- "disambiguate_symbol": "M",
1286
- "alternate_symbols": ["M"],
1287
- "subunit": "Sente",
1288
- "subunit_to_unit": 100,
1289
- "symbol_first": false,
1290
- "html_entity": "",
1291
- "decimal_mark": ".",
1292
- "thousands_separator": ",",
1293
- "iso_numeric": "426",
1294
- "smallest_denomination": 1
1295
- },
1296
- "ltl": {
1297
- "priority": 100,
1298
- "iso_code": "LTL",
1299
- "name": "Lithuanian Litas",
1300
- "symbol": "Lt",
1301
- "alternate_symbols": [],
1302
- "subunit": "Centas",
1303
- "subunit_to_unit": 100,
1304
- "symbol_first": false,
1305
- "html_entity": "",
1306
- "decimal_mark": ".",
1307
- "thousands_separator": ",",
1308
- "iso_numeric": "440",
1309
- "smallest_denomination": 1
1310
- },
1311
- "lvl": {
1312
- "priority": 100,
1313
- "iso_code": "LVL",
1314
- "name": "Latvian Lats",
1315
- "symbol": "Ls",
1316
- "alternate_symbols": [],
1317
- "subunit": "Santīms",
1318
- "subunit_to_unit": 100,
1319
- "symbol_first": true,
1320
- "html_entity": "",
1321
- "decimal_mark": ".",
1322
- "thousands_separator": ",",
1323
- "iso_numeric": "428",
1324
- "smallest_denomination": 1
1325
- },
1326
- "lyd": {
1327
- "priority": 100,
1328
- "iso_code": "LYD",
1329
- "name": "Libyan Dinar",
1330
- "symbol": "ل.د",
1331
- "alternate_symbols": ["LD"],
1332
- "subunit": "Dirham",
1333
- "subunit_to_unit": 1000,
1334
- "symbol_first": false,
1335
- "html_entity": "",
1336
- "decimal_mark": ".",
1337
- "thousands_separator": ",",
1338
- "iso_numeric": "434",
1339
- "smallest_denomination": 50
1340
- },
1341
- "mad": {
1342
- "priority": 100,
1343
- "iso_code": "MAD",
1344
- "name": "Moroccan Dirham",
1345
- "symbol": "د.م.",
1346
- "alternate_symbols": [],
1347
- "subunit": "Centime",
1348
- "subunit_to_unit": 100,
1349
- "symbol_first": false,
1350
- "html_entity": "",
1351
- "decimal_mark": ".",
1352
- "thousands_separator": ",",
1353
- "iso_numeric": "504",
1354
- "smallest_denomination": 1
1355
- },
1356
- "mdl": {
1357
- "priority": 100,
1358
- "iso_code": "MDL",
1359
- "name": "Moldovan Leu",
1360
- "symbol": "L",
1361
- "alternate_symbols": ["lei"],
1362
- "subunit": "Ban",
1363
- "subunit_to_unit": 100,
1364
- "symbol_first": false,
1365
- "html_entity": "",
1366
- "decimal_mark": ".",
1367
- "thousands_separator": ",",
1368
- "iso_numeric": "498",
1369
- "smallest_denomination": 1
1370
- },
1371
- "mga": {
1372
- "priority": 100,
1373
- "iso_code": "MGA",
1374
- "name": "Malagasy Ariary",
1375
- "symbol": "Ar",
1376
- "alternate_symbols": [],
1377
- "subunit": "Iraimbilanja",
1378
- "subunit_to_unit": 5,
1379
- "symbol_first": true,
1380
- "html_entity": "",
1381
- "decimal_mark": ".",
1382
- "thousands_separator": ",",
1383
- "iso_numeric": "969",
1384
- "smallest_denomination": 1
1385
- },
1386
- "mkd": {
1387
- "priority": 100,
1388
- "iso_code": "MKD",
1389
- "name": "Macedonian Denar",
1390
- "symbol": "ден",
1391
- "alternate_symbols": [],
1392
- "subunit": "Deni",
1393
- "subunit_to_unit": 100,
1394
- "symbol_first": false,
1395
- "html_entity": "",
1396
- "decimal_mark": ".",
1397
- "thousands_separator": ",",
1398
- "iso_numeric": "807",
1399
- "smallest_denomination": 100
1400
- },
1401
- "mmk": {
1402
- "priority": 100,
1403
- "iso_code": "MMK",
1404
- "name": "Myanmar Kyat",
1405
- "symbol": "K",
1406
- "disambiguate_symbol": "MMK",
1407
- "alternate_symbols": [],
1408
- "subunit": "Pya",
1409
- "subunit_to_unit": 100,
1410
- "symbol_first": false,
1411
- "html_entity": "",
1412
- "decimal_mark": ".",
1413
- "thousands_separator": ",",
1414
- "iso_numeric": "104",
1415
- "smallest_denomination": 50
1416
- },
1417
- "mnt": {
1418
- "priority": 100,
1419
- "iso_code": "MNT",
1420
- "name": "Mongolian Tögrög",
1421
- "symbol": "₮",
1422
- "alternate_symbols": [],
1423
- "subunit": "Möngö",
1424
- "subunit_to_unit": 100,
1425
- "symbol_first": false,
1426
- "html_entity": "&#x20AE;",
1427
- "decimal_mark": ".",
1428
- "thousands_separator": ",",
1429
- "iso_numeric": "496",
1430
- "smallest_denomination": 2000
1431
- },
1432
- "mop": {
1433
- "priority": 100,
1434
- "iso_code": "MOP",
1435
- "name": "Macanese Pataca",
1436
- "symbol": "P",
1437
- "alternate_symbols": ["MOP$"],
1438
- "subunit": "Avo",
1439
- "subunit_to_unit": 100,
1440
- "symbol_first": false,
1441
- "html_entity": "",
1442
- "decimal_mark": ".",
1443
- "thousands_separator": ",",
1444
- "iso_numeric": "446",
1445
- "smallest_denomination": 10
1446
- },
1447
- "mro": {
1448
- "priority": 100,
1449
- "iso_code": "MRO",
1450
- "name": "Mauritanian Ouguiya",
1451
- "symbol": "UM",
1452
- "alternate_symbols": [],
1453
- "subunit": "Khoums",
1454
- "subunit_to_unit": 5,
1455
- "symbol_first": false,
1456
- "html_entity": "",
1457
- "decimal_mark": ".",
1458
- "thousands_separator": ",",
1459
- "iso_numeric": "478",
1460
- "smallest_denomination": 1
1461
- },
1462
- "mur": {
1463
- "priority": 100,
1464
- "iso_code": "MUR",
1465
- "name": "Mauritian Rupee",
1466
- "symbol": "₨",
1467
- "alternate_symbols": [],
1468
- "subunit": "Cent",
1469
- "subunit_to_unit": 100,
1470
- "symbol_first": true,
1471
- "html_entity": "&#x20A8;",
1472
- "decimal_mark": ".",
1473
- "thousands_separator": ",",
1474
- "iso_numeric": "480",
1475
- "smallest_denomination": 100
1476
- },
1477
- "mvr": {
1478
- "priority": 100,
1479
- "iso_code": "MVR",
1480
- "name": "Maldivian Rufiyaa",
1481
- "symbol": "MVR",
1482
- "alternate_symbols": ["MRF", "Rf", "/-", "ރ"],
1483
- "subunit": "Laari",
1484
- "subunit_to_unit": 100,
1485
- "symbol_first": false,
1486
- "html_entity": "",
1487
- "decimal_mark": ".",
1488
- "thousands_separator": ",",
1489
- "iso_numeric": "462",
1490
- "smallest_denomination": 1
1491
- },
1492
- "mwk": {
1493
- "priority": 100,
1494
- "iso_code": "MWK",
1495
- "name": "Malawian Kwacha",
1496
- "symbol": "MK",
1497
- "alternate_symbols": [],
1498
- "subunit": "Tambala",
1499
- "subunit_to_unit": 100,
1500
- "symbol_first": false,
1501
- "html_entity": "",
1502
- "decimal_mark": ".",
1503
- "thousands_separator": ",",
1504
- "iso_numeric": "454",
1505
- "smallest_denomination": 1
1506
- },
1507
- "mxn": {
1508
- "priority": 100,
1509
- "iso_code": "MXN",
1510
- "name": "Mexican Peso",
1511
- "symbol": "$",
1512
- "disambiguate_symbol": "MEX$",
1513
- "alternate_symbols": ["MEX$"],
1514
- "subunit": "Centavo",
1515
- "subunit_to_unit": 100,
1516
- "symbol_first": true,
1517
- "html_entity": "$",
1518
- "decimal_mark": ".",
1519
- "thousands_separator": ",",
1520
- "iso_numeric": "484",
1521
- "smallest_denomination": 5
1522
- },
1523
- "myr": {
1524
- "priority": 100,
1525
- "iso_code": "MYR",
1526
- "name": "Malaysian Ringgit",
1527
- "symbol": "RM",
1528
- "alternate_symbols": [],
1529
- "subunit": "Sen",
1530
- "subunit_to_unit": 100,
1531
- "symbol_first": true,
1532
- "html_entity": "",
1533
- "decimal_mark": ".",
1534
- "thousands_separator": ",",
1535
- "iso_numeric": "458",
1536
- "smallest_denomination": 5
1537
- },
1538
- "mzn": {
1539
- "priority": 100,
1540
- "iso_code": "MZN",
1541
- "name": "Mozambican Metical",
1542
- "symbol": "MTn",
1543
- "alternate_symbols": ["MZN"],
1544
- "subunit": "Centavo",
1545
- "subunit_to_unit": 100,
1546
- "symbol_first": true,
1547
- "html_entity": "",
1548
- "decimal_mark": ",",
1549
- "thousands_separator": ".",
1550
- "iso_numeric": "943",
1551
- "smallest_denomination": 1
1552
- },
1553
- "nad": {
1554
- "priority": 100,
1555
- "iso_code": "NAD",
1556
- "name": "Namibian Dollar",
1557
- "symbol": "$",
1558
- "disambiguate_symbol": "N$",
1559
- "alternate_symbols": ["N$"],
1560
- "subunit": "Cent",
1561
- "subunit_to_unit": 100,
1562
- "symbol_first": false,
1563
- "html_entity": "$",
1564
- "decimal_mark": ".",
1565
- "thousands_separator": ",",
1566
- "iso_numeric": "516",
1567
- "smallest_denomination": 5
1568
- },
1569
- "ngn": {
1570
- "priority": 100,
1571
- "iso_code": "NGN",
1572
- "name": "Nigerian Naira",
1573
- "symbol": "₦",
1574
- "alternate_symbols": [],
1575
- "subunit": "Kobo",
1576
- "subunit_to_unit": 100,
1577
- "symbol_first": true,
1578
- "html_entity": "&#x20A6;",
1579
- "decimal_mark": ".",
1580
- "thousands_separator": ",",
1581
- "iso_numeric": "566",
1582
- "smallest_denomination": 50
1583
- },
1584
- "nio": {
1585
- "priority": 100,
1586
- "iso_code": "NIO",
1587
- "name": "Nicaraguan Córdoba",
1588
- "symbol": "C$",
1589
- "disambiguate_symbol": "NIO$",
1590
- "alternate_symbols": [],
1591
- "subunit": "Centavo",
1592
- "subunit_to_unit": 100,
1593
- "symbol_first": true,
1594
- "html_entity": "",
1595
- "decimal_mark": ".",
1596
- "thousands_separator": ",",
1597
- "iso_numeric": "558",
1598
- "smallest_denomination": 5
1599
- },
1600
- "nok": {
1601
- "priority": 100,
1602
- "iso_code": "NOK",
1603
- "name": "Norwegian Krone",
1604
- "symbol": "kr",
1605
- "disambiguate_symbol": "NOK",
1606
- "alternate_symbols": [",-"],
1607
- "subunit": "Øre",
1608
- "subunit_to_unit": 100,
1609
- "symbol_first": false,
1610
- "html_entity": "kr",
1611
- "decimal_mark": ",",
1612
- "thousands_separator": ".",
1613
- "iso_numeric": "578",
1614
- "smallest_denomination": 100
1615
- },
1616
- "npr": {
1617
- "priority": 100,
1618
- "iso_code": "NPR",
1619
- "name": "Nepalese Rupee",
1620
- "symbol": "₨",
1621
- "disambiguate_symbol": "NPR",
1622
- "alternate_symbols": ["Rs", "रू"],
1623
- "subunit": "Paisa",
1624
- "subunit_to_unit": 100,
1625
- "symbol_first": true,
1626
- "html_entity": "&#x20A8;",
1627
- "decimal_mark": ".",
1628
- "thousands_separator": ",",
1629
- "iso_numeric": "524",
1630
- "smallest_denomination": 1
1631
- },
1632
- "nzd": {
1633
- "priority": 100,
1634
- "iso_code": "NZD",
1635
- "name": "New Zealand Dollar",
1636
- "symbol": "$",
1637
- "disambiguate_symbol": "NZ$",
1638
- "alternate_symbols": ["NZ$"],
1639
- "subunit": "Cent",
1640
- "subunit_to_unit": 100,
1641
- "symbol_first": true,
1642
- "html_entity": "$",
1643
- "decimal_mark": ".",
1644
- "thousands_separator": ",",
1645
- "iso_numeric": "554",
1646
- "smallest_denomination": 10
1647
- },
1648
- "omr": {
1649
- "priority": 100,
1650
- "iso_code": "OMR",
1651
- "name": "Omani Rial",
1652
- "symbol": "ر.ع.",
1653
- "alternate_symbols": [],
1654
- "subunit": "Baisa",
1655
- "subunit_to_unit": 1000,
1656
- "symbol_first": true,
1657
- "html_entity": "&#xFDFC;",
1658
- "decimal_mark": ".",
1659
- "thousands_separator": ",",
1660
- "iso_numeric": "512",
1661
- "smallest_denomination": 5
1662
- },
1663
- "pab": {
1664
- "priority": 100,
1665
- "iso_code": "PAB",
1666
- "name": "Panamanian Balboa",
1667
- "symbol": "B/.",
1668
- "alternate_symbols": [],
1669
- "subunit": "Centésimo",
1670
- "subunit_to_unit": 100,
1671
- "symbol_first": true,
1672
- "html_entity": "",
1673
- "decimal_mark": ".",
1674
- "thousands_separator": ",",
1675
- "iso_numeric": "590",
1676
- "smallest_denomination": 1
1677
- },
1678
- "pen": {
1679
- "priority": 100,
1680
- "iso_code": "PEN",
1681
- "name": "Peruvian Sol",
1682
- "symbol": "S/.",
1683
- "alternate_symbols": [],
1684
- "subunit": "Céntimo",
1685
- "subunit_to_unit": 100,
1686
- "symbol_first": true,
1687
- "html_entity": "S/.",
1688
- "decimal_mark": ".",
1689
- "thousands_separator": ",",
1690
- "iso_numeric": "604",
1691
- "smallest_denomination": 1
1692
- },
1693
- "pgk": {
1694
- "priority": 100,
1695
- "iso_code": "PGK",
1696
- "name": "Papua New Guinean Kina",
1697
- "symbol": "K",
1698
- "disambiguate_symbol": "PGK",
1699
- "alternate_symbols": [],
1700
- "subunit": "Toea",
1701
- "subunit_to_unit": 100,
1702
- "symbol_first": false,
1703
- "html_entity": "",
1704
- "decimal_mark": ".",
1705
- "thousands_separator": ",",
1706
- "iso_numeric": "598",
1707
- "smallest_denomination": 5
1708
- },
1709
- "php": {
1710
- "priority": 100,
1711
- "iso_code": "PHP",
1712
- "name": "Philippine Peso",
1713
- "symbol": "₱",
1714
- "alternate_symbols": ["PHP", "PhP", "P"],
1715
- "subunit": "Centavo",
1716
- "subunit_to_unit": 100,
1717
- "symbol_first": true,
1718
- "html_entity": "&#x20B1;",
1719
- "decimal_mark": ".",
1720
- "thousands_separator": ",",
1721
- "iso_numeric": "608",
1722
- "smallest_denomination": 1
1723
- },
1724
- "pkr": {
1725
- "priority": 100,
1726
- "iso_code": "PKR",
1727
- "name": "Pakistani Rupee",
1728
- "symbol": "₨",
1729
- "disambiguate_symbol": "PKR",
1730
- "alternate_symbols": ["Rs"],
1731
- "subunit": "Paisa",
1732
- "subunit_to_unit": 100,
1733
- "symbol_first": true,
1734
- "html_entity": "&#x20A8;",
1735
- "decimal_mark": ".",
1736
- "thousands_separator": ",",
1737
- "iso_numeric": "586",
1738
- "smallest_denomination": 100
1739
- },
1740
- "pln": {
1741
- "priority": 100,
1742
- "iso_code": "PLN",
1743
- "name": "Polish Złoty",
1744
- "symbol": "zł",
1745
- "alternate_symbols": [],
1746
- "subunit": "Grosz",
1747
- "subunit_to_unit": 100,
1748
- "symbol_first": false,
1749
- "html_entity": "z&#322;",
1750
- "decimal_mark": ",",
1751
- "thousands_separator": " ",
1752
- "iso_numeric": "985",
1753
- "smallest_denomination": 1
1754
- },
1755
- "pyg": {
1756
- "priority": 100,
1757
- "iso_code": "PYG",
1758
- "name": "Paraguayan Guaraní",
1759
- "symbol": "₲",
1760
- "alternate_symbols": [],
1761
- "subunit": "Céntimo",
1762
- "subunit_to_unit": 1,
1763
- "symbol_first": true,
1764
- "html_entity": "&#x20B2;",
1765
- "decimal_mark": ".",
1766
- "thousands_separator": ",",
1767
- "iso_numeric": "600",
1768
- "smallest_denomination": 5000
1769
- },
1770
- "qar": {
1771
- "priority": 100,
1772
- "iso_code": "QAR",
1773
- "name": "Qatari Riyal",
1774
- "symbol": "ر.ق",
1775
- "alternate_symbols": ["QR"],
1776
- "subunit": "Dirham",
1777
- "subunit_to_unit": 100,
1778
- "symbol_first": false,
1779
- "html_entity": "&#xFDFC;",
1780
- "decimal_mark": ".",
1781
- "thousands_separator": ",",
1782
- "iso_numeric": "634",
1783
- "smallest_denomination": 1
1784
- },
1785
- "ron": {
1786
- "priority": 100,
1787
- "iso_code": "RON",
1788
- "name": "Romanian Leu",
1789
- "symbol": "Lei",
1790
- "alternate_symbols": [],
1791
- "subunit": "Bani",
1792
- "subunit_to_unit": 100,
1793
- "symbol_first": false,
1794
- "html_entity": "",
1795
- "decimal_mark": ",",
1796
- "thousands_separator": ".",
1797
- "iso_numeric": "946",
1798
- "smallest_denomination": 1
1799
- },
1800
- "rsd": {
1801
- "priority": 100,
1802
- "iso_code": "RSD",
1803
- "name": "Serbian Dinar",
1804
- "symbol": "РСД",
1805
- "alternate_symbols": ["RSD", "din", "дин"],
1806
- "subunit": "Para",
1807
- "subunit_to_unit": 100,
1808
- "symbol_first": true,
1809
- "html_entity": "",
1810
- "decimal_mark": ".",
1811
- "thousands_separator": ",",
1812
- "iso_numeric": "941",
1813
- "smallest_denomination": 100
1814
- },
1815
- "rub": {
1816
- "priority": 100,
1817
- "iso_code": "RUB",
1818
- "name": "Russian Ruble",
1819
- "symbol": "₽",
1820
- "alternate_symbols": ["руб.", "р."],
1821
- "subunit": "Kopeck",
1822
- "subunit_to_unit": 100,
1823
- "symbol_first": false,
1824
- "html_entity": "&#x20BD;",
1825
- "decimal_mark": ",",
1826
- "thousands_separator": ".",
1827
- "iso_numeric": "643",
1828
- "smallest_denomination": 1
1829
- },
1830
- "rwf": {
1831
- "priority": 100,
1832
- "iso_code": "RWF",
1833
- "name": "Rwandan Franc",
1834
- "symbol": "FRw",
1835
- "alternate_symbols": ["RF", "R₣"],
1836
- "subunit": "Centime",
1837
- "subunit_to_unit": 1,
1838
- "symbol_first": false,
1839
- "html_entity": "",
1840
- "decimal_mark": ".",
1841
- "thousands_separator": ",",
1842
- "iso_numeric": "646",
1843
- "smallest_denomination": 100
1844
- },
1845
- "sar": {
1846
- "priority": 100,
1847
- "iso_code": "SAR",
1848
- "name": "Saudi Riyal",
1849
- "symbol": "ر.س",
1850
- "alternate_symbols": ["SR", "﷼"],
1851
- "subunit": "Hallallah",
1852
- "subunit_to_unit": 100,
1853
- "symbol_first": true,
1854
- "html_entity": "&#xFDFC;",
1855
- "decimal_mark": ".",
1856
- "thousands_separator": ",",
1857
- "iso_numeric": "682",
1858
- "smallest_denomination": 5
1859
- },
1860
- "sbd": {
1861
- "priority": 100,
1862
- "iso_code": "SBD",
1863
- "name": "Solomon Islands Dollar",
1864
- "symbol": "$",
1865
- "disambiguate_symbol": "SI$",
1866
- "alternate_symbols": ["SI$"],
1867
- "subunit": "Cent",
1868
- "subunit_to_unit": 100,
1869
- "symbol_first": false,
1870
- "html_entity": "$",
1871
- "decimal_mark": ".",
1872
- "thousands_separator": ",",
1873
- "iso_numeric": "090",
1874
- "smallest_denomination": 10
1875
- },
1876
- "scr": {
1877
- "priority": 100,
1878
- "iso_code": "SCR",
1879
- "name": "Seychellois Rupee",
1880
- "symbol": "₨",
1881
- "disambiguate_symbol": "SRe",
1882
- "alternate_symbols": ["SRe", "SR"],
1883
- "subunit": "Cent",
1884
- "subunit_to_unit": 100,
1885
- "symbol_first": false,
1886
- "html_entity": "&#x20A8;",
1887
- "decimal_mark": ".",
1888
- "thousands_separator": ",",
1889
- "iso_numeric": "690",
1890
- "smallest_denomination": 1
1891
- },
1892
- "sdg": {
1893
- "priority": 100,
1894
- "iso_code": "SDG",
1895
- "name": "Sudanese Pound",
1896
- "symbol": "£",
1897
- "disambiguate_symbol": "SDG",
1898
- "alternate_symbols": [],
1899
- "subunit": "Piastre",
1900
- "subunit_to_unit": 100,
1901
- "symbol_first": true,
1902
- "html_entity": "",
1903
- "decimal_mark": ".",
1904
- "thousands_separator": ",",
1905
- "iso_numeric": "938",
1906
- "smallest_denomination": 1
1907
- },
1908
- "sek": {
1909
- "priority": 100,
1910
- "iso_code": "SEK",
1911
- "name": "Swedish Krona",
1912
- "symbol": "kr",
1913
- "disambiguate_symbol": "SEK",
1914
- "alternate_symbols": [":-"],
1915
- "subunit": "Öre",
1916
- "subunit_to_unit": 100,
1917
- "symbol_first": false,
1918
- "html_entity": "",
1919
- "decimal_mark": ",",
1920
- "thousands_separator": " ",
1921
- "iso_numeric": "752",
1922
- "smallest_denomination": 100
1923
- },
1924
- "sgd": {
1925
- "priority": 100,
1926
- "iso_code": "SGD",
1927
- "name": "Singapore Dollar",
1928
- "symbol": "$",
1929
- "disambiguate_symbol": "S$",
1930
- "alternate_symbols": ["S$"],
1931
- "subunit": "Cent",
1932
- "subunit_to_unit": 100,
1933
- "symbol_first": true,
1934
- "html_entity": "$",
1935
- "decimal_mark": ".",
1936
- "thousands_separator": ",",
1937
- "iso_numeric": "702",
1938
- "smallest_denomination": 1
1939
- },
1940
- "shp": {
1941
- "priority": 100,
1942
- "iso_code": "SHP",
1943
- "name": "Saint Helenian Pound",
1944
- "symbol": "£",
1945
- "disambiguate_symbol": "SHP",
1946
- "alternate_symbols": [],
1947
- "subunit": "Penny",
1948
- "subunit_to_unit": 100,
1949
- "symbol_first": false,
1950
- "html_entity": "&#x00A3;",
1951
- "decimal_mark": ".",
1952
- "thousands_separator": ",",
1953
- "iso_numeric": "654",
1954
- "smallest_denomination": 1
1955
- },
1956
- "skk": {
1957
- "priority": 100,
1958
- "iso_code": "SKK",
1959
- "name": "Slovak Koruna",
1960
- "symbol": "Sk",
1961
- "alternate_symbols": [],
1962
- "subunit": "Halier",
1963
- "subunit_to_unit": 100,
1964
- "symbol_first": true,
1965
- "html_entity": "",
1966
- "decimal_mark": ".",
1967
- "thousands_separator": ",",
1968
- "iso_numeric": "703",
1969
- "smallest_denomination": 50
1970
- },
1971
- "sll": {
1972
- "priority": 100,
1973
- "iso_code": "SLL",
1974
- "name": "Sierra Leonean Leone",
1975
- "symbol": "Le",
1976
- "alternate_symbols": [],
1977
- "subunit": "Cent",
1978
- "subunit_to_unit": 100,
1979
- "symbol_first": false,
1980
- "html_entity": "",
1981
- "decimal_mark": ".",
1982
- "thousands_separator": ",",
1983
- "iso_numeric": "694",
1984
- "smallest_denomination": 1000
1985
- },
1986
- "sos": {
1987
- "priority": 100,
1988
- "iso_code": "SOS",
1989
- "name": "Somali Shilling",
1990
- "symbol": "Sh",
1991
- "alternate_symbols": ["Sh.So"],
1992
- "subunit": "Cent",
1993
- "subunit_to_unit": 100,
1994
- "symbol_first": false,
1995
- "html_entity": "",
1996
- "decimal_mark": ".",
1997
- "thousands_separator": ",",
1998
- "iso_numeric": "706",
1999
- "smallest_denomination": 1
2000
- },
2001
- "srd": {
2002
- "priority": 100,
2003
- "iso_code": "SRD",
2004
- "name": "Surinamese Dollar",
2005
- "symbol": "$",
2006
- "disambiguate_symbol": "SRD",
2007
- "alternate_symbols": [],
2008
- "subunit": "Cent",
2009
- "subunit_to_unit": 100,
2010
- "symbol_first": false,
2011
- "html_entity": "",
2012
- "decimal_mark": ".",
2013
- "thousands_separator": ",",
2014
- "iso_numeric": "968",
2015
- "smallest_denomination": 1
2016
- },
2017
- "ssp": {
2018
- "priority": 100,
2019
- "iso_code": "SSP",
2020
- "name": "South Sudanese Pound",
2021
- "symbol": "£",
2022
- "disambiguate_symbol": "SSP",
2023
- "alternate_symbols": [],
2024
- "subunit": "piaster",
2025
- "subunit_to_unit": 100,
2026
- "symbol_first": false,
2027
- "html_entity": "&#x00A3;",
2028
- "decimal_mark": ".",
2029
- "thousands_separator": ",",
2030
- "iso_numeric": "728",
2031
- "smallest_denomination": 5
2032
- },
2033
- "std": {
2034
- "priority": 100,
2035
- "iso_code": "STD",
2036
- "name": "São Tomé and Príncipe Dobra",
2037
- "symbol": "Db",
2038
- "alternate_symbols": [],
2039
- "subunit": "Cêntimo",
2040
- "subunit_to_unit": 100,
2041
- "symbol_first": false,
2042
- "html_entity": "",
2043
- "decimal_mark": ".",
2044
- "thousands_separator": ",",
2045
- "iso_numeric": "678",
2046
- "smallest_denomination": 10000
2047
- },
2048
- "svc": {
2049
- "priority": 100,
2050
- "iso_code": "SVC",
2051
- "name": "Salvadoran Colón",
2052
- "symbol": "₡",
2053
- "alternate_symbols": ["¢"],
2054
- "subunit": "Centavo",
2055
- "subunit_to_unit": 100,
2056
- "symbol_first": true,
2057
- "html_entity": "&#x20A1;",
2058
- "decimal_mark": ".",
2059
- "thousands_separator": ",",
2060
- "iso_numeric": "222",
2061
- "smallest_denomination": 1
2062
- },
2063
- "syp": {
2064
- "priority": 100,
2065
- "iso_code": "SYP",
2066
- "name": "Syrian Pound",
2067
- "symbol": "£S",
2068
- "alternate_symbols": ["£", "ل.س", "LS", "الليرة السورية"],
2069
- "subunit": "Piastre",
2070
- "subunit_to_unit": 100,
2071
- "symbol_first": false,
2072
- "html_entity": "&#x00A3;",
2073
- "decimal_mark": ".",
2074
- "thousands_separator": ",",
2075
- "iso_numeric": "760",
2076
- "smallest_denomination": 100
2077
- },
2078
- "szl": {
2079
- "priority": 100,
2080
- "iso_code": "SZL",
2081
- "name": "Swazi Lilangeni",
2082
- "symbol": "E",
2083
- "disambiguate_symbol": "SZL",
2084
- "subunit": "Cent",
2085
- "subunit_to_unit": 100,
2086
- "symbol_first": true,
2087
- "html_entity": "",
2088
- "decimal_mark": ".",
2089
- "thousands_separator": ",",
2090
- "iso_numeric": "748",
2091
- "smallest_denomination": 1
2092
- },
2093
- "thb": {
2094
- "priority": 100,
2095
- "iso_code": "THB",
2096
- "name": "Thai Baht",
2097
- "symbol": "฿",
2098
- "alternate_symbols": [],
2099
- "subunit": "Satang",
2100
- "subunit_to_unit": 100,
2101
- "symbol_first": true,
2102
- "html_entity": "&#x0E3F;",
2103
- "decimal_mark": ".",
2104
- "thousands_separator": ",",
2105
- "iso_numeric": "764",
2106
- "smallest_denomination": 1
2107
- },
2108
- "tjs": {
2109
- "priority": 100,
2110
- "iso_code": "TJS",
2111
- "name": "Tajikistani Somoni",
2112
- "symbol": "ЅМ",
2113
- "alternate_symbols": [],
2114
- "subunit": "Diram",
2115
- "subunit_to_unit": 100,
2116
- "symbol_first": false,
2117
- "html_entity": "",
2118
- "decimal_mark": ".",
2119
- "thousands_separator": ",",
2120
- "iso_numeric": "972",
2121
- "smallest_denomination": 1
2122
- },
2123
- "tmt": {
2124
- "priority": 100,
2125
- "iso_code": "TMT",
2126
- "name": "Turkmenistani Manat",
2127
- "symbol": "T",
2128
- "alternate_symbols": [],
2129
- "subunit": "Tenge",
2130
- "subunit_to_unit": 100,
2131
- "symbol_first": false,
2132
- "html_entity": "",
2133
- "decimal_mark": ".",
2134
- "thousands_separator": ",",
2135
- "iso_numeric": "934",
2136
- "smallest_denomination": 1
2137
- },
2138
- "tnd": {
2139
- "priority": 100,
2140
- "iso_code": "TND",
2141
- "name": "Tunisian Dinar",
2142
- "symbol": "د.ت",
2143
- "alternate_symbols": ["TD", "DT"],
2144
- "subunit": "Millime",
2145
- "subunit_to_unit": 1000,
2146
- "symbol_first": false,
2147
- "html_entity": "",
2148
- "decimal_mark": ".",
2149
- "thousands_separator": ",",
2150
- "iso_numeric": "788",
2151
- "smallest_denomination": 10
2152
- },
2153
- "top": {
2154
- "priority": 100,
2155
- "iso_code": "TOP",
2156
- "name": "Tongan Paʻanga",
2157
- "symbol": "T$",
2158
- "alternate_symbols": ["PT"],
2159
- "subunit": "Seniti",
2160
- "subunit_to_unit": 100,
2161
- "symbol_first": true,
2162
- "html_entity": "",
2163
- "decimal_mark": ".",
2164
- "thousands_separator": ",",
2165
- "iso_numeric": "776",
2166
- "smallest_denomination": 1
2167
- },
2168
- "try": {
2169
- "priority": 100,
2170
- "iso_code": "TRY",
2171
- "name": "Turkish Lira",
2172
- "symbol": "₺",
2173
- "alternate_symbols": ["TL"],
2174
- "subunit": "kuruş",
2175
- "subunit_to_unit": 100,
2176
- "symbol_first": true,
2177
- "html_entity": "&#8378;",
2178
- "decimal_mark": ",",
2179
- "thousands_separator": ".",
2180
- "iso_numeric": "949",
2181
- "smallest_denomination": 1
2182
- },
2183
- "ttd": {
2184
- "priority": 100,
2185
- "iso_code": "TTD",
2186
- "name": "Trinidad and Tobago Dollar",
2187
- "symbol": "$",
2188
- "disambiguate_symbol": "TT$",
2189
- "alternate_symbols": ["TT$"],
2190
- "subunit": "Cent",
2191
- "subunit_to_unit": 100,
2192
- "symbol_first": false,
2193
- "html_entity": "$",
2194
- "decimal_mark": ".",
2195
- "thousands_separator": ",",
2196
- "iso_numeric": "780",
2197
- "smallest_denomination": 1
2198
- },
2199
- "twd": {
2200
- "priority": 100,
2201
- "iso_code": "TWD",
2202
- "name": "New Taiwan Dollar",
2203
- "symbol": "$",
2204
- "disambiguate_symbol": "NT$",
2205
- "alternate_symbols": ["NT$", "NTD"],
2206
- "subunit": "Cent",
2207
- "subunit_to_unit": 100,
2208
- "symbol_first": true,
2209
- "html_entity": "$",
2210
- "decimal_mark": ".",
2211
- "thousands_separator": ",",
2212
- "iso_numeric": "901",
2213
- "smallest_denomination": 50
2214
- },
2215
- "tzs": {
2216
- "priority": 100,
2217
- "iso_code": "TZS",
2218
- "name": "Tanzanian Shilling",
2219
- "symbol": "Sh",
2220
- "alternate_symbols": [],
2221
- "subunit": "Cent",
2222
- "subunit_to_unit": 100,
2223
- "symbol_first": true,
2224
- "html_entity": "",
2225
- "decimal_mark": ".",
2226
- "thousands_separator": ",",
2227
- "iso_numeric": "834",
2228
- "smallest_denomination": 5000
2229
- },
2230
- "uah": {
2231
- "priority": 100,
2232
- "iso_code": "UAH",
2233
- "name": "Ukrainian Hryvnia",
2234
- "symbol": "₴",
2235
- "alternate_symbols": [],
2236
- "subunit": "Kopiyka",
2237
- "subunit_to_unit": 100,
2238
- "symbol_first": false,
2239
- "html_entity": "&#x20B4;",
2240
- "decimal_mark": ".",
2241
- "thousands_separator": ",",
2242
- "iso_numeric": "980",
2243
- "smallest_denomination": 1
2244
- },
2245
- "ugx": {
2246
- "priority": 100,
2247
- "iso_code": "UGX",
2248
- "name": "Ugandan Shilling",
2249
- "symbol": "USh",
2250
- "alternate_symbols": [],
2251
- "subunit": "Cent",
2252
- "subunit_to_unit": 1,
2253
- "symbol_first": false,
2254
- "html_entity": "",
2255
- "decimal_mark": ".",
2256
- "thousands_separator": ",",
2257
- "iso_numeric": "800",
2258
- "smallest_denomination": 1000
2259
- },
2260
- "usd": {
2261
- "priority": 1,
2262
- "iso_code": "USD",
2263
- "name": "United States Dollar",
2264
- "symbol": "$",
2265
- "disambiguate_symbol": "US$",
2266
- "alternate_symbols": ["US$"],
2267
- "subunit": "Cent",
2268
- "subunit_symbol": "¢",
2269
- "subunit_to_unit": 100,
2270
- "symbol_first": true,
2271
- "html_entity": "$",
2272
- "decimal_mark": ".",
2273
- "thousands_separator": ",",
2274
- "iso_numeric": "840",
2275
- "smallest_denomination": 1
2276
- },
2277
- "uyu": {
2278
- "priority": 100,
2279
- "iso_code": "UYU",
2280
- "name": "Uruguayan Peso",
2281
- "symbol": "$",
2282
- "alternate_symbols": ["$U"],
2283
- "subunit": "Centésimo",
2284
- "subunit_to_unit": 100,
2285
- "symbol_first": true,
2286
- "html_entity": "&#x20B1;",
2287
- "decimal_mark": ",",
2288
- "thousands_separator": ".",
2289
- "iso_numeric": "858",
2290
- "smallest_denomination": 100
2291
- },
2292
- "uzs": {
2293
- "priority": 100,
2294
- "iso_code": "UZS",
2295
- "name": "Uzbekistan Som",
2296
- "symbol": "",
2297
- "alternate_symbols": ["so‘m", "сўм", "сум", "s", "с"],
2298
- "subunit": "Tiyin",
2299
- "subunit_to_unit": 100,
2300
- "symbol_first": false,
2301
- "html_entity": "",
2302
- "decimal_mark": ".",
2303
- "thousands_separator": ",",
2304
- "iso_numeric": "860",
2305
- "smallest_denomination": 100
2306
- },
2307
- "vef": {
2308
- "priority": 100,
2309
- "iso_code": "VEF",
2310
- "name": "Venezuelan Bolívar fuerte",
2311
- "symbol": "Bs.F.",
2312
- "alternate_symbols": [],
2313
- "subunit": "Céntimo",
2314
- "subunit_to_unit": 100,
2315
- "symbol_first": true,
2316
- "html_entity": "",
2317
- "decimal_mark": ",",
2318
- "thousands_separator": ".",
2319
- "iso_numeric": "937",
2320
- "smallest_denomination": 1
2321
- },
2322
- "vnd": {
2323
- "priority": 100,
2324
- "iso_code": "VND",
2325
- "name": "Vietnamese Đồng",
2326
- "symbol": "₫",
2327
- "alternate_symbols": [],
2328
- "subunit": "Hào",
2329
- "subunit_to_unit": 1,
2330
- "symbol_first": false,
2331
- "html_entity": "&#x20AB;",
2332
- "decimal_mark": ",",
2333
- "thousands_separator": ".",
2334
- "iso_numeric": "704",
2335
- "smallest_denomination": 100
2336
- },
2337
- "vuv": {
2338
- "priority": 100,
2339
- "iso_code": "VUV",
2340
- "name": "Vanuatu Vatu",
2341
- "symbol": "Vt",
2342
- "alternate_symbols": [],
2343
- "subunit": null,
2344
- "subunit_to_unit": 1,
2345
- "symbol_first": true,
2346
- "html_entity": "",
2347
- "decimal_mark": ".",
2348
- "thousands_separator": ",",
2349
- "iso_numeric": "548",
2350
- "smallest_denomination": 1
2351
- },
2352
- "wst": {
2353
- "priority": 100,
2354
- "iso_code": "WST",
2355
- "name": "Samoan Tala",
2356
- "symbol": "T",
2357
- "disambiguate_symbol": "WS$",
2358
- "alternate_symbols": ["WS$", "SAT", "ST"],
2359
- "subunit": "Sene",
2360
- "subunit_to_unit": 100,
2361
- "symbol_first": false,
2362
- "html_entity": "",
2363
- "decimal_mark": ".",
2364
- "thousands_separator": ",",
2365
- "iso_numeric": "882",
2366
- "smallest_denomination": 10
2367
- },
2368
- "xaf": {
2369
- "priority": 100,
2370
- "iso_code": "XAF",
2371
- "name": "Central African Cfa Franc",
2372
- "symbol": "Fr",
2373
- "disambiguate_symbol": "FCFA",
2374
- "alternate_symbols": ["FCFA"],
2375
- "subunit": "Centime",
2376
- "subunit_to_unit": 1,
2377
- "symbol_first": false,
2378
- "html_entity": "",
2379
- "decimal_mark": ".",
2380
- "thousands_separator": ",",
2381
- "iso_numeric": "950",
2382
- "smallest_denomination": 100
2383
- },
2384
- "xag": {
2385
- "priority": 100,
2386
- "iso_code": "XAG",
2387
- "name": "Silver (Troy Ounce)",
2388
- "symbol": "oz t",
2389
- "disambiguate_symbol": "XAG",
2390
- "alternate_symbols": [],
2391
- "subunit": "oz",
2392
- "subunit_to_unit": 1,
2393
- "symbol_first": false,
2394
- "html_entity": "",
2395
- "decimal_mark": ".",
2396
- "thousands_separator": ",",
2397
- "iso_numeric": "961"
2398
- },
2399
- "xau": {
2400
- "priority": 100,
2401
- "iso_code": "XAU",
2402
- "name": "Gold (Troy Ounce)",
2403
- "symbol": "oz t",
2404
- "disambiguate_symbol": "XAU",
2405
- "alternate_symbols": [],
2406
- "subunit": "oz",
2407
- "subunit_to_unit": 1,
2408
- "symbol_first": false,
2409
- "html_entity": "",
2410
- "decimal_mark": ".",
2411
- "thousands_separator": ",",
2412
- "iso_numeric": "959"
2413
- },
2414
- "xba": {
2415
- "priority": 100,
2416
- "iso_code": "XBA",
2417
- "name": "European Composite Unit",
2418
- "symbol": "",
2419
- "disambiguate_symbol": "XBA",
2420
- "alternate_symbols": [],
2421
- "subunit": "",
2422
- "subunit_to_unit": 1,
2423
- "symbol_first": false,
2424
- "html_entity": "",
2425
- "decimal_mark": ".",
2426
- "thousands_separator": ",",
2427
- "iso_numeric": "955"
2428
- },
2429
- "xbb": {
2430
- "priority": 100,
2431
- "iso_code": "XBB",
2432
- "name": "European Monetary Unit",
2433
- "symbol": "",
2434
- "disambiguate_symbol": "XBB",
2435
- "alternate_symbols": [],
2436
- "subunit": "",
2437
- "subunit_to_unit": 1,
2438
- "symbol_first": false,
2439
- "html_entity": "",
2440
- "decimal_mark": ".",
2441
- "thousands_separator": ",",
2442
- "iso_numeric": "956"
2443
- },
2444
- "xbc": {
2445
- "priority": 100,
2446
- "iso_code": "XBC",
2447
- "name": "European Unit of Account 9",
2448
- "symbol": "",
2449
- "disambiguate_symbol": "XBC",
2450
- "alternate_symbols": [],
2451
- "subunit": "",
2452
- "subunit_to_unit": 1,
2453
- "symbol_first": false,
2454
- "html_entity": "",
2455
- "decimal_mark": ".",
2456
- "thousands_separator": ",",
2457
- "iso_numeric": "957"
2458
- },
2459
- "xbd": {
2460
- "priority": 100,
2461
- "iso_code": "XBD",
2462
- "name": "European Unit of Account 17",
2463
- "symbol": "",
2464
- "disambiguate_symbol": "XBD",
2465
- "alternate_symbols": [],
2466
- "subunit": "",
2467
- "subunit_to_unit": 1,
2468
- "symbol_first": false,
2469
- "html_entity": "",
2470
- "decimal_mark": ".",
2471
- "thousands_separator": ",",
2472
- "iso_numeric": "958"
2473
- },
2474
- "xcd": {
2475
- "priority": 100,
2476
- "iso_code": "XCD",
2477
- "name": "East Caribbean Dollar",
2478
- "symbol": "$",
2479
- "disambiguate_symbol": "EX$",
2480
- "alternate_symbols": ["EC$"],
2481
- "subunit": "Cent",
2482
- "subunit_to_unit": 100,
2483
- "symbol_first": true,
2484
- "html_entity": "$",
2485
- "decimal_mark": ".",
2486
- "thousands_separator": ",",
2487
- "iso_numeric": "951",
2488
- "smallest_denomination": 1
2489
- },
2490
- "xdr": {
2491
- "priority": 100,
2492
- "iso_code": "XDR",
2493
- "name": "Special Drawing Rights",
2494
- "symbol": "SDR",
2495
- "alternate_symbols": ["XDR"],
2496
- "subunit": "",
2497
- "subunit_to_unit": 1,
2498
- "symbol_first": false,
2499
- "html_entity": "$",
2500
- "decimal_mark": ".",
2501
- "thousands_separator": ",",
2502
- "iso_numeric": "960"
2503
- },
2504
- "xof": {
2505
- "priority": 100,
2506
- "iso_code": "XOF",
2507
- "name": "West African Cfa Franc",
2508
- "symbol": "Fr",
2509
- "disambiguate_symbol": "CFA",
2510
- "alternate_symbols": ["CFA"],
2511
- "subunit": "Centime",
2512
- "subunit_to_unit": 1,
2513
- "symbol_first": false,
2514
- "html_entity": "",
2515
- "decimal_mark": ".",
2516
- "thousands_separator": ",",
2517
- "iso_numeric": "952",
2518
- "smallest_denomination": 100
2519
- },
2520
- "xpd": {
2521
- "priority": 100,
2522
- "iso_code": "XPD",
2523
- "name": "Palladium",
2524
- "symbol": "oz t",
2525
- "disambiguate_symbol": "XPD",
2526
- "alternate_symbols": [],
2527
- "subunit": "oz",
2528
- "subunit_to_unit": 1,
2529
- "symbol_first": false,
2530
- "html_entity": "",
2531
- "decimal_mark": ".",
2532
- "thousands_separator": ",",
2533
- "iso_numeric": "964"
2534
- },
2535
- "xpf": {
2536
- "priority": 100,
2537
- "iso_code": "XPF",
2538
- "name": "Cfp Franc",
2539
- "symbol": "Fr",
2540
- "alternate_symbols": ["F"],
2541
- "subunit": "Centime",
2542
- "subunit_to_unit": 1,
2543
- "symbol_first": false,
2544
- "html_entity": "",
2545
- "decimal_mark": ".",
2546
- "thousands_separator": ",",
2547
- "iso_numeric": "953",
2548
- "smallest_denomination": 100
2549
- },
2550
- "xpt": {
2551
- "priority": 100,
2552
- "iso_code": "XPT",
2553
- "name": "Platinum",
2554
- "symbol": "oz t",
2555
- "alternate_symbols": [],
2556
- "subunit": "",
2557
- "subunit_to_unit": 1,
2558
- "symbol_first": false,
2559
- "html_entity": "",
2560
- "decimal_mark": ".",
2561
- "thousands_separator": ",",
2562
- "iso_numeric": "962",
2563
- "smallest_denomination": ""
2564
- },
2565
- "xts": {
2566
- "priority": 100,
2567
- "iso_code": "xts",
2568
- "name": "Codes specifically reserved for testing purposes",
2569
- "symbol": "",
2570
- "alternate_symbols": [],
2571
- "subunit": "",
2572
- "subunit_to_unit": 1,
2573
- "symbol_first": false,
2574
- "html_entity": "",
2575
- "decimal_mark": ".",
2576
- "thousands_separator": ",",
2577
- "iso_numeric": "963",
2578
- "smallest_denomination": ""
2579
- },
2580
- "yer": {
2581
- "priority": 100,
2582
- "iso_code": "YER",
2583
- "name": "Yemeni Rial",
2584
- "symbol": "﷼",
2585
- "alternate_symbols": [],
2586
- "subunit": "Fils",
2587
- "subunit_to_unit": 100,
2588
- "symbol_first": false,
2589
- "html_entity": "&#xFDFC;",
2590
- "decimal_mark": ".",
2591
- "thousands_separator": ",",
2592
- "iso_numeric": "886",
2593
- "smallest_denomination": 100
2594
- },
2595
- "zar": {
2596
- "priority": 100,
2597
- "iso_code": "ZAR",
2598
- "name": "South African Rand",
2599
- "symbol": "R",
2600
- "alternate_symbols": [],
2601
- "subunit": "Cent",
2602
- "subunit_to_unit": 100,
2603
- "symbol_first": true,
2604
- "html_entity": "&#x0052;",
2605
- "decimal_mark": ".",
2606
- "thousands_separator": ",",
2607
- "iso_numeric": "710",
2608
- "smallest_denomination": 10
2609
- },
2610
- "zmk": {
2611
- "priority": 100,
2612
- "iso_code": "ZMK",
2613
- "name": "Zambian Kwacha",
2614
- "symbol": "ZK",
2615
- "disambiguate_symbol": "ZMK",
2616
- "alternate_symbols": [],
2617
- "subunit": "Ngwee",
2618
- "subunit_to_unit": 100,
2619
- "symbol_first": false,
2620
- "html_entity": "",
2621
- "decimal_mark": ".",
2622
- "thousands_separator": ",",
2623
- "iso_numeric": "894",
2624
- "smallest_denomination": 5
2625
- },
2626
- "zmw": {
2627
- "priority": 100,
2628
- "iso_code": "ZMW",
2629
- "name": "Zambian Kwacha",
2630
- "symbol": "ZK",
2631
- "disambiguate_symbol": "ZMW",
2632
- "alternate_symbols": [],
2633
- "subunit": "Ngwee",
2634
- "subunit_to_unit": 100,
2635
- "symbol_first": false,
2636
- "html_entity": "",
2637
- "decimal_mark": ".",
2638
- "thousands_separator": ",",
2639
- "iso_numeric": "967",
2640
- "smallest_denomination": 5
2641
- }
2642
- }