isomorfeus-ferret 0.12.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (222) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE +612 -0
  3. data/README.md +44 -0
  4. data/ext/isomorfeus_ferret_ext/benchmark.c +223 -0
  5. data/ext/isomorfeus_ferret_ext/benchmark.h +45 -0
  6. data/ext/isomorfeus_ferret_ext/benchmarks_all.h +25 -0
  7. data/ext/isomorfeus_ferret_ext/bm_bitvector.c +123 -0
  8. data/ext/isomorfeus_ferret_ext/bm_hash.c +118 -0
  9. data/ext/isomorfeus_ferret_ext/bm_micro_string.c +40 -0
  10. data/ext/isomorfeus_ferret_ext/bm_store.c +93 -0
  11. data/ext/isomorfeus_ferret_ext/email.rl +21 -0
  12. data/ext/isomorfeus_ferret_ext/extconf.rb +5 -0
  13. data/ext/isomorfeus_ferret_ext/fio_tmpfile.h +53 -0
  14. data/ext/isomorfeus_ferret_ext/frb_analysis.c +2577 -0
  15. data/ext/isomorfeus_ferret_ext/frb_index.c +3457 -0
  16. data/ext/isomorfeus_ferret_ext/frb_lang.c +9 -0
  17. data/ext/isomorfeus_ferret_ext/frb_lang.h +17 -0
  18. data/ext/isomorfeus_ferret_ext/frb_qparser.c +629 -0
  19. data/ext/isomorfeus_ferret_ext/frb_search.c +4460 -0
  20. data/ext/isomorfeus_ferret_ext/frb_store.c +515 -0
  21. data/ext/isomorfeus_ferret_ext/frb_threading.h +30 -0
  22. data/ext/isomorfeus_ferret_ext/frb_utils.c +1127 -0
  23. data/ext/isomorfeus_ferret_ext/frt_analysis.c +1644 -0
  24. data/ext/isomorfeus_ferret_ext/frt_analysis.h +247 -0
  25. data/ext/isomorfeus_ferret_ext/frt_array.c +124 -0
  26. data/ext/isomorfeus_ferret_ext/frt_array.h +54 -0
  27. data/ext/isomorfeus_ferret_ext/frt_bitvector.c +95 -0
  28. data/ext/isomorfeus_ferret_ext/frt_bitvector.h +586 -0
  29. data/ext/isomorfeus_ferret_ext/frt_compound_io.c +374 -0
  30. data/ext/isomorfeus_ferret_ext/frt_config.h +44 -0
  31. data/ext/isomorfeus_ferret_ext/frt_document.c +134 -0
  32. data/ext/isomorfeus_ferret_ext/frt_document.h +52 -0
  33. data/ext/isomorfeus_ferret_ext/frt_except.c +95 -0
  34. data/ext/isomorfeus_ferret_ext/frt_except.h +188 -0
  35. data/ext/isomorfeus_ferret_ext/frt_field_index.c +233 -0
  36. data/ext/isomorfeus_ferret_ext/frt_field_index.h +42 -0
  37. data/ext/isomorfeus_ferret_ext/frt_filter.c +157 -0
  38. data/ext/isomorfeus_ferret_ext/frt_fs_store.c +502 -0
  39. data/ext/isomorfeus_ferret_ext/frt_global.c +427 -0
  40. data/ext/isomorfeus_ferret_ext/frt_global.h +290 -0
  41. data/ext/isomorfeus_ferret_ext/frt_hash.c +518 -0
  42. data/ext/isomorfeus_ferret_ext/frt_hash.h +466 -0
  43. data/ext/isomorfeus_ferret_ext/frt_hashset.c +191 -0
  44. data/ext/isomorfeus_ferret_ext/frt_hashset.h +206 -0
  45. data/ext/isomorfeus_ferret_ext/frt_helper.c +62 -0
  46. data/ext/isomorfeus_ferret_ext/frt_helper.h +13 -0
  47. data/ext/isomorfeus_ferret_ext/frt_ind.c +353 -0
  48. data/ext/isomorfeus_ferret_ext/frt_ind.h +54 -0
  49. data/ext/isomorfeus_ferret_ext/frt_index.c +6377 -0
  50. data/ext/isomorfeus_ferret_ext/frt_index.h +880 -0
  51. data/ext/isomorfeus_ferret_ext/frt_lang.c +104 -0
  52. data/ext/isomorfeus_ferret_ext/frt_lang.h +44 -0
  53. data/ext/isomorfeus_ferret_ext/frt_mempool.c +87 -0
  54. data/ext/isomorfeus_ferret_ext/frt_mempool.h +33 -0
  55. data/ext/isomorfeus_ferret_ext/frt_multimapper.c +349 -0
  56. data/ext/isomorfeus_ferret_ext/frt_multimapper.h +52 -0
  57. data/ext/isomorfeus_ferret_ext/frt_posh.c +1006 -0
  58. data/ext/isomorfeus_ferret_ext/frt_posh.h +973 -0
  59. data/ext/isomorfeus_ferret_ext/frt_priorityqueue.c +147 -0
  60. data/ext/isomorfeus_ferret_ext/frt_priorityqueue.h +147 -0
  61. data/ext/isomorfeus_ferret_ext/frt_q_boolean.c +1612 -0
  62. data/ext/isomorfeus_ferret_ext/frt_q_const_score.c +157 -0
  63. data/ext/isomorfeus_ferret_ext/frt_q_filtered_query.c +209 -0
  64. data/ext/isomorfeus_ferret_ext/frt_q_fuzzy.c +281 -0
  65. data/ext/isomorfeus_ferret_ext/frt_q_match_all.c +147 -0
  66. data/ext/isomorfeus_ferret_ext/frt_q_multi_term.c +672 -0
  67. data/ext/isomorfeus_ferret_ext/frt_q_parser.c +3084 -0
  68. data/ext/isomorfeus_ferret_ext/frt_q_phrase.c +1182 -0
  69. data/ext/isomorfeus_ferret_ext/frt_q_prefix.c +98 -0
  70. data/ext/isomorfeus_ferret_ext/frt_q_range.c +665 -0
  71. data/ext/isomorfeus_ferret_ext/frt_q_span.c +2386 -0
  72. data/ext/isomorfeus_ferret_ext/frt_q_term.c +311 -0
  73. data/ext/isomorfeus_ferret_ext/frt_q_wildcard.c +166 -0
  74. data/ext/isomorfeus_ferret_ext/frt_ram_store.c +460 -0
  75. data/ext/isomorfeus_ferret_ext/frt_scanner.c +899 -0
  76. data/ext/isomorfeus_ferret_ext/frt_scanner.h +28 -0
  77. data/ext/isomorfeus_ferret_ext/frt_scanner_mb.c +6705 -0
  78. data/ext/isomorfeus_ferret_ext/frt_scanner_utf8.c +4419 -0
  79. data/ext/isomorfeus_ferret_ext/frt_search.c +1824 -0
  80. data/ext/isomorfeus_ferret_ext/frt_search.h +924 -0
  81. data/ext/isomorfeus_ferret_ext/frt_similarity.c +150 -0
  82. data/ext/isomorfeus_ferret_ext/frt_similarity.h +79 -0
  83. data/ext/isomorfeus_ferret_ext/frt_sort.c +796 -0
  84. data/ext/isomorfeus_ferret_ext/frt_stopwords.c +395 -0
  85. data/ext/isomorfeus_ferret_ext/frt_store.c +680 -0
  86. data/ext/isomorfeus_ferret_ext/frt_store.h +789 -0
  87. data/ext/isomorfeus_ferret_ext/frt_term_vectors.c +72 -0
  88. data/ext/isomorfeus_ferret_ext/frt_threading.h +23 -0
  89. data/ext/isomorfeus_ferret_ext/frt_win32.h +54 -0
  90. data/ext/isomorfeus_ferret_ext/isomorfeus_ferret.c +409 -0
  91. data/ext/isomorfeus_ferret_ext/isomorfeus_ferret.h +95 -0
  92. data/ext/isomorfeus_ferret_ext/libstemmer.c +93 -0
  93. data/ext/isomorfeus_ferret_ext/libstemmer.h +73 -0
  94. data/ext/isomorfeus_ferret_ext/q_parser.y +1366 -0
  95. data/ext/isomorfeus_ferret_ext/scanner.h +28 -0
  96. data/ext/isomorfeus_ferret_ext/scanner.in +43 -0
  97. data/ext/isomorfeus_ferret_ext/scanner.rl +84 -0
  98. data/ext/isomorfeus_ferret_ext/scanner_mb.rl +200 -0
  99. data/ext/isomorfeus_ferret_ext/scanner_utf8.rl +85 -0
  100. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_danish.c +324 -0
  101. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_danish.h +7 -0
  102. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_dutch.c +610 -0
  103. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_dutch.h +6 -0
  104. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_english.c +1104 -0
  105. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_english.h +6 -0
  106. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_finnish.c +749 -0
  107. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_finnish.h +7 -0
  108. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_french.c +1233 -0
  109. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_french.h +6 -0
  110. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_german.c +490 -0
  111. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_german.h +6 -0
  112. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_hungarian.c +1217 -0
  113. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_hungarian.h +7 -0
  114. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_italian.c +1052 -0
  115. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_italian.h +6 -0
  116. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_norwegian.c +283 -0
  117. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_norwegian.h +6 -0
  118. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_porter.c +735 -0
  119. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_porter.h +6 -0
  120. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_portuguese.c +1003 -0
  121. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_portuguese.h +7 -0
  122. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_spanish.c +1079 -0
  123. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_spanish.h +6 -0
  124. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_swedish.c +293 -0
  125. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_swedish.h +6 -0
  126. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_2_romanian.c +984 -0
  127. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_2_romanian.h +6 -0
  128. data/ext/isomorfeus_ferret_ext/stem_KOI8_R_russian.c +686 -0
  129. data/ext/isomorfeus_ferret_ext/stem_KOI8_R_russian.h +6 -0
  130. data/ext/isomorfeus_ferret_ext/stem_UTF_8_danish.c +325 -0
  131. data/ext/isomorfeus_ferret_ext/stem_UTF_8_danish.h +6 -0
  132. data/ext/isomorfeus_ferret_ext/stem_UTF_8_dutch.c +620 -0
  133. data/ext/isomorfeus_ferret_ext/stem_UTF_8_dutch.h +6 -0
  134. data/ext/isomorfeus_ferret_ext/stem_UTF_8_english.c +1111 -0
  135. data/ext/isomorfeus_ferret_ext/stem_UTF_8_english.h +6 -0
  136. data/ext/isomorfeus_ferret_ext/stem_UTF_8_finnish.c +754 -0
  137. data/ext/isomorfeus_ferret_ext/stem_UTF_8_finnish.h +6 -0
  138. data/ext/isomorfeus_ferret_ext/stem_UTF_8_french.c +1242 -0
  139. data/ext/isomorfeus_ferret_ext/stem_UTF_8_french.h +6 -0
  140. data/ext/isomorfeus_ferret_ext/stem_UTF_8_german.c +495 -0
  141. data/ext/isomorfeus_ferret_ext/stem_UTF_8_german.h +6 -0
  142. data/ext/isomorfeus_ferret_ext/stem_UTF_8_hungarian.c +1220 -0
  143. data/ext/isomorfeus_ferret_ext/stem_UTF_8_hungarian.h +6 -0
  144. data/ext/isomorfeus_ferret_ext/stem_UTF_8_italian.c +1059 -0
  145. data/ext/isomorfeus_ferret_ext/stem_UTF_8_italian.h +6 -0
  146. data/ext/isomorfeus_ferret_ext/stem_UTF_8_norwegian.c +285 -0
  147. data/ext/isomorfeus_ferret_ext/stem_UTF_8_norwegian.h +6 -0
  148. data/ext/isomorfeus_ferret_ext/stem_UTF_8_porter.c +741 -0
  149. data/ext/isomorfeus_ferret_ext/stem_UTF_8_porter.h +6 -0
  150. data/ext/isomorfeus_ferret_ext/stem_UTF_8_portuguese.c +1009 -0
  151. data/ext/isomorfeus_ferret_ext/stem_UTF_8_portuguese.h +6 -0
  152. data/ext/isomorfeus_ferret_ext/stem_UTF_8_romanian.c +990 -0
  153. data/ext/isomorfeus_ferret_ext/stem_UTF_8_romanian.h +6 -0
  154. data/ext/isomorfeus_ferret_ext/stem_UTF_8_russian.c +680 -0
  155. data/ext/isomorfeus_ferret_ext/stem_UTF_8_russian.h +6 -0
  156. data/ext/isomorfeus_ferret_ext/stem_UTF_8_spanish.c +1083 -0
  157. data/ext/isomorfeus_ferret_ext/stem_UTF_8_spanish.h +6 -0
  158. data/ext/isomorfeus_ferret_ext/stem_UTF_8_swedish.c +294 -0
  159. data/ext/isomorfeus_ferret_ext/stem_UTF_8_swedish.h +6 -0
  160. data/ext/isomorfeus_ferret_ext/stem_UTF_8_turkish.c +2191 -0
  161. data/ext/isomorfeus_ferret_ext/stem_UTF_8_turkish.h +6 -0
  162. data/ext/isomorfeus_ferret_ext/stem_api.c +66 -0
  163. data/ext/isomorfeus_ferret_ext/stem_api.h +26 -0
  164. data/ext/isomorfeus_ferret_ext/stem_header.h +57 -0
  165. data/ext/isomorfeus_ferret_ext/stem_modules.h +190 -0
  166. data/ext/isomorfeus_ferret_ext/stem_modules.txt +50 -0
  167. data/ext/isomorfeus_ferret_ext/stem_utilities.c +478 -0
  168. data/ext/isomorfeus_ferret_ext/test.c +850 -0
  169. data/ext/isomorfeus_ferret_ext/test.h +416 -0
  170. data/ext/isomorfeus_ferret_ext/test_1710.c +63 -0
  171. data/ext/isomorfeus_ferret_ext/test_analysis.c +1221 -0
  172. data/ext/isomorfeus_ferret_ext/test_array.c +272 -0
  173. data/ext/isomorfeus_ferret_ext/test_bitvector.c +600 -0
  174. data/ext/isomorfeus_ferret_ext/test_compound_io.c +170 -0
  175. data/ext/isomorfeus_ferret_ext/test_document.c +156 -0
  176. data/ext/isomorfeus_ferret_ext/test_except.c +244 -0
  177. data/ext/isomorfeus_ferret_ext/test_fields.c +522 -0
  178. data/ext/isomorfeus_ferret_ext/test_file_deleter.c +185 -0
  179. data/ext/isomorfeus_ferret_ext/test_filter.c +331 -0
  180. data/ext/isomorfeus_ferret_ext/test_fs_store.c +25 -0
  181. data/ext/isomorfeus_ferret_ext/test_global.c +299 -0
  182. data/ext/isomorfeus_ferret_ext/test_hash.c +485 -0
  183. data/ext/isomorfeus_ferret_ext/test_hashset.c +288 -0
  184. data/ext/isomorfeus_ferret_ext/test_helper.c +47 -0
  185. data/ext/isomorfeus_ferret_ext/test_highlighter.c +548 -0
  186. data/ext/isomorfeus_ferret_ext/test_index.c +2323 -0
  187. data/ext/isomorfeus_ferret_ext/test_lang.c +74 -0
  188. data/ext/isomorfeus_ferret_ext/test_mempool.c +102 -0
  189. data/ext/isomorfeus_ferret_ext/test_multimapper.c +64 -0
  190. data/ext/isomorfeus_ferret_ext/test_priorityqueue.c +213 -0
  191. data/ext/isomorfeus_ferret_ext/test_q_const_score.c +84 -0
  192. data/ext/isomorfeus_ferret_ext/test_q_filtered.c +61 -0
  193. data/ext/isomorfeus_ferret_ext/test_q_fuzzy.c +241 -0
  194. data/ext/isomorfeus_ferret_ext/test_q_parser.c +464 -0
  195. data/ext/isomorfeus_ferret_ext/test_q_span.c +575 -0
  196. data/ext/isomorfeus_ferret_ext/test_ram_store.c +77 -0
  197. data/ext/isomorfeus_ferret_ext/test_search.c +1874 -0
  198. data/ext/isomorfeus_ferret_ext/test_segments.c +167 -0
  199. data/ext/isomorfeus_ferret_ext/test_similarity.c +25 -0
  200. data/ext/isomorfeus_ferret_ext/test_sort.c +333 -0
  201. data/ext/isomorfeus_ferret_ext/test_store.c +591 -0
  202. data/ext/isomorfeus_ferret_ext/test_store.h +3 -0
  203. data/ext/isomorfeus_ferret_ext/test_term.c +351 -0
  204. data/ext/isomorfeus_ferret_ext/test_term_vectors.c +373 -0
  205. data/ext/isomorfeus_ferret_ext/test_test.c +83 -0
  206. data/ext/isomorfeus_ferret_ext/test_threading.c +188 -0
  207. data/ext/isomorfeus_ferret_ext/testhelper.c +561 -0
  208. data/ext/isomorfeus_ferret_ext/testhelper.h +25 -0
  209. data/ext/isomorfeus_ferret_ext/tests_all.h +87 -0
  210. data/ext/isomorfeus_ferret_ext/uchar-ucs4.rl +1854 -0
  211. data/ext/isomorfeus_ferret_ext/uchar-utf8.rl +1999 -0
  212. data/ext/isomorfeus_ferret_ext/url.rl +27 -0
  213. data/ext/isomorfeus_ferret_ext/word_list.h +15156 -0
  214. data/lib/isomorfeus/ferret/document.rb +132 -0
  215. data/lib/isomorfeus/ferret/field_symbol.rb +85 -0
  216. data/lib/isomorfeus/ferret/index/field_infos.rb +48 -0
  217. data/lib/isomorfeus/ferret/index/index.rb +970 -0
  218. data/lib/isomorfeus/ferret/monitor.rb +323 -0
  219. data/lib/isomorfeus/ferret/stdlib_patches.rb +151 -0
  220. data/lib/isomorfeus/ferret/version.rb +5 -0
  221. data/lib/isomorfeus-ferret.rb +8 -0
  222. metadata +307 -0
@@ -0,0 +1,990 @@
1
+ /* This file was generated automatically by the Snowball to ANSI C compiler */
2
+
3
+ #include "stem_header.h"
4
+
5
+ extern int romanian_UTF_8_stem(struct SN_env * z);
6
+
7
+ static int r_vowel_suffix(struct SN_env * z);
8
+ static int r_verb_suffix(struct SN_env * z);
9
+ static int r_combo_suffix(struct SN_env * z);
10
+ static int r_standard_suffix(struct SN_env * z);
11
+ static int r_step_0(struct SN_env * z);
12
+ static int r_R2(struct SN_env * z);
13
+ static int r_R1(struct SN_env * z);
14
+ static int r_RV(struct SN_env * z);
15
+ static int r_mark_regions(struct SN_env * z);
16
+ static int r_postlude(struct SN_env * z);
17
+ static int r_prelude(struct SN_env * z);
18
+
19
+ extern struct SN_env * romanian_UTF_8_create_env(void);
20
+ extern void romanian_UTF_8_close_env(struct SN_env * z);
21
+
22
+ static const symbol s_0_1[1] = { 'I' };
23
+ static const symbol s_0_2[1] = { 'U' };
24
+
25
+ static const struct among a_0[3] =
26
+ {
27
+ /* 0 */ { 0, 0, -1, 3, 0},
28
+ /* 1 */ { 1, s_0_1, 0, 1, 0},
29
+ /* 2 */ { 1, s_0_2, 0, 2, 0}
30
+ };
31
+
32
+ static const symbol s_1_0[2] = { 'e', 'a' };
33
+ static const symbol s_1_1[5] = { 'a', 0xC5, 0xA3, 'i', 'a' };
34
+ static const symbol s_1_2[3] = { 'a', 'u', 'a' };
35
+ static const symbol s_1_3[3] = { 'i', 'u', 'a' };
36
+ static const symbol s_1_4[5] = { 'a', 0xC5, 0xA3, 'i', 'e' };
37
+ static const symbol s_1_5[3] = { 'e', 'l', 'e' };
38
+ static const symbol s_1_6[3] = { 'i', 'l', 'e' };
39
+ static const symbol s_1_7[4] = { 'i', 'i', 'l', 'e' };
40
+ static const symbol s_1_8[3] = { 'i', 'e', 'i' };
41
+ static const symbol s_1_9[4] = { 'a', 't', 'e', 'i' };
42
+ static const symbol s_1_10[2] = { 'i', 'i' };
43
+ static const symbol s_1_11[4] = { 'u', 'l', 'u', 'i' };
44
+ static const symbol s_1_12[2] = { 'u', 'l' };
45
+ static const symbol s_1_13[4] = { 'e', 'l', 'o', 'r' };
46
+ static const symbol s_1_14[4] = { 'i', 'l', 'o', 'r' };
47
+ static const symbol s_1_15[5] = { 'i', 'i', 'l', 'o', 'r' };
48
+
49
+ static const struct among a_1[16] =
50
+ {
51
+ /* 0 */ { 2, s_1_0, -1, 3, 0},
52
+ /* 1 */ { 5, s_1_1, -1, 7, 0},
53
+ /* 2 */ { 3, s_1_2, -1, 2, 0},
54
+ /* 3 */ { 3, s_1_3, -1, 4, 0},
55
+ /* 4 */ { 5, s_1_4, -1, 7, 0},
56
+ /* 5 */ { 3, s_1_5, -1, 3, 0},
57
+ /* 6 */ { 3, s_1_6, -1, 5, 0},
58
+ /* 7 */ { 4, s_1_7, 6, 4, 0},
59
+ /* 8 */ { 3, s_1_8, -1, 4, 0},
60
+ /* 9 */ { 4, s_1_9, -1, 6, 0},
61
+ /* 10 */ { 2, s_1_10, -1, 4, 0},
62
+ /* 11 */ { 4, s_1_11, -1, 1, 0},
63
+ /* 12 */ { 2, s_1_12, -1, 1, 0},
64
+ /* 13 */ { 4, s_1_13, -1, 3, 0},
65
+ /* 14 */ { 4, s_1_14, -1, 4, 0},
66
+ /* 15 */ { 5, s_1_15, 14, 4, 0}
67
+ };
68
+
69
+ static const symbol s_2_0[5] = { 'i', 'c', 'a', 'l', 'a' };
70
+ static const symbol s_2_1[5] = { 'i', 'c', 'i', 'v', 'a' };
71
+ static const symbol s_2_2[5] = { 'a', 't', 'i', 'v', 'a' };
72
+ static const symbol s_2_3[5] = { 'i', 't', 'i', 'v', 'a' };
73
+ static const symbol s_2_4[5] = { 'i', 'c', 'a', 'l', 'e' };
74
+ static const symbol s_2_5[7] = { 'a', 0xC5, 0xA3, 'i', 'u', 'n', 'e' };
75
+ static const symbol s_2_6[7] = { 'i', 0xC5, 0xA3, 'i', 'u', 'n', 'e' };
76
+ static const symbol s_2_7[6] = { 'a', 't', 'o', 'a', 'r', 'e' };
77
+ static const symbol s_2_8[6] = { 'i', 't', 'o', 'a', 'r', 'e' };
78
+ static const symbol s_2_9[7] = { 0xC4, 0x83, 't', 'o', 'a', 'r', 'e' };
79
+ static const symbol s_2_10[7] = { 'i', 'c', 'i', 't', 'a', 't', 'e' };
80
+ static const symbol s_2_11[9] = { 'a', 'b', 'i', 'l', 'i', 't', 'a', 't', 'e' };
81
+ static const symbol s_2_12[9] = { 'i', 'b', 'i', 'l', 'i', 't', 'a', 't', 'e' };
82
+ static const symbol s_2_13[7] = { 'i', 'v', 'i', 't', 'a', 't', 'e' };
83
+ static const symbol s_2_14[5] = { 'i', 'c', 'i', 'v', 'e' };
84
+ static const symbol s_2_15[5] = { 'a', 't', 'i', 'v', 'e' };
85
+ static const symbol s_2_16[5] = { 'i', 't', 'i', 'v', 'e' };
86
+ static const symbol s_2_17[5] = { 'i', 'c', 'a', 'l', 'i' };
87
+ static const symbol s_2_18[5] = { 'a', 't', 'o', 'r', 'i' };
88
+ static const symbol s_2_19[7] = { 'i', 'c', 'a', 't', 'o', 'r', 'i' };
89
+ static const symbol s_2_20[5] = { 'i', 't', 'o', 'r', 'i' };
90
+ static const symbol s_2_21[6] = { 0xC4, 0x83, 't', 'o', 'r', 'i' };
91
+ static const symbol s_2_22[7] = { 'i', 'c', 'i', 't', 'a', 't', 'i' };
92
+ static const symbol s_2_23[9] = { 'a', 'b', 'i', 'l', 'i', 't', 'a', 't', 'i' };
93
+ static const symbol s_2_24[7] = { 'i', 'v', 'i', 't', 'a', 't', 'i' };
94
+ static const symbol s_2_25[5] = { 'i', 'c', 'i', 'v', 'i' };
95
+ static const symbol s_2_26[5] = { 'a', 't', 'i', 'v', 'i' };
96
+ static const symbol s_2_27[5] = { 'i', 't', 'i', 'v', 'i' };
97
+ static const symbol s_2_28[7] = { 'i', 'c', 'i', 't', 0xC4, 0x83, 'i' };
98
+ static const symbol s_2_29[9] = { 'a', 'b', 'i', 'l', 'i', 't', 0xC4, 0x83, 'i' };
99
+ static const symbol s_2_30[7] = { 'i', 'v', 'i', 't', 0xC4, 0x83, 'i' };
100
+ static const symbol s_2_31[9] = { 'i', 'c', 'i', 't', 0xC4, 0x83, 0xC5, 0xA3, 'i' };
101
+ static const symbol s_2_32[11] = { 'a', 'b', 'i', 'l', 'i', 't', 0xC4, 0x83, 0xC5, 0xA3, 'i' };
102
+ static const symbol s_2_33[9] = { 'i', 'v', 'i', 't', 0xC4, 0x83, 0xC5, 0xA3, 'i' };
103
+ static const symbol s_2_34[4] = { 'i', 'c', 'a', 'l' };
104
+ static const symbol s_2_35[4] = { 'a', 't', 'o', 'r' };
105
+ static const symbol s_2_36[6] = { 'i', 'c', 'a', 't', 'o', 'r' };
106
+ static const symbol s_2_37[4] = { 'i', 't', 'o', 'r' };
107
+ static const symbol s_2_38[5] = { 0xC4, 0x83, 't', 'o', 'r' };
108
+ static const symbol s_2_39[4] = { 'i', 'c', 'i', 'v' };
109
+ static const symbol s_2_40[4] = { 'a', 't', 'i', 'v' };
110
+ static const symbol s_2_41[4] = { 'i', 't', 'i', 'v' };
111
+ static const symbol s_2_42[6] = { 'i', 'c', 'a', 'l', 0xC4, 0x83 };
112
+ static const symbol s_2_43[6] = { 'i', 'c', 'i', 'v', 0xC4, 0x83 };
113
+ static const symbol s_2_44[6] = { 'a', 't', 'i', 'v', 0xC4, 0x83 };
114
+ static const symbol s_2_45[6] = { 'i', 't', 'i', 'v', 0xC4, 0x83 };
115
+
116
+ static const struct among a_2[46] =
117
+ {
118
+ /* 0 */ { 5, s_2_0, -1, 4, 0},
119
+ /* 1 */ { 5, s_2_1, -1, 4, 0},
120
+ /* 2 */ { 5, s_2_2, -1, 5, 0},
121
+ /* 3 */ { 5, s_2_3, -1, 6, 0},
122
+ /* 4 */ { 5, s_2_4, -1, 4, 0},
123
+ /* 5 */ { 7, s_2_5, -1, 5, 0},
124
+ /* 6 */ { 7, s_2_6, -1, 6, 0},
125
+ /* 7 */ { 6, s_2_7, -1, 5, 0},
126
+ /* 8 */ { 6, s_2_8, -1, 6, 0},
127
+ /* 9 */ { 7, s_2_9, -1, 5, 0},
128
+ /* 10 */ { 7, s_2_10, -1, 4, 0},
129
+ /* 11 */ { 9, s_2_11, -1, 1, 0},
130
+ /* 12 */ { 9, s_2_12, -1, 2, 0},
131
+ /* 13 */ { 7, s_2_13, -1, 3, 0},
132
+ /* 14 */ { 5, s_2_14, -1, 4, 0},
133
+ /* 15 */ { 5, s_2_15, -1, 5, 0},
134
+ /* 16 */ { 5, s_2_16, -1, 6, 0},
135
+ /* 17 */ { 5, s_2_17, -1, 4, 0},
136
+ /* 18 */ { 5, s_2_18, -1, 5, 0},
137
+ /* 19 */ { 7, s_2_19, 18, 4, 0},
138
+ /* 20 */ { 5, s_2_20, -1, 6, 0},
139
+ /* 21 */ { 6, s_2_21, -1, 5, 0},
140
+ /* 22 */ { 7, s_2_22, -1, 4, 0},
141
+ /* 23 */ { 9, s_2_23, -1, 1, 0},
142
+ /* 24 */ { 7, s_2_24, -1, 3, 0},
143
+ /* 25 */ { 5, s_2_25, -1, 4, 0},
144
+ /* 26 */ { 5, s_2_26, -1, 5, 0},
145
+ /* 27 */ { 5, s_2_27, -1, 6, 0},
146
+ /* 28 */ { 7, s_2_28, -1, 4, 0},
147
+ /* 29 */ { 9, s_2_29, -1, 1, 0},
148
+ /* 30 */ { 7, s_2_30, -1, 3, 0},
149
+ /* 31 */ { 9, s_2_31, -1, 4, 0},
150
+ /* 32 */ { 11, s_2_32, -1, 1, 0},
151
+ /* 33 */ { 9, s_2_33, -1, 3, 0},
152
+ /* 34 */ { 4, s_2_34, -1, 4, 0},
153
+ /* 35 */ { 4, s_2_35, -1, 5, 0},
154
+ /* 36 */ { 6, s_2_36, 35, 4, 0},
155
+ /* 37 */ { 4, s_2_37, -1, 6, 0},
156
+ /* 38 */ { 5, s_2_38, -1, 5, 0},
157
+ /* 39 */ { 4, s_2_39, -1, 4, 0},
158
+ /* 40 */ { 4, s_2_40, -1, 5, 0},
159
+ /* 41 */ { 4, s_2_41, -1, 6, 0},
160
+ /* 42 */ { 6, s_2_42, -1, 4, 0},
161
+ /* 43 */ { 6, s_2_43, -1, 4, 0},
162
+ /* 44 */ { 6, s_2_44, -1, 5, 0},
163
+ /* 45 */ { 6, s_2_45, -1, 6, 0}
164
+ };
165
+
166
+ static const symbol s_3_0[3] = { 'i', 'c', 'a' };
167
+ static const symbol s_3_1[5] = { 'a', 'b', 'i', 'l', 'a' };
168
+ static const symbol s_3_2[5] = { 'i', 'b', 'i', 'l', 'a' };
169
+ static const symbol s_3_3[4] = { 'o', 'a', 's', 'a' };
170
+ static const symbol s_3_4[3] = { 'a', 't', 'a' };
171
+ static const symbol s_3_5[3] = { 'i', 't', 'a' };
172
+ static const symbol s_3_6[4] = { 'a', 'n', 't', 'a' };
173
+ static const symbol s_3_7[4] = { 'i', 's', 't', 'a' };
174
+ static const symbol s_3_8[3] = { 'u', 't', 'a' };
175
+ static const symbol s_3_9[3] = { 'i', 'v', 'a' };
176
+ static const symbol s_3_10[2] = { 'i', 'c' };
177
+ static const symbol s_3_11[3] = { 'i', 'c', 'e' };
178
+ static const symbol s_3_12[5] = { 'a', 'b', 'i', 'l', 'e' };
179
+ static const symbol s_3_13[5] = { 'i', 'b', 'i', 'l', 'e' };
180
+ static const symbol s_3_14[4] = { 'i', 's', 'm', 'e' };
181
+ static const symbol s_3_15[4] = { 'i', 'u', 'n', 'e' };
182
+ static const symbol s_3_16[4] = { 'o', 'a', 's', 'e' };
183
+ static const symbol s_3_17[3] = { 'a', 't', 'e' };
184
+ static const symbol s_3_18[5] = { 'i', 't', 'a', 't', 'e' };
185
+ static const symbol s_3_19[3] = { 'i', 't', 'e' };
186
+ static const symbol s_3_20[4] = { 'a', 'n', 't', 'e' };
187
+ static const symbol s_3_21[4] = { 'i', 's', 't', 'e' };
188
+ static const symbol s_3_22[3] = { 'u', 't', 'e' };
189
+ static const symbol s_3_23[3] = { 'i', 'v', 'e' };
190
+ static const symbol s_3_24[3] = { 'i', 'c', 'i' };
191
+ static const symbol s_3_25[5] = { 'a', 'b', 'i', 'l', 'i' };
192
+ static const symbol s_3_26[5] = { 'i', 'b', 'i', 'l', 'i' };
193
+ static const symbol s_3_27[4] = { 'i', 'u', 'n', 'i' };
194
+ static const symbol s_3_28[5] = { 'a', 't', 'o', 'r', 'i' };
195
+ static const symbol s_3_29[3] = { 'o', 's', 'i' };
196
+ static const symbol s_3_30[3] = { 'a', 't', 'i' };
197
+ static const symbol s_3_31[5] = { 'i', 't', 'a', 't', 'i' };
198
+ static const symbol s_3_32[3] = { 'i', 't', 'i' };
199
+ static const symbol s_3_33[4] = { 'a', 'n', 't', 'i' };
200
+ static const symbol s_3_34[4] = { 'i', 's', 't', 'i' };
201
+ static const symbol s_3_35[3] = { 'u', 't', 'i' };
202
+ static const symbol s_3_36[5] = { 'i', 0xC5, 0x9F, 't', 'i' };
203
+ static const symbol s_3_37[3] = { 'i', 'v', 'i' };
204
+ static const symbol s_3_38[5] = { 'i', 't', 0xC4, 0x83, 'i' };
205
+ static const symbol s_3_39[4] = { 'o', 0xC5, 0x9F, 'i' };
206
+ static const symbol s_3_40[7] = { 'i', 't', 0xC4, 0x83, 0xC5, 0xA3, 'i' };
207
+ static const symbol s_3_41[4] = { 'a', 'b', 'i', 'l' };
208
+ static const symbol s_3_42[4] = { 'i', 'b', 'i', 'l' };
209
+ static const symbol s_3_43[3] = { 'i', 's', 'm' };
210
+ static const symbol s_3_44[4] = { 'a', 't', 'o', 'r' };
211
+ static const symbol s_3_45[2] = { 'o', 's' };
212
+ static const symbol s_3_46[2] = { 'a', 't' };
213
+ static const symbol s_3_47[2] = { 'i', 't' };
214
+ static const symbol s_3_48[3] = { 'a', 'n', 't' };
215
+ static const symbol s_3_49[3] = { 'i', 's', 't' };
216
+ static const symbol s_3_50[2] = { 'u', 't' };
217
+ static const symbol s_3_51[2] = { 'i', 'v' };
218
+ static const symbol s_3_52[4] = { 'i', 'c', 0xC4, 0x83 };
219
+ static const symbol s_3_53[6] = { 'a', 'b', 'i', 'l', 0xC4, 0x83 };
220
+ static const symbol s_3_54[6] = { 'i', 'b', 'i', 'l', 0xC4, 0x83 };
221
+ static const symbol s_3_55[5] = { 'o', 'a', 's', 0xC4, 0x83 };
222
+ static const symbol s_3_56[4] = { 'a', 't', 0xC4, 0x83 };
223
+ static const symbol s_3_57[4] = { 'i', 't', 0xC4, 0x83 };
224
+ static const symbol s_3_58[5] = { 'a', 'n', 't', 0xC4, 0x83 };
225
+ static const symbol s_3_59[5] = { 'i', 's', 't', 0xC4, 0x83 };
226
+ static const symbol s_3_60[4] = { 'u', 't', 0xC4, 0x83 };
227
+ static const symbol s_3_61[4] = { 'i', 'v', 0xC4, 0x83 };
228
+
229
+ static const struct among a_3[62] =
230
+ {
231
+ /* 0 */ { 3, s_3_0, -1, 1, 0},
232
+ /* 1 */ { 5, s_3_1, -1, 1, 0},
233
+ /* 2 */ { 5, s_3_2, -1, 1, 0},
234
+ /* 3 */ { 4, s_3_3, -1, 1, 0},
235
+ /* 4 */ { 3, s_3_4, -1, 1, 0},
236
+ /* 5 */ { 3, s_3_5, -1, 1, 0},
237
+ /* 6 */ { 4, s_3_6, -1, 1, 0},
238
+ /* 7 */ { 4, s_3_7, -1, 3, 0},
239
+ /* 8 */ { 3, s_3_8, -1, 1, 0},
240
+ /* 9 */ { 3, s_3_9, -1, 1, 0},
241
+ /* 10 */ { 2, s_3_10, -1, 1, 0},
242
+ /* 11 */ { 3, s_3_11, -1, 1, 0},
243
+ /* 12 */ { 5, s_3_12, -1, 1, 0},
244
+ /* 13 */ { 5, s_3_13, -1, 1, 0},
245
+ /* 14 */ { 4, s_3_14, -1, 3, 0},
246
+ /* 15 */ { 4, s_3_15, -1, 2, 0},
247
+ /* 16 */ { 4, s_3_16, -1, 1, 0},
248
+ /* 17 */ { 3, s_3_17, -1, 1, 0},
249
+ /* 18 */ { 5, s_3_18, 17, 1, 0},
250
+ /* 19 */ { 3, s_3_19, -1, 1, 0},
251
+ /* 20 */ { 4, s_3_20, -1, 1, 0},
252
+ /* 21 */ { 4, s_3_21, -1, 3, 0},
253
+ /* 22 */ { 3, s_3_22, -1, 1, 0},
254
+ /* 23 */ { 3, s_3_23, -1, 1, 0},
255
+ /* 24 */ { 3, s_3_24, -1, 1, 0},
256
+ /* 25 */ { 5, s_3_25, -1, 1, 0},
257
+ /* 26 */ { 5, s_3_26, -1, 1, 0},
258
+ /* 27 */ { 4, s_3_27, -1, 2, 0},
259
+ /* 28 */ { 5, s_3_28, -1, 1, 0},
260
+ /* 29 */ { 3, s_3_29, -1, 1, 0},
261
+ /* 30 */ { 3, s_3_30, -1, 1, 0},
262
+ /* 31 */ { 5, s_3_31, 30, 1, 0},
263
+ /* 32 */ { 3, s_3_32, -1, 1, 0},
264
+ /* 33 */ { 4, s_3_33, -1, 1, 0},
265
+ /* 34 */ { 4, s_3_34, -1, 3, 0},
266
+ /* 35 */ { 3, s_3_35, -1, 1, 0},
267
+ /* 36 */ { 5, s_3_36, -1, 3, 0},
268
+ /* 37 */ { 3, s_3_37, -1, 1, 0},
269
+ /* 38 */ { 5, s_3_38, -1, 1, 0},
270
+ /* 39 */ { 4, s_3_39, -1, 1, 0},
271
+ /* 40 */ { 7, s_3_40, -1, 1, 0},
272
+ /* 41 */ { 4, s_3_41, -1, 1, 0},
273
+ /* 42 */ { 4, s_3_42, -1, 1, 0},
274
+ /* 43 */ { 3, s_3_43, -1, 3, 0},
275
+ /* 44 */ { 4, s_3_44, -1, 1, 0},
276
+ /* 45 */ { 2, s_3_45, -1, 1, 0},
277
+ /* 46 */ { 2, s_3_46, -1, 1, 0},
278
+ /* 47 */ { 2, s_3_47, -1, 1, 0},
279
+ /* 48 */ { 3, s_3_48, -1, 1, 0},
280
+ /* 49 */ { 3, s_3_49, -1, 3, 0},
281
+ /* 50 */ { 2, s_3_50, -1, 1, 0},
282
+ /* 51 */ { 2, s_3_51, -1, 1, 0},
283
+ /* 52 */ { 4, s_3_52, -1, 1, 0},
284
+ /* 53 */ { 6, s_3_53, -1, 1, 0},
285
+ /* 54 */ { 6, s_3_54, -1, 1, 0},
286
+ /* 55 */ { 5, s_3_55, -1, 1, 0},
287
+ /* 56 */ { 4, s_3_56, -1, 1, 0},
288
+ /* 57 */ { 4, s_3_57, -1, 1, 0},
289
+ /* 58 */ { 5, s_3_58, -1, 1, 0},
290
+ /* 59 */ { 5, s_3_59, -1, 3, 0},
291
+ /* 60 */ { 4, s_3_60, -1, 1, 0},
292
+ /* 61 */ { 4, s_3_61, -1, 1, 0}
293
+ };
294
+
295
+ static const symbol s_4_0[2] = { 'e', 'a' };
296
+ static const symbol s_4_1[2] = { 'i', 'a' };
297
+ static const symbol s_4_2[3] = { 'e', 's', 'c' };
298
+ static const symbol s_4_3[4] = { 0xC4, 0x83, 's', 'c' };
299
+ static const symbol s_4_4[3] = { 'i', 'n', 'd' };
300
+ static const symbol s_4_5[4] = { 0xC3, 0xA2, 'n', 'd' };
301
+ static const symbol s_4_6[3] = { 'a', 'r', 'e' };
302
+ static const symbol s_4_7[3] = { 'e', 'r', 'e' };
303
+ static const symbol s_4_8[3] = { 'i', 'r', 'e' };
304
+ static const symbol s_4_9[4] = { 0xC3, 0xA2, 'r', 'e' };
305
+ static const symbol s_4_10[2] = { 's', 'e' };
306
+ static const symbol s_4_11[3] = { 'a', 's', 'e' };
307
+ static const symbol s_4_12[4] = { 's', 'e', 's', 'e' };
308
+ static const symbol s_4_13[3] = { 'i', 's', 'e' };
309
+ static const symbol s_4_14[3] = { 'u', 's', 'e' };
310
+ static const symbol s_4_15[4] = { 0xC3, 0xA2, 's', 'e' };
311
+ static const symbol s_4_16[5] = { 'e', 0xC5, 0x9F, 't', 'e' };
312
+ static const symbol s_4_17[6] = { 0xC4, 0x83, 0xC5, 0x9F, 't', 'e' };
313
+ static const symbol s_4_18[3] = { 'e', 'z', 'e' };
314
+ static const symbol s_4_19[2] = { 'a', 'i' };
315
+ static const symbol s_4_20[3] = { 'e', 'a', 'i' };
316
+ static const symbol s_4_21[3] = { 'i', 'a', 'i' };
317
+ static const symbol s_4_22[3] = { 's', 'e', 'i' };
318
+ static const symbol s_4_23[5] = { 'e', 0xC5, 0x9F, 't', 'i' };
319
+ static const symbol s_4_24[6] = { 0xC4, 0x83, 0xC5, 0x9F, 't', 'i' };
320
+ static const symbol s_4_25[2] = { 'u', 'i' };
321
+ static const symbol s_4_26[3] = { 'e', 'z', 'i' };
322
+ static const symbol s_4_27[4] = { 'a', 0xC5, 0x9F, 'i' };
323
+ static const symbol s_4_28[5] = { 's', 'e', 0xC5, 0x9F, 'i' };
324
+ static const symbol s_4_29[6] = { 'a', 's', 'e', 0xC5, 0x9F, 'i' };
325
+ static const symbol s_4_30[7] = { 's', 'e', 's', 'e', 0xC5, 0x9F, 'i' };
326
+ static const symbol s_4_31[6] = { 'i', 's', 'e', 0xC5, 0x9F, 'i' };
327
+ static const symbol s_4_32[6] = { 'u', 's', 'e', 0xC5, 0x9F, 'i' };
328
+ static const symbol s_4_33[7] = { 0xC3, 0xA2, 's', 'e', 0xC5, 0x9F, 'i' };
329
+ static const symbol s_4_34[4] = { 'i', 0xC5, 0x9F, 'i' };
330
+ static const symbol s_4_35[4] = { 'u', 0xC5, 0x9F, 'i' };
331
+ static const symbol s_4_36[5] = { 0xC3, 0xA2, 0xC5, 0x9F, 'i' };
332
+ static const symbol s_4_37[3] = { 0xC3, 0xA2, 'i' };
333
+ static const symbol s_4_38[4] = { 'a', 0xC5, 0xA3, 'i' };
334
+ static const symbol s_4_39[5] = { 'e', 'a', 0xC5, 0xA3, 'i' };
335
+ static const symbol s_4_40[5] = { 'i', 'a', 0xC5, 0xA3, 'i' };
336
+ static const symbol s_4_41[4] = { 'e', 0xC5, 0xA3, 'i' };
337
+ static const symbol s_4_42[4] = { 'i', 0xC5, 0xA3, 'i' };
338
+ static const symbol s_4_43[7] = { 'a', 'r', 0xC4, 0x83, 0xC5, 0xA3, 'i' };
339
+ static const symbol s_4_44[8] = { 's', 'e', 'r', 0xC4, 0x83, 0xC5, 0xA3, 'i' };
340
+ static const symbol s_4_45[9] = { 'a', 's', 'e', 'r', 0xC4, 0x83, 0xC5, 0xA3, 'i' };
341
+ static const symbol s_4_46[10] = { 's', 'e', 's', 'e', 'r', 0xC4, 0x83, 0xC5, 0xA3, 'i' };
342
+ static const symbol s_4_47[9] = { 'i', 's', 'e', 'r', 0xC4, 0x83, 0xC5, 0xA3, 'i' };
343
+ static const symbol s_4_48[9] = { 'u', 's', 'e', 'r', 0xC4, 0x83, 0xC5, 0xA3, 'i' };
344
+ static const symbol s_4_49[10] = { 0xC3, 0xA2, 's', 'e', 'r', 0xC4, 0x83, 0xC5, 0xA3, 'i' };
345
+ static const symbol s_4_50[7] = { 'i', 'r', 0xC4, 0x83, 0xC5, 0xA3, 'i' };
346
+ static const symbol s_4_51[7] = { 'u', 'r', 0xC4, 0x83, 0xC5, 0xA3, 'i' };
347
+ static const symbol s_4_52[8] = { 0xC3, 0xA2, 'r', 0xC4, 0x83, 0xC5, 0xA3, 'i' };
348
+ static const symbol s_4_53[5] = { 0xC3, 0xA2, 0xC5, 0xA3, 'i' };
349
+ static const symbol s_4_54[2] = { 'a', 'm' };
350
+ static const symbol s_4_55[3] = { 'e', 'a', 'm' };
351
+ static const symbol s_4_56[3] = { 'i', 'a', 'm' };
352
+ static const symbol s_4_57[2] = { 'e', 'm' };
353
+ static const symbol s_4_58[4] = { 'a', 's', 'e', 'm' };
354
+ static const symbol s_4_59[5] = { 's', 'e', 's', 'e', 'm' };
355
+ static const symbol s_4_60[4] = { 'i', 's', 'e', 'm' };
356
+ static const symbol s_4_61[4] = { 'u', 's', 'e', 'm' };
357
+ static const symbol s_4_62[5] = { 0xC3, 0xA2, 's', 'e', 'm' };
358
+ static const symbol s_4_63[2] = { 'i', 'm' };
359
+ static const symbol s_4_64[3] = { 0xC4, 0x83, 'm' };
360
+ static const symbol s_4_65[5] = { 'a', 'r', 0xC4, 0x83, 'm' };
361
+ static const symbol s_4_66[6] = { 's', 'e', 'r', 0xC4, 0x83, 'm' };
362
+ static const symbol s_4_67[7] = { 'a', 's', 'e', 'r', 0xC4, 0x83, 'm' };
363
+ static const symbol s_4_68[8] = { 's', 'e', 's', 'e', 'r', 0xC4, 0x83, 'm' };
364
+ static const symbol s_4_69[7] = { 'i', 's', 'e', 'r', 0xC4, 0x83, 'm' };
365
+ static const symbol s_4_70[7] = { 'u', 's', 'e', 'r', 0xC4, 0x83, 'm' };
366
+ static const symbol s_4_71[8] = { 0xC3, 0xA2, 's', 'e', 'r', 0xC4, 0x83, 'm' };
367
+ static const symbol s_4_72[5] = { 'i', 'r', 0xC4, 0x83, 'm' };
368
+ static const symbol s_4_73[5] = { 'u', 'r', 0xC4, 0x83, 'm' };
369
+ static const symbol s_4_74[6] = { 0xC3, 0xA2, 'r', 0xC4, 0x83, 'm' };
370
+ static const symbol s_4_75[3] = { 0xC3, 0xA2, 'm' };
371
+ static const symbol s_4_76[2] = { 'a', 'u' };
372
+ static const symbol s_4_77[3] = { 'e', 'a', 'u' };
373
+ static const symbol s_4_78[3] = { 'i', 'a', 'u' };
374
+ static const symbol s_4_79[4] = { 'i', 'n', 'd', 'u' };
375
+ static const symbol s_4_80[5] = { 0xC3, 0xA2, 'n', 'd', 'u' };
376
+ static const symbol s_4_81[2] = { 'e', 'z' };
377
+ static const symbol s_4_82[6] = { 'e', 'a', 's', 'c', 0xC4, 0x83 };
378
+ static const symbol s_4_83[4] = { 'a', 'r', 0xC4, 0x83 };
379
+ static const symbol s_4_84[5] = { 's', 'e', 'r', 0xC4, 0x83 };
380
+ static const symbol s_4_85[6] = { 'a', 's', 'e', 'r', 0xC4, 0x83 };
381
+ static const symbol s_4_86[7] = { 's', 'e', 's', 'e', 'r', 0xC4, 0x83 };
382
+ static const symbol s_4_87[6] = { 'i', 's', 'e', 'r', 0xC4, 0x83 };
383
+ static const symbol s_4_88[6] = { 'u', 's', 'e', 'r', 0xC4, 0x83 };
384
+ static const symbol s_4_89[7] = { 0xC3, 0xA2, 's', 'e', 'r', 0xC4, 0x83 };
385
+ static const symbol s_4_90[4] = { 'i', 'r', 0xC4, 0x83 };
386
+ static const symbol s_4_91[4] = { 'u', 'r', 0xC4, 0x83 };
387
+ static const symbol s_4_92[5] = { 0xC3, 0xA2, 'r', 0xC4, 0x83 };
388
+ static const symbol s_4_93[5] = { 'e', 'a', 'z', 0xC4, 0x83 };
389
+
390
+ static const struct among a_4[94] =
391
+ {
392
+ /* 0 */ { 2, s_4_0, -1, 1, 0},
393
+ /* 1 */ { 2, s_4_1, -1, 1, 0},
394
+ /* 2 */ { 3, s_4_2, -1, 1, 0},
395
+ /* 3 */ { 4, s_4_3, -1, 1, 0},
396
+ /* 4 */ { 3, s_4_4, -1, 1, 0},
397
+ /* 5 */ { 4, s_4_5, -1, 1, 0},
398
+ /* 6 */ { 3, s_4_6, -1, 1, 0},
399
+ /* 7 */ { 3, s_4_7, -1, 1, 0},
400
+ /* 8 */ { 3, s_4_8, -1, 1, 0},
401
+ /* 9 */ { 4, s_4_9, -1, 1, 0},
402
+ /* 10 */ { 2, s_4_10, -1, 2, 0},
403
+ /* 11 */ { 3, s_4_11, 10, 1, 0},
404
+ /* 12 */ { 4, s_4_12, 10, 2, 0},
405
+ /* 13 */ { 3, s_4_13, 10, 1, 0},
406
+ /* 14 */ { 3, s_4_14, 10, 1, 0},
407
+ /* 15 */ { 4, s_4_15, 10, 1, 0},
408
+ /* 16 */ { 5, s_4_16, -1, 1, 0},
409
+ /* 17 */ { 6, s_4_17, -1, 1, 0},
410
+ /* 18 */ { 3, s_4_18, -1, 1, 0},
411
+ /* 19 */ { 2, s_4_19, -1, 1, 0},
412
+ /* 20 */ { 3, s_4_20, 19, 1, 0},
413
+ /* 21 */ { 3, s_4_21, 19, 1, 0},
414
+ /* 22 */ { 3, s_4_22, -1, 2, 0},
415
+ /* 23 */ { 5, s_4_23, -1, 1, 0},
416
+ /* 24 */ { 6, s_4_24, -1, 1, 0},
417
+ /* 25 */ { 2, s_4_25, -1, 1, 0},
418
+ /* 26 */ { 3, s_4_26, -1, 1, 0},
419
+ /* 27 */ { 4, s_4_27, -1, 1, 0},
420
+ /* 28 */ { 5, s_4_28, -1, 2, 0},
421
+ /* 29 */ { 6, s_4_29, 28, 1, 0},
422
+ /* 30 */ { 7, s_4_30, 28, 2, 0},
423
+ /* 31 */ { 6, s_4_31, 28, 1, 0},
424
+ /* 32 */ { 6, s_4_32, 28, 1, 0},
425
+ /* 33 */ { 7, s_4_33, 28, 1, 0},
426
+ /* 34 */ { 4, s_4_34, -1, 1, 0},
427
+ /* 35 */ { 4, s_4_35, -1, 1, 0},
428
+ /* 36 */ { 5, s_4_36, -1, 1, 0},
429
+ /* 37 */ { 3, s_4_37, -1, 1, 0},
430
+ /* 38 */ { 4, s_4_38, -1, 2, 0},
431
+ /* 39 */ { 5, s_4_39, 38, 1, 0},
432
+ /* 40 */ { 5, s_4_40, 38, 1, 0},
433
+ /* 41 */ { 4, s_4_41, -1, 2, 0},
434
+ /* 42 */ { 4, s_4_42, -1, 2, 0},
435
+ /* 43 */ { 7, s_4_43, -1, 1, 0},
436
+ /* 44 */ { 8, s_4_44, -1, 2, 0},
437
+ /* 45 */ { 9, s_4_45, 44, 1, 0},
438
+ /* 46 */ { 10, s_4_46, 44, 2, 0},
439
+ /* 47 */ { 9, s_4_47, 44, 1, 0},
440
+ /* 48 */ { 9, s_4_48, 44, 1, 0},
441
+ /* 49 */ { 10, s_4_49, 44, 1, 0},
442
+ /* 50 */ { 7, s_4_50, -1, 1, 0},
443
+ /* 51 */ { 7, s_4_51, -1, 1, 0},
444
+ /* 52 */ { 8, s_4_52, -1, 1, 0},
445
+ /* 53 */ { 5, s_4_53, -1, 2, 0},
446
+ /* 54 */ { 2, s_4_54, -1, 1, 0},
447
+ /* 55 */ { 3, s_4_55, 54, 1, 0},
448
+ /* 56 */ { 3, s_4_56, 54, 1, 0},
449
+ /* 57 */ { 2, s_4_57, -1, 2, 0},
450
+ /* 58 */ { 4, s_4_58, 57, 1, 0},
451
+ /* 59 */ { 5, s_4_59, 57, 2, 0},
452
+ /* 60 */ { 4, s_4_60, 57, 1, 0},
453
+ /* 61 */ { 4, s_4_61, 57, 1, 0},
454
+ /* 62 */ { 5, s_4_62, 57, 1, 0},
455
+ /* 63 */ { 2, s_4_63, -1, 2, 0},
456
+ /* 64 */ { 3, s_4_64, -1, 2, 0},
457
+ /* 65 */ { 5, s_4_65, 64, 1, 0},
458
+ /* 66 */ { 6, s_4_66, 64, 2, 0},
459
+ /* 67 */ { 7, s_4_67, 66, 1, 0},
460
+ /* 68 */ { 8, s_4_68, 66, 2, 0},
461
+ /* 69 */ { 7, s_4_69, 66, 1, 0},
462
+ /* 70 */ { 7, s_4_70, 66, 1, 0},
463
+ /* 71 */ { 8, s_4_71, 66, 1, 0},
464
+ /* 72 */ { 5, s_4_72, 64, 1, 0},
465
+ /* 73 */ { 5, s_4_73, 64, 1, 0},
466
+ /* 74 */ { 6, s_4_74, 64, 1, 0},
467
+ /* 75 */ { 3, s_4_75, -1, 2, 0},
468
+ /* 76 */ { 2, s_4_76, -1, 1, 0},
469
+ /* 77 */ { 3, s_4_77, 76, 1, 0},
470
+ /* 78 */ { 3, s_4_78, 76, 1, 0},
471
+ /* 79 */ { 4, s_4_79, -1, 1, 0},
472
+ /* 80 */ { 5, s_4_80, -1, 1, 0},
473
+ /* 81 */ { 2, s_4_81, -1, 1, 0},
474
+ /* 82 */ { 6, s_4_82, -1, 1, 0},
475
+ /* 83 */ { 4, s_4_83, -1, 1, 0},
476
+ /* 84 */ { 5, s_4_84, -1, 2, 0},
477
+ /* 85 */ { 6, s_4_85, 84, 1, 0},
478
+ /* 86 */ { 7, s_4_86, 84, 2, 0},
479
+ /* 87 */ { 6, s_4_87, 84, 1, 0},
480
+ /* 88 */ { 6, s_4_88, 84, 1, 0},
481
+ /* 89 */ { 7, s_4_89, 84, 1, 0},
482
+ /* 90 */ { 4, s_4_90, -1, 1, 0},
483
+ /* 91 */ { 4, s_4_91, -1, 1, 0},
484
+ /* 92 */ { 5, s_4_92, -1, 1, 0},
485
+ /* 93 */ { 5, s_4_93, -1, 1, 0}
486
+ };
487
+
488
+ static const symbol s_5_0[1] = { 'a' };
489
+ static const symbol s_5_1[1] = { 'e' };
490
+ static const symbol s_5_2[2] = { 'i', 'e' };
491
+ static const symbol s_5_3[1] = { 'i' };
492
+ static const symbol s_5_4[2] = { 0xC4, 0x83 };
493
+
494
+ static const struct among a_5[5] =
495
+ {
496
+ /* 0 */ { 1, s_5_0, -1, 1, 0},
497
+ /* 1 */ { 1, s_5_1, -1, 1, 0},
498
+ /* 2 */ { 2, s_5_2, 1, 1, 0},
499
+ /* 3 */ { 1, s_5_3, -1, 1, 0},
500
+ /* 4 */ { 2, s_5_4, -1, 1, 0}
501
+ };
502
+
503
+ static const unsigned char g_v[] = { 17, 65, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 32, 0, 0, 4 };
504
+
505
+ static const symbol s_0[] = { 'u' };
506
+ static const symbol s_1[] = { 'U' };
507
+ static const symbol s_2[] = { 'i' };
508
+ static const symbol s_3[] = { 'I' };
509
+ static const symbol s_4[] = { 'i' };
510
+ static const symbol s_5[] = { 'u' };
511
+ static const symbol s_6[] = { 'a' };
512
+ static const symbol s_7[] = { 'e' };
513
+ static const symbol s_8[] = { 'i' };
514
+ static const symbol s_9[] = { 'a', 'b' };
515
+ static const symbol s_10[] = { 'i' };
516
+ static const symbol s_11[] = { 'a', 't' };
517
+ static const symbol s_12[] = { 'a', 0xC5, 0xA3, 'i' };
518
+ static const symbol s_13[] = { 'a', 'b', 'i', 'l' };
519
+ static const symbol s_14[] = { 'i', 'b', 'i', 'l' };
520
+ static const symbol s_15[] = { 'i', 'v' };
521
+ static const symbol s_16[] = { 'i', 'c' };
522
+ static const symbol s_17[] = { 'a', 't' };
523
+ static const symbol s_18[] = { 'i', 't' };
524
+ static const symbol s_19[] = { 0xC5, 0xA3 };
525
+ static const symbol s_20[] = { 't' };
526
+ static const symbol s_21[] = { 'i', 's', 't' };
527
+ static const symbol s_22[] = { 'u' };
528
+
529
+ static int r_prelude(struct SN_env * z) {
530
+ while(1) { /* repeat, line 32 */
531
+ int c1 = z->c;
532
+ while(1) { /* goto, line 32 */
533
+ int c2 = z->c;
534
+ if (in_grouping_U(z, g_v, 97, 259, 0)) goto lab1;
535
+ z->bra = z->c; /* [, line 33 */
536
+ { int c3 = z->c; /* or, line 33 */
537
+ if (!(eq_s(z, 1, s_0))) goto lab3;
538
+ z->ket = z->c; /* ], line 33 */
539
+ if (in_grouping_U(z, g_v, 97, 259, 0)) goto lab3;
540
+ { int ret = slice_from_s(z, 1, s_1); /* <-, line 33 */
541
+ if (ret < 0) return ret;
542
+ }
543
+ goto lab2;
544
+ lab3:
545
+ z->c = c3;
546
+ if (!(eq_s(z, 1, s_2))) goto lab1;
547
+ z->ket = z->c; /* ], line 34 */
548
+ if (in_grouping_U(z, g_v, 97, 259, 0)) goto lab1;
549
+ { int ret = slice_from_s(z, 1, s_3); /* <-, line 34 */
550
+ if (ret < 0) return ret;
551
+ }
552
+ }
553
+ lab2:
554
+ z->c = c2;
555
+ break;
556
+ lab1:
557
+ z->c = c2;
558
+ { int ret = skip_utf8(z->p, z->c, 0, z->l, 1);
559
+ if (ret < 0) goto lab0;
560
+ z->c = ret; /* goto, line 32 */
561
+ }
562
+ }
563
+ continue;
564
+ lab0:
565
+ z->c = c1;
566
+ break;
567
+ }
568
+ return 1;
569
+ }
570
+
571
+ static int r_mark_regions(struct SN_env * z) {
572
+ z->I[0] = z->l;
573
+ z->I[1] = z->l;
574
+ z->I[2] = z->l;
575
+ { int c1 = z->c; /* do, line 44 */
576
+ { int c2 = z->c; /* or, line 46 */
577
+ if (in_grouping_U(z, g_v, 97, 259, 0)) goto lab2;
578
+ { int c3 = z->c; /* or, line 45 */
579
+ if (out_grouping_U(z, g_v, 97, 259, 0)) goto lab4;
580
+ { /* gopast */ /* grouping v, line 45 */
581
+ int ret = out_grouping_U(z, g_v, 97, 259, 1);
582
+ if (ret < 0) goto lab4;
583
+ z->c += ret;
584
+ }
585
+ goto lab3;
586
+ lab4:
587
+ z->c = c3;
588
+ if (in_grouping_U(z, g_v, 97, 259, 0)) goto lab2;
589
+ { /* gopast */ /* non v, line 45 */
590
+ int ret = in_grouping_U(z, g_v, 97, 259, 1);
591
+ if (ret < 0) goto lab2;
592
+ z->c += ret;
593
+ }
594
+ }
595
+ lab3:
596
+ goto lab1;
597
+ lab2:
598
+ z->c = c2;
599
+ if (out_grouping_U(z, g_v, 97, 259, 0)) goto lab0;
600
+ { int c4 = z->c; /* or, line 47 */
601
+ if (out_grouping_U(z, g_v, 97, 259, 0)) goto lab6;
602
+ { /* gopast */ /* grouping v, line 47 */
603
+ int ret = out_grouping_U(z, g_v, 97, 259, 1);
604
+ if (ret < 0) goto lab6;
605
+ z->c += ret;
606
+ }
607
+ goto lab5;
608
+ lab6:
609
+ z->c = c4;
610
+ if (in_grouping_U(z, g_v, 97, 259, 0)) goto lab0;
611
+ { int ret = skip_utf8(z->p, z->c, 0, z->l, 1);
612
+ if (ret < 0) goto lab0;
613
+ z->c = ret; /* next, line 47 */
614
+ }
615
+ }
616
+ lab5:
617
+ ;
618
+ }
619
+ lab1:
620
+ z->I[0] = z->c; /* setmark pV, line 48 */
621
+ lab0:
622
+ z->c = c1;
623
+ }
624
+ { int c5 = z->c; /* do, line 50 */
625
+ { /* gopast */ /* grouping v, line 51 */
626
+ int ret = out_grouping_U(z, g_v, 97, 259, 1);
627
+ if (ret < 0) goto lab7;
628
+ z->c += ret;
629
+ }
630
+ { /* gopast */ /* non v, line 51 */
631
+ int ret = in_grouping_U(z, g_v, 97, 259, 1);
632
+ if (ret < 0) goto lab7;
633
+ z->c += ret;
634
+ }
635
+ z->I[1] = z->c; /* setmark p1, line 51 */
636
+ { /* gopast */ /* grouping v, line 52 */
637
+ int ret = out_grouping_U(z, g_v, 97, 259, 1);
638
+ if (ret < 0) goto lab7;
639
+ z->c += ret;
640
+ }
641
+ { /* gopast */ /* non v, line 52 */
642
+ int ret = in_grouping_U(z, g_v, 97, 259, 1);
643
+ if (ret < 0) goto lab7;
644
+ z->c += ret;
645
+ }
646
+ z->I[2] = z->c; /* setmark p2, line 52 */
647
+ lab7:
648
+ z->c = c5;
649
+ }
650
+ return 1;
651
+ }
652
+
653
+ static int r_postlude(struct SN_env * z) {
654
+ int among_var;
655
+ while(1) { /* repeat, line 56 */
656
+ int c1 = z->c;
657
+ z->bra = z->c; /* [, line 58 */
658
+ if (z->c >= z->l || (z->p[z->c + 0] != 73 && z->p[z->c + 0] != 85)) among_var = 3; else
659
+ among_var = find_among(z, a_0, 3); /* substring, line 58 */
660
+ if (!(among_var)) goto lab0;
661
+ z->ket = z->c; /* ], line 58 */
662
+ switch(among_var) {
663
+ case 0: goto lab0;
664
+ case 1:
665
+ { int ret = slice_from_s(z, 1, s_4); /* <-, line 59 */
666
+ if (ret < 0) return ret;
667
+ }
668
+ break;
669
+ case 2:
670
+ { int ret = slice_from_s(z, 1, s_5); /* <-, line 60 */
671
+ if (ret < 0) return ret;
672
+ }
673
+ break;
674
+ case 3:
675
+ { int ret = skip_utf8(z->p, z->c, 0, z->l, 1);
676
+ if (ret < 0) goto lab0;
677
+ z->c = ret; /* next, line 61 */
678
+ }
679
+ break;
680
+ }
681
+ continue;
682
+ lab0:
683
+ z->c = c1;
684
+ break;
685
+ }
686
+ return 1;
687
+ }
688
+
689
+ static int r_RV(struct SN_env * z) {
690
+ if (!(z->I[0] <= z->c)) return 0;
691
+ return 1;
692
+ }
693
+
694
+ static int r_R1(struct SN_env * z) {
695
+ if (!(z->I[1] <= z->c)) return 0;
696
+ return 1;
697
+ }
698
+
699
+ static int r_R2(struct SN_env * z) {
700
+ if (!(z->I[2] <= z->c)) return 0;
701
+ return 1;
702
+ }
703
+
704
+ static int r_step_0(struct SN_env * z) {
705
+ int among_var;
706
+ z->ket = z->c; /* [, line 73 */
707
+ if (z->c - 1 <= z->lb || z->p[z->c - 1] >> 5 != 3 || !((266786 >> (z->p[z->c - 1] & 0x1f)) & 1)) return 0;
708
+ among_var = find_among_b(z, a_1, 16); /* substring, line 73 */
709
+ if (!(among_var)) return 0;
710
+ z->bra = z->c; /* ], line 73 */
711
+ { int ret = r_R1(z);
712
+ if (ret == 0) return 0; /* call R1, line 73 */
713
+ if (ret < 0) return ret;
714
+ }
715
+ switch(among_var) {
716
+ case 0: return 0;
717
+ case 1:
718
+ { int ret = slice_del(z); /* delete, line 75 */
719
+ if (ret < 0) return ret;
720
+ }
721
+ break;
722
+ case 2:
723
+ { int ret = slice_from_s(z, 1, s_6); /* <-, line 77 */
724
+ if (ret < 0) return ret;
725
+ }
726
+ break;
727
+ case 3:
728
+ { int ret = slice_from_s(z, 1, s_7); /* <-, line 79 */
729
+ if (ret < 0) return ret;
730
+ }
731
+ break;
732
+ case 4:
733
+ { int ret = slice_from_s(z, 1, s_8); /* <-, line 81 */
734
+ if (ret < 0) return ret;
735
+ }
736
+ break;
737
+ case 5:
738
+ { int m1 = z->l - z->c; (void)m1; /* not, line 83 */
739
+ if (!(eq_s_b(z, 2, s_9))) goto lab0;
740
+ return 0;
741
+ lab0:
742
+ z->c = z->l - m1;
743
+ }
744
+ { int ret = slice_from_s(z, 1, s_10); /* <-, line 83 */
745
+ if (ret < 0) return ret;
746
+ }
747
+ break;
748
+ case 6:
749
+ { int ret = slice_from_s(z, 2, s_11); /* <-, line 85 */
750
+ if (ret < 0) return ret;
751
+ }
752
+ break;
753
+ case 7:
754
+ { int ret = slice_from_s(z, 4, s_12); /* <-, line 87 */
755
+ if (ret < 0) return ret;
756
+ }
757
+ break;
758
+ }
759
+ return 1;
760
+ }
761
+
762
+ static int r_combo_suffix(struct SN_env * z) {
763
+ int among_var;
764
+ { int m_test = z->l - z->c; /* test, line 91 */
765
+ z->ket = z->c; /* [, line 92 */
766
+ among_var = find_among_b(z, a_2, 46); /* substring, line 92 */
767
+ if (!(among_var)) return 0;
768
+ z->bra = z->c; /* ], line 92 */
769
+ { int ret = r_R1(z);
770
+ if (ret == 0) return 0; /* call R1, line 92 */
771
+ if (ret < 0) return ret;
772
+ }
773
+ switch(among_var) {
774
+ case 0: return 0;
775
+ case 1:
776
+ { int ret = slice_from_s(z, 4, s_13); /* <-, line 101 */
777
+ if (ret < 0) return ret;
778
+ }
779
+ break;
780
+ case 2:
781
+ { int ret = slice_from_s(z, 4, s_14); /* <-, line 104 */
782
+ if (ret < 0) return ret;
783
+ }
784
+ break;
785
+ case 3:
786
+ { int ret = slice_from_s(z, 2, s_15); /* <-, line 107 */
787
+ if (ret < 0) return ret;
788
+ }
789
+ break;
790
+ case 4:
791
+ { int ret = slice_from_s(z, 2, s_16); /* <-, line 113 */
792
+ if (ret < 0) return ret;
793
+ }
794
+ break;
795
+ case 5:
796
+ { int ret = slice_from_s(z, 2, s_17); /* <-, line 118 */
797
+ if (ret < 0) return ret;
798
+ }
799
+ break;
800
+ case 6:
801
+ { int ret = slice_from_s(z, 2, s_18); /* <-, line 122 */
802
+ if (ret < 0) return ret;
803
+ }
804
+ break;
805
+ }
806
+ z->B[0] = 1; /* set standard_suffix_removed, line 125 */
807
+ z->c = z->l - m_test;
808
+ }
809
+ return 1;
810
+ }
811
+
812
+ static int r_standard_suffix(struct SN_env * z) {
813
+ int among_var;
814
+ z->B[0] = 0; /* unset standard_suffix_removed, line 130 */
815
+ while(1) { /* repeat, line 131 */
816
+ int m1 = z->l - z->c; (void)m1;
817
+ { int ret = r_combo_suffix(z);
818
+ if (ret == 0) goto lab0; /* call combo_suffix, line 131 */
819
+ if (ret < 0) return ret;
820
+ }
821
+ continue;
822
+ lab0:
823
+ z->c = z->l - m1;
824
+ break;
825
+ }
826
+ z->ket = z->c; /* [, line 132 */
827
+ among_var = find_among_b(z, a_3, 62); /* substring, line 132 */
828
+ if (!(among_var)) return 0;
829
+ z->bra = z->c; /* ], line 132 */
830
+ { int ret = r_R2(z);
831
+ if (ret == 0) return 0; /* call R2, line 132 */
832
+ if (ret < 0) return ret;
833
+ }
834
+ switch(among_var) {
835
+ case 0: return 0;
836
+ case 1:
837
+ { int ret = slice_del(z); /* delete, line 149 */
838
+ if (ret < 0) return ret;
839
+ }
840
+ break;
841
+ case 2:
842
+ if (!(eq_s_b(z, 2, s_19))) return 0;
843
+ z->bra = z->c; /* ], line 152 */
844
+ { int ret = slice_from_s(z, 1, s_20); /* <-, line 152 */
845
+ if (ret < 0) return ret;
846
+ }
847
+ break;
848
+ case 3:
849
+ { int ret = slice_from_s(z, 3, s_21); /* <-, line 156 */
850
+ if (ret < 0) return ret;
851
+ }
852
+ break;
853
+ }
854
+ z->B[0] = 1; /* set standard_suffix_removed, line 160 */
855
+ return 1;
856
+ }
857
+
858
+ static int r_verb_suffix(struct SN_env * z) {
859
+ int among_var;
860
+ { int mlimit; /* setlimit, line 164 */
861
+ int m1 = z->l - z->c; (void)m1;
862
+ if (z->c < z->I[0]) return 0;
863
+ z->c = z->I[0]; /* tomark, line 164 */
864
+ mlimit = z->lb; z->lb = z->c;
865
+ z->c = z->l - m1;
866
+ z->ket = z->c; /* [, line 165 */
867
+ among_var = find_among_b(z, a_4, 94); /* substring, line 165 */
868
+ if (!(among_var)) { z->lb = mlimit; return 0; }
869
+ z->bra = z->c; /* ], line 165 */
870
+ switch(among_var) {
871
+ case 0: { z->lb = mlimit; return 0; }
872
+ case 1:
873
+ { int m2 = z->l - z->c; (void)m2; /* or, line 200 */
874
+ if (out_grouping_b_U(z, g_v, 97, 259, 0)) goto lab1;
875
+ goto lab0;
876
+ lab1:
877
+ z->c = z->l - m2;
878
+ if (!(eq_s_b(z, 1, s_22))) { z->lb = mlimit; return 0; }
879
+ }
880
+ lab0:
881
+ { int ret = slice_del(z); /* delete, line 200 */
882
+ if (ret < 0) return ret;
883
+ }
884
+ break;
885
+ case 2:
886
+ { int ret = slice_del(z); /* delete, line 214 */
887
+ if (ret < 0) return ret;
888
+ }
889
+ break;
890
+ }
891
+ z->lb = mlimit;
892
+ }
893
+ return 1;
894
+ }
895
+
896
+ static int r_vowel_suffix(struct SN_env * z) {
897
+ int among_var;
898
+ z->ket = z->c; /* [, line 219 */
899
+ among_var = find_among_b(z, a_5, 5); /* substring, line 219 */
900
+ if (!(among_var)) return 0;
901
+ z->bra = z->c; /* ], line 219 */
902
+ { int ret = r_RV(z);
903
+ if (ret == 0) return 0; /* call RV, line 219 */
904
+ if (ret < 0) return ret;
905
+ }
906
+ switch(among_var) {
907
+ case 0: return 0;
908
+ case 1:
909
+ { int ret = slice_del(z); /* delete, line 220 */
910
+ if (ret < 0) return ret;
911
+ }
912
+ break;
913
+ }
914
+ return 1;
915
+ }
916
+
917
+ extern int romanian_UTF_8_stem(struct SN_env * z) {
918
+ { int c1 = z->c; /* do, line 226 */
919
+ { int ret = r_prelude(z);
920
+ if (ret == 0) goto lab0; /* call prelude, line 226 */
921
+ if (ret < 0) return ret;
922
+ }
923
+ lab0:
924
+ z->c = c1;
925
+ }
926
+ { int c2 = z->c; /* do, line 227 */
927
+ { int ret = r_mark_regions(z);
928
+ if (ret == 0) goto lab1; /* call mark_regions, line 227 */
929
+ if (ret < 0) return ret;
930
+ }
931
+ lab1:
932
+ z->c = c2;
933
+ }
934
+ z->lb = z->c; z->c = z->l; /* backwards, line 228 */
935
+
936
+ { int m3 = z->l - z->c; (void)m3; /* do, line 229 */
937
+ { int ret = r_step_0(z);
938
+ if (ret == 0) goto lab2; /* call step_0, line 229 */
939
+ if (ret < 0) return ret;
940
+ }
941
+ lab2:
942
+ z->c = z->l - m3;
943
+ }
944
+ { int m4 = z->l - z->c; (void)m4; /* do, line 230 */
945
+ { int ret = r_standard_suffix(z);
946
+ if (ret == 0) goto lab3; /* call standard_suffix, line 230 */
947
+ if (ret < 0) return ret;
948
+ }
949
+ lab3:
950
+ z->c = z->l - m4;
951
+ }
952
+ { int m5 = z->l - z->c; (void)m5; /* do, line 231 */
953
+ { int m6 = z->l - z->c; (void)m6; /* or, line 231 */
954
+ if (!(z->B[0])) goto lab6; /* Boolean test standard_suffix_removed, line 231 */
955
+ goto lab5;
956
+ lab6:
957
+ z->c = z->l - m6;
958
+ { int ret = r_verb_suffix(z);
959
+ if (ret == 0) goto lab4; /* call verb_suffix, line 231 */
960
+ if (ret < 0) return ret;
961
+ }
962
+ }
963
+ lab5:
964
+ lab4:
965
+ z->c = z->l - m5;
966
+ }
967
+ { int m7 = z->l - z->c; (void)m7; /* do, line 232 */
968
+ { int ret = r_vowel_suffix(z);
969
+ if (ret == 0) goto lab7; /* call vowel_suffix, line 232 */
970
+ if (ret < 0) return ret;
971
+ }
972
+ lab7:
973
+ z->c = z->l - m7;
974
+ }
975
+ z->c = z->lb;
976
+ { int c8 = z->c; /* do, line 234 */
977
+ { int ret = r_postlude(z);
978
+ if (ret == 0) goto lab8; /* call postlude, line 234 */
979
+ if (ret < 0) return ret;
980
+ }
981
+ lab8:
982
+ z->c = c8;
983
+ }
984
+ return 1;
985
+ }
986
+
987
+ extern struct SN_env * romanian_UTF_8_create_env(void) { return SN_create_env(0, 3, 1); }
988
+
989
+ extern void romanian_UTF_8_close_env(struct SN_env * z) { SN_close_env(z, 0); }
990
+