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.
Files changed (1172) hide show
  1. checksums.yaml +4 -4
  2. data/Gemfile +9 -4
  3. data/History.txt +11 -0
  4. data/README.md +40 -3
  5. data/Rakefile +26 -21
  6. data/lib/twitter_cldr/collation/collator.rb +3 -3
  7. data/lib/twitter_cldr/collation/sort_key_builder.rb +10 -10
  8. data/lib/twitter_cldr/data_readers/calendar_data_reader.rb +8 -8
  9. data/lib/twitter_cldr/data_readers/date_time_data_reader.rb +2 -2
  10. data/lib/twitter_cldr/data_readers/number_data_reader.rb +10 -10
  11. data/lib/twitter_cldr/data_readers/timespan_data_reader.rb +27 -27
  12. data/lib/twitter_cldr/formatters/list_formatter.rb +1 -1
  13. data/lib/twitter_cldr/formatters/numbers/currency_formatter.rb +3 -3
  14. data/lib/twitter_cldr/formatters/numbers/helpers/integer.rb +7 -5
  15. data/lib/twitter_cldr/formatters/numbers/rbnf/formatters.rb +1 -1
  16. data/lib/twitter_cldr/formatters/numbers/rbnf/rule.rb +1 -1
  17. data/lib/twitter_cldr/formatters/numbers/rbnf/rule_set.rb +3 -2
  18. data/lib/twitter_cldr/formatters/numbers/rbnf.rb +2 -2
  19. data/lib/twitter_cldr/formatters/plurals/rules.rb +1 -1
  20. data/lib/twitter_cldr/localized/localized_date.rb +2 -2
  21. data/lib/twitter_cldr/localized/localized_datetime.rb +8 -8
  22. data/lib/twitter_cldr/localized/localized_number.rb +7 -7
  23. data/lib/twitter_cldr/localized/localized_string.rb +33 -1
  24. data/lib/twitter_cldr/localized/localized_symbol.rb +9 -1
  25. data/lib/twitter_cldr/localized/localized_time.rb +2 -2
  26. data/lib/twitter_cldr/localized/localized_timespan.rb +10 -10
  27. data/lib/twitter_cldr/parsers/number_parser.rb +1 -1
  28. data/lib/twitter_cldr/parsers/parser.rb +5 -1
  29. data/lib/twitter_cldr/parsers/unicode_regex/character_class.rb +41 -2
  30. data/lib/twitter_cldr/parsers/unicode_regex/character_range.rb +8 -0
  31. data/lib/twitter_cldr/parsers/unicode_regex/character_set.rb +66 -23
  32. data/lib/twitter_cldr/parsers/unicode_regex/literal.rb +4 -0
  33. data/lib/twitter_cldr/parsers/unicode_regex/unicode_string.rb +6 -3
  34. data/lib/twitter_cldr/parsers/unicode_regex_parser.rb +65 -32
  35. data/lib/twitter_cldr/parsers.rb +1 -2
  36. data/lib/twitter_cldr/resources/custom_locales_resources_importer.rb +4 -4
  37. data/lib/twitter_cldr/resources/download.rb +13 -6
  38. data/lib/twitter_cldr/resources/language_codes_importer.rb +7 -7
  39. data/lib/twitter_cldr/resources/loader.rb +4 -1
  40. data/lib/twitter_cldr/resources/locales_resources_importer.rb +30 -12
  41. data/lib/twitter_cldr/resources/postal_codes_importer.rb +32 -22
  42. data/lib/twitter_cldr/resources/properties/age_property_importer.rb +27 -0
  43. data/lib/twitter_cldr/resources/properties/arabic_shaping_property_importer.rb +42 -0
  44. data/lib/twitter_cldr/resources/properties/bidi_brackets_property_importer.rb +41 -0
  45. data/lib/twitter_cldr/resources/properties/blocks_property_importer.rb +27 -0
  46. data/lib/twitter_cldr/resources/properties/derived_core_properties_importer.rb +36 -0
  47. data/lib/twitter_cldr/resources/properties/east_asian_width_property_importer.rb +27 -0
  48. data/lib/twitter_cldr/resources/properties/grapheme_break_property_importer.rb +27 -0
  49. data/lib/twitter_cldr/resources/properties/hangul_syllable_type_property_importer.rb +27 -0
  50. data/lib/twitter_cldr/resources/properties/indic_positional_category_property_importer.rb +27 -0
  51. data/lib/twitter_cldr/resources/properties/indic_syllabic_category_property_importer.rb +27 -0
  52. data/lib/twitter_cldr/resources/properties/jamo_property_importer.rb +27 -0
  53. data/lib/twitter_cldr/resources/properties/line_break_property_importer.rb +27 -0
  54. data/lib/twitter_cldr/resources/properties/prop_list_importer.rb +36 -0
  55. data/lib/twitter_cldr/resources/properties/properties_importer.rb +59 -0
  56. data/lib/twitter_cldr/resources/properties/property_importer.rb +83 -0
  57. data/lib/twitter_cldr/resources/properties/script_extensions_property_importer.rb +40 -0
  58. data/lib/twitter_cldr/resources/properties/script_property_importer.rb +27 -0
  59. data/lib/twitter_cldr/resources/properties/sentence_break_property_importer.rb +27 -0
  60. data/lib/twitter_cldr/resources/properties/unicode_data_properties_importer.rb +60 -0
  61. data/lib/twitter_cldr/resources/properties/word_break_property_importer.rb +27 -0
  62. data/lib/twitter_cldr/resources/properties.rb +36 -0
  63. data/lib/twitter_cldr/resources/readme_renderer.rb +2 -2
  64. data/lib/twitter_cldr/resources/segment_tests_importer.rb +66 -0
  65. data/lib/twitter_cldr/resources/tailoring_importer.rb +7 -7
  66. data/lib/twitter_cldr/resources/uli/segment_exceptions_importer.rb +1 -1
  67. data/lib/twitter_cldr/resources/unicode_data_importer.rb +19 -60
  68. data/lib/twitter_cldr/resources/unicode_property_aliases_importer.rb +97 -0
  69. data/lib/twitter_cldr/resources.rb +21 -22
  70. data/lib/twitter_cldr/segmentation/break_iterator.rb +54 -0
  71. data/lib/twitter_cldr/segmentation/cursor.rb +34 -0
  72. data/lib/twitter_cldr/segmentation/parser.rb +71 -0
  73. data/lib/twitter_cldr/segmentation/rule.rb +79 -0
  74. data/lib/twitter_cldr/segmentation/rule_set.rb +116 -0
  75. data/lib/twitter_cldr/segmentation/rule_set_builder.rb +142 -0
  76. data/lib/twitter_cldr/segmentation.rb +17 -0
  77. data/lib/twitter_cldr/shared/bidi.rb +4 -4
  78. data/lib/twitter_cldr/shared/calendar.rb +11 -11
  79. data/lib/twitter_cldr/shared/caser.rb +84 -0
  80. data/lib/twitter_cldr/shared/code_point.rb +101 -139
  81. data/lib/twitter_cldr/shared/currencies.rb +5 -5
  82. data/lib/twitter_cldr/shared/language_codes.rb +2 -2
  83. data/lib/twitter_cldr/shared/languages.rb +1 -1
  84. data/lib/twitter_cldr/shared/likely_subtags.rb +104 -0
  85. data/lib/twitter_cldr/shared/locale.rb +252 -0
  86. data/lib/twitter_cldr/shared/postal_codes.rb +21 -9
  87. data/lib/twitter_cldr/shared/properties/arabic_shaping.rb +40 -0
  88. data/lib/twitter_cldr/shared/properties/bidi_brackets.rb +28 -0
  89. data/lib/twitter_cldr/shared/properties.rb +13 -0
  90. data/lib/twitter_cldr/shared/properties_database.rb +180 -0
  91. data/lib/twitter_cldr/shared/property_name_aliases.rb +48 -0
  92. data/lib/twitter_cldr/shared/property_normalizer.rb +108 -0
  93. data/lib/twitter_cldr/shared/property_set.rb +113 -0
  94. data/lib/twitter_cldr/shared/property_value_aliases.rb +99 -0
  95. data/lib/twitter_cldr/shared/unicode_regex.rb +29 -3
  96. data/lib/twitter_cldr/shared.rb +9 -1
  97. data/lib/twitter_cldr/tokenizers/numbers/number_tokenizer.rb +1 -1
  98. data/lib/twitter_cldr/tokenizers/token.rb +1 -1
  99. data/lib/twitter_cldr/tokenizers/tokenizer.rb +15 -13
  100. data/lib/twitter_cldr/tokenizers/unicode_regex/unicode_regex_tokenizer.rb +4 -4
  101. data/lib/twitter_cldr/utils/file_system_trie.rb +145 -0
  102. data/lib/twitter_cldr/utils/range_set.rb +131 -31
  103. data/lib/twitter_cldr/utils/regexp_sampler.rb +0 -1
  104. data/lib/twitter_cldr/utils/script_detector.rb +75 -0
  105. data/lib/twitter_cldr/utils/yaml.rb +3 -3
  106. data/lib/twitter_cldr/utils.rb +8 -5
  107. data/lib/twitter_cldr/version.rb +1 -1
  108. data/lib/twitter_cldr/versions.rb +30 -0
  109. data/lib/twitter_cldr.rb +8 -10
  110. data/resources/locales/af/calendars.yml +8 -8
  111. data/resources/locales/af/lists.yml +8 -4
  112. data/resources/locales/af/numbers.yml +54 -30
  113. data/resources/locales/ar/lists.yml +8 -4
  114. data/resources/locales/ar/numbers.yml +48 -24
  115. data/resources/locales/be/calendars.yml +4 -4
  116. data/resources/locales/be/lists.yml +2 -1
  117. data/resources/locales/be/numbers.yml +24 -12
  118. data/resources/locales/bg/calendars.yml +8 -8
  119. data/resources/locales/bg/lists.yml +8 -4
  120. data/resources/locales/bg/numbers.yml +48 -24
  121. data/resources/locales/bn/lists.yml +8 -4
  122. data/resources/locales/bn/numbers.yml +48 -24
  123. data/resources/locales/ca/calendars.yml +8 -8
  124. data/resources/locales/ca/lists.yml +8 -4
  125. data/resources/locales/ca/numbers.yml +48 -24
  126. data/resources/locales/cs/calendars.yml +32 -32
  127. data/resources/locales/cs/lists.yml +8 -4
  128. data/resources/locales/cs/numbers.yml +48 -24
  129. data/resources/locales/cy/calendars.yml +8 -8
  130. data/resources/locales/cy/lists.yml +6 -3
  131. data/resources/locales/cy/numbers.yml +48 -24
  132. data/resources/locales/da/calendars.yml +10 -10
  133. data/resources/locales/da/lists.yml +8 -4
  134. data/resources/locales/da/numbers.yml +48 -24
  135. data/resources/locales/de/calendars.yml +8 -8
  136. data/resources/locales/de/lists.yml +8 -4
  137. data/resources/locales/de/numbers.yml +48 -24
  138. data/resources/locales/de-CH/calendars.yml +8 -8
  139. data/resources/locales/de-CH/lists.yml +8 -4
  140. data/resources/locales/de-CH/numbers.yml +48 -24
  141. data/resources/locales/el/calendars.yml +8 -8
  142. data/resources/locales/el/lists.yml +8 -4
  143. data/resources/locales/el/numbers.yml +48 -24
  144. data/resources/locales/en/calendars.yml +4 -4
  145. data/resources/locales/en/lists.yml +8 -4
  146. data/resources/locales/en/numbers.yml +48 -24
  147. data/resources/locales/en-150/calendars.yml +4 -4
  148. data/resources/locales/en-150/lists.yml +8 -4
  149. data/resources/locales/en-150/numbers.yml +48 -24
  150. data/resources/locales/en-AU/calendars.yml +4 -4
  151. data/resources/locales/en-AU/lists.yml +8 -4
  152. data/resources/locales/en-AU/numbers.yml +48 -24
  153. data/resources/locales/en-CA/calendars.yml +4 -4
  154. data/resources/locales/en-CA/lists.yml +8 -4
  155. data/resources/locales/en-CA/numbers.yml +48 -24
  156. data/resources/locales/en-GB/calendars.yml +4 -4
  157. data/resources/locales/en-GB/lists.yml +8 -4
  158. data/resources/locales/en-GB/numbers.yml +48 -24
  159. data/resources/locales/en-IE/calendars.yml +4 -4
  160. data/resources/locales/en-IE/lists.yml +8 -4
  161. data/resources/locales/en-IE/numbers.yml +48 -24
  162. data/resources/locales/en-SG/calendars.yml +4 -4
  163. data/resources/locales/en-SG/lists.yml +8 -4
  164. data/resources/locales/en-SG/numbers.yml +48 -24
  165. data/resources/locales/en-ZA/calendars.yml +4 -4
  166. data/resources/locales/en-ZA/lists.yml +8 -4
  167. data/resources/locales/en-ZA/numbers.yml +48 -24
  168. data/resources/locales/es/lists.yml +8 -4
  169. data/resources/locales/es/numbers.yml +48 -24
  170. data/resources/locales/es-419/calendars.yml +8 -8
  171. data/resources/locales/es-419/lists.yml +8 -4
  172. data/resources/locales/es-419/numbers.yml +50 -26
  173. data/resources/locales/es-CO/lists.yml +8 -4
  174. data/resources/locales/es-CO/numbers.yml +48 -24
  175. data/resources/locales/es-MX/lists.yml +8 -4
  176. data/resources/locales/es-MX/numbers.yml +48 -24
  177. data/resources/locales/es-US/lists.yml +8 -4
  178. data/resources/locales/es-US/numbers.yml +48 -24
  179. data/resources/locales/eu/calendars.yml +8 -8
  180. data/resources/locales/eu/lists.yml +8 -4
  181. data/resources/locales/eu/numbers.yml +48 -24
  182. data/resources/locales/fa/lists.yml +8 -4
  183. data/resources/locales/fa/numbers.yml +48 -24
  184. data/resources/locales/fi/calendars.yml +8 -8
  185. data/resources/locales/fi/lists.yml +8 -4
  186. data/resources/locales/fi/numbers.yml +48 -24
  187. data/resources/locales/fil/calendars.yml +8 -8
  188. data/resources/locales/fil/lists.yml +8 -4
  189. data/resources/locales/fil/numbers.yml +48 -24
  190. data/resources/locales/fr/calendars.yml +8 -8
  191. data/resources/locales/fr/lists.yml +8 -4
  192. data/resources/locales/fr/numbers.yml +48 -24
  193. data/resources/locales/fr-BE/calendars.yml +8 -8
  194. data/resources/locales/fr-BE/lists.yml +8 -4
  195. data/resources/locales/fr-BE/numbers.yml +48 -24
  196. data/resources/locales/fr-CA/calendars.yml +8 -8
  197. data/resources/locales/fr-CA/lists.yml +8 -4
  198. data/resources/locales/fr-CA/numbers.yml +48 -24
  199. data/resources/locales/fr-CH/calendars.yml +8 -8
  200. data/resources/locales/fr-CH/lists.yml +8 -4
  201. data/resources/locales/fr-CH/numbers.yml +48 -24
  202. data/resources/locales/ga/calendars.yml +8 -8
  203. data/resources/locales/ga/lists.yml +8 -4
  204. data/resources/locales/ga/numbers.yml +48 -24
  205. data/resources/locales/gl/calendars.yml +8 -8
  206. data/resources/locales/gl/lists.yml +8 -4
  207. data/resources/locales/gl/numbers.yml +48 -24
  208. data/resources/locales/he/calendars.yml +28 -28
  209. data/resources/locales/he/lists.yml +8 -4
  210. data/resources/locales/he/numbers.yml +48 -24
  211. data/resources/locales/hi/calendars.yml +8 -8
  212. data/resources/locales/hi/lists.yml +8 -4
  213. data/resources/locales/hi/numbers.yml +48 -24
  214. data/resources/locales/hr/lists.yml +8 -4
  215. data/resources/locales/hr/numbers.yml +48 -24
  216. data/resources/locales/hu/lists.yml +8 -4
  217. data/resources/locales/hu/numbers.yml +48 -24
  218. data/resources/locales/id/calendars.yml +8 -8
  219. data/resources/locales/id/lists.yml +8 -4
  220. data/resources/locales/id/numbers.yml +49 -25
  221. data/resources/locales/is/calendars.yml +8 -8
  222. data/resources/locales/is/lists.yml +8 -4
  223. data/resources/locales/is/numbers.yml +48 -24
  224. data/resources/locales/it/calendars.yml +8 -8
  225. data/resources/locales/it/lists.yml +8 -4
  226. data/resources/locales/it/numbers.yml +54 -30
  227. data/resources/locales/it-CH/calendars.yml +8 -8
  228. data/resources/locales/it-CH/lists.yml +8 -4
  229. data/resources/locales/it-CH/numbers.yml +54 -30
  230. data/resources/locales/ja/calendars.yml +32 -32
  231. data/resources/locales/ja/lists.yml +8 -4
  232. data/resources/locales/ja/numbers.yml +48 -24
  233. data/resources/locales/ko/calendars.yml +8 -8
  234. data/resources/locales/ko/lists.yml +8 -4
  235. data/resources/locales/ko/numbers.yml +48 -24
  236. data/resources/locales/lv/lists.yml +8 -4
  237. data/resources/locales/lv/numbers.yml +48 -24
  238. data/resources/locales/ms/calendars.yml +8 -8
  239. data/resources/locales/ms/lists.yml +8 -4
  240. data/resources/locales/ms/numbers.yml +48 -24
  241. data/resources/locales/nb/calendars.yml +9 -9
  242. data/resources/locales/nb/lists.yml +8 -4
  243. data/resources/locales/nb/numbers.yml +48 -24
  244. data/resources/locales/nl/calendars.yml +8 -8
  245. data/resources/locales/nl/lists.yml +8 -4
  246. data/resources/locales/nl/numbers.yml +48 -24
  247. data/resources/locales/pl/calendars.yml +8 -8
  248. data/resources/locales/pl/lists.yml +8 -4
  249. data/resources/locales/pl/numbers.yml +48 -24
  250. data/resources/locales/pt/calendars.yml +8 -8
  251. data/resources/locales/pt/lists.yml +8 -4
  252. data/resources/locales/pt/numbers.yml +48 -24
  253. data/resources/locales/ro/calendars.yml +8 -8
  254. data/resources/locales/ro/lists.yml +8 -4
  255. data/resources/locales/ro/numbers.yml +48 -24
  256. data/resources/locales/ru/calendars.yml +8 -8
  257. data/resources/locales/ru/lists.yml +8 -4
  258. data/resources/locales/ru/numbers.yml +48 -24
  259. data/resources/locales/sk/calendars.yml +8 -8
  260. data/resources/locales/sk/lists.yml +8 -4
  261. data/resources/locales/sk/numbers.yml +48 -24
  262. data/resources/locales/sq/calendars.yml +8 -8
  263. data/resources/locales/sq/lists.yml +8 -4
  264. data/resources/locales/sq/numbers.yml +48 -24
  265. data/resources/locales/sr/lists.yml +8 -4
  266. data/resources/locales/sr/numbers.yml +48 -24
  267. data/resources/locales/sv/calendars.yml +10 -10
  268. data/resources/locales/sv/lists.yml +8 -4
  269. data/resources/locales/sv/numbers.yml +48 -24
  270. data/resources/locales/ta/calendars.yml +8 -8
  271. data/resources/locales/ta/lists.yml +8 -4
  272. data/resources/locales/ta/numbers.yml +48 -24
  273. data/resources/locales/th/calendars.yml +8 -8
  274. data/resources/locales/th/lists.yml +8 -4
  275. data/resources/locales/th/numbers.yml +48 -24
  276. data/resources/locales/tr/lists.yml +8 -4
  277. data/resources/locales/tr/numbers.yml +50 -26
  278. data/resources/locales/uk/calendars.yml +8 -8
  279. data/resources/locales/uk/lists.yml +8 -4
  280. data/resources/locales/uk/numbers.yml +48 -24
  281. data/resources/locales/ur/calendars.yml +8 -8
  282. data/resources/locales/ur/lists.yml +8 -4
  283. data/resources/locales/ur/numbers.yml +48 -24
  284. data/resources/locales/vi/calendars.yml +32 -32
  285. data/resources/locales/vi/lists.yml +8 -4
  286. data/resources/locales/vi/numbers.yml +48 -24
  287. data/resources/locales/zh/calendars.yml +32 -32
  288. data/resources/locales/zh/lists.yml +8 -4
  289. data/resources/locales/zh/numbers.yml +48 -24
  290. data/resources/locales/zh-Hant/calendars.yml +32 -32
  291. data/resources/locales/zh-Hant/lists.yml +8 -4
  292. data/resources/locales/zh-Hant/numbers.yml +48 -24
  293. data/resources/shared/aliases.yml +1351 -0
  294. data/resources/shared/likely_subtags.yml +1149 -0
  295. data/resources/shared/postal_codes.yml +486 -289
  296. data/resources/shared/segments/segments_root.yml +57 -57
  297. data/resources/shared/segments/tests/sentence_break_test.yml +527 -0
  298. data/resources/shared/segments/tests/word_break_test.yml +1379 -0
  299. data/resources/shared/territories_containment.yml +25 -17
  300. data/resources/shared/variables.yml +1194 -0
  301. data/resources/unicode_data/blocks/ahom.yml +913 -0
  302. data/resources/unicode_data/blocks/anatolian_hieroglyphs.yml +9329 -0
  303. data/resources/unicode_data/blocks/arabic.yml +16 -0
  304. data/resources/unicode_data/blocks/arabic_presentation_forms_a.yml +2 -2
  305. data/resources/unicode_data/blocks/bassa_vah.yml +577 -0
  306. data/resources/unicode_data/blocks/buginese.yml +2 -2
  307. data/resources/unicode_data/blocks/caucasian_albanian.yml +849 -0
  308. data/resources/unicode_data/blocks/cherokee_supplement.yml +1281 -0
  309. data/resources/unicode_data/blocks/cjk_unified_ideographs_extension_e.yml +33 -0
  310. data/resources/unicode_data/blocks/combining_diacritical_marks_extended.yml +241 -0
  311. data/resources/unicode_data/blocks/coptic_epact_numbers.yml +449 -0
  312. data/resources/unicode_data/blocks/cuneiform_numbers_and_punctuation.yml +2 -2
  313. data/resources/unicode_data/blocks/duployan.yml +2289 -0
  314. data/resources/unicode_data/blocks/early_dynastic_cuneiform.yml +3137 -0
  315. data/resources/unicode_data/blocks/elbasan.yml +641 -0
  316. data/resources/unicode_data/blocks/general_punctuation.yml +64 -0
  317. data/resources/unicode_data/blocks/geometric_shapes_extended.yml +1361 -0
  318. data/resources/unicode_data/blocks/grantha.yml +1361 -0
  319. data/resources/unicode_data/blocks/gujarati.yml +0 -16
  320. data/resources/unicode_data/blocks/hatran.yml +417 -0
  321. data/resources/unicode_data/blocks/kannada.yml +0 -16
  322. data/resources/unicode_data/blocks/khojki.yml +977 -0
  323. data/resources/unicode_data/blocks/khudawadi.yml +1105 -0
  324. data/resources/unicode_data/blocks/latin_extended_e.yml +865 -0
  325. data/resources/unicode_data/blocks/linear_a.yml +5457 -0
  326. data/resources/unicode_data/blocks/mahajani.yml +625 -0
  327. data/resources/unicode_data/blocks/manichaean.yml +817 -0
  328. data/resources/unicode_data/blocks/mende_kikakui.yml +3409 -0
  329. data/resources/unicode_data/blocks/miscellaneous_technical.yml +4 -4
  330. data/resources/unicode_data/blocks/modi.yml +1265 -0
  331. data/resources/unicode_data/blocks/mongolian.yml +2 -2
  332. data/resources/unicode_data/blocks/mro.yml +689 -0
  333. data/resources/unicode_data/blocks/multani.yml +609 -0
  334. data/resources/unicode_data/blocks/myanmar_extended_b.yml +497 -0
  335. data/resources/unicode_data/blocks/nabataean.yml +641 -0
  336. data/resources/unicode_data/blocks/old_hungarian.yml +1729 -0
  337. data/resources/unicode_data/blocks/old_north_arabian.yml +513 -0
  338. data/resources/unicode_data/blocks/old_permic.yml +689 -0
  339. data/resources/unicode_data/blocks/ornamental_dingbats.yml +769 -0
  340. data/resources/unicode_data/blocks/pahawh_hmong.yml +2033 -0
  341. data/resources/unicode_data/blocks/palmyrene.yml +513 -0
  342. data/resources/unicode_data/blocks/pau_cin_hau.yml +913 -0
  343. data/resources/unicode_data/blocks/psalter_pahlavi.yml +465 -0
  344. data/resources/unicode_data/blocks/shorthand_format_controls.yml +65 -0
  345. data/resources/unicode_data/blocks/siddham.yml +1473 -0
  346. data/resources/unicode_data/blocks/sinhala_archaic_numbers.yml +321 -0
  347. data/resources/unicode_data/blocks/supplemental_arrows_c.yml +2369 -0
  348. data/resources/unicode_data/blocks/supplemental_symbols_and_pictographs.yml +241 -0
  349. data/resources/unicode_data/blocks/sutton_signwriting.yml +10753 -0
  350. data/resources/unicode_data/blocks/tirhuta.yml +1313 -0
  351. data/resources/unicode_data/blocks/warang_citi.yml +1345 -0
  352. data/resources/unicode_data/properties/ASCII_Hex_Digit/value.dump +5 -0
  353. data/resources/unicode_data/properties/Age/1.1/value.dump +0 -0
  354. data/resources/unicode_data/properties/Age/2.0/value.dump +0 -0
  355. data/resources/unicode_data/properties/Age/2.1/value.dump +4 -0
  356. data/resources/unicode_data/properties/Age/3.0/value.dump +0 -0
  357. data/resources/unicode_data/properties/Age/3.1/value.dump +0 -0
  358. data/resources/unicode_data/properties/Age/3.2/value.dump +0 -0
  359. data/resources/unicode_data/properties/Age/4.0/value.dump +0 -0
  360. data/resources/unicode_data/properties/Age/4.1/value.dump +0 -0
  361. data/resources/unicode_data/properties/Age/5.0/value.dump +0 -0
  362. data/resources/unicode_data/properties/Age/5.1/value.dump +0 -0
  363. data/resources/unicode_data/properties/Age/5.2/value.dump +0 -0
  364. data/resources/unicode_data/properties/Age/6.0/value.dump +0 -0
  365. data/resources/unicode_data/properties/Age/6.1/value.dump +0 -0
  366. data/resources/unicode_data/properties/Age/6.2/value.dump +3 -0
  367. data/resources/unicode_data/properties/Age/6.3/value.dump +4 -0
  368. data/resources/unicode_data/properties/Alphabetic/value.dump +0 -0
  369. data/resources/unicode_data/properties/Bidi_Class/AL/value.dump +0 -0
  370. data/resources/unicode_data/properties/Bidi_Class/AN/value.dump +0 -0
  371. data/resources/unicode_data/properties/Bidi_Class/B/value.dump +8 -0
  372. data/resources/unicode_data/properties/Bidi_Class/BN/value.dump +0 -0
  373. data/resources/unicode_data/properties/Bidi_Class/CS/value.dump +15 -0
  374. data/resources/unicode_data/properties/Bidi_Class/EN/value.dump +0 -0
  375. data/resources/unicode_data/properties/Bidi_Class/ES/value.dump +11 -0
  376. data/resources/unicode_data/properties/Bidi_Class/ET/value.dump +27 -0
  377. data/resources/unicode_data/properties/Bidi_Class/FSI/value.dump +3 -0
  378. data/resources/unicode_data/properties/Bidi_Class/L/value.dump +0 -0
  379. data/resources/unicode_data/properties/Bidi_Class/LRE/value.dump +3 -0
  380. data/resources/unicode_data/properties/Bidi_Class/LRI/value.dump +3 -0
  381. data/resources/unicode_data/properties/Bidi_Class/LRO/value.dump +3 -0
  382. data/resources/unicode_data/properties/Bidi_Class/NSM/value.dump +0 -0
  383. data/resources/unicode_data/properties/Bidi_Class/ON/value.dump +0 -0
  384. data/resources/unicode_data/properties/Bidi_Class/PDF/value.dump +3 -0
  385. data/resources/unicode_data/properties/Bidi_Class/PDI/value.dump +3 -0
  386. data/resources/unicode_data/properties/Bidi_Class/R/value.dump +0 -0
  387. data/resources/unicode_data/properties/Bidi_Class/RLE/value.dump +3 -0
  388. data/resources/unicode_data/properties/Bidi_Class/RLI/value.dump +3 -0
  389. data/resources/unicode_data/properties/Bidi_Class/RLO/value.dump +3 -0
  390. data/resources/unicode_data/properties/Bidi_Class/S/value.dump +5 -0
  391. data/resources/unicode_data/properties/Bidi_Class/WS/value.dump +0 -0
  392. data/resources/unicode_data/properties/Bidi_Control/value.dump +4 -0
  393. data/resources/unicode_data/properties/Bidi_Mirrored/N/value.dump +0 -0
  394. data/resources/unicode_data/properties/Bidi_Mirrored/Y/value.dump +115 -0
  395. data/resources/unicode_data/properties/Block/Aegean Numbers/value.dump +0 -0
  396. data/resources/unicode_data/properties/Block/Alchemical Symbols/value.dump +0 -0
  397. data/resources/unicode_data/properties/Block/Alphabetic Presentation Forms/value.dump +0 -0
  398. data/resources/unicode_data/properties/Block/Ancient Greek Musical Notation/value.dump +0 -0
  399. data/resources/unicode_data/properties/Block/Ancient Greek Numbers/value.dump +3 -0
  400. data/resources/unicode_data/properties/Block/Ancient Symbols/value.dump +3 -0
  401. data/resources/unicode_data/properties/Block/Arabic/value.dump +0 -0
  402. data/resources/unicode_data/properties/Block/Arabic Extended-A/value.dump +3 -0
  403. data/resources/unicode_data/properties/Block/Arabic Mathematical Alphabetic Symbols/value.dump +0 -0
  404. data/resources/unicode_data/properties/Block/Arabic Presentation Forms-A/value.dump +3 -0
  405. data/resources/unicode_data/properties/Block/Arabic Presentation Forms-B/value.dump +3 -0
  406. data/resources/unicode_data/properties/Block/Arabic Supplement/value.dump +3 -0
  407. data/resources/unicode_data/properties/Block/Armenian/value.dump +3 -0
  408. data/resources/unicode_data/properties/Block/Arrows/value.dump +3 -0
  409. data/resources/unicode_data/properties/Block/Avestan/value.dump +0 -0
  410. data/resources/unicode_data/properties/Block/Balinese/value.dump +0 -0
  411. data/resources/unicode_data/properties/Block/Bamum/value.dump +3 -0
  412. data/resources/unicode_data/properties/Block/Bamum Supplement/value.dump +0 -0
  413. data/resources/unicode_data/properties/Block/Basic Latin/value.dump +0 -0
  414. data/resources/unicode_data/properties/Block/Batak/value.dump +3 -0
  415. data/resources/unicode_data/properties/Block/Bengali/value.dump +3 -0
  416. data/resources/unicode_data/properties/Block/Block Elements/value.dump +3 -0
  417. data/resources/unicode_data/properties/Block/Bopomofo/value.dump +0 -0
  418. data/resources/unicode_data/properties/Block/Bopomofo Extended/value.dump +3 -0
  419. data/resources/unicode_data/properties/Block/Box Drawing/value.dump +0 -0
  420. data/resources/unicode_data/properties/Block/Brahmi/value.dump +0 -0
  421. data/resources/unicode_data/properties/Block/Braille Patterns/value.dump +0 -0
  422. data/resources/unicode_data/properties/Block/Buginese/value.dump +0 -0
  423. data/resources/unicode_data/properties/Block/Buhid/value.dump +3 -0
  424. data/resources/unicode_data/properties/Block/Byzantine Musical Symbols/value.dump +0 -0
  425. data/resources/unicode_data/properties/Block/CJK Compatibility/value.dump +0 -0
  426. data/resources/unicode_data/properties/Block/CJK Compatibility Forms/value.dump +3 -0
  427. data/resources/unicode_data/properties/Block/CJK Compatibility Ideographs/value.dump +0 -0
  428. data/resources/unicode_data/properties/Block/CJK Compatibility Ideographs Supplement/value.dump +0 -0
  429. data/resources/unicode_data/properties/Block/CJK Radicals Supplement/value.dump +3 -0
  430. data/resources/unicode_data/properties/Block/CJK Strokes/value.dump +3 -0
  431. Punctuation/value.dump +0 -0
  432. data/resources/unicode_data/properties/Block/CJK Unified Ideographs/value.dump +0 -0
  433. data/resources/unicode_data/properties/Block/CJK Unified Ideographs Extension A/value.dump +0 -0
  434. data/resources/unicode_data/properties/Block/CJK Unified Ideographs Extension B/value.dump +0 -0
  435. data/resources/unicode_data/properties/Block/CJK Unified Ideographs Extension C/value.dump +0 -0
  436. data/resources/unicode_data/properties/Block/CJK Unified Ideographs Extension D/value.dump +3 -0
  437. data/resources/unicode_data/properties/Block/Carian/value.dump +3 -0
  438. data/resources/unicode_data/properties/Block/Chakma/value.dump +0 -0
  439. data/resources/unicode_data/properties/Block/Cham/value.dump +0 -0
  440. data/resources/unicode_data/properties/Block/Cherokee/value.dump +3 -0
  441. data/resources/unicode_data/properties/Block/Combining Diacritical Marks/value.dump +0 -0
  442. data/resources/unicode_data/properties/Block/Combining Diacritical Marks Supplement/value.dump +3 -0
  443. data/resources/unicode_data/properties/Block/Combining Diacritical Marks for Symbols/value.dump +3 -0
  444. data/resources/unicode_data/properties/Block/Combining Half Marks/value.dump +3 -0
  445. data/resources/unicode_data/properties/Block/Common Indic Number Forms/value.dump +3 -0
  446. data/resources/unicode_data/properties/Block/Control Pictures/value.dump +0 -0
  447. data/resources/unicode_data/properties/Block/Coptic/value.dump +3 -0
  448. data/resources/unicode_data/properties/Block/Counting Rod Numerals/value.dump +3 -0
  449. data/resources/unicode_data/properties/Block/Cuneiform/value.dump +0 -0
  450. Punctuation/value.dump +0 -0
  451. data/resources/unicode_data/properties/Block/Currency Symbols/value.dump +3 -0
  452. data/resources/unicode_data/properties/Block/Cypriot Syllabary/value.dump +0 -0
  453. data/resources/unicode_data/properties/Block/Cyrillic/value.dump +0 -0
  454. data/resources/unicode_data/properties/Block/Cyrillic Extended-A/value.dump +3 -0
  455. data/resources/unicode_data/properties/Block/Cyrillic Extended-B/value.dump +3 -0
  456. data/resources/unicode_data/properties/Block/Cyrillic Supplement/value.dump +0 -0
  457. data/resources/unicode_data/properties/Block/Deseret/value.dump +0 -0
  458. data/resources/unicode_data/properties/Block/Devanagari/value.dump +0 -0
  459. data/resources/unicode_data/properties/Block/Devanagari Extended/value.dump +3 -0
  460. data/resources/unicode_data/properties/Block/Dingbats/value.dump +0 -0
  461. data/resources/unicode_data/properties/Block/Domino Tiles/value.dump +3 -0
  462. data/resources/unicode_data/properties/Block/Egyptian Hieroglyphs/value.dump +0 -0
  463. data/resources/unicode_data/properties/Block/Emoticons/value.dump +0 -0
  464. data/resources/unicode_data/properties/Block/Enclosed Alphanumeric Supplement/value.dump +0 -0
  465. data/resources/unicode_data/properties/Block/Enclosed Alphanumerics/value.dump +3 -0
  466. Months/value.dump +0 -0
  467. data/resources/unicode_data/properties/Block/Enclosed Ideographic Supplement/value.dump +0 -0
  468. data/resources/unicode_data/properties/Block/Ethiopic/value.dump +0 -0
  469. data/resources/unicode_data/properties/Block/Ethiopic Extended/value.dump +3 -0
  470. data/resources/unicode_data/properties/Block/Ethiopic Extended-A/value.dump +0 -0
  471. data/resources/unicode_data/properties/Block/Ethiopic Supplement/value.dump +3 -0
  472. data/resources/unicode_data/properties/Block/General Punctuation/value.dump +0 -0
  473. data/resources/unicode_data/properties/Block/Geometric Shapes/value.dump +3 -0
  474. data/resources/unicode_data/properties/Block/Georgian/value.dump +3 -0
  475. data/resources/unicode_data/properties/Block/Georgian Supplement/value.dump +0 -0
  476. data/resources/unicode_data/properties/Block/Glagolitic/value.dump +0 -0
  477. data/resources/unicode_data/properties/Block/Gothic/value.dump +3 -0
  478. data/resources/unicode_data/properties/Block/Greek Extended/value.dump +0 -0
  479. data/resources/unicode_data/properties/Block/Greek and Coptic/value.dump +3 -0
  480. data/resources/unicode_data/properties/Block/Gujarati/value.dump +4 -0
  481. data/resources/unicode_data/properties/Block/Gurmukhi/value.dump +0 -0
  482. Fullwidth Forms/value.dump +0 -0
  483. data/resources/unicode_data/properties/Block/Hangul Compatibility Jamo/value.dump +3 -0
  484. data/resources/unicode_data/properties/Block/Hangul Jamo/value.dump +0 -0
  485. data/resources/unicode_data/properties/Block/Hangul Jamo Extended-A/value.dump +3 -0
  486. data/resources/unicode_data/properties/Block/Hangul Jamo Extended-B/value.dump +3 -0
  487. data/resources/unicode_data/properties/Block/Hangul Syllables/value.dump +0 -0
  488. data/resources/unicode_data/properties/Block/Hanunoo/value.dump +3 -0
  489. data/resources/unicode_data/properties/Block/Hebrew/value.dump +3 -0
  490. data/resources/unicode_data/properties/Block/High Private Use Surrogates/value.dump +3 -0
  491. data/resources/unicode_data/properties/Block/High Surrogates/value.dump +0 -0
  492. data/resources/unicode_data/properties/Block/Hiragana/value.dump +3 -0
  493. data/resources/unicode_data/properties/Block/IPA Extensions/value.dump +3 -0
  494. data/resources/unicode_data/properties/Block/Ideographic Description Characters/value.dump +3 -0
  495. data/resources/unicode_data/properties/Block/Imperial Aramaic/value.dump +3 -0
  496. data/resources/unicode_data/properties/Block/Inscriptional Pahlavi/value.dump +3 -0
  497. data/resources/unicode_data/properties/Block/Inscriptional Parthian/value.dump +3 -0
  498. data/resources/unicode_data/properties/Block/Javanese/value.dump +3 -0
  499. data/resources/unicode_data/properties/Block/Kaithi/value.dump +3 -0
  500. data/resources/unicode_data/properties/Block/Kana Supplement/value.dump +0 -0
  501. data/resources/unicode_data/properties/Block/Kanbun/value.dump +3 -0
  502. data/resources/unicode_data/properties/Block/Kangxi Radicals/value.dump +0 -0
  503. data/resources/unicode_data/properties/Block/Kannada/value.dump +3 -0
  504. data/resources/unicode_data/properties/Block/Katakana/value.dump +3 -0
  505. data/resources/unicode_data/properties/Block/Katakana Phonetic Extensions/value.dump +3 -0
  506. data/resources/unicode_data/properties/Block/Kayah Li/value.dump +0 -0
  507. data/resources/unicode_data/properties/Block/Kharoshthi/value.dump +0 -0
  508. data/resources/unicode_data/properties/Block/Khmer/value.dump +3 -0
  509. data/resources/unicode_data/properties/Block/Khmer Symbols/value.dump +3 -0
  510. data/resources/unicode_data/properties/Block/Lao/value.dump +3 -0
  511. data/resources/unicode_data/properties/Block/Latin Extended Additional/value.dump +0 -0
  512. data/resources/unicode_data/properties/Block/Latin Extended-A/value.dump +0 -0
  513. data/resources/unicode_data/properties/Block/Latin Extended-B/value.dump +3 -0
  514. data/resources/unicode_data/properties/Block/Latin Extended-C/value.dump +3 -0
  515. data/resources/unicode_data/properties/Block/Latin Extended-D/value.dump +3 -0
  516. data/resources/unicode_data/properties/Block/Latin-1 Supplement/value.dump +3 -0
  517. data/resources/unicode_data/properties/Block/Lepcha/value.dump +0 -0
  518. data/resources/unicode_data/properties/Block/Letterlike Symbols/value.dump +0 -0
  519. data/resources/unicode_data/properties/Block/Limbu/value.dump +0 -0
  520. data/resources/unicode_data/properties/Block/Linear B Ideograms/value.dump +0 -0
  521. data/resources/unicode_data/properties/Block/Linear B Syllabary/value.dump +0 -0
  522. data/resources/unicode_data/properties/Block/Lisu/value.dump +3 -0
  523. data/resources/unicode_data/properties/Block/Low Surrogates/value.dump +0 -0
  524. data/resources/unicode_data/properties/Block/Lycian/value.dump +3 -0
  525. data/resources/unicode_data/properties/Block/Lydian/value.dump +3 -0
  526. data/resources/unicode_data/properties/Block/Mahjong Tiles/value.dump +0 -0
  527. data/resources/unicode_data/properties/Block/Malayalam/value.dump +0 -0
  528. data/resources/unicode_data/properties/Block/Mandaic/value.dump +3 -0
  529. data/resources/unicode_data/properties/Block/Mathematical Alphanumeric Symbols/value.dump +0 -0
  530. data/resources/unicode_data/properties/Block/Mathematical Operators/value.dump +0 -0
  531. data/resources/unicode_data/properties/Block/Meetei Mayek/value.dump +3 -0
  532. data/resources/unicode_data/properties/Block/Meetei Mayek Extensions/value.dump +3 -0
  533. data/resources/unicode_data/properties/Block/Meroitic Cursive/value.dump +3 -0
  534. data/resources/unicode_data/properties/Block/Meroitic Hieroglyphs/value.dump +3 -0
  535. data/resources/unicode_data/properties/Block/Miao/value.dump +0 -0
  536. data/resources/unicode_data/properties/Block/Miscellaneous Mathematical Symbols-A/value.dump +3 -0
  537. data/resources/unicode_data/properties/Block/Miscellaneous Mathematical Symbols-B/value.dump +3 -0
  538. data/resources/unicode_data/properties/Block/Miscellaneous Symbols/value.dump +0 -0
  539. data/resources/unicode_data/properties/Block/Miscellaneous Symbols And Pictographs/value.dump +0 -0
  540. Arrows/value.dump +0 -0
  541. data/resources/unicode_data/properties/Block/Miscellaneous Technical/value.dump +0 -0
  542. data/resources/unicode_data/properties/Block/Modifier Tone Letters/value.dump +0 -0
  543. data/resources/unicode_data/properties/Block/Mongolian/value.dump +0 -0
  544. data/resources/unicode_data/properties/Block/Musical Symbols/value.dump +0 -0
  545. data/resources/unicode_data/properties/Block/Myanmar/value.dump +0 -0
  546. data/resources/unicode_data/properties/Block/Myanmar Extended-A/value.dump +3 -0
  547. data/resources/unicode_data/properties/Block/NKo/value.dump +3 -0
  548. data/resources/unicode_data/properties/Block/New Tai Lue/value.dump +3 -0
  549. data/resources/unicode_data/properties/Block/Number Forms/value.dump +3 -0
  550. data/resources/unicode_data/properties/Block/Ogham/value.dump +3 -0
  551. data/resources/unicode_data/properties/Block/Ol Chiki/value.dump +3 -0
  552. data/resources/unicode_data/properties/Block/Old Italic/value.dump +0 -0
  553. data/resources/unicode_data/properties/Block/Old Persian/value.dump +3 -0
  554. data/resources/unicode_data/properties/Block/Old South Arabian/value.dump +5 -0
  555. data/resources/unicode_data/properties/Block/Old Turkic/value.dump +0 -0
  556. data/resources/unicode_data/properties/Block/Optical Character Recognition/value.dump +3 -0
  557. data/resources/unicode_data/properties/Block/Oriya/value.dump +0 -0
  558. data/resources/unicode_data/properties/Block/Osmanya/value.dump +3 -0
  559. data/resources/unicode_data/properties/Block/Phags-pa/value.dump +3 -0
  560. data/resources/unicode_data/properties/Block/Phaistos Disc/value.dump +3 -0
  561. data/resources/unicode_data/properties/Block/Phoenician/value.dump +0 -0
  562. data/resources/unicode_data/properties/Block/Phonetic Extensions/value.dump +0 -0
  563. data/resources/unicode_data/properties/Block/Phonetic Extensions Supplement/value.dump +3 -0
  564. data/resources/unicode_data/properties/Block/Playing Cards/value.dump +3 -0
  565. data/resources/unicode_data/properties/Block/Private Use Area/value.dump +0 -0
  566. data/resources/unicode_data/properties/Block/Rejang/value.dump +3 -0
  567. data/resources/unicode_data/properties/Block/Rumi Numeral Symbols/value.dump +3 -0
  568. data/resources/unicode_data/properties/Block/Runic/value.dump +3 -0
  569. data/resources/unicode_data/properties/Block/Samaritan/value.dump +0 -0
  570. data/resources/unicode_data/properties/Block/Saurashtra/value.dump +3 -0
  571. data/resources/unicode_data/properties/Block/Sharada/value.dump +3 -0
  572. data/resources/unicode_data/properties/Block/Shavian/value.dump +3 -0
  573. data/resources/unicode_data/properties/Block/Sinhala/value.dump +3 -0
  574. data/resources/unicode_data/properties/Block/Small Form Variants/value.dump +3 -0
  575. data/resources/unicode_data/properties/Block/Sora Sompeng/value.dump +3 -0
  576. data/resources/unicode_data/properties/Block/Spacing Modifier Letters/value.dump +3 -0
  577. data/resources/unicode_data/properties/Block/Specials/value.dump +3 -0
  578. data/resources/unicode_data/properties/Block/Sundanese/value.dump +3 -0
  579. data/resources/unicode_data/properties/Block/Sundanese Supplement/value.dump +3 -0
  580. data/resources/unicode_data/properties/Block/Superscripts and Subscripts/value.dump +3 -0
  581. data/resources/unicode_data/properties/Block/Supplemental Arrows-A/value.dump +3 -0
  582. data/resources/unicode_data/properties/Block/Supplemental Arrows-B/value.dump +0 -0
  583. data/resources/unicode_data/properties/Block/Supplemental Mathematical Operators/value.dump +0 -0
  584. data/resources/unicode_data/properties/Block/Supplemental Punctuation/value.dump +0 -0
  585. data/resources/unicode_data/properties/Block/Supplementary Private Use Area-A/value.dump +0 -0
  586. data/resources/unicode_data/properties/Block/Supplementary Private Use Area-B/value.dump +0 -0
  587. data/resources/unicode_data/properties/Block/Syloti Nagri/value.dump +0 -0
  588. data/resources/unicode_data/properties/Block/Syriac/value.dump +0 -0
  589. data/resources/unicode_data/properties/Block/Tagalog/value.dump +0 -0
  590. data/resources/unicode_data/properties/Block/Tagbanwa/value.dump +3 -0
  591. data/resources/unicode_data/properties/Block/Tags/value.dump +0 -0
  592. data/resources/unicode_data/properties/Block/Tai Le/value.dump +3 -0
  593. data/resources/unicode_data/properties/Block/Tai Tham/value.dump +3 -0
  594. data/resources/unicode_data/properties/Block/Tai Viet/value.dump +3 -0
  595. data/resources/unicode_data/properties/Block/Tai Xuan Jing Symbols/value.dump +0 -0
  596. data/resources/unicode_data/properties/Block/Takri/value.dump +3 -0
  597. data/resources/unicode_data/properties/Block/Tamil/value.dump +3 -0
  598. data/resources/unicode_data/properties/Block/Telugu/value.dump +0 -0
  599. data/resources/unicode_data/properties/Block/Thaana/value.dump +3 -0
  600. data/resources/unicode_data/properties/Block/Thai/value.dump +0 -0
  601. data/resources/unicode_data/properties/Block/Tibetan/value.dump +0 -0
  602. data/resources/unicode_data/properties/Block/Tifinagh/value.dump +3 -0
  603. data/resources/unicode_data/properties/Block/Transport And Map Symbols/value.dump +3 -0
  604. data/resources/unicode_data/properties/Block/Ugaritic/value.dump +3 -0
  605. data/resources/unicode_data/properties/Block/Unified Canadian Aboriginal Syllabics/value.dump +0 -0
  606. data/resources/unicode_data/properties/Block/Unified Canadian Aboriginal Syllabics Extended/value.dump +3 -0
  607. data/resources/unicode_data/properties/Block/Vai/value.dump +0 -0
  608. data/resources/unicode_data/properties/Block/Variation Selectors/value.dump +0 -0
  609. data/resources/unicode_data/properties/Block/Variation Selectors Supplement/value.dump +0 -0
  610. data/resources/unicode_data/properties/Block/Vedic Extensions/value.dump +3 -0
  611. data/resources/unicode_data/properties/Block/Vertical Forms/value.dump +3 -0
  612. data/resources/unicode_data/properties/Block/Yi Radicals/value.dump +3 -0
  613. data/resources/unicode_data/properties/Block/Yi Syllables/value.dump +0 -0
  614. data/resources/unicode_data/properties/Block/Yijing Hexagram Symbols/value.dump +3 -0
  615. data/resources/unicode_data/properties/Canonical_Combining_Class/0/value.dump +0 -0
  616. data/resources/unicode_data/properties/Canonical_Combining_Class/1/value.dump +13 -0
  617. data/resources/unicode_data/properties/Canonical_Combining_Class/10/value.dump +3 -0
  618. data/resources/unicode_data/properties/Canonical_Combining_Class/103/value.dump +3 -0
  619. data/resources/unicode_data/properties/Canonical_Combining_Class/107/value.dump +3 -0
  620. data/resources/unicode_data/properties/Canonical_Combining_Class/11/value.dump +3 -0
  621. data/resources/unicode_data/properties/Canonical_Combining_Class/118/value.dump +3 -0
  622. data/resources/unicode_data/properties/Canonical_Combining_Class/12/value.dump +3 -0
  623. data/resources/unicode_data/properties/Canonical_Combining_Class/122/value.dump +3 -0
  624. data/resources/unicode_data/properties/Canonical_Combining_Class/129/value.dump +3 -0
  625. data/resources/unicode_data/properties/Canonical_Combining_Class/13/value.dump +3 -0
  626. data/resources/unicode_data/properties/Canonical_Combining_Class/130/value.dump +5 -0
  627. data/resources/unicode_data/properties/Canonical_Combining_Class/132/value.dump +3 -0
  628. data/resources/unicode_data/properties/Canonical_Combining_Class/14/value.dump +3 -0
  629. data/resources/unicode_data/properties/Canonical_Combining_Class/15/value.dump +3 -0
  630. data/resources/unicode_data/properties/Canonical_Combining_Class/16/value.dump +3 -0
  631. data/resources/unicode_data/properties/Canonical_Combining_Class/17/value.dump +3 -0
  632. data/resources/unicode_data/properties/Canonical_Combining_Class/18/value.dump +4 -0
  633. data/resources/unicode_data/properties/Canonical_Combining_Class/19/value.dump +3 -0
  634. data/resources/unicode_data/properties/Canonical_Combining_Class/20/value.dump +3 -0
  635. data/resources/unicode_data/properties/Canonical_Combining_Class/202/value.dump +5 -0
  636. data/resources/unicode_data/properties/Canonical_Combining_Class/21/value.dump +3 -0
  637. data/resources/unicode_data/properties/Canonical_Combining_Class/214/value.dump +3 -0
  638. data/resources/unicode_data/properties/Canonical_Combining_Class/216/value.dump +6 -0
  639. data/resources/unicode_data/properties/Canonical_Combining_Class/218/value.dump +3 -0
  640. data/resources/unicode_data/properties/Canonical_Combining_Class/22/value.dump +3 -0
  641. data/resources/unicode_data/properties/Canonical_Combining_Class/220/value.dump +70 -0
  642. data/resources/unicode_data/properties/Canonical_Combining_Class/222/value.dump +6 -0
  643. data/resources/unicode_data/properties/Canonical_Combining_Class/224/value.dump +3 -0
  644. data/resources/unicode_data/properties/Canonical_Combining_Class/226/value.dump +3 -0
  645. data/resources/unicode_data/properties/Canonical_Combining_Class/228/value.dump +5 -0
  646. data/resources/unicode_data/properties/Canonical_Combining_Class/23/value.dump +3 -0
  647. data/resources/unicode_data/properties/Canonical_Combining_Class/230/value.dump +0 -0
  648. data/resources/unicode_data/properties/Canonical_Combining_Class/232/value.dump +6 -0
  649. data/resources/unicode_data/properties/Canonical_Combining_Class/233/value.dump +6 -0
  650. data/resources/unicode_data/properties/Canonical_Combining_Class/234/value.dump +5 -0
  651. data/resources/unicode_data/properties/Canonical_Combining_Class/24/value.dump +3 -0
  652. data/resources/unicode_data/properties/Canonical_Combining_Class/240/value.dump +3 -0
  653. data/resources/unicode_data/properties/Canonical_Combining_Class/25/value.dump +3 -0
  654. data/resources/unicode_data/properties/Canonical_Combining_Class/26/value.dump +3 -0
  655. data/resources/unicode_data/properties/Canonical_Combining_Class/27/value.dump +4 -0
  656. data/resources/unicode_data/properties/Canonical_Combining_Class/28/value.dump +4 -0
  657. data/resources/unicode_data/properties/Canonical_Combining_Class/29/value.dump +4 -0
  658. data/resources/unicode_data/properties/Canonical_Combining_Class/30/value.dump +4 -0
  659. data/resources/unicode_data/properties/Canonical_Combining_Class/31/value.dump +4 -0
  660. data/resources/unicode_data/properties/Canonical_Combining_Class/32/value.dump +4 -0
  661. data/resources/unicode_data/properties/Canonical_Combining_Class/33/value.dump +3 -0
  662. data/resources/unicode_data/properties/Canonical_Combining_Class/34/value.dump +3 -0
  663. data/resources/unicode_data/properties/Canonical_Combining_Class/35/value.dump +3 -0
  664. data/resources/unicode_data/properties/Canonical_Combining_Class/36/value.dump +3 -0
  665. data/resources/unicode_data/properties/Canonical_Combining_Class/7/value.dump +19 -0
  666. data/resources/unicode_data/properties/Canonical_Combining_Class/8/value.dump +3 -0
  667. data/resources/unicode_data/properties/Canonical_Combining_Class/84/value.dump +3 -0
  668. data/resources/unicode_data/properties/Canonical_Combining_Class/9/value.dump +41 -0
  669. data/resources/unicode_data/properties/Canonical_Combining_Class/91/value.dump +3 -0
  670. data/resources/unicode_data/properties/Case_Ignorable/value.dump +0 -0
  671. data/resources/unicode_data/properties/Cased/value.dump +0 -0
  672. data/resources/unicode_data/properties/Changes_When_Casefolded/value.dump +0 -0
  673. data/resources/unicode_data/properties/Changes_When_Casemapped/value.dump +0 -0
  674. data/resources/unicode_data/properties/Changes_When_Lowercased/value.dump +0 -0
  675. data/resources/unicode_data/properties/Changes_When_Titlecased/value.dump +589 -0
  676. data/resources/unicode_data/properties/Changes_When_Uppercased/value.dump +588 -0
  677. data/resources/unicode_data/properties/Dash/value.dump +0 -0
  678. data/resources/unicode_data/properties/Default_Ignorable_Code_Point/value.dump +0 -0
  679. data/resources/unicode_data/properties/Deprecated/value.dump +0 -0
  680. data/resources/unicode_data/properties/Diacritic/value.dump +135 -0
  681. data/resources/unicode_data/properties/East_Asian_Width/A/value.dump +0 -0
  682. data/resources/unicode_data/properties/East_Asian_Width/F/value.dump +0 -0
  683. data/resources/unicode_data/properties/East_Asian_Width/H/value.dump +9 -0
  684. data/resources/unicode_data/properties/East_Asian_Width/N/value.dump +0 -0
  685. data/resources/unicode_data/properties/East_Asian_Width/Na/value.dump +9 -0
  686. data/resources/unicode_data/properties/East_Asian_Width/W/value.dump +0 -0
  687. data/resources/unicode_data/properties/Extender/value.dump +26 -0
  688. data/resources/unicode_data/properties/General_Category/C/c/value.dump +0 -0
  689. data/resources/unicode_data/properties/General_Category/C/f/value.dump +0 -0
  690. data/resources/unicode_data/properties/General_Category/C/o/value.dump +0 -0
  691. data/resources/unicode_data/properties/General_Category/C/s/value.dump +0 -0
  692. data/resources/unicode_data/properties/General_Category/L/l/value.dump +0 -0
  693. data/resources/unicode_data/properties/General_Category/L/m/value.dump +54 -0
  694. data/resources/unicode_data/properties/General_Category/L/o/value.dump +0 -0
  695. data/resources/unicode_data/properties/General_Category/L/t/value.dump +12 -0
  696. data/resources/unicode_data/properties/General_Category/L/u/value.dump +0 -0
  697. data/resources/unicode_data/properties/General_Category/M/c/value.dump +0 -0
  698. data/resources/unicode_data/properties/General_Category/M/e/value.dump +6 -0
  699. data/resources/unicode_data/properties/General_Category/M/n/value.dump +0 -0
  700. data/resources/unicode_data/properties/General_Category/N/d/value.dump +0 -0
  701. data/resources/unicode_data/properties/General_Category/N/l/value.dump +0 -0
  702. data/resources/unicode_data/properties/General_Category/N/o/value.dump +0 -0
  703. data/resources/unicode_data/properties/General_Category/P/c/value.dump +8 -0
  704. data/resources/unicode_data/properties/General_Category/P/d/value.dump +0 -0
  705. data/resources/unicode_data/properties/General_Category/P/e/value.dump +72 -0
  706. data/resources/unicode_data/properties/General_Category/P/f/value.dump +14 -0
  707. data/resources/unicode_data/properties/General_Category/P/i/value.dump +13 -0
  708. data/resources/unicode_data/properties/General_Category/P/o/value.dump +0 -0
  709. data/resources/unicode_data/properties/General_Category/P/s/value.dump +76 -0
  710. data/resources/unicode_data/properties/General_Category/S/c/value.dump +21 -0
  711. data/resources/unicode_data/properties/General_Category/S/k/value.dump +0 -0
  712. data/resources/unicode_data/properties/General_Category/S/m/value.dump +0 -0
  713. data/resources/unicode_data/properties/General_Category/S/o/value.dump +0 -0
  714. data/resources/unicode_data/properties/General_Category/Z/l/value.dump +3 -0
  715. data/resources/unicode_data/properties/General_Category/Z/p/value.dump +3 -0
  716. data/resources/unicode_data/properties/General_Category/Z/s/value.dump +0 -0
  717. data/resources/unicode_data/properties/Grapheme_Base/value.dump +0 -0
  718. data/resources/unicode_data/properties/Grapheme_Cluster_Break/CR/value.dump +3 -0
  719. data/resources/unicode_data/properties/Grapheme_Cluster_Break/Control/value.dump +0 -0
  720. data/resources/unicode_data/properties/Grapheme_Cluster_Break/Extend/value.dump +0 -0
  721. data/resources/unicode_data/properties/Grapheme_Cluster_Break/L/value.dump +0 -0
  722. data/resources/unicode_data/properties/Grapheme_Cluster_Break/LF/value.dump +3 -0
  723. data/resources/unicode_data/properties/Grapheme_Cluster_Break/LV/value.dump +0 -0
  724. data/resources/unicode_data/properties/Grapheme_Cluster_Break/LVT/value.dump +401 -0
  725. data/resources/unicode_data/properties/Grapheme_Cluster_Break/Regional_Indicator/value.dump +3 -0
  726. data/resources/unicode_data/properties/Grapheme_Cluster_Break/SpacingMark/value.dump +0 -0
  727. data/resources/unicode_data/properties/Grapheme_Cluster_Break/T/value.dump +4 -0
  728. data/resources/unicode_data/properties/Grapheme_Cluster_Break/V/value.dump +4 -0
  729. data/resources/unicode_data/properties/Grapheme_Extend/value.dump +0 -0
  730. data/resources/unicode_data/properties/Grapheme_Link/value.dump +41 -0
  731. data/resources/unicode_data/properties/Hangul_Syllable_Type/L/value.dump +0 -0
  732. data/resources/unicode_data/properties/Hangul_Syllable_Type/LV/value.dump +0 -0
  733. data/resources/unicode_data/properties/Hangul_Syllable_Type/LVT/value.dump +401 -0
  734. data/resources/unicode_data/properties/Hangul_Syllable_Type/T/value.dump +4 -0
  735. data/resources/unicode_data/properties/Hangul_Syllable_Type/V/value.dump +4 -0
  736. data/resources/unicode_data/properties/Hex_Digit/value.dump +8 -0
  737. data/resources/unicode_data/properties/Hyphen/value.dump +12 -0
  738. data/resources/unicode_data/properties/IDS_Binary_Operator/value.dump +4 -0
  739. data/resources/unicode_data/properties/IDS_Trinary_Operator/value.dump +3 -0
  740. data/resources/unicode_data/properties/ID_Continue/value.dump +0 -0
  741. data/resources/unicode_data/properties/ID_Start/value.dump +0 -0
  742. data/resources/unicode_data/properties/Ideographic/value.dump +0 -0
  743. data/resources/unicode_data/properties/Indic_Positional_Category/Bottom/value.dump +78 -0
  744. data/resources/unicode_data/properties/Indic_Positional_Category/Bottom_And_Right/value.dump +4 -0
  745. data/resources/unicode_data/properties/Indic_Positional_Category/Invisible/value.dump +10 -0
  746. data/resources/unicode_data/properties/Indic_Positional_Category/Left/value.dump +36 -0
  747. data/resources/unicode_data/properties/Indic_Positional_Category/Left_And_Right/value.dump +10 -0
  748. data/resources/unicode_data/properties/Indic_Positional_Category/Overstruck/value.dump +8 -0
  749. data/resources/unicode_data/properties/Indic_Positional_Category/Right/value.dump +86 -0
  750. data/resources/unicode_data/properties/Indic_Positional_Category/Top/value.dump +91 -0
  751. data/resources/unicode_data/properties/Indic_Positional_Category/Top_And_Bottom/value.dump +8 -0
  752. data/resources/unicode_data/properties/Indic_Positional_Category/Top_And_Bottom_And_Right/value.dump +3 -0
  753. data/resources/unicode_data/properties/Indic_Positional_Category/Top_And_Left/value.dump +6 -0
  754. data/resources/unicode_data/properties/Indic_Positional_Category/Top_And_Left_And_Right/value.dump +4 -0
  755. data/resources/unicode_data/properties/Indic_Positional_Category/Top_And_Right/value.dump +12 -0
  756. data/resources/unicode_data/properties/Indic_Positional_Category/Visual_Order_Left/value.dump +8 -0
  757. data/resources/unicode_data/properties/Indic_Syllabic_Category/Avagraha/value.dump +15 -0
  758. data/resources/unicode_data/properties/Indic_Syllabic_Category/Bindu/value.dump +0 -0
  759. data/resources/unicode_data/properties/Indic_Syllabic_Category/Consonant/value.dump +0 -0
  760. data/resources/unicode_data/properties/Indic_Syllabic_Category/Consonant_Dead/value.dump +4 -0
  761. data/resources/unicode_data/properties/Indic_Syllabic_Category/Consonant_Final/value.dump +13 -0
  762. data/resources/unicode_data/properties/Indic_Syllabic_Category/Consonant_Head_Letter/value.dump +3 -0
  763. data/resources/unicode_data/properties/Indic_Syllabic_Category/Consonant_Medial/value.dump +12 -0
  764. data/resources/unicode_data/properties/Indic_Syllabic_Category/Consonant_Placeholder/value.dump +0 -0
  765. data/resources/unicode_data/properties/Indic_Syllabic_Category/Consonant_Repha/value.dump +8 -0
  766. data/resources/unicode_data/properties/Indic_Syllabic_Category/Consonant_Subjoined/value.dump +11 -0
  767. data/resources/unicode_data/properties/Indic_Syllabic_Category/Modifying_Letter/value.dump +3 -0
  768. data/resources/unicode_data/properties/Indic_Syllabic_Category/Nukta/value.dump +18 -0
  769. data/resources/unicode_data/properties/Indic_Syllabic_Category/Register_Shifter/value.dump +3 -0
  770. data/resources/unicode_data/properties/Indic_Syllabic_Category/Tone_Letter/value.dump +5 -0
  771. data/resources/unicode_data/properties/Indic_Syllabic_Category/Tone_Mark/value.dump +17 -0
  772. data/resources/unicode_data/properties/Indic_Syllabic_Category/Virama/value.dump +41 -0
  773. data/resources/unicode_data/properties/Indic_Syllabic_Category/Visarga/value.dump +32 -0
  774. data/resources/unicode_data/properties/Indic_Syllabic_Category/Vowel/value.dump +6 -0
  775. data/resources/unicode_data/properties/Indic_Syllabic_Category/Vowel_Dependent/value.dump +112 -0
  776. data/resources/unicode_data/properties/Indic_Syllabic_Category/Vowel_Independent/value.dump +0 -0
  777. data/resources/unicode_data/properties/Jamo_Short_Name/A/value.dump +3 -0
  778. data/resources/unicode_data/properties/Jamo_Short_Name/AE/value.dump +3 -0
  779. data/resources/unicode_data/properties/Jamo_Short_Name/B/value.dump +4 -0
  780. data/resources/unicode_data/properties/Jamo_Short_Name/BB/value.dump +3 -0
  781. data/resources/unicode_data/properties/Jamo_Short_Name/BS/value.dump +3 -0
  782. data/resources/unicode_data/properties/Jamo_Short_Name/C/value.dump +4 -0
  783. data/resources/unicode_data/properties/Jamo_Short_Name/D/value.dump +4 -0
  784. data/resources/unicode_data/properties/Jamo_Short_Name/DD/value.dump +3 -0
  785. data/resources/unicode_data/properties/Jamo_Short_Name/E/value.dump +3 -0
  786. data/resources/unicode_data/properties/Jamo_Short_Name/EO/value.dump +3 -0
  787. data/resources/unicode_data/properties/Jamo_Short_Name/EU/value.dump +3 -0
  788. data/resources/unicode_data/properties/Jamo_Short_Name/G/value.dump +0 -0
  789. data/resources/unicode_data/properties/Jamo_Short_Name/GG/value.dump +4 -0
  790. data/resources/unicode_data/properties/Jamo_Short_Name/GS/value.dump +3 -0
  791. data/resources/unicode_data/properties/Jamo_Short_Name/H/value.dump +4 -0
  792. data/resources/unicode_data/properties/Jamo_Short_Name/I/value.dump +3 -0
  793. data/resources/unicode_data/properties/Jamo_Short_Name/J/value.dump +4 -0
  794. data/resources/unicode_data/properties/Jamo_Short_Name/JJ/value.dump +3 -0
  795. data/resources/unicode_data/properties/Jamo_Short_Name/K/value.dump +4 -0
  796. data/resources/unicode_data/properties/Jamo_Short_Name/L/value.dump +3 -0
  797. data/resources/unicode_data/properties/Jamo_Short_Name/LB/value.dump +3 -0
  798. data/resources/unicode_data/properties/Jamo_Short_Name/LG/value.dump +3 -0
  799. data/resources/unicode_data/properties/Jamo_Short_Name/LH/value.dump +3 -0
  800. data/resources/unicode_data/properties/Jamo_Short_Name/LM/value.dump +3 -0
  801. data/resources/unicode_data/properties/Jamo_Short_Name/LP/value.dump +3 -0
  802. data/resources/unicode_data/properties/Jamo_Short_Name/LS/value.dump +3 -0
  803. data/resources/unicode_data/properties/Jamo_Short_Name/LT/value.dump +3 -0
  804. data/resources/unicode_data/properties/Jamo_Short_Name/M/value.dump +4 -0
  805. data/resources/unicode_data/properties/Jamo_Short_Name/N/value.dump +4 -0
  806. data/resources/unicode_data/properties/Jamo_Short_Name/NG/value.dump +3 -0
  807. data/resources/unicode_data/properties/Jamo_Short_Name/NH/value.dump +3 -0
  808. data/resources/unicode_data/properties/Jamo_Short_Name/NJ/value.dump +3 -0
  809. data/resources/unicode_data/properties/Jamo_Short_Name/O/value.dump +3 -0
  810. data/resources/unicode_data/properties/Jamo_Short_Name/OE/value.dump +3 -0
  811. data/resources/unicode_data/properties/Jamo_Short_Name/P/value.dump +4 -0
  812. data/resources/unicode_data/properties/Jamo_Short_Name/R/value.dump +3 -0
  813. data/resources/unicode_data/properties/Jamo_Short_Name/S/value.dump +4 -0
  814. data/resources/unicode_data/properties/Jamo_Short_Name/SS/value.dump +6 -0
  815. data/resources/unicode_data/properties/Jamo_Short_Name/T/value.dump +4 -0
  816. data/resources/unicode_data/properties/Jamo_Short_Name/U/value.dump +3 -0
  817. data/resources/unicode_data/properties/Jamo_Short_Name/WA/value.dump +3 -0
  818. data/resources/unicode_data/properties/Jamo_Short_Name/WAE/value.dump +3 -0
  819. data/resources/unicode_data/properties/Jamo_Short_Name/WE/value.dump +3 -0
  820. data/resources/unicode_data/properties/Jamo_Short_Name/WEO/value.dump +3 -0
  821. data/resources/unicode_data/properties/Jamo_Short_Name/WI/value.dump +3 -0
  822. data/resources/unicode_data/properties/Jamo_Short_Name/YA/value.dump +3 -0
  823. data/resources/unicode_data/properties/Jamo_Short_Name/YAE/value.dump +3 -0
  824. data/resources/unicode_data/properties/Jamo_Short_Name/YE/value.dump +3 -0
  825. data/resources/unicode_data/properties/Jamo_Short_Name/YEO/value.dump +3 -0
  826. data/resources/unicode_data/properties/Jamo_Short_Name/YI/value.dump +3 -0
  827. data/resources/unicode_data/properties/Jamo_Short_Name/YO/value.dump +3 -0
  828. data/resources/unicode_data/properties/Jamo_Short_Name/YU/value.dump +3 -0
  829. data/resources/unicode_data/properties/Jamo_Short_Name/value.dump +3 -0
  830. data/resources/unicode_data/properties/Join_Control/value.dump +3 -0
  831. data/resources/unicode_data/properties/Line_Break/AI/value.dump +0 -0
  832. data/resources/unicode_data/properties/Line_Break/AL/value.dump +0 -0
  833. data/resources/unicode_data/properties/Line_Break/B2/value.dump +4 -0
  834. data/resources/unicode_data/properties/Line_Break/BA/value.dump +0 -0
  835. data/resources/unicode_data/properties/Line_Break/BB/value.dump +15 -0
  836. data/resources/unicode_data/properties/Line_Break/BK/value.dump +4 -0
  837. data/resources/unicode_data/properties/Line_Break/CB/value.dump +3 -0
  838. data/resources/unicode_data/properties/Line_Break/CJ/value.dump +27 -0
  839. data/resources/unicode_data/properties/Line_Break/CL/value.dump +81 -0
  840. data/resources/unicode_data/properties/Line_Break/CM/value.dump +0 -0
  841. data/resources/unicode_data/properties/Line_Break/CP/value.dump +4 -0
  842. data/resources/unicode_data/properties/Line_Break/CR/value.dump +3 -0
  843. data/resources/unicode_data/properties/Line_Break/EX/value.dump +24 -0
  844. data/resources/unicode_data/properties/Line_Break/GL/value.dump +13 -0
  845. data/resources/unicode_data/properties/Line_Break/H2/value.dump +0 -0
  846. data/resources/unicode_data/properties/Line_Break/H3/value.dump +401 -0
  847. data/resources/unicode_data/properties/Line_Break/HL/value.dump +12 -0
  848. data/resources/unicode_data/properties/Line_Break/HY/value.dump +3 -0
  849. data/resources/unicode_data/properties/Line_Break/ID/value.dump +0 -0
  850. data/resources/unicode_data/properties/Line_Break/IN/value.dump +4 -0
  851. data/resources/unicode_data/properties/Line_Break/IS/value.dump +12 -0
  852. data/resources/unicode_data/properties/Line_Break/JL/value.dump +0 -0
  853. data/resources/unicode_data/properties/Line_Break/JT/value.dump +4 -0
  854. data/resources/unicode_data/properties/Line_Break/JV/value.dump +4 -0
  855. data/resources/unicode_data/properties/Line_Break/LF/value.dump +3 -0
  856. data/resources/unicode_data/properties/Line_Break/NL/value.dump +3 -0
  857. data/resources/unicode_data/properties/Line_Break/NS/value.dump +17 -0
  858. data/resources/unicode_data/properties/Line_Break/NU/value.dump +0 -0
  859. data/resources/unicode_data/properties/Line_Break/OP/value.dump +83 -0
  860. data/resources/unicode_data/properties/Line_Break/PO/value.dump +20 -0
  861. data/resources/unicode_data/properties/Line_Break/PR/value.dump +24 -0
  862. data/resources/unicode_data/properties/Line_Break/QU/value.dump +0 -0
  863. data/resources/unicode_data/properties/Line_Break/RI/value.dump +3 -0
  864. data/resources/unicode_data/properties/Line_Break/SA/value.dump +0 -0
  865. data/resources/unicode_data/properties/Line_Break/SG/value.dump +0 -0
  866. data/resources/unicode_data/properties/Line_Break/SP/value.dump +3 -0
  867. data/resources/unicode_data/properties/Line_Break/SY/value.dump +3 -0
  868. data/resources/unicode_data/properties/Line_Break/WJ/value.dump +4 -0
  869. data/resources/unicode_data/properties/Line_Break/XX/value.dump +0 -0
  870. data/resources/unicode_data/properties/Line_Break/ZW/value.dump +3 -0
  871. data/resources/unicode_data/properties/Logical_Order_Exception/value.dump +8 -0
  872. data/resources/unicode_data/properties/Lowercase/value.dump +0 -0
  873. data/resources/unicode_data/properties/Math/value.dump +0 -0
  874. data/resources/unicode_data/properties/Noncharacter_Code_Point/value.dump +22 -0
  875. data/resources/unicode_data/properties/Numeric_Type/0/value.dump +0 -0
  876. data/resources/unicode_data/properties/Numeric_Type/1/value.dump +69 -0
  877. data/resources/unicode_data/properties/Numeric_Type/2/value.dump +68 -0
  878. data/resources/unicode_data/properties/Numeric_Type/3/value.dump +68 -0
  879. data/resources/unicode_data/properties/Numeric_Type/4/value.dump +68 -0
  880. data/resources/unicode_data/properties/Numeric_Type/5/value.dump +65 -0
  881. data/resources/unicode_data/properties/Numeric_Type/6/value.dump +65 -0
  882. data/resources/unicode_data/properties/Numeric_Type/7/value.dump +65 -0
  883. data/resources/unicode_data/properties/Numeric_Type/8/value.dump +65 -0
  884. data/resources/unicode_data/properties/Numeric_Type/9/value.dump +67 -0
  885. data/resources/unicode_data/properties/Numeric_Type/value.dump +0 -0
  886. data/resources/unicode_data/properties/Other_Alphabetic/value.dump +0 -0
  887. data/resources/unicode_data/properties/Other_Default_Ignorable_Code_Point/value.dump +0 -0
  888. data/resources/unicode_data/properties/Other_Grapheme_Extend/value.dump +19 -0
  889. data/resources/unicode_data/properties/Other_ID_Continue/value.dump +6 -0
  890. data/resources/unicode_data/properties/Other_ID_Start/value.dump +5 -0
  891. data/resources/unicode_data/properties/Other_Lowercase/value.dump +20 -0
  892. data/resources/unicode_data/properties/Other_Math/value.dump +0 -0
  893. data/resources/unicode_data/properties/Other_Uppercase/value.dump +4 -0
  894. data/resources/unicode_data/properties/Pattern_Syntax/value.dump +0 -0
  895. data/resources/unicode_data/properties/Pattern_White_Space/value.dump +8 -0
  896. data/resources/unicode_data/properties/Quotation_Mark/value.dump +14 -0
  897. data/resources/unicode_data/properties/Radical/value.dump +0 -0
  898. data/resources/unicode_data/properties/STerm/value.dump +0 -0
  899. data/resources/unicode_data/properties/Script/Arabic/value.dump +0 -0
  900. data/resources/unicode_data/properties/Script/Armenian/value.dump +8 -0
  901. data/resources/unicode_data/properties/Script/Avestan/value.dump +0 -0
  902. data/resources/unicode_data/properties/Script/Balinese/value.dump +0 -0
  903. data/resources/unicode_data/properties/Script/Bamum/value.dump +0 -0
  904. data/resources/unicode_data/properties/Script/Batak/value.dump +4 -0
  905. data/resources/unicode_data/properties/Script/Bengali/value.dump +16 -0
  906. data/resources/unicode_data/properties/Script/Bopomofo/value.dump +5 -0
  907. data/resources/unicode_data/properties/Script/Brahmi/value.dump +0 -0
  908. data/resources/unicode_data/properties/Script/Braille/value.dump +0 -0
  909. data/resources/unicode_data/properties/Script/Buginese/value.dump +0 -0
  910. data/resources/unicode_data/properties/Script/Buhid/value.dump +3 -0
  911. data/resources/unicode_data/properties/Script/Canadian_Aboriginal/value.dump +0 -0
  912. data/resources/unicode_data/properties/Script/Carian/value.dump +3 -0
  913. data/resources/unicode_data/properties/Script/Chakma/value.dump +0 -0
  914. data/resources/unicode_data/properties/Script/Cham/value.dump +0 -0
  915. data/resources/unicode_data/properties/Script/Cherokee/value.dump +3 -0
  916. data/resources/unicode_data/properties/Script/Common/value.dump +0 -0
  917. data/resources/unicode_data/properties/Script/Coptic/value.dump +5 -0
  918. data/resources/unicode_data/properties/Script/Cuneiform/value.dump +0 -0
  919. data/resources/unicode_data/properties/Script/Cypriot/value.dump +0 -0
  920. data/resources/unicode_data/properties/Script/Cyrillic/value.dump +0 -0
  921. data/resources/unicode_data/properties/Script/Deseret/value.dump +0 -0
  922. data/resources/unicode_data/properties/Script/Devanagari/value.dump +0 -0
  923. data/resources/unicode_data/properties/Script/Egyptian_Hieroglyphs/value.dump +0 -0
  924. data/resources/unicode_data/properties/Script/Ethiopic/value.dump +0 -0
  925. data/resources/unicode_data/properties/Script/Georgian/value.dump +0 -0
  926. data/resources/unicode_data/properties/Script/Glagolitic/value.dump +0 -0
  927. data/resources/unicode_data/properties/Script/Gothic/value.dump +3 -0
  928. data/resources/unicode_data/properties/Script/Greek/value.dump +0 -0
  929. data/resources/unicode_data/properties/Script/Gujarati/value.dump +40 -0
  930. data/resources/unicode_data/properties/Script/Gurmukhi/value.dump +50 -0
  931. data/resources/unicode_data/properties/Script/Han/value.dump +0 -0
  932. data/resources/unicode_data/properties/Script/Hangul/value.dump +0 -0
  933. data/resources/unicode_data/properties/Script/Hanunoo/value.dump +3 -0
  934. data/resources/unicode_data/properties/Script/Hebrew/value.dump +11 -0
  935. data/resources/unicode_data/properties/Script/Hiragana/value.dump +0 -0
  936. data/resources/unicode_data/properties/Script/Imperial_Aramaic/value.dump +4 -0
  937. data/resources/unicode_data/properties/Script/Inherited/value.dump +0 -0
  938. data/resources/unicode_data/properties/Script/Inscriptional_Pahlavi/value.dump +4 -0
  939. data/resources/unicode_data/properties/Script/Inscriptional_Parthian/value.dump +4 -0
  940. data/resources/unicode_data/properties/Script/Javanese/value.dump +5 -0
  941. data/resources/unicode_data/properties/Script/Kaithi/value.dump +3 -0
  942. data/resources/unicode_data/properties/Script/Kannada/value.dump +16 -0
  943. data/resources/unicode_data/properties/Script/Katakana/value.dump +0 -0
  944. data/resources/unicode_data/properties/Script/Kayah_Li/value.dump +0 -0
  945. data/resources/unicode_data/properties/Script/Kharoshthi/value.dump +0 -0
  946. data/resources/unicode_data/properties/Script/Khmer/value.dump +6 -0
  947. data/resources/unicode_data/properties/Script/Lao/value.dump +20 -0
  948. data/resources/unicode_data/properties/Script/Latin/value.dump +0 -0
  949. data/resources/unicode_data/properties/Script/Lepcha/value.dump +0 -0
  950. data/resources/unicode_data/properties/Script/Limbu/value.dump +0 -0
  951. data/resources/unicode_data/properties/Script/Linear_B/value.dump +0 -0
  952. data/resources/unicode_data/properties/Script/Lisu/value.dump +3 -0
  953. data/resources/unicode_data/properties/Script/Lycian/value.dump +3 -0
  954. data/resources/unicode_data/properties/Script/Lydian/value.dump +4 -0
  955. data/resources/unicode_data/properties/Script/Malayalam/value.dump +13 -0
  956. data/resources/unicode_data/properties/Script/Mandaic/value.dump +4 -0
  957. data/resources/unicode_data/properties/Script/Meetei_Mayek/value.dump +5 -0
  958. data/resources/unicode_data/properties/Script/Meroitic_Cursive/value.dump +4 -0
  959. data/resources/unicode_data/properties/Script/Meroitic_Hieroglyphs/value.dump +3 -0
  960. data/resources/unicode_data/properties/Script/Miao/value.dump +0 -0
  961. data/resources/unicode_data/properties/Script/Mongolian/value.dump +0 -0
  962. data/resources/unicode_data/properties/Script/Myanmar/value.dump +0 -0
  963. data/resources/unicode_data/properties/Script/New_Tai_Lue/value.dump +6 -0
  964. data/resources/unicode_data/properties/Script/Nko/value.dump +3 -0
  965. data/resources/unicode_data/properties/Script/Ogham/value.dump +3 -0
  966. data/resources/unicode_data/properties/Script/Ol_Chiki/value.dump +3 -0
  967. data/resources/unicode_data/properties/Script/Old_Italic/value.dump +0 -0
  968. data/resources/unicode_data/properties/Script/Old_Persian/value.dump +4 -0
  969. data/resources/unicode_data/properties/Script/Old_South_Arabian/value.dump +5 -0
  970. data/resources/unicode_data/properties/Script/Old_Turkic/value.dump +0 -0
  971. data/resources/unicode_data/properties/Script/Oriya/value.dump +16 -0
  972. data/resources/unicode_data/properties/Script/Osmanya/value.dump +4 -0
  973. data/resources/unicode_data/properties/Script/Phags_Pa/value.dump +3 -0
  974. data/resources/unicode_data/properties/Script/Phoenician/value.dump +0 -0
  975. data/resources/unicode_data/properties/Script/Rejang/value.dump +4 -0
  976. data/resources/unicode_data/properties/Script/Runic/value.dump +4 -0
  977. data/resources/unicode_data/properties/Script/Samaritan/value.dump +0 -0
  978. data/resources/unicode_data/properties/Script/Saurashtra/value.dump +4 -0
  979. data/resources/unicode_data/properties/Script/Sharada/value.dump +4 -0
  980. data/resources/unicode_data/properties/Script/Shavian/value.dump +3 -0
  981. data/resources/unicode_data/properties/Script/Sinhala/value.dump +13 -0
  982. data/resources/unicode_data/properties/Script/Sora_Sompeng/value.dump +4 -0
  983. data/resources/unicode_data/properties/Script/Sundanese/value.dump +4 -0
  984. data/resources/unicode_data/properties/Script/Syloti_Nagri/value.dump +0 -0
  985. data/resources/unicode_data/properties/Script/Syriac/value.dump +0 -0
  986. data/resources/unicode_data/properties/Script/Tagalog/value.dump +0 -0
  987. data/resources/unicode_data/properties/Script/Tagbanwa/value.dump +5 -0
  988. data/resources/unicode_data/properties/Script/Tai_Le/value.dump +4 -0
  989. data/resources/unicode_data/properties/Script/Tai_Tham/value.dump +8 -0
  990. data/resources/unicode_data/properties/Script/Tai_Viet/value.dump +4 -0
  991. data/resources/unicode_data/properties/Script/Takri/value.dump +4 -0
  992. data/resources/unicode_data/properties/Script/Tamil/value.dump +18 -0
  993. data/resources/unicode_data/properties/Script/Telugu/value.dump +16 -0
  994. data/resources/unicode_data/properties/Script/Thaana/value.dump +3 -0
  995. data/resources/unicode_data/properties/Script/Thai/value.dump +4 -0
  996. data/resources/unicode_data/properties/Script/Tibetan/value.dump +0 -0
  997. data/resources/unicode_data/properties/Script/Tifinagh/value.dump +5 -0
  998. data/resources/unicode_data/properties/Script/Ugaritic/value.dump +4 -0
  999. data/resources/unicode_data/properties/Script/Vai/value.dump +0 -0
  1000. data/resources/unicode_data/properties/Script/Yi/value.dump +0 -0
  1001. data/resources/unicode_data/properties/Script_Extensions/Arab/value.dump +11 -0
  1002. data/resources/unicode_data/properties/Script_Extensions/Armn/value.dump +3 -0
  1003. data/resources/unicode_data/properties/Script_Extensions/Beng/value.dump +3 -0
  1004. data/resources/unicode_data/properties/Script_Extensions/Bopo/value.dump +19 -0
  1005. data/resources/unicode_data/properties/Script_Extensions/Bugi/value.dump +3 -0
  1006. data/resources/unicode_data/properties/Script_Extensions/Buhd/value.dump +3 -0
  1007. data/resources/unicode_data/properties/Script_Extensions/Cakm/value.dump +4 -0
  1008. data/resources/unicode_data/properties/Script_Extensions/Cprt/value.dump +0 -0
  1009. data/resources/unicode_data/properties/Script_Extensions/Cyrl/value.dump +3 -0
  1010. data/resources/unicode_data/properties/Script_Extensions/Deva/value.dump +4 -0
  1011. data/resources/unicode_data/properties/Script_Extensions/Geor/value.dump +3 -0
  1012. data/resources/unicode_data/properties/Script_Extensions/Grek/value.dump +5 -0
  1013. data/resources/unicode_data/properties/Script_Extensions/Gujr/value.dump +3 -0
  1014. data/resources/unicode_data/properties/Script_Extensions/Guru/value.dump +4 -0
  1015. data/resources/unicode_data/properties/Script_Extensions/Hang/value.dump +18 -0
  1016. data/resources/unicode_data/properties/Script_Extensions/Hani/value.dump +21 -0
  1017. data/resources/unicode_data/properties/Script_Extensions/Hano/value.dump +3 -0
  1018. data/resources/unicode_data/properties/Script_Extensions/Hira/value.dump +24 -0
  1019. data/resources/unicode_data/properties/Script_Extensions/Java/value.dump +3 -0
  1020. data/resources/unicode_data/properties/Script_Extensions/Kana/value.dump +24 -0
  1021. data/resources/unicode_data/properties/Script_Extensions/Kthi/value.dump +3 -0
  1022. data/resources/unicode_data/properties/Script_Extensions/Latn/value.dump +5 -0
  1023. data/resources/unicode_data/properties/Script_Extensions/Linb/value.dump +0 -0
  1024. data/resources/unicode_data/properties/Script_Extensions/Mand/value.dump +3 -0
  1025. data/resources/unicode_data/properties/Script_Extensions/Mong/value.dump +4 -0
  1026. data/resources/unicode_data/properties/Script_Extensions/Mymr/value.dump +3 -0
  1027. data/resources/unicode_data/properties/Script_Extensions/Orya/value.dump +3 -0
  1028. data/resources/unicode_data/properties/Script_Extensions/Phag/value.dump +4 -0
  1029. data/resources/unicode_data/properties/Script_Extensions/Sylo/value.dump +3 -0
  1030. data/resources/unicode_data/properties/Script_Extensions/Syrc/value.dump +8 -0
  1031. data/resources/unicode_data/properties/Script_Extensions/Tagb/value.dump +3 -0
  1032. data/resources/unicode_data/properties/Script_Extensions/Takr/value.dump +3 -0
  1033. data/resources/unicode_data/properties/Script_Extensions/Tale/value.dump +3 -0
  1034. data/resources/unicode_data/properties/Script_Extensions/Tglg/value.dump +3 -0
  1035. data/resources/unicode_data/properties/Script_Extensions/Thaa/value.dump +8 -0
  1036. data/resources/unicode_data/properties/Script_Extensions/Yiii/value.dump +8 -0
  1037. data/resources/unicode_data/properties/Sentence_Break/ATerm/value.dump +6 -0
  1038. data/resources/unicode_data/properties/Sentence_Break/CR/value.dump +3 -0
  1039. data/resources/unicode_data/properties/Sentence_Break/Close/value.dump +0 -0
  1040. data/resources/unicode_data/properties/Sentence_Break/Extend/value.dump +0 -0
  1041. data/resources/unicode_data/properties/Sentence_Break/Format/value.dump +0 -0
  1042. data/resources/unicode_data/properties/Sentence_Break/LF/value.dump +3 -0
  1043. data/resources/unicode_data/properties/Sentence_Break/Lower/value.dump +0 -0
  1044. data/resources/unicode_data/properties/Sentence_Break/Numeric/value.dump +0 -0
  1045. data/resources/unicode_data/properties/Sentence_Break/OLetter/value.dump +0 -0
  1046. data/resources/unicode_data/properties/Sentence_Break/SContinue/value.dump +21 -0
  1047. data/resources/unicode_data/properties/Sentence_Break/STerm/value.dump +0 -0
  1048. data/resources/unicode_data/properties/Sentence_Break/Sep/value.dump +4 -0
  1049. data/resources/unicode_data/properties/Sentence_Break/Sp/value.dump +0 -0
  1050. data/resources/unicode_data/properties/Sentence_Break/Upper/value.dump +0 -0
  1051. data/resources/unicode_data/properties/Soft_Dotted/value.dump +33 -0
  1052. data/resources/unicode_data/properties/Terminal_Punctuation/value.dump +0 -0
  1053. data/resources/unicode_data/properties/Unified_Ideograph/value.dump +0 -0
  1054. data/resources/unicode_data/properties/Uppercase/value.dump +0 -0
  1055. data/resources/unicode_data/properties/Variation_Selector/value.dump +0 -0
  1056. data/resources/unicode_data/properties/White_Space/value.dump +0 -0
  1057. data/resources/unicode_data/properties/Word_Break/ALetter/value.dump +0 -0
  1058. data/resources/unicode_data/properties/Word_Break/CR/value.dump +3 -0
  1059. data/resources/unicode_data/properties/Word_Break/Double_Quote/value.dump +3 -0
  1060. data/resources/unicode_data/properties/Word_Break/Extend/value.dump +0 -0
  1061. data/resources/unicode_data/properties/Word_Break/ExtendNumLet/value.dump +8 -0
  1062. data/resources/unicode_data/properties/Word_Break/Format/value.dump +0 -0
  1063. data/resources/unicode_data/properties/Word_Break/Hebrew_Letter/value.dump +12 -0
  1064. data/resources/unicode_data/properties/Word_Break/Katakana/value.dump +0 -0
  1065. data/resources/unicode_data/properties/Word_Break/LF/value.dump +3 -0
  1066. data/resources/unicode_data/properties/Word_Break/MidLetter/value.dump +10 -0
  1067. data/resources/unicode_data/properties/Word_Break/MidNum/value.dump +16 -0
  1068. data/resources/unicode_data/properties/Word_Break/MidNumLet/value.dump +9 -0
  1069. data/resources/unicode_data/properties/Word_Break/Newline/value.dump +5 -0
  1070. data/resources/unicode_data/properties/Word_Break/Numeric/value.dump +0 -0
  1071. data/resources/unicode_data/properties/Word_Break/Regional_Indicator/value.dump +3 -0
  1072. data/resources/unicode_data/properties/Word_Break/Single_Quote/value.dump +3 -0
  1073. data/resources/unicode_data/properties/XID_Continue/value.dump +0 -0
  1074. data/resources/unicode_data/properties/XID_Start/value.dump +0 -0
  1075. data/resources/unicode_data/property_aliases.yml +350 -0
  1076. data/resources/unicode_data/property_value_aliases.yml +1829 -0
  1077. data/spec/bidi/bidi_spec.rb +2 -2
  1078. data/spec/collation/collation_spec.rb +1 -1
  1079. data/spec/collation/collator_spec.rb +6 -6
  1080. data/spec/collation/sort_key_builder_spec.rb +11 -11
  1081. data/spec/collation/tailoring_spec.rb +1 -1
  1082. data/spec/collation/trie_dumps_spec.rb +1 -1
  1083. data/spec/data_readers/date_time_data_reader_spec.rb +1 -1
  1084. data/spec/data_readers/number_data_reader_spec.rb +19 -6
  1085. data/spec/formatters/calendars/datetime_formatter_spec.rb +1 -1
  1086. data/spec/formatters/numbers/abbreviated/abbreviated_number_formatter_spec.rb +1 -1
  1087. data/spec/formatters/numbers/abbreviated/long_decimal_formatter_spec.rb +5 -5
  1088. data/spec/formatters/numbers/abbreviated/short_decimal_formatter_spec.rb +4 -4
  1089. data/spec/formatters/numbers/currency_formatter_spec.rb +10 -10
  1090. data/spec/formatters/numbers/decimal_formatter_spec.rb +2 -2
  1091. data/spec/formatters/numbers/helpers/fraction_spec.rb +4 -4
  1092. data/spec/formatters/numbers/helpers/integer_spec.rb +21 -16
  1093. data/spec/formatters/numbers/number_formatter_spec.rb +9 -9
  1094. data/spec/formatters/numbers/percent_formatter_spec.rb +2 -2
  1095. data/spec/formatters/numbers/rbnf/rbnf_spec.rb +5 -5
  1096. data/spec/formatters/plurals/plural_formatter_spec.rb +25 -25
  1097. data/spec/formatters/plurals/rules_spec.rb +4 -4
  1098. data/spec/localized/localized_date_spec.rb +25 -25
  1099. data/spec/localized/localized_datetime_spec.rb +7 -7
  1100. data/spec/localized/localized_hash_spec.rb +1 -1
  1101. data/spec/localized/localized_number_spec.rb +23 -23
  1102. data/spec/localized/localized_object_spec.rb +2 -2
  1103. data/spec/localized/localized_string_spec.rb +43 -16
  1104. data/spec/localized/localized_symbol_spec.rb +31 -4
  1105. data/spec/localized/localized_time_spec.rb +3 -3
  1106. data/spec/localized/localized_timespan_spec.rb +42 -42
  1107. data/spec/normalization_spec.rb +4 -4
  1108. data/spec/parsers/number_parser_spec.rb +10 -10
  1109. data/spec/parsers/parser_spec.rb +19 -3
  1110. data/spec/parsers/symbol_table_spec.rb +1 -1
  1111. data/spec/parsers/unicode_regex/character_class_spec.rb +12 -0
  1112. data/spec/parsers/unicode_regex/character_range_spec.rb +24 -5
  1113. data/spec/parsers/unicode_regex/character_set_spec.rb +9 -1
  1114. data/spec/parsers/unicode_regex_parser_spec.rb +1 -1
  1115. data/spec/resources/loader_spec.rb +6 -6
  1116. data/spec/{shared → segmentation}/break_iterator_spec.rb +45 -16
  1117. data/spec/segmentation/parser_spec.rb +107 -0
  1118. data/spec/segmentation/rule_set_spec.rb +102 -0
  1119. data/spec/shared/calendar_spec.rb +30 -30
  1120. data/spec/shared/caser_spec.rb +79 -0
  1121. data/spec/shared/code_point_spec.rb +52 -151
  1122. data/spec/shared/currencies_spec.rb +8 -8
  1123. data/spec/shared/language_codes_spec.rb +13 -13
  1124. data/spec/shared/likely_subtags_spec.rb +58 -0
  1125. data/spec/shared/locale_spec.rb +211 -0
  1126. data/spec/shared/numbers_spec.rb +4 -4
  1127. data/spec/shared/postal_codes_spec.rb +24 -4
  1128. data/spec/shared/properties_database_spec.rb +157 -0
  1129. data/spec/shared/property_name_aliases_spec.rb +56 -0
  1130. data/spec/shared/property_normalizer_spec.rb +64 -0
  1131. data/spec/shared/property_set_spec.rb +218 -0
  1132. data/spec/shared/property_value_aliases_spec.rb +58 -0
  1133. data/spec/shared/territories_spec.rb +1 -1
  1134. data/spec/shared/unicode_regex_spec.rb +35 -2
  1135. data/spec/spec_helper.rb +3 -3
  1136. data/spec/tokenizers/calendars/date_tokenizer_spec.rb +23 -23
  1137. data/spec/tokenizers/calendars/datetime_tokenizer_spec.rb +18 -18
  1138. data/spec/tokenizers/calendars/time_tokenizer_spec.rb +19 -19
  1139. data/spec/tokenizers/composite_token_spec.rb +4 -4
  1140. data/spec/tokenizers/numbers/number_tokenizer_spec.rb +16 -16
  1141. data/spec/tokenizers/token_spec.rb +2 -2
  1142. data/spec/tokenizers/unicode_regex/unicode_regex_tokenizer_spec.rb +94 -94
  1143. data/spec/utils/file_system_trie_spec.rb +98 -0
  1144. data/spec/utils/range_set_spec.rb +53 -1
  1145. data/spec/utils/script_detector_spec.rb +58 -0
  1146. data/spec/utils/yaml/yaml_spec.rb +22 -22
  1147. data/spec/utils_spec.rb +21 -21
  1148. metadata +832 -28
  1149. data/lib/twitter_cldr/parsers/segmentation_parser.rb +0 -137
  1150. data/lib/twitter_cldr/resources/canonical_compositions_updater.rb +0 -51
  1151. data/lib/twitter_cldr/resources/composition_exclusions_importer.rb +0 -62
  1152. data/lib/twitter_cldr/resources/normalization_quick_check_importer.rb +0 -73
  1153. data/lib/twitter_cldr/resources/unicode_properties_importer.rb +0 -79
  1154. data/lib/twitter_cldr/shared/break_iterator.rb +0 -213
  1155. data/lib/twitter_cldr/tokenizers/segmentation/segmentation_tokenizer.rb +0 -39
  1156. data/resources/shared/segments/tailorings/en.yml +0 -8
  1157. data/resources/unicode_data/canonical_compositions.yml +0 -4925
  1158. data/resources/unicode_data/composition_exclusions.yml +0 -297
  1159. data/resources/unicode_data/hangul_blocks.yml +0 -21
  1160. data/resources/unicode_data/indices/bidi_class.yml +0 -4572
  1161. data/resources/unicode_data/indices/bidi_mirrored.yml +0 -3087
  1162. data/resources/unicode_data/indices/category.yml +0 -10918
  1163. data/resources/unicode_data/indices/keys.yml +0 -101
  1164. data/resources/unicode_data/nfc_quick_check.yml +0 -293
  1165. data/resources/unicode_data/nfd_quick_check.yml +0 -909
  1166. data/resources/unicode_data/nfkc_quick_check.yml +0 -989
  1167. data/resources/unicode_data/nfkd_quick_check.yml +0 -1537
  1168. data/resources/unicode_data/properties/line_break.yml +0 -9269
  1169. data/resources/unicode_data/properties/sentence_break.yml +0 -8067
  1170. data/resources/unicode_data/properties/word_break.yml +0 -3001
  1171. data/spec/parsers/segmentation_parser_spec.rb +0 -100
  1172. data/spec/tokenizers/segmentation/segmentation_tokenizer_spec.rb +0 -40
@@ -0,0 +1,3409 @@
1
+ ---
2
+ 124928:
3
+ - 124928
4
+ - MENDE KIKAKUI SYLLABLE M001 KI
5
+ - Lo
6
+ - '0'
7
+ - R
8
+ - ''
9
+ - ''
10
+ - ''
11
+ - ''
12
+ - N
13
+ - ''
14
+ - ''
15
+ - ''
16
+ - ''
17
+ - ''
18
+ 124929:
19
+ - 124929
20
+ - MENDE KIKAKUI SYLLABLE M002 KA
21
+ - Lo
22
+ - '0'
23
+ - R
24
+ - ''
25
+ - ''
26
+ - ''
27
+ - ''
28
+ - N
29
+ - ''
30
+ - ''
31
+ - ''
32
+ - ''
33
+ - ''
34
+ 124930:
35
+ - 124930
36
+ - MENDE KIKAKUI SYLLABLE M003 KU
37
+ - Lo
38
+ - '0'
39
+ - R
40
+ - ''
41
+ - ''
42
+ - ''
43
+ - ''
44
+ - N
45
+ - ''
46
+ - ''
47
+ - ''
48
+ - ''
49
+ - ''
50
+ 124931:
51
+ - 124931
52
+ - MENDE KIKAKUI SYLLABLE M065 KEE
53
+ - Lo
54
+ - '0'
55
+ - R
56
+ - ''
57
+ - ''
58
+ - ''
59
+ - ''
60
+ - N
61
+ - ''
62
+ - ''
63
+ - ''
64
+ - ''
65
+ - ''
66
+ 124932:
67
+ - 124932
68
+ - MENDE KIKAKUI SYLLABLE M095 KE
69
+ - Lo
70
+ - '0'
71
+ - R
72
+ - ''
73
+ - ''
74
+ - ''
75
+ - ''
76
+ - N
77
+ - ''
78
+ - ''
79
+ - ''
80
+ - ''
81
+ - ''
82
+ 124933:
83
+ - 124933
84
+ - MENDE KIKAKUI SYLLABLE M076 KOO
85
+ - Lo
86
+ - '0'
87
+ - R
88
+ - ''
89
+ - ''
90
+ - ''
91
+ - ''
92
+ - N
93
+ - ''
94
+ - ''
95
+ - ''
96
+ - ''
97
+ - ''
98
+ 124934:
99
+ - 124934
100
+ - MENDE KIKAKUI SYLLABLE M048 KO
101
+ - Lo
102
+ - '0'
103
+ - R
104
+ - ''
105
+ - ''
106
+ - ''
107
+ - ''
108
+ - N
109
+ - ''
110
+ - ''
111
+ - ''
112
+ - ''
113
+ - ''
114
+ 124935:
115
+ - 124935
116
+ - MENDE KIKAKUI SYLLABLE M179 KUA
117
+ - Lo
118
+ - '0'
119
+ - R
120
+ - ''
121
+ - ''
122
+ - ''
123
+ - ''
124
+ - N
125
+ - ''
126
+ - ''
127
+ - ''
128
+ - ''
129
+ - ''
130
+ 124936:
131
+ - 124936
132
+ - MENDE KIKAKUI SYLLABLE M004 WI
133
+ - Lo
134
+ - '0'
135
+ - R
136
+ - ''
137
+ - ''
138
+ - ''
139
+ - ''
140
+ - N
141
+ - ''
142
+ - ''
143
+ - ''
144
+ - ''
145
+ - ''
146
+ 124937:
147
+ - 124937
148
+ - MENDE KIKAKUI SYLLABLE M005 WA
149
+ - Lo
150
+ - '0'
151
+ - R
152
+ - ''
153
+ - ''
154
+ - ''
155
+ - ''
156
+ - N
157
+ - ''
158
+ - ''
159
+ - ''
160
+ - ''
161
+ - ''
162
+ 124938:
163
+ - 124938
164
+ - MENDE KIKAKUI SYLLABLE M006 WU
165
+ - Lo
166
+ - '0'
167
+ - R
168
+ - ''
169
+ - ''
170
+ - ''
171
+ - ''
172
+ - N
173
+ - ''
174
+ - ''
175
+ - ''
176
+ - ''
177
+ - ''
178
+ 124939:
179
+ - 124939
180
+ - MENDE KIKAKUI SYLLABLE M126 WEE
181
+ - Lo
182
+ - '0'
183
+ - R
184
+ - ''
185
+ - ''
186
+ - ''
187
+ - ''
188
+ - N
189
+ - ''
190
+ - ''
191
+ - ''
192
+ - ''
193
+ - ''
194
+ 124940:
195
+ - 124940
196
+ - MENDE KIKAKUI SYLLABLE M118 WE
197
+ - Lo
198
+ - '0'
199
+ - R
200
+ - ''
201
+ - ''
202
+ - ''
203
+ - ''
204
+ - N
205
+ - ''
206
+ - ''
207
+ - ''
208
+ - ''
209
+ - ''
210
+ 124941:
211
+ - 124941
212
+ - MENDE KIKAKUI SYLLABLE M114 WOO
213
+ - Lo
214
+ - '0'
215
+ - R
216
+ - ''
217
+ - ''
218
+ - ''
219
+ - ''
220
+ - N
221
+ - ''
222
+ - ''
223
+ - ''
224
+ - ''
225
+ - ''
226
+ 124942:
227
+ - 124942
228
+ - MENDE KIKAKUI SYLLABLE M045 WO
229
+ - Lo
230
+ - '0'
231
+ - R
232
+ - ''
233
+ - ''
234
+ - ''
235
+ - ''
236
+ - N
237
+ - ''
238
+ - ''
239
+ - ''
240
+ - ''
241
+ - ''
242
+ 124943:
243
+ - 124943
244
+ - MENDE KIKAKUI SYLLABLE M194 WUI
245
+ - Lo
246
+ - '0'
247
+ - R
248
+ - ''
249
+ - ''
250
+ - ''
251
+ - ''
252
+ - N
253
+ - ''
254
+ - ''
255
+ - ''
256
+ - ''
257
+ - ''
258
+ 124944:
259
+ - 124944
260
+ - MENDE KIKAKUI SYLLABLE M143 WEI
261
+ - Lo
262
+ - '0'
263
+ - R
264
+ - ''
265
+ - ''
266
+ - ''
267
+ - ''
268
+ - N
269
+ - ''
270
+ - ''
271
+ - ''
272
+ - ''
273
+ - ''
274
+ 124945:
275
+ - 124945
276
+ - MENDE KIKAKUI SYLLABLE M061 WVI
277
+ - Lo
278
+ - '0'
279
+ - R
280
+ - ''
281
+ - ''
282
+ - ''
283
+ - ''
284
+ - N
285
+ - ''
286
+ - ''
287
+ - ''
288
+ - ''
289
+ - ''
290
+ 124946:
291
+ - 124946
292
+ - MENDE KIKAKUI SYLLABLE M049 WVA
293
+ - Lo
294
+ - '0'
295
+ - R
296
+ - ''
297
+ - ''
298
+ - ''
299
+ - ''
300
+ - N
301
+ - ''
302
+ - ''
303
+ - ''
304
+ - ''
305
+ - ''
306
+ 124947:
307
+ - 124947
308
+ - MENDE KIKAKUI SYLLABLE M139 WVE
309
+ - Lo
310
+ - '0'
311
+ - R
312
+ - ''
313
+ - ''
314
+ - ''
315
+ - ''
316
+ - N
317
+ - ''
318
+ - ''
319
+ - ''
320
+ - ''
321
+ - ''
322
+ 124948:
323
+ - 124948
324
+ - MENDE KIKAKUI SYLLABLE M007 MIN
325
+ - Lo
326
+ - '0'
327
+ - R
328
+ - ''
329
+ - ''
330
+ - ''
331
+ - ''
332
+ - N
333
+ - ''
334
+ - ''
335
+ - ''
336
+ - ''
337
+ - ''
338
+ 124949:
339
+ - 124949
340
+ - MENDE KIKAKUI SYLLABLE M008 MAN
341
+ - Lo
342
+ - '0'
343
+ - R
344
+ - ''
345
+ - ''
346
+ - ''
347
+ - ''
348
+ - N
349
+ - ''
350
+ - ''
351
+ - ''
352
+ - ''
353
+ - ''
354
+ 124950:
355
+ - 124950
356
+ - MENDE KIKAKUI SYLLABLE M009 MUN
357
+ - Lo
358
+ - '0'
359
+ - R
360
+ - ''
361
+ - ''
362
+ - ''
363
+ - ''
364
+ - N
365
+ - ''
366
+ - ''
367
+ - ''
368
+ - ''
369
+ - ''
370
+ 124951:
371
+ - 124951
372
+ - MENDE KIKAKUI SYLLABLE M059 MEN
373
+ - Lo
374
+ - '0'
375
+ - R
376
+ - ''
377
+ - ''
378
+ - ''
379
+ - ''
380
+ - N
381
+ - ''
382
+ - ''
383
+ - ''
384
+ - ''
385
+ - ''
386
+ 124952:
387
+ - 124952
388
+ - MENDE KIKAKUI SYLLABLE M094 MON
389
+ - Lo
390
+ - '0'
391
+ - R
392
+ - ''
393
+ - ''
394
+ - ''
395
+ - ''
396
+ - N
397
+ - ''
398
+ - ''
399
+ - ''
400
+ - ''
401
+ - ''
402
+ 124953:
403
+ - 124953
404
+ - MENDE KIKAKUI SYLLABLE M154 MUAN
405
+ - Lo
406
+ - '0'
407
+ - R
408
+ - ''
409
+ - ''
410
+ - ''
411
+ - ''
412
+ - N
413
+ - ''
414
+ - ''
415
+ - ''
416
+ - ''
417
+ - ''
418
+ 124954:
419
+ - 124954
420
+ - MENDE KIKAKUI SYLLABLE M189 MUEN
421
+ - Lo
422
+ - '0'
423
+ - R
424
+ - ''
425
+ - ''
426
+ - ''
427
+ - ''
428
+ - N
429
+ - ''
430
+ - ''
431
+ - ''
432
+ - ''
433
+ - ''
434
+ 124955:
435
+ - 124955
436
+ - MENDE KIKAKUI SYLLABLE M010 BI
437
+ - Lo
438
+ - '0'
439
+ - R
440
+ - ''
441
+ - ''
442
+ - ''
443
+ - ''
444
+ - N
445
+ - ''
446
+ - ''
447
+ - ''
448
+ - ''
449
+ - ''
450
+ 124956:
451
+ - 124956
452
+ - MENDE KIKAKUI SYLLABLE M011 BA
453
+ - Lo
454
+ - '0'
455
+ - R
456
+ - ''
457
+ - ''
458
+ - ''
459
+ - ''
460
+ - N
461
+ - ''
462
+ - ''
463
+ - ''
464
+ - ''
465
+ - ''
466
+ 124957:
467
+ - 124957
468
+ - MENDE KIKAKUI SYLLABLE M012 BU
469
+ - Lo
470
+ - '0'
471
+ - R
472
+ - ''
473
+ - ''
474
+ - ''
475
+ - ''
476
+ - N
477
+ - ''
478
+ - ''
479
+ - ''
480
+ - ''
481
+ - ''
482
+ 124958:
483
+ - 124958
484
+ - MENDE KIKAKUI SYLLABLE M150 BEE
485
+ - Lo
486
+ - '0'
487
+ - R
488
+ - ''
489
+ - ''
490
+ - ''
491
+ - ''
492
+ - N
493
+ - ''
494
+ - ''
495
+ - ''
496
+ - ''
497
+ - ''
498
+ 124959:
499
+ - 124959
500
+ - MENDE KIKAKUI SYLLABLE M097 BE
501
+ - Lo
502
+ - '0'
503
+ - R
504
+ - ''
505
+ - ''
506
+ - ''
507
+ - ''
508
+ - N
509
+ - ''
510
+ - ''
511
+ - ''
512
+ - ''
513
+ - ''
514
+ 124960:
515
+ - 124960
516
+ - MENDE KIKAKUI SYLLABLE M103 BOO
517
+ - Lo
518
+ - '0'
519
+ - R
520
+ - ''
521
+ - ''
522
+ - ''
523
+ - ''
524
+ - N
525
+ - ''
526
+ - ''
527
+ - ''
528
+ - ''
529
+ - ''
530
+ 124961:
531
+ - 124961
532
+ - MENDE KIKAKUI SYLLABLE M138 BO
533
+ - Lo
534
+ - '0'
535
+ - R
536
+ - ''
537
+ - ''
538
+ - ''
539
+ - ''
540
+ - N
541
+ - ''
542
+ - ''
543
+ - ''
544
+ - ''
545
+ - ''
546
+ 124962:
547
+ - 124962
548
+ - MENDE KIKAKUI SYLLABLE M013 I
549
+ - Lo
550
+ - '0'
551
+ - R
552
+ - ''
553
+ - ''
554
+ - ''
555
+ - ''
556
+ - N
557
+ - ''
558
+ - ''
559
+ - ''
560
+ - ''
561
+ - ''
562
+ 124963:
563
+ - 124963
564
+ - MENDE KIKAKUI SYLLABLE M014 A
565
+ - Lo
566
+ - '0'
567
+ - R
568
+ - ''
569
+ - ''
570
+ - ''
571
+ - ''
572
+ - N
573
+ - ''
574
+ - ''
575
+ - ''
576
+ - ''
577
+ - ''
578
+ 124964:
579
+ - 124964
580
+ - MENDE KIKAKUI SYLLABLE M015 U
581
+ - Lo
582
+ - '0'
583
+ - R
584
+ - ''
585
+ - ''
586
+ - ''
587
+ - ''
588
+ - N
589
+ - ''
590
+ - ''
591
+ - ''
592
+ - ''
593
+ - ''
594
+ 124965:
595
+ - 124965
596
+ - MENDE KIKAKUI SYLLABLE M163 EE
597
+ - Lo
598
+ - '0'
599
+ - R
600
+ - ''
601
+ - ''
602
+ - ''
603
+ - ''
604
+ - N
605
+ - ''
606
+ - ''
607
+ - ''
608
+ - ''
609
+ - ''
610
+ 124966:
611
+ - 124966
612
+ - MENDE KIKAKUI SYLLABLE M100 E
613
+ - Lo
614
+ - '0'
615
+ - R
616
+ - ''
617
+ - ''
618
+ - ''
619
+ - ''
620
+ - N
621
+ - ''
622
+ - ''
623
+ - ''
624
+ - ''
625
+ - ''
626
+ 124967:
627
+ - 124967
628
+ - MENDE KIKAKUI SYLLABLE M165 OO
629
+ - Lo
630
+ - '0'
631
+ - R
632
+ - ''
633
+ - ''
634
+ - ''
635
+ - ''
636
+ - N
637
+ - ''
638
+ - ''
639
+ - ''
640
+ - ''
641
+ - ''
642
+ 124968:
643
+ - 124968
644
+ - MENDE KIKAKUI SYLLABLE M147 O
645
+ - Lo
646
+ - '0'
647
+ - R
648
+ - ''
649
+ - ''
650
+ - ''
651
+ - ''
652
+ - N
653
+ - ''
654
+ - ''
655
+ - ''
656
+ - ''
657
+ - ''
658
+ 124969:
659
+ - 124969
660
+ - MENDE KIKAKUI SYLLABLE M137 EI
661
+ - Lo
662
+ - '0'
663
+ - R
664
+ - ''
665
+ - ''
666
+ - ''
667
+ - ''
668
+ - N
669
+ - ''
670
+ - ''
671
+ - ''
672
+ - ''
673
+ - ''
674
+ 124970:
675
+ - 124970
676
+ - MENDE KIKAKUI SYLLABLE M131 IN
677
+ - Lo
678
+ - '0'
679
+ - R
680
+ - ''
681
+ - ''
682
+ - ''
683
+ - ''
684
+ - N
685
+ - ''
686
+ - ''
687
+ - ''
688
+ - ''
689
+ - ''
690
+ 124971:
691
+ - 124971
692
+ - MENDE KIKAKUI SYLLABLE M135 IN
693
+ - Lo
694
+ - '0'
695
+ - R
696
+ - ''
697
+ - ''
698
+ - ''
699
+ - ''
700
+ - N
701
+ - ''
702
+ - ''
703
+ - ''
704
+ - ''
705
+ - ''
706
+ 124972:
707
+ - 124972
708
+ - MENDE KIKAKUI SYLLABLE M195 AN
709
+ - Lo
710
+ - '0'
711
+ - R
712
+ - ''
713
+ - ''
714
+ - ''
715
+ - ''
716
+ - N
717
+ - ''
718
+ - ''
719
+ - ''
720
+ - ''
721
+ - ''
722
+ 124973:
723
+ - 124973
724
+ - MENDE KIKAKUI SYLLABLE M178 EN
725
+ - Lo
726
+ - '0'
727
+ - R
728
+ - ''
729
+ - ''
730
+ - ''
731
+ - ''
732
+ - N
733
+ - ''
734
+ - ''
735
+ - ''
736
+ - ''
737
+ - ''
738
+ 124974:
739
+ - 124974
740
+ - MENDE KIKAKUI SYLLABLE M019 SI
741
+ - Lo
742
+ - '0'
743
+ - R
744
+ - ''
745
+ - ''
746
+ - ''
747
+ - ''
748
+ - N
749
+ - ''
750
+ - ''
751
+ - ''
752
+ - ''
753
+ - ''
754
+ 124975:
755
+ - 124975
756
+ - MENDE KIKAKUI SYLLABLE M020 SA
757
+ - Lo
758
+ - '0'
759
+ - R
760
+ - ''
761
+ - ''
762
+ - ''
763
+ - ''
764
+ - N
765
+ - ''
766
+ - ''
767
+ - ''
768
+ - ''
769
+ - ''
770
+ 124976:
771
+ - 124976
772
+ - MENDE KIKAKUI SYLLABLE M021 SU
773
+ - Lo
774
+ - '0'
775
+ - R
776
+ - ''
777
+ - ''
778
+ - ''
779
+ - ''
780
+ - N
781
+ - ''
782
+ - ''
783
+ - ''
784
+ - ''
785
+ - ''
786
+ 124977:
787
+ - 124977
788
+ - MENDE KIKAKUI SYLLABLE M162 SEE
789
+ - Lo
790
+ - '0'
791
+ - R
792
+ - ''
793
+ - ''
794
+ - ''
795
+ - ''
796
+ - N
797
+ - ''
798
+ - ''
799
+ - ''
800
+ - ''
801
+ - ''
802
+ 124978:
803
+ - 124978
804
+ - MENDE KIKAKUI SYLLABLE M116 SE
805
+ - Lo
806
+ - '0'
807
+ - R
808
+ - ''
809
+ - ''
810
+ - ''
811
+ - ''
812
+ - N
813
+ - ''
814
+ - ''
815
+ - ''
816
+ - ''
817
+ - ''
818
+ 124979:
819
+ - 124979
820
+ - MENDE KIKAKUI SYLLABLE M136 SOO
821
+ - Lo
822
+ - '0'
823
+ - R
824
+ - ''
825
+ - ''
826
+ - ''
827
+ - ''
828
+ - N
829
+ - ''
830
+ - ''
831
+ - ''
832
+ - ''
833
+ - ''
834
+ 124980:
835
+ - 124980
836
+ - MENDE KIKAKUI SYLLABLE M079 SO
837
+ - Lo
838
+ - '0'
839
+ - R
840
+ - ''
841
+ - ''
842
+ - ''
843
+ - ''
844
+ - N
845
+ - ''
846
+ - ''
847
+ - ''
848
+ - ''
849
+ - ''
850
+ 124981:
851
+ - 124981
852
+ - MENDE KIKAKUI SYLLABLE M196 SIA
853
+ - Lo
854
+ - '0'
855
+ - R
856
+ - ''
857
+ - ''
858
+ - ''
859
+ - ''
860
+ - N
861
+ - ''
862
+ - ''
863
+ - ''
864
+ - ''
865
+ - ''
866
+ 124982:
867
+ - 124982
868
+ - MENDE KIKAKUI SYLLABLE M025 LI
869
+ - Lo
870
+ - '0'
871
+ - R
872
+ - ''
873
+ - ''
874
+ - ''
875
+ - ''
876
+ - N
877
+ - ''
878
+ - ''
879
+ - ''
880
+ - ''
881
+ - ''
882
+ 124983:
883
+ - 124983
884
+ - MENDE KIKAKUI SYLLABLE M026 LA
885
+ - Lo
886
+ - '0'
887
+ - R
888
+ - ''
889
+ - ''
890
+ - ''
891
+ - ''
892
+ - N
893
+ - ''
894
+ - ''
895
+ - ''
896
+ - ''
897
+ - ''
898
+ 124984:
899
+ - 124984
900
+ - MENDE KIKAKUI SYLLABLE M027 LU
901
+ - Lo
902
+ - '0'
903
+ - R
904
+ - ''
905
+ - ''
906
+ - ''
907
+ - ''
908
+ - N
909
+ - ''
910
+ - ''
911
+ - ''
912
+ - ''
913
+ - ''
914
+ 124985:
915
+ - 124985
916
+ - MENDE KIKAKUI SYLLABLE M084 LEE
917
+ - Lo
918
+ - '0'
919
+ - R
920
+ - ''
921
+ - ''
922
+ - ''
923
+ - ''
924
+ - N
925
+ - ''
926
+ - ''
927
+ - ''
928
+ - ''
929
+ - ''
930
+ 124986:
931
+ - 124986
932
+ - MENDE KIKAKUI SYLLABLE M073 LE
933
+ - Lo
934
+ - '0'
935
+ - R
936
+ - ''
937
+ - ''
938
+ - ''
939
+ - ''
940
+ - N
941
+ - ''
942
+ - ''
943
+ - ''
944
+ - ''
945
+ - ''
946
+ 124987:
947
+ - 124987
948
+ - MENDE KIKAKUI SYLLABLE M054 LOO
949
+ - Lo
950
+ - '0'
951
+ - R
952
+ - ''
953
+ - ''
954
+ - ''
955
+ - ''
956
+ - N
957
+ - ''
958
+ - ''
959
+ - ''
960
+ - ''
961
+ - ''
962
+ 124988:
963
+ - 124988
964
+ - MENDE KIKAKUI SYLLABLE M153 LO
965
+ - Lo
966
+ - '0'
967
+ - R
968
+ - ''
969
+ - ''
970
+ - ''
971
+ - ''
972
+ - N
973
+ - ''
974
+ - ''
975
+ - ''
976
+ - ''
977
+ - ''
978
+ 124989:
979
+ - 124989
980
+ - MENDE KIKAKUI SYLLABLE M110 LONG LE
981
+ - Lo
982
+ - '0'
983
+ - R
984
+ - ''
985
+ - ''
986
+ - ''
987
+ - ''
988
+ - N
989
+ - ''
990
+ - ''
991
+ - ''
992
+ - ''
993
+ - ''
994
+ 124990:
995
+ - 124990
996
+ - MENDE KIKAKUI SYLLABLE M016 DI
997
+ - Lo
998
+ - '0'
999
+ - R
1000
+ - ''
1001
+ - ''
1002
+ - ''
1003
+ - ''
1004
+ - N
1005
+ - ''
1006
+ - ''
1007
+ - ''
1008
+ - ''
1009
+ - ''
1010
+ 124991:
1011
+ - 124991
1012
+ - MENDE KIKAKUI SYLLABLE M017 DA
1013
+ - Lo
1014
+ - '0'
1015
+ - R
1016
+ - ''
1017
+ - ''
1018
+ - ''
1019
+ - ''
1020
+ - N
1021
+ - ''
1022
+ - ''
1023
+ - ''
1024
+ - ''
1025
+ - ''
1026
+ 124992:
1027
+ - 124992
1028
+ - MENDE KIKAKUI SYLLABLE M018 DU
1029
+ - Lo
1030
+ - '0'
1031
+ - R
1032
+ - ''
1033
+ - ''
1034
+ - ''
1035
+ - ''
1036
+ - N
1037
+ - ''
1038
+ - ''
1039
+ - ''
1040
+ - ''
1041
+ - ''
1042
+ 124993:
1043
+ - 124993
1044
+ - MENDE KIKAKUI SYLLABLE M089 DEE
1045
+ - Lo
1046
+ - '0'
1047
+ - R
1048
+ - ''
1049
+ - ''
1050
+ - ''
1051
+ - ''
1052
+ - N
1053
+ - ''
1054
+ - ''
1055
+ - ''
1056
+ - ''
1057
+ - ''
1058
+ 124994:
1059
+ - 124994
1060
+ - MENDE KIKAKUI SYLLABLE M180 DOO
1061
+ - Lo
1062
+ - '0'
1063
+ - R
1064
+ - ''
1065
+ - ''
1066
+ - ''
1067
+ - ''
1068
+ - N
1069
+ - ''
1070
+ - ''
1071
+ - ''
1072
+ - ''
1073
+ - ''
1074
+ 124995:
1075
+ - 124995
1076
+ - MENDE KIKAKUI SYLLABLE M181 DO
1077
+ - Lo
1078
+ - '0'
1079
+ - R
1080
+ - ''
1081
+ - ''
1082
+ - ''
1083
+ - ''
1084
+ - N
1085
+ - ''
1086
+ - ''
1087
+ - ''
1088
+ - ''
1089
+ - ''
1090
+ 124996:
1091
+ - 124996
1092
+ - MENDE KIKAKUI SYLLABLE M022 TI
1093
+ - Lo
1094
+ - '0'
1095
+ - R
1096
+ - ''
1097
+ - ''
1098
+ - ''
1099
+ - ''
1100
+ - N
1101
+ - ''
1102
+ - ''
1103
+ - ''
1104
+ - ''
1105
+ - ''
1106
+ 124997:
1107
+ - 124997
1108
+ - MENDE KIKAKUI SYLLABLE M023 TA
1109
+ - Lo
1110
+ - '0'
1111
+ - R
1112
+ - ''
1113
+ - ''
1114
+ - ''
1115
+ - ''
1116
+ - N
1117
+ - ''
1118
+ - ''
1119
+ - ''
1120
+ - ''
1121
+ - ''
1122
+ 124998:
1123
+ - 124998
1124
+ - MENDE KIKAKUI SYLLABLE M024 TU
1125
+ - Lo
1126
+ - '0'
1127
+ - R
1128
+ - ''
1129
+ - ''
1130
+ - ''
1131
+ - ''
1132
+ - N
1133
+ - ''
1134
+ - ''
1135
+ - ''
1136
+ - ''
1137
+ - ''
1138
+ 124999:
1139
+ - 124999
1140
+ - MENDE KIKAKUI SYLLABLE M091 TEE
1141
+ - Lo
1142
+ - '0'
1143
+ - R
1144
+ - ''
1145
+ - ''
1146
+ - ''
1147
+ - ''
1148
+ - N
1149
+ - ''
1150
+ - ''
1151
+ - ''
1152
+ - ''
1153
+ - ''
1154
+ 125000:
1155
+ - 125000
1156
+ - MENDE KIKAKUI SYLLABLE M055 TE
1157
+ - Lo
1158
+ - '0'
1159
+ - R
1160
+ - ''
1161
+ - ''
1162
+ - ''
1163
+ - ''
1164
+ - N
1165
+ - ''
1166
+ - ''
1167
+ - ''
1168
+ - ''
1169
+ - ''
1170
+ 125001:
1171
+ - 125001
1172
+ - MENDE KIKAKUI SYLLABLE M104 TOO
1173
+ - Lo
1174
+ - '0'
1175
+ - R
1176
+ - ''
1177
+ - ''
1178
+ - ''
1179
+ - ''
1180
+ - N
1181
+ - ''
1182
+ - ''
1183
+ - ''
1184
+ - ''
1185
+ - ''
1186
+ 125002:
1187
+ - 125002
1188
+ - MENDE KIKAKUI SYLLABLE M069 TO
1189
+ - Lo
1190
+ - '0'
1191
+ - R
1192
+ - ''
1193
+ - ''
1194
+ - ''
1195
+ - ''
1196
+ - N
1197
+ - ''
1198
+ - ''
1199
+ - ''
1200
+ - ''
1201
+ - ''
1202
+ 125003:
1203
+ - 125003
1204
+ - MENDE KIKAKUI SYLLABLE M028 JI
1205
+ - Lo
1206
+ - '0'
1207
+ - R
1208
+ - ''
1209
+ - ''
1210
+ - ''
1211
+ - ''
1212
+ - N
1213
+ - ''
1214
+ - ''
1215
+ - ''
1216
+ - ''
1217
+ - ''
1218
+ 125004:
1219
+ - 125004
1220
+ - MENDE KIKAKUI SYLLABLE M029 JA
1221
+ - Lo
1222
+ - '0'
1223
+ - R
1224
+ - ''
1225
+ - ''
1226
+ - ''
1227
+ - ''
1228
+ - N
1229
+ - ''
1230
+ - ''
1231
+ - ''
1232
+ - ''
1233
+ - ''
1234
+ 125005:
1235
+ - 125005
1236
+ - MENDE KIKAKUI SYLLABLE M030 JU
1237
+ - Lo
1238
+ - '0'
1239
+ - R
1240
+ - ''
1241
+ - ''
1242
+ - ''
1243
+ - ''
1244
+ - N
1245
+ - ''
1246
+ - ''
1247
+ - ''
1248
+ - ''
1249
+ - ''
1250
+ 125006:
1251
+ - 125006
1252
+ - MENDE KIKAKUI SYLLABLE M157 JEE
1253
+ - Lo
1254
+ - '0'
1255
+ - R
1256
+ - ''
1257
+ - ''
1258
+ - ''
1259
+ - ''
1260
+ - N
1261
+ - ''
1262
+ - ''
1263
+ - ''
1264
+ - ''
1265
+ - ''
1266
+ 125007:
1267
+ - 125007
1268
+ - MENDE KIKAKUI SYLLABLE M113 JE
1269
+ - Lo
1270
+ - '0'
1271
+ - R
1272
+ - ''
1273
+ - ''
1274
+ - ''
1275
+ - ''
1276
+ - N
1277
+ - ''
1278
+ - ''
1279
+ - ''
1280
+ - ''
1281
+ - ''
1282
+ 125008:
1283
+ - 125008
1284
+ - MENDE KIKAKUI SYLLABLE M160 JOO
1285
+ - Lo
1286
+ - '0'
1287
+ - R
1288
+ - ''
1289
+ - ''
1290
+ - ''
1291
+ - ''
1292
+ - N
1293
+ - ''
1294
+ - ''
1295
+ - ''
1296
+ - ''
1297
+ - ''
1298
+ 125009:
1299
+ - 125009
1300
+ - MENDE KIKAKUI SYLLABLE M063 JO
1301
+ - Lo
1302
+ - '0'
1303
+ - R
1304
+ - ''
1305
+ - ''
1306
+ - ''
1307
+ - ''
1308
+ - N
1309
+ - ''
1310
+ - ''
1311
+ - ''
1312
+ - ''
1313
+ - ''
1314
+ 125010:
1315
+ - 125010
1316
+ - MENDE KIKAKUI SYLLABLE M175 LONG JO
1317
+ - Lo
1318
+ - '0'
1319
+ - R
1320
+ - ''
1321
+ - ''
1322
+ - ''
1323
+ - ''
1324
+ - N
1325
+ - ''
1326
+ - ''
1327
+ - ''
1328
+ - ''
1329
+ - ''
1330
+ 125011:
1331
+ - 125011
1332
+ - MENDE KIKAKUI SYLLABLE M031 YI
1333
+ - Lo
1334
+ - '0'
1335
+ - R
1336
+ - ''
1337
+ - ''
1338
+ - ''
1339
+ - ''
1340
+ - N
1341
+ - ''
1342
+ - ''
1343
+ - ''
1344
+ - ''
1345
+ - ''
1346
+ 125012:
1347
+ - 125012
1348
+ - MENDE KIKAKUI SYLLABLE M032 YA
1349
+ - Lo
1350
+ - '0'
1351
+ - R
1352
+ - ''
1353
+ - ''
1354
+ - ''
1355
+ - ''
1356
+ - N
1357
+ - ''
1358
+ - ''
1359
+ - ''
1360
+ - ''
1361
+ - ''
1362
+ 125013:
1363
+ - 125013
1364
+ - MENDE KIKAKUI SYLLABLE M033 YU
1365
+ - Lo
1366
+ - '0'
1367
+ - R
1368
+ - ''
1369
+ - ''
1370
+ - ''
1371
+ - ''
1372
+ - N
1373
+ - ''
1374
+ - ''
1375
+ - ''
1376
+ - ''
1377
+ - ''
1378
+ 125014:
1379
+ - 125014
1380
+ - MENDE KIKAKUI SYLLABLE M109 YEE
1381
+ - Lo
1382
+ - '0'
1383
+ - R
1384
+ - ''
1385
+ - ''
1386
+ - ''
1387
+ - ''
1388
+ - N
1389
+ - ''
1390
+ - ''
1391
+ - ''
1392
+ - ''
1393
+ - ''
1394
+ 125015:
1395
+ - 125015
1396
+ - MENDE KIKAKUI SYLLABLE M080 YE
1397
+ - Lo
1398
+ - '0'
1399
+ - R
1400
+ - ''
1401
+ - ''
1402
+ - ''
1403
+ - ''
1404
+ - N
1405
+ - ''
1406
+ - ''
1407
+ - ''
1408
+ - ''
1409
+ - ''
1410
+ 125016:
1411
+ - 125016
1412
+ - MENDE KIKAKUI SYLLABLE M141 YOO
1413
+ - Lo
1414
+ - '0'
1415
+ - R
1416
+ - ''
1417
+ - ''
1418
+ - ''
1419
+ - ''
1420
+ - N
1421
+ - ''
1422
+ - ''
1423
+ - ''
1424
+ - ''
1425
+ - ''
1426
+ 125017:
1427
+ - 125017
1428
+ - MENDE KIKAKUI SYLLABLE M121 YO
1429
+ - Lo
1430
+ - '0'
1431
+ - R
1432
+ - ''
1433
+ - ''
1434
+ - ''
1435
+ - ''
1436
+ - N
1437
+ - ''
1438
+ - ''
1439
+ - ''
1440
+ - ''
1441
+ - ''
1442
+ 125018:
1443
+ - 125018
1444
+ - MENDE KIKAKUI SYLLABLE M034 FI
1445
+ - Lo
1446
+ - '0'
1447
+ - R
1448
+ - ''
1449
+ - ''
1450
+ - ''
1451
+ - ''
1452
+ - N
1453
+ - ''
1454
+ - ''
1455
+ - ''
1456
+ - ''
1457
+ - ''
1458
+ 125019:
1459
+ - 125019
1460
+ - MENDE KIKAKUI SYLLABLE M035 FA
1461
+ - Lo
1462
+ - '0'
1463
+ - R
1464
+ - ''
1465
+ - ''
1466
+ - ''
1467
+ - ''
1468
+ - N
1469
+ - ''
1470
+ - ''
1471
+ - ''
1472
+ - ''
1473
+ - ''
1474
+ 125020:
1475
+ - 125020
1476
+ - MENDE KIKAKUI SYLLABLE M036 FU
1477
+ - Lo
1478
+ - '0'
1479
+ - R
1480
+ - ''
1481
+ - ''
1482
+ - ''
1483
+ - ''
1484
+ - N
1485
+ - ''
1486
+ - ''
1487
+ - ''
1488
+ - ''
1489
+ - ''
1490
+ 125021:
1491
+ - 125021
1492
+ - MENDE KIKAKUI SYLLABLE M078 FEE
1493
+ - Lo
1494
+ - '0'
1495
+ - R
1496
+ - ''
1497
+ - ''
1498
+ - ''
1499
+ - ''
1500
+ - N
1501
+ - ''
1502
+ - ''
1503
+ - ''
1504
+ - ''
1505
+ - ''
1506
+ 125022:
1507
+ - 125022
1508
+ - MENDE KIKAKUI SYLLABLE M075 FE
1509
+ - Lo
1510
+ - '0'
1511
+ - R
1512
+ - ''
1513
+ - ''
1514
+ - ''
1515
+ - ''
1516
+ - N
1517
+ - ''
1518
+ - ''
1519
+ - ''
1520
+ - ''
1521
+ - ''
1522
+ 125023:
1523
+ - 125023
1524
+ - MENDE KIKAKUI SYLLABLE M133 FOO
1525
+ - Lo
1526
+ - '0'
1527
+ - R
1528
+ - ''
1529
+ - ''
1530
+ - ''
1531
+ - ''
1532
+ - N
1533
+ - ''
1534
+ - ''
1535
+ - ''
1536
+ - ''
1537
+ - ''
1538
+ 125024:
1539
+ - 125024
1540
+ - MENDE KIKAKUI SYLLABLE M088 FO
1541
+ - Lo
1542
+ - '0'
1543
+ - R
1544
+ - ''
1545
+ - ''
1546
+ - ''
1547
+ - ''
1548
+ - N
1549
+ - ''
1550
+ - ''
1551
+ - ''
1552
+ - ''
1553
+ - ''
1554
+ 125025:
1555
+ - 125025
1556
+ - MENDE KIKAKUI SYLLABLE M197 FUA
1557
+ - Lo
1558
+ - '0'
1559
+ - R
1560
+ - ''
1561
+ - ''
1562
+ - ''
1563
+ - ''
1564
+ - N
1565
+ - ''
1566
+ - ''
1567
+ - ''
1568
+ - ''
1569
+ - ''
1570
+ 125026:
1571
+ - 125026
1572
+ - MENDE KIKAKUI SYLLABLE M101 FAN
1573
+ - Lo
1574
+ - '0'
1575
+ - R
1576
+ - ''
1577
+ - ''
1578
+ - ''
1579
+ - ''
1580
+ - N
1581
+ - ''
1582
+ - ''
1583
+ - ''
1584
+ - ''
1585
+ - ''
1586
+ 125027:
1587
+ - 125027
1588
+ - MENDE KIKAKUI SYLLABLE M037 NIN
1589
+ - Lo
1590
+ - '0'
1591
+ - R
1592
+ - ''
1593
+ - ''
1594
+ - ''
1595
+ - ''
1596
+ - N
1597
+ - ''
1598
+ - ''
1599
+ - ''
1600
+ - ''
1601
+ - ''
1602
+ 125028:
1603
+ - 125028
1604
+ - MENDE KIKAKUI SYLLABLE M038 NAN
1605
+ - Lo
1606
+ - '0'
1607
+ - R
1608
+ - ''
1609
+ - ''
1610
+ - ''
1611
+ - ''
1612
+ - N
1613
+ - ''
1614
+ - ''
1615
+ - ''
1616
+ - ''
1617
+ - ''
1618
+ 125029:
1619
+ - 125029
1620
+ - MENDE KIKAKUI SYLLABLE M039 NUN
1621
+ - Lo
1622
+ - '0'
1623
+ - R
1624
+ - ''
1625
+ - ''
1626
+ - ''
1627
+ - ''
1628
+ - N
1629
+ - ''
1630
+ - ''
1631
+ - ''
1632
+ - ''
1633
+ - ''
1634
+ 125030:
1635
+ - 125030
1636
+ - MENDE KIKAKUI SYLLABLE M117 NEN
1637
+ - Lo
1638
+ - '0'
1639
+ - R
1640
+ - ''
1641
+ - ''
1642
+ - ''
1643
+ - ''
1644
+ - N
1645
+ - ''
1646
+ - ''
1647
+ - ''
1648
+ - ''
1649
+ - ''
1650
+ 125031:
1651
+ - 125031
1652
+ - MENDE KIKAKUI SYLLABLE M169 NON
1653
+ - Lo
1654
+ - '0'
1655
+ - R
1656
+ - ''
1657
+ - ''
1658
+ - ''
1659
+ - ''
1660
+ - N
1661
+ - ''
1662
+ - ''
1663
+ - ''
1664
+ - ''
1665
+ - ''
1666
+ 125032:
1667
+ - 125032
1668
+ - MENDE KIKAKUI SYLLABLE M176 HI
1669
+ - Lo
1670
+ - '0'
1671
+ - R
1672
+ - ''
1673
+ - ''
1674
+ - ''
1675
+ - ''
1676
+ - N
1677
+ - ''
1678
+ - ''
1679
+ - ''
1680
+ - ''
1681
+ - ''
1682
+ 125033:
1683
+ - 125033
1684
+ - MENDE KIKAKUI SYLLABLE M041 HA
1685
+ - Lo
1686
+ - '0'
1687
+ - R
1688
+ - ''
1689
+ - ''
1690
+ - ''
1691
+ - ''
1692
+ - N
1693
+ - ''
1694
+ - ''
1695
+ - ''
1696
+ - ''
1697
+ - ''
1698
+ 125034:
1699
+ - 125034
1700
+ - MENDE KIKAKUI SYLLABLE M186 HU
1701
+ - Lo
1702
+ - '0'
1703
+ - R
1704
+ - ''
1705
+ - ''
1706
+ - ''
1707
+ - ''
1708
+ - N
1709
+ - ''
1710
+ - ''
1711
+ - ''
1712
+ - ''
1713
+ - ''
1714
+ 125035:
1715
+ - 125035
1716
+ - MENDE KIKAKUI SYLLABLE M040 HEE
1717
+ - Lo
1718
+ - '0'
1719
+ - R
1720
+ - ''
1721
+ - ''
1722
+ - ''
1723
+ - ''
1724
+ - N
1725
+ - ''
1726
+ - ''
1727
+ - ''
1728
+ - ''
1729
+ - ''
1730
+ 125036:
1731
+ - 125036
1732
+ - MENDE KIKAKUI SYLLABLE M096 HE
1733
+ - Lo
1734
+ - '0'
1735
+ - R
1736
+ - ''
1737
+ - ''
1738
+ - ''
1739
+ - ''
1740
+ - N
1741
+ - ''
1742
+ - ''
1743
+ - ''
1744
+ - ''
1745
+ - ''
1746
+ 125037:
1747
+ - 125037
1748
+ - MENDE KIKAKUI SYLLABLE M042 HOO
1749
+ - Lo
1750
+ - '0'
1751
+ - R
1752
+ - ''
1753
+ - ''
1754
+ - ''
1755
+ - ''
1756
+ - N
1757
+ - ''
1758
+ - ''
1759
+ - ''
1760
+ - ''
1761
+ - ''
1762
+ 125038:
1763
+ - 125038
1764
+ - MENDE KIKAKUI SYLLABLE M140 HO
1765
+ - Lo
1766
+ - '0'
1767
+ - R
1768
+ - ''
1769
+ - ''
1770
+ - ''
1771
+ - ''
1772
+ - N
1773
+ - ''
1774
+ - ''
1775
+ - ''
1776
+ - ''
1777
+ - ''
1778
+ 125039:
1779
+ - 125039
1780
+ - MENDE KIKAKUI SYLLABLE M083 HEEI
1781
+ - Lo
1782
+ - '0'
1783
+ - R
1784
+ - ''
1785
+ - ''
1786
+ - ''
1787
+ - ''
1788
+ - N
1789
+ - ''
1790
+ - ''
1791
+ - ''
1792
+ - ''
1793
+ - ''
1794
+ 125040:
1795
+ - 125040
1796
+ - MENDE KIKAKUI SYLLABLE M128 HOOU
1797
+ - Lo
1798
+ - '0'
1799
+ - R
1800
+ - ''
1801
+ - ''
1802
+ - ''
1803
+ - ''
1804
+ - N
1805
+ - ''
1806
+ - ''
1807
+ - ''
1808
+ - ''
1809
+ - ''
1810
+ 125041:
1811
+ - 125041
1812
+ - MENDE KIKAKUI SYLLABLE M053 HIN
1813
+ - Lo
1814
+ - '0'
1815
+ - R
1816
+ - ''
1817
+ - ''
1818
+ - ''
1819
+ - ''
1820
+ - N
1821
+ - ''
1822
+ - ''
1823
+ - ''
1824
+ - ''
1825
+ - ''
1826
+ 125042:
1827
+ - 125042
1828
+ - MENDE KIKAKUI SYLLABLE M130 HAN
1829
+ - Lo
1830
+ - '0'
1831
+ - R
1832
+ - ''
1833
+ - ''
1834
+ - ''
1835
+ - ''
1836
+ - N
1837
+ - ''
1838
+ - ''
1839
+ - ''
1840
+ - ''
1841
+ - ''
1842
+ 125043:
1843
+ - 125043
1844
+ - MENDE KIKAKUI SYLLABLE M087 HUN
1845
+ - Lo
1846
+ - '0'
1847
+ - R
1848
+ - ''
1849
+ - ''
1850
+ - ''
1851
+ - ''
1852
+ - N
1853
+ - ''
1854
+ - ''
1855
+ - ''
1856
+ - ''
1857
+ - ''
1858
+ 125044:
1859
+ - 125044
1860
+ - MENDE KIKAKUI SYLLABLE M052 HEN
1861
+ - Lo
1862
+ - '0'
1863
+ - R
1864
+ - ''
1865
+ - ''
1866
+ - ''
1867
+ - ''
1868
+ - N
1869
+ - ''
1870
+ - ''
1871
+ - ''
1872
+ - ''
1873
+ - ''
1874
+ 125045:
1875
+ - 125045
1876
+ - MENDE KIKAKUI SYLLABLE M193 HON
1877
+ - Lo
1878
+ - '0'
1879
+ - R
1880
+ - ''
1881
+ - ''
1882
+ - ''
1883
+ - ''
1884
+ - N
1885
+ - ''
1886
+ - ''
1887
+ - ''
1888
+ - ''
1889
+ - ''
1890
+ 125046:
1891
+ - 125046
1892
+ - MENDE KIKAKUI SYLLABLE M046 HUAN
1893
+ - Lo
1894
+ - '0'
1895
+ - R
1896
+ - ''
1897
+ - ''
1898
+ - ''
1899
+ - ''
1900
+ - N
1901
+ - ''
1902
+ - ''
1903
+ - ''
1904
+ - ''
1905
+ - ''
1906
+ 125047:
1907
+ - 125047
1908
+ - MENDE KIKAKUI SYLLABLE M090 NGGI
1909
+ - Lo
1910
+ - '0'
1911
+ - R
1912
+ - ''
1913
+ - ''
1914
+ - ''
1915
+ - ''
1916
+ - N
1917
+ - ''
1918
+ - ''
1919
+ - ''
1920
+ - ''
1921
+ - ''
1922
+ 125048:
1923
+ - 125048
1924
+ - MENDE KIKAKUI SYLLABLE M043 NGGA
1925
+ - Lo
1926
+ - '0'
1927
+ - R
1928
+ - ''
1929
+ - ''
1930
+ - ''
1931
+ - ''
1932
+ - N
1933
+ - ''
1934
+ - ''
1935
+ - ''
1936
+ - ''
1937
+ - ''
1938
+ 125049:
1939
+ - 125049
1940
+ - MENDE KIKAKUI SYLLABLE M082 NGGU
1941
+ - Lo
1942
+ - '0'
1943
+ - R
1944
+ - ''
1945
+ - ''
1946
+ - ''
1947
+ - ''
1948
+ - N
1949
+ - ''
1950
+ - ''
1951
+ - ''
1952
+ - ''
1953
+ - ''
1954
+ 125050:
1955
+ - 125050
1956
+ - MENDE KIKAKUI SYLLABLE M115 NGGEE
1957
+ - Lo
1958
+ - '0'
1959
+ - R
1960
+ - ''
1961
+ - ''
1962
+ - ''
1963
+ - ''
1964
+ - N
1965
+ - ''
1966
+ - ''
1967
+ - ''
1968
+ - ''
1969
+ - ''
1970
+ 125051:
1971
+ - 125051
1972
+ - MENDE KIKAKUI SYLLABLE M146 NGGE
1973
+ - Lo
1974
+ - '0'
1975
+ - R
1976
+ - ''
1977
+ - ''
1978
+ - ''
1979
+ - ''
1980
+ - N
1981
+ - ''
1982
+ - ''
1983
+ - ''
1984
+ - ''
1985
+ - ''
1986
+ 125052:
1987
+ - 125052
1988
+ - MENDE KIKAKUI SYLLABLE M156 NGGOO
1989
+ - Lo
1990
+ - '0'
1991
+ - R
1992
+ - ''
1993
+ - ''
1994
+ - ''
1995
+ - ''
1996
+ - N
1997
+ - ''
1998
+ - ''
1999
+ - ''
2000
+ - ''
2001
+ - ''
2002
+ 125053:
2003
+ - 125053
2004
+ - MENDE KIKAKUI SYLLABLE M120 NGGO
2005
+ - Lo
2006
+ - '0'
2007
+ - R
2008
+ - ''
2009
+ - ''
2010
+ - ''
2011
+ - ''
2012
+ - N
2013
+ - ''
2014
+ - ''
2015
+ - ''
2016
+ - ''
2017
+ - ''
2018
+ 125054:
2019
+ - 125054
2020
+ - MENDE KIKAKUI SYLLABLE M159 NGGAA
2021
+ - Lo
2022
+ - '0'
2023
+ - R
2024
+ - ''
2025
+ - ''
2026
+ - ''
2027
+ - ''
2028
+ - N
2029
+ - ''
2030
+ - ''
2031
+ - ''
2032
+ - ''
2033
+ - ''
2034
+ 125055:
2035
+ - 125055
2036
+ - MENDE KIKAKUI SYLLABLE M127 NGGUA
2037
+ - Lo
2038
+ - '0'
2039
+ - R
2040
+ - ''
2041
+ - ''
2042
+ - ''
2043
+ - ''
2044
+ - N
2045
+ - ''
2046
+ - ''
2047
+ - ''
2048
+ - ''
2049
+ - ''
2050
+ 125056:
2051
+ - 125056
2052
+ - MENDE KIKAKUI SYLLABLE M086 LONG NGGE
2053
+ - Lo
2054
+ - '0'
2055
+ - R
2056
+ - ''
2057
+ - ''
2058
+ - ''
2059
+ - ''
2060
+ - N
2061
+ - ''
2062
+ - ''
2063
+ - ''
2064
+ - ''
2065
+ - ''
2066
+ 125057:
2067
+ - 125057
2068
+ - MENDE KIKAKUI SYLLABLE M106 LONG NGGOO
2069
+ - Lo
2070
+ - '0'
2071
+ - R
2072
+ - ''
2073
+ - ''
2074
+ - ''
2075
+ - ''
2076
+ - N
2077
+ - ''
2078
+ - ''
2079
+ - ''
2080
+ - ''
2081
+ - ''
2082
+ 125058:
2083
+ - 125058
2084
+ - MENDE KIKAKUI SYLLABLE M183 LONG NGGO
2085
+ - Lo
2086
+ - '0'
2087
+ - R
2088
+ - ''
2089
+ - ''
2090
+ - ''
2091
+ - ''
2092
+ - N
2093
+ - ''
2094
+ - ''
2095
+ - ''
2096
+ - ''
2097
+ - ''
2098
+ 125059:
2099
+ - 125059
2100
+ - MENDE KIKAKUI SYLLABLE M155 GI
2101
+ - Lo
2102
+ - '0'
2103
+ - R
2104
+ - ''
2105
+ - ''
2106
+ - ''
2107
+ - ''
2108
+ - N
2109
+ - ''
2110
+ - ''
2111
+ - ''
2112
+ - ''
2113
+ - ''
2114
+ 125060:
2115
+ - 125060
2116
+ - MENDE KIKAKUI SYLLABLE M111 GA
2117
+ - Lo
2118
+ - '0'
2119
+ - R
2120
+ - ''
2121
+ - ''
2122
+ - ''
2123
+ - ''
2124
+ - N
2125
+ - ''
2126
+ - ''
2127
+ - ''
2128
+ - ''
2129
+ - ''
2130
+ 125061:
2131
+ - 125061
2132
+ - MENDE KIKAKUI SYLLABLE M168 GU
2133
+ - Lo
2134
+ - '0'
2135
+ - R
2136
+ - ''
2137
+ - ''
2138
+ - ''
2139
+ - ''
2140
+ - N
2141
+ - ''
2142
+ - ''
2143
+ - ''
2144
+ - ''
2145
+ - ''
2146
+ 125062:
2147
+ - 125062
2148
+ - MENDE KIKAKUI SYLLABLE M190 GEE
2149
+ - Lo
2150
+ - '0'
2151
+ - R
2152
+ - ''
2153
+ - ''
2154
+ - ''
2155
+ - ''
2156
+ - N
2157
+ - ''
2158
+ - ''
2159
+ - ''
2160
+ - ''
2161
+ - ''
2162
+ 125063:
2163
+ - 125063
2164
+ - MENDE KIKAKUI SYLLABLE M166 GUEI
2165
+ - Lo
2166
+ - '0'
2167
+ - R
2168
+ - ''
2169
+ - ''
2170
+ - ''
2171
+ - ''
2172
+ - N
2173
+ - ''
2174
+ - ''
2175
+ - ''
2176
+ - ''
2177
+ - ''
2178
+ 125064:
2179
+ - 125064
2180
+ - MENDE KIKAKUI SYLLABLE M167 GUAN
2181
+ - Lo
2182
+ - '0'
2183
+ - R
2184
+ - ''
2185
+ - ''
2186
+ - ''
2187
+ - ''
2188
+ - N
2189
+ - ''
2190
+ - ''
2191
+ - ''
2192
+ - ''
2193
+ - ''
2194
+ 125065:
2195
+ - 125065
2196
+ - MENDE KIKAKUI SYLLABLE M184 NGEN
2197
+ - Lo
2198
+ - '0'
2199
+ - R
2200
+ - ''
2201
+ - ''
2202
+ - ''
2203
+ - ''
2204
+ - N
2205
+ - ''
2206
+ - ''
2207
+ - ''
2208
+ - ''
2209
+ - ''
2210
+ 125066:
2211
+ - 125066
2212
+ - MENDE KIKAKUI SYLLABLE M057 NGON
2213
+ - Lo
2214
+ - '0'
2215
+ - R
2216
+ - ''
2217
+ - ''
2218
+ - ''
2219
+ - ''
2220
+ - N
2221
+ - ''
2222
+ - ''
2223
+ - ''
2224
+ - ''
2225
+ - ''
2226
+ 125067:
2227
+ - 125067
2228
+ - MENDE KIKAKUI SYLLABLE M177 NGUAN
2229
+ - Lo
2230
+ - '0'
2231
+ - R
2232
+ - ''
2233
+ - ''
2234
+ - ''
2235
+ - ''
2236
+ - N
2237
+ - ''
2238
+ - ''
2239
+ - ''
2240
+ - ''
2241
+ - ''
2242
+ 125068:
2243
+ - 125068
2244
+ - MENDE KIKAKUI SYLLABLE M068 PI
2245
+ - Lo
2246
+ - '0'
2247
+ - R
2248
+ - ''
2249
+ - ''
2250
+ - ''
2251
+ - ''
2252
+ - N
2253
+ - ''
2254
+ - ''
2255
+ - ''
2256
+ - ''
2257
+ - ''
2258
+ 125069:
2259
+ - 125069
2260
+ - MENDE KIKAKUI SYLLABLE M099 PA
2261
+ - Lo
2262
+ - '0'
2263
+ - R
2264
+ - ''
2265
+ - ''
2266
+ - ''
2267
+ - ''
2268
+ - N
2269
+ - ''
2270
+ - ''
2271
+ - ''
2272
+ - ''
2273
+ - ''
2274
+ 125070:
2275
+ - 125070
2276
+ - MENDE KIKAKUI SYLLABLE M050 PU
2277
+ - Lo
2278
+ - '0'
2279
+ - R
2280
+ - ''
2281
+ - ''
2282
+ - ''
2283
+ - ''
2284
+ - N
2285
+ - ''
2286
+ - ''
2287
+ - ''
2288
+ - ''
2289
+ - ''
2290
+ 125071:
2291
+ - 125071
2292
+ - MENDE KIKAKUI SYLLABLE M081 PEE
2293
+ - Lo
2294
+ - '0'
2295
+ - R
2296
+ - ''
2297
+ - ''
2298
+ - ''
2299
+ - ''
2300
+ - N
2301
+ - ''
2302
+ - ''
2303
+ - ''
2304
+ - ''
2305
+ - ''
2306
+ 125072:
2307
+ - 125072
2308
+ - MENDE KIKAKUI SYLLABLE M051 PE
2309
+ - Lo
2310
+ - '0'
2311
+ - R
2312
+ - ''
2313
+ - ''
2314
+ - ''
2315
+ - ''
2316
+ - N
2317
+ - ''
2318
+ - ''
2319
+ - ''
2320
+ - ''
2321
+ - ''
2322
+ 125073:
2323
+ - 125073
2324
+ - MENDE KIKAKUI SYLLABLE M102 POO
2325
+ - Lo
2326
+ - '0'
2327
+ - R
2328
+ - ''
2329
+ - ''
2330
+ - ''
2331
+ - ''
2332
+ - N
2333
+ - ''
2334
+ - ''
2335
+ - ''
2336
+ - ''
2337
+ - ''
2338
+ 125074:
2339
+ - 125074
2340
+ - MENDE KIKAKUI SYLLABLE M066 PO
2341
+ - Lo
2342
+ - '0'
2343
+ - R
2344
+ - ''
2345
+ - ''
2346
+ - ''
2347
+ - ''
2348
+ - N
2349
+ - ''
2350
+ - ''
2351
+ - ''
2352
+ - ''
2353
+ - ''
2354
+ 125075:
2355
+ - 125075
2356
+ - MENDE KIKAKUI SYLLABLE M145 MBI
2357
+ - Lo
2358
+ - '0'
2359
+ - R
2360
+ - ''
2361
+ - ''
2362
+ - ''
2363
+ - ''
2364
+ - N
2365
+ - ''
2366
+ - ''
2367
+ - ''
2368
+ - ''
2369
+ - ''
2370
+ 125076:
2371
+ - 125076
2372
+ - MENDE KIKAKUI SYLLABLE M062 MBA
2373
+ - Lo
2374
+ - '0'
2375
+ - R
2376
+ - ''
2377
+ - ''
2378
+ - ''
2379
+ - ''
2380
+ - N
2381
+ - ''
2382
+ - ''
2383
+ - ''
2384
+ - ''
2385
+ - ''
2386
+ 125077:
2387
+ - 125077
2388
+ - MENDE KIKAKUI SYLLABLE M122 MBU
2389
+ - Lo
2390
+ - '0'
2391
+ - R
2392
+ - ''
2393
+ - ''
2394
+ - ''
2395
+ - ''
2396
+ - N
2397
+ - ''
2398
+ - ''
2399
+ - ''
2400
+ - ''
2401
+ - ''
2402
+ 125078:
2403
+ - 125078
2404
+ - MENDE KIKAKUI SYLLABLE M047 MBEE
2405
+ - Lo
2406
+ - '0'
2407
+ - R
2408
+ - ''
2409
+ - ''
2410
+ - ''
2411
+ - ''
2412
+ - N
2413
+ - ''
2414
+ - ''
2415
+ - ''
2416
+ - ''
2417
+ - ''
2418
+ 125079:
2419
+ - 125079
2420
+ - MENDE KIKAKUI SYLLABLE M188 MBEE
2421
+ - Lo
2422
+ - '0'
2423
+ - R
2424
+ - ''
2425
+ - ''
2426
+ - ''
2427
+ - ''
2428
+ - N
2429
+ - ''
2430
+ - ''
2431
+ - ''
2432
+ - ''
2433
+ - ''
2434
+ 125080:
2435
+ - 125080
2436
+ - MENDE KIKAKUI SYLLABLE M072 MBE
2437
+ - Lo
2438
+ - '0'
2439
+ - R
2440
+ - ''
2441
+ - ''
2442
+ - ''
2443
+ - ''
2444
+ - N
2445
+ - ''
2446
+ - ''
2447
+ - ''
2448
+ - ''
2449
+ - ''
2450
+ 125081:
2451
+ - 125081
2452
+ - MENDE KIKAKUI SYLLABLE M172 MBOO
2453
+ - Lo
2454
+ - '0'
2455
+ - R
2456
+ - ''
2457
+ - ''
2458
+ - ''
2459
+ - ''
2460
+ - N
2461
+ - ''
2462
+ - ''
2463
+ - ''
2464
+ - ''
2465
+ - ''
2466
+ 125082:
2467
+ - 125082
2468
+ - MENDE KIKAKUI SYLLABLE M174 MBO
2469
+ - Lo
2470
+ - '0'
2471
+ - R
2472
+ - ''
2473
+ - ''
2474
+ - ''
2475
+ - ''
2476
+ - N
2477
+ - ''
2478
+ - ''
2479
+ - ''
2480
+ - ''
2481
+ - ''
2482
+ 125083:
2483
+ - 125083
2484
+ - MENDE KIKAKUI SYLLABLE M187 MBUU
2485
+ - Lo
2486
+ - '0'
2487
+ - R
2488
+ - ''
2489
+ - ''
2490
+ - ''
2491
+ - ''
2492
+ - N
2493
+ - ''
2494
+ - ''
2495
+ - ''
2496
+ - ''
2497
+ - ''
2498
+ 125084:
2499
+ - 125084
2500
+ - MENDE KIKAKUI SYLLABLE M161 LONG MBE
2501
+ - Lo
2502
+ - '0'
2503
+ - R
2504
+ - ''
2505
+ - ''
2506
+ - ''
2507
+ - ''
2508
+ - N
2509
+ - ''
2510
+ - ''
2511
+ - ''
2512
+ - ''
2513
+ - ''
2514
+ 125085:
2515
+ - 125085
2516
+ - MENDE KIKAKUI SYLLABLE M105 LONG MBOO
2517
+ - Lo
2518
+ - '0'
2519
+ - R
2520
+ - ''
2521
+ - ''
2522
+ - ''
2523
+ - ''
2524
+ - N
2525
+ - ''
2526
+ - ''
2527
+ - ''
2528
+ - ''
2529
+ - ''
2530
+ 125086:
2531
+ - 125086
2532
+ - MENDE KIKAKUI SYLLABLE M142 LONG MBO
2533
+ - Lo
2534
+ - '0'
2535
+ - R
2536
+ - ''
2537
+ - ''
2538
+ - ''
2539
+ - ''
2540
+ - N
2541
+ - ''
2542
+ - ''
2543
+ - ''
2544
+ - ''
2545
+ - ''
2546
+ 125087:
2547
+ - 125087
2548
+ - MENDE KIKAKUI SYLLABLE M132 KPI
2549
+ - Lo
2550
+ - '0'
2551
+ - R
2552
+ - ''
2553
+ - ''
2554
+ - ''
2555
+ - ''
2556
+ - N
2557
+ - ''
2558
+ - ''
2559
+ - ''
2560
+ - ''
2561
+ - ''
2562
+ 125088:
2563
+ - 125088
2564
+ - MENDE KIKAKUI SYLLABLE M092 KPA
2565
+ - Lo
2566
+ - '0'
2567
+ - R
2568
+ - ''
2569
+ - ''
2570
+ - ''
2571
+ - ''
2572
+ - N
2573
+ - ''
2574
+ - ''
2575
+ - ''
2576
+ - ''
2577
+ - ''
2578
+ 125089:
2579
+ - 125089
2580
+ - MENDE KIKAKUI SYLLABLE M074 KPU
2581
+ - Lo
2582
+ - '0'
2583
+ - R
2584
+ - ''
2585
+ - ''
2586
+ - ''
2587
+ - ''
2588
+ - N
2589
+ - ''
2590
+ - ''
2591
+ - ''
2592
+ - ''
2593
+ - ''
2594
+ 125090:
2595
+ - 125090
2596
+ - MENDE KIKAKUI SYLLABLE M044 KPEE
2597
+ - Lo
2598
+ - '0'
2599
+ - R
2600
+ - ''
2601
+ - ''
2602
+ - ''
2603
+ - ''
2604
+ - N
2605
+ - ''
2606
+ - ''
2607
+ - ''
2608
+ - ''
2609
+ - ''
2610
+ 125091:
2611
+ - 125091
2612
+ - MENDE KIKAKUI SYLLABLE M108 KPE
2613
+ - Lo
2614
+ - '0'
2615
+ - R
2616
+ - ''
2617
+ - ''
2618
+ - ''
2619
+ - ''
2620
+ - N
2621
+ - ''
2622
+ - ''
2623
+ - ''
2624
+ - ''
2625
+ - ''
2626
+ 125092:
2627
+ - 125092
2628
+ - MENDE KIKAKUI SYLLABLE M112 KPOO
2629
+ - Lo
2630
+ - '0'
2631
+ - R
2632
+ - ''
2633
+ - ''
2634
+ - ''
2635
+ - ''
2636
+ - N
2637
+ - ''
2638
+ - ''
2639
+ - ''
2640
+ - ''
2641
+ - ''
2642
+ 125093:
2643
+ - 125093
2644
+ - MENDE KIKAKUI SYLLABLE M158 KPO
2645
+ - Lo
2646
+ - '0'
2647
+ - R
2648
+ - ''
2649
+ - ''
2650
+ - ''
2651
+ - ''
2652
+ - N
2653
+ - ''
2654
+ - ''
2655
+ - ''
2656
+ - ''
2657
+ - ''
2658
+ 125094:
2659
+ - 125094
2660
+ - MENDE KIKAKUI SYLLABLE M124 GBI
2661
+ - Lo
2662
+ - '0'
2663
+ - R
2664
+ - ''
2665
+ - ''
2666
+ - ''
2667
+ - ''
2668
+ - N
2669
+ - ''
2670
+ - ''
2671
+ - ''
2672
+ - ''
2673
+ - ''
2674
+ 125095:
2675
+ - 125095
2676
+ - MENDE KIKAKUI SYLLABLE M056 GBA
2677
+ - Lo
2678
+ - '0'
2679
+ - R
2680
+ - ''
2681
+ - ''
2682
+ - ''
2683
+ - ''
2684
+ - N
2685
+ - ''
2686
+ - ''
2687
+ - ''
2688
+ - ''
2689
+ - ''
2690
+ 125096:
2691
+ - 125096
2692
+ - MENDE KIKAKUI SYLLABLE M148 GBU
2693
+ - Lo
2694
+ - '0'
2695
+ - R
2696
+ - ''
2697
+ - ''
2698
+ - ''
2699
+ - ''
2700
+ - N
2701
+ - ''
2702
+ - ''
2703
+ - ''
2704
+ - ''
2705
+ - ''
2706
+ 125097:
2707
+ - 125097
2708
+ - MENDE KIKAKUI SYLLABLE M093 GBEE
2709
+ - Lo
2710
+ - '0'
2711
+ - R
2712
+ - ''
2713
+ - ''
2714
+ - ''
2715
+ - ''
2716
+ - N
2717
+ - ''
2718
+ - ''
2719
+ - ''
2720
+ - ''
2721
+ - ''
2722
+ 125098:
2723
+ - 125098
2724
+ - MENDE KIKAKUI SYLLABLE M107 GBE
2725
+ - Lo
2726
+ - '0'
2727
+ - R
2728
+ - ''
2729
+ - ''
2730
+ - ''
2731
+ - ''
2732
+ - N
2733
+ - ''
2734
+ - ''
2735
+ - ''
2736
+ - ''
2737
+ - ''
2738
+ 125099:
2739
+ - 125099
2740
+ - MENDE KIKAKUI SYLLABLE M071 GBOO
2741
+ - Lo
2742
+ - '0'
2743
+ - R
2744
+ - ''
2745
+ - ''
2746
+ - ''
2747
+ - ''
2748
+ - N
2749
+ - ''
2750
+ - ''
2751
+ - ''
2752
+ - ''
2753
+ - ''
2754
+ 125100:
2755
+ - 125100
2756
+ - MENDE KIKAKUI SYLLABLE M070 GBO
2757
+ - Lo
2758
+ - '0'
2759
+ - R
2760
+ - ''
2761
+ - ''
2762
+ - ''
2763
+ - ''
2764
+ - N
2765
+ - ''
2766
+ - ''
2767
+ - ''
2768
+ - ''
2769
+ - ''
2770
+ 125101:
2771
+ - 125101
2772
+ - MENDE KIKAKUI SYLLABLE M171 RA
2773
+ - Lo
2774
+ - '0'
2775
+ - R
2776
+ - ''
2777
+ - ''
2778
+ - ''
2779
+ - ''
2780
+ - N
2781
+ - ''
2782
+ - ''
2783
+ - ''
2784
+ - ''
2785
+ - ''
2786
+ 125102:
2787
+ - 125102
2788
+ - MENDE KIKAKUI SYLLABLE M123 NDI
2789
+ - Lo
2790
+ - '0'
2791
+ - R
2792
+ - ''
2793
+ - ''
2794
+ - ''
2795
+ - ''
2796
+ - N
2797
+ - ''
2798
+ - ''
2799
+ - ''
2800
+ - ''
2801
+ - ''
2802
+ 125103:
2803
+ - 125103
2804
+ - MENDE KIKAKUI SYLLABLE M129 NDA
2805
+ - Lo
2806
+ - '0'
2807
+ - R
2808
+ - ''
2809
+ - ''
2810
+ - ''
2811
+ - ''
2812
+ - N
2813
+ - ''
2814
+ - ''
2815
+ - ''
2816
+ - ''
2817
+ - ''
2818
+ 125104:
2819
+ - 125104
2820
+ - MENDE KIKAKUI SYLLABLE M125 NDU
2821
+ - Lo
2822
+ - '0'
2823
+ - R
2824
+ - ''
2825
+ - ''
2826
+ - ''
2827
+ - ''
2828
+ - N
2829
+ - ''
2830
+ - ''
2831
+ - ''
2832
+ - ''
2833
+ - ''
2834
+ 125105:
2835
+ - 125105
2836
+ - MENDE KIKAKUI SYLLABLE M191 NDEE
2837
+ - Lo
2838
+ - '0'
2839
+ - R
2840
+ - ''
2841
+ - ''
2842
+ - ''
2843
+ - ''
2844
+ - N
2845
+ - ''
2846
+ - ''
2847
+ - ''
2848
+ - ''
2849
+ - ''
2850
+ 125106:
2851
+ - 125106
2852
+ - MENDE KIKAKUI SYLLABLE M119 NDE
2853
+ - Lo
2854
+ - '0'
2855
+ - R
2856
+ - ''
2857
+ - ''
2858
+ - ''
2859
+ - ''
2860
+ - N
2861
+ - ''
2862
+ - ''
2863
+ - ''
2864
+ - ''
2865
+ - ''
2866
+ 125107:
2867
+ - 125107
2868
+ - MENDE KIKAKUI SYLLABLE M067 NDOO
2869
+ - Lo
2870
+ - '0'
2871
+ - R
2872
+ - ''
2873
+ - ''
2874
+ - ''
2875
+ - ''
2876
+ - N
2877
+ - ''
2878
+ - ''
2879
+ - ''
2880
+ - ''
2881
+ - ''
2882
+ 125108:
2883
+ - 125108
2884
+ - MENDE KIKAKUI SYLLABLE M064 NDO
2885
+ - Lo
2886
+ - '0'
2887
+ - R
2888
+ - ''
2889
+ - ''
2890
+ - ''
2891
+ - ''
2892
+ - N
2893
+ - ''
2894
+ - ''
2895
+ - ''
2896
+ - ''
2897
+ - ''
2898
+ 125109:
2899
+ - 125109
2900
+ - MENDE KIKAKUI SYLLABLE M152 NJA
2901
+ - Lo
2902
+ - '0'
2903
+ - R
2904
+ - ''
2905
+ - ''
2906
+ - ''
2907
+ - ''
2908
+ - N
2909
+ - ''
2910
+ - ''
2911
+ - ''
2912
+ - ''
2913
+ - ''
2914
+ 125110:
2915
+ - 125110
2916
+ - MENDE KIKAKUI SYLLABLE M192 NJU
2917
+ - Lo
2918
+ - '0'
2919
+ - R
2920
+ - ''
2921
+ - ''
2922
+ - ''
2923
+ - ''
2924
+ - N
2925
+ - ''
2926
+ - ''
2927
+ - ''
2928
+ - ''
2929
+ - ''
2930
+ 125111:
2931
+ - 125111
2932
+ - MENDE KIKAKUI SYLLABLE M149 NJEE
2933
+ - Lo
2934
+ - '0'
2935
+ - R
2936
+ - ''
2937
+ - ''
2938
+ - ''
2939
+ - ''
2940
+ - N
2941
+ - ''
2942
+ - ''
2943
+ - ''
2944
+ - ''
2945
+ - ''
2946
+ 125112:
2947
+ - 125112
2948
+ - MENDE KIKAKUI SYLLABLE M134 NJOO
2949
+ - Lo
2950
+ - '0'
2951
+ - R
2952
+ - ''
2953
+ - ''
2954
+ - ''
2955
+ - ''
2956
+ - N
2957
+ - ''
2958
+ - ''
2959
+ - ''
2960
+ - ''
2961
+ - ''
2962
+ 125113:
2963
+ - 125113
2964
+ - MENDE KIKAKUI SYLLABLE M182 VI
2965
+ - Lo
2966
+ - '0'
2967
+ - R
2968
+ - ''
2969
+ - ''
2970
+ - ''
2971
+ - ''
2972
+ - N
2973
+ - ''
2974
+ - ''
2975
+ - ''
2976
+ - ''
2977
+ - ''
2978
+ 125114:
2979
+ - 125114
2980
+ - MENDE KIKAKUI SYLLABLE M185 VA
2981
+ - Lo
2982
+ - '0'
2983
+ - R
2984
+ - ''
2985
+ - ''
2986
+ - ''
2987
+ - ''
2988
+ - N
2989
+ - ''
2990
+ - ''
2991
+ - ''
2992
+ - ''
2993
+ - ''
2994
+ 125115:
2995
+ - 125115
2996
+ - MENDE KIKAKUI SYLLABLE M151 VU
2997
+ - Lo
2998
+ - '0'
2999
+ - R
3000
+ - ''
3001
+ - ''
3002
+ - ''
3003
+ - ''
3004
+ - N
3005
+ - ''
3006
+ - ''
3007
+ - ''
3008
+ - ''
3009
+ - ''
3010
+ 125116:
3011
+ - 125116
3012
+ - MENDE KIKAKUI SYLLABLE M173 VEE
3013
+ - Lo
3014
+ - '0'
3015
+ - R
3016
+ - ''
3017
+ - ''
3018
+ - ''
3019
+ - ''
3020
+ - N
3021
+ - ''
3022
+ - ''
3023
+ - ''
3024
+ - ''
3025
+ - ''
3026
+ 125117:
3027
+ - 125117
3028
+ - MENDE KIKAKUI SYLLABLE M085 VE
3029
+ - Lo
3030
+ - '0'
3031
+ - R
3032
+ - ''
3033
+ - ''
3034
+ - ''
3035
+ - ''
3036
+ - N
3037
+ - ''
3038
+ - ''
3039
+ - ''
3040
+ - ''
3041
+ - ''
3042
+ 125118:
3043
+ - 125118
3044
+ - MENDE KIKAKUI SYLLABLE M144 VOO
3045
+ - Lo
3046
+ - '0'
3047
+ - R
3048
+ - ''
3049
+ - ''
3050
+ - ''
3051
+ - ''
3052
+ - N
3053
+ - ''
3054
+ - ''
3055
+ - ''
3056
+ - ''
3057
+ - ''
3058
+ 125119:
3059
+ - 125119
3060
+ - MENDE KIKAKUI SYLLABLE M077 VO
3061
+ - Lo
3062
+ - '0'
3063
+ - R
3064
+ - ''
3065
+ - ''
3066
+ - ''
3067
+ - ''
3068
+ - N
3069
+ - ''
3070
+ - ''
3071
+ - ''
3072
+ - ''
3073
+ - ''
3074
+ 125120:
3075
+ - 125120
3076
+ - MENDE KIKAKUI SYLLABLE M164 NYIN
3077
+ - Lo
3078
+ - '0'
3079
+ - R
3080
+ - ''
3081
+ - ''
3082
+ - ''
3083
+ - ''
3084
+ - N
3085
+ - ''
3086
+ - ''
3087
+ - ''
3088
+ - ''
3089
+ - ''
3090
+ 125121:
3091
+ - 125121
3092
+ - MENDE KIKAKUI SYLLABLE M058 NYAN
3093
+ - Lo
3094
+ - '0'
3095
+ - R
3096
+ - ''
3097
+ - ''
3098
+ - ''
3099
+ - ''
3100
+ - N
3101
+ - ''
3102
+ - ''
3103
+ - ''
3104
+ - ''
3105
+ - ''
3106
+ 125122:
3107
+ - 125122
3108
+ - MENDE KIKAKUI SYLLABLE M170 NYUN
3109
+ - Lo
3110
+ - '0'
3111
+ - R
3112
+ - ''
3113
+ - ''
3114
+ - ''
3115
+ - ''
3116
+ - N
3117
+ - ''
3118
+ - ''
3119
+ - ''
3120
+ - ''
3121
+ - ''
3122
+ 125123:
3123
+ - 125123
3124
+ - MENDE KIKAKUI SYLLABLE M098 NYEN
3125
+ - Lo
3126
+ - '0'
3127
+ - R
3128
+ - ''
3129
+ - ''
3130
+ - ''
3131
+ - ''
3132
+ - N
3133
+ - ''
3134
+ - ''
3135
+ - ''
3136
+ - ''
3137
+ - ''
3138
+ 125124:
3139
+ - 125124
3140
+ - MENDE KIKAKUI SYLLABLE M060 NYON
3141
+ - Lo
3142
+ - '0'
3143
+ - R
3144
+ - ''
3145
+ - ''
3146
+ - ''
3147
+ - ''
3148
+ - N
3149
+ - ''
3150
+ - ''
3151
+ - ''
3152
+ - ''
3153
+ - ''
3154
+ 125127:
3155
+ - 125127
3156
+ - MENDE KIKAKUI DIGIT ONE
3157
+ - 'No'
3158
+ - '0'
3159
+ - R
3160
+ - ''
3161
+ - ''
3162
+ - ''
3163
+ - '1'
3164
+ - N
3165
+ - ''
3166
+ - ''
3167
+ - ''
3168
+ - ''
3169
+ - ''
3170
+ 125128:
3171
+ - 125128
3172
+ - MENDE KIKAKUI DIGIT TWO
3173
+ - 'No'
3174
+ - '0'
3175
+ - R
3176
+ - ''
3177
+ - ''
3178
+ - ''
3179
+ - '2'
3180
+ - N
3181
+ - ''
3182
+ - ''
3183
+ - ''
3184
+ - ''
3185
+ - ''
3186
+ 125129:
3187
+ - 125129
3188
+ - MENDE KIKAKUI DIGIT THREE
3189
+ - 'No'
3190
+ - '0'
3191
+ - R
3192
+ - ''
3193
+ - ''
3194
+ - ''
3195
+ - '3'
3196
+ - N
3197
+ - ''
3198
+ - ''
3199
+ - ''
3200
+ - ''
3201
+ - ''
3202
+ 125130:
3203
+ - 125130
3204
+ - MENDE KIKAKUI DIGIT FOUR
3205
+ - 'No'
3206
+ - '0'
3207
+ - R
3208
+ - ''
3209
+ - ''
3210
+ - ''
3211
+ - '4'
3212
+ - N
3213
+ - ''
3214
+ - ''
3215
+ - ''
3216
+ - ''
3217
+ - ''
3218
+ 125131:
3219
+ - 125131
3220
+ - MENDE KIKAKUI DIGIT FIVE
3221
+ - 'No'
3222
+ - '0'
3223
+ - R
3224
+ - ''
3225
+ - ''
3226
+ - ''
3227
+ - '5'
3228
+ - N
3229
+ - ''
3230
+ - ''
3231
+ - ''
3232
+ - ''
3233
+ - ''
3234
+ 125132:
3235
+ - 125132
3236
+ - MENDE KIKAKUI DIGIT SIX
3237
+ - 'No'
3238
+ - '0'
3239
+ - R
3240
+ - ''
3241
+ - ''
3242
+ - ''
3243
+ - '6'
3244
+ - N
3245
+ - ''
3246
+ - ''
3247
+ - ''
3248
+ - ''
3249
+ - ''
3250
+ 125133:
3251
+ - 125133
3252
+ - MENDE KIKAKUI DIGIT SEVEN
3253
+ - 'No'
3254
+ - '0'
3255
+ - R
3256
+ - ''
3257
+ - ''
3258
+ - ''
3259
+ - '7'
3260
+ - N
3261
+ - ''
3262
+ - ''
3263
+ - ''
3264
+ - ''
3265
+ - ''
3266
+ 125134:
3267
+ - 125134
3268
+ - MENDE KIKAKUI DIGIT EIGHT
3269
+ - 'No'
3270
+ - '0'
3271
+ - R
3272
+ - ''
3273
+ - ''
3274
+ - ''
3275
+ - '8'
3276
+ - N
3277
+ - ''
3278
+ - ''
3279
+ - ''
3280
+ - ''
3281
+ - ''
3282
+ 125135:
3283
+ - 125135
3284
+ - MENDE KIKAKUI DIGIT NINE
3285
+ - 'No'
3286
+ - '0'
3287
+ - R
3288
+ - ''
3289
+ - ''
3290
+ - ''
3291
+ - '9'
3292
+ - N
3293
+ - ''
3294
+ - ''
3295
+ - ''
3296
+ - ''
3297
+ - ''
3298
+ 125136:
3299
+ - 125136
3300
+ - MENDE KIKAKUI COMBINING NUMBER TEENS
3301
+ - Mn
3302
+ - '220'
3303
+ - NSM
3304
+ - ''
3305
+ - ''
3306
+ - ''
3307
+ - ''
3308
+ - N
3309
+ - ''
3310
+ - ''
3311
+ - ''
3312
+ - ''
3313
+ - ''
3314
+ 125137:
3315
+ - 125137
3316
+ - MENDE KIKAKUI COMBINING NUMBER TENS
3317
+ - Mn
3318
+ - '220'
3319
+ - NSM
3320
+ - ''
3321
+ - ''
3322
+ - ''
3323
+ - ''
3324
+ - N
3325
+ - ''
3326
+ - ''
3327
+ - ''
3328
+ - ''
3329
+ - ''
3330
+ 125138:
3331
+ - 125138
3332
+ - MENDE KIKAKUI COMBINING NUMBER HUNDREDS
3333
+ - Mn
3334
+ - '220'
3335
+ - NSM
3336
+ - ''
3337
+ - ''
3338
+ - ''
3339
+ - ''
3340
+ - N
3341
+ - ''
3342
+ - ''
3343
+ - ''
3344
+ - ''
3345
+ - ''
3346
+ 125139:
3347
+ - 125139
3348
+ - MENDE KIKAKUI COMBINING NUMBER THOUSANDS
3349
+ - Mn
3350
+ - '220'
3351
+ - NSM
3352
+ - ''
3353
+ - ''
3354
+ - ''
3355
+ - ''
3356
+ - N
3357
+ - ''
3358
+ - ''
3359
+ - ''
3360
+ - ''
3361
+ - ''
3362
+ 125140:
3363
+ - 125140
3364
+ - MENDE KIKAKUI COMBINING NUMBER TEN THOUSANDS
3365
+ - Mn
3366
+ - '220'
3367
+ - NSM
3368
+ - ''
3369
+ - ''
3370
+ - ''
3371
+ - ''
3372
+ - N
3373
+ - ''
3374
+ - ''
3375
+ - ''
3376
+ - ''
3377
+ - ''
3378
+ 125141:
3379
+ - 125141
3380
+ - MENDE KIKAKUI COMBINING NUMBER HUNDRED THOUSANDS
3381
+ - Mn
3382
+ - '220'
3383
+ - NSM
3384
+ - ''
3385
+ - ''
3386
+ - ''
3387
+ - ''
3388
+ - N
3389
+ - ''
3390
+ - ''
3391
+ - ''
3392
+ - ''
3393
+ - ''
3394
+ 125142:
3395
+ - 125142
3396
+ - MENDE KIKAKUI COMBINING NUMBER MILLIONS
3397
+ - Mn
3398
+ - '220'
3399
+ - NSM
3400
+ - ''
3401
+ - ''
3402
+ - ''
3403
+ - ''
3404
+ - N
3405
+ - ''
3406
+ - ''
3407
+ - ''
3408
+ - ''
3409
+ - ''