money 6.2.1 → 6.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: ac9f7ef9f2355b80341c660a72036ffc10e300d9
4
- data.tar.gz: c37e6d0d4e0ce1250faa37a99ba01fec1becd4d0
3
+ metadata.gz: 3e411b812d22d33e7ed9aef7342e9aa5803d9be9
4
+ data.tar.gz: 4ec3b0a561fedf1cc30c01c5e95cf76b50a68f31
5
5
  SHA512:
6
- metadata.gz: 999227cedaba0a990918527e7176357d87c244430c9178719aaaf23ed7e7e3161b8ed4708f6e8e74f3bb5eb7cd0b96aa9ab18bff3aa7529f7ddc7bf66686db72
7
- data.tar.gz: 2161689d7cf8f000f5b6c44d850a8ce19945c40ff094783ea552e3d801511241002c309f7dfef96428a8ec34898587f06cd92206bc162d181feb7fe09962ecdc
6
+ metadata.gz: 8fe9253717cc7b378dc8e4409afac6137331707f18a23ae6a329aaae4dabe40385e373b796cfdcfdf3ca88912e74d67dac6d0ca5d090134ab65122d519923561
7
+ data.tar.gz: 3d2d4e383818b3d085da7559ba87a7043484be25f09b931d16ed48a8b82d8ca46775620297c79f7a3747db6fe54ae3ef6eafb1d5b98e95a9424460801a52a824
data/AUTHORS CHANGED
@@ -91,6 +91,7 @@ Simone Carletti
91
91
  Spencer Rinehart
92
92
  Steve Morris
93
93
  Thomas E Enebo
94
+ Thomas Weymuth
94
95
  Ticean Bennett
95
96
  Tim Hart
96
97
  Tobias Luetke
@@ -105,4 +106,4 @@ Yuusuke Takizawa
105
106
  Tien Nguyen
106
107
  Wei Zhu
107
108
  Zubin Henner
108
- Troels Knak-Nielsen
109
+ Troels Knak-Nielsen
@@ -1,5 +1,8 @@
1
1
  # Changelog
2
2
 
3
+ ## Next release
4
+ - Add method to round a given amount of money to the nearest possible value in cash (aka Swedish rounding).
5
+
3
6
  ## 6.2.1
4
7
  - Ensure set is loaded
5
8
 
@@ -236,7 +239,7 @@ Features
236
239
  - Replace separator with decimal_mark
237
240
  - Added symbol_first and html_entity
238
241
  - Added allocation algorithm for fair(ish) splitting of money between parties
239
- without loosing pennies (thanks Tobias Luetke)
242
+ without losing pennies (thanks Tobias Luetke)
240
243
 
241
244
  Bugfixes
242
245
  --------
@@ -11,7 +11,8 @@
11
11
  "html_entity": "",
12
12
  "decimal_mark": ".",
13
13
  "thousands_separator": ",",
14
- "iso_numeric": "233"
14
+ "iso_numeric": "233",
15
+ "smallest_denomination": 5
15
16
  },
16
17
  "ghc": {
17
18
  "priority": 100,
@@ -25,7 +26,8 @@
25
26
  "html_entity": "₵",
26
27
  "decimal_mark": ".",
27
28
  "thousands_separator": ",",
28
- "iso_numeric": "288"
29
+ "iso_numeric": "288",
30
+ "smallest_denomination": 1
29
31
  },
30
32
  "mtl": {
31
33
  "priority": 100,
@@ -39,7 +41,8 @@
39
41
  "html_entity": "£",
40
42
  "decimal_mark": ".",
41
43
  "thousands_separator": ",",
42
- "iso_numeric": "470"
44
+ "iso_numeric": "470",
45
+ "smallest_denomination": 1
43
46
  },
44
47
  "tmm": {
45
48
  "priority": 100,
@@ -53,7 +56,8 @@
53
56
  "html_entity": "",
54
57
  "decimal_mark": ".",
55
58
  "thousands_separator": ",",
56
- "iso_numeric": "795"
59
+ "iso_numeric": "795",
60
+ "smallest_denomination": 1
57
61
  },
58
62
  "yen": {
59
63
  "priority": 100,
@@ -67,7 +71,8 @@
67
71
  "html_entity": "¥",
68
72
  "decimal_mark": ".",
69
73
  "thousands_separator": ",",
70
- "iso_numeric": ""
74
+ "iso_numeric": "",
75
+ "smallest_denomination": 100
71
76
  },
72
77
  "zwd": {
73
78
  "priority": 100,
@@ -81,7 +86,8 @@
81
86
  "html_entity": "$",
82
87
  "decimal_mark": ".",
83
88
  "thousands_separator": ",",
84
- "iso_numeric": "716"
89
+ "iso_numeric": "716",
90
+ "smallest_denomination": 100
85
91
  },
86
92
  "zwl": {
87
93
  "priority": 100,
@@ -95,7 +101,8 @@
95
101
  "html_entity": "$",
96
102
  "decimal_mark": ".",
97
103
  "thousands_separator": ",",
98
- "iso_numeric": "932"
104
+ "iso_numeric": "932",
105
+ "smallest_denomination": 100
99
106
  },
100
107
  "zwn": {
101
108
  "priority": 100,
@@ -109,7 +116,8 @@
109
116
  "html_entity": "$",
110
117
  "decimal_mark": ".",
111
118
  "thousands_separator": ",",
112
- "iso_numeric": "942"
119
+ "iso_numeric": "942",
120
+ "smallest_denomination": 100
113
121
  },
114
122
  "zwr": {
115
123
  "priority": 100,
@@ -123,6 +131,7 @@
123
131
  "html_entity": "$",
124
132
  "decimal_mark": ".",
125
133
  "thousands_separator": ",",
126
- "iso_numeric": "935"
134
+ "iso_numeric": "935",
135
+ "smallest_denomination": 100
127
136
  }
128
137
  }
@@ -11,7 +11,8 @@
11
11
  "html_entity": "",
12
12
  "decimal_mark": ".",
13
13
  "thousands_separator": ",",
14
- "iso_numeric": "784"
14
+ "iso_numeric": "784",
15
+ "smallest_denomination": 25
15
16
  },
16
17
  "afn": {
17
18
  "priority": 100,
@@ -25,7 +26,8 @@
25
26
  "html_entity": "",
26
27
  "decimal_mark": ".",
27
28
  "thousands_separator": ",",
28
- "iso_numeric": "971"
29
+ "iso_numeric": "971",
30
+ "smallest_denomination": 100
29
31
  },
30
32
  "all": {
31
33
  "priority": 100,
@@ -39,7 +41,8 @@
39
41
  "html_entity": "",
40
42
  "decimal_mark": ".",
41
43
  "thousands_separator": ",",
42
- "iso_numeric": "008"
44
+ "iso_numeric": "008",
45
+ "smallest_denomination": 100
43
46
  },
44
47
  "amd": {
45
48
  "priority": 100,
@@ -53,7 +56,8 @@
53
56
  "html_entity": "",
54
57
  "decimal_mark": ".",
55
58
  "thousands_separator": ",",
56
- "iso_numeric": "051"
59
+ "iso_numeric": "051",
60
+ "smallest_denomination": 10
57
61
  },
58
62
  "ang": {
59
63
  "priority": 100,
@@ -67,7 +71,8 @@
67
71
  "html_entity": "ƒ",
68
72
  "decimal_mark": ",",
69
73
  "thousands_separator": ".",
70
- "iso_numeric": "532"
74
+ "iso_numeric": "532",
75
+ "smallest_denomination": 1
71
76
  },
72
77
  "aoa": {
73
78
  "priority": 100,
@@ -81,7 +86,8 @@
81
86
  "html_entity": "",
82
87
  "decimal_mark": ".",
83
88
  "thousands_separator": ",",
84
- "iso_numeric": "973"
89
+ "iso_numeric": "973",
90
+ "smallest_denomination": 10
85
91
  },
86
92
  "ars": {
87
93
  "priority": 100,
@@ -95,7 +101,8 @@
95
101
  "html_entity": "₱",
96
102
  "decimal_mark": ",",
97
103
  "thousands_separator": ".",
98
- "iso_numeric": "032"
104
+ "iso_numeric": "032",
105
+ "smallest_denomination": 1
99
106
  },
100
107
  "aud": {
101
108
  "priority": 4,
@@ -109,7 +116,8 @@
109
116
  "html_entity": "$",
110
117
  "decimal_mark": ".",
111
118
  "thousands_separator": ",",
112
- "iso_numeric": "036"
119
+ "iso_numeric": "036",
120
+ "smallest_denomination": 5
113
121
  },
114
122
  "awg": {
115
123
  "priority": 100,
@@ -123,7 +131,8 @@
123
131
  "html_entity": "ƒ",
124
132
  "decimal_mark": ".",
125
133
  "thousands_separator": ",",
126
- "iso_numeric": "533"
134
+ "iso_numeric": "533",
135
+ "smallest_denomination": 5
127
136
  },
128
137
  "azn": {
129
138
  "priority": 100,
@@ -137,7 +146,8 @@
137
146
  "html_entity": "",
138
147
  "decimal_mark": ".",
139
148
  "thousands_separator": ",",
140
- "iso_numeric": "944"
149
+ "iso_numeric": "944",
150
+ "smallest_denomination": 1
141
151
  },
142
152
  "bam": {
143
153
  "priority": 100,
@@ -151,7 +161,8 @@
151
161
  "html_entity": "",
152
162
  "decimal_mark": ".",
153
163
  "thousands_separator": ",",
154
- "iso_numeric": "977"
164
+ "iso_numeric": "977",
165
+ "smallest_denomination": 5
155
166
  },
156
167
  "bbd": {
157
168
  "priority": 100,
@@ -165,7 +176,8 @@
165
176
  "html_entity": "$",
166
177
  "decimal_mark": ".",
167
178
  "thousands_separator": ",",
168
- "iso_numeric": "052"
179
+ "iso_numeric": "052",
180
+ "smallest_denomination": 1
169
181
  },
170
182
  "bdt": {
171
183
  "priority": 100,
@@ -179,7 +191,8 @@
179
191
  "html_entity": "",
180
192
  "decimal_mark": ".",
181
193
  "thousands_separator": ",",
182
- "iso_numeric": "050"
194
+ "iso_numeric": "050",
195
+ "smallest_denomination": 1
183
196
  },
184
197
  "bgn": {
185
198
  "priority": 100,
@@ -193,7 +206,8 @@
193
206
  "html_entity": "",
194
207
  "decimal_mark": ".",
195
208
  "thousands_separator": ",",
196
- "iso_numeric": "975"
209
+ "iso_numeric": "975",
210
+ "smallest_denomination": 1
197
211
  },
198
212
  "bhd": {
199
213
  "priority": 100,
@@ -207,7 +221,8 @@
207
221
  "html_entity": "",
208
222
  "decimal_mark": ".",
209
223
  "thousands_separator": ",",
210
- "iso_numeric": "048"
224
+ "iso_numeric": "048",
225
+ "smallest_denomination": 5
211
226
  },
212
227
  "bif": {
213
228
  "priority": 100,
@@ -221,7 +236,8 @@
221
236
  "html_entity": "",
222
237
  "decimal_mark": ".",
223
238
  "thousands_separator": ",",
224
- "iso_numeric": "108"
239
+ "iso_numeric": "108",
240
+ "smallest_denomination": 100
225
241
  },
226
242
  "bmd": {
227
243
  "priority": 100,
@@ -235,7 +251,8 @@
235
251
  "html_entity": "$",
236
252
  "decimal_mark": ".",
237
253
  "thousands_separator": ",",
238
- "iso_numeric": "060"
254
+ "iso_numeric": "060",
255
+ "smallest_denomination": 1
239
256
  },
240
257
  "bnd": {
241
258
  "priority": 100,
@@ -249,7 +266,8 @@
249
266
  "html_entity": "$",
250
267
  "decimal_mark": ".",
251
268
  "thousands_separator": ",",
252
- "iso_numeric": "096"
269
+ "iso_numeric": "096",
270
+ "smallest_denomination": 1
253
271
  },
254
272
  "bob": {
255
273
  "priority": 100,
@@ -263,7 +281,8 @@
263
281
  "html_entity": "",
264
282
  "decimal_mark": ".",
265
283
  "thousands_separator": ",",
266
- "iso_numeric": "068"
284
+ "iso_numeric": "068",
285
+ "smallest_denomination": 10
267
286
  },
268
287
  "brl": {
269
288
  "priority": 100,
@@ -276,7 +295,8 @@
276
295
  "html_entity": "R$",
277
296
  "decimal_mark": ",",
278
297
  "thousands_separator": ".",
279
- "iso_numeric": "986"
298
+ "iso_numeric": "986",
299
+ "smallest_denomination": 5
280
300
  },
281
301
  "bsd": {
282
302
  "priority": 100,
@@ -290,7 +310,8 @@
290
310
  "html_entity": "$",
291
311
  "decimal_mark": ".",
292
312
  "thousands_separator": ",",
293
- "iso_numeric": "044"
313
+ "iso_numeric": "044",
314
+ "smallest_denomination": 1
294
315
  },
295
316
  "btn": {
296
317
  "priority": 100,
@@ -304,7 +325,8 @@
304
325
  "html_entity": "",
305
326
  "decimal_mark": ".",
306
327
  "thousands_separator": ",",
307
- "iso_numeric": "064"
328
+ "iso_numeric": "064",
329
+ "smallest_denomination": 5
308
330
  },
309
331
  "bwp": {
310
332
  "priority": 100,
@@ -318,7 +340,8 @@
318
340
  "html_entity": "",
319
341
  "decimal_mark": ".",
320
342
  "thousands_separator": ",",
321
- "iso_numeric": "072"
343
+ "iso_numeric": "072",
344
+ "smallest_denomination": 5
322
345
  },
323
346
  "byr": {
324
347
  "priority": 100,
@@ -332,7 +355,8 @@
332
355
  "html_entity": "",
333
356
  "decimal_mark": ".",
334
357
  "thousands_separator": ",",
335
- "iso_numeric": "974"
358
+ "iso_numeric": "974",
359
+ "smallest_denomination": 5000
336
360
  },
337
361
  "bzd": {
338
362
  "priority": 100,
@@ -346,7 +370,8 @@
346
370
  "html_entity": "$",
347
371
  "decimal_mark": ".",
348
372
  "thousands_separator": ",",
349
- "iso_numeric": "084"
373
+ "iso_numeric": "084",
374
+ "smallest_denomination": 1
350
375
  },
351
376
  "cad": {
352
377
  "priority": 5,
@@ -360,7 +385,8 @@
360
385
  "html_entity": "$",
361
386
  "decimal_mark": ".",
362
387
  "thousands_separator": ",",
363
- "iso_numeric": "124"
388
+ "iso_numeric": "124",
389
+ "smallest_denomination": 5
364
390
  },
365
391
  "cdf": {
366
392
  "priority": 100,
@@ -374,7 +400,8 @@
374
400
  "html_entity": "",
375
401
  "decimal_mark": ".",
376
402
  "thousands_separator": ",",
377
- "iso_numeric": "976"
403
+ "iso_numeric": "976",
404
+ "smallest_denomination": 1
378
405
  },
379
406
  "chf": {
380
407
  "priority": 100,
@@ -388,7 +415,8 @@
388
415
  "html_entity": "",
389
416
  "decimal_mark": ".",
390
417
  "thousands_separator": ",",
391
- "iso_numeric": "756"
418
+ "iso_numeric": "756",
419
+ "smallest_denomination": 5
392
420
  },
393
421
  "clf": {
394
422
  "priority": 100,
@@ -416,7 +444,8 @@
416
444
  "html_entity": "$",
417
445
  "decimal_mark": ",",
418
446
  "thousands_separator": ".",
419
- "iso_numeric": "152"
447
+ "iso_numeric": "152",
448
+ "smallest_denomination": 1
420
449
  },
421
450
  "cny": {
422
451
  "priority": 100,
@@ -430,7 +459,8 @@
430
459
  "html_entity": "元",
431
460
  "decimal_mark": ".",
432
461
  "thousands_separator": ",",
433
- "iso_numeric": "156"
462
+ "iso_numeric": "156",
463
+ "smallest_denomination": 1
434
464
  },
435
465
  "cop": {
436
466
  "priority": 100,
@@ -444,7 +474,8 @@
444
474
  "html_entity": "₱",
445
475
  "decimal_mark": ",",
446
476
  "thousands_separator": ".",
447
- "iso_numeric": "170"
477
+ "iso_numeric": "170",
478
+ "smallest_denomination": 20
448
479
  },
449
480
  "crc": {
450
481
  "priority": 100,
@@ -458,7 +489,8 @@
458
489
  "html_entity": "₡",
459
490
  "decimal_mark": ",",
460
491
  "thousands_separator": ".",
461
- "iso_numeric": "188"
492
+ "iso_numeric": "188",
493
+ "smallest_denomination": 500
462
494
  },
463
495
  "cuc": {
464
496
  "priority": 100,
@@ -472,7 +504,8 @@
472
504
  "html_entity": "",
473
505
  "decimal_mark": ".",
474
506
  "thousands_separator": ",",
475
- "iso_numeric": "931"
507
+ "iso_numeric": "931",
508
+ "smallest_denomination": 1
476
509
  },
477
510
  "cup": {
478
511
  "priority": 100,
@@ -486,7 +519,8 @@
486
519
  "html_entity": "₱",
487
520
  "decimal_mark": ".",
488
521
  "thousands_separator": ",",
489
- "iso_numeric": "192"
522
+ "iso_numeric": "192",
523
+ "smallest_denomination": 1
490
524
  },
491
525
  "cve": {
492
526
  "priority": 100,
@@ -500,7 +534,8 @@
500
534
  "html_entity": "",
501
535
  "decimal_mark": ".",
502
536
  "thousands_separator": ",",
503
- "iso_numeric": "132"
537
+ "iso_numeric": "132",
538
+ "smallest_denomination": 100
504
539
  },
505
540
  "czk": {
506
541
  "priority": 100,
@@ -514,7 +549,8 @@
514
549
  "html_entity": "",
515
550
  "decimal_mark": ",",
516
551
  "thousands_separator": ".",
517
- "iso_numeric": "203"
552
+ "iso_numeric": "203",
553
+ "smallest_denomination": 100
518
554
  },
519
555
  "djf": {
520
556
  "priority": 100,
@@ -528,7 +564,8 @@
528
564
  "html_entity": "",
529
565
  "decimal_mark": ".",
530
566
  "thousands_separator": ",",
531
- "iso_numeric": "262"
567
+ "iso_numeric": "262",
568
+ "smallest_denomination": 100
532
569
  },
533
570
  "dkk": {
534
571
  "priority": 100,
@@ -542,7 +579,8 @@
542
579
  "html_entity": "",
543
580
  "decimal_mark": ",",
544
581
  "thousands_separator": ".",
545
- "iso_numeric": "208"
582
+ "iso_numeric": "208",
583
+ "smallest_denomination": 50
546
584
  },
547
585
  "dop": {
548
586
  "priority": 100,
@@ -556,7 +594,8 @@
556
594
  "html_entity": "₱",
557
595
  "decimal_mark": ".",
558
596
  "thousands_separator": ",",
559
- "iso_numeric": "214"
597
+ "iso_numeric": "214",
598
+ "smallest_denomination": 100
560
599
  },
561
600
  "dzd": {
562
601
  "priority": 100,
@@ -570,7 +609,8 @@
570
609
  "html_entity": "",
571
610
  "decimal_mark": ".",
572
611
  "thousands_separator": ",",
573
- "iso_numeric": "012"
612
+ "iso_numeric": "012",
613
+ "smallest_denomination": 100
574
614
  },
575
615
  "egp": {
576
616
  "priority": 100,
@@ -584,7 +624,8 @@
584
624
  "html_entity": "£",
585
625
  "decimal_mark": ".",
586
626
  "thousands_separator": ",",
587
- "iso_numeric": "818"
627
+ "iso_numeric": "818",
628
+ "smallest_denomination": 25
588
629
  },
589
630
  "ern": {
590
631
  "priority": 100,
@@ -598,7 +639,8 @@
598
639
  "html_entity": "",
599
640
  "decimal_mark": ".",
600
641
  "thousands_separator": ",",
601
- "iso_numeric": "232"
642
+ "iso_numeric": "232",
643
+ "smallest_denomination": 1
602
644
  },
603
645
  "etb": {
604
646
  "priority": 100,
@@ -612,7 +654,8 @@
612
654
  "html_entity": "",
613
655
  "decimal_mark": ".",
614
656
  "thousands_separator": ",",
615
- "iso_numeric": "230"
657
+ "iso_numeric": "230",
658
+ "smallest_denomination": 1
616
659
  },
617
660
  "eur": {
618
661
  "priority": 2,
@@ -626,7 +669,8 @@
626
669
  "html_entity": "€",
627
670
  "decimal_mark": ",",
628
671
  "thousands_separator": ".",
629
- "iso_numeric": "978"
672
+ "iso_numeric": "978",
673
+ "smallest_denomination": 1
630
674
  },
631
675
  "fjd": {
632
676
  "priority": 100,
@@ -640,7 +684,8 @@
640
684
  "html_entity": "$",
641
685
  "decimal_mark": ".",
642
686
  "thousands_separator": ",",
643
- "iso_numeric": "242"
687
+ "iso_numeric": "242",
688
+ "smallest_denomination": 5
644
689
  },
645
690
  "fkp": {
646
691
  "priority": 100,
@@ -654,7 +699,8 @@
654
699
  "html_entity": "£",
655
700
  "decimal_mark": ".",
656
701
  "thousands_separator": ",",
657
- "iso_numeric": "238"
702
+ "iso_numeric": "238",
703
+ "smallest_denomination": 1
658
704
  },
659
705
  "gbp": {
660
706
  "priority": 3,
@@ -668,7 +714,8 @@
668
714
  "html_entity": "£",
669
715
  "decimal_mark": ".",
670
716
  "thousands_separator": ",",
671
- "iso_numeric": "826"
717
+ "iso_numeric": "826",
718
+ "smallest_denomination": 1
672
719
  },
673
720
  "gel": {
674
721
  "priority": 100,
@@ -682,7 +729,8 @@
682
729
  "html_entity": "",
683
730
  "decimal_mark": ".",
684
731
  "thousands_separator": ",",
685
- "iso_numeric": "981"
732
+ "iso_numeric": "981",
733
+ "smallest_denomination": 1
686
734
  },
687
735
  "ghs": {
688
736
  "priority": 100,
@@ -696,7 +744,8 @@
696
744
  "html_entity": "₵",
697
745
  "decimal_mark": ".",
698
746
  "thousands_separator": ",",
699
- "iso_numeric": "936"
747
+ "iso_numeric": "936",
748
+ "smallest_denomination": 1
700
749
  },
701
750
  "gip": {
702
751
  "priority": 100,
@@ -710,7 +759,8 @@
710
759
  "html_entity": "£",
711
760
  "decimal_mark": ".",
712
761
  "thousands_separator": ",",
713
- "iso_numeric": "292"
762
+ "iso_numeric": "292",
763
+ "smallest_denomination": 1
714
764
  },
715
765
  "gmd": {
716
766
  "priority": 100,
@@ -724,7 +774,8 @@
724
774
  "html_entity": "",
725
775
  "decimal_mark": ".",
726
776
  "thousands_separator": ",",
727
- "iso_numeric": "270"
777
+ "iso_numeric": "270",
778
+ "smallest_denomination": 1
728
779
  },
729
780
  "gnf": {
730
781
  "priority": 100,
@@ -738,7 +789,8 @@
738
789
  "html_entity": "",
739
790
  "decimal_mark": ".",
740
791
  "thousands_separator": ",",
741
- "iso_numeric": "324"
792
+ "iso_numeric": "324",
793
+ "smallest_denomination": 100
742
794
  },
743
795
  "gtq": {
744
796
  "priority": 100,
@@ -752,7 +804,8 @@
752
804
  "html_entity": "",
753
805
  "decimal_mark": ".",
754
806
  "thousands_separator": ",",
755
- "iso_numeric": "320"
807
+ "iso_numeric": "320",
808
+ "smallest_denomination": 1
756
809
  },
757
810
  "gyd": {
758
811
  "priority": 100,
@@ -766,7 +819,8 @@
766
819
  "html_entity": "$",
767
820
  "decimal_mark": ".",
768
821
  "thousands_separator": ",",
769
- "iso_numeric": "328"
822
+ "iso_numeric": "328",
823
+ "smallest_denomination": 100
770
824
  },
771
825
  "hkd": {
772
826
  "priority": 100,
@@ -780,7 +834,8 @@
780
834
  "html_entity": "$",
781
835
  "decimal_mark": ".",
782
836
  "thousands_separator": ",",
783
- "iso_numeric": "344"
837
+ "iso_numeric": "344",
838
+ "smallest_denomination": 10
784
839
  },
785
840
  "hnl": {
786
841
  "priority": 100,
@@ -794,7 +849,8 @@
794
849
  "html_entity": "",
795
850
  "decimal_mark": ".",
796
851
  "thousands_separator": ",",
797
- "iso_numeric": "340"
852
+ "iso_numeric": "340",
853
+ "smallest_denomination": 5
798
854
  },
799
855
  "hrk": {
800
856
  "priority": 100,
@@ -808,7 +864,8 @@
808
864
  "html_entity": "",
809
865
  "decimal_mark": ",",
810
866
  "thousands_separator": ".",
811
- "iso_numeric": "191"
867
+ "iso_numeric": "191",
868
+ "smallest_denomination": 1
812
869
  },
813
870
  "htg": {
814
871
  "priority": 100,
@@ -822,7 +879,8 @@
822
879
  "html_entity": "",
823
880
  "decimal_mark": ".",
824
881
  "thousands_separator": ",",
825
- "iso_numeric": "332"
882
+ "iso_numeric": "332",
883
+ "smallest_denomination": 5
826
884
  },
827
885
  "huf": {
828
886
  "priority": 100,
@@ -836,7 +894,8 @@
836
894
  "html_entity": "",
837
895
  "decimal_mark": ",",
838
896
  "thousands_separator": ".",
839
- "iso_numeric": "348"
897
+ "iso_numeric": "348",
898
+ "smallest_denomination": 500
840
899
  },
841
900
  "idr": {
842
901
  "priority": 100,
@@ -850,7 +909,8 @@
850
909
  "html_entity": "",
851
910
  "decimal_mark": ",",
852
911
  "thousands_separator": ".",
853
- "iso_numeric": "360"
912
+ "iso_numeric": "360",
913
+ "smallest_denomination": 5000
854
914
  },
855
915
  "ils": {
856
916
  "priority": 100,
@@ -864,7 +924,8 @@
864
924
  "html_entity": "₪",
865
925
  "decimal_mark": ".",
866
926
  "thousands_separator": ",",
867
- "iso_numeric": "376"
927
+ "iso_numeric": "376",
928
+ "smallest_denomination": 10
868
929
  },
869
930
  "inr": {
870
931
  "priority": 100,
@@ -878,7 +939,8 @@
878
939
  "html_entity": "₹",
879
940
  "decimal_mark": ".",
880
941
  "thousands_separator": ",",
881
- "iso_numeric": "356"
942
+ "iso_numeric": "356",
943
+ "smallest_denomination": 50
882
944
  },
883
945
  "iqd": {
884
946
  "priority": 100,
@@ -892,7 +954,8 @@
892
954
  "html_entity": "",
893
955
  "decimal_mark": ".",
894
956
  "thousands_separator": ",",
895
- "iso_numeric": "368"
957
+ "iso_numeric": "368",
958
+ "smallest_denomination": 50000
896
959
  },
897
960
  "irr": {
898
961
  "priority": 100,
@@ -906,7 +969,8 @@
906
969
  "html_entity": "﷼",
907
970
  "decimal_mark": ".",
908
971
  "thousands_separator": ",",
909
- "iso_numeric": "364"
972
+ "iso_numeric": "364",
973
+ "smallest_denomination": 5000
910
974
  },
911
975
  "isk": {
912
976
  "priority": 100,
@@ -920,7 +984,8 @@
920
984
  "html_entity": "",
921
985
  "decimal_mark": ",",
922
986
  "thousands_separator": ".",
923
- "iso_numeric": "352"
987
+ "iso_numeric": "352",
988
+ "smallest_denomination": 100
924
989
  },
925
990
  "jmd": {
926
991
  "priority": 100,
@@ -934,7 +999,8 @@
934
999
  "html_entity": "$",
935
1000
  "decimal_mark": ".",
936
1001
  "thousands_separator": ",",
937
- "iso_numeric": "388"
1002
+ "iso_numeric": "388",
1003
+ "smallest_denomination": 1
938
1004
  },
939
1005
  "jod": {
940
1006
  "priority": 100,
@@ -948,7 +1014,8 @@
948
1014
  "html_entity": "",
949
1015
  "decimal_mark": ".",
950
1016
  "thousands_separator": ",",
951
- "iso_numeric": "400"
1017
+ "iso_numeric": "400",
1018
+ "smallest_denomination": 0.5
952
1019
  },
953
1020
  "jpy": {
954
1021
  "priority": 6,
@@ -962,7 +1029,8 @@
962
1029
  "html_entity": "¥",
963
1030
  "decimal_mark": ".",
964
1031
  "thousands_separator": ",",
965
- "iso_numeric": "392"
1032
+ "iso_numeric": "392",
1033
+ "smallest_denomination": 1
966
1034
  },
967
1035
  "kes": {
968
1036
  "priority": 100,
@@ -976,7 +1044,8 @@
976
1044
  "html_entity": "",
977
1045
  "decimal_mark": ".",
978
1046
  "thousands_separator": ",",
979
- "iso_numeric": "404"
1047
+ "iso_numeric": "404",
1048
+ "smallest_denomination": 50
980
1049
  },
981
1050
  "kgs": {
982
1051
  "priority": 100,
@@ -990,7 +1059,8 @@
990
1059
  "html_entity": "",
991
1060
  "decimal_mark": ".",
992
1061
  "thousands_separator": ",",
993
- "iso_numeric": "417"
1062
+ "iso_numeric": "417",
1063
+ "smallest_denomination": 1
994
1064
  },
995
1065
  "khr": {
996
1066
  "priority": 100,
@@ -1004,7 +1074,8 @@
1004
1074
  "html_entity": "៛",
1005
1075
  "decimal_mark": ".",
1006
1076
  "thousands_separator": ",",
1007
- "iso_numeric": "116"
1077
+ "iso_numeric": "116",
1078
+ "smallest_denomination": 5000
1008
1079
  },
1009
1080
  "kmf": {
1010
1081
  "priority": 100,
@@ -1018,7 +1089,8 @@
1018
1089
  "html_entity": "",
1019
1090
  "decimal_mark": ".",
1020
1091
  "thousands_separator": ",",
1021
- "iso_numeric": "174"
1092
+ "iso_numeric": "174",
1093
+ "smallest_denomination": 100
1022
1094
  },
1023
1095
  "kpw": {
1024
1096
  "priority": 100,
@@ -1032,7 +1104,8 @@
1032
1104
  "html_entity": "₩",
1033
1105
  "decimal_mark": ".",
1034
1106
  "thousands_separator": ",",
1035
- "iso_numeric": "408"
1107
+ "iso_numeric": "408",
1108
+ "smallest_denomination": 1
1036
1109
  },
1037
1110
  "krw": {
1038
1111
  "priority": 100,
@@ -1046,7 +1119,8 @@
1046
1119
  "html_entity": "₩",
1047
1120
  "decimal_mark": ".",
1048
1121
  "thousands_separator": ",",
1049
- "iso_numeric": "410"
1122
+ "iso_numeric": "410",
1123
+ "smallest_denomination": 1
1050
1124
  },
1051
1125
  "kwd": {
1052
1126
  "priority": 100,
@@ -1060,7 +1134,8 @@
1060
1134
  "html_entity": "",
1061
1135
  "decimal_mark": ".",
1062
1136
  "thousands_separator": ",",
1063
- "iso_numeric": "414"
1137
+ "iso_numeric": "414",
1138
+ "smallest_denomination": 5
1064
1139
  },
1065
1140
  "kyd": {
1066
1141
  "priority": 100,
@@ -1074,7 +1149,8 @@
1074
1149
  "html_entity": "$",
1075
1150
  "decimal_mark": ".",
1076
1151
  "thousands_separator": ",",
1077
- "iso_numeric": "136"
1152
+ "iso_numeric": "136",
1153
+ "smallest_denomination": 1
1078
1154
  },
1079
1155
  "kzt": {
1080
1156
  "priority": 100,
@@ -1088,7 +1164,8 @@
1088
1164
  "html_entity": "",
1089
1165
  "decimal_mark": ".",
1090
1166
  "thousands_separator": ",",
1091
- "iso_numeric": "398"
1167
+ "iso_numeric": "398",
1168
+ "smallest_denomination": 100
1092
1169
  },
1093
1170
  "lak": {
1094
1171
  "priority": 100,
@@ -1102,7 +1179,8 @@
1102
1179
  "html_entity": "₭",
1103
1180
  "decimal_mark": ".",
1104
1181
  "thousands_separator": ",",
1105
- "iso_numeric": "418"
1182
+ "iso_numeric": "418",
1183
+ "smallest_denomination": 10
1106
1184
  },
1107
1185
  "lbp": {
1108
1186
  "priority": 100,
@@ -1116,7 +1194,8 @@
1116
1194
  "html_entity": "£",
1117
1195
  "decimal_mark": ".",
1118
1196
  "thousands_separator": ",",
1119
- "iso_numeric": "422"
1197
+ "iso_numeric": "422",
1198
+ "smallest_denomination": 25000
1120
1199
  },
1121
1200
  "lkr": {
1122
1201
  "priority": 100,
@@ -1130,7 +1209,8 @@
1130
1209
  "html_entity": "௹",
1131
1210
  "decimal_mark": ".",
1132
1211
  "thousands_separator": ",",
1133
- "iso_numeric": "144"
1212
+ "iso_numeric": "144",
1213
+ "smallest_denomination": 100
1134
1214
  },
1135
1215
  "lrd": {
1136
1216
  "priority": 100,
@@ -1144,7 +1224,8 @@
1144
1224
  "html_entity": "$",
1145
1225
  "decimal_mark": ".",
1146
1226
  "thousands_separator": ",",
1147
- "iso_numeric": "430"
1227
+ "iso_numeric": "430",
1228
+ "smallest_denomination": 5
1148
1229
  },
1149
1230
  "lsl": {
1150
1231
  "priority": 100,
@@ -1158,7 +1239,8 @@
1158
1239
  "html_entity": "",
1159
1240
  "decimal_mark": ".",
1160
1241
  "thousands_separator": ",",
1161
- "iso_numeric": "426"
1242
+ "iso_numeric": "426",
1243
+ "smallest_denomination": 1
1162
1244
  },
1163
1245
  "ltl": {
1164
1246
  "priority": 100,
@@ -1172,7 +1254,8 @@
1172
1254
  "html_entity": "",
1173
1255
  "decimal_mark": ".",
1174
1256
  "thousands_separator": ",",
1175
- "iso_numeric": "440"
1257
+ "iso_numeric": "440",
1258
+ "smallest_denomination": 1
1176
1259
  },
1177
1260
  "lvl": {
1178
1261
  "priority": 100,
@@ -1186,7 +1269,8 @@
1186
1269
  "html_entity": "",
1187
1270
  "decimal_mark": ".",
1188
1271
  "thousands_separator": ",",
1189
- "iso_numeric": "428"
1272
+ "iso_numeric": "428",
1273
+ "smallest_denomination": 1
1190
1274
  },
1191
1275
  "lyd": {
1192
1276
  "priority": 100,
@@ -1200,7 +1284,8 @@
1200
1284
  "html_entity": "",
1201
1285
  "decimal_mark": ".",
1202
1286
  "thousands_separator": ",",
1203
- "iso_numeric": "434"
1287
+ "iso_numeric": "434",
1288
+ "smallest_denomination": 50
1204
1289
  },
1205
1290
  "mad": {
1206
1291
  "priority": 100,
@@ -1214,7 +1299,8 @@
1214
1299
  "html_entity": "",
1215
1300
  "decimal_mark": ".",
1216
1301
  "thousands_separator": ",",
1217
- "iso_numeric": "504"
1302
+ "iso_numeric": "504",
1303
+ "smallest_denomination": 1
1218
1304
  },
1219
1305
  "mdl": {
1220
1306
  "priority": 100,
@@ -1228,7 +1314,8 @@
1228
1314
  "html_entity": "",
1229
1315
  "decimal_mark": ".",
1230
1316
  "thousands_separator": ",",
1231
- "iso_numeric": "498"
1317
+ "iso_numeric": "498",
1318
+ "smallest_denomination": 1
1232
1319
  },
1233
1320
  "mga": {
1234
1321
  "priority": 100,
@@ -1242,7 +1329,8 @@
1242
1329
  "html_entity": "",
1243
1330
  "decimal_mark": ".",
1244
1331
  "thousands_separator": ",",
1245
- "iso_numeric": "969"
1332
+ "iso_numeric": "969",
1333
+ "smallest_denomination": 1
1246
1334
  },
1247
1335
  "mkd": {
1248
1336
  "priority": 100,
@@ -1256,7 +1344,8 @@
1256
1344
  "html_entity": "",
1257
1345
  "decimal_mark": ".",
1258
1346
  "thousands_separator": ",",
1259
- "iso_numeric": "807"
1347
+ "iso_numeric": "807",
1348
+ "smallest_denomination": 100
1260
1349
  },
1261
1350
  "mmk": {
1262
1351
  "priority": 100,
@@ -1270,7 +1359,8 @@
1270
1359
  "html_entity": "",
1271
1360
  "decimal_mark": ".",
1272
1361
  "thousands_separator": ",",
1273
- "iso_numeric": "104"
1362
+ "iso_numeric": "104",
1363
+ "smallest_denomination": 50
1274
1364
  },
1275
1365
  "mnt": {
1276
1366
  "priority": 100,
@@ -1284,7 +1374,8 @@
1284
1374
  "html_entity": "₮",
1285
1375
  "decimal_mark": ".",
1286
1376
  "thousands_separator": ",",
1287
- "iso_numeric": "496"
1377
+ "iso_numeric": "496",
1378
+ "smallest_denomination": 2000
1288
1379
  },
1289
1380
  "mop": {
1290
1381
  "priority": 100,
@@ -1298,7 +1389,8 @@
1298
1389
  "html_entity": "",
1299
1390
  "decimal_mark": ".",
1300
1391
  "thousands_separator": ",",
1301
- "iso_numeric": "446"
1392
+ "iso_numeric": "446",
1393
+ "smallest_denomination": 10
1302
1394
  },
1303
1395
  "mro": {
1304
1396
  "priority": 100,
@@ -1312,7 +1404,8 @@
1312
1404
  "html_entity": "",
1313
1405
  "decimal_mark": ".",
1314
1406
  "thousands_separator": ",",
1315
- "iso_numeric": "478"
1407
+ "iso_numeric": "478",
1408
+ "smallest_denomination": 1
1316
1409
  },
1317
1410
  "mur": {
1318
1411
  "priority": 100,
@@ -1326,7 +1419,8 @@
1326
1419
  "html_entity": "₨",
1327
1420
  "decimal_mark": ".",
1328
1421
  "thousands_separator": ",",
1329
- "iso_numeric": "480"
1422
+ "iso_numeric": "480",
1423
+ "smallest_denomination": 100
1330
1424
  },
1331
1425
  "mvr": {
1332
1426
  "priority": 100,
@@ -1340,7 +1434,8 @@
1340
1434
  "html_entity": "",
1341
1435
  "decimal_mark": ".",
1342
1436
  "thousands_separator": ",",
1343
- "iso_numeric": "462"
1437
+ "iso_numeric": "462",
1438
+ "smallest_denomination": 1
1344
1439
  },
1345
1440
  "mwk": {
1346
1441
  "priority": 100,
@@ -1354,7 +1449,8 @@
1354
1449
  "html_entity": "",
1355
1450
  "decimal_mark": ".",
1356
1451
  "thousands_separator": ",",
1357
- "iso_numeric": "454"
1452
+ "iso_numeric": "454",
1453
+ "smallest_denomination": 1
1358
1454
  },
1359
1455
  "mxn": {
1360
1456
  "priority": 100,
@@ -1368,7 +1464,8 @@
1368
1464
  "html_entity": "$",
1369
1465
  "decimal_mark": ".",
1370
1466
  "thousands_separator": ",",
1371
- "iso_numeric": "484"
1467
+ "iso_numeric": "484",
1468
+ "smallest_denomination": 5
1372
1469
  },
1373
1470
  "myr": {
1374
1471
  "priority": 100,
@@ -1382,7 +1479,8 @@
1382
1479
  "html_entity": "",
1383
1480
  "decimal_mark": ".",
1384
1481
  "thousands_separator": ",",
1385
- "iso_numeric": "458"
1482
+ "iso_numeric": "458",
1483
+ "smallest_denomination": 5
1386
1484
  },
1387
1485
  "mzn": {
1388
1486
  "priority": 100,
@@ -1396,7 +1494,8 @@
1396
1494
  "html_entity": "",
1397
1495
  "decimal_mark": ",",
1398
1496
  "thousands_separator": ".",
1399
- "iso_numeric": "943"
1497
+ "iso_numeric": "943",
1498
+ "smallest_denomination": 1
1400
1499
  },
1401
1500
  "nad": {
1402
1501
  "priority": 100,
@@ -1410,7 +1509,8 @@
1410
1509
  "html_entity": "$",
1411
1510
  "decimal_mark": ".",
1412
1511
  "thousands_separator": ",",
1413
- "iso_numeric": "516"
1512
+ "iso_numeric": "516",
1513
+ "smallest_denomination": 5
1414
1514
  },
1415
1515
  "ngn": {
1416
1516
  "priority": 100,
@@ -1424,7 +1524,8 @@
1424
1524
  "html_entity": "₦",
1425
1525
  "decimal_mark": ".",
1426
1526
  "thousands_separator": ",",
1427
- "iso_numeric": "566"
1527
+ "iso_numeric": "566",
1528
+ "smallest_denomination": 50
1428
1529
  },
1429
1530
  "nio": {
1430
1531
  "priority": 100,
@@ -1438,7 +1539,8 @@
1438
1539
  "html_entity": "",
1439
1540
  "decimal_mark": ".",
1440
1541
  "thousands_separator": ",",
1441
- "iso_numeric": "558"
1542
+ "iso_numeric": "558",
1543
+ "smallest_denomination": 5
1442
1544
  },
1443
1545
  "nok": {
1444
1546
  "priority": 100,
@@ -1452,7 +1554,8 @@
1452
1554
  "html_entity": "kr",
1453
1555
  "decimal_mark": ",",
1454
1556
  "thousands_separator": ".",
1455
- "iso_numeric": "578"
1557
+ "iso_numeric": "578",
1558
+ "smallest_denomination": 100
1456
1559
  },
1457
1560
  "npr": {
1458
1561
  "priority": 100,
@@ -1466,7 +1569,8 @@
1466
1569
  "html_entity": "₨",
1467
1570
  "decimal_mark": ".",
1468
1571
  "thousands_separator": ",",
1469
- "iso_numeric": "524"
1572
+ "iso_numeric": "524",
1573
+ "smallest_denomination": 1
1470
1574
  },
1471
1575
  "nzd": {
1472
1576
  "priority": 100,
@@ -1480,7 +1584,8 @@
1480
1584
  "html_entity": "$",
1481
1585
  "decimal_mark": ".",
1482
1586
  "thousands_separator": ",",
1483
- "iso_numeric": "554"
1587
+ "iso_numeric": "554",
1588
+ "smallest_denomination": 10
1484
1589
  },
1485
1590
  "omr": {
1486
1591
  "priority": 100,
@@ -1494,7 +1599,8 @@
1494
1599
  "html_entity": "﷼",
1495
1600
  "decimal_mark": ".",
1496
1601
  "thousands_separator": ",",
1497
- "iso_numeric": "512"
1602
+ "iso_numeric": "512",
1603
+ "smallest_denomination": 5
1498
1604
  },
1499
1605
  "pab": {
1500
1606
  "priority": 100,
@@ -1508,7 +1614,8 @@
1508
1614
  "html_entity": "",
1509
1615
  "decimal_mark": ".",
1510
1616
  "thousands_separator": ",",
1511
- "iso_numeric": "590"
1617
+ "iso_numeric": "590",
1618
+ "smallest_denomination": 1
1512
1619
  },
1513
1620
  "pen": {
1514
1621
  "priority": 100,
@@ -1522,7 +1629,8 @@
1522
1629
  "html_entity": "S/.",
1523
1630
  "decimal_mark": ".",
1524
1631
  "thousands_separator": ",",
1525
- "iso_numeric": "604"
1632
+ "iso_numeric": "604",
1633
+ "smallest_denomination": 1
1526
1634
  },
1527
1635
  "pgk": {
1528
1636
  "priority": 100,
@@ -1536,7 +1644,8 @@
1536
1644
  "html_entity": "",
1537
1645
  "decimal_mark": ".",
1538
1646
  "thousands_separator": ",",
1539
- "iso_numeric": "598"
1647
+ "iso_numeric": "598",
1648
+ "smallest_denomination": 5
1540
1649
  },
1541
1650
  "php": {
1542
1651
  "priority": 100,
@@ -1550,7 +1659,8 @@
1550
1659
  "html_entity": "₱",
1551
1660
  "decimal_mark": ".",
1552
1661
  "thousands_separator": ",",
1553
- "iso_numeric": "608"
1662
+ "iso_numeric": "608",
1663
+ "smallest_denomination": 1
1554
1664
  },
1555
1665
  "pkr": {
1556
1666
  "priority": 100,
@@ -1564,7 +1674,8 @@
1564
1674
  "html_entity": "₨",
1565
1675
  "decimal_mark": ".",
1566
1676
  "thousands_separator": ",",
1567
- "iso_numeric": "586"
1677
+ "iso_numeric": "586",
1678
+ "smallest_denomination": 100
1568
1679
  },
1569
1680
  "pln": {
1570
1681
  "priority": 100,
@@ -1578,7 +1689,8 @@
1578
1689
  "html_entity": "zł",
1579
1690
  "decimal_mark": ",",
1580
1691
  "thousands_separator": " ",
1581
- "iso_numeric": "985"
1692
+ "iso_numeric": "985",
1693
+ "smallest_denomination": 1
1582
1694
  },
1583
1695
  "pyg": {
1584
1696
  "priority": 100,
@@ -1592,7 +1704,8 @@
1592
1704
  "html_entity": "₲",
1593
1705
  "decimal_mark": ".",
1594
1706
  "thousands_separator": ",",
1595
- "iso_numeric": "600"
1707
+ "iso_numeric": "600",
1708
+ "smallest_denomination": 5000
1596
1709
  },
1597
1710
  "qar": {
1598
1711
  "priority": 100,
@@ -1606,7 +1719,8 @@
1606
1719
  "html_entity": "﷼",
1607
1720
  "decimal_mark": ".",
1608
1721
  "thousands_separator": ",",
1609
- "iso_numeric": "634"
1722
+ "iso_numeric": "634",
1723
+ "smallest_denomination": 1
1610
1724
  },
1611
1725
  "ron": {
1612
1726
  "priority": 100,
@@ -1620,7 +1734,8 @@
1620
1734
  "html_entity": "",
1621
1735
  "decimal_mark": ",",
1622
1736
  "thousands_separator": ".",
1623
- "iso_numeric": "946"
1737
+ "iso_numeric": "946",
1738
+ "smallest_denomination": 1
1624
1739
  },
1625
1740
  "rsd": {
1626
1741
  "priority": 100,
@@ -1634,7 +1749,8 @@
1634
1749
  "html_entity": "",
1635
1750
  "decimal_mark": ".",
1636
1751
  "thousands_separator": ",",
1637
- "iso_numeric": "941"
1752
+ "iso_numeric": "941",
1753
+ "smallest_denomination": 100
1638
1754
  },
1639
1755
  "rub": {
1640
1756
  "priority": 100,
@@ -1648,7 +1764,8 @@
1648
1764
  "html_entity": "руб",
1649
1765
  "decimal_mark": ",",
1650
1766
  "thousands_separator": ".",
1651
- "iso_numeric": "643"
1767
+ "iso_numeric": "643",
1768
+ "smallest_denomination": 1
1652
1769
  },
1653
1770
  "rwf": {
1654
1771
  "priority": 100,
@@ -1662,7 +1779,8 @@
1662
1779
  "html_entity": "",
1663
1780
  "decimal_mark": ".",
1664
1781
  "thousands_separator": ",",
1665
- "iso_numeric": "646"
1782
+ "iso_numeric": "646",
1783
+ "smallest_denomination": 100
1666
1784
  },
1667
1785
  "sar": {
1668
1786
  "priority": 100,
@@ -1676,7 +1794,8 @@
1676
1794
  "html_entity": "﷼",
1677
1795
  "decimal_mark": ".",
1678
1796
  "thousands_separator": ",",
1679
- "iso_numeric": "682"
1797
+ "iso_numeric": "682",
1798
+ "smallest_denomination": 5
1680
1799
  },
1681
1800
  "sbd": {
1682
1801
  "priority": 100,
@@ -1690,7 +1809,8 @@
1690
1809
  "html_entity": "$",
1691
1810
  "decimal_mark": ".",
1692
1811
  "thousands_separator": ",",
1693
- "iso_numeric": "090"
1812
+ "iso_numeric": "090",
1813
+ "smallest_denomination": 10
1694
1814
  },
1695
1815
  "scr": {
1696
1816
  "priority": 100,
@@ -1704,7 +1824,8 @@
1704
1824
  "html_entity": "₨",
1705
1825
  "decimal_mark": ".",
1706
1826
  "thousands_separator": ",",
1707
- "iso_numeric": "690"
1827
+ "iso_numeric": "690",
1828
+ "smallest_denomination": 1
1708
1829
  },
1709
1830
  "sdg": {
1710
1831
  "priority": 100,
@@ -1718,7 +1839,8 @@
1718
1839
  "html_entity": "",
1719
1840
  "decimal_mark": ".",
1720
1841
  "thousands_separator": ",",
1721
- "iso_numeric": "938"
1842
+ "iso_numeric": "938",
1843
+ "smallest_denomination": 1
1722
1844
  },
1723
1845
  "sek": {
1724
1846
  "priority": 100,
@@ -1732,7 +1854,8 @@
1732
1854
  "html_entity": "",
1733
1855
  "decimal_mark": ",",
1734
1856
  "thousands_separator": " ",
1735
- "iso_numeric": "752"
1857
+ "iso_numeric": "752",
1858
+ "smallest_denomination": 100
1736
1859
  },
1737
1860
  "sgd": {
1738
1861
  "priority": 100,
@@ -1746,7 +1869,8 @@
1746
1869
  "html_entity": "$",
1747
1870
  "decimal_mark": ".",
1748
1871
  "thousands_separator": ",",
1749
- "iso_numeric": "702"
1872
+ "iso_numeric": "702",
1873
+ "smallest_denomination": 1
1750
1874
  },
1751
1875
  "shp": {
1752
1876
  "priority": 100,
@@ -1760,7 +1884,8 @@
1760
1884
  "html_entity": "£",
1761
1885
  "decimal_mark": ".",
1762
1886
  "thousands_separator": ",",
1763
- "iso_numeric": "654"
1887
+ "iso_numeric": "654",
1888
+ "smallest_denomination": 1
1764
1889
  },
1765
1890
  "skk": {
1766
1891
  "priority": 100,
@@ -1774,7 +1899,8 @@
1774
1899
  "html_entity": "",
1775
1900
  "decimal_mark": ".",
1776
1901
  "thousands_separator": ",",
1777
- "iso_numeric": "703"
1902
+ "iso_numeric": "703",
1903
+ "smallest_denomination": 50
1778
1904
  },
1779
1905
  "sll": {
1780
1906
  "priority": 100,
@@ -1788,7 +1914,8 @@
1788
1914
  "html_entity": "",
1789
1915
  "decimal_mark": ".",
1790
1916
  "thousands_separator": ",",
1791
- "iso_numeric": "694"
1917
+ "iso_numeric": "694",
1918
+ "smallest_denomination": 1000
1792
1919
  },
1793
1920
  "sos": {
1794
1921
  "priority": 100,
@@ -1802,7 +1929,8 @@
1802
1929
  "html_entity": "",
1803
1930
  "decimal_mark": ".",
1804
1931
  "thousands_separator": ",",
1805
- "iso_numeric": "706"
1932
+ "iso_numeric": "706",
1933
+ "smallest_denomination": 1
1806
1934
  },
1807
1935
  "srd": {
1808
1936
  "priority": 100,
@@ -1816,7 +1944,8 @@
1816
1944
  "html_entity": "",
1817
1945
  "decimal_mark": ".",
1818
1946
  "thousands_separator": ",",
1819
- "iso_numeric": "968"
1947
+ "iso_numeric": "968",
1948
+ "smallest_denomination": 1
1820
1949
  },
1821
1950
  "ssp": {
1822
1951
  "priority": 100,
@@ -1830,7 +1959,8 @@
1830
1959
  "html_entity": "£",
1831
1960
  "decimal_mark": ".",
1832
1961
  "thousands_separator": ",",
1833
- "iso_numeric": "728"
1962
+ "iso_numeric": "728",
1963
+ "smallest_denomination": 5
1834
1964
  },
1835
1965
  "std": {
1836
1966
  "priority": 100,
@@ -1844,7 +1974,8 @@
1844
1974
  "html_entity": "",
1845
1975
  "decimal_mark": ".",
1846
1976
  "thousands_separator": ",",
1847
- "iso_numeric": "678"
1977
+ "iso_numeric": "678",
1978
+ "smallest_denomination": 10000
1848
1979
  },
1849
1980
  "svc": {
1850
1981
  "priority": 100,
@@ -1858,7 +1989,8 @@
1858
1989
  "html_entity": "₡",
1859
1990
  "decimal_mark": ".",
1860
1991
  "thousands_separator": ",",
1861
- "iso_numeric": "222"
1992
+ "iso_numeric": "222",
1993
+ "smallest_denomination": 1
1862
1994
  },
1863
1995
  "syp": {
1864
1996
  "priority": 100,
@@ -1872,7 +2004,8 @@
1872
2004
  "html_entity": "£",
1873
2005
  "decimal_mark": ".",
1874
2006
  "thousands_separator": ",",
1875
- "iso_numeric": "760"
2007
+ "iso_numeric": "760",
2008
+ "smallest_denomination": 100
1876
2009
  },
1877
2010
  "szl": {
1878
2011
  "priority": 100,
@@ -1886,7 +2019,8 @@
1886
2019
  "html_entity": "",
1887
2020
  "decimal_mark": ".",
1888
2021
  "thousands_separator": ",",
1889
- "iso_numeric": "748"
2022
+ "iso_numeric": "748",
2023
+ "smallest_denomination": 1
1890
2024
  },
1891
2025
  "thb": {
1892
2026
  "priority": 100,
@@ -1900,7 +2034,8 @@
1900
2034
  "html_entity": "฿",
1901
2035
  "decimal_mark": ".",
1902
2036
  "thousands_separator": ",",
1903
- "iso_numeric": "764"
2037
+ "iso_numeric": "764",
2038
+ "smallest_denomination": 1
1904
2039
  },
1905
2040
  "tjs": {
1906
2041
  "priority": 100,
@@ -1914,7 +2049,8 @@
1914
2049
  "html_entity": "",
1915
2050
  "decimal_mark": ".",
1916
2051
  "thousands_separator": ",",
1917
- "iso_numeric": "972"
2052
+ "iso_numeric": "972",
2053
+ "smallest_denomination": 1
1918
2054
  },
1919
2055
  "tmt": {
1920
2056
  "priority": 100,
@@ -1928,7 +2064,8 @@
1928
2064
  "html_entity": "",
1929
2065
  "decimal_mark": ".",
1930
2066
  "thousands_separator": ",",
1931
- "iso_numeric": "934"
2067
+ "iso_numeric": "934",
2068
+ "smallest_denomination": 1
1932
2069
  },
1933
2070
  "tnd": {
1934
2071
  "priority": 100,
@@ -1942,7 +2079,8 @@
1942
2079
  "html_entity": "",
1943
2080
  "decimal_mark": ".",
1944
2081
  "thousands_separator": ",",
1945
- "iso_numeric": "788"
2082
+ "iso_numeric": "788",
2083
+ "smallest_denomination": 10
1946
2084
  },
1947
2085
  "top": {
1948
2086
  "priority": 100,
@@ -1956,7 +2094,8 @@
1956
2094
  "html_entity": "",
1957
2095
  "decimal_mark": ".",
1958
2096
  "thousands_separator": ",",
1959
- "iso_numeric": "776"
2097
+ "iso_numeric": "776",
2098
+ "smallest_denomination": 1
1960
2099
  },
1961
2100
  "try": {
1962
2101
  "priority": 100,
@@ -1970,7 +2109,8 @@
1970
2109
  "html_entity": "",
1971
2110
  "decimal_mark": ",",
1972
2111
  "thousands_separator": ".",
1973
- "iso_numeric": "949"
2112
+ "iso_numeric": "949",
2113
+ "smallest_denomination": 1
1974
2114
  },
1975
2115
  "ttd": {
1976
2116
  "priority": 100,
@@ -1984,7 +2124,8 @@
1984
2124
  "html_entity": "$",
1985
2125
  "decimal_mark": ".",
1986
2126
  "thousands_separator": ",",
1987
- "iso_numeric": "780"
2127
+ "iso_numeric": "780",
2128
+ "smallest_denomination": 1
1988
2129
  },
1989
2130
  "twd": {
1990
2131
  "priority": 100,
@@ -1998,7 +2139,8 @@
1998
2139
  "html_entity": "$",
1999
2140
  "decimal_mark": ".",
2000
2141
  "thousands_separator": ",",
2001
- "iso_numeric": "901"
2142
+ "iso_numeric": "901",
2143
+ "smallest_denomination": 50
2002
2144
  },
2003
2145
  "tzs": {
2004
2146
  "priority": 100,
@@ -2012,7 +2154,8 @@
2012
2154
  "html_entity": "",
2013
2155
  "decimal_mark": ".",
2014
2156
  "thousands_separator": ",",
2015
- "iso_numeric": "834"
2157
+ "iso_numeric": "834",
2158
+ "smallest_denomination": 5000
2016
2159
  },
2017
2160
  "uah": {
2018
2161
  "priority": 100,
@@ -2026,7 +2169,8 @@
2026
2169
  "html_entity": "₴",
2027
2170
  "decimal_mark": ".",
2028
2171
  "thousands_separator": ",",
2029
- "iso_numeric": "980"
2172
+ "iso_numeric": "980",
2173
+ "smallest_denomination": 1
2030
2174
  },
2031
2175
  "ugx": {
2032
2176
  "priority": 100,
@@ -2040,7 +2184,8 @@
2040
2184
  "html_entity": "",
2041
2185
  "decimal_mark": ".",
2042
2186
  "thousands_separator": ",",
2043
- "iso_numeric": "800"
2187
+ "iso_numeric": "800",
2188
+ "smallest_denomination": 1000
2044
2189
  },
2045
2190
  "usd": {
2046
2191
  "priority": 1,
@@ -2054,7 +2199,8 @@
2054
2199
  "html_entity": "$",
2055
2200
  "decimal_mark": ".",
2056
2201
  "thousands_separator": ",",
2057
- "iso_numeric": "840"
2202
+ "iso_numeric": "840",
2203
+ "smallest_denomination": 1
2058
2204
  },
2059
2205
  "uyu": {
2060
2206
  "priority": 100,
@@ -2068,7 +2214,8 @@
2068
2214
  "html_entity": "₱",
2069
2215
  "decimal_mark": ",",
2070
2216
  "thousands_separator": ".",
2071
- "iso_numeric": "858"
2217
+ "iso_numeric": "858",
2218
+ "smallest_denomination": 100
2072
2219
  },
2073
2220
  "uzs": {
2074
2221
  "priority": 100,
@@ -2082,7 +2229,8 @@
2082
2229
  "html_entity": "",
2083
2230
  "decimal_mark": ".",
2084
2231
  "thousands_separator": ",",
2085
- "iso_numeric": "860"
2232
+ "iso_numeric": "860",
2233
+ "smallest_denomination": 100
2086
2234
  },
2087
2235
  "vef": {
2088
2236
  "priority": 100,
@@ -2096,7 +2244,8 @@
2096
2244
  "html_entity": "",
2097
2245
  "decimal_mark": ",",
2098
2246
  "thousands_separator": ".",
2099
- "iso_numeric": "937"
2247
+ "iso_numeric": "937",
2248
+ "smallest_denomination": 1
2100
2249
  },
2101
2250
  "vnd": {
2102
2251
  "priority": 100,
@@ -2110,7 +2259,8 @@
2110
2259
  "html_entity": "₫",
2111
2260
  "decimal_mark": ",",
2112
2261
  "thousands_separator": ".",
2113
- "iso_numeric": "704"
2262
+ "iso_numeric": "704",
2263
+ "smallest_denomination": 2000
2114
2264
  },
2115
2265
  "vuv": {
2116
2266
  "priority": 100,
@@ -2124,7 +2274,8 @@
2124
2274
  "html_entity": "",
2125
2275
  "decimal_mark": ".",
2126
2276
  "thousands_separator": ",",
2127
- "iso_numeric": "548"
2277
+ "iso_numeric": "548",
2278
+ "smallest_denomination": 1
2128
2279
  },
2129
2280
  "wst": {
2130
2281
  "priority": 100,
@@ -2138,7 +2289,8 @@
2138
2289
  "html_entity": "",
2139
2290
  "decimal_mark": ".",
2140
2291
  "thousands_separator": ",",
2141
- "iso_numeric": "882"
2292
+ "iso_numeric": "882",
2293
+ "smallest_denomination": 10
2142
2294
  },
2143
2295
  "xaf": {
2144
2296
  "priority": 100,
@@ -2152,7 +2304,8 @@
2152
2304
  "html_entity": "",
2153
2305
  "decimal_mark": ".",
2154
2306
  "thousands_separator": ",",
2155
- "iso_numeric": "950"
2307
+ "iso_numeric": "950",
2308
+ "smallest_denomination": 100
2156
2309
  },
2157
2310
  "xag": {
2158
2311
  "priority": 100,
@@ -2194,7 +2347,8 @@
2194
2347
  "html_entity": "$",
2195
2348
  "decimal_mark": ".",
2196
2349
  "thousands_separator": ",",
2197
- "iso_numeric": "951"
2350
+ "iso_numeric": "951",
2351
+ "smallest_denomination": 1
2198
2352
  },
2199
2353
  "xdr": {
2200
2354
  "priority": 100,
@@ -2222,7 +2376,8 @@
2222
2376
  "html_entity": "",
2223
2377
  "decimal_mark": ".",
2224
2378
  "thousands_separator": ",",
2225
- "iso_numeric": "952"
2379
+ "iso_numeric": "952",
2380
+ "smallest_denomination": 100
2226
2381
  },
2227
2382
  "xpf": {
2228
2383
  "priority": 100,
@@ -2236,7 +2391,8 @@
2236
2391
  "html_entity": "",
2237
2392
  "decimal_mark": ".",
2238
2393
  "thousands_separator": ",",
2239
- "iso_numeric": "953"
2394
+ "iso_numeric": "953",
2395
+ "smallest_denomination": 100
2240
2396
  },
2241
2397
  "yer": {
2242
2398
  "priority": 100,
@@ -2250,7 +2406,8 @@
2250
2406
  "html_entity": "﷼",
2251
2407
  "decimal_mark": ".",
2252
2408
  "thousands_separator": ",",
2253
- "iso_numeric": "886"
2409
+ "iso_numeric": "886",
2410
+ "smallest_denomination": 100
2254
2411
  },
2255
2412
  "zar": {
2256
2413
  "priority": 100,
@@ -2264,7 +2421,8 @@
2264
2421
  "html_entity": "R",
2265
2422
  "decimal_mark": ".",
2266
2423
  "thousands_separator": ",",
2267
- "iso_numeric": "710"
2424
+ "iso_numeric": "710",
2425
+ "smallest_denomination": 10
2268
2426
  },
2269
2427
  "zmk": {
2270
2428
  "priority": 100,
@@ -2278,7 +2436,8 @@
2278
2436
  "html_entity": "",
2279
2437
  "decimal_mark": ".",
2280
2438
  "thousands_separator": ",",
2281
- "iso_numeric": "894"
2439
+ "iso_numeric": "894",
2440
+ "smallest_denomination": 5
2282
2441
  },
2283
2442
  "zmw": {
2284
2443
  "priority": 100,
@@ -2292,6 +2451,7 @@
2292
2451
  "html_entity": "",
2293
2452
  "decimal_mark": ".",
2294
2453
  "thousands_separator": ",",
2295
- "iso_numeric": "967"
2454
+ "iso_numeric": "967",
2455
+ "smallest_denomination": 5
2296
2456
  }
2297
2457
  }