twitter_cldr 3.2.1 → 3.3.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile +9 -4
- data/History.txt +11 -0
- data/README.md +40 -3
- data/Rakefile +26 -21
- data/lib/twitter_cldr/collation/collator.rb +3 -3
- data/lib/twitter_cldr/collation/sort_key_builder.rb +10 -10
- data/lib/twitter_cldr/data_readers/calendar_data_reader.rb +8 -8
- data/lib/twitter_cldr/data_readers/date_time_data_reader.rb +2 -2
- data/lib/twitter_cldr/data_readers/number_data_reader.rb +10 -10
- data/lib/twitter_cldr/data_readers/timespan_data_reader.rb +27 -27
- data/lib/twitter_cldr/formatters/list_formatter.rb +1 -1
- data/lib/twitter_cldr/formatters/numbers/currency_formatter.rb +3 -3
- data/lib/twitter_cldr/formatters/numbers/helpers/integer.rb +7 -5
- data/lib/twitter_cldr/formatters/numbers/rbnf/formatters.rb +1 -1
- data/lib/twitter_cldr/formatters/numbers/rbnf/rule.rb +1 -1
- data/lib/twitter_cldr/formatters/numbers/rbnf/rule_set.rb +3 -2
- data/lib/twitter_cldr/formatters/numbers/rbnf.rb +2 -2
- data/lib/twitter_cldr/formatters/plurals/rules.rb +1 -1
- data/lib/twitter_cldr/localized/localized_date.rb +2 -2
- data/lib/twitter_cldr/localized/localized_datetime.rb +8 -8
- data/lib/twitter_cldr/localized/localized_number.rb +7 -7
- data/lib/twitter_cldr/localized/localized_string.rb +33 -1
- data/lib/twitter_cldr/localized/localized_symbol.rb +9 -1
- data/lib/twitter_cldr/localized/localized_time.rb +2 -2
- data/lib/twitter_cldr/localized/localized_timespan.rb +10 -10
- data/lib/twitter_cldr/parsers/number_parser.rb +1 -1
- data/lib/twitter_cldr/parsers/parser.rb +5 -1
- data/lib/twitter_cldr/parsers/unicode_regex/character_class.rb +41 -2
- data/lib/twitter_cldr/parsers/unicode_regex/character_range.rb +8 -0
- data/lib/twitter_cldr/parsers/unicode_regex/character_set.rb +66 -23
- data/lib/twitter_cldr/parsers/unicode_regex/literal.rb +4 -0
- data/lib/twitter_cldr/parsers/unicode_regex/unicode_string.rb +6 -3
- data/lib/twitter_cldr/parsers/unicode_regex_parser.rb +65 -32
- data/lib/twitter_cldr/parsers.rb +1 -2
- data/lib/twitter_cldr/resources/custom_locales_resources_importer.rb +4 -4
- data/lib/twitter_cldr/resources/download.rb +13 -6
- data/lib/twitter_cldr/resources/language_codes_importer.rb +7 -7
- data/lib/twitter_cldr/resources/loader.rb +4 -1
- data/lib/twitter_cldr/resources/locales_resources_importer.rb +30 -12
- data/lib/twitter_cldr/resources/postal_codes_importer.rb +32 -22
- data/lib/twitter_cldr/resources/properties/age_property_importer.rb +27 -0
- data/lib/twitter_cldr/resources/properties/arabic_shaping_property_importer.rb +42 -0
- data/lib/twitter_cldr/resources/properties/bidi_brackets_property_importer.rb +41 -0
- data/lib/twitter_cldr/resources/properties/blocks_property_importer.rb +27 -0
- data/lib/twitter_cldr/resources/properties/derived_core_properties_importer.rb +36 -0
- data/lib/twitter_cldr/resources/properties/east_asian_width_property_importer.rb +27 -0
- data/lib/twitter_cldr/resources/properties/grapheme_break_property_importer.rb +27 -0
- data/lib/twitter_cldr/resources/properties/hangul_syllable_type_property_importer.rb +27 -0
- data/lib/twitter_cldr/resources/properties/indic_positional_category_property_importer.rb +27 -0
- data/lib/twitter_cldr/resources/properties/indic_syllabic_category_property_importer.rb +27 -0
- data/lib/twitter_cldr/resources/properties/jamo_property_importer.rb +27 -0
- data/lib/twitter_cldr/resources/properties/line_break_property_importer.rb +27 -0
- data/lib/twitter_cldr/resources/properties/prop_list_importer.rb +36 -0
- data/lib/twitter_cldr/resources/properties/properties_importer.rb +59 -0
- data/lib/twitter_cldr/resources/properties/property_importer.rb +83 -0
- data/lib/twitter_cldr/resources/properties/script_extensions_property_importer.rb +40 -0
- data/lib/twitter_cldr/resources/properties/script_property_importer.rb +27 -0
- data/lib/twitter_cldr/resources/properties/sentence_break_property_importer.rb +27 -0
- data/lib/twitter_cldr/resources/properties/unicode_data_properties_importer.rb +60 -0
- data/lib/twitter_cldr/resources/properties/word_break_property_importer.rb +27 -0
- data/lib/twitter_cldr/resources/properties.rb +36 -0
- data/lib/twitter_cldr/resources/readme_renderer.rb +2 -2
- data/lib/twitter_cldr/resources/segment_tests_importer.rb +66 -0
- data/lib/twitter_cldr/resources/tailoring_importer.rb +7 -7
- data/lib/twitter_cldr/resources/uli/segment_exceptions_importer.rb +1 -1
- data/lib/twitter_cldr/resources/unicode_data_importer.rb +19 -60
- data/lib/twitter_cldr/resources/unicode_property_aliases_importer.rb +97 -0
- data/lib/twitter_cldr/resources.rb +21 -22
- data/lib/twitter_cldr/segmentation/break_iterator.rb +54 -0
- data/lib/twitter_cldr/segmentation/cursor.rb +34 -0
- data/lib/twitter_cldr/segmentation/parser.rb +71 -0
- data/lib/twitter_cldr/segmentation/rule.rb +79 -0
- data/lib/twitter_cldr/segmentation/rule_set.rb +116 -0
- data/lib/twitter_cldr/segmentation/rule_set_builder.rb +142 -0
- data/lib/twitter_cldr/segmentation.rb +17 -0
- data/lib/twitter_cldr/shared/bidi.rb +4 -4
- data/lib/twitter_cldr/shared/calendar.rb +11 -11
- data/lib/twitter_cldr/shared/caser.rb +84 -0
- data/lib/twitter_cldr/shared/code_point.rb +101 -139
- data/lib/twitter_cldr/shared/currencies.rb +5 -5
- data/lib/twitter_cldr/shared/language_codes.rb +2 -2
- data/lib/twitter_cldr/shared/languages.rb +1 -1
- data/lib/twitter_cldr/shared/likely_subtags.rb +104 -0
- data/lib/twitter_cldr/shared/locale.rb +252 -0
- data/lib/twitter_cldr/shared/postal_codes.rb +21 -9
- data/lib/twitter_cldr/shared/properties/arabic_shaping.rb +40 -0
- data/lib/twitter_cldr/shared/properties/bidi_brackets.rb +28 -0
- data/lib/twitter_cldr/shared/properties.rb +13 -0
- data/lib/twitter_cldr/shared/properties_database.rb +180 -0
- data/lib/twitter_cldr/shared/property_name_aliases.rb +48 -0
- data/lib/twitter_cldr/shared/property_normalizer.rb +108 -0
- data/lib/twitter_cldr/shared/property_set.rb +113 -0
- data/lib/twitter_cldr/shared/property_value_aliases.rb +99 -0
- data/lib/twitter_cldr/shared/unicode_regex.rb +29 -3
- data/lib/twitter_cldr/shared.rb +9 -1
- data/lib/twitter_cldr/tokenizers/numbers/number_tokenizer.rb +1 -1
- data/lib/twitter_cldr/tokenizers/token.rb +1 -1
- data/lib/twitter_cldr/tokenizers/tokenizer.rb +15 -13
- data/lib/twitter_cldr/tokenizers/unicode_regex/unicode_regex_tokenizer.rb +4 -4
- data/lib/twitter_cldr/utils/file_system_trie.rb +145 -0
- data/lib/twitter_cldr/utils/range_set.rb +131 -31
- data/lib/twitter_cldr/utils/regexp_sampler.rb +0 -1
- data/lib/twitter_cldr/utils/script_detector.rb +75 -0
- data/lib/twitter_cldr/utils/yaml.rb +3 -3
- data/lib/twitter_cldr/utils.rb +8 -5
- data/lib/twitter_cldr/version.rb +1 -1
- data/lib/twitter_cldr/versions.rb +30 -0
- data/lib/twitter_cldr.rb +8 -10
- data/resources/locales/af/calendars.yml +8 -8
- data/resources/locales/af/lists.yml +8 -4
- data/resources/locales/af/numbers.yml +54 -30
- data/resources/locales/ar/lists.yml +8 -4
- data/resources/locales/ar/numbers.yml +48 -24
- data/resources/locales/be/calendars.yml +4 -4
- data/resources/locales/be/lists.yml +2 -1
- data/resources/locales/be/numbers.yml +24 -12
- data/resources/locales/bg/calendars.yml +8 -8
- data/resources/locales/bg/lists.yml +8 -4
- data/resources/locales/bg/numbers.yml +48 -24
- data/resources/locales/bn/lists.yml +8 -4
- data/resources/locales/bn/numbers.yml +48 -24
- data/resources/locales/ca/calendars.yml +8 -8
- data/resources/locales/ca/lists.yml +8 -4
- data/resources/locales/ca/numbers.yml +48 -24
- data/resources/locales/cs/calendars.yml +32 -32
- data/resources/locales/cs/lists.yml +8 -4
- data/resources/locales/cs/numbers.yml +48 -24
- data/resources/locales/cy/calendars.yml +8 -8
- data/resources/locales/cy/lists.yml +6 -3
- data/resources/locales/cy/numbers.yml +48 -24
- data/resources/locales/da/calendars.yml +10 -10
- data/resources/locales/da/lists.yml +8 -4
- data/resources/locales/da/numbers.yml +48 -24
- data/resources/locales/de/calendars.yml +8 -8
- data/resources/locales/de/lists.yml +8 -4
- data/resources/locales/de/numbers.yml +48 -24
- data/resources/locales/de-CH/calendars.yml +8 -8
- data/resources/locales/de-CH/lists.yml +8 -4
- data/resources/locales/de-CH/numbers.yml +48 -24
- data/resources/locales/el/calendars.yml +8 -8
- data/resources/locales/el/lists.yml +8 -4
- data/resources/locales/el/numbers.yml +48 -24
- data/resources/locales/en/calendars.yml +4 -4
- data/resources/locales/en/lists.yml +8 -4
- data/resources/locales/en/numbers.yml +48 -24
- data/resources/locales/en-150/calendars.yml +4 -4
- data/resources/locales/en-150/lists.yml +8 -4
- data/resources/locales/en-150/numbers.yml +48 -24
- data/resources/locales/en-AU/calendars.yml +4 -4
- data/resources/locales/en-AU/lists.yml +8 -4
- data/resources/locales/en-AU/numbers.yml +48 -24
- data/resources/locales/en-CA/calendars.yml +4 -4
- data/resources/locales/en-CA/lists.yml +8 -4
- data/resources/locales/en-CA/numbers.yml +48 -24
- data/resources/locales/en-GB/calendars.yml +4 -4
- data/resources/locales/en-GB/lists.yml +8 -4
- data/resources/locales/en-GB/numbers.yml +48 -24
- data/resources/locales/en-IE/calendars.yml +4 -4
- data/resources/locales/en-IE/lists.yml +8 -4
- data/resources/locales/en-IE/numbers.yml +48 -24
- data/resources/locales/en-SG/calendars.yml +4 -4
- data/resources/locales/en-SG/lists.yml +8 -4
- data/resources/locales/en-SG/numbers.yml +48 -24
- data/resources/locales/en-ZA/calendars.yml +4 -4
- data/resources/locales/en-ZA/lists.yml +8 -4
- data/resources/locales/en-ZA/numbers.yml +48 -24
- data/resources/locales/es/lists.yml +8 -4
- data/resources/locales/es/numbers.yml +48 -24
- data/resources/locales/es-419/calendars.yml +8 -8
- data/resources/locales/es-419/lists.yml +8 -4
- data/resources/locales/es-419/numbers.yml +50 -26
- data/resources/locales/es-CO/lists.yml +8 -4
- data/resources/locales/es-CO/numbers.yml +48 -24
- data/resources/locales/es-MX/lists.yml +8 -4
- data/resources/locales/es-MX/numbers.yml +48 -24
- data/resources/locales/es-US/lists.yml +8 -4
- data/resources/locales/es-US/numbers.yml +48 -24
- data/resources/locales/eu/calendars.yml +8 -8
- data/resources/locales/eu/lists.yml +8 -4
- data/resources/locales/eu/numbers.yml +48 -24
- data/resources/locales/fa/lists.yml +8 -4
- data/resources/locales/fa/numbers.yml +48 -24
- data/resources/locales/fi/calendars.yml +8 -8
- data/resources/locales/fi/lists.yml +8 -4
- data/resources/locales/fi/numbers.yml +48 -24
- data/resources/locales/fil/calendars.yml +8 -8
- data/resources/locales/fil/lists.yml +8 -4
- data/resources/locales/fil/numbers.yml +48 -24
- data/resources/locales/fr/calendars.yml +8 -8
- data/resources/locales/fr/lists.yml +8 -4
- data/resources/locales/fr/numbers.yml +48 -24
- data/resources/locales/fr-BE/calendars.yml +8 -8
- data/resources/locales/fr-BE/lists.yml +8 -4
- data/resources/locales/fr-BE/numbers.yml +48 -24
- data/resources/locales/fr-CA/calendars.yml +8 -8
- data/resources/locales/fr-CA/lists.yml +8 -4
- data/resources/locales/fr-CA/numbers.yml +48 -24
- data/resources/locales/fr-CH/calendars.yml +8 -8
- data/resources/locales/fr-CH/lists.yml +8 -4
- data/resources/locales/fr-CH/numbers.yml +48 -24
- data/resources/locales/ga/calendars.yml +8 -8
- data/resources/locales/ga/lists.yml +8 -4
- data/resources/locales/ga/numbers.yml +48 -24
- data/resources/locales/gl/calendars.yml +8 -8
- data/resources/locales/gl/lists.yml +8 -4
- data/resources/locales/gl/numbers.yml +48 -24
- data/resources/locales/he/calendars.yml +28 -28
- data/resources/locales/he/lists.yml +8 -4
- data/resources/locales/he/numbers.yml +48 -24
- data/resources/locales/hi/calendars.yml +8 -8
- data/resources/locales/hi/lists.yml +8 -4
- data/resources/locales/hi/numbers.yml +48 -24
- data/resources/locales/hr/lists.yml +8 -4
- data/resources/locales/hr/numbers.yml +48 -24
- data/resources/locales/hu/lists.yml +8 -4
- data/resources/locales/hu/numbers.yml +48 -24
- data/resources/locales/id/calendars.yml +8 -8
- data/resources/locales/id/lists.yml +8 -4
- data/resources/locales/id/numbers.yml +49 -25
- data/resources/locales/is/calendars.yml +8 -8
- data/resources/locales/is/lists.yml +8 -4
- data/resources/locales/is/numbers.yml +48 -24
- data/resources/locales/it/calendars.yml +8 -8
- data/resources/locales/it/lists.yml +8 -4
- data/resources/locales/it/numbers.yml +54 -30
- data/resources/locales/it-CH/calendars.yml +8 -8
- data/resources/locales/it-CH/lists.yml +8 -4
- data/resources/locales/it-CH/numbers.yml +54 -30
- data/resources/locales/ja/calendars.yml +32 -32
- data/resources/locales/ja/lists.yml +8 -4
- data/resources/locales/ja/numbers.yml +48 -24
- data/resources/locales/ko/calendars.yml +8 -8
- data/resources/locales/ko/lists.yml +8 -4
- data/resources/locales/ko/numbers.yml +48 -24
- data/resources/locales/lv/lists.yml +8 -4
- data/resources/locales/lv/numbers.yml +48 -24
- data/resources/locales/ms/calendars.yml +8 -8
- data/resources/locales/ms/lists.yml +8 -4
- data/resources/locales/ms/numbers.yml +48 -24
- data/resources/locales/nb/calendars.yml +9 -9
- data/resources/locales/nb/lists.yml +8 -4
- data/resources/locales/nb/numbers.yml +48 -24
- data/resources/locales/nl/calendars.yml +8 -8
- data/resources/locales/nl/lists.yml +8 -4
- data/resources/locales/nl/numbers.yml +48 -24
- data/resources/locales/pl/calendars.yml +8 -8
- data/resources/locales/pl/lists.yml +8 -4
- data/resources/locales/pl/numbers.yml +48 -24
- data/resources/locales/pt/calendars.yml +8 -8
- data/resources/locales/pt/lists.yml +8 -4
- data/resources/locales/pt/numbers.yml +48 -24
- data/resources/locales/ro/calendars.yml +8 -8
- data/resources/locales/ro/lists.yml +8 -4
- data/resources/locales/ro/numbers.yml +48 -24
- data/resources/locales/ru/calendars.yml +8 -8
- data/resources/locales/ru/lists.yml +8 -4
- data/resources/locales/ru/numbers.yml +48 -24
- data/resources/locales/sk/calendars.yml +8 -8
- data/resources/locales/sk/lists.yml +8 -4
- data/resources/locales/sk/numbers.yml +48 -24
- data/resources/locales/sq/calendars.yml +8 -8
- data/resources/locales/sq/lists.yml +8 -4
- data/resources/locales/sq/numbers.yml +48 -24
- data/resources/locales/sr/lists.yml +8 -4
- data/resources/locales/sr/numbers.yml +48 -24
- data/resources/locales/sv/calendars.yml +10 -10
- data/resources/locales/sv/lists.yml +8 -4
- data/resources/locales/sv/numbers.yml +48 -24
- data/resources/locales/ta/calendars.yml +8 -8
- data/resources/locales/ta/lists.yml +8 -4
- data/resources/locales/ta/numbers.yml +48 -24
- data/resources/locales/th/calendars.yml +8 -8
- data/resources/locales/th/lists.yml +8 -4
- data/resources/locales/th/numbers.yml +48 -24
- data/resources/locales/tr/lists.yml +8 -4
- data/resources/locales/tr/numbers.yml +50 -26
- data/resources/locales/uk/calendars.yml +8 -8
- data/resources/locales/uk/lists.yml +8 -4
- data/resources/locales/uk/numbers.yml +48 -24
- data/resources/locales/ur/calendars.yml +8 -8
- data/resources/locales/ur/lists.yml +8 -4
- data/resources/locales/ur/numbers.yml +48 -24
- data/resources/locales/vi/calendars.yml +32 -32
- data/resources/locales/vi/lists.yml +8 -4
- data/resources/locales/vi/numbers.yml +48 -24
- data/resources/locales/zh/calendars.yml +32 -32
- data/resources/locales/zh/lists.yml +8 -4
- data/resources/locales/zh/numbers.yml +48 -24
- data/resources/locales/zh-Hant/calendars.yml +32 -32
- data/resources/locales/zh-Hant/lists.yml +8 -4
- data/resources/locales/zh-Hant/numbers.yml +48 -24
- data/resources/shared/aliases.yml +1351 -0
- data/resources/shared/likely_subtags.yml +1149 -0
- data/resources/shared/postal_codes.yml +486 -289
- data/resources/shared/segments/segments_root.yml +57 -57
- data/resources/shared/segments/tests/sentence_break_test.yml +527 -0
- data/resources/shared/segments/tests/word_break_test.yml +1379 -0
- data/resources/shared/territories_containment.yml +25 -17
- data/resources/shared/variables.yml +1194 -0
- data/resources/unicode_data/blocks/ahom.yml +913 -0
- data/resources/unicode_data/blocks/anatolian_hieroglyphs.yml +9329 -0
- data/resources/unicode_data/blocks/arabic.yml +16 -0
- data/resources/unicode_data/blocks/arabic_presentation_forms_a.yml +2 -2
- data/resources/unicode_data/blocks/bassa_vah.yml +577 -0
- data/resources/unicode_data/blocks/buginese.yml +2 -2
- data/resources/unicode_data/blocks/caucasian_albanian.yml +849 -0
- data/resources/unicode_data/blocks/cherokee_supplement.yml +1281 -0
- data/resources/unicode_data/blocks/cjk_unified_ideographs_extension_e.yml +33 -0
- data/resources/unicode_data/blocks/combining_diacritical_marks_extended.yml +241 -0
- data/resources/unicode_data/blocks/coptic_epact_numbers.yml +449 -0
- data/resources/unicode_data/blocks/cuneiform_numbers_and_punctuation.yml +2 -2
- data/resources/unicode_data/blocks/duployan.yml +2289 -0
- data/resources/unicode_data/blocks/early_dynastic_cuneiform.yml +3137 -0
- data/resources/unicode_data/blocks/elbasan.yml +641 -0
- data/resources/unicode_data/blocks/general_punctuation.yml +64 -0
- data/resources/unicode_data/blocks/geometric_shapes_extended.yml +1361 -0
- data/resources/unicode_data/blocks/grantha.yml +1361 -0
- data/resources/unicode_data/blocks/gujarati.yml +0 -16
- data/resources/unicode_data/blocks/hatran.yml +417 -0
- data/resources/unicode_data/blocks/kannada.yml +0 -16
- data/resources/unicode_data/blocks/khojki.yml +977 -0
- data/resources/unicode_data/blocks/khudawadi.yml +1105 -0
- data/resources/unicode_data/blocks/latin_extended_e.yml +865 -0
- data/resources/unicode_data/blocks/linear_a.yml +5457 -0
- data/resources/unicode_data/blocks/mahajani.yml +625 -0
- data/resources/unicode_data/blocks/manichaean.yml +817 -0
- data/resources/unicode_data/blocks/mende_kikakui.yml +3409 -0
- data/resources/unicode_data/blocks/miscellaneous_technical.yml +4 -4
- data/resources/unicode_data/blocks/modi.yml +1265 -0
- data/resources/unicode_data/blocks/mongolian.yml +2 -2
- data/resources/unicode_data/blocks/mro.yml +689 -0
- data/resources/unicode_data/blocks/multani.yml +609 -0
- data/resources/unicode_data/blocks/myanmar_extended_b.yml +497 -0
- data/resources/unicode_data/blocks/nabataean.yml +641 -0
- data/resources/unicode_data/blocks/old_hungarian.yml +1729 -0
- data/resources/unicode_data/blocks/old_north_arabian.yml +513 -0
- data/resources/unicode_data/blocks/old_permic.yml +689 -0
- data/resources/unicode_data/blocks/ornamental_dingbats.yml +769 -0
- data/resources/unicode_data/blocks/pahawh_hmong.yml +2033 -0
- data/resources/unicode_data/blocks/palmyrene.yml +513 -0
- data/resources/unicode_data/blocks/pau_cin_hau.yml +913 -0
- data/resources/unicode_data/blocks/psalter_pahlavi.yml +465 -0
- data/resources/unicode_data/blocks/shorthand_format_controls.yml +65 -0
- data/resources/unicode_data/blocks/siddham.yml +1473 -0
- data/resources/unicode_data/blocks/sinhala_archaic_numbers.yml +321 -0
- data/resources/unicode_data/blocks/supplemental_arrows_c.yml +2369 -0
- data/resources/unicode_data/blocks/supplemental_symbols_and_pictographs.yml +241 -0
- data/resources/unicode_data/blocks/sutton_signwriting.yml +10753 -0
- data/resources/unicode_data/blocks/tirhuta.yml +1313 -0
- data/resources/unicode_data/blocks/warang_citi.yml +1345 -0
- data/resources/unicode_data/properties/ASCII_Hex_Digit/value.dump +5 -0
- data/resources/unicode_data/properties/Age/1.1/value.dump +0 -0
- data/resources/unicode_data/properties/Age/2.0/value.dump +0 -0
- data/resources/unicode_data/properties/Age/2.1/value.dump +4 -0
- data/resources/unicode_data/properties/Age/3.0/value.dump +0 -0
- data/resources/unicode_data/properties/Age/3.1/value.dump +0 -0
- data/resources/unicode_data/properties/Age/3.2/value.dump +0 -0
- data/resources/unicode_data/properties/Age/4.0/value.dump +0 -0
- data/resources/unicode_data/properties/Age/4.1/value.dump +0 -0
- data/resources/unicode_data/properties/Age/5.0/value.dump +0 -0
- data/resources/unicode_data/properties/Age/5.1/value.dump +0 -0
- data/resources/unicode_data/properties/Age/5.2/value.dump +0 -0
- data/resources/unicode_data/properties/Age/6.0/value.dump +0 -0
- data/resources/unicode_data/properties/Age/6.1/value.dump +0 -0
- data/resources/unicode_data/properties/Age/6.2/value.dump +3 -0
- data/resources/unicode_data/properties/Age/6.3/value.dump +4 -0
- data/resources/unicode_data/properties/Alphabetic/value.dump +0 -0
- data/resources/unicode_data/properties/Bidi_Class/AL/value.dump +0 -0
- data/resources/unicode_data/properties/Bidi_Class/AN/value.dump +0 -0
- data/resources/unicode_data/properties/Bidi_Class/B/value.dump +8 -0
- data/resources/unicode_data/properties/Bidi_Class/BN/value.dump +0 -0
- data/resources/unicode_data/properties/Bidi_Class/CS/value.dump +15 -0
- data/resources/unicode_data/properties/Bidi_Class/EN/value.dump +0 -0
- data/resources/unicode_data/properties/Bidi_Class/ES/value.dump +11 -0
- data/resources/unicode_data/properties/Bidi_Class/ET/value.dump +27 -0
- data/resources/unicode_data/properties/Bidi_Class/FSI/value.dump +3 -0
- data/resources/unicode_data/properties/Bidi_Class/L/value.dump +0 -0
- data/resources/unicode_data/properties/Bidi_Class/LRE/value.dump +3 -0
- data/resources/unicode_data/properties/Bidi_Class/LRI/value.dump +3 -0
- data/resources/unicode_data/properties/Bidi_Class/LRO/value.dump +3 -0
- data/resources/unicode_data/properties/Bidi_Class/NSM/value.dump +0 -0
- data/resources/unicode_data/properties/Bidi_Class/ON/value.dump +0 -0
- data/resources/unicode_data/properties/Bidi_Class/PDF/value.dump +3 -0
- data/resources/unicode_data/properties/Bidi_Class/PDI/value.dump +3 -0
- data/resources/unicode_data/properties/Bidi_Class/R/value.dump +0 -0
- data/resources/unicode_data/properties/Bidi_Class/RLE/value.dump +3 -0
- data/resources/unicode_data/properties/Bidi_Class/RLI/value.dump +3 -0
- data/resources/unicode_data/properties/Bidi_Class/RLO/value.dump +3 -0
- data/resources/unicode_data/properties/Bidi_Class/S/value.dump +5 -0
- data/resources/unicode_data/properties/Bidi_Class/WS/value.dump +0 -0
- data/resources/unicode_data/properties/Bidi_Control/value.dump +4 -0
- data/resources/unicode_data/properties/Bidi_Mirrored/N/value.dump +0 -0
- data/resources/unicode_data/properties/Bidi_Mirrored/Y/value.dump +115 -0
- data/resources/unicode_data/properties/Block/Aegean Numbers/value.dump +0 -0
- data/resources/unicode_data/properties/Block/Alchemical Symbols/value.dump +0 -0
- data/resources/unicode_data/properties/Block/Alphabetic Presentation Forms/value.dump +0 -0
- data/resources/unicode_data/properties/Block/Ancient Greek Musical Notation/value.dump +0 -0
- data/resources/unicode_data/properties/Block/Ancient Greek Numbers/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Ancient Symbols/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Arabic/value.dump +0 -0
- data/resources/unicode_data/properties/Block/Arabic Extended-A/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Arabic Mathematical Alphabetic Symbols/value.dump +0 -0
- data/resources/unicode_data/properties/Block/Arabic Presentation Forms-A/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Arabic Presentation Forms-B/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Arabic Supplement/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Armenian/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Arrows/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Avestan/value.dump +0 -0
- data/resources/unicode_data/properties/Block/Balinese/value.dump +0 -0
- data/resources/unicode_data/properties/Block/Bamum/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Bamum Supplement/value.dump +0 -0
- data/resources/unicode_data/properties/Block/Basic Latin/value.dump +0 -0
- data/resources/unicode_data/properties/Block/Batak/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Bengali/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Block Elements/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Bopomofo/value.dump +0 -0
- data/resources/unicode_data/properties/Block/Bopomofo Extended/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Box Drawing/value.dump +0 -0
- data/resources/unicode_data/properties/Block/Brahmi/value.dump +0 -0
- data/resources/unicode_data/properties/Block/Braille Patterns/value.dump +0 -0
- data/resources/unicode_data/properties/Block/Buginese/value.dump +0 -0
- data/resources/unicode_data/properties/Block/Buhid/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Byzantine Musical Symbols/value.dump +0 -0
- data/resources/unicode_data/properties/Block/CJK Compatibility/value.dump +0 -0
- data/resources/unicode_data/properties/Block/CJK Compatibility Forms/value.dump +3 -0
- data/resources/unicode_data/properties/Block/CJK Compatibility Ideographs/value.dump +0 -0
- data/resources/unicode_data/properties/Block/CJK Compatibility Ideographs Supplement/value.dump +0 -0
- data/resources/unicode_data/properties/Block/CJK Radicals Supplement/value.dump +3 -0
- data/resources/unicode_data/properties/Block/CJK Strokes/value.dump +3 -0
- Punctuation/value.dump +0 -0
- data/resources/unicode_data/properties/Block/CJK Unified Ideographs/value.dump +0 -0
- data/resources/unicode_data/properties/Block/CJK Unified Ideographs Extension A/value.dump +0 -0
- data/resources/unicode_data/properties/Block/CJK Unified Ideographs Extension B/value.dump +0 -0
- data/resources/unicode_data/properties/Block/CJK Unified Ideographs Extension C/value.dump +0 -0
- data/resources/unicode_data/properties/Block/CJK Unified Ideographs Extension D/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Carian/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Chakma/value.dump +0 -0
- data/resources/unicode_data/properties/Block/Cham/value.dump +0 -0
- data/resources/unicode_data/properties/Block/Cherokee/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Combining Diacritical Marks/value.dump +0 -0
- data/resources/unicode_data/properties/Block/Combining Diacritical Marks Supplement/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Combining Diacritical Marks for Symbols/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Combining Half Marks/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Common Indic Number Forms/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Control Pictures/value.dump +0 -0
- data/resources/unicode_data/properties/Block/Coptic/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Counting Rod Numerals/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Cuneiform/value.dump +0 -0
- Punctuation/value.dump +0 -0
- data/resources/unicode_data/properties/Block/Currency Symbols/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Cypriot Syllabary/value.dump +0 -0
- data/resources/unicode_data/properties/Block/Cyrillic/value.dump +0 -0
- data/resources/unicode_data/properties/Block/Cyrillic Extended-A/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Cyrillic Extended-B/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Cyrillic Supplement/value.dump +0 -0
- data/resources/unicode_data/properties/Block/Deseret/value.dump +0 -0
- data/resources/unicode_data/properties/Block/Devanagari/value.dump +0 -0
- data/resources/unicode_data/properties/Block/Devanagari Extended/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Dingbats/value.dump +0 -0
- data/resources/unicode_data/properties/Block/Domino Tiles/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Egyptian Hieroglyphs/value.dump +0 -0
- data/resources/unicode_data/properties/Block/Emoticons/value.dump +0 -0
- data/resources/unicode_data/properties/Block/Enclosed Alphanumeric Supplement/value.dump +0 -0
- data/resources/unicode_data/properties/Block/Enclosed Alphanumerics/value.dump +3 -0
- Months/value.dump +0 -0
- data/resources/unicode_data/properties/Block/Enclosed Ideographic Supplement/value.dump +0 -0
- data/resources/unicode_data/properties/Block/Ethiopic/value.dump +0 -0
- data/resources/unicode_data/properties/Block/Ethiopic Extended/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Ethiopic Extended-A/value.dump +0 -0
- data/resources/unicode_data/properties/Block/Ethiopic Supplement/value.dump +3 -0
- data/resources/unicode_data/properties/Block/General Punctuation/value.dump +0 -0
- data/resources/unicode_data/properties/Block/Geometric Shapes/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Georgian/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Georgian Supplement/value.dump +0 -0
- data/resources/unicode_data/properties/Block/Glagolitic/value.dump +0 -0
- data/resources/unicode_data/properties/Block/Gothic/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Greek Extended/value.dump +0 -0
- data/resources/unicode_data/properties/Block/Greek and Coptic/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Gujarati/value.dump +4 -0
- data/resources/unicode_data/properties/Block/Gurmukhi/value.dump +0 -0
- Fullwidth Forms/value.dump +0 -0
- data/resources/unicode_data/properties/Block/Hangul Compatibility Jamo/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Hangul Jamo/value.dump +0 -0
- data/resources/unicode_data/properties/Block/Hangul Jamo Extended-A/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Hangul Jamo Extended-B/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Hangul Syllables/value.dump +0 -0
- data/resources/unicode_data/properties/Block/Hanunoo/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Hebrew/value.dump +3 -0
- data/resources/unicode_data/properties/Block/High Private Use Surrogates/value.dump +3 -0
- data/resources/unicode_data/properties/Block/High Surrogates/value.dump +0 -0
- data/resources/unicode_data/properties/Block/Hiragana/value.dump +3 -0
- data/resources/unicode_data/properties/Block/IPA Extensions/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Ideographic Description Characters/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Imperial Aramaic/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Inscriptional Pahlavi/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Inscriptional Parthian/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Javanese/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Kaithi/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Kana Supplement/value.dump +0 -0
- data/resources/unicode_data/properties/Block/Kanbun/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Kangxi Radicals/value.dump +0 -0
- data/resources/unicode_data/properties/Block/Kannada/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Katakana/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Katakana Phonetic Extensions/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Kayah Li/value.dump +0 -0
- data/resources/unicode_data/properties/Block/Kharoshthi/value.dump +0 -0
- data/resources/unicode_data/properties/Block/Khmer/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Khmer Symbols/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Lao/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Latin Extended Additional/value.dump +0 -0
- data/resources/unicode_data/properties/Block/Latin Extended-A/value.dump +0 -0
- data/resources/unicode_data/properties/Block/Latin Extended-B/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Latin Extended-C/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Latin Extended-D/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Latin-1 Supplement/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Lepcha/value.dump +0 -0
- data/resources/unicode_data/properties/Block/Letterlike Symbols/value.dump +0 -0
- data/resources/unicode_data/properties/Block/Limbu/value.dump +0 -0
- data/resources/unicode_data/properties/Block/Linear B Ideograms/value.dump +0 -0
- data/resources/unicode_data/properties/Block/Linear B Syllabary/value.dump +0 -0
- data/resources/unicode_data/properties/Block/Lisu/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Low Surrogates/value.dump +0 -0
- data/resources/unicode_data/properties/Block/Lycian/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Lydian/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Mahjong Tiles/value.dump +0 -0
- data/resources/unicode_data/properties/Block/Malayalam/value.dump +0 -0
- data/resources/unicode_data/properties/Block/Mandaic/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Mathematical Alphanumeric Symbols/value.dump +0 -0
- data/resources/unicode_data/properties/Block/Mathematical Operators/value.dump +0 -0
- data/resources/unicode_data/properties/Block/Meetei Mayek/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Meetei Mayek Extensions/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Meroitic Cursive/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Meroitic Hieroglyphs/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Miao/value.dump +0 -0
- data/resources/unicode_data/properties/Block/Miscellaneous Mathematical Symbols-A/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Miscellaneous Mathematical Symbols-B/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Miscellaneous Symbols/value.dump +0 -0
- data/resources/unicode_data/properties/Block/Miscellaneous Symbols And Pictographs/value.dump +0 -0
- Arrows/value.dump +0 -0
- data/resources/unicode_data/properties/Block/Miscellaneous Technical/value.dump +0 -0
- data/resources/unicode_data/properties/Block/Modifier Tone Letters/value.dump +0 -0
- data/resources/unicode_data/properties/Block/Mongolian/value.dump +0 -0
- data/resources/unicode_data/properties/Block/Musical Symbols/value.dump +0 -0
- data/resources/unicode_data/properties/Block/Myanmar/value.dump +0 -0
- data/resources/unicode_data/properties/Block/Myanmar Extended-A/value.dump +3 -0
- data/resources/unicode_data/properties/Block/NKo/value.dump +3 -0
- data/resources/unicode_data/properties/Block/New Tai Lue/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Number Forms/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Ogham/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Ol Chiki/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Old Italic/value.dump +0 -0
- data/resources/unicode_data/properties/Block/Old Persian/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Old South Arabian/value.dump +5 -0
- data/resources/unicode_data/properties/Block/Old Turkic/value.dump +0 -0
- data/resources/unicode_data/properties/Block/Optical Character Recognition/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Oriya/value.dump +0 -0
- data/resources/unicode_data/properties/Block/Osmanya/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Phags-pa/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Phaistos Disc/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Phoenician/value.dump +0 -0
- data/resources/unicode_data/properties/Block/Phonetic Extensions/value.dump +0 -0
- data/resources/unicode_data/properties/Block/Phonetic Extensions Supplement/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Playing Cards/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Private Use Area/value.dump +0 -0
- data/resources/unicode_data/properties/Block/Rejang/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Rumi Numeral Symbols/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Runic/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Samaritan/value.dump +0 -0
- data/resources/unicode_data/properties/Block/Saurashtra/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Sharada/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Shavian/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Sinhala/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Small Form Variants/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Sora Sompeng/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Spacing Modifier Letters/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Specials/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Sundanese/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Sundanese Supplement/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Superscripts and Subscripts/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Supplemental Arrows-A/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Supplemental Arrows-B/value.dump +0 -0
- data/resources/unicode_data/properties/Block/Supplemental Mathematical Operators/value.dump +0 -0
- data/resources/unicode_data/properties/Block/Supplemental Punctuation/value.dump +0 -0
- data/resources/unicode_data/properties/Block/Supplementary Private Use Area-A/value.dump +0 -0
- data/resources/unicode_data/properties/Block/Supplementary Private Use Area-B/value.dump +0 -0
- data/resources/unicode_data/properties/Block/Syloti Nagri/value.dump +0 -0
- data/resources/unicode_data/properties/Block/Syriac/value.dump +0 -0
- data/resources/unicode_data/properties/Block/Tagalog/value.dump +0 -0
- data/resources/unicode_data/properties/Block/Tagbanwa/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Tags/value.dump +0 -0
- data/resources/unicode_data/properties/Block/Tai Le/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Tai Tham/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Tai Viet/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Tai Xuan Jing Symbols/value.dump +0 -0
- data/resources/unicode_data/properties/Block/Takri/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Tamil/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Telugu/value.dump +0 -0
- data/resources/unicode_data/properties/Block/Thaana/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Thai/value.dump +0 -0
- data/resources/unicode_data/properties/Block/Tibetan/value.dump +0 -0
- data/resources/unicode_data/properties/Block/Tifinagh/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Transport And Map Symbols/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Ugaritic/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Unified Canadian Aboriginal Syllabics/value.dump +0 -0
- data/resources/unicode_data/properties/Block/Unified Canadian Aboriginal Syllabics Extended/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Vai/value.dump +0 -0
- data/resources/unicode_data/properties/Block/Variation Selectors/value.dump +0 -0
- data/resources/unicode_data/properties/Block/Variation Selectors Supplement/value.dump +0 -0
- data/resources/unicode_data/properties/Block/Vedic Extensions/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Vertical Forms/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Yi Radicals/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Yi Syllables/value.dump +0 -0
- data/resources/unicode_data/properties/Block/Yijing Hexagram Symbols/value.dump +3 -0
- data/resources/unicode_data/properties/Canonical_Combining_Class/0/value.dump +0 -0
- data/resources/unicode_data/properties/Canonical_Combining_Class/1/value.dump +13 -0
- data/resources/unicode_data/properties/Canonical_Combining_Class/10/value.dump +3 -0
- data/resources/unicode_data/properties/Canonical_Combining_Class/103/value.dump +3 -0
- data/resources/unicode_data/properties/Canonical_Combining_Class/107/value.dump +3 -0
- data/resources/unicode_data/properties/Canonical_Combining_Class/11/value.dump +3 -0
- data/resources/unicode_data/properties/Canonical_Combining_Class/118/value.dump +3 -0
- data/resources/unicode_data/properties/Canonical_Combining_Class/12/value.dump +3 -0
- data/resources/unicode_data/properties/Canonical_Combining_Class/122/value.dump +3 -0
- data/resources/unicode_data/properties/Canonical_Combining_Class/129/value.dump +3 -0
- data/resources/unicode_data/properties/Canonical_Combining_Class/13/value.dump +3 -0
- data/resources/unicode_data/properties/Canonical_Combining_Class/130/value.dump +5 -0
- data/resources/unicode_data/properties/Canonical_Combining_Class/132/value.dump +3 -0
- data/resources/unicode_data/properties/Canonical_Combining_Class/14/value.dump +3 -0
- data/resources/unicode_data/properties/Canonical_Combining_Class/15/value.dump +3 -0
- data/resources/unicode_data/properties/Canonical_Combining_Class/16/value.dump +3 -0
- data/resources/unicode_data/properties/Canonical_Combining_Class/17/value.dump +3 -0
- data/resources/unicode_data/properties/Canonical_Combining_Class/18/value.dump +4 -0
- data/resources/unicode_data/properties/Canonical_Combining_Class/19/value.dump +3 -0
- data/resources/unicode_data/properties/Canonical_Combining_Class/20/value.dump +3 -0
- data/resources/unicode_data/properties/Canonical_Combining_Class/202/value.dump +5 -0
- data/resources/unicode_data/properties/Canonical_Combining_Class/21/value.dump +3 -0
- data/resources/unicode_data/properties/Canonical_Combining_Class/214/value.dump +3 -0
- data/resources/unicode_data/properties/Canonical_Combining_Class/216/value.dump +6 -0
- data/resources/unicode_data/properties/Canonical_Combining_Class/218/value.dump +3 -0
- data/resources/unicode_data/properties/Canonical_Combining_Class/22/value.dump +3 -0
- data/resources/unicode_data/properties/Canonical_Combining_Class/220/value.dump +70 -0
- data/resources/unicode_data/properties/Canonical_Combining_Class/222/value.dump +6 -0
- data/resources/unicode_data/properties/Canonical_Combining_Class/224/value.dump +3 -0
- data/resources/unicode_data/properties/Canonical_Combining_Class/226/value.dump +3 -0
- data/resources/unicode_data/properties/Canonical_Combining_Class/228/value.dump +5 -0
- data/resources/unicode_data/properties/Canonical_Combining_Class/23/value.dump +3 -0
- data/resources/unicode_data/properties/Canonical_Combining_Class/230/value.dump +0 -0
- data/resources/unicode_data/properties/Canonical_Combining_Class/232/value.dump +6 -0
- data/resources/unicode_data/properties/Canonical_Combining_Class/233/value.dump +6 -0
- data/resources/unicode_data/properties/Canonical_Combining_Class/234/value.dump +5 -0
- data/resources/unicode_data/properties/Canonical_Combining_Class/24/value.dump +3 -0
- data/resources/unicode_data/properties/Canonical_Combining_Class/240/value.dump +3 -0
- data/resources/unicode_data/properties/Canonical_Combining_Class/25/value.dump +3 -0
- data/resources/unicode_data/properties/Canonical_Combining_Class/26/value.dump +3 -0
- data/resources/unicode_data/properties/Canonical_Combining_Class/27/value.dump +4 -0
- data/resources/unicode_data/properties/Canonical_Combining_Class/28/value.dump +4 -0
- data/resources/unicode_data/properties/Canonical_Combining_Class/29/value.dump +4 -0
- data/resources/unicode_data/properties/Canonical_Combining_Class/30/value.dump +4 -0
- data/resources/unicode_data/properties/Canonical_Combining_Class/31/value.dump +4 -0
- data/resources/unicode_data/properties/Canonical_Combining_Class/32/value.dump +4 -0
- data/resources/unicode_data/properties/Canonical_Combining_Class/33/value.dump +3 -0
- data/resources/unicode_data/properties/Canonical_Combining_Class/34/value.dump +3 -0
- data/resources/unicode_data/properties/Canonical_Combining_Class/35/value.dump +3 -0
- data/resources/unicode_data/properties/Canonical_Combining_Class/36/value.dump +3 -0
- data/resources/unicode_data/properties/Canonical_Combining_Class/7/value.dump +19 -0
- data/resources/unicode_data/properties/Canonical_Combining_Class/8/value.dump +3 -0
- data/resources/unicode_data/properties/Canonical_Combining_Class/84/value.dump +3 -0
- data/resources/unicode_data/properties/Canonical_Combining_Class/9/value.dump +41 -0
- data/resources/unicode_data/properties/Canonical_Combining_Class/91/value.dump +3 -0
- data/resources/unicode_data/properties/Case_Ignorable/value.dump +0 -0
- data/resources/unicode_data/properties/Cased/value.dump +0 -0
- data/resources/unicode_data/properties/Changes_When_Casefolded/value.dump +0 -0
- data/resources/unicode_data/properties/Changes_When_Casemapped/value.dump +0 -0
- data/resources/unicode_data/properties/Changes_When_Lowercased/value.dump +0 -0
- data/resources/unicode_data/properties/Changes_When_Titlecased/value.dump +589 -0
- data/resources/unicode_data/properties/Changes_When_Uppercased/value.dump +588 -0
- data/resources/unicode_data/properties/Dash/value.dump +0 -0
- data/resources/unicode_data/properties/Default_Ignorable_Code_Point/value.dump +0 -0
- data/resources/unicode_data/properties/Deprecated/value.dump +0 -0
- data/resources/unicode_data/properties/Diacritic/value.dump +135 -0
- data/resources/unicode_data/properties/East_Asian_Width/A/value.dump +0 -0
- data/resources/unicode_data/properties/East_Asian_Width/F/value.dump +0 -0
- data/resources/unicode_data/properties/East_Asian_Width/H/value.dump +9 -0
- data/resources/unicode_data/properties/East_Asian_Width/N/value.dump +0 -0
- data/resources/unicode_data/properties/East_Asian_Width/Na/value.dump +9 -0
- data/resources/unicode_data/properties/East_Asian_Width/W/value.dump +0 -0
- data/resources/unicode_data/properties/Extender/value.dump +26 -0
- data/resources/unicode_data/properties/General_Category/C/c/value.dump +0 -0
- data/resources/unicode_data/properties/General_Category/C/f/value.dump +0 -0
- data/resources/unicode_data/properties/General_Category/C/o/value.dump +0 -0
- data/resources/unicode_data/properties/General_Category/C/s/value.dump +0 -0
- data/resources/unicode_data/properties/General_Category/L/l/value.dump +0 -0
- data/resources/unicode_data/properties/General_Category/L/m/value.dump +54 -0
- data/resources/unicode_data/properties/General_Category/L/o/value.dump +0 -0
- data/resources/unicode_data/properties/General_Category/L/t/value.dump +12 -0
- data/resources/unicode_data/properties/General_Category/L/u/value.dump +0 -0
- data/resources/unicode_data/properties/General_Category/M/c/value.dump +0 -0
- data/resources/unicode_data/properties/General_Category/M/e/value.dump +6 -0
- data/resources/unicode_data/properties/General_Category/M/n/value.dump +0 -0
- data/resources/unicode_data/properties/General_Category/N/d/value.dump +0 -0
- data/resources/unicode_data/properties/General_Category/N/l/value.dump +0 -0
- data/resources/unicode_data/properties/General_Category/N/o/value.dump +0 -0
- data/resources/unicode_data/properties/General_Category/P/c/value.dump +8 -0
- data/resources/unicode_data/properties/General_Category/P/d/value.dump +0 -0
- data/resources/unicode_data/properties/General_Category/P/e/value.dump +72 -0
- data/resources/unicode_data/properties/General_Category/P/f/value.dump +14 -0
- data/resources/unicode_data/properties/General_Category/P/i/value.dump +13 -0
- data/resources/unicode_data/properties/General_Category/P/o/value.dump +0 -0
- data/resources/unicode_data/properties/General_Category/P/s/value.dump +76 -0
- data/resources/unicode_data/properties/General_Category/S/c/value.dump +21 -0
- data/resources/unicode_data/properties/General_Category/S/k/value.dump +0 -0
- data/resources/unicode_data/properties/General_Category/S/m/value.dump +0 -0
- data/resources/unicode_data/properties/General_Category/S/o/value.dump +0 -0
- data/resources/unicode_data/properties/General_Category/Z/l/value.dump +3 -0
- data/resources/unicode_data/properties/General_Category/Z/p/value.dump +3 -0
- data/resources/unicode_data/properties/General_Category/Z/s/value.dump +0 -0
- data/resources/unicode_data/properties/Grapheme_Base/value.dump +0 -0
- data/resources/unicode_data/properties/Grapheme_Cluster_Break/CR/value.dump +3 -0
- data/resources/unicode_data/properties/Grapheme_Cluster_Break/Control/value.dump +0 -0
- data/resources/unicode_data/properties/Grapheme_Cluster_Break/Extend/value.dump +0 -0
- data/resources/unicode_data/properties/Grapheme_Cluster_Break/L/value.dump +0 -0
- data/resources/unicode_data/properties/Grapheme_Cluster_Break/LF/value.dump +3 -0
- data/resources/unicode_data/properties/Grapheme_Cluster_Break/LV/value.dump +0 -0
- data/resources/unicode_data/properties/Grapheme_Cluster_Break/LVT/value.dump +401 -0
- data/resources/unicode_data/properties/Grapheme_Cluster_Break/Regional_Indicator/value.dump +3 -0
- data/resources/unicode_data/properties/Grapheme_Cluster_Break/SpacingMark/value.dump +0 -0
- data/resources/unicode_data/properties/Grapheme_Cluster_Break/T/value.dump +4 -0
- data/resources/unicode_data/properties/Grapheme_Cluster_Break/V/value.dump +4 -0
- data/resources/unicode_data/properties/Grapheme_Extend/value.dump +0 -0
- data/resources/unicode_data/properties/Grapheme_Link/value.dump +41 -0
- data/resources/unicode_data/properties/Hangul_Syllable_Type/L/value.dump +0 -0
- data/resources/unicode_data/properties/Hangul_Syllable_Type/LV/value.dump +0 -0
- data/resources/unicode_data/properties/Hangul_Syllable_Type/LVT/value.dump +401 -0
- data/resources/unicode_data/properties/Hangul_Syllable_Type/T/value.dump +4 -0
- data/resources/unicode_data/properties/Hangul_Syllable_Type/V/value.dump +4 -0
- data/resources/unicode_data/properties/Hex_Digit/value.dump +8 -0
- data/resources/unicode_data/properties/Hyphen/value.dump +12 -0
- data/resources/unicode_data/properties/IDS_Binary_Operator/value.dump +4 -0
- data/resources/unicode_data/properties/IDS_Trinary_Operator/value.dump +3 -0
- data/resources/unicode_data/properties/ID_Continue/value.dump +0 -0
- data/resources/unicode_data/properties/ID_Start/value.dump +0 -0
- data/resources/unicode_data/properties/Ideographic/value.dump +0 -0
- data/resources/unicode_data/properties/Indic_Positional_Category/Bottom/value.dump +78 -0
- data/resources/unicode_data/properties/Indic_Positional_Category/Bottom_And_Right/value.dump +4 -0
- data/resources/unicode_data/properties/Indic_Positional_Category/Invisible/value.dump +10 -0
- data/resources/unicode_data/properties/Indic_Positional_Category/Left/value.dump +36 -0
- data/resources/unicode_data/properties/Indic_Positional_Category/Left_And_Right/value.dump +10 -0
- data/resources/unicode_data/properties/Indic_Positional_Category/Overstruck/value.dump +8 -0
- data/resources/unicode_data/properties/Indic_Positional_Category/Right/value.dump +86 -0
- data/resources/unicode_data/properties/Indic_Positional_Category/Top/value.dump +91 -0
- data/resources/unicode_data/properties/Indic_Positional_Category/Top_And_Bottom/value.dump +8 -0
- data/resources/unicode_data/properties/Indic_Positional_Category/Top_And_Bottom_And_Right/value.dump +3 -0
- data/resources/unicode_data/properties/Indic_Positional_Category/Top_And_Left/value.dump +6 -0
- data/resources/unicode_data/properties/Indic_Positional_Category/Top_And_Left_And_Right/value.dump +4 -0
- data/resources/unicode_data/properties/Indic_Positional_Category/Top_And_Right/value.dump +12 -0
- data/resources/unicode_data/properties/Indic_Positional_Category/Visual_Order_Left/value.dump +8 -0
- data/resources/unicode_data/properties/Indic_Syllabic_Category/Avagraha/value.dump +15 -0
- data/resources/unicode_data/properties/Indic_Syllabic_Category/Bindu/value.dump +0 -0
- data/resources/unicode_data/properties/Indic_Syllabic_Category/Consonant/value.dump +0 -0
- data/resources/unicode_data/properties/Indic_Syllabic_Category/Consonant_Dead/value.dump +4 -0
- data/resources/unicode_data/properties/Indic_Syllabic_Category/Consonant_Final/value.dump +13 -0
- data/resources/unicode_data/properties/Indic_Syllabic_Category/Consonant_Head_Letter/value.dump +3 -0
- data/resources/unicode_data/properties/Indic_Syllabic_Category/Consonant_Medial/value.dump +12 -0
- data/resources/unicode_data/properties/Indic_Syllabic_Category/Consonant_Placeholder/value.dump +0 -0
- data/resources/unicode_data/properties/Indic_Syllabic_Category/Consonant_Repha/value.dump +8 -0
- data/resources/unicode_data/properties/Indic_Syllabic_Category/Consonant_Subjoined/value.dump +11 -0
- data/resources/unicode_data/properties/Indic_Syllabic_Category/Modifying_Letter/value.dump +3 -0
- data/resources/unicode_data/properties/Indic_Syllabic_Category/Nukta/value.dump +18 -0
- data/resources/unicode_data/properties/Indic_Syllabic_Category/Register_Shifter/value.dump +3 -0
- data/resources/unicode_data/properties/Indic_Syllabic_Category/Tone_Letter/value.dump +5 -0
- data/resources/unicode_data/properties/Indic_Syllabic_Category/Tone_Mark/value.dump +17 -0
- data/resources/unicode_data/properties/Indic_Syllabic_Category/Virama/value.dump +41 -0
- data/resources/unicode_data/properties/Indic_Syllabic_Category/Visarga/value.dump +32 -0
- data/resources/unicode_data/properties/Indic_Syllabic_Category/Vowel/value.dump +6 -0
- data/resources/unicode_data/properties/Indic_Syllabic_Category/Vowel_Dependent/value.dump +112 -0
- data/resources/unicode_data/properties/Indic_Syllabic_Category/Vowel_Independent/value.dump +0 -0
- data/resources/unicode_data/properties/Jamo_Short_Name/A/value.dump +3 -0
- data/resources/unicode_data/properties/Jamo_Short_Name/AE/value.dump +3 -0
- data/resources/unicode_data/properties/Jamo_Short_Name/B/value.dump +4 -0
- data/resources/unicode_data/properties/Jamo_Short_Name/BB/value.dump +3 -0
- data/resources/unicode_data/properties/Jamo_Short_Name/BS/value.dump +3 -0
- data/resources/unicode_data/properties/Jamo_Short_Name/C/value.dump +4 -0
- data/resources/unicode_data/properties/Jamo_Short_Name/D/value.dump +4 -0
- data/resources/unicode_data/properties/Jamo_Short_Name/DD/value.dump +3 -0
- data/resources/unicode_data/properties/Jamo_Short_Name/E/value.dump +3 -0
- data/resources/unicode_data/properties/Jamo_Short_Name/EO/value.dump +3 -0
- data/resources/unicode_data/properties/Jamo_Short_Name/EU/value.dump +3 -0
- data/resources/unicode_data/properties/Jamo_Short_Name/G/value.dump +0 -0
- data/resources/unicode_data/properties/Jamo_Short_Name/GG/value.dump +4 -0
- data/resources/unicode_data/properties/Jamo_Short_Name/GS/value.dump +3 -0
- data/resources/unicode_data/properties/Jamo_Short_Name/H/value.dump +4 -0
- data/resources/unicode_data/properties/Jamo_Short_Name/I/value.dump +3 -0
- data/resources/unicode_data/properties/Jamo_Short_Name/J/value.dump +4 -0
- data/resources/unicode_data/properties/Jamo_Short_Name/JJ/value.dump +3 -0
- data/resources/unicode_data/properties/Jamo_Short_Name/K/value.dump +4 -0
- data/resources/unicode_data/properties/Jamo_Short_Name/L/value.dump +3 -0
- data/resources/unicode_data/properties/Jamo_Short_Name/LB/value.dump +3 -0
- data/resources/unicode_data/properties/Jamo_Short_Name/LG/value.dump +3 -0
- data/resources/unicode_data/properties/Jamo_Short_Name/LH/value.dump +3 -0
- data/resources/unicode_data/properties/Jamo_Short_Name/LM/value.dump +3 -0
- data/resources/unicode_data/properties/Jamo_Short_Name/LP/value.dump +3 -0
- data/resources/unicode_data/properties/Jamo_Short_Name/LS/value.dump +3 -0
- data/resources/unicode_data/properties/Jamo_Short_Name/LT/value.dump +3 -0
- data/resources/unicode_data/properties/Jamo_Short_Name/M/value.dump +4 -0
- data/resources/unicode_data/properties/Jamo_Short_Name/N/value.dump +4 -0
- data/resources/unicode_data/properties/Jamo_Short_Name/NG/value.dump +3 -0
- data/resources/unicode_data/properties/Jamo_Short_Name/NH/value.dump +3 -0
- data/resources/unicode_data/properties/Jamo_Short_Name/NJ/value.dump +3 -0
- data/resources/unicode_data/properties/Jamo_Short_Name/O/value.dump +3 -0
- data/resources/unicode_data/properties/Jamo_Short_Name/OE/value.dump +3 -0
- data/resources/unicode_data/properties/Jamo_Short_Name/P/value.dump +4 -0
- data/resources/unicode_data/properties/Jamo_Short_Name/R/value.dump +3 -0
- data/resources/unicode_data/properties/Jamo_Short_Name/S/value.dump +4 -0
- data/resources/unicode_data/properties/Jamo_Short_Name/SS/value.dump +6 -0
- data/resources/unicode_data/properties/Jamo_Short_Name/T/value.dump +4 -0
- data/resources/unicode_data/properties/Jamo_Short_Name/U/value.dump +3 -0
- data/resources/unicode_data/properties/Jamo_Short_Name/WA/value.dump +3 -0
- data/resources/unicode_data/properties/Jamo_Short_Name/WAE/value.dump +3 -0
- data/resources/unicode_data/properties/Jamo_Short_Name/WE/value.dump +3 -0
- data/resources/unicode_data/properties/Jamo_Short_Name/WEO/value.dump +3 -0
- data/resources/unicode_data/properties/Jamo_Short_Name/WI/value.dump +3 -0
- data/resources/unicode_data/properties/Jamo_Short_Name/YA/value.dump +3 -0
- data/resources/unicode_data/properties/Jamo_Short_Name/YAE/value.dump +3 -0
- data/resources/unicode_data/properties/Jamo_Short_Name/YE/value.dump +3 -0
- data/resources/unicode_data/properties/Jamo_Short_Name/YEO/value.dump +3 -0
- data/resources/unicode_data/properties/Jamo_Short_Name/YI/value.dump +3 -0
- data/resources/unicode_data/properties/Jamo_Short_Name/YO/value.dump +3 -0
- data/resources/unicode_data/properties/Jamo_Short_Name/YU/value.dump +3 -0
- data/resources/unicode_data/properties/Jamo_Short_Name/value.dump +3 -0
- data/resources/unicode_data/properties/Join_Control/value.dump +3 -0
- data/resources/unicode_data/properties/Line_Break/AI/value.dump +0 -0
- data/resources/unicode_data/properties/Line_Break/AL/value.dump +0 -0
- data/resources/unicode_data/properties/Line_Break/B2/value.dump +4 -0
- data/resources/unicode_data/properties/Line_Break/BA/value.dump +0 -0
- data/resources/unicode_data/properties/Line_Break/BB/value.dump +15 -0
- data/resources/unicode_data/properties/Line_Break/BK/value.dump +4 -0
- data/resources/unicode_data/properties/Line_Break/CB/value.dump +3 -0
- data/resources/unicode_data/properties/Line_Break/CJ/value.dump +27 -0
- data/resources/unicode_data/properties/Line_Break/CL/value.dump +81 -0
- data/resources/unicode_data/properties/Line_Break/CM/value.dump +0 -0
- data/resources/unicode_data/properties/Line_Break/CP/value.dump +4 -0
- data/resources/unicode_data/properties/Line_Break/CR/value.dump +3 -0
- data/resources/unicode_data/properties/Line_Break/EX/value.dump +24 -0
- data/resources/unicode_data/properties/Line_Break/GL/value.dump +13 -0
- data/resources/unicode_data/properties/Line_Break/H2/value.dump +0 -0
- data/resources/unicode_data/properties/Line_Break/H3/value.dump +401 -0
- data/resources/unicode_data/properties/Line_Break/HL/value.dump +12 -0
- data/resources/unicode_data/properties/Line_Break/HY/value.dump +3 -0
- data/resources/unicode_data/properties/Line_Break/ID/value.dump +0 -0
- data/resources/unicode_data/properties/Line_Break/IN/value.dump +4 -0
- data/resources/unicode_data/properties/Line_Break/IS/value.dump +12 -0
- data/resources/unicode_data/properties/Line_Break/JL/value.dump +0 -0
- data/resources/unicode_data/properties/Line_Break/JT/value.dump +4 -0
- data/resources/unicode_data/properties/Line_Break/JV/value.dump +4 -0
- data/resources/unicode_data/properties/Line_Break/LF/value.dump +3 -0
- data/resources/unicode_data/properties/Line_Break/NL/value.dump +3 -0
- data/resources/unicode_data/properties/Line_Break/NS/value.dump +17 -0
- data/resources/unicode_data/properties/Line_Break/NU/value.dump +0 -0
- data/resources/unicode_data/properties/Line_Break/OP/value.dump +83 -0
- data/resources/unicode_data/properties/Line_Break/PO/value.dump +20 -0
- data/resources/unicode_data/properties/Line_Break/PR/value.dump +24 -0
- data/resources/unicode_data/properties/Line_Break/QU/value.dump +0 -0
- data/resources/unicode_data/properties/Line_Break/RI/value.dump +3 -0
- data/resources/unicode_data/properties/Line_Break/SA/value.dump +0 -0
- data/resources/unicode_data/properties/Line_Break/SG/value.dump +0 -0
- data/resources/unicode_data/properties/Line_Break/SP/value.dump +3 -0
- data/resources/unicode_data/properties/Line_Break/SY/value.dump +3 -0
- data/resources/unicode_data/properties/Line_Break/WJ/value.dump +4 -0
- data/resources/unicode_data/properties/Line_Break/XX/value.dump +0 -0
- data/resources/unicode_data/properties/Line_Break/ZW/value.dump +3 -0
- data/resources/unicode_data/properties/Logical_Order_Exception/value.dump +8 -0
- data/resources/unicode_data/properties/Lowercase/value.dump +0 -0
- data/resources/unicode_data/properties/Math/value.dump +0 -0
- data/resources/unicode_data/properties/Noncharacter_Code_Point/value.dump +22 -0
- data/resources/unicode_data/properties/Numeric_Type/0/value.dump +0 -0
- data/resources/unicode_data/properties/Numeric_Type/1/value.dump +69 -0
- data/resources/unicode_data/properties/Numeric_Type/2/value.dump +68 -0
- data/resources/unicode_data/properties/Numeric_Type/3/value.dump +68 -0
- data/resources/unicode_data/properties/Numeric_Type/4/value.dump +68 -0
- data/resources/unicode_data/properties/Numeric_Type/5/value.dump +65 -0
- data/resources/unicode_data/properties/Numeric_Type/6/value.dump +65 -0
- data/resources/unicode_data/properties/Numeric_Type/7/value.dump +65 -0
- data/resources/unicode_data/properties/Numeric_Type/8/value.dump +65 -0
- data/resources/unicode_data/properties/Numeric_Type/9/value.dump +67 -0
- data/resources/unicode_data/properties/Numeric_Type/value.dump +0 -0
- data/resources/unicode_data/properties/Other_Alphabetic/value.dump +0 -0
- data/resources/unicode_data/properties/Other_Default_Ignorable_Code_Point/value.dump +0 -0
- data/resources/unicode_data/properties/Other_Grapheme_Extend/value.dump +19 -0
- data/resources/unicode_data/properties/Other_ID_Continue/value.dump +6 -0
- data/resources/unicode_data/properties/Other_ID_Start/value.dump +5 -0
- data/resources/unicode_data/properties/Other_Lowercase/value.dump +20 -0
- data/resources/unicode_data/properties/Other_Math/value.dump +0 -0
- data/resources/unicode_data/properties/Other_Uppercase/value.dump +4 -0
- data/resources/unicode_data/properties/Pattern_Syntax/value.dump +0 -0
- data/resources/unicode_data/properties/Pattern_White_Space/value.dump +8 -0
- data/resources/unicode_data/properties/Quotation_Mark/value.dump +14 -0
- data/resources/unicode_data/properties/Radical/value.dump +0 -0
- data/resources/unicode_data/properties/STerm/value.dump +0 -0
- data/resources/unicode_data/properties/Script/Arabic/value.dump +0 -0
- data/resources/unicode_data/properties/Script/Armenian/value.dump +8 -0
- data/resources/unicode_data/properties/Script/Avestan/value.dump +0 -0
- data/resources/unicode_data/properties/Script/Balinese/value.dump +0 -0
- data/resources/unicode_data/properties/Script/Bamum/value.dump +0 -0
- data/resources/unicode_data/properties/Script/Batak/value.dump +4 -0
- data/resources/unicode_data/properties/Script/Bengali/value.dump +16 -0
- data/resources/unicode_data/properties/Script/Bopomofo/value.dump +5 -0
- data/resources/unicode_data/properties/Script/Brahmi/value.dump +0 -0
- data/resources/unicode_data/properties/Script/Braille/value.dump +0 -0
- data/resources/unicode_data/properties/Script/Buginese/value.dump +0 -0
- data/resources/unicode_data/properties/Script/Buhid/value.dump +3 -0
- data/resources/unicode_data/properties/Script/Canadian_Aboriginal/value.dump +0 -0
- data/resources/unicode_data/properties/Script/Carian/value.dump +3 -0
- data/resources/unicode_data/properties/Script/Chakma/value.dump +0 -0
- data/resources/unicode_data/properties/Script/Cham/value.dump +0 -0
- data/resources/unicode_data/properties/Script/Cherokee/value.dump +3 -0
- data/resources/unicode_data/properties/Script/Common/value.dump +0 -0
- data/resources/unicode_data/properties/Script/Coptic/value.dump +5 -0
- data/resources/unicode_data/properties/Script/Cuneiform/value.dump +0 -0
- data/resources/unicode_data/properties/Script/Cypriot/value.dump +0 -0
- data/resources/unicode_data/properties/Script/Cyrillic/value.dump +0 -0
- data/resources/unicode_data/properties/Script/Deseret/value.dump +0 -0
- data/resources/unicode_data/properties/Script/Devanagari/value.dump +0 -0
- data/resources/unicode_data/properties/Script/Egyptian_Hieroglyphs/value.dump +0 -0
- data/resources/unicode_data/properties/Script/Ethiopic/value.dump +0 -0
- data/resources/unicode_data/properties/Script/Georgian/value.dump +0 -0
- data/resources/unicode_data/properties/Script/Glagolitic/value.dump +0 -0
- data/resources/unicode_data/properties/Script/Gothic/value.dump +3 -0
- data/resources/unicode_data/properties/Script/Greek/value.dump +0 -0
- data/resources/unicode_data/properties/Script/Gujarati/value.dump +40 -0
- data/resources/unicode_data/properties/Script/Gurmukhi/value.dump +50 -0
- data/resources/unicode_data/properties/Script/Han/value.dump +0 -0
- data/resources/unicode_data/properties/Script/Hangul/value.dump +0 -0
- data/resources/unicode_data/properties/Script/Hanunoo/value.dump +3 -0
- data/resources/unicode_data/properties/Script/Hebrew/value.dump +11 -0
- data/resources/unicode_data/properties/Script/Hiragana/value.dump +0 -0
- data/resources/unicode_data/properties/Script/Imperial_Aramaic/value.dump +4 -0
- data/resources/unicode_data/properties/Script/Inherited/value.dump +0 -0
- data/resources/unicode_data/properties/Script/Inscriptional_Pahlavi/value.dump +4 -0
- data/resources/unicode_data/properties/Script/Inscriptional_Parthian/value.dump +4 -0
- data/resources/unicode_data/properties/Script/Javanese/value.dump +5 -0
- data/resources/unicode_data/properties/Script/Kaithi/value.dump +3 -0
- data/resources/unicode_data/properties/Script/Kannada/value.dump +16 -0
- data/resources/unicode_data/properties/Script/Katakana/value.dump +0 -0
- data/resources/unicode_data/properties/Script/Kayah_Li/value.dump +0 -0
- data/resources/unicode_data/properties/Script/Kharoshthi/value.dump +0 -0
- data/resources/unicode_data/properties/Script/Khmer/value.dump +6 -0
- data/resources/unicode_data/properties/Script/Lao/value.dump +20 -0
- data/resources/unicode_data/properties/Script/Latin/value.dump +0 -0
- data/resources/unicode_data/properties/Script/Lepcha/value.dump +0 -0
- data/resources/unicode_data/properties/Script/Limbu/value.dump +0 -0
- data/resources/unicode_data/properties/Script/Linear_B/value.dump +0 -0
- data/resources/unicode_data/properties/Script/Lisu/value.dump +3 -0
- data/resources/unicode_data/properties/Script/Lycian/value.dump +3 -0
- data/resources/unicode_data/properties/Script/Lydian/value.dump +4 -0
- data/resources/unicode_data/properties/Script/Malayalam/value.dump +13 -0
- data/resources/unicode_data/properties/Script/Mandaic/value.dump +4 -0
- data/resources/unicode_data/properties/Script/Meetei_Mayek/value.dump +5 -0
- data/resources/unicode_data/properties/Script/Meroitic_Cursive/value.dump +4 -0
- data/resources/unicode_data/properties/Script/Meroitic_Hieroglyphs/value.dump +3 -0
- data/resources/unicode_data/properties/Script/Miao/value.dump +0 -0
- data/resources/unicode_data/properties/Script/Mongolian/value.dump +0 -0
- data/resources/unicode_data/properties/Script/Myanmar/value.dump +0 -0
- data/resources/unicode_data/properties/Script/New_Tai_Lue/value.dump +6 -0
- data/resources/unicode_data/properties/Script/Nko/value.dump +3 -0
- data/resources/unicode_data/properties/Script/Ogham/value.dump +3 -0
- data/resources/unicode_data/properties/Script/Ol_Chiki/value.dump +3 -0
- data/resources/unicode_data/properties/Script/Old_Italic/value.dump +0 -0
- data/resources/unicode_data/properties/Script/Old_Persian/value.dump +4 -0
- data/resources/unicode_data/properties/Script/Old_South_Arabian/value.dump +5 -0
- data/resources/unicode_data/properties/Script/Old_Turkic/value.dump +0 -0
- data/resources/unicode_data/properties/Script/Oriya/value.dump +16 -0
- data/resources/unicode_data/properties/Script/Osmanya/value.dump +4 -0
- data/resources/unicode_data/properties/Script/Phags_Pa/value.dump +3 -0
- data/resources/unicode_data/properties/Script/Phoenician/value.dump +0 -0
- data/resources/unicode_data/properties/Script/Rejang/value.dump +4 -0
- data/resources/unicode_data/properties/Script/Runic/value.dump +4 -0
- data/resources/unicode_data/properties/Script/Samaritan/value.dump +0 -0
- data/resources/unicode_data/properties/Script/Saurashtra/value.dump +4 -0
- data/resources/unicode_data/properties/Script/Sharada/value.dump +4 -0
- data/resources/unicode_data/properties/Script/Shavian/value.dump +3 -0
- data/resources/unicode_data/properties/Script/Sinhala/value.dump +13 -0
- data/resources/unicode_data/properties/Script/Sora_Sompeng/value.dump +4 -0
- data/resources/unicode_data/properties/Script/Sundanese/value.dump +4 -0
- data/resources/unicode_data/properties/Script/Syloti_Nagri/value.dump +0 -0
- data/resources/unicode_data/properties/Script/Syriac/value.dump +0 -0
- data/resources/unicode_data/properties/Script/Tagalog/value.dump +0 -0
- data/resources/unicode_data/properties/Script/Tagbanwa/value.dump +5 -0
- data/resources/unicode_data/properties/Script/Tai_Le/value.dump +4 -0
- data/resources/unicode_data/properties/Script/Tai_Tham/value.dump +8 -0
- data/resources/unicode_data/properties/Script/Tai_Viet/value.dump +4 -0
- data/resources/unicode_data/properties/Script/Takri/value.dump +4 -0
- data/resources/unicode_data/properties/Script/Tamil/value.dump +18 -0
- data/resources/unicode_data/properties/Script/Telugu/value.dump +16 -0
- data/resources/unicode_data/properties/Script/Thaana/value.dump +3 -0
- data/resources/unicode_data/properties/Script/Thai/value.dump +4 -0
- data/resources/unicode_data/properties/Script/Tibetan/value.dump +0 -0
- data/resources/unicode_data/properties/Script/Tifinagh/value.dump +5 -0
- data/resources/unicode_data/properties/Script/Ugaritic/value.dump +4 -0
- data/resources/unicode_data/properties/Script/Vai/value.dump +0 -0
- data/resources/unicode_data/properties/Script/Yi/value.dump +0 -0
- data/resources/unicode_data/properties/Script_Extensions/Arab/value.dump +11 -0
- data/resources/unicode_data/properties/Script_Extensions/Armn/value.dump +3 -0
- data/resources/unicode_data/properties/Script_Extensions/Beng/value.dump +3 -0
- data/resources/unicode_data/properties/Script_Extensions/Bopo/value.dump +19 -0
- data/resources/unicode_data/properties/Script_Extensions/Bugi/value.dump +3 -0
- data/resources/unicode_data/properties/Script_Extensions/Buhd/value.dump +3 -0
- data/resources/unicode_data/properties/Script_Extensions/Cakm/value.dump +4 -0
- data/resources/unicode_data/properties/Script_Extensions/Cprt/value.dump +0 -0
- data/resources/unicode_data/properties/Script_Extensions/Cyrl/value.dump +3 -0
- data/resources/unicode_data/properties/Script_Extensions/Deva/value.dump +4 -0
- data/resources/unicode_data/properties/Script_Extensions/Geor/value.dump +3 -0
- data/resources/unicode_data/properties/Script_Extensions/Grek/value.dump +5 -0
- data/resources/unicode_data/properties/Script_Extensions/Gujr/value.dump +3 -0
- data/resources/unicode_data/properties/Script_Extensions/Guru/value.dump +4 -0
- data/resources/unicode_data/properties/Script_Extensions/Hang/value.dump +18 -0
- data/resources/unicode_data/properties/Script_Extensions/Hani/value.dump +21 -0
- data/resources/unicode_data/properties/Script_Extensions/Hano/value.dump +3 -0
- data/resources/unicode_data/properties/Script_Extensions/Hira/value.dump +24 -0
- data/resources/unicode_data/properties/Script_Extensions/Java/value.dump +3 -0
- data/resources/unicode_data/properties/Script_Extensions/Kana/value.dump +24 -0
- data/resources/unicode_data/properties/Script_Extensions/Kthi/value.dump +3 -0
- data/resources/unicode_data/properties/Script_Extensions/Latn/value.dump +5 -0
- data/resources/unicode_data/properties/Script_Extensions/Linb/value.dump +0 -0
- data/resources/unicode_data/properties/Script_Extensions/Mand/value.dump +3 -0
- data/resources/unicode_data/properties/Script_Extensions/Mong/value.dump +4 -0
- data/resources/unicode_data/properties/Script_Extensions/Mymr/value.dump +3 -0
- data/resources/unicode_data/properties/Script_Extensions/Orya/value.dump +3 -0
- data/resources/unicode_data/properties/Script_Extensions/Phag/value.dump +4 -0
- data/resources/unicode_data/properties/Script_Extensions/Sylo/value.dump +3 -0
- data/resources/unicode_data/properties/Script_Extensions/Syrc/value.dump +8 -0
- data/resources/unicode_data/properties/Script_Extensions/Tagb/value.dump +3 -0
- data/resources/unicode_data/properties/Script_Extensions/Takr/value.dump +3 -0
- data/resources/unicode_data/properties/Script_Extensions/Tale/value.dump +3 -0
- data/resources/unicode_data/properties/Script_Extensions/Tglg/value.dump +3 -0
- data/resources/unicode_data/properties/Script_Extensions/Thaa/value.dump +8 -0
- data/resources/unicode_data/properties/Script_Extensions/Yiii/value.dump +8 -0
- data/resources/unicode_data/properties/Sentence_Break/ATerm/value.dump +6 -0
- data/resources/unicode_data/properties/Sentence_Break/CR/value.dump +3 -0
- data/resources/unicode_data/properties/Sentence_Break/Close/value.dump +0 -0
- data/resources/unicode_data/properties/Sentence_Break/Extend/value.dump +0 -0
- data/resources/unicode_data/properties/Sentence_Break/Format/value.dump +0 -0
- data/resources/unicode_data/properties/Sentence_Break/LF/value.dump +3 -0
- data/resources/unicode_data/properties/Sentence_Break/Lower/value.dump +0 -0
- data/resources/unicode_data/properties/Sentence_Break/Numeric/value.dump +0 -0
- data/resources/unicode_data/properties/Sentence_Break/OLetter/value.dump +0 -0
- data/resources/unicode_data/properties/Sentence_Break/SContinue/value.dump +21 -0
- data/resources/unicode_data/properties/Sentence_Break/STerm/value.dump +0 -0
- data/resources/unicode_data/properties/Sentence_Break/Sep/value.dump +4 -0
- data/resources/unicode_data/properties/Sentence_Break/Sp/value.dump +0 -0
- data/resources/unicode_data/properties/Sentence_Break/Upper/value.dump +0 -0
- data/resources/unicode_data/properties/Soft_Dotted/value.dump +33 -0
- data/resources/unicode_data/properties/Terminal_Punctuation/value.dump +0 -0
- data/resources/unicode_data/properties/Unified_Ideograph/value.dump +0 -0
- data/resources/unicode_data/properties/Uppercase/value.dump +0 -0
- data/resources/unicode_data/properties/Variation_Selector/value.dump +0 -0
- data/resources/unicode_data/properties/White_Space/value.dump +0 -0
- data/resources/unicode_data/properties/Word_Break/ALetter/value.dump +0 -0
- data/resources/unicode_data/properties/Word_Break/CR/value.dump +3 -0
- data/resources/unicode_data/properties/Word_Break/Double_Quote/value.dump +3 -0
- data/resources/unicode_data/properties/Word_Break/Extend/value.dump +0 -0
- data/resources/unicode_data/properties/Word_Break/ExtendNumLet/value.dump +8 -0
- data/resources/unicode_data/properties/Word_Break/Format/value.dump +0 -0
- data/resources/unicode_data/properties/Word_Break/Hebrew_Letter/value.dump +12 -0
- data/resources/unicode_data/properties/Word_Break/Katakana/value.dump +0 -0
- data/resources/unicode_data/properties/Word_Break/LF/value.dump +3 -0
- data/resources/unicode_data/properties/Word_Break/MidLetter/value.dump +10 -0
- data/resources/unicode_data/properties/Word_Break/MidNum/value.dump +16 -0
- data/resources/unicode_data/properties/Word_Break/MidNumLet/value.dump +9 -0
- data/resources/unicode_data/properties/Word_Break/Newline/value.dump +5 -0
- data/resources/unicode_data/properties/Word_Break/Numeric/value.dump +0 -0
- data/resources/unicode_data/properties/Word_Break/Regional_Indicator/value.dump +3 -0
- data/resources/unicode_data/properties/Word_Break/Single_Quote/value.dump +3 -0
- data/resources/unicode_data/properties/XID_Continue/value.dump +0 -0
- data/resources/unicode_data/properties/XID_Start/value.dump +0 -0
- data/resources/unicode_data/property_aliases.yml +350 -0
- data/resources/unicode_data/property_value_aliases.yml +1829 -0
- data/spec/bidi/bidi_spec.rb +2 -2
- data/spec/collation/collation_spec.rb +1 -1
- data/spec/collation/collator_spec.rb +6 -6
- data/spec/collation/sort_key_builder_spec.rb +11 -11
- data/spec/collation/tailoring_spec.rb +1 -1
- data/spec/collation/trie_dumps_spec.rb +1 -1
- data/spec/data_readers/date_time_data_reader_spec.rb +1 -1
- data/spec/data_readers/number_data_reader_spec.rb +19 -6
- data/spec/formatters/calendars/datetime_formatter_spec.rb +1 -1
- data/spec/formatters/numbers/abbreviated/abbreviated_number_formatter_spec.rb +1 -1
- data/spec/formatters/numbers/abbreviated/long_decimal_formatter_spec.rb +5 -5
- data/spec/formatters/numbers/abbreviated/short_decimal_formatter_spec.rb +4 -4
- data/spec/formatters/numbers/currency_formatter_spec.rb +10 -10
- data/spec/formatters/numbers/decimal_formatter_spec.rb +2 -2
- data/spec/formatters/numbers/helpers/fraction_spec.rb +4 -4
- data/spec/formatters/numbers/helpers/integer_spec.rb +21 -16
- data/spec/formatters/numbers/number_formatter_spec.rb +9 -9
- data/spec/formatters/numbers/percent_formatter_spec.rb +2 -2
- data/spec/formatters/numbers/rbnf/rbnf_spec.rb +5 -5
- data/spec/formatters/plurals/plural_formatter_spec.rb +25 -25
- data/spec/formatters/plurals/rules_spec.rb +4 -4
- data/spec/localized/localized_date_spec.rb +25 -25
- data/spec/localized/localized_datetime_spec.rb +7 -7
- data/spec/localized/localized_hash_spec.rb +1 -1
- data/spec/localized/localized_number_spec.rb +23 -23
- data/spec/localized/localized_object_spec.rb +2 -2
- data/spec/localized/localized_string_spec.rb +43 -16
- data/spec/localized/localized_symbol_spec.rb +31 -4
- data/spec/localized/localized_time_spec.rb +3 -3
- data/spec/localized/localized_timespan_spec.rb +42 -42
- data/spec/normalization_spec.rb +4 -4
- data/spec/parsers/number_parser_spec.rb +10 -10
- data/spec/parsers/parser_spec.rb +19 -3
- data/spec/parsers/symbol_table_spec.rb +1 -1
- data/spec/parsers/unicode_regex/character_class_spec.rb +12 -0
- data/spec/parsers/unicode_regex/character_range_spec.rb +24 -5
- data/spec/parsers/unicode_regex/character_set_spec.rb +9 -1
- data/spec/parsers/unicode_regex_parser_spec.rb +1 -1
- data/spec/resources/loader_spec.rb +6 -6
- data/spec/{shared → segmentation}/break_iterator_spec.rb +45 -16
- data/spec/segmentation/parser_spec.rb +107 -0
- data/spec/segmentation/rule_set_spec.rb +102 -0
- data/spec/shared/calendar_spec.rb +30 -30
- data/spec/shared/caser_spec.rb +79 -0
- data/spec/shared/code_point_spec.rb +52 -151
- data/spec/shared/currencies_spec.rb +8 -8
- data/spec/shared/language_codes_spec.rb +13 -13
- data/spec/shared/likely_subtags_spec.rb +58 -0
- data/spec/shared/locale_spec.rb +211 -0
- data/spec/shared/numbers_spec.rb +4 -4
- data/spec/shared/postal_codes_spec.rb +24 -4
- data/spec/shared/properties_database_spec.rb +157 -0
- data/spec/shared/property_name_aliases_spec.rb +56 -0
- data/spec/shared/property_normalizer_spec.rb +64 -0
- data/spec/shared/property_set_spec.rb +218 -0
- data/spec/shared/property_value_aliases_spec.rb +58 -0
- data/spec/shared/territories_spec.rb +1 -1
- data/spec/shared/unicode_regex_spec.rb +35 -2
- data/spec/spec_helper.rb +3 -3
- data/spec/tokenizers/calendars/date_tokenizer_spec.rb +23 -23
- data/spec/tokenizers/calendars/datetime_tokenizer_spec.rb +18 -18
- data/spec/tokenizers/calendars/time_tokenizer_spec.rb +19 -19
- data/spec/tokenizers/composite_token_spec.rb +4 -4
- data/spec/tokenizers/numbers/number_tokenizer_spec.rb +16 -16
- data/spec/tokenizers/token_spec.rb +2 -2
- data/spec/tokenizers/unicode_regex/unicode_regex_tokenizer_spec.rb +94 -94
- data/spec/utils/file_system_trie_spec.rb +98 -0
- data/spec/utils/range_set_spec.rb +53 -1
- data/spec/utils/script_detector_spec.rb +58 -0
- data/spec/utils/yaml/yaml_spec.rb +22 -22
- data/spec/utils_spec.rb +21 -21
- metadata +832 -28
- data/lib/twitter_cldr/parsers/segmentation_parser.rb +0 -137
- data/lib/twitter_cldr/resources/canonical_compositions_updater.rb +0 -51
- data/lib/twitter_cldr/resources/composition_exclusions_importer.rb +0 -62
- data/lib/twitter_cldr/resources/normalization_quick_check_importer.rb +0 -73
- data/lib/twitter_cldr/resources/unicode_properties_importer.rb +0 -79
- data/lib/twitter_cldr/shared/break_iterator.rb +0 -213
- data/lib/twitter_cldr/tokenizers/segmentation/segmentation_tokenizer.rb +0 -39
- data/resources/shared/segments/tailorings/en.yml +0 -8
- data/resources/unicode_data/canonical_compositions.yml +0 -4925
- data/resources/unicode_data/composition_exclusions.yml +0 -297
- data/resources/unicode_data/hangul_blocks.yml +0 -21
- data/resources/unicode_data/indices/bidi_class.yml +0 -4572
- data/resources/unicode_data/indices/bidi_mirrored.yml +0 -3087
- data/resources/unicode_data/indices/category.yml +0 -10918
- data/resources/unicode_data/indices/keys.yml +0 -101
- data/resources/unicode_data/nfc_quick_check.yml +0 -293
- data/resources/unicode_data/nfd_quick_check.yml +0 -909
- data/resources/unicode_data/nfkc_quick_check.yml +0 -989
- data/resources/unicode_data/nfkd_quick_check.yml +0 -1537
- data/resources/unicode_data/properties/line_break.yml +0 -9269
- data/resources/unicode_data/properties/sentence_break.yml +0 -8067
- data/resources/unicode_data/properties/word_break.yml +0 -3001
- data/spec/parsers/segmentation_parser_spec.rb +0 -100
- data/spec/tokenizers/segmentation/segmentation_tokenizer_spec.rb +0 -40
@@ -0,0 +1,1351 @@
|
|
1
|
+
---
|
2
|
+
:aliases:
|
3
|
+
:language:
|
4
|
+
:aa_SAAHO: ssy
|
5
|
+
:aar: aa
|
6
|
+
:abk: ab
|
7
|
+
:afr: af
|
8
|
+
:aju: jrb
|
9
|
+
:aka: ak
|
10
|
+
:alb: sq
|
11
|
+
:als: sq
|
12
|
+
:amh: am
|
13
|
+
:ara: ar
|
14
|
+
:arb: ar
|
15
|
+
:arg: an
|
16
|
+
:arm: hy
|
17
|
+
:art_lojban: jbo
|
18
|
+
:asm: as
|
19
|
+
:ava: av
|
20
|
+
:ave: ae
|
21
|
+
:aym: ay
|
22
|
+
:ayr: ay
|
23
|
+
:aze: az
|
24
|
+
:azj: az
|
25
|
+
:bak: ba
|
26
|
+
:bam: bm
|
27
|
+
:baq: eu
|
28
|
+
:bcc: bal
|
29
|
+
:bcl: bik
|
30
|
+
:bel: be
|
31
|
+
:ben: bn
|
32
|
+
:bih: bh
|
33
|
+
:bis: bi
|
34
|
+
:bod: bo
|
35
|
+
:bos: bs
|
36
|
+
:bre: br
|
37
|
+
:bul: bg
|
38
|
+
:bur: my
|
39
|
+
:bxk: luy
|
40
|
+
:bxr: bua
|
41
|
+
:cat: ca
|
42
|
+
:ces: cs
|
43
|
+
:cha: ch
|
44
|
+
:che: ce
|
45
|
+
:chi: zh
|
46
|
+
:chu: cu
|
47
|
+
:chv: cv
|
48
|
+
:cld: syr
|
49
|
+
:cmn: zh
|
50
|
+
:cor: kw
|
51
|
+
:cos: co
|
52
|
+
:cre: cr
|
53
|
+
:cwd: cr
|
54
|
+
:cym: cy
|
55
|
+
:cze: cs
|
56
|
+
:dan: da
|
57
|
+
:deu: de
|
58
|
+
:dgo: doi
|
59
|
+
:dhd: mwr
|
60
|
+
:dik: din
|
61
|
+
:diq: zza
|
62
|
+
:div: dv
|
63
|
+
:dut: nl
|
64
|
+
:dzo: dz
|
65
|
+
:ekk: et
|
66
|
+
:ell: el
|
67
|
+
:emk: man
|
68
|
+
:eng: en
|
69
|
+
:epo: eo
|
70
|
+
:esk: ik
|
71
|
+
:est: et
|
72
|
+
:eus: eu
|
73
|
+
:ewe: ee
|
74
|
+
:fao: fo
|
75
|
+
:fas: fa
|
76
|
+
:fat: ak
|
77
|
+
:fij: fj
|
78
|
+
:fin: fi
|
79
|
+
:fra: fr
|
80
|
+
:fre: fr
|
81
|
+
:fry: fy
|
82
|
+
:fuc: ff
|
83
|
+
:ful: ff
|
84
|
+
:gaz: om
|
85
|
+
:gbo: grb
|
86
|
+
:geo: ka
|
87
|
+
:ger: de
|
88
|
+
:gla: gd
|
89
|
+
:gle: ga
|
90
|
+
:glg: gl
|
91
|
+
:glv: gv
|
92
|
+
:gno: gon
|
93
|
+
:gre: el
|
94
|
+
:grn: gn
|
95
|
+
:gug: gn
|
96
|
+
:guj: gu
|
97
|
+
:gya: gba
|
98
|
+
:hat: ht
|
99
|
+
:hau: ha
|
100
|
+
:hbs: sr_Latn
|
101
|
+
:hdn: hai
|
102
|
+
:hea: hmn
|
103
|
+
:heb: he
|
104
|
+
:her: hz
|
105
|
+
:him: srx
|
106
|
+
:hin: hi
|
107
|
+
:hmo: ho
|
108
|
+
:hrv: hr
|
109
|
+
:hun: hu
|
110
|
+
:hye: hy
|
111
|
+
:i_ami: ami
|
112
|
+
:i_bnn: bnn
|
113
|
+
:i_hak: hak
|
114
|
+
:i_klingon: tlh
|
115
|
+
:i_lux: lb
|
116
|
+
:i_navajo: nv
|
117
|
+
:i_pwn: pwn
|
118
|
+
:i_tao: tao
|
119
|
+
:i_tay: tay
|
120
|
+
:i_tsu: tsu
|
121
|
+
:ibo: ig
|
122
|
+
:ice: is
|
123
|
+
:ido: io
|
124
|
+
:iii: ii
|
125
|
+
:ike: iu
|
126
|
+
:iku: iu
|
127
|
+
:ile: ie
|
128
|
+
:in: id
|
129
|
+
:ina: ia
|
130
|
+
:ind: id
|
131
|
+
:ipk: ik
|
132
|
+
:isl: is
|
133
|
+
:ita: it
|
134
|
+
:iw: he
|
135
|
+
:jav: jv
|
136
|
+
:ji: yi
|
137
|
+
:jpn: ja
|
138
|
+
:jw: jv
|
139
|
+
:kal: kl
|
140
|
+
:kan: kn
|
141
|
+
:kas: ks
|
142
|
+
:kat: ka
|
143
|
+
:kau: kr
|
144
|
+
:kaz: kk
|
145
|
+
:khk: mn
|
146
|
+
:khm: km
|
147
|
+
:kik: ki
|
148
|
+
:kin: rw
|
149
|
+
:kir: ky
|
150
|
+
:kmr: ku
|
151
|
+
:knc: kr
|
152
|
+
:kng: kg
|
153
|
+
:knn: kok
|
154
|
+
:kom: kv
|
155
|
+
:kon: kg
|
156
|
+
:kor: ko
|
157
|
+
:kpv: kv
|
158
|
+
:kua: kj
|
159
|
+
:kur: ku
|
160
|
+
:lao: lo
|
161
|
+
:lat: la
|
162
|
+
:lav: lv
|
163
|
+
:lbk: bnc
|
164
|
+
:lim: li
|
165
|
+
:lin: ln
|
166
|
+
:lit: lt
|
167
|
+
:ltz: lb
|
168
|
+
:lub: lu
|
169
|
+
:lug: lg
|
170
|
+
:lvs: lv
|
171
|
+
:mac: mk
|
172
|
+
:mah: mh
|
173
|
+
:mal: ml
|
174
|
+
:mao: mi
|
175
|
+
:mar: mr
|
176
|
+
:may: ms
|
177
|
+
:mhr: chm
|
178
|
+
:mkd: mk
|
179
|
+
:mlg: mg
|
180
|
+
:mlt: mt
|
181
|
+
:mnk: man
|
182
|
+
:mo: ro_MD
|
183
|
+
:mol: ro_MD
|
184
|
+
:mon: mn
|
185
|
+
:mri: mi
|
186
|
+
:msa: ms
|
187
|
+
:mup: raj
|
188
|
+
:mya: my
|
189
|
+
:nau: na
|
190
|
+
:nav: nv
|
191
|
+
:nbl: nr
|
192
|
+
:nde: nd
|
193
|
+
:ndo: ng
|
194
|
+
:nep: ne
|
195
|
+
:nld: nl
|
196
|
+
:nno: nn
|
197
|
+
? !ruby/symbol "no"
|
198
|
+
: nb
|
199
|
+
:no_BOKMAL: nb
|
200
|
+
:no_NYNORSK: nn
|
201
|
+
:no_bok: nb
|
202
|
+
:no_nyn: nn
|
203
|
+
:nob: nb
|
204
|
+
:nor: nb
|
205
|
+
:npi: ne
|
206
|
+
:nya: ny
|
207
|
+
:oci: oc
|
208
|
+
:ojg: oj
|
209
|
+
:oji: oj
|
210
|
+
:ori: or
|
211
|
+
:orm: om
|
212
|
+
:ory: or
|
213
|
+
:oss: os
|
214
|
+
:pan: pa
|
215
|
+
:pbu: ps
|
216
|
+
:per: fa
|
217
|
+
:pes: fa
|
218
|
+
:pli: pi
|
219
|
+
:plt: mg
|
220
|
+
:pnb: lah
|
221
|
+
:pol: pl
|
222
|
+
:por: pt
|
223
|
+
:pus: ps
|
224
|
+
:que: qu
|
225
|
+
:quz: qu
|
226
|
+
:rmy: rom
|
227
|
+
:roh: rm
|
228
|
+
:ron: ro
|
229
|
+
:rum: ro
|
230
|
+
:run: rn
|
231
|
+
:rus: ru
|
232
|
+
:sag: sg
|
233
|
+
:san: sa
|
234
|
+
:sgn_BE_FR: sfb
|
235
|
+
:sgn_BE_NL: vgt
|
236
|
+
:sgn_CH_DE: sgg
|
237
|
+
:sh: sr_Latn
|
238
|
+
:sin: si
|
239
|
+
:slk: sk
|
240
|
+
:slo: sk
|
241
|
+
:slv: sl
|
242
|
+
:sme: se
|
243
|
+
:smo: sm
|
244
|
+
:sna: sn
|
245
|
+
:snd: sd
|
246
|
+
:som: so
|
247
|
+
:sot: st
|
248
|
+
:spa: es
|
249
|
+
:spy: kln
|
250
|
+
:sqi: sq
|
251
|
+
:src: sc
|
252
|
+
:srd: sc
|
253
|
+
:srp: sr
|
254
|
+
:ssw: ss
|
255
|
+
:sun: su
|
256
|
+
:swa: sw
|
257
|
+
:swe: sv
|
258
|
+
:swh: sw
|
259
|
+
:tah: ty
|
260
|
+
:tam: ta
|
261
|
+
:tat: tt
|
262
|
+
:tel: te
|
263
|
+
:tgk: tg
|
264
|
+
:tgl: fil
|
265
|
+
:tha: th
|
266
|
+
:tib: bo
|
267
|
+
:tir: ti
|
268
|
+
:tl: fil
|
269
|
+
:ton: to
|
270
|
+
:tsn: tn
|
271
|
+
:tso: ts
|
272
|
+
:ttq: tmh
|
273
|
+
:tuk: tk
|
274
|
+
:tur: tr
|
275
|
+
:tw: ak
|
276
|
+
:twi: ak
|
277
|
+
:uig: ug
|
278
|
+
:ukr: uk
|
279
|
+
:umu: del
|
280
|
+
:urd: ur
|
281
|
+
:uzb: uz
|
282
|
+
:uzn: uz
|
283
|
+
:ven: ve
|
284
|
+
:vie: vi
|
285
|
+
:vol: vo
|
286
|
+
:wel: cy
|
287
|
+
:wln: wa
|
288
|
+
:wol: wo
|
289
|
+
:xho: xh
|
290
|
+
:xpe: kpe
|
291
|
+
:xsl: den
|
292
|
+
:ydd: yi
|
293
|
+
:yid: yi
|
294
|
+
:yor: yo
|
295
|
+
:zai: zap
|
296
|
+
:zh_guoyu: zh
|
297
|
+
:zh_hakka: hak
|
298
|
+
:zh_min_nan: nan
|
299
|
+
:zh_xiang: hsn
|
300
|
+
:zha: za
|
301
|
+
:zho: zh
|
302
|
+
:zsm: ms
|
303
|
+
:zul: zu
|
304
|
+
:zyb: za
|
305
|
+
:territory:
|
306
|
+
? !ruby/symbol "004"
|
307
|
+
: AF
|
308
|
+
:008: AL
|
309
|
+
? !ruby/symbol "010"
|
310
|
+
: AQ
|
311
|
+
? !ruby/symbol "012"
|
312
|
+
: DZ
|
313
|
+
? !ruby/symbol "016"
|
314
|
+
: AS
|
315
|
+
? !ruby/symbol "020"
|
316
|
+
: AD
|
317
|
+
? !ruby/symbol "024"
|
318
|
+
: AO
|
319
|
+
:028: AG
|
320
|
+
? !ruby/symbol "031"
|
321
|
+
: AZ
|
322
|
+
? !ruby/symbol "032"
|
323
|
+
: AR
|
324
|
+
? !ruby/symbol "036"
|
325
|
+
: AU
|
326
|
+
? !ruby/symbol "040"
|
327
|
+
: AT
|
328
|
+
? !ruby/symbol "044"
|
329
|
+
: BS
|
330
|
+
:048: BH
|
331
|
+
? !ruby/symbol "050"
|
332
|
+
: BD
|
333
|
+
? !ruby/symbol "051"
|
334
|
+
: AM
|
335
|
+
? !ruby/symbol "052"
|
336
|
+
: BB
|
337
|
+
? !ruby/symbol "056"
|
338
|
+
: BE
|
339
|
+
? !ruby/symbol "060"
|
340
|
+
: BM
|
341
|
+
? !ruby/symbol "062"
|
342
|
+
:
|
343
|
+
- "034"
|
344
|
+
- "143"
|
345
|
+
? !ruby/symbol "064"
|
346
|
+
: BT
|
347
|
+
:068: BO
|
348
|
+
? !ruby/symbol "070"
|
349
|
+
: BA
|
350
|
+
? !ruby/symbol "072"
|
351
|
+
: BW
|
352
|
+
? !ruby/symbol "074"
|
353
|
+
: BV
|
354
|
+
? !ruby/symbol "076"
|
355
|
+
: BR
|
356
|
+
:084: BZ
|
357
|
+
:086: IO
|
358
|
+
:090: SB
|
359
|
+
:092: VG
|
360
|
+
:096: BN
|
361
|
+
? !ruby/symbol "100"
|
362
|
+
: BG
|
363
|
+
? !ruby/symbol "104"
|
364
|
+
: MM
|
365
|
+
? !ruby/symbol "108"
|
366
|
+
: BI
|
367
|
+
? !ruby/symbol "112"
|
368
|
+
: BY
|
369
|
+
? !ruby/symbol "116"
|
370
|
+
: KH
|
371
|
+
? !ruby/symbol "120"
|
372
|
+
: CM
|
373
|
+
? !ruby/symbol "124"
|
374
|
+
: CA
|
375
|
+
? !ruby/symbol "132"
|
376
|
+
: CV
|
377
|
+
? !ruby/symbol "136"
|
378
|
+
: KY
|
379
|
+
? !ruby/symbol "140"
|
380
|
+
: CF
|
381
|
+
? !ruby/symbol "144"
|
382
|
+
: LK
|
383
|
+
? !ruby/symbol "148"
|
384
|
+
: TD
|
385
|
+
? !ruby/symbol "152"
|
386
|
+
: CL
|
387
|
+
? !ruby/symbol "156"
|
388
|
+
: CN
|
389
|
+
? !ruby/symbol "158"
|
390
|
+
: TW
|
391
|
+
? !ruby/symbol "162"
|
392
|
+
: CX
|
393
|
+
? !ruby/symbol "166"
|
394
|
+
: CC
|
395
|
+
? !ruby/symbol "170"
|
396
|
+
: CO
|
397
|
+
? !ruby/symbol "172"
|
398
|
+
:
|
399
|
+
- RU
|
400
|
+
- AM
|
401
|
+
- AZ
|
402
|
+
- BY
|
403
|
+
- GE
|
404
|
+
- KG
|
405
|
+
- KZ
|
406
|
+
- MD
|
407
|
+
- TJ
|
408
|
+
- TM
|
409
|
+
- UA
|
410
|
+
- UZ
|
411
|
+
? !ruby/symbol "174"
|
412
|
+
: KM
|
413
|
+
? !ruby/symbol "175"
|
414
|
+
: YT
|
415
|
+
? !ruby/symbol "178"
|
416
|
+
: CG
|
417
|
+
? !ruby/symbol "180"
|
418
|
+
: CD
|
419
|
+
? !ruby/symbol "184"
|
420
|
+
: CK
|
421
|
+
? !ruby/symbol "188"
|
422
|
+
: CR
|
423
|
+
? !ruby/symbol "191"
|
424
|
+
: HR
|
425
|
+
? !ruby/symbol "192"
|
426
|
+
: CU
|
427
|
+
? !ruby/symbol "196"
|
428
|
+
: CY
|
429
|
+
? !ruby/symbol "200"
|
430
|
+
:
|
431
|
+
- CZ
|
432
|
+
- SK
|
433
|
+
? !ruby/symbol "203"
|
434
|
+
: CZ
|
435
|
+
? !ruby/symbol "204"
|
436
|
+
: BJ
|
437
|
+
? !ruby/symbol "208"
|
438
|
+
: DK
|
439
|
+
? !ruby/symbol "212"
|
440
|
+
: DM
|
441
|
+
? !ruby/symbol "214"
|
442
|
+
: DO
|
443
|
+
? !ruby/symbol "218"
|
444
|
+
: EC
|
445
|
+
? !ruby/symbol "222"
|
446
|
+
: SV
|
447
|
+
? !ruby/symbol "226"
|
448
|
+
: GQ
|
449
|
+
? !ruby/symbol "230"
|
450
|
+
: ET
|
451
|
+
? !ruby/symbol "231"
|
452
|
+
: ET
|
453
|
+
? !ruby/symbol "232"
|
454
|
+
: ER
|
455
|
+
? !ruby/symbol "233"
|
456
|
+
: EE
|
457
|
+
? !ruby/symbol "234"
|
458
|
+
: FO
|
459
|
+
? !ruby/symbol "238"
|
460
|
+
: FK
|
461
|
+
? !ruby/symbol "239"
|
462
|
+
: GS
|
463
|
+
? !ruby/symbol "242"
|
464
|
+
: FJ
|
465
|
+
? !ruby/symbol "246"
|
466
|
+
: FI
|
467
|
+
? !ruby/symbol "248"
|
468
|
+
: AX
|
469
|
+
? !ruby/symbol "249"
|
470
|
+
: FR
|
471
|
+
? !ruby/symbol "250"
|
472
|
+
: FR
|
473
|
+
? !ruby/symbol "254"
|
474
|
+
: GF
|
475
|
+
? !ruby/symbol "258"
|
476
|
+
: PF
|
477
|
+
? !ruby/symbol "260"
|
478
|
+
: TF
|
479
|
+
? !ruby/symbol "262"
|
480
|
+
: DJ
|
481
|
+
? !ruby/symbol "266"
|
482
|
+
: GA
|
483
|
+
? !ruby/symbol "268"
|
484
|
+
: GE
|
485
|
+
? !ruby/symbol "270"
|
486
|
+
: GM
|
487
|
+
? !ruby/symbol "275"
|
488
|
+
: PS
|
489
|
+
? !ruby/symbol "276"
|
490
|
+
: DE
|
491
|
+
? !ruby/symbol "278"
|
492
|
+
: DE
|
493
|
+
? !ruby/symbol "280"
|
494
|
+
: DE
|
495
|
+
? !ruby/symbol "288"
|
496
|
+
: GH
|
497
|
+
? !ruby/symbol "292"
|
498
|
+
: GI
|
499
|
+
? !ruby/symbol "296"
|
500
|
+
: KI
|
501
|
+
? !ruby/symbol "300"
|
502
|
+
: GR
|
503
|
+
? !ruby/symbol "304"
|
504
|
+
: GL
|
505
|
+
? !ruby/symbol "308"
|
506
|
+
: GD
|
507
|
+
? !ruby/symbol "312"
|
508
|
+
: GP
|
509
|
+
? !ruby/symbol "316"
|
510
|
+
: GU
|
511
|
+
? !ruby/symbol "320"
|
512
|
+
: GT
|
513
|
+
? !ruby/symbol "324"
|
514
|
+
: GN
|
515
|
+
? !ruby/symbol "328"
|
516
|
+
: GY
|
517
|
+
? !ruby/symbol "332"
|
518
|
+
: HT
|
519
|
+
? !ruby/symbol "334"
|
520
|
+
: HM
|
521
|
+
? !ruby/symbol "336"
|
522
|
+
: VA
|
523
|
+
? !ruby/symbol "340"
|
524
|
+
: HN
|
525
|
+
? !ruby/symbol "344"
|
526
|
+
: HK
|
527
|
+
? !ruby/symbol "348"
|
528
|
+
: HU
|
529
|
+
? !ruby/symbol "352"
|
530
|
+
: IS
|
531
|
+
? !ruby/symbol "356"
|
532
|
+
: IN
|
533
|
+
? !ruby/symbol "360"
|
534
|
+
: ID
|
535
|
+
? !ruby/symbol "364"
|
536
|
+
: IR
|
537
|
+
? !ruby/symbol "368"
|
538
|
+
: IQ
|
539
|
+
? !ruby/symbol "372"
|
540
|
+
: IE
|
541
|
+
? !ruby/symbol "376"
|
542
|
+
: IL
|
543
|
+
? !ruby/symbol "380"
|
544
|
+
: IT
|
545
|
+
? !ruby/symbol "384"
|
546
|
+
: CI
|
547
|
+
? !ruby/symbol "388"
|
548
|
+
: JM
|
549
|
+
? !ruby/symbol "392"
|
550
|
+
: JP
|
551
|
+
? !ruby/symbol "398"
|
552
|
+
: KZ
|
553
|
+
? !ruby/symbol "400"
|
554
|
+
: JO
|
555
|
+
? !ruby/symbol "404"
|
556
|
+
: KE
|
557
|
+
? !ruby/symbol "408"
|
558
|
+
: KP
|
559
|
+
? !ruby/symbol "410"
|
560
|
+
: KR
|
561
|
+
? !ruby/symbol "414"
|
562
|
+
: KW
|
563
|
+
? !ruby/symbol "417"
|
564
|
+
: KG
|
565
|
+
? !ruby/symbol "418"
|
566
|
+
: LA
|
567
|
+
? !ruby/symbol "422"
|
568
|
+
: LB
|
569
|
+
? !ruby/symbol "426"
|
570
|
+
: LS
|
571
|
+
? !ruby/symbol "428"
|
572
|
+
: LV
|
573
|
+
? !ruby/symbol "430"
|
574
|
+
: LR
|
575
|
+
? !ruby/symbol "434"
|
576
|
+
: LY
|
577
|
+
? !ruby/symbol "438"
|
578
|
+
: LI
|
579
|
+
? !ruby/symbol "440"
|
580
|
+
: LT
|
581
|
+
? !ruby/symbol "442"
|
582
|
+
: LU
|
583
|
+
? !ruby/symbol "446"
|
584
|
+
: MO
|
585
|
+
? !ruby/symbol "450"
|
586
|
+
: MG
|
587
|
+
? !ruby/symbol "454"
|
588
|
+
: MW
|
589
|
+
? !ruby/symbol "458"
|
590
|
+
: MY
|
591
|
+
? !ruby/symbol "462"
|
592
|
+
: MV
|
593
|
+
? !ruby/symbol "466"
|
594
|
+
: ML
|
595
|
+
? !ruby/symbol "470"
|
596
|
+
: MT
|
597
|
+
? !ruby/symbol "474"
|
598
|
+
: MQ
|
599
|
+
? !ruby/symbol "478"
|
600
|
+
: MR
|
601
|
+
? !ruby/symbol "480"
|
602
|
+
: MU
|
603
|
+
? !ruby/symbol "484"
|
604
|
+
: MX
|
605
|
+
? !ruby/symbol "492"
|
606
|
+
: MC
|
607
|
+
? !ruby/symbol "496"
|
608
|
+
: MN
|
609
|
+
? !ruby/symbol "498"
|
610
|
+
: MD
|
611
|
+
? !ruby/symbol "499"
|
612
|
+
: ME
|
613
|
+
? !ruby/symbol "500"
|
614
|
+
: MS
|
615
|
+
? !ruby/symbol "504"
|
616
|
+
: MA
|
617
|
+
? !ruby/symbol "508"
|
618
|
+
: MZ
|
619
|
+
? !ruby/symbol "512"
|
620
|
+
: OM
|
621
|
+
? !ruby/symbol "516"
|
622
|
+
: NA
|
623
|
+
? !ruby/symbol "520"
|
624
|
+
: NR
|
625
|
+
? !ruby/symbol "524"
|
626
|
+
: NP
|
627
|
+
? !ruby/symbol "528"
|
628
|
+
: NL
|
629
|
+
? !ruby/symbol "530"
|
630
|
+
:
|
631
|
+
- CW
|
632
|
+
- SX
|
633
|
+
- BQ
|
634
|
+
? !ruby/symbol "531"
|
635
|
+
: CW
|
636
|
+
? !ruby/symbol "532"
|
637
|
+
:
|
638
|
+
- CW
|
639
|
+
- SX
|
640
|
+
- BQ
|
641
|
+
? !ruby/symbol "533"
|
642
|
+
: AW
|
643
|
+
? !ruby/symbol "534"
|
644
|
+
: SX
|
645
|
+
? !ruby/symbol "535"
|
646
|
+
: BQ
|
647
|
+
? !ruby/symbol "536"
|
648
|
+
:
|
649
|
+
- SA
|
650
|
+
- IQ
|
651
|
+
? !ruby/symbol "540"
|
652
|
+
: NC
|
653
|
+
? !ruby/symbol "548"
|
654
|
+
: VU
|
655
|
+
? !ruby/symbol "554"
|
656
|
+
: NZ
|
657
|
+
? !ruby/symbol "558"
|
658
|
+
: NI
|
659
|
+
? !ruby/symbol "562"
|
660
|
+
: NE
|
661
|
+
? !ruby/symbol "566"
|
662
|
+
: NG
|
663
|
+
? !ruby/symbol "570"
|
664
|
+
: NU
|
665
|
+
? !ruby/symbol "574"
|
666
|
+
: NF
|
667
|
+
? !ruby/symbol "578"
|
668
|
+
: "NO"
|
669
|
+
? !ruby/symbol "580"
|
670
|
+
: MP
|
671
|
+
? !ruby/symbol "581"
|
672
|
+
: UM
|
673
|
+
? !ruby/symbol "582"
|
674
|
+
:
|
675
|
+
- FM
|
676
|
+
- MH
|
677
|
+
- MP
|
678
|
+
- PW
|
679
|
+
? !ruby/symbol "583"
|
680
|
+
: FM
|
681
|
+
? !ruby/symbol "584"
|
682
|
+
: MH
|
683
|
+
? !ruby/symbol "585"
|
684
|
+
: PW
|
685
|
+
? !ruby/symbol "586"
|
686
|
+
: PK
|
687
|
+
? !ruby/symbol "591"
|
688
|
+
: PA
|
689
|
+
? !ruby/symbol "598"
|
690
|
+
: PG
|
691
|
+
? !ruby/symbol "600"
|
692
|
+
: PY
|
693
|
+
? !ruby/symbol "604"
|
694
|
+
: PE
|
695
|
+
? !ruby/symbol "608"
|
696
|
+
: PH
|
697
|
+
? !ruby/symbol "612"
|
698
|
+
: PN
|
699
|
+
? !ruby/symbol "616"
|
700
|
+
: PL
|
701
|
+
? !ruby/symbol "620"
|
702
|
+
: PT
|
703
|
+
? !ruby/symbol "624"
|
704
|
+
: GW
|
705
|
+
? !ruby/symbol "626"
|
706
|
+
: TL
|
707
|
+
? !ruby/symbol "630"
|
708
|
+
: PR
|
709
|
+
? !ruby/symbol "634"
|
710
|
+
: QA
|
711
|
+
? !ruby/symbol "638"
|
712
|
+
: RE
|
713
|
+
? !ruby/symbol "642"
|
714
|
+
: RO
|
715
|
+
? !ruby/symbol "643"
|
716
|
+
: RU
|
717
|
+
? !ruby/symbol "646"
|
718
|
+
: RW
|
719
|
+
? !ruby/symbol "652"
|
720
|
+
: BL
|
721
|
+
? !ruby/symbol "654"
|
722
|
+
: SH
|
723
|
+
? !ruby/symbol "659"
|
724
|
+
: KN
|
725
|
+
? !ruby/symbol "660"
|
726
|
+
: AI
|
727
|
+
? !ruby/symbol "662"
|
728
|
+
: LC
|
729
|
+
? !ruby/symbol "663"
|
730
|
+
: MF
|
731
|
+
? !ruby/symbol "666"
|
732
|
+
: PM
|
733
|
+
? !ruby/symbol "670"
|
734
|
+
: VC
|
735
|
+
? !ruby/symbol "674"
|
736
|
+
: SM
|
737
|
+
? !ruby/symbol "678"
|
738
|
+
: ST
|
739
|
+
? !ruby/symbol "682"
|
740
|
+
: SA
|
741
|
+
? !ruby/symbol "686"
|
742
|
+
: SN
|
743
|
+
? !ruby/symbol "688"
|
744
|
+
: RS
|
745
|
+
? !ruby/symbol "690"
|
746
|
+
: SC
|
747
|
+
? !ruby/symbol "694"
|
748
|
+
: SL
|
749
|
+
? !ruby/symbol "702"
|
750
|
+
: SG
|
751
|
+
? !ruby/symbol "703"
|
752
|
+
: SK
|
753
|
+
? !ruby/symbol "704"
|
754
|
+
: VN
|
755
|
+
? !ruby/symbol "705"
|
756
|
+
: SI
|
757
|
+
? !ruby/symbol "706"
|
758
|
+
: SO
|
759
|
+
? !ruby/symbol "710"
|
760
|
+
: ZA
|
761
|
+
? !ruby/symbol "716"
|
762
|
+
: ZW
|
763
|
+
? !ruby/symbol "720"
|
764
|
+
: YE
|
765
|
+
? !ruby/symbol "724"
|
766
|
+
: ES
|
767
|
+
? !ruby/symbol "728"
|
768
|
+
: SS
|
769
|
+
? !ruby/symbol "729"
|
770
|
+
: SD
|
771
|
+
? !ruby/symbol "732"
|
772
|
+
: EH
|
773
|
+
? !ruby/symbol "736"
|
774
|
+
: SD
|
775
|
+
? !ruby/symbol "740"
|
776
|
+
: SR
|
777
|
+
? !ruby/symbol "744"
|
778
|
+
: SJ
|
779
|
+
? !ruby/symbol "748"
|
780
|
+
: SZ
|
781
|
+
? !ruby/symbol "752"
|
782
|
+
: SE
|
783
|
+
? !ruby/symbol "756"
|
784
|
+
: CH
|
785
|
+
? !ruby/symbol "760"
|
786
|
+
: SY
|
787
|
+
? !ruby/symbol "762"
|
788
|
+
: TJ
|
789
|
+
? !ruby/symbol "764"
|
790
|
+
: TH
|
791
|
+
? !ruby/symbol "768"
|
792
|
+
: TG
|
793
|
+
? !ruby/symbol "772"
|
794
|
+
: TK
|
795
|
+
? !ruby/symbol "776"
|
796
|
+
: TO
|
797
|
+
? !ruby/symbol "780"
|
798
|
+
: TT
|
799
|
+
? !ruby/symbol "784"
|
800
|
+
: AE
|
801
|
+
? !ruby/symbol "788"
|
802
|
+
: TN
|
803
|
+
? !ruby/symbol "792"
|
804
|
+
: TR
|
805
|
+
? !ruby/symbol "795"
|
806
|
+
: TM
|
807
|
+
? !ruby/symbol "796"
|
808
|
+
: TC
|
809
|
+
? !ruby/symbol "798"
|
810
|
+
: TV
|
811
|
+
? !ruby/symbol "800"
|
812
|
+
: UG
|
813
|
+
? !ruby/symbol "804"
|
814
|
+
: UA
|
815
|
+
? !ruby/symbol "807"
|
816
|
+
: MK
|
817
|
+
? !ruby/symbol "810"
|
818
|
+
:
|
819
|
+
- RU
|
820
|
+
- AM
|
821
|
+
- AZ
|
822
|
+
- BY
|
823
|
+
- EE
|
824
|
+
- GE
|
825
|
+
- KZ
|
826
|
+
- KG
|
827
|
+
- LV
|
828
|
+
- LT
|
829
|
+
- MD
|
830
|
+
- TJ
|
831
|
+
- TM
|
832
|
+
- UA
|
833
|
+
- UZ
|
834
|
+
? !ruby/symbol "818"
|
835
|
+
: EG
|
836
|
+
? !ruby/symbol "826"
|
837
|
+
: GB
|
838
|
+
? !ruby/symbol "830"
|
839
|
+
:
|
840
|
+
- JE
|
841
|
+
- GG
|
842
|
+
? !ruby/symbol "831"
|
843
|
+
: GG
|
844
|
+
? !ruby/symbol "832"
|
845
|
+
: JE
|
846
|
+
? !ruby/symbol "833"
|
847
|
+
: IM
|
848
|
+
? !ruby/symbol "834"
|
849
|
+
: TZ
|
850
|
+
? !ruby/symbol "840"
|
851
|
+
: US
|
852
|
+
? !ruby/symbol "850"
|
853
|
+
: VI
|
854
|
+
? !ruby/symbol "854"
|
855
|
+
: BF
|
856
|
+
? !ruby/symbol "858"
|
857
|
+
: UY
|
858
|
+
? !ruby/symbol "860"
|
859
|
+
: UZ
|
860
|
+
? !ruby/symbol "862"
|
861
|
+
: VE
|
862
|
+
? !ruby/symbol "876"
|
863
|
+
: WF
|
864
|
+
? !ruby/symbol "882"
|
865
|
+
: WS
|
866
|
+
? !ruby/symbol "886"
|
867
|
+
: YE
|
868
|
+
? !ruby/symbol "887"
|
869
|
+
: YE
|
870
|
+
? !ruby/symbol "890"
|
871
|
+
:
|
872
|
+
- RS
|
873
|
+
- ME
|
874
|
+
- SI
|
875
|
+
- HR
|
876
|
+
- MK
|
877
|
+
- BA
|
878
|
+
? !ruby/symbol "891"
|
879
|
+
:
|
880
|
+
- RS
|
881
|
+
- ME
|
882
|
+
? !ruby/symbol "894"
|
883
|
+
: ZM
|
884
|
+
? !ruby/symbol "958"
|
885
|
+
: AA
|
886
|
+
? !ruby/symbol "959"
|
887
|
+
: QM
|
888
|
+
? !ruby/symbol "960"
|
889
|
+
: QN
|
890
|
+
? !ruby/symbol "962"
|
891
|
+
: QP
|
892
|
+
? !ruby/symbol "963"
|
893
|
+
: QQ
|
894
|
+
? !ruby/symbol "964"
|
895
|
+
: QR
|
896
|
+
? !ruby/symbol "965"
|
897
|
+
: QS
|
898
|
+
? !ruby/symbol "966"
|
899
|
+
: QT
|
900
|
+
? !ruby/symbol "967"
|
901
|
+
: EU
|
902
|
+
? !ruby/symbol "968"
|
903
|
+
: QV
|
904
|
+
? !ruby/symbol "969"
|
905
|
+
: QW
|
906
|
+
? !ruby/symbol "970"
|
907
|
+
: QX
|
908
|
+
? !ruby/symbol "971"
|
909
|
+
: QY
|
910
|
+
? !ruby/symbol "972"
|
911
|
+
: QZ
|
912
|
+
? !ruby/symbol "973"
|
913
|
+
: XA
|
914
|
+
? !ruby/symbol "974"
|
915
|
+
: XB
|
916
|
+
? !ruby/symbol "975"
|
917
|
+
: XC
|
918
|
+
? !ruby/symbol "976"
|
919
|
+
: XD
|
920
|
+
? !ruby/symbol "977"
|
921
|
+
: XE
|
922
|
+
? !ruby/symbol "978"
|
923
|
+
: XF
|
924
|
+
? !ruby/symbol "979"
|
925
|
+
: XG
|
926
|
+
? !ruby/symbol "980"
|
927
|
+
: XH
|
928
|
+
? !ruby/symbol "981"
|
929
|
+
: XI
|
930
|
+
? !ruby/symbol "982"
|
931
|
+
: XJ
|
932
|
+
? !ruby/symbol "983"
|
933
|
+
: XK
|
934
|
+
? !ruby/symbol "984"
|
935
|
+
: XL
|
936
|
+
? !ruby/symbol "985"
|
937
|
+
: XM
|
938
|
+
? !ruby/symbol "986"
|
939
|
+
: XN
|
940
|
+
? !ruby/symbol "987"
|
941
|
+
: XO
|
942
|
+
? !ruby/symbol "988"
|
943
|
+
: XP
|
944
|
+
? !ruby/symbol "989"
|
945
|
+
: XQ
|
946
|
+
? !ruby/symbol "990"
|
947
|
+
: XR
|
948
|
+
? !ruby/symbol "991"
|
949
|
+
: XS
|
950
|
+
? !ruby/symbol "992"
|
951
|
+
: XT
|
952
|
+
? !ruby/symbol "993"
|
953
|
+
: XU
|
954
|
+
? !ruby/symbol "994"
|
955
|
+
: XV
|
956
|
+
? !ruby/symbol "995"
|
957
|
+
: XW
|
958
|
+
? !ruby/symbol "996"
|
959
|
+
: XX
|
960
|
+
? !ruby/symbol "997"
|
961
|
+
: XY
|
962
|
+
? !ruby/symbol "998"
|
963
|
+
: XZ
|
964
|
+
? !ruby/symbol "999"
|
965
|
+
: ZZ
|
966
|
+
:AAA: AA
|
967
|
+
:ABW: AW
|
968
|
+
:AFG: AF
|
969
|
+
:AGO: AO
|
970
|
+
:AIA: AI
|
971
|
+
:ALA: AX
|
972
|
+
:ALB: AL
|
973
|
+
:AN:
|
974
|
+
- CW
|
975
|
+
- SX
|
976
|
+
- BQ
|
977
|
+
:AND: AD
|
978
|
+
:ANT:
|
979
|
+
- CW
|
980
|
+
- SX
|
981
|
+
- BQ
|
982
|
+
:ARE: AE
|
983
|
+
:ARG: AR
|
984
|
+
:ARM: AM
|
985
|
+
:ASC: AC
|
986
|
+
:ASM: AS
|
987
|
+
:ATA: AQ
|
988
|
+
:ATF: TF
|
989
|
+
:ATG: AG
|
990
|
+
:AUS: AU
|
991
|
+
:AUT: AT
|
992
|
+
:AZE: AZ
|
993
|
+
:BDI: BI
|
994
|
+
:BEL: BE
|
995
|
+
:BEN: BJ
|
996
|
+
:BES: BQ
|
997
|
+
:BFA: BF
|
998
|
+
:BGD: BD
|
999
|
+
:BGR: BG
|
1000
|
+
:BHR: BH
|
1001
|
+
:BHS: BS
|
1002
|
+
:BIH: BA
|
1003
|
+
:BLM: BL
|
1004
|
+
:BLR: BY
|
1005
|
+
:BLZ: BZ
|
1006
|
+
:BMU: BM
|
1007
|
+
:BOL: BO
|
1008
|
+
:BRA: BR
|
1009
|
+
:BRB: BB
|
1010
|
+
:BRN: BN
|
1011
|
+
:BTN: BT
|
1012
|
+
:BU: MM
|
1013
|
+
:BUR: MM
|
1014
|
+
:BVT: BV
|
1015
|
+
:BWA: BW
|
1016
|
+
:CAF: CF
|
1017
|
+
:CAN: CA
|
1018
|
+
:CCK: CC
|
1019
|
+
:CHE: CH
|
1020
|
+
:CHL: CL
|
1021
|
+
:CHN: CN
|
1022
|
+
:CIV: CI
|
1023
|
+
:CMR: CM
|
1024
|
+
:COD: CD
|
1025
|
+
:COG: CG
|
1026
|
+
:COK: CK
|
1027
|
+
:COL: CO
|
1028
|
+
:COM: KM
|
1029
|
+
:CPT: CP
|
1030
|
+
:CPV: CV
|
1031
|
+
:CRI: CR
|
1032
|
+
:CS:
|
1033
|
+
- RS
|
1034
|
+
- ME
|
1035
|
+
:CT: KI
|
1036
|
+
:CUB: CU
|
1037
|
+
:CUW: CW
|
1038
|
+
:CXR: CX
|
1039
|
+
:CYM: KY
|
1040
|
+
:CYP: CY
|
1041
|
+
:CZE: CZ
|
1042
|
+
:DD: DE
|
1043
|
+
:DDR: DE
|
1044
|
+
:DEU: DE
|
1045
|
+
:DGA: DG
|
1046
|
+
:DJI: DJ
|
1047
|
+
:DMA: DM
|
1048
|
+
:DNK: DK
|
1049
|
+
:DOM: DO
|
1050
|
+
:DY: BJ
|
1051
|
+
:DZA: DZ
|
1052
|
+
:ECU: EC
|
1053
|
+
:EGY: EG
|
1054
|
+
:ERI: ER
|
1055
|
+
:ESH: EH
|
1056
|
+
:ESP: ES
|
1057
|
+
:EST: EE
|
1058
|
+
:ETH: ET
|
1059
|
+
:FIN: FI
|
1060
|
+
:FJI: FJ
|
1061
|
+
:FLK: FK
|
1062
|
+
:FQ:
|
1063
|
+
- AQ
|
1064
|
+
- TF
|
1065
|
+
:FRA: FR
|
1066
|
+
:FRO: FO
|
1067
|
+
:FSM: FM
|
1068
|
+
:FX: FR
|
1069
|
+
:FXX: FR
|
1070
|
+
:GAB: GA
|
1071
|
+
:GBR: GB
|
1072
|
+
:GEO: GE
|
1073
|
+
:GGY: GG
|
1074
|
+
:GHA: GH
|
1075
|
+
:GIB: GI
|
1076
|
+
:GIN: GN
|
1077
|
+
:GLP: GP
|
1078
|
+
:GMB: GM
|
1079
|
+
:GNB: GW
|
1080
|
+
:GNQ: GQ
|
1081
|
+
:GRC: GR
|
1082
|
+
:GRD: GD
|
1083
|
+
:GRL: GL
|
1084
|
+
:GTM: GT
|
1085
|
+
:GUF: GF
|
1086
|
+
:GUM: GU
|
1087
|
+
:GUY: GY
|
1088
|
+
:HKG: HK
|
1089
|
+
:HMD: HM
|
1090
|
+
:HND: HN
|
1091
|
+
:HRV: HR
|
1092
|
+
:HTI: HT
|
1093
|
+
:HUN: HU
|
1094
|
+
:HV: BF
|
1095
|
+
:IDN: ID
|
1096
|
+
:IMN: IM
|
1097
|
+
:IND: IN
|
1098
|
+
:IOT: IO
|
1099
|
+
:IRL: IE
|
1100
|
+
:IRN: IR
|
1101
|
+
:IRQ: IQ
|
1102
|
+
:ISL: IS
|
1103
|
+
:ISR: IL
|
1104
|
+
:ITA: IT
|
1105
|
+
:JAM: JM
|
1106
|
+
:JEY: JE
|
1107
|
+
:JOR: JO
|
1108
|
+
:JPN: JP
|
1109
|
+
:JT: UM
|
1110
|
+
:KAZ: KZ
|
1111
|
+
:KEN: KE
|
1112
|
+
:KGZ: KG
|
1113
|
+
:KHM: KH
|
1114
|
+
:KIR: KI
|
1115
|
+
:KNA: KN
|
1116
|
+
:KOR: KR
|
1117
|
+
:KWT: KW
|
1118
|
+
:LAO: LA
|
1119
|
+
:LBN: LB
|
1120
|
+
:LBR: LR
|
1121
|
+
:LBY: LY
|
1122
|
+
:LCA: LC
|
1123
|
+
:LIE: LI
|
1124
|
+
:LKA: LK
|
1125
|
+
:LSO: LS
|
1126
|
+
:LTU: LT
|
1127
|
+
:LUX: LU
|
1128
|
+
:LVA: LV
|
1129
|
+
:MAC: MO
|
1130
|
+
:MAF: MF
|
1131
|
+
:MAR: MA
|
1132
|
+
:MCO: MC
|
1133
|
+
:MDA: MD
|
1134
|
+
:MDG: MG
|
1135
|
+
:MDV: MV
|
1136
|
+
:MEX: MX
|
1137
|
+
:MHL: MH
|
1138
|
+
:MI: UM
|
1139
|
+
:MKD: MK
|
1140
|
+
:MLI: ML
|
1141
|
+
:MLT: MT
|
1142
|
+
:MMR: MM
|
1143
|
+
:MNE: ME
|
1144
|
+
:MNG: MN
|
1145
|
+
:MNP: MP
|
1146
|
+
:MOZ: MZ
|
1147
|
+
:MRT: MR
|
1148
|
+
:MSR: MS
|
1149
|
+
:MTQ: MQ
|
1150
|
+
:MUS: MU
|
1151
|
+
:MWI: MW
|
1152
|
+
:MYS: MY
|
1153
|
+
:MYT: YT
|
1154
|
+
:NAM: NA
|
1155
|
+
:NCL: NC
|
1156
|
+
:NER: NE
|
1157
|
+
:NFK: NF
|
1158
|
+
:NGA: NG
|
1159
|
+
:NH: VU
|
1160
|
+
:NIC: NI
|
1161
|
+
:NIU: NU
|
1162
|
+
:NLD: NL
|
1163
|
+
:NOR: "NO"
|
1164
|
+
:NPL: NP
|
1165
|
+
:NQ: AQ
|
1166
|
+
:NRU: NR
|
1167
|
+
:NT:
|
1168
|
+
- SA
|
1169
|
+
- IQ
|
1170
|
+
:NTZ:
|
1171
|
+
- SA
|
1172
|
+
- IQ
|
1173
|
+
:NZL: NZ
|
1174
|
+
:OMN: OM
|
1175
|
+
:PAK: PK
|
1176
|
+
:PAN: PA
|
1177
|
+
:PC:
|
1178
|
+
- FM
|
1179
|
+
- MH
|
1180
|
+
- MP
|
1181
|
+
- PW
|
1182
|
+
:PCN: PN
|
1183
|
+
:PER: PE
|
1184
|
+
:PHL: PH
|
1185
|
+
:PLW: PW
|
1186
|
+
:PNG: PG
|
1187
|
+
:POL: PL
|
1188
|
+
:PRI: PR
|
1189
|
+
:PRK: KP
|
1190
|
+
:PRT: PT
|
1191
|
+
:PRY: PY
|
1192
|
+
:PSE: PS
|
1193
|
+
:PU: UM
|
1194
|
+
:PYF: PF
|
1195
|
+
:PZ: PA
|
1196
|
+
:QAT: QA
|
1197
|
+
:QMM: QM
|
1198
|
+
:QNN: QN
|
1199
|
+
:QPP: QP
|
1200
|
+
:QQQ: QQ
|
1201
|
+
:QRR: QR
|
1202
|
+
:QSS: QS
|
1203
|
+
:QTT: QT
|
1204
|
+
:QU: EU
|
1205
|
+
:QUU: EU
|
1206
|
+
:QVV: QV
|
1207
|
+
:QWW: QW
|
1208
|
+
:QXX: QX
|
1209
|
+
:QYY: QY
|
1210
|
+
:QZZ: QZ
|
1211
|
+
:REU: RE
|
1212
|
+
:RH: ZW
|
1213
|
+
:ROU: RO
|
1214
|
+
:RUS: RU
|
1215
|
+
:RWA: RW
|
1216
|
+
:SAU: SA
|
1217
|
+
:SCG:
|
1218
|
+
- RS
|
1219
|
+
- ME
|
1220
|
+
:SDN: SD
|
1221
|
+
:SEN: SN
|
1222
|
+
:SGP: SG
|
1223
|
+
:SGS: GS
|
1224
|
+
:SHN: SH
|
1225
|
+
:SJM: SJ
|
1226
|
+
:SLB: SB
|
1227
|
+
:SLE: SL
|
1228
|
+
:SLV: SV
|
1229
|
+
:SMR: SM
|
1230
|
+
:SOM: SO
|
1231
|
+
:SPM: PM
|
1232
|
+
:SRB: RS
|
1233
|
+
:SSD: SS
|
1234
|
+
:STP: ST
|
1235
|
+
:SU:
|
1236
|
+
- RU
|
1237
|
+
- AM
|
1238
|
+
- AZ
|
1239
|
+
- BY
|
1240
|
+
- EE
|
1241
|
+
- GE
|
1242
|
+
- KZ
|
1243
|
+
- KG
|
1244
|
+
- LV
|
1245
|
+
- LT
|
1246
|
+
- MD
|
1247
|
+
- TJ
|
1248
|
+
- TM
|
1249
|
+
- UA
|
1250
|
+
- UZ
|
1251
|
+
:SUN:
|
1252
|
+
- RU
|
1253
|
+
- AM
|
1254
|
+
- AZ
|
1255
|
+
- BY
|
1256
|
+
- EE
|
1257
|
+
- GE
|
1258
|
+
- KZ
|
1259
|
+
- KG
|
1260
|
+
- LV
|
1261
|
+
- LT
|
1262
|
+
- MD
|
1263
|
+
- TJ
|
1264
|
+
- TM
|
1265
|
+
- UA
|
1266
|
+
- UZ
|
1267
|
+
:SUR: SR
|
1268
|
+
:SVK: SK
|
1269
|
+
:SVN: SI
|
1270
|
+
:SWE: SE
|
1271
|
+
:SWZ: SZ
|
1272
|
+
:SXM: SX
|
1273
|
+
:SYC: SC
|
1274
|
+
:SYR: SY
|
1275
|
+
:TAA: TA
|
1276
|
+
:TCA: TC
|
1277
|
+
:TCD: TD
|
1278
|
+
:TGO: TG
|
1279
|
+
:THA: TH
|
1280
|
+
:TJK: TJ
|
1281
|
+
:TKL: TK
|
1282
|
+
:TKM: TM
|
1283
|
+
:TLS: TL
|
1284
|
+
:TMP: TL
|
1285
|
+
:TON: TO
|
1286
|
+
:TP: TL
|
1287
|
+
:TTO: TT
|
1288
|
+
:TUN: TN
|
1289
|
+
:TUR: TR
|
1290
|
+
:TUV: TV
|
1291
|
+
:TWN: TW
|
1292
|
+
:TZA: TZ
|
1293
|
+
:UGA: UG
|
1294
|
+
:UK: GB
|
1295
|
+
:UKR: UA
|
1296
|
+
:UMI: UM
|
1297
|
+
:URY: UY
|
1298
|
+
:USA: US
|
1299
|
+
:UZB: UZ
|
1300
|
+
:VAT: VA
|
1301
|
+
:VCT: VC
|
1302
|
+
:VD: VN
|
1303
|
+
:VEN: VE
|
1304
|
+
:VGB: VG
|
1305
|
+
:VIR: VI
|
1306
|
+
:VNM: VN
|
1307
|
+
:VUT: VU
|
1308
|
+
:WK: UM
|
1309
|
+
:WLF: WF
|
1310
|
+
:WSM: WS
|
1311
|
+
:XAA: XA
|
1312
|
+
:XBB: XB
|
1313
|
+
:XCC: XC
|
1314
|
+
:XDD: XD
|
1315
|
+
:XEE: XE
|
1316
|
+
:XFF: XF
|
1317
|
+
:XGG: XG
|
1318
|
+
:XHH: XH
|
1319
|
+
:XII: XI
|
1320
|
+
:XJJ: XJ
|
1321
|
+
:XKK: XK
|
1322
|
+
:XLL: XL
|
1323
|
+
:XMM: XM
|
1324
|
+
:XNN: XN
|
1325
|
+
:XOO: XO
|
1326
|
+
:XPP: XP
|
1327
|
+
:XQQ: XQ
|
1328
|
+
:XRR: XR
|
1329
|
+
:XSS: XS
|
1330
|
+
:XTT: XT
|
1331
|
+
:XUU: XU
|
1332
|
+
:XVV: XV
|
1333
|
+
:XWW: XW
|
1334
|
+
:XXX: XX
|
1335
|
+
:XYY: XY
|
1336
|
+
:XZZ: XZ
|
1337
|
+
:YD: YE
|
1338
|
+
:YEM: YE
|
1339
|
+
:YMD: YE
|
1340
|
+
:YU:
|
1341
|
+
- RS
|
1342
|
+
- ME
|
1343
|
+
:YUG:
|
1344
|
+
- RS
|
1345
|
+
- ME
|
1346
|
+
:ZAF: ZA
|
1347
|
+
:ZAR: CD
|
1348
|
+
:ZMB: ZM
|
1349
|
+
:ZR: CD
|
1350
|
+
:ZWE: ZW
|
1351
|
+
:ZZZ: ZZ
|