shopify-money 0.13.1 → 0.14.4

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