twitter_cldr 3.0.0.beta1 → 3.0.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 +4 -4
- data/Gemfile +16 -2
- data/History.txt +9 -1
- data/README.md +297 -113
- data/Rakefile +97 -17
- data/lib/twitter_cldr/collation/collator.rb +12 -3
- data/lib/twitter_cldr/collation/trie_builder.rb +1 -1
- data/lib/twitter_cldr/{tokenizers/calendars → data_readers}/additional_date_format_selector.rb +6 -4
- data/lib/twitter_cldr/data_readers/calendar_data_reader.rb +91 -0
- data/lib/twitter_cldr/data_readers/data_reader.rb +32 -0
- data/lib/twitter_cldr/data_readers/date_data_reader.rb +26 -0
- data/lib/twitter_cldr/data_readers/date_time_data_reader.rb +41 -0
- data/lib/twitter_cldr/data_readers/number_data_reader.rb +142 -0
- data/lib/twitter_cldr/data_readers/time_data_reader.rb +26 -0
- data/lib/twitter_cldr/data_readers/timespan_data_reader.rb +122 -0
- data/lib/twitter_cldr/data_readers.rb +17 -0
- data/lib/twitter_cldr/formatters/calendars/{datetime_formatter.rb → date_time_formatter.rb} +27 -42
- data/lib/twitter_cldr/formatters/calendars/timespan_formatter.rb +3 -64
- data/lib/twitter_cldr/formatters/formatter.rb +39 -0
- data/lib/twitter_cldr/formatters/list_formatter.rb +22 -12
- data/lib/twitter_cldr/formatters/numbers/abbreviated/abbreviated_number_formatter.rb +5 -26
- data/lib/twitter_cldr/formatters/numbers/currency_formatter.rb +2 -11
- data/lib/twitter_cldr/formatters/numbers/decimal_formatter.rb +4 -2
- data/lib/twitter_cldr/formatters/numbers/number_formatter.rb +45 -27
- data/lib/twitter_cldr/formatters/numbers/percent_formatter.rb +3 -13
- data/lib/twitter_cldr/formatters/numbers/rbnf/formatters.rb +224 -0
- data/lib/twitter_cldr/formatters/numbers/rbnf/post_processors/chinese.rb +122 -0
- data/lib/twitter_cldr/formatters/numbers/rbnf/rule.rb +93 -0
- data/lib/twitter_cldr/formatters/numbers/rbnf/rule_group.rb +20 -0
- data/lib/twitter_cldr/formatters/numbers/rbnf/rule_parser.rb +86 -0
- data/lib/twitter_cldr/formatters/numbers/rbnf/rule_set.rb +259 -0
- data/lib/twitter_cldr/formatters/numbers/rbnf/substitution.rb +30 -0
- data/lib/twitter_cldr/formatters/numbers/rbnf.rb +127 -0
- data/lib/twitter_cldr/formatters/plurals/plural_formatter.rb +18 -6
- data/lib/twitter_cldr/formatters.rb +4 -5
- data/lib/twitter_cldr/localized/localized_array.rb +1 -1
- data/lib/twitter_cldr/localized/localized_date.rb +6 -3
- data/lib/twitter_cldr/localized/localized_datetime.rb +38 -15
- data/lib/twitter_cldr/localized/localized_number.rb +40 -24
- data/lib/twitter_cldr/localized/localized_object.rb +4 -4
- data/lib/twitter_cldr/localized/localized_string.rb +40 -7
- data/lib/twitter_cldr/localized/localized_time.rb +9 -2
- data/lib/twitter_cldr/localized/localized_timespan.rb +50 -5
- data/lib/twitter_cldr/normalization.rb +8 -19
- data/lib/twitter_cldr/parsers/parser.rb +50 -0
- data/lib/twitter_cldr/parsers/segmentation_parser.rb +137 -0
- data/lib/twitter_cldr/parsers/symbol_table.rb +30 -0
- data/lib/twitter_cldr/parsers/unicode_regex/character_class.rb +91 -0
- data/lib/twitter_cldr/parsers/unicode_regex/character_range.rb +39 -0
- data/lib/twitter_cldr/parsers/unicode_regex/character_set.rb +65 -0
- data/lib/twitter_cldr/parsers/unicode_regex/component.rb +50 -0
- data/lib/twitter_cldr/parsers/unicode_regex/literal.rb +83 -0
- data/lib/twitter_cldr/parsers/unicode_regex/unicode_string.rb +41 -0
- data/lib/twitter_cldr/parsers/unicode_regex_parser.rb +262 -0
- data/lib/twitter_cldr/parsers.rb +5 -1
- data/lib/twitter_cldr/resources/casefolder.rb.erb +64 -0
- data/lib/twitter_cldr/resources/casefolder_class_generator.rb +75 -0
- data/lib/twitter_cldr/resources/download.rb +10 -4
- data/lib/twitter_cldr/resources/icu_based_importer.rb +18 -0
- data/lib/twitter_cldr/resources/locales_resources_importer.rb +24 -13
- data/lib/twitter_cldr/resources/normalization_quick_check_importer.rb +1 -14
- data/lib/twitter_cldr/resources/rbnf_test_importer.rb +107 -0
- data/lib/twitter_cldr/resources/readme_renderer.rb +115 -0
- data/lib/twitter_cldr/resources/tailoring_importer.rb +2 -8
- data/lib/twitter_cldr/resources/uli/segment_exceptions_importer.rb +62 -0
- data/lib/twitter_cldr/resources/uli.rb +12 -0
- data/lib/twitter_cldr/resources/unicode_data_importer.rb +84 -14
- data/lib/twitter_cldr/resources/unicode_importer.rb +37 -0
- data/lib/twitter_cldr/resources/unicode_properties_importer.rb +79 -0
- data/lib/twitter_cldr/resources.rb +8 -1
- data/lib/twitter_cldr/shared/break_iterator.rb +213 -0
- data/lib/twitter_cldr/shared/calendar.rb +38 -14
- data/lib/twitter_cldr/shared/casefolder.rb +210 -0
- data/lib/twitter_cldr/shared/code_point.rb +103 -16
- data/lib/twitter_cldr/shared/numbering_system.rb +58 -0
- data/lib/twitter_cldr/shared/territories.rb +43 -1
- data/lib/twitter_cldr/shared/unicode_regex.rb +81 -0
- data/lib/twitter_cldr/shared.rb +13 -9
- data/lib/twitter_cldr/tokenizers/calendars/date_time_tokenizer.rb +77 -0
- data/lib/twitter_cldr/tokenizers/calendars/date_tokenizer.rb +14 -29
- data/lib/twitter_cldr/tokenizers/calendars/time_tokenizer.rb +13 -28
- data/lib/twitter_cldr/tokenizers/calendars/timespan_tokenizer.rb +11 -87
- data/lib/twitter_cldr/tokenizers/numbers/number_tokenizer.rb +16 -71
- data/lib/twitter_cldr/tokenizers/numbers/rbnf_tokenizer.rb +53 -0
- data/lib/twitter_cldr/tokenizers/pattern_tokenizer.rb +42 -0
- data/lib/twitter_cldr/tokenizers/segmentation/segmentation_tokenizer.rb +39 -0
- data/lib/twitter_cldr/tokenizers/tokenizer.rb +116 -0
- data/lib/twitter_cldr/tokenizers/unicode_regex/unicode_regex_tokenizer.rb +52 -0
- data/lib/twitter_cldr/tokenizers.rb +8 -4
- data/lib/twitter_cldr/utils/code_points.rb +1 -1
- data/lib/twitter_cldr/utils/range_set.rb +242 -0
- data/lib/twitter_cldr/utils/yaml.rb +17 -12
- data/lib/twitter_cldr/utils.rb +1 -1
- data/lib/twitter_cldr/version.rb +1 -1
- data/lib/twitter_cldr.rb +2 -1
- data/resources/custom/locales/sv/units.yml +8 -0
- data/resources/locales/af/calendars.yml +278 -224
- data/resources/locales/af/currencies.yml +954 -916
- data/resources/locales/af/languages.yml +583 -580
- data/resources/locales/af/layout.yml +5 -5
- data/resources/locales/af/lists.yml +23 -7
- data/resources/locales/af/numbers.yml +59 -54
- data/resources/locales/af/plurals.yml +2 -2
- data/resources/locales/af/rbnf.yml +261 -0
- data/resources/locales/af/territories.yml +264 -263
- data/resources/locales/ar/calendars.yml +287 -259
- data/resources/locales/ar/currencies.yml +1730 -1692
- data/resources/locales/ar/languages.yml +583 -580
- data/resources/locales/ar/layout.yml +5 -5
- data/resources/locales/ar/lists.yml +23 -7
- data/resources/locales/ar/numbers.yml +66 -61
- data/resources/locales/ar/plurals.yml +5 -8
- data/resources/locales/ar/rbnf.yml +519 -0
- data/resources/locales/ar/territories.yml +264 -263
- data/resources/locales/be/calendars.yml +238 -237
- data/resources/locales/be/currencies.yml +954 -917
- data/resources/locales/be/languages.yml +583 -580
- data/resources/locales/be/layout.yml +5 -5
- data/resources/locales/be/lists.yml +23 -7
- data/resources/locales/be/numbers.yml +62 -57
- data/resources/locales/be/plurals.yml +7 -4
- data/resources/locales/be/rbnf.yml +1288 -0
- data/resources/locales/be/territories.yml +264 -263
- data/resources/locales/bg/calendars.yml +278 -218
- data/resources/locales/bg/currencies.yml +955 -917
- data/resources/locales/bg/languages.yml +583 -580
- data/resources/locales/bg/layout.yml +5 -5
- data/resources/locales/bg/lists.yml +23 -7
- data/resources/locales/bg/numbers.yml +62 -57
- data/resources/locales/bg/plurals.yml +2 -2
- data/resources/locales/bg/rbnf.yml +280 -0
- data/resources/locales/bg/territories.yml +264 -263
- data/resources/locales/bn/calendars.yml +287 -225
- data/resources/locales/bn/currencies.yml +953 -916
- data/resources/locales/bn/languages.yml +583 -580
- data/resources/locales/bn/layout.yml +5 -5
- data/resources/locales/bn/lists.yml +23 -7
- data/resources/locales/bn/numbers.yml +62 -57
- data/resources/locales/bn/plurals.yml +2 -2
- data/resources/locales/bn/rbnf.yml +4 -0
- data/resources/locales/bn/territories.yml +264 -263
- data/resources/locales/ca/calendars.yml +278 -278
- data/resources/locales/ca/currencies.yml +953 -916
- data/resources/locales/ca/languages.yml +583 -580
- data/resources/locales/ca/layout.yml +5 -5
- data/resources/locales/ca/lists.yml +23 -7
- data/resources/locales/ca/numbers.yml +62 -57
- data/resources/locales/ca/plurals.yml +3 -2
- data/resources/locales/ca/rbnf.yml +756 -0
- data/resources/locales/ca/territories.yml +264 -263
- data/resources/locales/cs/calendars.yml +269 -262
- data/resources/locales/cs/currencies.yml +1483 -1172
- data/resources/locales/cs/languages.yml +583 -580
- data/resources/locales/cs/layout.yml +5 -5
- data/resources/locales/cs/lists.yml +23 -7
- data/resources/locales/cs/numbers.yml +64 -58
- data/resources/locales/cs/plurals.yml +6 -2
- data/resources/locales/cs/rbnf.yml +367 -0
- data/resources/locales/cs/territories.yml +264 -263
- data/resources/locales/cy/calendars.yml +275 -274
- data/resources/locales/cy/currencies.yml +1585 -1548
- data/resources/locales/cy/languages.yml +583 -580
- data/resources/locales/cy/layout.yml +5 -5
- data/resources/locales/cy/lists.yml +23 -7
- data/resources/locales/cy/numbers.yml +66 -61
- data/resources/locales/cy/plurals.yml +4 -3
- data/resources/locales/cy/rbnf.yml +298 -0
- data/resources/locales/cy/territories.yml +264 -263
- data/resources/locales/da/calendars.yml +281 -280
- data/resources/locales/da/currencies.yml +954 -916
- data/resources/locales/da/languages.yml +583 -580
- data/resources/locales/da/layout.yml +5 -5
- data/resources/locales/da/lists.yml +23 -7
- data/resources/locales/da/numbers.yml +62 -57
- data/resources/locales/da/plurals.yml +3 -2
- data/resources/locales/da/rbnf.yml +194 -0
- data/resources/locales/da/territories.yml +264 -263
- data/resources/locales/de/calendars.yml +294 -293
- data/resources/locales/de/currencies.yml +954 -916
- data/resources/locales/de/languages.yml +583 -580
- data/resources/locales/de/layout.yml +5 -5
- data/resources/locales/de/lists.yml +23 -7
- data/resources/locales/de/numbers.yml +62 -57
- data/resources/locales/de/plurals.yml +3 -2
- data/resources/locales/de/rbnf.yml +346 -0
- data/resources/locales/de/territories.yml +264 -263
- data/resources/locales/el/calendars.yml +279 -282
- data/resources/locales/el/currencies.yml +954 -916
- data/resources/locales/el/languages.yml +583 -580
- data/resources/locales/el/layout.yml +5 -5
- data/resources/locales/el/lists.yml +23 -7
- data/resources/locales/el/numbers.yml +62 -57
- data/resources/locales/el/plurals.yml +2 -2
- data/resources/locales/el/rbnf.yml +880 -0
- data/resources/locales/el/territories.yml +264 -263
- data/resources/locales/en/calendars.yml +192 -191
- data/resources/locales/en/currencies.yml +953 -915
- data/resources/locales/en/languages.yml +583 -580
- data/resources/locales/en/layout.yml +5 -5
- data/resources/locales/en/lists.yml +23 -7
- data/resources/locales/en/numbers.yml +62 -57
- data/resources/locales/en/plurals.yml +3 -2
- data/resources/locales/en/rbnf.yml +542 -0
- data/resources/locales/en/territories.yml +264 -263
- data/resources/locales/en-GB/calendars.yml +195 -194
- data/resources/locales/en-GB/currencies.yml +953 -915
- data/resources/locales/en-GB/languages.yml +583 -580
- data/resources/locales/en-GB/layout.yml +5 -5
- data/resources/locales/en-GB/lists.yml +23 -7
- data/resources/locales/en-GB/numbers.yml +62 -57
- data/resources/locales/en-GB/plurals.yml +2 -1
- data/resources/locales/en-GB/rbnf.yml +4 -0
- data/resources/locales/en-GB/territories.yml +264 -263
- data/resources/locales/es/calendars.yml +288 -238
- data/resources/locales/es/currencies.yml +953 -922
- data/resources/locales/es/languages.yml +583 -580
- data/resources/locales/es/layout.yml +5 -5
- data/resources/locales/es/lists.yml +23 -7
- data/resources/locales/es/numbers.yml +62 -57
- data/resources/locales/es/plurals.yml +2 -2
- data/resources/locales/es/rbnf.yml +913 -0
- data/resources/locales/es/territories.yml +264 -263
- data/resources/locales/eu/calendars.yml +277 -218
- data/resources/locales/eu/currencies.yml +953 -916
- data/resources/locales/eu/languages.yml +583 -580
- data/resources/locales/eu/layout.yml +5 -5
- data/resources/locales/eu/lists.yml +23 -7
- data/resources/locales/eu/numbers.yml +56 -51
- data/resources/locales/eu/plurals.yml +2 -2
- data/resources/locales/eu/rbnf.yml +4 -0
- data/resources/locales/eu/territories.yml +264 -263
- data/resources/locales/fa/calendars.yml +294 -293
- data/resources/locales/fa/currencies.yml +955 -916
- data/resources/locales/fa/languages.yml +583 -580
- data/resources/locales/fa/layout.yml +5 -5
- data/resources/locales/fa/lists.yml +23 -7
- data/resources/locales/fa/numbers.yml +62 -57
- data/resources/locales/fa/plurals.yml +2 -2
- data/resources/locales/fa/rbnf.yml +157 -0
- data/resources/locales/fa/territories.yml +264 -263
- data/resources/locales/fi/calendars.yml +284 -283
- data/resources/locales/fi/currencies.yml +953 -915
- data/resources/locales/fi/languages.yml +583 -580
- data/resources/locales/fi/layout.yml +5 -5
- data/resources/locales/fi/lists.yml +23 -7
- data/resources/locales/fi/numbers.yml +62 -57
- data/resources/locales/fi/plurals.yml +3 -2
- data/resources/locales/fi/rbnf.yml +206 -0
- data/resources/locales/fi/territories.yml +264 -263
- data/resources/locales/fil/calendars.yml +281 -230
- data/resources/locales/fil/currencies.yml +953 -916
- data/resources/locales/fil/languages.yml +583 -580
- data/resources/locales/fil/layout.yml +5 -5
- data/resources/locales/fil/lists.yml +23 -7
- data/resources/locales/fil/numbers.yml +62 -57
- data/resources/locales/fil/plurals.yml +3 -2
- data/resources/locales/fil/rbnf.yml +158 -0
- data/resources/locales/fil/territories.yml +264 -263
- data/resources/locales/fr/calendars.yml +297 -296
- data/resources/locales/fr/currencies.yml +968 -949
- data/resources/locales/fr/languages.yml +583 -580
- data/resources/locales/fr/layout.yml +5 -5
- data/resources/locales/fr/lists.yml +23 -7
- data/resources/locales/fr/numbers.yml +62 -57
- data/resources/locales/fr/plurals.yml +2 -2
- data/resources/locales/fr/rbnf.yml +621 -0
- data/resources/locales/fr/territories.yml +264 -263
- data/resources/locales/ga/calendars.yml +192 -191
- data/resources/locales/ga/currencies.yml +954 -916
- data/resources/locales/ga/languages.yml +583 -580
- data/resources/locales/ga/layout.yml +5 -5
- data/resources/locales/ga/lists.yml +23 -7
- data/resources/locales/ga/numbers.yml +62 -57
- data/resources/locales/ga/plurals.yml +4 -3
- data/resources/locales/ga/rbnf.yml +615 -0
- data/resources/locales/ga/territories.yml +264 -263
- data/resources/locales/gl/calendars.yml +283 -217
- data/resources/locales/gl/currencies.yml +953 -916
- data/resources/locales/gl/languages.yml +583 -580
- data/resources/locales/gl/layout.yml +5 -5
- data/resources/locales/gl/lists.yml +23 -7
- data/resources/locales/gl/numbers.yml +62 -57
- data/resources/locales/gl/plurals.yml +3 -2
- data/resources/locales/gl/rbnf.yml +4 -0
- data/resources/locales/gl/territories.yml +264 -263
- data/resources/locales/he/calendars.yml +248 -220
- data/resources/locales/he/currencies.yml +992 -932
- data/resources/locales/he/languages.yml +583 -580
- data/resources/locales/he/layout.yml +5 -5
- data/resources/locales/he/lists.yml +23 -7
- data/resources/locales/he/numbers.yml +64 -59
- data/resources/locales/he/plurals.yml +6 -3
- data/resources/locales/he/rbnf.yml +1029 -0
- data/resources/locales/he/territories.yml +264 -263
- data/resources/locales/hi/calendars.yml +284 -216
- data/resources/locales/hi/currencies.yml +953 -915
- data/resources/locales/hi/languages.yml +583 -580
- data/resources/locales/hi/layout.yml +5 -5
- data/resources/locales/hi/lists.yml +23 -7
- data/resources/locales/hi/numbers.yml +60 -55
- data/resources/locales/hi/plurals.yml +2 -2
- data/resources/locales/hi/rbnf.yml +430 -0
- data/resources/locales/hi/territories.yml +264 -263
- data/resources/locales/hr/calendars.yml +308 -307
- data/resources/locales/hr/currencies.yml +1248 -1504
- data/resources/locales/hr/languages.yml +583 -580
- data/resources/locales/hr/layout.yml +5 -5
- data/resources/locales/hr/lists.yml +23 -7
- data/resources/locales/hr/numbers.yml +63 -59
- data/resources/locales/hr/plurals.yml +12 -4
- data/resources/locales/hr/rbnf.yml +599 -0
- data/resources/locales/hr/territories.yml +264 -263
- data/resources/locales/hu/calendars.yml +285 -284
- data/resources/locales/hu/currencies.yml +954 -916
- data/resources/locales/hu/languages.yml +583 -580
- data/resources/locales/hu/layout.yml +5 -5
- data/resources/locales/hu/lists.yml +23 -7
- data/resources/locales/hu/numbers.yml +62 -57
- data/resources/locales/hu/plurals.yml +2 -2
- data/resources/locales/hu/rbnf.yml +363 -0
- data/resources/locales/hu/territories.yml +264 -263
- data/resources/locales/id/calendars.yml +276 -275
- data/resources/locales/id/currencies.yml +954 -916
- data/resources/locales/id/languages.yml +583 -580
- data/resources/locales/id/layout.yml +5 -5
- data/resources/locales/id/lists.yml +23 -7
- data/resources/locales/id/numbers.yml +61 -56
- data/resources/locales/id/plurals.yml +2 -2
- data/resources/locales/id/rbnf.yml +121 -0
- data/resources/locales/id/territories.yml +264 -263
- data/resources/locales/is/calendars.yml +281 -242
- data/resources/locales/is/currencies.yml +954 -916
- data/resources/locales/is/languages.yml +583 -580
- data/resources/locales/is/layout.yml +5 -5
- data/resources/locales/is/lists.yml +23 -7
- data/resources/locales/is/numbers.yml +62 -57
- data/resources/locales/is/plurals.yml +5 -2
- data/resources/locales/is/rbnf.yml +326 -0
- data/resources/locales/is/territories.yml +264 -263
- data/resources/locales/it/calendars.yml +275 -260
- data/resources/locales/it/currencies.yml +953 -920
- data/resources/locales/it/languages.yml +583 -580
- data/resources/locales/it/layout.yml +5 -5
- data/resources/locales/it/lists.yml +23 -7
- data/resources/locales/it/numbers.yml +59 -54
- data/resources/locales/it/plurals.yml +3 -2
- data/resources/locales/it/rbnf.yml +1189 -0
- data/resources/locales/it/territories.yml +264 -263
- data/resources/locales/ja/calendars.yml +269 -207
- data/resources/locales/ja/currencies.yml +953 -915
- data/resources/locales/ja/languages.yml +583 -580
- data/resources/locales/ja/layout.yml +5 -5
- data/resources/locales/ja/lists.yml +23 -7
- data/resources/locales/ja/numbers.yml +62 -57
- data/resources/locales/ja/plurals.yml +2 -2
- data/resources/locales/ja/rbnf.yml +209 -0
- data/resources/locales/ja/territories.yml +264 -263
- data/resources/locales/ko/calendars.yml +246 -213
- data/resources/locales/ko/currencies.yml +953 -915
- data/resources/locales/ko/languages.yml +583 -580
- data/resources/locales/ko/layout.yml +5 -5
- data/resources/locales/ko/lists.yml +23 -7
- data/resources/locales/ko/numbers.yml +60 -55
- data/resources/locales/ko/plurals.yml +2 -2
- data/resources/locales/ko/rbnf.yml +722 -0
- data/resources/locales/ko/territories.yml +264 -263
- data/resources/locales/lv/calendars.yml +286 -285
- data/resources/locales/lv/currencies.yml +1122 -1084
- data/resources/locales/lv/languages.yml +583 -580
- data/resources/locales/lv/layout.yml +5 -5
- data/resources/locales/lv/lists.yml +23 -7
- data/resources/locales/lv/numbers.yml +63 -58
- data/resources/locales/lv/plurals.yml +11 -3
- data/resources/locales/lv/rbnf.yml +238 -0
- data/resources/locales/lv/territories.yml +264 -263
- data/resources/locales/ms/calendars.yml +280 -279
- data/resources/locales/ms/currencies.yml +954 -916
- data/resources/locales/ms/languages.yml +583 -580
- data/resources/locales/ms/layout.yml +5 -5
- data/resources/locales/ms/lists.yml +23 -7
- data/resources/locales/ms/numbers.yml +62 -57
- data/resources/locales/ms/plurals.yml +2 -2
- data/resources/locales/ms/rbnf.yml +130 -0
- data/resources/locales/ms/territories.yml +264 -263
- data/resources/locales/nb/calendars.yml +284 -283
- data/resources/locales/nb/currencies.yml +958 -916
- data/resources/locales/nb/languages.yml +583 -580
- data/resources/locales/nb/layout.yml +5 -5
- data/resources/locales/nb/lists.yml +23 -7
- data/resources/locales/nb/numbers.yml +62 -57
- data/resources/locales/nb/plurals.yml +2 -2
- data/resources/locales/nb/rbnf.yml +191 -0
- data/resources/locales/nb/territories.yml +264 -263
- data/resources/locales/nl/calendars.yml +285 -284
- data/resources/locales/nl/currencies.yml +953 -917
- data/resources/locales/nl/languages.yml +583 -580
- data/resources/locales/nl/layout.yml +5 -5
- data/resources/locales/nl/lists.yml +23 -7
- data/resources/locales/nl/numbers.yml +62 -57
- data/resources/locales/nl/plurals.yml +3 -2
- data/resources/locales/nl/rbnf.yml +320 -0
- data/resources/locales/nl/territories.yml +264 -263
- data/resources/locales/pl/calendars.yml +288 -287
- data/resources/locales/pl/currencies.yml +1326 -1284
- data/resources/locales/pl/languages.yml +583 -580
- data/resources/locales/pl/layout.yml +5 -5
- data/resources/locales/pl/lists.yml +23 -7
- data/resources/locales/pl/numbers.yml +64 -59
- data/resources/locales/pl/plurals.yml +11 -4
- data/resources/locales/pl/rbnf.yml +410 -0
- data/resources/locales/pl/territories.yml +264 -263
- data/resources/locales/pt/calendars.yml +290 -289
- data/resources/locales/pt/currencies.yml +954 -916
- data/resources/locales/pt/languages.yml +583 -580
- data/resources/locales/pt/layout.yml +5 -5
- data/resources/locales/pt/lists.yml +23 -7
- data/resources/locales/pt/numbers.yml +62 -57
- data/resources/locales/pt/plurals.yml +4 -2
- data/resources/locales/pt/rbnf.yml +586 -0
- data/resources/locales/pt/territories.yml +264 -263
- data/resources/locales/ro/calendars.yml +284 -283
- data/resources/locales/ro/currencies.yml +1170 -1132
- data/resources/locales/ro/languages.yml +583 -580
- data/resources/locales/ro/layout.yml +5 -5
- data/resources/locales/ro/lists.yml +23 -7
- data/resources/locales/ro/numbers.yml +63 -58
- data/resources/locales/ro/plurals.yml +5 -2
- data/resources/locales/ro/rbnf.yml +250 -0
- data/resources/locales/ro/territories.yml +264 -263
- data/resources/locales/ru/calendars.yml +282 -281
- data/resources/locales/ru/currencies.yml +1118 -1247
- data/resources/locales/ru/languages.yml +583 -580
- data/resources/locales/ru/layout.yml +5 -5
- data/resources/locales/ru/lists.yml +23 -7
- data/resources/locales/ru/numbers.yml +63 -59
- data/resources/locales/ru/plurals.yml +8 -4
- data/resources/locales/ru/rbnf.yml +385 -0
- data/resources/locales/ru/territories.yml +264 -263
- data/resources/locales/sk/calendars.yml +254 -251
- data/resources/locales/sk/currencies.yml +1174 -1008
- data/resources/locales/sk/languages.yml +583 -580
- data/resources/locales/sk/layout.yml +5 -5
- data/resources/locales/sk/lists.yml +23 -7
- data/resources/locales/sk/numbers.yml +64 -58
- data/resources/locales/sk/plurals.yml +6 -2
- data/resources/locales/sk/rbnf.yml +304 -0
- data/resources/locales/sk/territories.yml +264 -263
- data/resources/locales/sq/calendars.yml +283 -206
- data/resources/locales/sq/currencies.yml +954 -916
- data/resources/locales/sq/languages.yml +583 -580
- data/resources/locales/sq/layout.yml +5 -5
- data/resources/locales/sq/lists.yml +23 -7
- data/resources/locales/sq/numbers.yml +62 -57
- data/resources/locales/sq/plurals.yml +2 -2
- data/resources/locales/sq/rbnf.yml +181 -0
- data/resources/locales/sq/territories.yml +264 -263
- data/resources/locales/sr/calendars.yml +290 -289
- data/resources/locales/sr/currencies.yml +1251 -1508
- data/resources/locales/sr/languages.yml +583 -580
- data/resources/locales/sr/layout.yml +5 -5
- data/resources/locales/sr/lists.yml +23 -7
- data/resources/locales/sr/numbers.yml +62 -58
- data/resources/locales/sr/plurals.yml +12 -4
- data/resources/locales/sr/rbnf.yml +429 -0
- data/resources/locales/sr/territories.yml +264 -263
- data/resources/locales/sv/calendars.yml +290 -289
- data/resources/locales/sv/currencies.yml +960 -930
- data/resources/locales/sv/languages.yml +583 -580
- data/resources/locales/sv/layout.yml +5 -5
- data/resources/locales/sv/lists.yml +23 -7
- data/resources/locales/sv/numbers.yml +63 -58
- data/resources/locales/sv/plurals.yml +3 -2
- data/resources/locales/sv/rbnf.yml +692 -0
- data/resources/locales/sv/territories.yml +264 -263
- data/resources/locales/ta/calendars.yml +281 -266
- data/resources/locales/ta/currencies.yml +953 -915
- data/resources/locales/ta/languages.yml +583 -580
- data/resources/locales/ta/layout.yml +5 -5
- data/resources/locales/ta/lists.yml +23 -7
- data/resources/locales/ta/numbers.yml +62 -57
- data/resources/locales/ta/plurals.yml +2 -2
- data/resources/locales/ta/rbnf.yml +241 -0
- data/resources/locales/ta/territories.yml +264 -263
- data/resources/locales/th/calendars.yml +278 -289
- data/resources/locales/th/currencies.yml +953 -915
- data/resources/locales/th/languages.yml +583 -580
- data/resources/locales/th/layout.yml +5 -5
- data/resources/locales/th/lists.yml +23 -7
- data/resources/locales/th/numbers.yml +62 -57
- data/resources/locales/th/plurals.yml +2 -2
- data/resources/locales/th/rbnf.yml +119 -0
- data/resources/locales/th/territories.yml +264 -263
- data/resources/locales/tr/calendars.yml +287 -286
- data/resources/locales/tr/currencies.yml +953 -916
- data/resources/locales/tr/languages.yml +583 -580
- data/resources/locales/tr/layout.yml +5 -5
- data/resources/locales/tr/lists.yml +23 -7
- data/resources/locales/tr/numbers.yml +61 -56
- data/resources/locales/tr/plurals.yml +2 -2
- data/resources/locales/tr/rbnf.yml +277 -0
- data/resources/locales/tr/territories.yml +264 -263
- data/resources/locales/uk/calendars.yml +286 -252
- data/resources/locales/uk/currencies.yml +1311 -1070
- data/resources/locales/uk/languages.yml +583 -580
- data/resources/locales/uk/layout.yml +5 -5
- data/resources/locales/uk/lists.yml +23 -7
- data/resources/locales/uk/numbers.yml +64 -59
- data/resources/locales/uk/plurals.yml +10 -4
- data/resources/locales/uk/rbnf.yml +430 -0
- data/resources/locales/uk/territories.yml +264 -263
- data/resources/locales/ur/calendars.yml +267 -228
- data/resources/locales/ur/currencies.yml +954 -916
- data/resources/locales/ur/languages.yml +583 -580
- data/resources/locales/ur/layout.yml +5 -5
- data/resources/locales/ur/lists.yml +23 -7
- data/resources/locales/ur/numbers.yml +62 -57
- data/resources/locales/ur/plurals.yml +3 -2
- data/resources/locales/ur/rbnf.yml +4 -0
- data/resources/locales/ur/territories.yml +264 -263
- data/resources/locales/vi/calendars.yml +256 -236
- data/resources/locales/vi/currencies.yml +953 -915
- data/resources/locales/vi/languages.yml +583 -580
- data/resources/locales/vi/layout.yml +5 -5
- data/resources/locales/vi/lists.yml +23 -7
- data/resources/locales/vi/numbers.yml +62 -57
- data/resources/locales/vi/plurals.yml +2 -2
- data/resources/locales/vi/rbnf.yml +164 -0
- data/resources/locales/vi/territories.yml +264 -263
- data/resources/locales/zh/calendars.yml +266 -265
- data/resources/locales/zh/currencies.yml +953 -915
- data/resources/locales/zh/languages.yml +583 -580
- data/resources/locales/zh/layout.yml +5 -5
- data/resources/locales/zh/lists.yml +23 -7
- data/resources/locales/zh/numbers.yml +62 -57
- data/resources/locales/zh/plurals.yml +2 -2
- data/resources/locales/zh/rbnf.yml +689 -0
- data/resources/locales/zh/territories.yml +264 -263
- data/resources/locales/zh-Hant/calendars.yml +266 -265
- data/resources/locales/zh-Hant/currencies.yml +955 -915
- data/resources/locales/zh-Hant/languages.yml +583 -580
- data/resources/locales/zh-Hant/layout.yml +5 -5
- data/resources/locales/zh-Hant/lists.yml +23 -7
- data/resources/locales/zh-Hant/numbers.yml +62 -57
- data/resources/locales/zh-Hant/plurals.yml +2 -2
- data/resources/locales/zh-Hant/rbnf.yml +647 -0
- data/resources/locales/zh-Hant/territories.yml +264 -263
- data/resources/shared/currency_digits_and_rounding.yml +67 -64
- data/resources/shared/numbering_systems.yml +176 -0
- data/resources/shared/rbnf_root.yml +1573 -0
- data/resources/shared/segments/segments_root.yml +728 -0
- data/resources/shared/segments/tailorings/en.yml +8 -0
- data/resources/uli/segments/de.yml +128 -0
- data/resources/uli/segments/en.yml +154 -0
- data/resources/uli/segments/es.yml +112 -0
- data/resources/uli/segments/fr.yml +47 -0
- data/resources/uli/segments/it.yml +37 -0
- data/resources/uli/segments/pt.yml +173 -0
- data/resources/uli/segments/ru.yml +10 -0
- data/resources/unicode_data/casefolding.yml +4765 -0
- data/resources/unicode_data/indices/bidi_class.yml +4572 -0
- data/resources/unicode_data/indices/bidi_mirrored.yml +3087 -0
- data/resources/unicode_data/indices/category.yml +10918 -0
- data/resources/unicode_data/indices/keys.yml +101 -0
- data/resources/unicode_data/properties/line_break.yml +9269 -0
- data/resources/unicode_data/properties/sentence_break.yml +8067 -0
- data/resources/unicode_data/properties/word_break.yml +3001 -0
- data/spec/collation/collation_spec.rb +2 -1
- data/spec/collation/collator_spec.rb +4 -3
- data/spec/collation/tailoring_spec.rb +2 -2
- data/spec/collation/tailoring_tests/he.txt +5 -2
- data/spec/{tokenizers/calendars → data_readers}/additional_date_format_selector_spec.rb +13 -13
- data/spec/data_readers/date_time_data_reader_spec.rb +26 -0
- data/spec/data_readers/number_data_reader_spec.rb +18 -0
- data/spec/data_readers/timespan_data_reader.rb +22 -0
- data/spec/formatters/calendars/datetime_formatter_spec.rb +18 -22
- data/spec/formatters/list_formatter_spec.rb +16 -87
- data/spec/formatters/numbers/abbreviated/abbreviated_number_formatter_spec.rb +15 -59
- data/spec/formatters/numbers/abbreviated/long_decimal_formatter_spec.rb +32 -17
- data/spec/formatters/numbers/abbreviated/short_decimal_formatter_spec.rb +33 -17
- data/spec/formatters/numbers/currency_formatter_spec.rb +18 -13
- data/spec/formatters/numbers/decimal_formatter_spec.rb +16 -18
- data/spec/formatters/numbers/number_formatter_spec.rb +40 -31
- data/spec/formatters/numbers/percent_formatter_spec.rb +14 -6
- data/spec/formatters/numbers/rbnf/allowed_failures.yml +74 -0
- data/spec/formatters/numbers/rbnf/locales/af/rbnf_test.yml +706 -0
- data/spec/formatters/numbers/rbnf/locales/ar/rbnf_test.yml +706 -0
- data/spec/formatters/numbers/rbnf/locales/be/rbnf_test.yml +1174 -0
- data/spec/formatters/numbers/rbnf/locales/bg/rbnf_test.yml +706 -0
- data/spec/formatters/numbers/rbnf/locales/bn/rbnf_test.yml +1291 -0
- data/spec/formatters/numbers/rbnf/locales/ca/rbnf_test.yml +1174 -0
- data/spec/formatters/numbers/rbnf/locales/cs/rbnf_test.yml +823 -0
- data/spec/formatters/numbers/rbnf/locales/cy/rbnf_test.yml +940 -0
- data/spec/formatters/numbers/rbnf/locales/da/rbnf_test.yml +940 -0
- data/spec/formatters/numbers/rbnf/locales/de/rbnf_test.yml +940 -0
- data/spec/formatters/numbers/rbnf/locales/el/rbnf_test.yml +1174 -0
- data/spec/formatters/numbers/rbnf/locales/en/rbnf_test.yml +1291 -0
- data/spec/formatters/numbers/rbnf/locales/en-GB/rbnf_test.yml +1291 -0
- data/spec/formatters/numbers/rbnf/locales/es/rbnf_test.yml +1642 -0
- data/spec/formatters/numbers/rbnf/locales/eu/rbnf_test.yml +1291 -0
- data/spec/formatters/numbers/rbnf/locales/fa/rbnf_test.yml +589 -0
- data/spec/formatters/numbers/rbnf/locales/fi/rbnf_test.yml +706 -0
- data/spec/formatters/numbers/rbnf/locales/fil/rbnf_test.yml +706 -0
- data/spec/formatters/numbers/rbnf/locales/fr/rbnf_test.yml +1408 -0
- data/spec/formatters/numbers/rbnf/locales/ga/rbnf_test.yml +940 -0
- data/spec/formatters/numbers/rbnf/locales/gl/rbnf_test.yml +1291 -0
- data/spec/formatters/numbers/rbnf/locales/he/rbnf_test.yml +1057 -0
- data/spec/formatters/numbers/rbnf/locales/hi/rbnf_test.yml +823 -0
- data/spec/formatters/numbers/rbnf/locales/hr/rbnf_test.yml +1174 -0
- data/spec/formatters/numbers/rbnf/locales/hu/rbnf_test.yml +940 -0
- data/spec/formatters/numbers/rbnf/locales/id/rbnf_test.yml +706 -0
- data/spec/formatters/numbers/rbnf/locales/is/rbnf_test.yml +823 -0
- data/spec/formatters/numbers/rbnf/locales/it/rbnf_test.yml +1174 -0
- data/spec/formatters/numbers/rbnf/locales/ja/rbnf_test.yml +823 -0
- data/spec/formatters/numbers/rbnf/locales/ko/rbnf_test.yml +1408 -0
- data/spec/formatters/numbers/rbnf/locales/lv/rbnf_test.yml +706 -0
- data/spec/formatters/numbers/rbnf/locales/ms/rbnf_test.yml +706 -0
- data/spec/formatters/numbers/rbnf/locales/nb/rbnf_test.yml +940 -0
- data/spec/formatters/numbers/rbnf/locales/nl/rbnf_test.yml +706 -0
- data/spec/formatters/numbers/rbnf/locales/pl/rbnf_test.yml +823 -0
- data/spec/formatters/numbers/rbnf/locales/pt/rbnf_test.yml +1174 -0
- data/spec/formatters/numbers/rbnf/locales/ro/rbnf_test.yml +823 -0
- data/spec/formatters/numbers/rbnf/locales/ru/rbnf_test.yml +823 -0
- data/spec/formatters/numbers/rbnf/locales/sk/rbnf_test.yml +823 -0
- data/spec/formatters/numbers/rbnf/locales/sq/rbnf_test.yml +706 -0
- data/spec/formatters/numbers/rbnf/locales/sr/rbnf_test.yml +940 -0
- data/spec/formatters/numbers/rbnf/locales/sv/rbnf_test.yml +1876 -0
- data/spec/formatters/numbers/rbnf/locales/ta/rbnf_test.yml +706 -0
- data/spec/formatters/numbers/rbnf/locales/th/rbnf_test.yml +706 -0
- data/spec/formatters/numbers/rbnf/locales/tr/rbnf_test.yml +706 -0
- data/spec/formatters/numbers/rbnf/locales/uk/rbnf_test.yml +823 -0
- data/spec/formatters/numbers/rbnf/locales/ur/rbnf_test.yml +1291 -0
- data/spec/formatters/numbers/rbnf/locales/vi/rbnf_test.yml +706 -0
- data/spec/formatters/numbers/rbnf/locales/zh/rbnf_test.yml +940 -0
- data/spec/formatters/numbers/rbnf/locales/zh-Hant/rbnf_test.yml +940 -0
- data/spec/formatters/numbers/rbnf/rbnf_spec.rb +98 -0
- data/spec/formatters/plurals/plural_formatter_spec.rb +4 -4
- data/spec/formatters/plurals/rules_spec.rb +5 -5
- data/spec/localized/localized_date_spec.rb +1 -1
- data/spec/localized/localized_datetime_spec.rb +8 -13
- data/spec/localized/localized_number_spec.rb +17 -32
- data/spec/localized/localized_object_spec.rb +0 -5
- data/spec/localized/localized_string_spec.rb +40 -2
- data/spec/localized/localized_time_spec.rb +3 -6
- data/spec/localized/localized_timespan_spec.rb +144 -0
- data/spec/normalization_spec.rb +12 -12
- data/spec/parsers/number_parser_spec.rb +5 -5
- data/spec/parsers/parser_spec.rb +60 -0
- data/spec/parsers/segmentation_parser_spec.rb +96 -0
- data/spec/parsers/symbol_table_spec.rb +32 -0
- data/spec/parsers/unicode_regex/character_class_spec.rb +117 -0
- data/spec/parsers/unicode_regex/character_range_spec.rb +21 -0
- data/spec/parsers/unicode_regex/character_set_spec.rb +36 -0
- data/spec/parsers/unicode_regex/literal_spec.rb +34 -0
- data/spec/parsers/unicode_regex/unicode_string_spec.rb +22 -0
- data/spec/parsers/unicode_regex_parser_spec.rb +86 -0
- data/spec/readme_spec.rb +8 -269
- data/spec/shared/break_iterator_spec.rb +72 -0
- data/spec/shared/calendar_spec.rb +5 -4
- data/spec/shared/casefolder_spec.rb +30 -0
- data/spec/shared/casefolding.txt +251 -0
- data/spec/shared/casefolding_expected.txt +251 -0
- data/spec/shared/code_point_spec.rb +44 -14
- data/spec/shared/numbering_system_spec.rb +41 -0
- data/spec/shared/territories_spec.rb +14 -6
- data/spec/shared/unicode_regex_spec.rb +203 -0
- data/spec/spec_helper.rb +17 -0
- data/spec/tokenizers/calendars/date_tokenizer_spec.rb +26 -30
- data/spec/tokenizers/calendars/datetime_tokenizer_spec.rb +11 -90
- data/spec/tokenizers/calendars/time_tokenizer_spec.rb +5 -5
- data/spec/tokenizers/calendars/timespan_tokenizer_spec.rb +17 -7
- data/spec/tokenizers/numbers/number_tokenizer_spec.rb +28 -27
- data/spec/tokenizers/segmentation/segmentation_tokenizer_spec.rb +40 -0
- data/spec/tokenizers/unicode_regex/unicode_regex_tokenizer_spec.rb +190 -0
- data/spec/utils/range_set_spec.rb +171 -0
- data/spec/utils/yaml/yaml_spec.rb +62 -51
- data/twitter_cldr.gemspec +1 -1
- metadata +199 -30
- data/lib/twitter_cldr/formatters/base.rb +0 -47
- data/lib/twitter_cldr/formatters/calendars/date_formatter.rb +0 -19
- data/lib/twitter_cldr/formatters/calendars/time_formatter.rb +0 -19
- data/lib/twitter_cldr/normalization/base.rb +0 -37
- data/lib/twitter_cldr/normalization/hangul.rb +0 -79
- data/lib/twitter_cldr/normalization/nfc.rb +0 -24
- data/lib/twitter_cldr/normalization/nfd.rb +0 -26
- data/lib/twitter_cldr/normalization/nfkc.rb +0 -114
- data/lib/twitter_cldr/normalization/nfkd.rb +0 -120
- data/lib/twitter_cldr/normalization/quick_check.rb +0 -41
- data/lib/twitter_cldr/tokenizers/base.rb +0 -169
- data/lib/twitter_cldr/tokenizers/calendars/datetime_tokenizer.rb +0 -131
- data/lib/twitter_cldr/utils/territories.rb +0 -56
- data/spec/formatters/base_spec.rb +0 -18
- data/spec/formatters/calendars/timespan_formatter_spec.rb +0 -112
- data/spec/normalization/NormalizationTestShort.txt +0 -602
- data/spec/normalization/base_spec.rb +0 -16
- data/spec/normalization/hangul_spec.rb +0 -42
- data/spec/normalization/normalization_spec.rb +0 -113
- data/spec/tokenizers/base_spec.rb +0 -259
- data/spec/utils/territories_spec.rb +0 -16
|
@@ -1,1548 +1,1585 @@
|
|
|
1
|
-
---
|
|
2
|
-
:cy:
|
|
3
|
-
:currencies:
|
|
4
|
-
:ADP:
|
|
5
|
-
:one: Andorran peseta
|
|
6
|
-
:other: Andorran pesetas
|
|
7
|
-
:AED:
|
|
8
|
-
:few: Dirham Yr Emiradau Arabaidd Unedig
|
|
9
|
-
:many: Dirham Yr Emiradau Arabaidd Unedig
|
|
10
|
-
:one: Dirham Yr Emiradau Arabaidd Unedig
|
|
11
|
-
:other: Dirham Yr Emiradau Arabaidd Unedig
|
|
12
|
-
:two: Dirham Yr Emiradau Arabaidd Unedig
|
|
13
|
-
:zero: Dirham Yr Emiradau Arabaidd Unedig
|
|
14
|
-
:AFA:
|
|
15
|
-
:one: Afghan afghani (1927
|
|
16
|
-
:other: Afghan afghanis (1927
|
|
17
|
-
:AFN:
|
|
18
|
-
:few: Afghani Afghanistan
|
|
19
|
-
:many: Afghani Afghanistan
|
|
20
|
-
:one: Afghani Afghanistan
|
|
21
|
-
:other: Afghani Afghanistan
|
|
22
|
-
:two: Afghani Afghanistan
|
|
23
|
-
:zero: Afghani Afghanistan
|
|
24
|
-
:ALK:
|
|
25
|
-
:one: Albanian lek (1946
|
|
26
|
-
:other: Albanian lekë (1946
|
|
27
|
-
:ALL:
|
|
28
|
-
:few: Lek Albania
|
|
29
|
-
:many: Lek Albania
|
|
30
|
-
:one: Lek Albania
|
|
31
|
-
:other: Lek Albania
|
|
32
|
-
:two: Lek Albania
|
|
33
|
-
:zero: Lek Albania
|
|
34
|
-
:AMD:
|
|
35
|
-
:few: Dram Armenia
|
|
36
|
-
:many: Dram Armenia
|
|
37
|
-
:one: Dram Armenia
|
|
38
|
-
:other: Dram Armenia
|
|
39
|
-
:two: Dram Armenia
|
|
40
|
-
:zero: Dram Armenia
|
|
41
|
-
:ANG:
|
|
42
|
-
:few: Guilder Antilles yr Iseldiroedd
|
|
43
|
-
:many: Guilder Antilles yr Iseldiroedd
|
|
44
|
-
:one: Guilder Antilles yr Iseldiroedd
|
|
45
|
-
:other: Guilder Antilles yr Iseldiroedd
|
|
46
|
-
:two: Guilder Antilles yr Iseldiroedd
|
|
47
|
-
:zero: Guilder Antilles yr Iseldiroedd
|
|
48
|
-
:AOA:
|
|
49
|
-
:few: Kwanza Angola
|
|
50
|
-
:many: Kwanza Angola
|
|
51
|
-
:one: Kwanza Angola
|
|
52
|
-
:other: Kwanza Angola
|
|
53
|
-
:two: Kwanza Angola
|
|
54
|
-
:zero: Kwanza Angola
|
|
55
|
-
:AOK:
|
|
56
|
-
:one: Angolan kwanza (1977
|
|
57
|
-
:other: Angolan kwanzas (1977
|
|
58
|
-
:AON:
|
|
59
|
-
:one: Angolan new kwanza (1990
|
|
60
|
-
:other: Angolan new kwanzas (1990
|
|
61
|
-
:AOR:
|
|
62
|
-
:one: Angolan readjusted kwanza (1995
|
|
63
|
-
:other: Angolan readjusted kwanzas (1995
|
|
64
|
-
:ARA:
|
|
65
|
-
:one: Argentine austral
|
|
66
|
-
:other: Argentine australs
|
|
67
|
-
:ARL:
|
|
68
|
-
:one: Argentine peso ley (1970
|
|
69
|
-
:other: Argentine pesos ley (1970
|
|
70
|
-
:ARM:
|
|
71
|
-
:one: Argentine peso (1881
|
|
72
|
-
:other: Argentine pesos (1881
|
|
73
|
-
:ARP:
|
|
74
|
-
:one: Argentine peso (1983
|
|
75
|
-
:other: Argentine pesos (1983
|
|
76
|
-
:ARS:
|
|
77
|
-
:few: Peso yr Ariannin
|
|
78
|
-
:many: Peso yr Ariannin
|
|
79
|
-
:one: Peso yr Ariannin
|
|
80
|
-
:other: Peso yr Ariannin
|
|
81
|
-
:
|
|
82
|
-
:
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
:
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
:
|
|
89
|
-
:
|
|
90
|
-
:
|
|
91
|
-
:
|
|
92
|
-
:
|
|
93
|
-
:
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
:
|
|
97
|
-
:
|
|
98
|
-
:
|
|
99
|
-
:
|
|
100
|
-
:
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
:
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
:
|
|
107
|
-
:
|
|
108
|
-
:
|
|
109
|
-
:
|
|
110
|
-
:
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
:
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
:
|
|
117
|
-
:
|
|
118
|
-
:
|
|
119
|
-
:
|
|
120
|
-
:
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
:
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
:
|
|
127
|
-
:
|
|
128
|
-
:
|
|
129
|
-
:
|
|
130
|
-
:
|
|
131
|
-
|
|
132
|
-
:
|
|
133
|
-
|
|
134
|
-
:
|
|
135
|
-
:
|
|
136
|
-
:
|
|
137
|
-
:
|
|
138
|
-
|
|
139
|
-
:
|
|
140
|
-
:
|
|
141
|
-
:
|
|
142
|
-
:one: Belgian franc
|
|
143
|
-
:other: Belgian francs
|
|
144
|
-
:
|
|
145
|
-
:one: Belgian franc
|
|
146
|
-
:other: Belgian francs
|
|
147
|
-
:
|
|
148
|
-
:one:
|
|
149
|
-
:other:
|
|
150
|
-
:
|
|
151
|
-
:one: Bulgarian
|
|
152
|
-
:other: Bulgarian
|
|
153
|
-
:
|
|
154
|
-
:
|
|
155
|
-
:
|
|
156
|
-
|
|
157
|
-
:
|
|
158
|
-
:
|
|
159
|
-
:
|
|
160
|
-
|
|
161
|
-
:
|
|
162
|
-
:
|
|
163
|
-
:
|
|
164
|
-
:
|
|
165
|
-
:
|
|
166
|
-
|
|
167
|
-
:
|
|
168
|
-
:
|
|
169
|
-
:
|
|
170
|
-
|
|
171
|
-
:
|
|
172
|
-
:
|
|
173
|
-
|
|
174
|
-
:
|
|
175
|
-
:
|
|
176
|
-
:
|
|
177
|
-
|
|
178
|
-
:
|
|
179
|
-
:
|
|
180
|
-
|
|
181
|
-
:
|
|
182
|
-
:
|
|
183
|
-
:
|
|
184
|
-
|
|
185
|
-
:
|
|
186
|
-
:
|
|
187
|
-
:
|
|
188
|
-
|
|
189
|
-
:
|
|
190
|
-
:
|
|
191
|
-
|
|
192
|
-
:
|
|
193
|
-
:
|
|
194
|
-
:
|
|
195
|
-
:
|
|
196
|
-
|
|
197
|
-
:
|
|
198
|
-
|
|
199
|
-
:one:
|
|
200
|
-
:other:
|
|
201
|
-
|
|
202
|
-
:
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
:
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
:
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
:
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
:
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
:
|
|
218
|
-
|
|
219
|
-
:one:
|
|
220
|
-
:other:
|
|
221
|
-
|
|
222
|
-
:
|
|
223
|
-
:
|
|
224
|
-
|
|
225
|
-
:
|
|
226
|
-
:
|
|
227
|
-
|
|
228
|
-
:
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
:
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
:
|
|
235
|
-
|
|
236
|
-
:one:
|
|
237
|
-
:other:
|
|
238
|
-
|
|
239
|
-
:
|
|
240
|
-
|
|
241
|
-
:
|
|
242
|
-
:
|
|
243
|
-
:
|
|
244
|
-
:
|
|
245
|
-
:
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
:
|
|
249
|
-
:
|
|
250
|
-
|
|
251
|
-
:
|
|
252
|
-
:
|
|
253
|
-
|
|
254
|
-
:
|
|
255
|
-
:
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
:
|
|
259
|
-
:
|
|
260
|
-
|
|
261
|
-
:
|
|
262
|
-
:
|
|
263
|
-
|
|
264
|
-
:
|
|
265
|
-
:
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
:
|
|
269
|
-
:
|
|
270
|
-
:
|
|
271
|
-
:
|
|
272
|
-
:two:
|
|
273
|
-
:zero:
|
|
274
|
-
:
|
|
275
|
-
:few: Doler
|
|
276
|
-
:many: Doler
|
|
277
|
-
:one: Doler
|
|
278
|
-
:other: Doler
|
|
279
|
-
:symbol:
|
|
280
|
-
:two: Doler
|
|
281
|
-
:zero: Doler
|
|
282
|
-
:
|
|
283
|
-
:few:
|
|
284
|
-
:many:
|
|
285
|
-
:one:
|
|
286
|
-
:other:
|
|
287
|
-
:
|
|
288
|
-
:
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
:
|
|
292
|
-
|
|
293
|
-
:
|
|
294
|
-
:
|
|
295
|
-
:
|
|
296
|
-
:
|
|
297
|
-
|
|
298
|
-
:
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
:
|
|
302
|
-
|
|
303
|
-
:one:
|
|
304
|
-
:other:
|
|
305
|
-
|
|
306
|
-
:
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
:
|
|
310
|
-
|
|
311
|
-
:one:
|
|
312
|
-
:other:
|
|
313
|
-
|
|
314
|
-
:
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
:
|
|
318
|
-
|
|
319
|
-
:
|
|
320
|
-
:
|
|
321
|
-
:
|
|
322
|
-
:
|
|
323
|
-
:
|
|
324
|
-
|
|
325
|
-
:
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
:
|
|
329
|
-
:
|
|
330
|
-
:
|
|
331
|
-
:
|
|
332
|
-
:
|
|
333
|
-
|
|
334
|
-
:
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
:
|
|
338
|
-
:
|
|
339
|
-
:
|
|
340
|
-
:
|
|
341
|
-
:two:
|
|
342
|
-
:zero:
|
|
343
|
-
:
|
|
344
|
-
:one:
|
|
345
|
-
:other:
|
|
346
|
-
:
|
|
347
|
-
:
|
|
348
|
-
:
|
|
349
|
-
|
|
350
|
-
:
|
|
351
|
-
:
|
|
352
|
-
:
|
|
353
|
-
:
|
|
354
|
-
|
|
355
|
-
:
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
:
|
|
359
|
-
:
|
|
360
|
-
|
|
361
|
-
:
|
|
362
|
-
:
|
|
363
|
-
|
|
364
|
-
:
|
|
365
|
-
:
|
|
366
|
-
:
|
|
367
|
-
|
|
368
|
-
:
|
|
369
|
-
:
|
|
370
|
-
|
|
371
|
-
:
|
|
372
|
-
:
|
|
373
|
-
|
|
374
|
-
:
|
|
375
|
-
|
|
376
|
-
:
|
|
377
|
-
:
|
|
378
|
-
:
|
|
379
|
-
:
|
|
380
|
-
|
|
381
|
-
:
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
:
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
:
|
|
388
|
-
:
|
|
389
|
-
:
|
|
390
|
-
:
|
|
391
|
-
:
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
:
|
|
395
|
-
|
|
396
|
-
:one:
|
|
397
|
-
:other:
|
|
398
|
-
|
|
399
|
-
:
|
|
400
|
-
|
|
401
|
-
:
|
|
402
|
-
:
|
|
403
|
-
:
|
|
404
|
-
:
|
|
405
|
-
|
|
406
|
-
:
|
|
407
|
-
|
|
408
|
-
:
|
|
409
|
-
:
|
|
410
|
-
:
|
|
411
|
-
:
|
|
412
|
-
|
|
413
|
-
:
|
|
414
|
-
|
|
415
|
-
:one:
|
|
416
|
-
:other:
|
|
417
|
-
|
|
418
|
-
:
|
|
419
|
-
:
|
|
420
|
-
:
|
|
421
|
-
:
|
|
422
|
-
:
|
|
423
|
-
|
|
424
|
-
:
|
|
425
|
-
:
|
|
426
|
-
:
|
|
427
|
-
|
|
428
|
-
:
|
|
429
|
-
:
|
|
430
|
-
:
|
|
431
|
-
:
|
|
432
|
-
:
|
|
433
|
-
|
|
434
|
-
:
|
|
435
|
-
:
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
:
|
|
439
|
-
:
|
|
440
|
-
|
|
441
|
-
:
|
|
442
|
-
:
|
|
443
|
-
:
|
|
444
|
-
:
|
|
445
|
-
:
|
|
446
|
-
|
|
447
|
-
:
|
|
448
|
-
:
|
|
449
|
-
:
|
|
450
|
-
|
|
451
|
-
:
|
|
452
|
-
:
|
|
453
|
-
:
|
|
454
|
-
:
|
|
455
|
-
:
|
|
456
|
-
|
|
457
|
-
:
|
|
458
|
-
:
|
|
459
|
-
:
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
:
|
|
463
|
-
:
|
|
464
|
-
|
|
465
|
-
:
|
|
466
|
-
:
|
|
467
|
-
|
|
468
|
-
:
|
|
469
|
-
:
|
|
470
|
-
:
|
|
471
|
-
|
|
472
|
-
:
|
|
473
|
-
:
|
|
474
|
-
:
|
|
475
|
-
|
|
476
|
-
:
|
|
477
|
-
:
|
|
478
|
-
:
|
|
479
|
-
:
|
|
480
|
-
:
|
|
481
|
-
|
|
482
|
-
:
|
|
483
|
-
:
|
|
484
|
-
:
|
|
485
|
-
:
|
|
486
|
-
|
|
487
|
-
:
|
|
488
|
-
:
|
|
489
|
-
|
|
490
|
-
:
|
|
491
|
-
:
|
|
492
|
-
|
|
493
|
-
|
|
494
|
-
:
|
|
495
|
-
:
|
|
496
|
-
|
|
497
|
-
:
|
|
498
|
-
:
|
|
499
|
-
|
|
500
|
-
:
|
|
501
|
-
:
|
|
502
|
-
|
|
503
|
-
:
|
|
504
|
-
|
|
505
|
-
:one:
|
|
506
|
-
:other:
|
|
507
|
-
|
|
508
|
-
:
|
|
509
|
-
|
|
510
|
-
:
|
|
511
|
-
:
|
|
512
|
-
:
|
|
513
|
-
:
|
|
514
|
-
|
|
515
|
-
:
|
|
516
|
-
|
|
517
|
-
|
|
518
|
-
:
|
|
519
|
-
:
|
|
520
|
-
:
|
|
521
|
-
:
|
|
522
|
-
:
|
|
523
|
-
|
|
524
|
-
:
|
|
525
|
-
|
|
526
|
-
:
|
|
527
|
-
:
|
|
528
|
-
:
|
|
529
|
-
:
|
|
530
|
-
|
|
531
|
-
:
|
|
532
|
-
:
|
|
533
|
-
:
|
|
534
|
-
:
|
|
535
|
-
:
|
|
536
|
-
|
|
537
|
-
:
|
|
538
|
-
:
|
|
539
|
-
|
|
540
|
-
|
|
541
|
-
:
|
|
542
|
-
:
|
|
543
|
-
:
|
|
544
|
-
:
|
|
545
|
-
:
|
|
546
|
-
|
|
547
|
-
|
|
548
|
-
:
|
|
549
|
-
|
|
550
|
-
|
|
551
|
-
:
|
|
552
|
-
|
|
553
|
-
|
|
554
|
-
:
|
|
555
|
-
:
|
|
556
|
-
|
|
557
|
-
:
|
|
558
|
-
:
|
|
559
|
-
|
|
560
|
-
:
|
|
561
|
-
:
|
|
562
|
-
:
|
|
563
|
-
|
|
564
|
-
:
|
|
565
|
-
:
|
|
566
|
-
|
|
567
|
-
|
|
568
|
-
:
|
|
569
|
-
|
|
570
|
-
:
|
|
571
|
-
:
|
|
572
|
-
:
|
|
573
|
-
:
|
|
574
|
-
|
|
575
|
-
:
|
|
576
|
-
:
|
|
577
|
-
:
|
|
578
|
-
:few:
|
|
579
|
-
:many:
|
|
580
|
-
:one:
|
|
581
|
-
:other:
|
|
582
|
-
:
|
|
583
|
-
:
|
|
584
|
-
|
|
585
|
-
|
|
586
|
-
:
|
|
587
|
-
:
|
|
588
|
-
:
|
|
589
|
-
:
|
|
590
|
-
:
|
|
591
|
-
|
|
592
|
-
|
|
593
|
-
:
|
|
594
|
-
:
|
|
595
|
-
|
|
596
|
-
:
|
|
597
|
-
:
|
|
598
|
-
|
|
599
|
-
:
|
|
600
|
-
:
|
|
601
|
-
:
|
|
602
|
-
|
|
603
|
-
:
|
|
604
|
-
:
|
|
605
|
-
|
|
606
|
-
:
|
|
607
|
-
:
|
|
608
|
-
|
|
609
|
-
|
|
610
|
-
:
|
|
611
|
-
|
|
612
|
-
:one:
|
|
613
|
-
:other:
|
|
614
|
-
|
|
615
|
-
:
|
|
616
|
-
|
|
617
|
-
:
|
|
618
|
-
:
|
|
619
|
-
:
|
|
620
|
-
:
|
|
621
|
-
:
|
|
622
|
-
|
|
623
|
-
|
|
624
|
-
:
|
|
625
|
-
:
|
|
626
|
-
|
|
627
|
-
:
|
|
628
|
-
:
|
|
629
|
-
|
|
630
|
-
|
|
631
|
-
:
|
|
632
|
-
|
|
633
|
-
:
|
|
634
|
-
:
|
|
635
|
-
:
|
|
636
|
-
:
|
|
637
|
-
|
|
638
|
-
:
|
|
639
|
-
:
|
|
640
|
-
|
|
641
|
-
:
|
|
642
|
-
:
|
|
643
|
-
:
|
|
644
|
-
|
|
645
|
-
:
|
|
646
|
-
:
|
|
647
|
-
|
|
648
|
-
|
|
649
|
-
:
|
|
650
|
-
:
|
|
651
|
-
:
|
|
652
|
-
:
|
|
653
|
-
:
|
|
654
|
-
|
|
655
|
-
|
|
656
|
-
:
|
|
657
|
-
|
|
658
|
-
:
|
|
659
|
-
:
|
|
660
|
-
:
|
|
661
|
-
:
|
|
662
|
-
|
|
663
|
-
:
|
|
664
|
-
|
|
665
|
-
|
|
666
|
-
:
|
|
667
|
-
:
|
|
668
|
-
:
|
|
669
|
-
:
|
|
670
|
-
:
|
|
671
|
-
|
|
672
|
-
|
|
673
|
-
:
|
|
674
|
-
:
|
|
675
|
-
|
|
676
|
-
:
|
|
677
|
-
:
|
|
678
|
-
:
|
|
679
|
-
|
|
680
|
-
:
|
|
681
|
-
:
|
|
682
|
-
:
|
|
683
|
-
|
|
684
|
-
:
|
|
685
|
-
:
|
|
686
|
-
|
|
687
|
-
:
|
|
688
|
-
:
|
|
689
|
-
:
|
|
690
|
-
|
|
691
|
-
:
|
|
692
|
-
:
|
|
693
|
-
|
|
694
|
-
:
|
|
695
|
-
:
|
|
696
|
-
:
|
|
697
|
-
:
|
|
698
|
-
|
|
699
|
-
:
|
|
700
|
-
|
|
701
|
-
:
|
|
702
|
-
:
|
|
703
|
-
:
|
|
704
|
-
:
|
|
705
|
-
|
|
706
|
-
:
|
|
707
|
-
|
|
708
|
-
:
|
|
709
|
-
:
|
|
710
|
-
:
|
|
711
|
-
:
|
|
712
|
-
|
|
713
|
-
:
|
|
714
|
-
|
|
715
|
-
:one:
|
|
716
|
-
:other:
|
|
717
|
-
|
|
718
|
-
:
|
|
719
|
-
:
|
|
720
|
-
:
|
|
721
|
-
:few:
|
|
722
|
-
:many:
|
|
723
|
-
:one:
|
|
724
|
-
:other:
|
|
725
|
-
:
|
|
726
|
-
:
|
|
727
|
-
|
|
728
|
-
|
|
729
|
-
:
|
|
730
|
-
:
|
|
731
|
-
:
|
|
732
|
-
:
|
|
733
|
-
:
|
|
734
|
-
|
|
735
|
-
|
|
736
|
-
:
|
|
737
|
-
|
|
738
|
-
:one:
|
|
739
|
-
:other:
|
|
740
|
-
|
|
741
|
-
:
|
|
742
|
-
|
|
743
|
-
:
|
|
744
|
-
:
|
|
745
|
-
:
|
|
746
|
-
:
|
|
747
|
-
:
|
|
748
|
-
|
|
749
|
-
|
|
750
|
-
:
|
|
751
|
-
:
|
|
752
|
-
:
|
|
753
|
-
:
|
|
754
|
-
:
|
|
755
|
-
|
|
756
|
-
|
|
757
|
-
:
|
|
758
|
-
:
|
|
759
|
-
:
|
|
760
|
-
:
|
|
761
|
-
:two:
|
|
762
|
-
:zero:
|
|
763
|
-
:
|
|
764
|
-
:few:
|
|
765
|
-
:many:
|
|
766
|
-
:one:
|
|
767
|
-
:other:
|
|
768
|
-
:
|
|
769
|
-
:
|
|
770
|
-
|
|
771
|
-
|
|
772
|
-
:
|
|
773
|
-
:
|
|
774
|
-
:
|
|
775
|
-
:
|
|
776
|
-
:
|
|
777
|
-
|
|
778
|
-
:
|
|
779
|
-
|
|
780
|
-
|
|
781
|
-
:
|
|
782
|
-
:
|
|
783
|
-
:
|
|
784
|
-
:
|
|
785
|
-
:
|
|
786
|
-
|
|
787
|
-
|
|
788
|
-
:
|
|
789
|
-
:
|
|
790
|
-
|
|
791
|
-
:
|
|
792
|
-
:
|
|
793
|
-
:
|
|
794
|
-
:
|
|
795
|
-
:
|
|
796
|
-
|
|
797
|
-
:
|
|
798
|
-
:
|
|
799
|
-
|
|
800
|
-
:
|
|
801
|
-
|
|
802
|
-
:one:
|
|
803
|
-
:other:
|
|
804
|
-
|
|
805
|
-
:
|
|
806
|
-
|
|
807
|
-
:one:
|
|
808
|
-
:other:
|
|
809
|
-
|
|
810
|
-
:
|
|
811
|
-
|
|
812
|
-
:one:
|
|
813
|
-
:other:
|
|
814
|
-
|
|
815
|
-
:
|
|
816
|
-
|
|
817
|
-
|
|
818
|
-
:
|
|
819
|
-
:
|
|
820
|
-
|
|
821
|
-
:
|
|
822
|
-
:
|
|
823
|
-
:
|
|
824
|
-
:
|
|
825
|
-
:
|
|
826
|
-
|
|
827
|
-
:
|
|
828
|
-
:
|
|
829
|
-
|
|
830
|
-
|
|
831
|
-
:
|
|
832
|
-
|
|
833
|
-
|
|
834
|
-
:
|
|
835
|
-
:
|
|
836
|
-
:
|
|
837
|
-
:
|
|
838
|
-
:
|
|
839
|
-
|
|
840
|
-
|
|
841
|
-
:
|
|
842
|
-
:
|
|
843
|
-
:
|
|
844
|
-
:
|
|
845
|
-
:
|
|
846
|
-
|
|
847
|
-
|
|
848
|
-
:
|
|
849
|
-
|
|
850
|
-
|
|
851
|
-
:
|
|
852
|
-
:
|
|
853
|
-
|
|
854
|
-
:
|
|
855
|
-
:
|
|
856
|
-
:
|
|
857
|
-
:
|
|
858
|
-
:
|
|
859
|
-
|
|
860
|
-
:
|
|
861
|
-
:
|
|
862
|
-
|
|
863
|
-
|
|
864
|
-
:
|
|
865
|
-
:
|
|
866
|
-
:
|
|
867
|
-
:
|
|
868
|
-
:
|
|
869
|
-
|
|
870
|
-
|
|
871
|
-
:
|
|
872
|
-
:
|
|
873
|
-
|
|
874
|
-
:
|
|
875
|
-
:
|
|
876
|
-
|
|
877
|
-
:
|
|
878
|
-
:
|
|
879
|
-
:
|
|
880
|
-
|
|
881
|
-
:
|
|
882
|
-
:
|
|
883
|
-
:
|
|
884
|
-
:
|
|
885
|
-
:
|
|
886
|
-
|
|
887
|
-
:
|
|
888
|
-
:
|
|
889
|
-
:
|
|
890
|
-
|
|
891
|
-
:
|
|
892
|
-
:
|
|
893
|
-
:
|
|
894
|
-
:
|
|
895
|
-
:
|
|
896
|
-
|
|
897
|
-
:
|
|
898
|
-
:
|
|
899
|
-
:
|
|
900
|
-
:
|
|
901
|
-
|
|
902
|
-
:
|
|
903
|
-
|
|
904
|
-
:one:
|
|
905
|
-
:other:
|
|
906
|
-
|
|
907
|
-
:
|
|
908
|
-
|
|
909
|
-
:
|
|
910
|
-
:
|
|
911
|
-
:
|
|
912
|
-
:
|
|
913
|
-
|
|
914
|
-
:
|
|
915
|
-
|
|
916
|
-
:one:
|
|
917
|
-
:other:
|
|
918
|
-
|
|
919
|
-
:
|
|
920
|
-
|
|
921
|
-
|
|
922
|
-
:
|
|
923
|
-
:
|
|
924
|
-
:
|
|
925
|
-
:
|
|
926
|
-
:two:
|
|
927
|
-
:zero:
|
|
928
|
-
:
|
|
929
|
-
:one:
|
|
930
|
-
:other:
|
|
931
|
-
:
|
|
932
|
-
:
|
|
933
|
-
:
|
|
934
|
-
|
|
935
|
-
:
|
|
936
|
-
:
|
|
937
|
-
:
|
|
938
|
-
|
|
939
|
-
:
|
|
940
|
-
:
|
|
941
|
-
|
|
942
|
-
:
|
|
943
|
-
:
|
|
944
|
-
|
|
945
|
-
|
|
946
|
-
:
|
|
947
|
-
|
|
948
|
-
:
|
|
949
|
-
:
|
|
950
|
-
:
|
|
951
|
-
:
|
|
952
|
-
:
|
|
953
|
-
|
|
954
|
-
|
|
955
|
-
:
|
|
956
|
-
|
|
957
|
-
:one:
|
|
958
|
-
:other:
|
|
959
|
-
|
|
960
|
-
:
|
|
961
|
-
|
|
962
|
-
:
|
|
963
|
-
:
|
|
964
|
-
:
|
|
965
|
-
:
|
|
966
|
-
|
|
967
|
-
:
|
|
968
|
-
|
|
969
|
-
|
|
970
|
-
:
|
|
971
|
-
|
|
972
|
-
|
|
973
|
-
:
|
|
974
|
-
:
|
|
975
|
-
:
|
|
976
|
-
:
|
|
977
|
-
:
|
|
978
|
-
|
|
979
|
-
|
|
980
|
-
:
|
|
981
|
-
|
|
982
|
-
:
|
|
983
|
-
:
|
|
984
|
-
:
|
|
985
|
-
:
|
|
986
|
-
:
|
|
987
|
-
|
|
988
|
-
|
|
989
|
-
:
|
|
990
|
-
:
|
|
991
|
-
:
|
|
992
|
-
:
|
|
993
|
-
:two:
|
|
994
|
-
:zero:
|
|
995
|
-
:
|
|
996
|
-
:
|
|
997
|
-
:
|
|
998
|
-
|
|
999
|
-
:
|
|
1000
|
-
:
|
|
1001
|
-
:
|
|
1002
|
-
:
|
|
1003
|
-
|
|
1004
|
-
:
|
|
1005
|
-
|
|
1006
|
-
:one:
|
|
1007
|
-
:other:
|
|
1008
|
-
|
|
1009
|
-
:
|
|
1010
|
-
|
|
1011
|
-
:
|
|
1012
|
-
:
|
|
1013
|
-
:
|
|
1014
|
-
:
|
|
1015
|
-
|
|
1016
|
-
:
|
|
1017
|
-
|
|
1018
|
-
:one:
|
|
1019
|
-
:other:
|
|
1020
|
-
|
|
1021
|
-
:
|
|
1022
|
-
|
|
1023
|
-
:
|
|
1024
|
-
:
|
|
1025
|
-
:
|
|
1026
|
-
:
|
|
1027
|
-
|
|
1028
|
-
:
|
|
1029
|
-
:
|
|
1030
|
-
:
|
|
1031
|
-
:few:
|
|
1032
|
-
:many:
|
|
1033
|
-
:one:
|
|
1034
|
-
:other:
|
|
1035
|
-
:two:
|
|
1036
|
-
:zero:
|
|
1037
|
-
:
|
|
1038
|
-
:few:
|
|
1039
|
-
:many:
|
|
1040
|
-
:one:
|
|
1041
|
-
:other:
|
|
1042
|
-
:two:
|
|
1043
|
-
:zero:
|
|
1044
|
-
:
|
|
1045
|
-
:
|
|
1046
|
-
:
|
|
1047
|
-
|
|
1048
|
-
:
|
|
1049
|
-
:
|
|
1050
|
-
:
|
|
1051
|
-
|
|
1052
|
-
:
|
|
1053
|
-
:
|
|
1054
|
-
|
|
1055
|
-
:
|
|
1056
|
-
:
|
|
1057
|
-
|
|
1058
|
-
|
|
1059
|
-
:
|
|
1060
|
-
:
|
|
1061
|
-
|
|
1062
|
-
:
|
|
1063
|
-
:
|
|
1064
|
-
:
|
|
1065
|
-
:few:
|
|
1066
|
-
:many:
|
|
1067
|
-
:one:
|
|
1068
|
-
:other:
|
|
1069
|
-
:
|
|
1070
|
-
:
|
|
1071
|
-
|
|
1072
|
-
|
|
1073
|
-
:
|
|
1074
|
-
:
|
|
1075
|
-
:
|
|
1076
|
-
:
|
|
1077
|
-
:
|
|
1078
|
-
|
|
1079
|
-
|
|
1080
|
-
:
|
|
1081
|
-
|
|
1082
|
-
:one:
|
|
1083
|
-
:other:
|
|
1084
|
-
|
|
1085
|
-
:
|
|
1086
|
-
|
|
1087
|
-
:one:
|
|
1088
|
-
:other:
|
|
1089
|
-
|
|
1090
|
-
:
|
|
1091
|
-
|
|
1092
|
-
|
|
1093
|
-
:
|
|
1094
|
-
:
|
|
1095
|
-
:
|
|
1096
|
-
:
|
|
1097
|
-
:
|
|
1098
|
-
|
|
1099
|
-
:
|
|
1100
|
-
|
|
1101
|
-
:
|
|
1102
|
-
:
|
|
1103
|
-
:
|
|
1104
|
-
:
|
|
1105
|
-
|
|
1106
|
-
:
|
|
1107
|
-
|
|
1108
|
-
|
|
1109
|
-
:
|
|
1110
|
-
|
|
1111
|
-
:one:
|
|
1112
|
-
:other:
|
|
1113
|
-
|
|
1114
|
-
:
|
|
1115
|
-
|
|
1116
|
-
:
|
|
1117
|
-
:
|
|
1118
|
-
:
|
|
1119
|
-
:
|
|
1120
|
-
|
|
1121
|
-
:
|
|
1122
|
-
|
|
1123
|
-
:
|
|
1124
|
-
:
|
|
1125
|
-
:
|
|
1126
|
-
:
|
|
1127
|
-
|
|
1128
|
-
:
|
|
1129
|
-
|
|
1130
|
-
:
|
|
1131
|
-
:
|
|
1132
|
-
:
|
|
1133
|
-
:
|
|
1134
|
-
|
|
1135
|
-
:
|
|
1136
|
-
|
|
1137
|
-
:
|
|
1138
|
-
|
|
1139
|
-
|
|
1140
|
-
:
|
|
1141
|
-
:
|
|
1142
|
-
:
|
|
1143
|
-
:
|
|
1144
|
-
:
|
|
1145
|
-
|
|
1146
|
-
|
|
1147
|
-
:
|
|
1148
|
-
:
|
|
1149
|
-
|
|
1150
|
-
:
|
|
1151
|
-
:
|
|
1152
|
-
|
|
1153
|
-
:
|
|
1154
|
-
:
|
|
1155
|
-
:
|
|
1156
|
-
|
|
1157
|
-
:
|
|
1158
|
-
:
|
|
1159
|
-
:
|
|
1160
|
-
|
|
1161
|
-
:
|
|
1162
|
-
:
|
|
1163
|
-
|
|
1164
|
-
:
|
|
1165
|
-
:
|
|
1166
|
-
:
|
|
1167
|
-
|
|
1168
|
-
:
|
|
1169
|
-
:
|
|
1170
|
-
:
|
|
1171
|
-
:
|
|
1172
|
-
:
|
|
1173
|
-
|
|
1174
|
-
:
|
|
1175
|
-
:
|
|
1176
|
-
|
|
1177
|
-
|
|
1178
|
-
:
|
|
1179
|
-
:
|
|
1180
|
-
|
|
1181
|
-
:
|
|
1182
|
-
:
|
|
1183
|
-
|
|
1184
|
-
:
|
|
1185
|
-
:
|
|
1186
|
-
:
|
|
1187
|
-
|
|
1188
|
-
:
|
|
1189
|
-
:
|
|
1190
|
-
|
|
1191
|
-
:
|
|
1192
|
-
:
|
|
1193
|
-
:
|
|
1194
|
-
:
|
|
1195
|
-
|
|
1196
|
-
:
|
|
1197
|
-
|
|
1198
|
-
:one:
|
|
1199
|
-
:other:
|
|
1200
|
-
|
|
1201
|
-
:
|
|
1202
|
-
|
|
1203
|
-
:one:
|
|
1204
|
-
:other:
|
|
1205
|
-
|
|
1206
|
-
:
|
|
1207
|
-
|
|
1208
|
-
|
|
1209
|
-
:
|
|
1210
|
-
:
|
|
1211
|
-
:
|
|
1212
|
-
:
|
|
1213
|
-
:
|
|
1214
|
-
|
|
1215
|
-
|
|
1216
|
-
:
|
|
1217
|
-
|
|
1218
|
-
:one:
|
|
1219
|
-
:other:
|
|
1220
|
-
|
|
1221
|
-
:
|
|
1222
|
-
|
|
1223
|
-
:
|
|
1224
|
-
:
|
|
1225
|
-
:
|
|
1226
|
-
:
|
|
1227
|
-
|
|
1228
|
-
:
|
|
1229
|
-
:
|
|
1230
|
-
|
|
1231
|
-
:
|
|
1232
|
-
:
|
|
1233
|
-
|
|
1234
|
-
|
|
1235
|
-
:
|
|
1236
|
-
:
|
|
1237
|
-
:
|
|
1238
|
-
:
|
|
1239
|
-
:
|
|
1240
|
-
:
|
|
1241
|
-
|
|
1242
|
-
|
|
1243
|
-
:
|
|
1244
|
-
:
|
|
1245
|
-
|
|
1246
|
-
:
|
|
1247
|
-
:
|
|
1248
|
-
|
|
1249
|
-
:
|
|
1250
|
-
:
|
|
1251
|
-
|
|
1252
|
-
|
|
1253
|
-
:
|
|
1254
|
-
|
|
1255
|
-
|
|
1256
|
-
:
|
|
1257
|
-
:
|
|
1258
|
-
:
|
|
1259
|
-
:
|
|
1260
|
-
:
|
|
1261
|
-
|
|
1262
|
-
|
|
1263
|
-
:
|
|
1264
|
-
:
|
|
1265
|
-
:
|
|
1266
|
-
:
|
|
1267
|
-
:
|
|
1268
|
-
|
|
1269
|
-
|
|
1270
|
-
:
|
|
1271
|
-
:
|
|
1272
|
-
:
|
|
1273
|
-
:
|
|
1274
|
-
:two:
|
|
1275
|
-
:zero:
|
|
1276
|
-
:
|
|
1277
|
-
:one:
|
|
1278
|
-
:other:
|
|
1279
|
-
:
|
|
1280
|
-
:
|
|
1281
|
-
:
|
|
1282
|
-
|
|
1283
|
-
:
|
|
1284
|
-
:
|
|
1285
|
-
:
|
|
1286
|
-
|
|
1287
|
-
:
|
|
1288
|
-
:
|
|
1289
|
-
:
|
|
1290
|
-
:few:
|
|
1291
|
-
:many:
|
|
1292
|
-
:one:
|
|
1293
|
-
:other:
|
|
1294
|
-
:two:
|
|
1295
|
-
:zero:
|
|
1296
|
-
:
|
|
1297
|
-
:few:
|
|
1298
|
-
:many:
|
|
1299
|
-
:one:
|
|
1300
|
-
:other:
|
|
1301
|
-
:
|
|
1302
|
-
:
|
|
1303
|
-
|
|
1304
|
-
|
|
1305
|
-
:
|
|
1306
|
-
:
|
|
1307
|
-
:
|
|
1308
|
-
:
|
|
1309
|
-
:
|
|
1310
|
-
|
|
1311
|
-
|
|
1312
|
-
:
|
|
1313
|
-
|
|
1314
|
-
:one:
|
|
1315
|
-
:other:
|
|
1316
|
-
|
|
1317
|
-
:
|
|
1318
|
-
|
|
1319
|
-
:one:
|
|
1320
|
-
:other:
|
|
1321
|
-
|
|
1322
|
-
:
|
|
1323
|
-
:
|
|
1324
|
-
:
|
|
1325
|
-
:few:
|
|
1326
|
-
:many:
|
|
1327
|
-
:one:
|
|
1328
|
-
:other:
|
|
1329
|
-
:
|
|
1330
|
-
:
|
|
1331
|
-
|
|
1332
|
-
|
|
1333
|
-
:
|
|
1334
|
-
:
|
|
1335
|
-
:
|
|
1336
|
-
:
|
|
1337
|
-
:
|
|
1338
|
-
:
|
|
1339
|
-
|
|
1340
|
-
|
|
1341
|
-
:
|
|
1342
|
-
|
|
1343
|
-
:one:
|
|
1344
|
-
:other:
|
|
1345
|
-
|
|
1346
|
-
:
|
|
1347
|
-
|
|
1348
|
-
|
|
1349
|
-
:
|
|
1350
|
-
:
|
|
1351
|
-
|
|
1352
|
-
:
|
|
1353
|
-
:
|
|
1354
|
-
:
|
|
1355
|
-
|
|
1356
|
-
:
|
|
1357
|
-
:
|
|
1358
|
-
:
|
|
1359
|
-
:
|
|
1360
|
-
:
|
|
1361
|
-
|
|
1362
|
-
:
|
|
1363
|
-
:
|
|
1364
|
-
:
|
|
1365
|
-
|
|
1366
|
-
:
|
|
1367
|
-
:
|
|
1368
|
-
:
|
|
1369
|
-
:few:
|
|
1370
|
-
:many:
|
|
1371
|
-
:one:
|
|
1372
|
-
:other:
|
|
1373
|
-
:
|
|
1374
|
-
:
|
|
1375
|
-
|
|
1376
|
-
|
|
1377
|
-
:
|
|
1378
|
-
:
|
|
1379
|
-
|
|
1380
|
-
:
|
|
1381
|
-
:
|
|
1382
|
-
|
|
1383
|
-
|
|
1384
|
-
:
|
|
1385
|
-
|
|
1386
|
-
|
|
1387
|
-
:
|
|
1388
|
-
|
|
1389
|
-
:
|
|
1390
|
-
:
|
|
1391
|
-
:
|
|
1392
|
-
:
|
|
1393
|
-
|
|
1394
|
-
:
|
|
1395
|
-
:
|
|
1396
|
-
|
|
1397
|
-
:
|
|
1398
|
-
:
|
|
1399
|
-
:
|
|
1400
|
-
|
|
1401
|
-
:
|
|
1402
|
-
:
|
|
1403
|
-
|
|
1404
|
-
:
|
|
1405
|
-
:
|
|
1406
|
-
|
|
1407
|
-
:
|
|
1408
|
-
|
|
1409
|
-
:one:
|
|
1410
|
-
:other:
|
|
1411
|
-
|
|
1412
|
-
:
|
|
1413
|
-
|
|
1414
|
-
|
|
1415
|
-
:
|
|
1416
|
-
:
|
|
1417
|
-
|
|
1418
|
-
:
|
|
1419
|
-
:
|
|
1420
|
-
|
|
1421
|
-
|
|
1422
|
-
:
|
|
1423
|
-
|
|
1424
|
-
|
|
1425
|
-
:
|
|
1426
|
-
|
|
1427
|
-
:
|
|
1428
|
-
:
|
|
1429
|
-
:
|
|
1430
|
-
:
|
|
1431
|
-
|
|
1432
|
-
:
|
|
1433
|
-
:
|
|
1434
|
-
|
|
1435
|
-
:
|
|
1436
|
-
:
|
|
1437
|
-
|
|
1438
|
-
|
|
1439
|
-
:
|
|
1440
|
-
|
|
1441
|
-
:one:
|
|
1442
|
-
:other:
|
|
1443
|
-
|
|
1444
|
-
:
|
|
1445
|
-
:
|
|
1446
|
-
:
|
|
1447
|
-
:
|
|
1448
|
-
:
|
|
1449
|
-
|
|
1450
|
-
:
|
|
1451
|
-
:
|
|
1452
|
-
|
|
1453
|
-
:
|
|
1454
|
-
|
|
1455
|
-
|
|
1456
|
-
:
|
|
1457
|
-
|
|
1458
|
-
|
|
1459
|
-
:
|
|
1460
|
-
:
|
|
1461
|
-
|
|
1462
|
-
:
|
|
1463
|
-
:
|
|
1464
|
-
|
|
1465
|
-
|
|
1466
|
-
:
|
|
1467
|
-
:
|
|
1468
|
-
|
|
1469
|
-
:
|
|
1470
|
-
:
|
|
1471
|
-
|
|
1472
|
-
|
|
1473
|
-
:
|
|
1474
|
-
|
|
1475
|
-
|
|
1476
|
-
:
|
|
1477
|
-
|
|
1478
|
-
|
|
1479
|
-
:
|
|
1480
|
-
|
|
1481
|
-
|
|
1482
|
-
:
|
|
1483
|
-
:
|
|
1484
|
-
|
|
1485
|
-
:
|
|
1486
|
-
:
|
|
1487
|
-
|
|
1488
|
-
:
|
|
1489
|
-
:
|
|
1490
|
-
|
|
1491
|
-
:
|
|
1492
|
-
|
|
1493
|
-
:one:
|
|
1494
|
-
:other:
|
|
1495
|
-
|
|
1496
|
-
:
|
|
1497
|
-
|
|
1498
|
-
:one:
|
|
1499
|
-
:other:
|
|
1500
|
-
|
|
1501
|
-
:
|
|
1502
|
-
:
|
|
1503
|
-
:
|
|
1504
|
-
:one:
|
|
1505
|
-
:other:
|
|
1506
|
-
:
|
|
1507
|
-
:one:
|
|
1508
|
-
:other:
|
|
1509
|
-
:
|
|
1510
|
-
:one:
|
|
1511
|
-
:other:
|
|
1512
|
-
:
|
|
1513
|
-
:
|
|
1514
|
-
:
|
|
1515
|
-
|
|
1516
|
-
:
|
|
1517
|
-
:
|
|
1518
|
-
|
|
1519
|
-
|
|
1520
|
-
:
|
|
1521
|
-
:
|
|
1522
|
-
:
|
|
1523
|
-
:
|
|
1524
|
-
:
|
|
1525
|
-
|
|
1526
|
-
|
|
1527
|
-
:
|
|
1528
|
-
|
|
1529
|
-
:
|
|
1530
|
-
:
|
|
1531
|
-
:
|
|
1532
|
-
:
|
|
1533
|
-
:
|
|
1534
|
-
|
|
1535
|
-
|
|
1536
|
-
:
|
|
1537
|
-
|
|
1538
|
-
|
|
1539
|
-
:
|
|
1540
|
-
|
|
1541
|
-
|
|
1542
|
-
:
|
|
1543
|
-
|
|
1544
|
-
|
|
1545
|
-
:
|
|
1546
|
-
|
|
1547
|
-
|
|
1548
|
-
:
|
|
1
|
+
---
|
|
2
|
+
:cy:
|
|
3
|
+
:currencies:
|
|
4
|
+
:ADP:
|
|
5
|
+
:one: "Andorran peseta"
|
|
6
|
+
:other: "Andorran pesetas"
|
|
7
|
+
:AED:
|
|
8
|
+
:few: "Dirham Yr Emiradau Arabaidd Unedig"
|
|
9
|
+
:many: "Dirham Yr Emiradau Arabaidd Unedig"
|
|
10
|
+
:one: "Dirham Yr Emiradau Arabaidd Unedig"
|
|
11
|
+
:other: "Dirham Yr Emiradau Arabaidd Unedig"
|
|
12
|
+
:two: "Dirham Yr Emiradau Arabaidd Unedig"
|
|
13
|
+
:zero: "Dirham Yr Emiradau Arabaidd Unedig"
|
|
14
|
+
:AFA:
|
|
15
|
+
:one: "Afghan afghani (1927–2002)"
|
|
16
|
+
:other: "Afghan afghanis (1927–2002)"
|
|
17
|
+
:AFN:
|
|
18
|
+
:few: "Afghani Afghanistan"
|
|
19
|
+
:many: "Afghani Afghanistan"
|
|
20
|
+
:one: "Afghani Afghanistan"
|
|
21
|
+
:other: "Afghani Afghanistan"
|
|
22
|
+
:two: "Afghani Afghanistan"
|
|
23
|
+
:zero: "Afghani Afghanistan"
|
|
24
|
+
:ALK:
|
|
25
|
+
:one: "Albanian lek (1946–1965)"
|
|
26
|
+
:other: "Albanian lekë (1946–1965)"
|
|
27
|
+
:ALL:
|
|
28
|
+
:few: "Lek Albania"
|
|
29
|
+
:many: "Lek Albania"
|
|
30
|
+
:one: "Lek Albania"
|
|
31
|
+
:other: "Lek Albania"
|
|
32
|
+
:two: "Lek Albania"
|
|
33
|
+
:zero: "Lek Albania"
|
|
34
|
+
:AMD:
|
|
35
|
+
:few: "Dram Armenia"
|
|
36
|
+
:many: "Dram Armenia"
|
|
37
|
+
:one: "Dram Armenia"
|
|
38
|
+
:other: "Dram Armenia"
|
|
39
|
+
:two: "Dram Armenia"
|
|
40
|
+
:zero: "Dram Armenia"
|
|
41
|
+
:ANG:
|
|
42
|
+
:few: "Guilder Antilles yr Iseldiroedd"
|
|
43
|
+
:many: "Guilder Antilles yr Iseldiroedd"
|
|
44
|
+
:one: "Guilder Antilles yr Iseldiroedd"
|
|
45
|
+
:other: "Guilder Antilles yr Iseldiroedd"
|
|
46
|
+
:two: "Guilder Antilles yr Iseldiroedd"
|
|
47
|
+
:zero: "Guilder Antilles yr Iseldiroedd"
|
|
48
|
+
:AOA:
|
|
49
|
+
:few: "Kwanza Angola"
|
|
50
|
+
:many: "Kwanza Angola"
|
|
51
|
+
:one: "Kwanza Angola"
|
|
52
|
+
:other: "Kwanza Angola"
|
|
53
|
+
:two: "Kwanza Angola"
|
|
54
|
+
:zero: "Kwanza Angola"
|
|
55
|
+
:AOK:
|
|
56
|
+
:one: "Angolan kwanza (1977–1991)"
|
|
57
|
+
:other: "Angolan kwanzas (1977–1991)"
|
|
58
|
+
:AON:
|
|
59
|
+
:one: "Angolan new kwanza (1990–2000)"
|
|
60
|
+
:other: "Angolan new kwanzas (1990–2000)"
|
|
61
|
+
:AOR:
|
|
62
|
+
:one: "Angolan readjusted kwanza (1995–1999)"
|
|
63
|
+
:other: "Angolan readjusted kwanzas (1995–1999)"
|
|
64
|
+
:ARA:
|
|
65
|
+
:one: "Argentine austral"
|
|
66
|
+
:other: "Argentine australs"
|
|
67
|
+
:ARL:
|
|
68
|
+
:one: "Argentine peso ley (1970–1983)"
|
|
69
|
+
:other: "Argentine pesos ley (1970–1983)"
|
|
70
|
+
:ARM:
|
|
71
|
+
:one: "Argentine peso (1881–1970)"
|
|
72
|
+
:other: "Argentine pesos (1881–1970)"
|
|
73
|
+
:ARP:
|
|
74
|
+
:one: "Argentine peso (1983–1985)"
|
|
75
|
+
:other: "Argentine pesos (1983–1985)"
|
|
76
|
+
:ARS:
|
|
77
|
+
:few: "Peso yr Ariannin"
|
|
78
|
+
:many: "Peso yr Ariannin"
|
|
79
|
+
:one: "Peso yr Ariannin"
|
|
80
|
+
:other: "Peso yr Ariannin"
|
|
81
|
+
:symbol: "$"
|
|
82
|
+
:two: "Peso yr Ariannin"
|
|
83
|
+
:zero: "Peso yr Ariannin"
|
|
84
|
+
:ATS:
|
|
85
|
+
:one: "Austrian schilling"
|
|
86
|
+
:other: "Austrian schillings"
|
|
87
|
+
:AUD:
|
|
88
|
+
:few: "Doler Awstralia"
|
|
89
|
+
:many: "Doler Awstralia"
|
|
90
|
+
:one: "Doler Awstralia"
|
|
91
|
+
:other: "Doler Awstralia"
|
|
92
|
+
:symbol: "A$"
|
|
93
|
+
:two: "Doler Awstralia"
|
|
94
|
+
:zero: "Doler Awstralia"
|
|
95
|
+
:AWG:
|
|
96
|
+
:few: "Fflorin Aruba"
|
|
97
|
+
:many: "Fflorin Aruba"
|
|
98
|
+
:one: "Fflorin Aruba"
|
|
99
|
+
:other: "Fflorin Aruba"
|
|
100
|
+
:two: "Fflorin Aruba"
|
|
101
|
+
:zero: "Fflorin Aruba"
|
|
102
|
+
:AZM:
|
|
103
|
+
:one: "Azerbaijani manat (1993–2006)"
|
|
104
|
+
:other: "Azerbaijani manats (1993–2006)"
|
|
105
|
+
:AZN:
|
|
106
|
+
:few: "Manat Azerbaijan"
|
|
107
|
+
:many: "Manat Azerbaijan"
|
|
108
|
+
:one: "Manat Azerbaijan"
|
|
109
|
+
:other: "Manat Azerbaijan"
|
|
110
|
+
:two: "Manat Azerbaijan"
|
|
111
|
+
:zero: "Manat Azerbaijan"
|
|
112
|
+
:BAD:
|
|
113
|
+
:one: "Bosnia-Herzegovina dinar (1992–1994)"
|
|
114
|
+
:other: "Bosnia-Herzegovina dinars (1992–1994)"
|
|
115
|
+
:BAM:
|
|
116
|
+
:few: "Marc Trosadwy Bosnia a Hercegovina"
|
|
117
|
+
:many: "Marc Trosadwy Bosnia a Hercegovina"
|
|
118
|
+
:one: "Marc Trosadwy Bosnia a Hercegovina"
|
|
119
|
+
:other: "Marc Trosadwy Bosnia a Hercegovina"
|
|
120
|
+
:two: "Marc Trosadwy Bosnia a Hercegovina"
|
|
121
|
+
:zero: "Marc Trosadwy Bosnia a Hercegovina"
|
|
122
|
+
:BAN:
|
|
123
|
+
:one: "Bosnia-Herzegovina new dinar (1994–1997)"
|
|
124
|
+
:other: "Bosnia-Herzegovina new dinars (1994–1997)"
|
|
125
|
+
:BBD:
|
|
126
|
+
:few: "Doler Barbados"
|
|
127
|
+
:many: "Doler Barbados"
|
|
128
|
+
:one: "Doler Barbados"
|
|
129
|
+
:other: "Doler Barbados"
|
|
130
|
+
:symbol: "$"
|
|
131
|
+
:two: "Doler Barbados"
|
|
132
|
+
:zero: "Doler Barbados"
|
|
133
|
+
:BDT:
|
|
134
|
+
:few: "Taka Bangladesh"
|
|
135
|
+
:many: "Taka Bangladesh"
|
|
136
|
+
:one: "Taka Bangladesh"
|
|
137
|
+
:other: "Taka Bangladesh"
|
|
138
|
+
:symbol: "৳"
|
|
139
|
+
:two: "Taka Bangladesh"
|
|
140
|
+
:zero: "Taka Bangladesh"
|
|
141
|
+
:BEC:
|
|
142
|
+
:one: "Belgian franc (convertible)"
|
|
143
|
+
:other: "Belgian francs (convertible)"
|
|
144
|
+
:BEF:
|
|
145
|
+
:one: "Belgian franc"
|
|
146
|
+
:other: "Belgian francs"
|
|
147
|
+
:BEL:
|
|
148
|
+
:one: "Belgian franc (financial)"
|
|
149
|
+
:other: "Belgian francs (financial)"
|
|
150
|
+
:BGL:
|
|
151
|
+
:one: "Bulgarian hard lev"
|
|
152
|
+
:other: "Bulgarian hard leva"
|
|
153
|
+
:BGM:
|
|
154
|
+
:one: "Bulgarian socialist lev"
|
|
155
|
+
:other: "Bulgarian socialist leva"
|
|
156
|
+
:BGN:
|
|
157
|
+
:few: "Lev Bwlgaria"
|
|
158
|
+
:many: "Lev Bwlgaria"
|
|
159
|
+
:one: "Lev Bwlgaria"
|
|
160
|
+
:other: "Lev Bwlgaria"
|
|
161
|
+
:two: "Lev Bwlgaria"
|
|
162
|
+
:zero: "Lev Bwlgaria"
|
|
163
|
+
:BGO:
|
|
164
|
+
:one: "Bulgarian lev (1879–1952)"
|
|
165
|
+
:other: "Bulgarian leva (1879–1952)"
|
|
166
|
+
:BHD:
|
|
167
|
+
:few: "Dinar Bahrain"
|
|
168
|
+
:many: "Dinar Bahrain"
|
|
169
|
+
:one: "Dinar Bahrain"
|
|
170
|
+
:other: "Dinar Bahrain"
|
|
171
|
+
:two: "Dinar Bahrain"
|
|
172
|
+
:zero: "Dinar Bahrain"
|
|
173
|
+
:BIF:
|
|
174
|
+
:few: "Ffranc Burundi"
|
|
175
|
+
:many: "Ffranc Burundi"
|
|
176
|
+
:one: "Ffranc Burundi"
|
|
177
|
+
:other: "Ffranc Burundi"
|
|
178
|
+
:two: "Ffranc Burundi"
|
|
179
|
+
:zero: "Ffranc Burundi"
|
|
180
|
+
:BMD:
|
|
181
|
+
:few: "Doler Bermuda"
|
|
182
|
+
:many: "Doler Bermuda"
|
|
183
|
+
:one: "Doler Bermuda"
|
|
184
|
+
:other: "Doler Bermuda"
|
|
185
|
+
:symbol: "$"
|
|
186
|
+
:two: "Doler Bermuda"
|
|
187
|
+
:zero: "Doler Bermuda"
|
|
188
|
+
:BND:
|
|
189
|
+
:few: "Doler Brunei"
|
|
190
|
+
:many: "Doler Brunei"
|
|
191
|
+
:one: "Doler Brunei"
|
|
192
|
+
:other: "Doler Brunei"
|
|
193
|
+
:symbol: "$"
|
|
194
|
+
:two: "Doler Brunei"
|
|
195
|
+
:zero: "Doler Brunei"
|
|
196
|
+
:BOB:
|
|
197
|
+
:few: "Boliviano Bolifia"
|
|
198
|
+
:many: "Boliviano Bolifia"
|
|
199
|
+
:one: "Boliviano Bolifia"
|
|
200
|
+
:other: "Boliviano Bolifia"
|
|
201
|
+
:two: "Boliviano Bolifia"
|
|
202
|
+
:zero: "Boliviano Bolifia"
|
|
203
|
+
:BOL:
|
|
204
|
+
:one: "Bolivian boliviano (1863–1963)"
|
|
205
|
+
:other: "Bolivian bolivianos (1863–1963)"
|
|
206
|
+
:BOP:
|
|
207
|
+
:one: "Bolivian peso"
|
|
208
|
+
:other: "Bolivian pesos"
|
|
209
|
+
:BOV:
|
|
210
|
+
:one: "Bolivian mvdol"
|
|
211
|
+
:other: "Bolivian mvdols"
|
|
212
|
+
:BRB:
|
|
213
|
+
:one: "Brazilian new cruzeiro (1967–1986)"
|
|
214
|
+
:other: "Brazilian new cruzeiros (1967–1986)"
|
|
215
|
+
:BRC:
|
|
216
|
+
:one: "Brazilian cruzado (1986–1989)"
|
|
217
|
+
:other: "Brazilian cruzados (1986–1989)"
|
|
218
|
+
:BRE:
|
|
219
|
+
:one: "Brazilian cruzeiro (1990–1993)"
|
|
220
|
+
:other: "Brazilian cruzeiros (1990–1993)"
|
|
221
|
+
:BRL:
|
|
222
|
+
:few: "Real Brasil"
|
|
223
|
+
:many: "Real Brasil"
|
|
224
|
+
:one: "Real Brasil"
|
|
225
|
+
:other: "Real Brasil"
|
|
226
|
+
:symbol: "R$"
|
|
227
|
+
:two: "Real Brasil"
|
|
228
|
+
:zero: "Real Brasil"
|
|
229
|
+
:BRN:
|
|
230
|
+
:one: "Brazilian new cruzado (1989–1990)"
|
|
231
|
+
:other: "Brazilian new cruzados (1989–1990)"
|
|
232
|
+
:BRR:
|
|
233
|
+
:one: "Brazilian cruzeiro (1993–1994)"
|
|
234
|
+
:other: "Brazilian cruzeiros (1993–1994)"
|
|
235
|
+
:BRZ:
|
|
236
|
+
:one: "Brazilian cruzeiro (1942–1967)"
|
|
237
|
+
:other: "Brazilian cruzeiros (1942–1967)"
|
|
238
|
+
:BSD:
|
|
239
|
+
:few: "Doler y Bahamas"
|
|
240
|
+
:many: "Doler y Bahamas"
|
|
241
|
+
:one: "Doler y Bahamas"
|
|
242
|
+
:other: "Doler y Bahamas"
|
|
243
|
+
:symbol: "$"
|
|
244
|
+
:two: "Doler y Bahamas"
|
|
245
|
+
:zero: "Doler y Bahamas"
|
|
246
|
+
:BTN:
|
|
247
|
+
:few: "Ngultrum Bhutan"
|
|
248
|
+
:many: "Ngultrum Bhutan"
|
|
249
|
+
:one: "Ngultrum Bhutan"
|
|
250
|
+
:other: "Ngultrum Bhutan"
|
|
251
|
+
:two: "Ngultrum Bhutan"
|
|
252
|
+
:zero: "Ngultrum Bhutan"
|
|
253
|
+
:BUK:
|
|
254
|
+
:one: "Burmese kyat"
|
|
255
|
+
:other: "Burmese kyats"
|
|
256
|
+
:BWP:
|
|
257
|
+
:few: "Pula Botswana"
|
|
258
|
+
:many: "Pula Botswana"
|
|
259
|
+
:one: "Pula Botswana"
|
|
260
|
+
:other: "Pula Botswana"
|
|
261
|
+
:two: "Pula Botswana"
|
|
262
|
+
:zero: "Pula Botswana"
|
|
263
|
+
:BYB:
|
|
264
|
+
:one: "Belarusian new ruble (1994–1999)"
|
|
265
|
+
:other: "Belarusian new rubles (1994–1999)"
|
|
266
|
+
:BYR:
|
|
267
|
+
:few: "Rwbl Belarws"
|
|
268
|
+
:many: "Rwbl Belarws"
|
|
269
|
+
:one: "Rwbl Belarws"
|
|
270
|
+
:other: "Rwbl Belarws"
|
|
271
|
+
:symbol: "р."
|
|
272
|
+
:two: "Rwbl Belarws"
|
|
273
|
+
:zero: "Rwbl Belarws"
|
|
274
|
+
:BZD:
|
|
275
|
+
:few: "Doler Belize"
|
|
276
|
+
:many: "Doler Belize"
|
|
277
|
+
:one: "Doler Belize"
|
|
278
|
+
:other: "Doler Belize"
|
|
279
|
+
:symbol: "$"
|
|
280
|
+
:two: "Doler Belize"
|
|
281
|
+
:zero: "Doler Belize"
|
|
282
|
+
:CAD:
|
|
283
|
+
:few: "Doler Canada"
|
|
284
|
+
:many: "Doler Canada"
|
|
285
|
+
:one: "Doler Canada"
|
|
286
|
+
:other: "Doler Canada"
|
|
287
|
+
:symbol: "CA$"
|
|
288
|
+
:two: "Doler Canada"
|
|
289
|
+
:zero: "Doler Canada"
|
|
290
|
+
:CDF:
|
|
291
|
+
:few: "Ffranc Congo"
|
|
292
|
+
:many: "Ffranc Congo"
|
|
293
|
+
:one: "Ffranc Congo"
|
|
294
|
+
:other: "Ffranc Congo"
|
|
295
|
+
:two: "Ffranc Congo"
|
|
296
|
+
:zero: "Ffranc Congo"
|
|
297
|
+
:CHE:
|
|
298
|
+
:one: "WIR euro"
|
|
299
|
+
:other: "WIR euros"
|
|
300
|
+
:CHF:
|
|
301
|
+
:few: "Ffranc y Swistir"
|
|
302
|
+
:many: "Ffranc y Swistir"
|
|
303
|
+
:one: "Ffranc y Swistir"
|
|
304
|
+
:other: "Ffranc y Swistir"
|
|
305
|
+
:two: "Ffranc y Swistir"
|
|
306
|
+
:zero: "Ffranc y Swistir"
|
|
307
|
+
:CHW:
|
|
308
|
+
:one: "WIR franc"
|
|
309
|
+
:other: "WIR francs"
|
|
310
|
+
:CLE:
|
|
311
|
+
:one: "Chilean escudo"
|
|
312
|
+
:other: "Chilean escudos"
|
|
313
|
+
:CLF:
|
|
314
|
+
:one: "Chilean unit of account (UF)"
|
|
315
|
+
:other: "Chilean units of account (UF)"
|
|
316
|
+
:CLP:
|
|
317
|
+
:few: "Peso Chile"
|
|
318
|
+
:many: "Peso Chile"
|
|
319
|
+
:one: "Peso Chile"
|
|
320
|
+
:other: "Peso Chile"
|
|
321
|
+
:symbol: "$"
|
|
322
|
+
:two: "Peso Chile"
|
|
323
|
+
:zero: "Peso Chile"
|
|
324
|
+
:CNX:
|
|
325
|
+
:one: "Chinese People’s Bank dollar"
|
|
326
|
+
:other: "Chinese People’s Bank dollars"
|
|
327
|
+
:CNY:
|
|
328
|
+
:few: "Yuan China"
|
|
329
|
+
:many: "Yuan China"
|
|
330
|
+
:one: "Yuan China"
|
|
331
|
+
:other: "Yuan Tsieina"
|
|
332
|
+
:symbol: "CN¥"
|
|
333
|
+
:two: "Yuan China"
|
|
334
|
+
:zero: "Yuan Tsieina"
|
|
335
|
+
:COP:
|
|
336
|
+
:few: "Peso Colombia"
|
|
337
|
+
:many: "Peso Colombia"
|
|
338
|
+
:one: "Peso Colombia"
|
|
339
|
+
:other: "Peso Colombia"
|
|
340
|
+
:symbol: "$"
|
|
341
|
+
:two: "Peso Colombia"
|
|
342
|
+
:zero: "Peso Colombia"
|
|
343
|
+
:COU:
|
|
344
|
+
:one: "Colombian real value unit"
|
|
345
|
+
:other: "Colombian real value units"
|
|
346
|
+
:CRC:
|
|
347
|
+
:few: "Colón Costa Rica"
|
|
348
|
+
:many: "Colón Costa Rica"
|
|
349
|
+
:one: "Colón Costa Rica"
|
|
350
|
+
:other: "Colón Costa Rica"
|
|
351
|
+
:symbol: "₡"
|
|
352
|
+
:two: "Colón Costa Rica"
|
|
353
|
+
:zero: "Colón Costa Rica"
|
|
354
|
+
:CSD:
|
|
355
|
+
:one: "Serbian dinar (2002–2006)"
|
|
356
|
+
:other: "Serbian dinars (2002–2006)"
|
|
357
|
+
:CSK:
|
|
358
|
+
:one: "Czechoslovak hard koruna"
|
|
359
|
+
:other: "Czechoslovak hard korunas"
|
|
360
|
+
:CUC:
|
|
361
|
+
:few: "Peso Trosadwy Cuba"
|
|
362
|
+
:many: "Peso Trosadwy Cuba"
|
|
363
|
+
:one: "Peso Trosadwy Cuba"
|
|
364
|
+
:other: "Peso Trosadwy Cuba"
|
|
365
|
+
:two: "Peso Trosadwy Cuba"
|
|
366
|
+
:zero: "Peso Trosadwy Cuba"
|
|
367
|
+
:CUP:
|
|
368
|
+
:few: "Peso Cuba"
|
|
369
|
+
:many: "Peso Cuba"
|
|
370
|
+
:one: "Peso Cuba"
|
|
371
|
+
:other: "Peso Cuba"
|
|
372
|
+
:symbol: "$"
|
|
373
|
+
:two: "Peso Cuba"
|
|
374
|
+
:zero: "Peso Cuba"
|
|
375
|
+
:CVE:
|
|
376
|
+
:few: "Esgwdo Cabo Verde"
|
|
377
|
+
:many: "Esgwdo Cabo Verde"
|
|
378
|
+
:one: "Esgwdo Cabo Verde"
|
|
379
|
+
:other: "Esgwdo Cabo Verde"
|
|
380
|
+
:two: "Esgwdo Cabo Verde"
|
|
381
|
+
:zero: "Esgwdo Cabo Verde"
|
|
382
|
+
:CYP:
|
|
383
|
+
:one: "Cypriot pound"
|
|
384
|
+
:other: "Cypriot pounds"
|
|
385
|
+
:CZK:
|
|
386
|
+
:few: "Koruna Tsiec"
|
|
387
|
+
:many: "Koruna Tsiec"
|
|
388
|
+
:one: "Koruna Tsiec"
|
|
389
|
+
:other: "Koruna Tsiec"
|
|
390
|
+
:two: "Koruna Tsiec"
|
|
391
|
+
:zero: "Koruna Tsiec"
|
|
392
|
+
:DDM:
|
|
393
|
+
:one: "East German mark"
|
|
394
|
+
:other: "East German marks"
|
|
395
|
+
:DEM:
|
|
396
|
+
:one: "German mark"
|
|
397
|
+
:other: "German marks"
|
|
398
|
+
:DJF:
|
|
399
|
+
:few: "Ffranc Djibouti"
|
|
400
|
+
:many: "Ffranc Djibouti"
|
|
401
|
+
:one: "Ffranc Djibouti"
|
|
402
|
+
:other: "Ffranc Djibouti"
|
|
403
|
+
:two: "Ffranc Djibouti"
|
|
404
|
+
:zero: "Ffranc Djibouti"
|
|
405
|
+
:DKK:
|
|
406
|
+
:few: "Krone Denmarc"
|
|
407
|
+
:many: "Krone Denmarc"
|
|
408
|
+
:one: "Krone Denmarc"
|
|
409
|
+
:other: "Krone Denmarc"
|
|
410
|
+
:two: "Krone Denmarc"
|
|
411
|
+
:zero: "Krone Denmarc"
|
|
412
|
+
:DOP:
|
|
413
|
+
:few: "Peso Gweriniaeth Dominica"
|
|
414
|
+
:many: "Peso Gweriniaeth Dominica"
|
|
415
|
+
:one: "Peso Gweriniaeth Dominica"
|
|
416
|
+
:other: "Peso Gweriniaeth Dominica"
|
|
417
|
+
:symbol: "$"
|
|
418
|
+
:two: "Peso Gweriniaeth Dominica"
|
|
419
|
+
:zero: "Peso Gweriniaeth Dominica"
|
|
420
|
+
:DZD:
|
|
421
|
+
:few: "Dinar Algeria"
|
|
422
|
+
:many: "Dinar Algeria"
|
|
423
|
+
:one: "Dinar Algeria"
|
|
424
|
+
:other: "Dinar Algeria"
|
|
425
|
+
:two: "Dinar Algeria"
|
|
426
|
+
:zero: "Dinar Algeria"
|
|
427
|
+
:ECS:
|
|
428
|
+
:one: "Ecuadorian sucre"
|
|
429
|
+
:other: "Ecuadorian sucres"
|
|
430
|
+
:ECV:
|
|
431
|
+
:one: "Ecuadorian unit of constant value"
|
|
432
|
+
:other: "Ecuadorian units of constant value"
|
|
433
|
+
:EEK:
|
|
434
|
+
:one: "Estonian kroon"
|
|
435
|
+
:other: "Estonian kroons"
|
|
436
|
+
:EGP:
|
|
437
|
+
:few: "Punt Yr Aifft"
|
|
438
|
+
:many: "Punt Yr Aifft"
|
|
439
|
+
:one: "Punt Yr Aifft"
|
|
440
|
+
:other: "Punt Yr Aifft"
|
|
441
|
+
:two: "Punt Yr Aifft"
|
|
442
|
+
:zero: "Punt Yr Aifft"
|
|
443
|
+
:ERN:
|
|
444
|
+
:few: "Nakfa Eritrea"
|
|
445
|
+
:many: "Nakfa Eritrea"
|
|
446
|
+
:one: "Nakfa Eritrea"
|
|
447
|
+
:other: "Nakfa Eritrea"
|
|
448
|
+
:two: "Nakfa Eritrea"
|
|
449
|
+
:zero: "Nakfa Eritrea"
|
|
450
|
+
:ESA:
|
|
451
|
+
:one: "Spanish peseta (A account)"
|
|
452
|
+
:other: "Spanish pesetas (A account)"
|
|
453
|
+
:ESB:
|
|
454
|
+
:one: "Spanish peseta (convertible account)"
|
|
455
|
+
:other: "Spanish pesetas (convertible account)"
|
|
456
|
+
:ESP:
|
|
457
|
+
:one: "Spanish peseta"
|
|
458
|
+
:other: "Spanish pesetas"
|
|
459
|
+
:symbol: "₧"
|
|
460
|
+
:ETB:
|
|
461
|
+
:few: "Birr Ethiopia"
|
|
462
|
+
:many: "Birr Ethiopia"
|
|
463
|
+
:one: "Birr Ethiopia"
|
|
464
|
+
:other: "Birr Ethiopia"
|
|
465
|
+
:two: "Birr Ethiopia"
|
|
466
|
+
:zero: "Birr Ethiopia"
|
|
467
|
+
:EUR:
|
|
468
|
+
:few: "Ewro"
|
|
469
|
+
:many: "Ewro"
|
|
470
|
+
:one: "Ewro"
|
|
471
|
+
:other: "Ewro"
|
|
472
|
+
:symbol: "€"
|
|
473
|
+
:two: "Ewro"
|
|
474
|
+
:zero: "Ewro"
|
|
475
|
+
:FIM:
|
|
476
|
+
:one: "Finnish markka"
|
|
477
|
+
:other: "Finnish markkas"
|
|
478
|
+
:FJD:
|
|
479
|
+
:few: "Doler Ffiji"
|
|
480
|
+
:many: "Doler Ffiji"
|
|
481
|
+
:one: "Doler Ffiji"
|
|
482
|
+
:other: "Doler Ffiji"
|
|
483
|
+
:symbol: "$"
|
|
484
|
+
:two: "Doler Ffiji"
|
|
485
|
+
:zero: "Doler Ffiji"
|
|
486
|
+
:FKP:
|
|
487
|
+
:few: "Punt Ynysoedd Falkland/Malvinas"
|
|
488
|
+
:many: "Punt Ynysoedd Falkland/Malvinas"
|
|
489
|
+
:one: "Punt Ynysoedd Falkland/Malvinas"
|
|
490
|
+
:other: "Punt Ynysoedd Falkland/Malvinas"
|
|
491
|
+
:two: "Punt Ynysoedd Falkland/Malvinas"
|
|
492
|
+
:zero: "Punt Ynysoedd Falkland/Malvinas"
|
|
493
|
+
:FRF:
|
|
494
|
+
:one: "French franc"
|
|
495
|
+
:other: "French francs"
|
|
496
|
+
:GBP:
|
|
497
|
+
:few: "Punt Sterling Prydain"
|
|
498
|
+
:many: "Punt Sterling Prydain"
|
|
499
|
+
:one: "Punt Sterling Prydain"
|
|
500
|
+
:other: "Punt Sterling Prydain"
|
|
501
|
+
:symbol: "£"
|
|
502
|
+
:two: "Punt Sterling Prydain"
|
|
503
|
+
:zero: "Punt Sterling Prydain"
|
|
504
|
+
:GEK:
|
|
505
|
+
:one: "Georgian kupon larit"
|
|
506
|
+
:other: "Georgian kupon larits"
|
|
507
|
+
:GEL:
|
|
508
|
+
:few: "Lari Georgia"
|
|
509
|
+
:many: "Lari Georgia"
|
|
510
|
+
:one: "Lari Georgia"
|
|
511
|
+
:other: "Lari Georgia"
|
|
512
|
+
:two: "Lari Georgia"
|
|
513
|
+
:zero: "Lari Georgia"
|
|
514
|
+
:GHC:
|
|
515
|
+
:one: "Ghanaian cedi (1979–2007)"
|
|
516
|
+
:other: "Ghanaian cedis (1979–2007)"
|
|
517
|
+
:GHS:
|
|
518
|
+
:few: "Cedi Ghana"
|
|
519
|
+
:many: "Cedi Ghana"
|
|
520
|
+
:one: "Cedi Ghana"
|
|
521
|
+
:other: "Cedi Ghana"
|
|
522
|
+
:symbol: "₵"
|
|
523
|
+
:two: "Cedi Ghana"
|
|
524
|
+
:zero: "Cedi Ghana"
|
|
525
|
+
:GIP:
|
|
526
|
+
:few: "Punt Gibraltar"
|
|
527
|
+
:many: "Punt Gibraltar"
|
|
528
|
+
:one: "Punt Gibraltar"
|
|
529
|
+
:other: "Punt Gibraltar"
|
|
530
|
+
:symbol: "£"
|
|
531
|
+
:two: "Punt Gibraltar"
|
|
532
|
+
:zero: "Punt Gibraltar"
|
|
533
|
+
:GMD:
|
|
534
|
+
:few: "Dalasi Gambia"
|
|
535
|
+
:many: "Dalasi Gambia"
|
|
536
|
+
:one: "Dalasi Gambia"
|
|
537
|
+
:other: "Dalasi Gambia"
|
|
538
|
+
:two: "Dalasi Gambia"
|
|
539
|
+
:zero: "Dalasi Gambia"
|
|
540
|
+
:GNF:
|
|
541
|
+
:few: "Ffranc Guinée"
|
|
542
|
+
:many: "Ffranc Guinée"
|
|
543
|
+
:one: "Ffranc Guinée"
|
|
544
|
+
:other: "Ffranc Guinée"
|
|
545
|
+
:two: "Ffranc Guinée"
|
|
546
|
+
:zero: "Ffranc Guinée"
|
|
547
|
+
:GNS:
|
|
548
|
+
:one: "Guinean syli"
|
|
549
|
+
:other: "Guinean sylis"
|
|
550
|
+
:GQE:
|
|
551
|
+
:one: "Equatorial Guinean ekwele"
|
|
552
|
+
:other: "Equatorial Guinean ekwele"
|
|
553
|
+
:GRD:
|
|
554
|
+
:one: "Greek drachma"
|
|
555
|
+
:other: "Greek drachmas"
|
|
556
|
+
:GTQ:
|
|
557
|
+
:few: "Quetzal Guatemala"
|
|
558
|
+
:many: "Quetzal Guatemala"
|
|
559
|
+
:one: "Quetzal Guatemala"
|
|
560
|
+
:other: "Quetzal Guatemala"
|
|
561
|
+
:two: "Quetzal Guatemala"
|
|
562
|
+
:zero: "Quetzal Guatemala"
|
|
563
|
+
:GWE:
|
|
564
|
+
:one: "Portuguese Guinea escudo"
|
|
565
|
+
:other: "Portuguese Guinea escudos"
|
|
566
|
+
:GWP:
|
|
567
|
+
:one: "Guinea-Bissau peso"
|
|
568
|
+
:other: "Guinea-Bissau pesos"
|
|
569
|
+
:GYD:
|
|
570
|
+
:few: "Doler Guyana"
|
|
571
|
+
:many: "Doler Guyana"
|
|
572
|
+
:one: "Doler Guyana"
|
|
573
|
+
:other: "Doler Guyana"
|
|
574
|
+
:symbol: "$"
|
|
575
|
+
:two: "Doler Guyana"
|
|
576
|
+
:zero: "Doler Guyana"
|
|
577
|
+
:HKD:
|
|
578
|
+
:few: "Doler Hong Kong"
|
|
579
|
+
:many: "Doler Hong Kong"
|
|
580
|
+
:one: "Doler Hong Kong"
|
|
581
|
+
:other: "Doler Hong Kong"
|
|
582
|
+
:symbol: "HK$"
|
|
583
|
+
:two: "Doler Hong Kong"
|
|
584
|
+
:zero: "Doler Hong Kong"
|
|
585
|
+
:HNL:
|
|
586
|
+
:few: "Lempira Honduras"
|
|
587
|
+
:many: "Lempira Honduras"
|
|
588
|
+
:one: "Lempira Honduras"
|
|
589
|
+
:other: "Lempira Honduras"
|
|
590
|
+
:two: "Lempira Honduras"
|
|
591
|
+
:zero: "Lempira Honduras"
|
|
592
|
+
:HRD:
|
|
593
|
+
:one: "Croatian dinar"
|
|
594
|
+
:other: "Croatian dinars"
|
|
595
|
+
:HRK:
|
|
596
|
+
:few: "Kuna Croatia"
|
|
597
|
+
:many: "Kuna Croatia"
|
|
598
|
+
:one: "Kuna Croatia"
|
|
599
|
+
:other: "Kuna Croatia"
|
|
600
|
+
:two: "Kuna Croatia"
|
|
601
|
+
:zero: "Kuna Croatia"
|
|
602
|
+
:HTG:
|
|
603
|
+
:few: "Gourde Haiti"
|
|
604
|
+
:many: "Gourde Haiti"
|
|
605
|
+
:one: "Gourde Haiti"
|
|
606
|
+
:other: "Gourde Haiti"
|
|
607
|
+
:two: "Gourde Haiti"
|
|
608
|
+
:zero: "Gourde Haiti"
|
|
609
|
+
:HUF:
|
|
610
|
+
:few: "Fforint Hwngari"
|
|
611
|
+
:many: "Fforint Hwngari"
|
|
612
|
+
:one: "Fforint Hwngari"
|
|
613
|
+
:other: "Fforint Hwngari"
|
|
614
|
+
:two: "Fforint Hwngari"
|
|
615
|
+
:zero: "Fforint Hwngari"
|
|
616
|
+
:IDR:
|
|
617
|
+
:few: "Rupiah Indonesia"
|
|
618
|
+
:many: "Rupiah Indonesia"
|
|
619
|
+
:one: "Rupiah Indonesia"
|
|
620
|
+
:other: "Rupiah Indonesia"
|
|
621
|
+
:two: "Rupiah Indonesia"
|
|
622
|
+
:zero: "Rupiah Indonesia"
|
|
623
|
+
:IEP:
|
|
624
|
+
:one: "Irish pound"
|
|
625
|
+
:other: "Irish pounds"
|
|
626
|
+
:ILP:
|
|
627
|
+
:one: "Israeli pound"
|
|
628
|
+
:other: "Israeli pounds"
|
|
629
|
+
:ILR:
|
|
630
|
+
:one: "Israeli sheqel (1980–1985)"
|
|
631
|
+
:other: "Israeli sheqels (1980–1985)"
|
|
632
|
+
:ILS:
|
|
633
|
+
:few: "Shegel Newydd Israel"
|
|
634
|
+
:many: "Shegel Newydd Israel"
|
|
635
|
+
:one: "Shegel Newydd Israel"
|
|
636
|
+
:other: "Shegel Newydd Israel"
|
|
637
|
+
:symbol: "₪"
|
|
638
|
+
:two: "Shegel Newydd Israel"
|
|
639
|
+
:zero: "Shegel Newydd Israel"
|
|
640
|
+
:INR:
|
|
641
|
+
:few: "Rwpî India"
|
|
642
|
+
:many: "Rwpî India"
|
|
643
|
+
:one: "Rwpî India"
|
|
644
|
+
:other: "Rwpî India"
|
|
645
|
+
:symbol: "₹"
|
|
646
|
+
:two: "Rwpî India"
|
|
647
|
+
:zero: "Rwpî India"
|
|
648
|
+
:IQD:
|
|
649
|
+
:few: "Dinar Irac"
|
|
650
|
+
:many: "Dinar Irac"
|
|
651
|
+
:one: "Dinar Irac"
|
|
652
|
+
:other: "Dinar Irac"
|
|
653
|
+
:two: "Dinar Irac"
|
|
654
|
+
:zero: "Dinar Irac"
|
|
655
|
+
:IRR:
|
|
656
|
+
:few: "Rial Iran"
|
|
657
|
+
:many: "Rial Iran"
|
|
658
|
+
:one: "Rial Iran"
|
|
659
|
+
:other: "Rial Iran"
|
|
660
|
+
:two: "Rial Iran"
|
|
661
|
+
:zero: "Rial Iran"
|
|
662
|
+
:ISJ:
|
|
663
|
+
:one: "Icelandic króna (1918–1981)"
|
|
664
|
+
:other: "Icelandic krónur (1918–1981)"
|
|
665
|
+
:ISK:
|
|
666
|
+
:few: "Króna Gwlad yr Iâ"
|
|
667
|
+
:many: "Króna Gwlad yr Iâ"
|
|
668
|
+
:one: "Króna Gwlad yr Iâ"
|
|
669
|
+
:other: "Króna Gwlad yr Iâ"
|
|
670
|
+
:two: "Króna Gwlad yr Iâ"
|
|
671
|
+
:zero: "Króna Gwlad yr Iâ"
|
|
672
|
+
:ITL:
|
|
673
|
+
:one: "Italian lira"
|
|
674
|
+
:other: "Italian liras"
|
|
675
|
+
:JMD:
|
|
676
|
+
:few: "Doler Jamaica"
|
|
677
|
+
:many: "Doler Jamaica"
|
|
678
|
+
:one: "Doler Jamaica"
|
|
679
|
+
:other: "Doler Jamaica"
|
|
680
|
+
:symbol: "$"
|
|
681
|
+
:two: "Doler Jamaica"
|
|
682
|
+
:zero: "Doler Jamaica"
|
|
683
|
+
:JOD:
|
|
684
|
+
:few: "Dinar Gwlad yr Iorddonen"
|
|
685
|
+
:many: "Dinar Gwlad yr Iorddonen"
|
|
686
|
+
:one: "Dinar Gwlad yr Iorddonen"
|
|
687
|
+
:other: "Dinar Gwlad yr Iorddonen"
|
|
688
|
+
:two: "Dinar Gwlad yr Iorddonen"
|
|
689
|
+
:zero: "Dinar Gwlad yr Iorddonen"
|
|
690
|
+
:JPY:
|
|
691
|
+
:few: "Yen Japan"
|
|
692
|
+
:many: "Yen Japan"
|
|
693
|
+
:one: "Yen Japan"
|
|
694
|
+
:other: "Yen Japan"
|
|
695
|
+
:symbol: "JP¥"
|
|
696
|
+
:two: "Yen Japan"
|
|
697
|
+
:zero: "Yen Japan"
|
|
698
|
+
:KES:
|
|
699
|
+
:few: "Swllt Kenya"
|
|
700
|
+
:many: "Swllt Kenya"
|
|
701
|
+
:one: "Swllt Kenya"
|
|
702
|
+
:other: "Swllt Kenya"
|
|
703
|
+
:two: "Swllt Kenya"
|
|
704
|
+
:zero: "Swllt Kenya"
|
|
705
|
+
:KGS:
|
|
706
|
+
:few: "Som Kyrgyzstan"
|
|
707
|
+
:many: "Som Kyrgyzstan"
|
|
708
|
+
:one: "Som Kyrgyzstan"
|
|
709
|
+
:other: "Som Kyrgyzstan"
|
|
710
|
+
:two: "Som Kyrgyzstan"
|
|
711
|
+
:zero: "Som Kyrgyzstan"
|
|
712
|
+
:KHR:
|
|
713
|
+
:few: "Riel Cambodia"
|
|
714
|
+
:many: "Riel Cambodia"
|
|
715
|
+
:one: "Riel Cambodia"
|
|
716
|
+
:other: "Riel Cambodia"
|
|
717
|
+
:symbol: "៛"
|
|
718
|
+
:two: "Riel Cambodia"
|
|
719
|
+
:zero: "Riel Cambodia"
|
|
720
|
+
:KMF:
|
|
721
|
+
:few: "Ffranc Comoros"
|
|
722
|
+
:many: "Ffranc Comoros"
|
|
723
|
+
:one: "Ffranc Comoros"
|
|
724
|
+
:other: "Ffranc Comoros"
|
|
725
|
+
:two: "Ffranc Comoros"
|
|
726
|
+
:zero: "Ffranc Comoros"
|
|
727
|
+
:KPW:
|
|
728
|
+
:few: "Won Gogledd Corea"
|
|
729
|
+
:many: "Won Gogledd Corea"
|
|
730
|
+
:one: "Won Gogledd Corea"
|
|
731
|
+
:other: "Won Gogledd Corea"
|
|
732
|
+
:two: "Won Gogledd Corea"
|
|
733
|
+
:zero: "Won Gogledd Corea"
|
|
734
|
+
:KRH:
|
|
735
|
+
:one: "South Korean hwan (1953–1962)"
|
|
736
|
+
:other: "South Korean hwan (1953–1962)"
|
|
737
|
+
:KRO:
|
|
738
|
+
:one: "South Korean won (1945–1953)"
|
|
739
|
+
:other: "South Korean won (1945–1953)"
|
|
740
|
+
:KRW:
|
|
741
|
+
:few: "Won De Korea"
|
|
742
|
+
:many: "Won De Korea"
|
|
743
|
+
:one: "Won De Korea"
|
|
744
|
+
:other: "Won De Korea"
|
|
745
|
+
:symbol: "₩"
|
|
746
|
+
:two: "Won De Korea"
|
|
747
|
+
:zero: "Won De Korea"
|
|
748
|
+
:KWD:
|
|
749
|
+
:few: "Dinar Kuwait"
|
|
750
|
+
:many: "Dinar Kuwait"
|
|
751
|
+
:one: "Dinar Kuwait"
|
|
752
|
+
:other: "Dinar Kuwait"
|
|
753
|
+
:two: "Dinar Kuwait"
|
|
754
|
+
:zero: "Dinar Kuwait"
|
|
755
|
+
:KYD:
|
|
756
|
+
:few: "Doler Ynysoedd Cayman"
|
|
757
|
+
:many: "Doler Ynysoedd Cayman"
|
|
758
|
+
:one: "Doler Ynysoedd Cayman"
|
|
759
|
+
:other: "Doler Ynysoedd Cayman"
|
|
760
|
+
:symbol: "$"
|
|
761
|
+
:two: "Doler Ynysoedd Cayman"
|
|
762
|
+
:zero: "Doler Ynysoedd Cayman"
|
|
763
|
+
:KZT:
|
|
764
|
+
:few: "Tenge Kazakstan"
|
|
765
|
+
:many: "Tenge Kazakstan"
|
|
766
|
+
:one: "Tenge Kazakstan"
|
|
767
|
+
:other: "Tenge Kazakstan"
|
|
768
|
+
:symbol: "₸"
|
|
769
|
+
:two: "Tenge Kazakstan"
|
|
770
|
+
:zero: "Tenge Kazakstan"
|
|
771
|
+
:LAK:
|
|
772
|
+
:few: "Kip Laos"
|
|
773
|
+
:many: "Kip Laos"
|
|
774
|
+
:one: "Kip Laos"
|
|
775
|
+
:other: "Kip Laos"
|
|
776
|
+
:symbol: "₭"
|
|
777
|
+
:two: "Kip Laos"
|
|
778
|
+
:zero: "Kip Laos"
|
|
779
|
+
:LBP:
|
|
780
|
+
:few: "Punt Libanus"
|
|
781
|
+
:many: "Punt Libanus"
|
|
782
|
+
:one: "Punt Libanus"
|
|
783
|
+
:other: "Punt Libanus"
|
|
784
|
+
:two: "Punt Libanus"
|
|
785
|
+
:zero: "Punt Libanus"
|
|
786
|
+
:LKR:
|
|
787
|
+
:few: "Rwpî Sri Lanka"
|
|
788
|
+
:many: "Rwpî Sri Lanka"
|
|
789
|
+
:one: "Rwpî Sri Lanka"
|
|
790
|
+
:other: "Rwpî Sri Lanka"
|
|
791
|
+
:two: "Rwpî Sri Lanka"
|
|
792
|
+
:zero: "Rwpî Sri Lanka"
|
|
793
|
+
:LRD:
|
|
794
|
+
:few: "Doler Liberia"
|
|
795
|
+
:many: "Doler Liberia"
|
|
796
|
+
:one: "Doler Liberia"
|
|
797
|
+
:other: "Doler Liberia"
|
|
798
|
+
:symbol: "$"
|
|
799
|
+
:two: "Doler Liberia"
|
|
800
|
+
:zero: "Doler Liberia"
|
|
801
|
+
:LSL:
|
|
802
|
+
:one: "Lesotho loti"
|
|
803
|
+
:other: "Lesotho lotis"
|
|
804
|
+
:LTL:
|
|
805
|
+
:few: "Litas Lithwania"
|
|
806
|
+
:many: "Litas Lithwania"
|
|
807
|
+
:one: "Litas Lithwania"
|
|
808
|
+
:other: "Litas Lithwania"
|
|
809
|
+
:two: "Litas Lithwania"
|
|
810
|
+
:zero: "Litas Lithwania"
|
|
811
|
+
:LTT:
|
|
812
|
+
:one: "Lithuanian talonas"
|
|
813
|
+
:other: "Lithuanian talonases"
|
|
814
|
+
:LUC:
|
|
815
|
+
:one: "Luxembourgian convertible franc"
|
|
816
|
+
:other: "Luxembourgian convertible francs"
|
|
817
|
+
:LUF:
|
|
818
|
+
:one: "Luxembourgian franc"
|
|
819
|
+
:other: "Luxembourgian francs"
|
|
820
|
+
:LUL:
|
|
821
|
+
:one: "Luxembourg financial franc"
|
|
822
|
+
:other: "Luxembourg financial francs"
|
|
823
|
+
:LVL:
|
|
824
|
+
:few: "Lats Latfia"
|
|
825
|
+
:many: "Lats Latfia"
|
|
826
|
+
:one: "Lats Latfia"
|
|
827
|
+
:other: "Lats Latfia"
|
|
828
|
+
:two: "Lats Latfia"
|
|
829
|
+
:zero: "Lats Latfia"
|
|
830
|
+
:LVR:
|
|
831
|
+
:one: "Latvian ruble"
|
|
832
|
+
:other: "Latvian rubles"
|
|
833
|
+
:LYD:
|
|
834
|
+
:few: "Dinar Libya"
|
|
835
|
+
:many: "Dinar Libya"
|
|
836
|
+
:one: "Dinar Libya"
|
|
837
|
+
:other: "Dinar Libya"
|
|
838
|
+
:two: "Dinar Libya"
|
|
839
|
+
:zero: "Dinar Libya"
|
|
840
|
+
:MAD:
|
|
841
|
+
:few: "Dirham Moroco"
|
|
842
|
+
:many: "Dirham Moroco"
|
|
843
|
+
:one: "Dirham Moroco"
|
|
844
|
+
:other: "Dirham Moroco"
|
|
845
|
+
:two: "Dirham Moroco"
|
|
846
|
+
:zero: "Dirham Moroco"
|
|
847
|
+
:MAF:
|
|
848
|
+
:one: "Moroccan franc"
|
|
849
|
+
:other: "Moroccan francs"
|
|
850
|
+
:MCF:
|
|
851
|
+
:one: "Monegasque franc"
|
|
852
|
+
:other: "Monegasque francs"
|
|
853
|
+
:MDC:
|
|
854
|
+
:one: "Moldovan cupon"
|
|
855
|
+
:other: "Moldovan cupon"
|
|
856
|
+
:MDL:
|
|
857
|
+
:few: "Leu Moldofa"
|
|
858
|
+
:many: "Leu Moldofa"
|
|
859
|
+
:one: "Leu Moldofa"
|
|
860
|
+
:other: "Leu Moldofa"
|
|
861
|
+
:two: "Leu Moldofa"
|
|
862
|
+
:zero: "Leu Moldofa"
|
|
863
|
+
:MGA:
|
|
864
|
+
:few: "Ariary Madagascar"
|
|
865
|
+
:many: "Ariary Madagascar"
|
|
866
|
+
:one: "Ariary Madagascar"
|
|
867
|
+
:other: "Ariary Madagascar"
|
|
868
|
+
:two: "Ariary Madagascar"
|
|
869
|
+
:zero: "Ariary Madagascar"
|
|
870
|
+
:MGF:
|
|
871
|
+
:one: "Malagasy franc"
|
|
872
|
+
:other: "Malagasy francs"
|
|
873
|
+
:MKD:
|
|
874
|
+
:few: "Denar Macedonia"
|
|
875
|
+
:many: "Denar Macedonia"
|
|
876
|
+
:one: "Denar Macedonia"
|
|
877
|
+
:other: "Denar Macedonia"
|
|
878
|
+
:two: "Denar Macedonia"
|
|
879
|
+
:zero: "Denar Macedonia"
|
|
880
|
+
:MKN:
|
|
881
|
+
:one: "Macedonian denar (1992–1993)"
|
|
882
|
+
:other: "Macedonian denari (1992–1993)"
|
|
883
|
+
:MLF:
|
|
884
|
+
:one: "Malian franc"
|
|
885
|
+
:other: "Malian francs"
|
|
886
|
+
:MMK:
|
|
887
|
+
:few: "Kyat Myanmar"
|
|
888
|
+
:many: "Kyat Myanmar"
|
|
889
|
+
:one: "Kyat Myanmar"
|
|
890
|
+
:other: "Kyat Myanmar"
|
|
891
|
+
:two: "Kyat Myanmar"
|
|
892
|
+
:zero: "Kyat Myanmar"
|
|
893
|
+
:MNT:
|
|
894
|
+
:few: "Tugrik Mongolia"
|
|
895
|
+
:many: "Tugrik Mongolia"
|
|
896
|
+
:one: "Tugrik Mongolia"
|
|
897
|
+
:other: "Tugrik Mongolia"
|
|
898
|
+
:symbol: "₮"
|
|
899
|
+
:two: "Tugrik Mongolia"
|
|
900
|
+
:zero: "Tugrik Mongolia"
|
|
901
|
+
:MOP:
|
|
902
|
+
:few: "Pataca Macau"
|
|
903
|
+
:many: "Pataca Macau"
|
|
904
|
+
:one: "Pataca Macau"
|
|
905
|
+
:other: "Pataca Macau"
|
|
906
|
+
:two: "Pataca Macau"
|
|
907
|
+
:zero: "Pataca Macau"
|
|
908
|
+
:MRO:
|
|
909
|
+
:few: "Ouguiya Mauritania"
|
|
910
|
+
:many: "Ouguiya Mauritania"
|
|
911
|
+
:one: "Ouguiya Mauritania"
|
|
912
|
+
:other: "Ouguiya Mauritania"
|
|
913
|
+
:two: "Ouguiya Mauritania"
|
|
914
|
+
:zero: "Ouguiya Mauritania"
|
|
915
|
+
:MTL:
|
|
916
|
+
:one: "Maltese lira"
|
|
917
|
+
:other: "Maltese lira"
|
|
918
|
+
:MTP:
|
|
919
|
+
:one: "Maltese pound"
|
|
920
|
+
:other: "Maltese pounds"
|
|
921
|
+
:MUR:
|
|
922
|
+
:few: "Rwpî Mauritius"
|
|
923
|
+
:many: "Rwpî Mauritius"
|
|
924
|
+
:one: "Rwpî Mauritius"
|
|
925
|
+
:other: "Rwpî Mauritius"
|
|
926
|
+
:two: "Rwpî Mauritius"
|
|
927
|
+
:zero: "Rwpî Mauritius"
|
|
928
|
+
:MVP:
|
|
929
|
+
:one: "Maldivian rupee"
|
|
930
|
+
:other: "Maldivian rupees"
|
|
931
|
+
:MVR:
|
|
932
|
+
:few: "Rufiyaa'r Maldives"
|
|
933
|
+
:many: "Rufiyaa'r Maldives"
|
|
934
|
+
:one: "Rufiyaa'r Maldives"
|
|
935
|
+
:other: "Rufiyaa'r Maldives"
|
|
936
|
+
:two: "Rufiyaa'r Maldives"
|
|
937
|
+
:zero: "Rufiyaa'r Maldives"
|
|
938
|
+
:MWK:
|
|
939
|
+
:few: "Kwacha Malawi"
|
|
940
|
+
:many: "Kwacha Malawi"
|
|
941
|
+
:one: "Kwacha Malawi"
|
|
942
|
+
:other: "Kwacha Malawi"
|
|
943
|
+
:two: "Kwacha Malawi"
|
|
944
|
+
:zero: "Kwacha Malawi"
|
|
945
|
+
:MXN:
|
|
946
|
+
:few: "Peso México"
|
|
947
|
+
:many: "Peso México"
|
|
948
|
+
:one: "Peso México"
|
|
949
|
+
:other: "Peso México"
|
|
950
|
+
:symbol: "MX$"
|
|
951
|
+
:two: "Peso México"
|
|
952
|
+
:zero: "Peso México"
|
|
953
|
+
:MXP:
|
|
954
|
+
:one: "Mexican silver peso (1861–1992)"
|
|
955
|
+
:other: "Mexican silver pesos (1861–1992)"
|
|
956
|
+
:MXV:
|
|
957
|
+
:one: "Mexican investment unit"
|
|
958
|
+
:other: "Mexican investment units"
|
|
959
|
+
:MYR:
|
|
960
|
+
:few: "Ringgit Malaysia"
|
|
961
|
+
:many: "Ringgit Malaysia"
|
|
962
|
+
:one: "Ringgit Malaysia"
|
|
963
|
+
:other: "Ringgit Malaysia"
|
|
964
|
+
:two: "Ringgit Malaysia"
|
|
965
|
+
:zero: "Ringgit Malaysia"
|
|
966
|
+
:MZE:
|
|
967
|
+
:one: "Mozambican escudo"
|
|
968
|
+
:other: "Mozambican escudos"
|
|
969
|
+
:MZM:
|
|
970
|
+
:one: "Mozambican metical (1980–2006)"
|
|
971
|
+
:other: "Mozambican meticals (1980–2006)"
|
|
972
|
+
:MZN:
|
|
973
|
+
:few: "Metical Mozambique"
|
|
974
|
+
:many: "Metical Mozambique"
|
|
975
|
+
:one: "Metical Mozambique"
|
|
976
|
+
:other: "Metical Mozambique"
|
|
977
|
+
:two: "Metical Mozambique"
|
|
978
|
+
:zero: "Metical Mozambique"
|
|
979
|
+
:NAD:
|
|
980
|
+
:few: "Doler Namibia"
|
|
981
|
+
:many: "Doler Namibia"
|
|
982
|
+
:one: "Doler Namibia"
|
|
983
|
+
:other: "Doler Namibia"
|
|
984
|
+
:symbol: "$"
|
|
985
|
+
:two: "Doler Namibia"
|
|
986
|
+
:zero: "Doler Namibia"
|
|
987
|
+
:NGN:
|
|
988
|
+
:few: "Naira Nigeria"
|
|
989
|
+
:many: "Naira Nigeria"
|
|
990
|
+
:one: "Naira Nigeria"
|
|
991
|
+
:other: "Naira Nigeria"
|
|
992
|
+
:symbol: "₦"
|
|
993
|
+
:two: "Naira Nigeria"
|
|
994
|
+
:zero: "Naira Nigeria"
|
|
995
|
+
:NIC:
|
|
996
|
+
:one: "Nicaraguan córdoba (1988–1991)"
|
|
997
|
+
:other: "Nicaraguan córdobas (1988–1991)"
|
|
998
|
+
:NIO:
|
|
999
|
+
:few: "Córdoba Nicaragua"
|
|
1000
|
+
:many: "Córdoba Nicaragua"
|
|
1001
|
+
:one: "Córdoba Nicaragua"
|
|
1002
|
+
:other: "Córdoba Nicaragua"
|
|
1003
|
+
:two: "Córdoba Nicaragua"
|
|
1004
|
+
:zero: "Córdoba Nicaragua"
|
|
1005
|
+
:NLG:
|
|
1006
|
+
:one: "Dutch guilder"
|
|
1007
|
+
:other: "Dutch guilders"
|
|
1008
|
+
:NOK:
|
|
1009
|
+
:few: "Krone Norwy"
|
|
1010
|
+
:many: "Krone Norwy"
|
|
1011
|
+
:one: "Krone Norwy"
|
|
1012
|
+
:other: "Krone Norwy"
|
|
1013
|
+
:two: "Krone Norwy"
|
|
1014
|
+
:zero: "Krone Norwy"
|
|
1015
|
+
:NPR:
|
|
1016
|
+
:few: "Rwpî Nepal"
|
|
1017
|
+
:many: "Rwpî Nepal"
|
|
1018
|
+
:one: "Rwpî Nepal"
|
|
1019
|
+
:other: "Rwpî Nepal"
|
|
1020
|
+
:two: "Rwpî Nepal"
|
|
1021
|
+
:zero: "Rwpî Nepal"
|
|
1022
|
+
:NZD:
|
|
1023
|
+
:few: "Doler Seland Newydd"
|
|
1024
|
+
:many: "Doler Seland Newydd"
|
|
1025
|
+
:one: "Doler Seland Newydd"
|
|
1026
|
+
:other: "Doler Seland Newydd"
|
|
1027
|
+
:symbol: "NZ$"
|
|
1028
|
+
:two: "Doler Seland Newydd"
|
|
1029
|
+
:zero: "Doler Seland Newydd"
|
|
1030
|
+
:OMR:
|
|
1031
|
+
:few: "Rial Oman"
|
|
1032
|
+
:many: "Rial Oman"
|
|
1033
|
+
:one: "Rial Oman"
|
|
1034
|
+
:other: "Rial Oman"
|
|
1035
|
+
:two: "Rial Oman"
|
|
1036
|
+
:zero: "Rial Oman"
|
|
1037
|
+
:PAB:
|
|
1038
|
+
:few: "Balboa Panama"
|
|
1039
|
+
:many: "Balboa Panama"
|
|
1040
|
+
:one: "Balboa Panama"
|
|
1041
|
+
:other: "Balboa Panama"
|
|
1042
|
+
:two: "Balboa Panama"
|
|
1043
|
+
:zero: "Balboa Panama"
|
|
1044
|
+
:PEI:
|
|
1045
|
+
:one: "Peruvian inti"
|
|
1046
|
+
:other: "Peruvian intis"
|
|
1047
|
+
:PEN:
|
|
1048
|
+
:few: "Nuevo Sol Periw"
|
|
1049
|
+
:many: "Nuevo Sol Periw"
|
|
1050
|
+
:one: "Nuevo Sol Periw"
|
|
1051
|
+
:other: "Nuevo Sol Periw"
|
|
1052
|
+
:two: "Nuevo Sol Periw"
|
|
1053
|
+
:zero: "Nuevo Sol Periw"
|
|
1054
|
+
:PES:
|
|
1055
|
+
:one: "Peruvian sol (1863–1965)"
|
|
1056
|
+
:other: "Peruvian soles (1863–1965)"
|
|
1057
|
+
:PGK:
|
|
1058
|
+
:few: "Kina Papua Guinea Newydd"
|
|
1059
|
+
:many: "Kina Papua Guinea Newydd"
|
|
1060
|
+
:one: "Kina Papua Guinea Newydd"
|
|
1061
|
+
:other: "Kina Papua Guinea Newydd"
|
|
1062
|
+
:two: "Kina Papua Guinea Newydd"
|
|
1063
|
+
:zero: "Kina Papua Guinea Newydd"
|
|
1064
|
+
:PHP:
|
|
1065
|
+
:few: "Peso Pilipinas"
|
|
1066
|
+
:many: "Peso Pilipinas"
|
|
1067
|
+
:one: "Peso Pilipinas"
|
|
1068
|
+
:other: "Peso Pilipinas"
|
|
1069
|
+
:symbol: "₱"
|
|
1070
|
+
:two: "Peso Pilipinas"
|
|
1071
|
+
:zero: "Peso Pilipinas"
|
|
1072
|
+
:PKR:
|
|
1073
|
+
:few: "Rwpî Pacistan"
|
|
1074
|
+
:many: "Rwpî Pacistan"
|
|
1075
|
+
:one: "Rwpî Pacistan"
|
|
1076
|
+
:other: "Rwpî Pacistan"
|
|
1077
|
+
:two: "Rwpî Pacistan"
|
|
1078
|
+
:zero: "Rwpî Pacistan"
|
|
1079
|
+
:PLN:
|
|
1080
|
+
:few: "Zloty Gwlad Pwyl"
|
|
1081
|
+
:many: "Zloty Gwlad Pwyl"
|
|
1082
|
+
:one: "Zloty Gwlad Pwyl"
|
|
1083
|
+
:other: "Zloty Gwlad Pwyl"
|
|
1084
|
+
:two: "Zloty Gwlad Pwyl"
|
|
1085
|
+
:zero: "Zloty Gwlad Pwyl"
|
|
1086
|
+
:PLZ:
|
|
1087
|
+
:one: "Polish zloty (PLZ)"
|
|
1088
|
+
:other: "Polish zlotys (PLZ)"
|
|
1089
|
+
:PTE:
|
|
1090
|
+
:one: "Portuguese escudo"
|
|
1091
|
+
:other: "Portuguese escudos"
|
|
1092
|
+
:PYG:
|
|
1093
|
+
:few: "Guarani Paraguay"
|
|
1094
|
+
:many: "Guarani Paraguay"
|
|
1095
|
+
:one: "Guarani Paraguay"
|
|
1096
|
+
:other: "Guarani Paraguay"
|
|
1097
|
+
:symbol: "₲"
|
|
1098
|
+
:two: "Guarani Paraguay"
|
|
1099
|
+
:zero: "Guarani Paraguay"
|
|
1100
|
+
:QAR:
|
|
1101
|
+
:few: "Rial Qatar"
|
|
1102
|
+
:many: "Rial Qatar"
|
|
1103
|
+
:one: "Rial Qatar"
|
|
1104
|
+
:other: "Rial Qatar"
|
|
1105
|
+
:two: "Rial Qatar"
|
|
1106
|
+
:zero: "Rial Qatar"
|
|
1107
|
+
:RHD:
|
|
1108
|
+
:one: "Rhodesian dollar"
|
|
1109
|
+
:other: "Rhodesian dollars"
|
|
1110
|
+
:ROL:
|
|
1111
|
+
:one: "Romanian leu (1952–2006)"
|
|
1112
|
+
:other: "Romanian Lei (1952–2006)"
|
|
1113
|
+
:RON:
|
|
1114
|
+
:few: "Leu Rwmania"
|
|
1115
|
+
:many: "Leu Rwmania"
|
|
1116
|
+
:one: "Leu Rwmania"
|
|
1117
|
+
:other: "Leu Rwmania"
|
|
1118
|
+
:two: "Leu Rwmania"
|
|
1119
|
+
:zero: "Leu Rwmania"
|
|
1120
|
+
:RSD:
|
|
1121
|
+
:few: "Dinar Serbia"
|
|
1122
|
+
:many: "Dinar Serbia"
|
|
1123
|
+
:one: "Dinar Serbia"
|
|
1124
|
+
:other: "Dinar Serbia"
|
|
1125
|
+
:two: "Dinar Serbia"
|
|
1126
|
+
:zero: "Dinar Serbia"
|
|
1127
|
+
:RUB:
|
|
1128
|
+
:few: "Rwbl Rwsia"
|
|
1129
|
+
:many: "Rwbl Rwsia"
|
|
1130
|
+
:one: "Rwbl Rwsia"
|
|
1131
|
+
:other: "Rwbl Rwsia"
|
|
1132
|
+
:two: "Rwbl Rwsia"
|
|
1133
|
+
:zero: "Rwbl Rwsia"
|
|
1134
|
+
:RUR:
|
|
1135
|
+
:one: "Russian ruble (1991–1998)"
|
|
1136
|
+
:other: "Russian rubles (1991–1998)"
|
|
1137
|
+
:symbol: "р."
|
|
1138
|
+
:RWF:
|
|
1139
|
+
:few: "Ffranc Rwanda"
|
|
1140
|
+
:many: "Ffranc Rwanda"
|
|
1141
|
+
:one: "Ffranc Rwanda"
|
|
1142
|
+
:other: "Ffranc Rwanda"
|
|
1143
|
+
:two: "Ffranc Rwanda"
|
|
1144
|
+
:zero: "Ffranc Rwanda"
|
|
1145
|
+
:SAR:
|
|
1146
|
+
:few: "Riyal Saudi Arabia"
|
|
1147
|
+
:many: "Riyal Saudi Arabia"
|
|
1148
|
+
:one: "Riyal Saudi Arabia"
|
|
1149
|
+
:other: "Riyal Saudi Arabia"
|
|
1150
|
+
:two: "Riyal Saudi Arabia"
|
|
1151
|
+
:zero: "Riyal Saudi Arabia"
|
|
1152
|
+
:SBD:
|
|
1153
|
+
:few: "Doler Ynysoedd Solomon"
|
|
1154
|
+
:many: "Doler Ynysoedd Solomon"
|
|
1155
|
+
:one: "Doler Ynysoedd Solomon"
|
|
1156
|
+
:other: "Doler Ynysoedd Solomon"
|
|
1157
|
+
:symbol: "$"
|
|
1158
|
+
:two: "Doler Ynysoedd Solomon"
|
|
1159
|
+
:zero: "Doler Ynysoedd Solomon"
|
|
1160
|
+
:SCR:
|
|
1161
|
+
:few: "Rwpî Seychelles"
|
|
1162
|
+
:many: "Rwpî Seychelles"
|
|
1163
|
+
:one: "Rwpî Seychelles"
|
|
1164
|
+
:other: "Rwpî Seychelles"
|
|
1165
|
+
:two: "Rwpî Seychelles"
|
|
1166
|
+
:zero: "Rwpî Seychelles"
|
|
1167
|
+
:SDD:
|
|
1168
|
+
:one: "Sudanese dinar (1992–2007)"
|
|
1169
|
+
:other: "Sudanese dinars (1992–2007)"
|
|
1170
|
+
:SDG:
|
|
1171
|
+
:few: "Punt Sudan"
|
|
1172
|
+
:many: "Punt Sudan"
|
|
1173
|
+
:one: "Punt Sudan"
|
|
1174
|
+
:other: "Punt Sudan"
|
|
1175
|
+
:two: "Punt Sudan"
|
|
1176
|
+
:zero: "Punt Sudan"
|
|
1177
|
+
:SDP:
|
|
1178
|
+
:one: "Sudanese pound (1957–1998)"
|
|
1179
|
+
:other: "Sudanese pounds (1957–1998)"
|
|
1180
|
+
:SEK:
|
|
1181
|
+
:few: "Krona Sweden"
|
|
1182
|
+
:many: "Krona Sweden"
|
|
1183
|
+
:one: "Krona Sweden"
|
|
1184
|
+
:other: "Krona Sweden"
|
|
1185
|
+
:two: "Krona Sweden"
|
|
1186
|
+
:zero: "Krona Sweden"
|
|
1187
|
+
:SGD:
|
|
1188
|
+
:few: "Doler Singapore"
|
|
1189
|
+
:many: "Doler Singapore"
|
|
1190
|
+
:one: "Doler Singapore"
|
|
1191
|
+
:other: "Doler Singapore"
|
|
1192
|
+
:symbol: "$"
|
|
1193
|
+
:two: "Doler Singapore"
|
|
1194
|
+
:zero: "Doler Singapore"
|
|
1195
|
+
:SHP:
|
|
1196
|
+
:few: "Punt Saint Helena"
|
|
1197
|
+
:many: "Punt Saint Helena"
|
|
1198
|
+
:one: "Punt Saint Helena"
|
|
1199
|
+
:other: "Punt Saint Helena"
|
|
1200
|
+
:two: "Punt Saint Helena"
|
|
1201
|
+
:zero: "Punt Saint Helena"
|
|
1202
|
+
:SIT:
|
|
1203
|
+
:one: "Slovenian tolar"
|
|
1204
|
+
:other: "Slovenian tolars"
|
|
1205
|
+
:SKK:
|
|
1206
|
+
:one: "Slovak koruna"
|
|
1207
|
+
:other: "Slovak korunas"
|
|
1208
|
+
:SLL:
|
|
1209
|
+
:few: "Leone Sierra Leone"
|
|
1210
|
+
:many: "Leone Sierra Leone"
|
|
1211
|
+
:one: "Leone Sierra Leone"
|
|
1212
|
+
:other: "Leone Sierra Leone"
|
|
1213
|
+
:two: "Leone Sierra Leone"
|
|
1214
|
+
:zero: "Leone Sierra Leone"
|
|
1215
|
+
:SOS:
|
|
1216
|
+
:few: "Swllt Somalia"
|
|
1217
|
+
:many: "Swllt Somalia"
|
|
1218
|
+
:one: "Swllt Somalia"
|
|
1219
|
+
:other: "Swllt Somalia"
|
|
1220
|
+
:two: "Swllt Somalia"
|
|
1221
|
+
:zero: "Swllt Somalia"
|
|
1222
|
+
:SRD:
|
|
1223
|
+
:few: "Doler Surinam"
|
|
1224
|
+
:many: "Doler Surinam"
|
|
1225
|
+
:one: "Doler Surinam"
|
|
1226
|
+
:other: "Doler Surinam"
|
|
1227
|
+
:symbol: "$"
|
|
1228
|
+
:two: "Doler Surinam"
|
|
1229
|
+
:zero: "Doler Surinam"
|
|
1230
|
+
:SRG:
|
|
1231
|
+
:one: "Surinamese guilder"
|
|
1232
|
+
:other: "Surinamese guilders"
|
|
1233
|
+
:SSP:
|
|
1234
|
+
:few: "Punt De Sudan"
|
|
1235
|
+
:many: "Punt De Sudan"
|
|
1236
|
+
:one: "Punt De Sudan"
|
|
1237
|
+
:other: "Punt De Sudan"
|
|
1238
|
+
:symbol: "£"
|
|
1239
|
+
:two: "Punt De Sudan"
|
|
1240
|
+
:zero: "Punt De Sudan"
|
|
1241
|
+
:STD:
|
|
1242
|
+
:few: "Dobra São Tomé a Príncipe"
|
|
1243
|
+
:many: "Dobra São Tomé a Príncipe"
|
|
1244
|
+
:one: "Dobra São Tomé a Príncipe"
|
|
1245
|
+
:other: "Dobra São Tomé a Príncipe"
|
|
1246
|
+
:two: "Dobra São Tomé a Príncipe"
|
|
1247
|
+
:zero: "Dobra São Tomé a Príncipe"
|
|
1248
|
+
:SUR:
|
|
1249
|
+
:one: "Soviet rouble"
|
|
1250
|
+
:other: "Soviet roubles"
|
|
1251
|
+
:SVC:
|
|
1252
|
+
:one: "Salvadoran colón"
|
|
1253
|
+
:other: "Salvadoran colones"
|
|
1254
|
+
:SYP:
|
|
1255
|
+
:few: "Punt Syria"
|
|
1256
|
+
:many: "Punt Syria"
|
|
1257
|
+
:one: "Punt Syria"
|
|
1258
|
+
:other: "Punt Syria"
|
|
1259
|
+
:two: "Punt Syria"
|
|
1260
|
+
:zero: "Punt Syria"
|
|
1261
|
+
:SZL:
|
|
1262
|
+
:few: "Lilangeni Gwlad Swazi"
|
|
1263
|
+
:many: "Lilangeni Gwlad Swazi"
|
|
1264
|
+
:one: "Lilangeni Gwlad Swazi"
|
|
1265
|
+
:other: "Lilangeni Gwlad Swazi"
|
|
1266
|
+
:two: "Lilangeni Gwlad Swazi"
|
|
1267
|
+
:zero: "Lilangeni Gwlad Swazi"
|
|
1268
|
+
:THB:
|
|
1269
|
+
:few: "Baht Gwlad Thai"
|
|
1270
|
+
:many: "Baht Gwlad Thai"
|
|
1271
|
+
:one: "Baht Gwlad Thai"
|
|
1272
|
+
:other: "Baht Gwlad Thai"
|
|
1273
|
+
:symbol: "฿"
|
|
1274
|
+
:two: "Baht Gwlad Thai"
|
|
1275
|
+
:zero: "Baht Gwlad Thai"
|
|
1276
|
+
:TJR:
|
|
1277
|
+
:one: "Tajikistani ruble"
|
|
1278
|
+
:other: "Tajikistani rubles"
|
|
1279
|
+
:TJS:
|
|
1280
|
+
:few: "Somoni Tajikistan"
|
|
1281
|
+
:many: "Somoni Tajikistan"
|
|
1282
|
+
:one: "Somoni Tajikistan"
|
|
1283
|
+
:other: "Somoni Tajikistan"
|
|
1284
|
+
:two: "Somoni Tajikistan"
|
|
1285
|
+
:zero: "Somoni Tajikistan"
|
|
1286
|
+
:TMM:
|
|
1287
|
+
:one: "Turkmenistani manat (1993–2009)"
|
|
1288
|
+
:other: "Turkmenistani manat (1993–2009)"
|
|
1289
|
+
:TMT:
|
|
1290
|
+
:few: "Manat Turkmenistan"
|
|
1291
|
+
:many: "Manat Turkmenistan"
|
|
1292
|
+
:one: "Manat Turkmenistan"
|
|
1293
|
+
:other: "Manat Turkmenistan"
|
|
1294
|
+
:two: "Manat Turkmenistan"
|
|
1295
|
+
:zero: "Manat Turkmenistan"
|
|
1296
|
+
:TND:
|
|
1297
|
+
:few: "Dinar Tunisia"
|
|
1298
|
+
:many: "Dinar Tunisia"
|
|
1299
|
+
:one: "Dinar Tunisia"
|
|
1300
|
+
:other: "Dinar Tunisia"
|
|
1301
|
+
:two: "Dinar Tunisia"
|
|
1302
|
+
:zero: "Dinar Tunisia"
|
|
1303
|
+
:TOP:
|
|
1304
|
+
:few: "Paʻanga Tonga"
|
|
1305
|
+
:many: "Paʻanga Tonga"
|
|
1306
|
+
:one: "Paʻanga Tonga"
|
|
1307
|
+
:other: "Paʻanga Tonga"
|
|
1308
|
+
:two: "Paʻanga Tonga"
|
|
1309
|
+
:zero: "Paʻanga Tonga"
|
|
1310
|
+
:TPE:
|
|
1311
|
+
:one: "Timorese escudo"
|
|
1312
|
+
:other: "Timorese escudos"
|
|
1313
|
+
:TRL:
|
|
1314
|
+
:one: "Turkish lira (1922–2005)"
|
|
1315
|
+
:other: "Turkish Lira (1922–2005)"
|
|
1316
|
+
:TRY:
|
|
1317
|
+
:few: "Lira Twrci"
|
|
1318
|
+
:many: "Lira Twrci"
|
|
1319
|
+
:one: "Lira Twrci"
|
|
1320
|
+
:other: "Lira Twrci"
|
|
1321
|
+
:symbol: "₺"
|
|
1322
|
+
:two: "Lira Twrci"
|
|
1323
|
+
:zero: "Lira Twrci"
|
|
1324
|
+
:TTD:
|
|
1325
|
+
:few: "Doler Trinidad a Tobago"
|
|
1326
|
+
:many: "Doler Trinidad a Tobago"
|
|
1327
|
+
:one: "Doler Trinidad a Tobago"
|
|
1328
|
+
:other: "Doler Trinidad a Tobago"
|
|
1329
|
+
:symbol: "$"
|
|
1330
|
+
:two: "Doler Trinidad a Tobago"
|
|
1331
|
+
:zero: "Doler Trinidad a Tobago"
|
|
1332
|
+
:TWD:
|
|
1333
|
+
:few: "Doler Newydd Taiwan"
|
|
1334
|
+
:many: "Doler Newydd Taiwan"
|
|
1335
|
+
:one: "Doler Newydd Taiwan"
|
|
1336
|
+
:other: "Doler Newydd Taiwan"
|
|
1337
|
+
:symbol: "NT$"
|
|
1338
|
+
:two: "Doler Newydd Taiwan"
|
|
1339
|
+
:zero: "Doler Newydd Taiwan"
|
|
1340
|
+
:TZS:
|
|
1341
|
+
:few: "Swllt Tanzania"
|
|
1342
|
+
:many: "Swllt Tanzania"
|
|
1343
|
+
:one: "Swllt Tanzania"
|
|
1344
|
+
:other: "Swllt Tanzania"
|
|
1345
|
+
:two: "Swllt Tanzania"
|
|
1346
|
+
:zero: "Swllt Tanzania"
|
|
1347
|
+
:UAH:
|
|
1348
|
+
:few: "Hryvnia Wcráin"
|
|
1349
|
+
:many: "Hryvnia Wcráin"
|
|
1350
|
+
:one: "Hryvnia Wcráin"
|
|
1351
|
+
:other: "Hryvnia Wcráin"
|
|
1352
|
+
:symbol: "₴"
|
|
1353
|
+
:two: "Hryvnia Wcráin"
|
|
1354
|
+
:zero: "Hryvnia Wcráin"
|
|
1355
|
+
:UAK:
|
|
1356
|
+
:one: "Ukrainian karbovanets"
|
|
1357
|
+
:other: "Ukrainian karbovantsiv"
|
|
1358
|
+
:UGS:
|
|
1359
|
+
:one: "Ugandan shilling (1966–1987)"
|
|
1360
|
+
:other: "Ugandan shillings (1966–1987)"
|
|
1361
|
+
:UGX:
|
|
1362
|
+
:few: "Swllt Uganda"
|
|
1363
|
+
:many: "Swllt Uganda"
|
|
1364
|
+
:one: "Swllt Uganda"
|
|
1365
|
+
:other: "Swllt Uganda"
|
|
1366
|
+
:two: "Swllt Uganda"
|
|
1367
|
+
:zero: "Swllt Uganda"
|
|
1368
|
+
:USD:
|
|
1369
|
+
:few: "Doler UDA"
|
|
1370
|
+
:many: "Doler UDA"
|
|
1371
|
+
:one: "Doler UDA"
|
|
1372
|
+
:other: "Doler UDA"
|
|
1373
|
+
:symbol: "US$"
|
|
1374
|
+
:two: "Doler UDA"
|
|
1375
|
+
:zero: "Doler UDA"
|
|
1376
|
+
:USN:
|
|
1377
|
+
:one: "US dollar (next day)"
|
|
1378
|
+
:other: "US dollars (next day)"
|
|
1379
|
+
:USS:
|
|
1380
|
+
:one: "US dollar (same day)"
|
|
1381
|
+
:other: "US dollars (same day)"
|
|
1382
|
+
:UYI:
|
|
1383
|
+
:one: "Uruguayan peso (indexed units)"
|
|
1384
|
+
:other: "Uruguayan pesos (indexed units)"
|
|
1385
|
+
:UYP:
|
|
1386
|
+
:one: "Uruguayan peso (1975–1993)"
|
|
1387
|
+
:other: "Uruguayan pesos (1975–1993)"
|
|
1388
|
+
:UYU:
|
|
1389
|
+
:few: "Peso Uruguay"
|
|
1390
|
+
:many: "Peso Uruguay"
|
|
1391
|
+
:one: "Peso Uruguay"
|
|
1392
|
+
:other: "Peso Uruguay"
|
|
1393
|
+
:symbol: "$"
|
|
1394
|
+
:two: "Peso Uruguay"
|
|
1395
|
+
:zero: "Peso Uruguay"
|
|
1396
|
+
:UZS:
|
|
1397
|
+
:few: "Som Uzbekistan"
|
|
1398
|
+
:many: "Som Uzbekistan"
|
|
1399
|
+
:one: "Som Uzbekistan"
|
|
1400
|
+
:other: "Som Uzbekistan"
|
|
1401
|
+
:two: "Som Uzbekistan"
|
|
1402
|
+
:zero: "Som Uzbekistan"
|
|
1403
|
+
:VEB:
|
|
1404
|
+
:one: "Venezuelan bolívar (1871–2008)"
|
|
1405
|
+
:other: "Venezuelan bolívars (1871–2008)"
|
|
1406
|
+
:VEF:
|
|
1407
|
+
:few: "Bolívar Venezuela"
|
|
1408
|
+
:many: "Bolívar Venezuela"
|
|
1409
|
+
:one: "Bolívar Venezuela"
|
|
1410
|
+
:other: "Bolívar Venezuela"
|
|
1411
|
+
:two: "Bolívar Venezuela"
|
|
1412
|
+
:zero: "Bolívar Venezuela"
|
|
1413
|
+
:VND:
|
|
1414
|
+
:few: "Dong Fietnam"
|
|
1415
|
+
:many: "Dong Fietnam"
|
|
1416
|
+
:one: "Dong Fietnam"
|
|
1417
|
+
:other: "Dong Fietnam"
|
|
1418
|
+
:symbol: "₫"
|
|
1419
|
+
:two: "Dong Fietnam"
|
|
1420
|
+
:zero: "Dong Fietnam"
|
|
1421
|
+
:VNN:
|
|
1422
|
+
:one: "Vietnamese dong (1978–1985)"
|
|
1423
|
+
:other: "Vietnamese dong (1978–1985)"
|
|
1424
|
+
:VUV:
|
|
1425
|
+
:few: "Vatu Vanuatu"
|
|
1426
|
+
:many: "Vatu Vanuatu"
|
|
1427
|
+
:one: "Vatu Vanuatu"
|
|
1428
|
+
:other: "Vatu Vanuatu"
|
|
1429
|
+
:two: "Vatu Vanuatu"
|
|
1430
|
+
:zero: "Vatu Vanuatu"
|
|
1431
|
+
:WST:
|
|
1432
|
+
:few: "Tala Samoa"
|
|
1433
|
+
:many: "Tala Samoa"
|
|
1434
|
+
:one: "Tala Samoa"
|
|
1435
|
+
:other: "Tala Samoa"
|
|
1436
|
+
:two: "Tala Samoa"
|
|
1437
|
+
:zero: "Tala Samoa"
|
|
1438
|
+
:XAF:
|
|
1439
|
+
:few: "Ffranc CFA y BEAC"
|
|
1440
|
+
:many: "Ffranc CFA y BEAC"
|
|
1441
|
+
:one: "Ffranc CFA y BEAC"
|
|
1442
|
+
:other: "Ffranc CFA y BEAC"
|
|
1443
|
+
:symbol: "FCFA"
|
|
1444
|
+
:two: "Ffranc CFA y BEAC"
|
|
1445
|
+
:zero: "Ffranc CFA y BEAC"
|
|
1446
|
+
:XAG:
|
|
1447
|
+
:one: "troy ounce of silver"
|
|
1448
|
+
:other: "troy ounces of silver"
|
|
1449
|
+
:XAU:
|
|
1450
|
+
:one: "troy ounce of gold"
|
|
1451
|
+
:other: "troy ounces of gold"
|
|
1452
|
+
:XBA:
|
|
1453
|
+
:one: "European composite unit"
|
|
1454
|
+
:other: "European composite units"
|
|
1455
|
+
:XBB:
|
|
1456
|
+
:one: "European monetary unit"
|
|
1457
|
+
:other: "European monetary units"
|
|
1458
|
+
:XBC:
|
|
1459
|
+
:one: "European unit of account (XBC)"
|
|
1460
|
+
:other: "European units of account (XBC)"
|
|
1461
|
+
:XBD:
|
|
1462
|
+
:one: "European unit of account (XBD)"
|
|
1463
|
+
:other: "European units of account (XBD)"
|
|
1464
|
+
:XCD:
|
|
1465
|
+
:few: "Doler Dwyrain y Caribî"
|
|
1466
|
+
:many: "Doler Dwyrain y Caribî"
|
|
1467
|
+
:one: "Doler Dwyrain y Caribî"
|
|
1468
|
+
:other: "Doler Dwyrain y Caribî"
|
|
1469
|
+
:symbol: "EC$"
|
|
1470
|
+
:two: "Doler Dwyrain y Caribî"
|
|
1471
|
+
:zero: "Doler Dwyrain y Caribî"
|
|
1472
|
+
:XDR:
|
|
1473
|
+
:one: "special drawing rights"
|
|
1474
|
+
:other: "special drawing rights"
|
|
1475
|
+
:XEU:
|
|
1476
|
+
:one: "European currency unit"
|
|
1477
|
+
:other: "European currency units"
|
|
1478
|
+
:XFO:
|
|
1479
|
+
:one: "French gold franc"
|
|
1480
|
+
:other: "French gold francs"
|
|
1481
|
+
:XFU:
|
|
1482
|
+
:one: "French UIC-franc"
|
|
1483
|
+
:other: "French UIC-francs"
|
|
1484
|
+
:XOF:
|
|
1485
|
+
:few: "Ffranc CFA y BCEAO"
|
|
1486
|
+
:many: "Ffranc CFA y BCEAO"
|
|
1487
|
+
:one: "Ffranc CFA y BCEAO"
|
|
1488
|
+
:other: "Ffranc CFA y BCEAO"
|
|
1489
|
+
:symbol: "CFA"
|
|
1490
|
+
:two: "Ffranc CFA y BCEAO"
|
|
1491
|
+
:zero: "Ffranc CFA y BCEAO"
|
|
1492
|
+
:XPD:
|
|
1493
|
+
:one: "troy ounce of palladium"
|
|
1494
|
+
:other: "troy ounces of palladium"
|
|
1495
|
+
:XPF:
|
|
1496
|
+
:few: "Ffranc CPF"
|
|
1497
|
+
:many: "Ffranc CPF"
|
|
1498
|
+
:one: "Ffranc CPF"
|
|
1499
|
+
:other: "Ffranc CPF"
|
|
1500
|
+
:symbol: "CFPF"
|
|
1501
|
+
:two: "Ffranc CPF"
|
|
1502
|
+
:zero: "Ffranc CPF"
|
|
1503
|
+
:XPT:
|
|
1504
|
+
:one: "troy ounce of platinum"
|
|
1505
|
+
:other: "troy ounces of platinum"
|
|
1506
|
+
:XRE:
|
|
1507
|
+
:one: "RINET Funds unit"
|
|
1508
|
+
:other: "RINET Funds units"
|
|
1509
|
+
:XSU:
|
|
1510
|
+
:one: "Sucre"
|
|
1511
|
+
:other: "Sucres"
|
|
1512
|
+
:XTS:
|
|
1513
|
+
:one: "Testing Currency unit"
|
|
1514
|
+
:other: "Testing Currency units"
|
|
1515
|
+
:XUA:
|
|
1516
|
+
:one: "ADB unit of account"
|
|
1517
|
+
:other: "ADB units of account"
|
|
1518
|
+
:XXX:
|
|
1519
|
+
:few: "Arian Cyfredol Anhysbys"
|
|
1520
|
+
:many: "Arian Cyfredol Anhysbys"
|
|
1521
|
+
:one: "Arian Cyfredol Anhysbys"
|
|
1522
|
+
:other: "Arian Cyfredol Anhysbys"
|
|
1523
|
+
:two: "Arian Cyfredol Anhysbys"
|
|
1524
|
+
:zero: "Arian Cyfredol Anhysbys"
|
|
1525
|
+
:YDD:
|
|
1526
|
+
:one: "Yemeni dinar"
|
|
1527
|
+
:other: "Yemeni dinars"
|
|
1528
|
+
:YER:
|
|
1529
|
+
:few: "Rial Yemen"
|
|
1530
|
+
:many: "Rial Yemen"
|
|
1531
|
+
:one: "Rial Yemen"
|
|
1532
|
+
:other: "Rial Yemen"
|
|
1533
|
+
:two: "Rial Yemen"
|
|
1534
|
+
:zero: "Rial Yemen"
|
|
1535
|
+
:YUD:
|
|
1536
|
+
:one: "Yugoslavian hard dinar (1966–1990)"
|
|
1537
|
+
:other: "Yugoslavian hard dinars (1966–1990)"
|
|
1538
|
+
:YUM:
|
|
1539
|
+
:one: "Yugoslavian new dinar (1994–2002)"
|
|
1540
|
+
:other: "Yugoslavian new dinars (1994–2002)"
|
|
1541
|
+
:YUN:
|
|
1542
|
+
:one: "Yugoslavian convertible dinar (1990–1992)"
|
|
1543
|
+
:other: "Yugoslavian convertible dinars (1990–1992)"
|
|
1544
|
+
:YUR:
|
|
1545
|
+
:one: "Yugoslavian reformed dinar (1992–1993)"
|
|
1546
|
+
:other: "Yugoslavian reformed dinars (1992–1993)"
|
|
1547
|
+
:ZAL:
|
|
1548
|
+
:one: "South African rand (financial)"
|
|
1549
|
+
:other: "South African rands (financial)"
|
|
1550
|
+
:ZAR:
|
|
1551
|
+
:few: "Rand De Affrica"
|
|
1552
|
+
:many: "Rand De Affrica"
|
|
1553
|
+
:one: "Rand De Affrica"
|
|
1554
|
+
:other: "Rand De Affrica"
|
|
1555
|
+
:two: "Rand De Affrica"
|
|
1556
|
+
:zero: "Rand De Affrica"
|
|
1557
|
+
:ZMK:
|
|
1558
|
+
:few: "Kwacha Zambia (1968–2012)"
|
|
1559
|
+
:many: "Kwacha Zambia (1968–2012)"
|
|
1560
|
+
:one: "Kwacha Zambia (1968–2012)"
|
|
1561
|
+
:other: "Kwacha Zambia (1968–2012)"
|
|
1562
|
+
:two: "Kwacha Zambia (1968–2012)"
|
|
1563
|
+
:zero: "Kwacha Zambia (1968–2012)"
|
|
1564
|
+
:ZMW:
|
|
1565
|
+
:few: "Kwacha Zambia"
|
|
1566
|
+
:many: "Kwacha Zambia"
|
|
1567
|
+
:one: "Kwacha Zambia"
|
|
1568
|
+
:other: "Kwacha Zambia"
|
|
1569
|
+
:two: "Kwacha Zambia"
|
|
1570
|
+
:zero: "Kwacha Zambia"
|
|
1571
|
+
:ZRN:
|
|
1572
|
+
:one: "Zairean new zaire (1993–1998)"
|
|
1573
|
+
:other: "Zairean new zaires (1993–1998)"
|
|
1574
|
+
:ZRZ:
|
|
1575
|
+
:one: "Zairean zaire (1971–1993)"
|
|
1576
|
+
:other: "Zairean zaires (1971–1993)"
|
|
1577
|
+
:ZWD:
|
|
1578
|
+
:one: "Zimbabwean dollar (1980–2008)"
|
|
1579
|
+
:other: "Zimbabwean dollars (1980–2008)"
|
|
1580
|
+
:ZWL:
|
|
1581
|
+
:one: "Zimbabwean dollar (2009)"
|
|
1582
|
+
:other: "Zimbabwean dollars (2009)"
|
|
1583
|
+
:ZWR:
|
|
1584
|
+
:one: "Zimbabwean dollar (2008)"
|
|
1585
|
+
:other: "Zimbabwean dollars (2008)"
|