isomorfeus-ferret 0.12.1 → 0.12.5

Sign up to get free protection for your applications and to get access to all the features.
Files changed (126) hide show
  1. checksums.yaml +4 -4
  2. data/LICENSE +612 -612
  3. data/README.md +80 -44
  4. data/ext/isomorfeus_ferret_ext/bm_hash.c +9 -6
  5. data/ext/isomorfeus_ferret_ext/bm_micro_string.c +4 -2
  6. data/ext/isomorfeus_ferret_ext/frb_search.c +14 -2
  7. data/ext/isomorfeus_ferret_ext/frb_store.c +34 -5
  8. data/ext/isomorfeus_ferret_ext/frt_fs_store.c +1 -1
  9. data/ext/isomorfeus_ferret_ext/frt_posh.h +11 -19
  10. data/ext/isomorfeus_ferret_ext/frt_q_parser.c +1844 -1911
  11. data/ext/isomorfeus_ferret_ext/frt_q_phrase.c +7 -7
  12. data/ext/isomorfeus_ferret_ext/frt_scanner.c +1 -0
  13. data/ext/isomorfeus_ferret_ext/frt_scanner_mb.c +1 -0
  14. data/ext/isomorfeus_ferret_ext/frt_scanner_utf8.c +1 -0
  15. data/ext/isomorfeus_ferret_ext/frt_search.h +1 -1
  16. data/ext/isomorfeus_ferret_ext/libstemmer.c +14 -11
  17. data/ext/isomorfeus_ferret_ext/libstemmer.h +4 -9
  18. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_basque.c +1167 -0
  19. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_basque.h +6 -0
  20. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_catalan.c +1433 -0
  21. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_catalan.h +6 -0
  22. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_danish.c +120 -143
  23. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_danish.h +1 -2
  24. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_dutch.c +217 -237
  25. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_dutch.h +1 -1
  26. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_english.c +377 -432
  27. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_english.h +1 -1
  28. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_finnish.c +298 -342
  29. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_finnish.h +1 -2
  30. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_french.c +530 -524
  31. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_french.h +1 -1
  32. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_german.c +201 -214
  33. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_german.h +1 -1
  34. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_hungarian.c +1 -1
  35. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_indonesian.c +394 -0
  36. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_indonesian.h +6 -0
  37. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_irish.c +457 -0
  38. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_irish.h +6 -0
  39. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_italian.c +396 -439
  40. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_italian.h +1 -1
  41. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_norwegian.c +104 -128
  42. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_norwegian.h +1 -1
  43. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_porter.c +242 -273
  44. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_porter.h +1 -1
  45. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_portuguese.c +406 -461
  46. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_portuguese.h +1 -2
  47. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_spanish.c +405 -456
  48. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_spanish.h +1 -1
  49. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_swedish.c +108 -126
  50. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_swedish.h +1 -1
  51. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_2_hungarian.c +849 -0
  52. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_2_hungarian.h +6 -0
  53. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_2_romanian.c +373 -405
  54. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_2_romanian.h +1 -1
  55. data/ext/isomorfeus_ferret_ext/stem_KOI8_R_russian.c +288 -305
  56. data/ext/isomorfeus_ferret_ext/stem_KOI8_R_russian.h +1 -1
  57. data/ext/isomorfeus_ferret_ext/stem_UTF_8_arabic.c +1651 -0
  58. data/ext/isomorfeus_ferret_ext/stem_UTF_8_arabic.h +6 -0
  59. data/ext/isomorfeus_ferret_ext/stem_UTF_8_armenian.c +546 -0
  60. data/ext/isomorfeus_ferret_ext/stem_UTF_8_armenian.h +6 -0
  61. data/ext/isomorfeus_ferret_ext/stem_UTF_8_basque.c +1171 -0
  62. data/ext/isomorfeus_ferret_ext/stem_UTF_8_basque.h +6 -0
  63. data/ext/isomorfeus_ferret_ext/stem_UTF_8_catalan.c +1436 -0
  64. data/ext/isomorfeus_ferret_ext/stem_UTF_8_catalan.h +6 -0
  65. data/ext/isomorfeus_ferret_ext/stem_UTF_8_danish.c +121 -141
  66. data/ext/isomorfeus_ferret_ext/stem_UTF_8_danish.h +1 -1
  67. data/ext/isomorfeus_ferret_ext/stem_UTF_8_dutch.c +221 -241
  68. data/ext/isomorfeus_ferret_ext/stem_UTF_8_dutch.h +1 -1
  69. data/ext/isomorfeus_ferret_ext/stem_UTF_8_english.c +381 -431
  70. data/ext/isomorfeus_ferret_ext/stem_UTF_8_english.h +1 -1
  71. data/ext/isomorfeus_ferret_ext/stem_UTF_8_finnish.c +300 -345
  72. data/ext/isomorfeus_ferret_ext/stem_UTF_8_finnish.h +1 -1
  73. data/ext/isomorfeus_ferret_ext/stem_UTF_8_french.c +518 -511
  74. data/ext/isomorfeus_ferret_ext/stem_UTF_8_french.h +1 -1
  75. data/ext/isomorfeus_ferret_ext/stem_UTF_8_german.c +201 -209
  76. data/ext/isomorfeus_ferret_ext/stem_UTF_8_german.h +1 -1
  77. data/ext/isomorfeus_ferret_ext/stem_UTF_8_greek.c +3660 -0
  78. data/ext/isomorfeus_ferret_ext/stem_UTF_8_greek.h +6 -0
  79. data/ext/isomorfeus_ferret_ext/stem_UTF_8_hindi.c +309 -0
  80. data/ext/isomorfeus_ferret_ext/stem_UTF_8_hindi.h +6 -0
  81. data/ext/isomorfeus_ferret_ext/stem_UTF_8_hungarian.c +306 -671
  82. data/ext/isomorfeus_ferret_ext/stem_UTF_8_hungarian.h +1 -1
  83. data/ext/isomorfeus_ferret_ext/stem_UTF_8_indonesian.c +394 -0
  84. data/ext/isomorfeus_ferret_ext/stem_UTF_8_indonesian.h +6 -0
  85. data/ext/isomorfeus_ferret_ext/stem_UTF_8_irish.c +457 -0
  86. data/ext/isomorfeus_ferret_ext/stem_UTF_8_irish.h +6 -0
  87. data/ext/isomorfeus_ferret_ext/stem_UTF_8_italian.c +400 -442
  88. data/ext/isomorfeus_ferret_ext/stem_UTF_8_italian.h +1 -1
  89. data/ext/isomorfeus_ferret_ext/stem_UTF_8_lithuanian.c +824 -0
  90. data/ext/isomorfeus_ferret_ext/stem_UTF_8_lithuanian.h +6 -0
  91. data/ext/isomorfeus_ferret_ext/stem_UTF_8_nepali.c +408 -0
  92. data/ext/isomorfeus_ferret_ext/stem_UTF_8_nepali.h +6 -0
  93. data/ext/isomorfeus_ferret_ext/stem_UTF_8_norwegian.c +105 -127
  94. data/ext/isomorfeus_ferret_ext/stem_UTF_8_norwegian.h +1 -1
  95. data/ext/isomorfeus_ferret_ext/stem_UTF_8_porter.c +245 -276
  96. data/ext/isomorfeus_ferret_ext/stem_UTF_8_porter.h +1 -1
  97. data/ext/isomorfeus_ferret_ext/stem_UTF_8_portuguese.c +409 -464
  98. data/ext/isomorfeus_ferret_ext/stem_UTF_8_portuguese.h +1 -1
  99. data/ext/isomorfeus_ferret_ext/stem_UTF_8_romanian.c +376 -408
  100. data/ext/isomorfeus_ferret_ext/stem_UTF_8_romanian.h +1 -1
  101. data/ext/isomorfeus_ferret_ext/stem_UTF_8_russian.c +272 -287
  102. data/ext/isomorfeus_ferret_ext/stem_UTF_8_russian.h +1 -1
  103. data/ext/isomorfeus_ferret_ext/stem_UTF_8_serbian.c +6530 -0
  104. data/ext/isomorfeus_ferret_ext/stem_UTF_8_serbian.h +6 -0
  105. data/ext/isomorfeus_ferret_ext/stem_UTF_8_spanish.c +407 -458
  106. data/ext/isomorfeus_ferret_ext/stem_UTF_8_spanish.h +1 -1
  107. data/ext/isomorfeus_ferret_ext/stem_UTF_8_swedish.c +110 -125
  108. data/ext/isomorfeus_ferret_ext/stem_UTF_8_swedish.h +1 -1
  109. data/ext/isomorfeus_ferret_ext/stem_UTF_8_tamil.c +1865 -0
  110. data/ext/isomorfeus_ferret_ext/stem_UTF_8_tamil.h +6 -0
  111. data/ext/isomorfeus_ferret_ext/stem_UTF_8_turkish.c +698 -806
  112. data/ext/isomorfeus_ferret_ext/stem_UTF_8_turkish.h +1 -1
  113. data/ext/isomorfeus_ferret_ext/stem_UTF_8_yiddish.c +1220 -0
  114. data/ext/isomorfeus_ferret_ext/stem_UTF_8_yiddish.h +6 -0
  115. data/ext/isomorfeus_ferret_ext/stem_api.c +1 -9
  116. data/ext/isomorfeus_ferret_ext/stem_api.h +1 -3
  117. data/ext/isomorfeus_ferret_ext/stem_header.h +30 -26
  118. data/ext/isomorfeus_ferret_ext/stem_modules.h +113 -26
  119. data/ext/isomorfeus_ferret_ext/stem_modules.txt +18 -5
  120. data/ext/isomorfeus_ferret_ext/stem_utilities.c +167 -132
  121. data/ext/isomorfeus_ferret_ext/test.c +7 -1
  122. data/ext/isomorfeus_ferret_ext/test_search.c +0 -1
  123. data/lib/isomorfeus/ferret/index/index.rb +1 -1
  124. data/lib/isomorfeus/ferret/version.rb +1 -1
  125. metadata +43 -7
  126. data/ext/isomorfeus_ferret_ext/q_parser.y +0 -1366
@@ -0,0 +1,1436 @@
1
+ /* Generated by Snowball 2.2.0 - https://snowballstem.org/ */
2
+
3
+ #include "stem_header.h"
4
+
5
+ extern int catalan_UTF_8_stem(struct SN_env * z);
6
+
7
+ static int r_residual_suffix(struct SN_env * z);
8
+ static int r_verb_suffix(struct SN_env * z);
9
+ static int r_standard_suffix(struct SN_env * z);
10
+ static int r_attached_pronoun(struct SN_env * z);
11
+ static int r_R2(struct SN_env * z);
12
+ static int r_R1(struct SN_env * z);
13
+ static int r_mark_regions(struct SN_env * z);
14
+ static int r_cleaning(struct SN_env * z);
15
+
16
+ extern struct SN_env * catalan_UTF_8_create_env(void);
17
+ extern void catalan_UTF_8_close_env(struct SN_env * z);
18
+
19
+ static const symbol s_0_1[2] = { 0xC2, 0xB7 };
20
+ static const symbol s_0_2[2] = { 0xC3, 0xA0 };
21
+ static const symbol s_0_3[2] = { 0xC3, 0xA1 };
22
+ static const symbol s_0_4[2] = { 0xC3, 0xA8 };
23
+ static const symbol s_0_5[2] = { 0xC3, 0xA9 };
24
+ static const symbol s_0_6[2] = { 0xC3, 0xAC };
25
+ static const symbol s_0_7[2] = { 0xC3, 0xAD };
26
+ static const symbol s_0_8[2] = { 0xC3, 0xAF };
27
+ static const symbol s_0_9[2] = { 0xC3, 0xB2 };
28
+ static const symbol s_0_10[2] = { 0xC3, 0xB3 };
29
+ static const symbol s_0_11[2] = { 0xC3, 0xBA };
30
+ static const symbol s_0_12[2] = { 0xC3, 0xBC };
31
+
32
+ static const struct among a_0[13] =
33
+ {
34
+ { 0, 0, -1, 7, 0},
35
+ { 2, s_0_1, 0, 6, 0},
36
+ { 2, s_0_2, 0, 1, 0},
37
+ { 2, s_0_3, 0, 1, 0},
38
+ { 2, s_0_4, 0, 2, 0},
39
+ { 2, s_0_5, 0, 2, 0},
40
+ { 2, s_0_6, 0, 3, 0},
41
+ { 2, s_0_7, 0, 3, 0},
42
+ { 2, s_0_8, 0, 3, 0},
43
+ { 2, s_0_9, 0, 4, 0},
44
+ { 2, s_0_10, 0, 4, 0},
45
+ { 2, s_0_11, 0, 5, 0},
46
+ { 2, s_0_12, 0, 5, 0}
47
+ };
48
+
49
+ static const symbol s_1_0[2] = { 'l', 'a' };
50
+ static const symbol s_1_1[3] = { '-', 'l', 'a' };
51
+ static const symbol s_1_2[4] = { 's', 'e', 'l', 'a' };
52
+ static const symbol s_1_3[2] = { 'l', 'e' };
53
+ static const symbol s_1_4[2] = { 'm', 'e' };
54
+ static const symbol s_1_5[3] = { '-', 'm', 'e' };
55
+ static const symbol s_1_6[2] = { 's', 'e' };
56
+ static const symbol s_1_7[3] = { '-', 't', 'e' };
57
+ static const symbol s_1_8[2] = { 'h', 'i' };
58
+ static const symbol s_1_9[3] = { '\'', 'h', 'i' };
59
+ static const symbol s_1_10[2] = { 'l', 'i' };
60
+ static const symbol s_1_11[3] = { '-', 'l', 'i' };
61
+ static const symbol s_1_12[2] = { '\'', 'l' };
62
+ static const symbol s_1_13[2] = { '\'', 'm' };
63
+ static const symbol s_1_14[2] = { '-', 'm' };
64
+ static const symbol s_1_15[2] = { '\'', 'n' };
65
+ static const symbol s_1_16[2] = { '-', 'n' };
66
+ static const symbol s_1_17[2] = { 'h', 'o' };
67
+ static const symbol s_1_18[3] = { '\'', 'h', 'o' };
68
+ static const symbol s_1_19[2] = { 'l', 'o' };
69
+ static const symbol s_1_20[4] = { 's', 'e', 'l', 'o' };
70
+ static const symbol s_1_21[2] = { '\'', 's' };
71
+ static const symbol s_1_22[3] = { 'l', 'a', 's' };
72
+ static const symbol s_1_23[5] = { 's', 'e', 'l', 'a', 's' };
73
+ static const symbol s_1_24[3] = { 'l', 'e', 's' };
74
+ static const symbol s_1_25[4] = { '-', 'l', 'e', 's' };
75
+ static const symbol s_1_26[3] = { '\'', 'l', 's' };
76
+ static const symbol s_1_27[3] = { '-', 'l', 's' };
77
+ static const symbol s_1_28[3] = { '\'', 'n', 's' };
78
+ static const symbol s_1_29[3] = { '-', 'n', 's' };
79
+ static const symbol s_1_30[3] = { 'e', 'n', 's' };
80
+ static const symbol s_1_31[3] = { 'l', 'o', 's' };
81
+ static const symbol s_1_32[5] = { 's', 'e', 'l', 'o', 's' };
82
+ static const symbol s_1_33[3] = { 'n', 'o', 's' };
83
+ static const symbol s_1_34[4] = { '-', 'n', 'o', 's' };
84
+ static const symbol s_1_35[3] = { 'v', 'o', 's' };
85
+ static const symbol s_1_36[2] = { 'u', 's' };
86
+ static const symbol s_1_37[3] = { '-', 'u', 's' };
87
+ static const symbol s_1_38[2] = { '\'', 't' };
88
+
89
+ static const struct among a_1[39] =
90
+ {
91
+ { 2, s_1_0, -1, 1, 0},
92
+ { 3, s_1_1, 0, 1, 0},
93
+ { 4, s_1_2, 0, 1, 0},
94
+ { 2, s_1_3, -1, 1, 0},
95
+ { 2, s_1_4, -1, 1, 0},
96
+ { 3, s_1_5, 4, 1, 0},
97
+ { 2, s_1_6, -1, 1, 0},
98
+ { 3, s_1_7, -1, 1, 0},
99
+ { 2, s_1_8, -1, 1, 0},
100
+ { 3, s_1_9, 8, 1, 0},
101
+ { 2, s_1_10, -1, 1, 0},
102
+ { 3, s_1_11, 10, 1, 0},
103
+ { 2, s_1_12, -1, 1, 0},
104
+ { 2, s_1_13, -1, 1, 0},
105
+ { 2, s_1_14, -1, 1, 0},
106
+ { 2, s_1_15, -1, 1, 0},
107
+ { 2, s_1_16, -1, 1, 0},
108
+ { 2, s_1_17, -1, 1, 0},
109
+ { 3, s_1_18, 17, 1, 0},
110
+ { 2, s_1_19, -1, 1, 0},
111
+ { 4, s_1_20, 19, 1, 0},
112
+ { 2, s_1_21, -1, 1, 0},
113
+ { 3, s_1_22, -1, 1, 0},
114
+ { 5, s_1_23, 22, 1, 0},
115
+ { 3, s_1_24, -1, 1, 0},
116
+ { 4, s_1_25, 24, 1, 0},
117
+ { 3, s_1_26, -1, 1, 0},
118
+ { 3, s_1_27, -1, 1, 0},
119
+ { 3, s_1_28, -1, 1, 0},
120
+ { 3, s_1_29, -1, 1, 0},
121
+ { 3, s_1_30, -1, 1, 0},
122
+ { 3, s_1_31, -1, 1, 0},
123
+ { 5, s_1_32, 31, 1, 0},
124
+ { 3, s_1_33, -1, 1, 0},
125
+ { 4, s_1_34, 33, 1, 0},
126
+ { 3, s_1_35, -1, 1, 0},
127
+ { 2, s_1_36, -1, 1, 0},
128
+ { 3, s_1_37, 36, 1, 0},
129
+ { 2, s_1_38, -1, 1, 0}
130
+ };
131
+
132
+ static const symbol s_2_0[3] = { 'i', 'c', 'a' };
133
+ static const symbol s_2_1[7] = { 'l', 0xC3, 0xB3, 'g', 'i', 'c', 'a' };
134
+ static const symbol s_2_2[4] = { 'e', 'n', 'c', 'a' };
135
+ static const symbol s_2_3[3] = { 'a', 'd', 'a' };
136
+ static const symbol s_2_4[5] = { 'a', 'n', 'c', 'i', 'a' };
137
+ static const symbol s_2_5[5] = { 'e', 'n', 'c', 'i', 'a' };
138
+ static const symbol s_2_6[6] = { 0xC3, 0xA8, 'n', 'c', 'i', 'a' };
139
+ static const symbol s_2_7[5] = { 0xC3, 0xAD, 'c', 'i', 'a' };
140
+ static const symbol s_2_8[5] = { 'l', 'o', 'g', 'i', 'a' };
141
+ static const symbol s_2_9[4] = { 'i', 'n', 'i', 'a' };
142
+ static const symbol s_2_10[6] = { 0xC3, 0xAD, 'i', 'n', 'i', 'a' };
143
+ static const symbol s_2_11[4] = { 'e', 'r', 'i', 'a' };
144
+ static const symbol s_2_12[5] = { 0xC3, 0xA0, 'r', 'i', 'a' };
145
+ static const symbol s_2_13[7] = { 'a', 't', 0xC3, 0xB2, 'r', 'i', 'a' };
146
+ static const symbol s_2_14[4] = { 'a', 'l', 'l', 'a' };
147
+ static const symbol s_2_15[4] = { 'e', 'l', 'l', 'a' };
148
+ static const symbol s_2_16[6] = { 0xC3, 0xAD, 'v', 'o', 'l', 'a' };
149
+ static const symbol s_2_17[3] = { 'i', 'm', 'a' };
150
+ static const symbol s_2_18[7] = { 0xC3, 0xAD, 's', 's', 'i', 'm', 'a' };
151
+ static const symbol s_2_19[9] = { 'q', 'u', 0xC3, 0xAD, 's', 's', 'i', 'm', 'a' };
152
+ static const symbol s_2_20[3] = { 'a', 'n', 'a' };
153
+ static const symbol s_2_21[3] = { 'i', 'n', 'a' };
154
+ static const symbol s_2_22[3] = { 'e', 'r', 'a' };
155
+ static const symbol s_2_23[5] = { 's', 'f', 'e', 'r', 'a' };
156
+ static const symbol s_2_24[3] = { 'o', 'r', 'a' };
157
+ static const symbol s_2_25[4] = { 'd', 'o', 'r', 'a' };
158
+ static const symbol s_2_26[5] = { 'a', 'd', 'o', 'r', 'a' };
159
+ static const symbol s_2_27[5] = { 'a', 'd', 'u', 'r', 'a' };
160
+ static const symbol s_2_28[3] = { 'e', 's', 'a' };
161
+ static const symbol s_2_29[3] = { 'o', 's', 'a' };
162
+ static const symbol s_2_30[4] = { 'a', 's', 's', 'a' };
163
+ static const symbol s_2_31[4] = { 'e', 's', 's', 'a' };
164
+ static const symbol s_2_32[4] = { 'i', 's', 's', 'a' };
165
+ static const symbol s_2_33[3] = { 'e', 't', 'a' };
166
+ static const symbol s_2_34[3] = { 'i', 't', 'a' };
167
+ static const symbol s_2_35[3] = { 'o', 't', 'a' };
168
+ static const symbol s_2_36[4] = { 'i', 's', 't', 'a' };
169
+ static const symbol s_2_37[7] = { 'i', 'a', 'l', 'i', 's', 't', 'a' };
170
+ static const symbol s_2_38[7] = { 'i', 'o', 'n', 'i', 's', 't', 'a' };
171
+ static const symbol s_2_39[3] = { 'i', 'v', 'a' };
172
+ static const symbol s_2_40[5] = { 'a', 't', 'i', 'v', 'a' };
173
+ static const symbol s_2_41[4] = { 'n', 0xC3, 0xA7, 'a' };
174
+ static const symbol s_2_42[6] = { 'l', 'o', 'g', 0xC3, 0xAD, 'a' };
175
+ static const symbol s_2_43[2] = { 'i', 'c' };
176
+ static const symbol s_2_44[6] = { 0xC3, 0xAD, 's', 't', 'i', 'c' };
177
+ static const symbol s_2_45[3] = { 'e', 'n', 'c' };
178
+ static const symbol s_2_46[3] = { 'e', 's', 'c' };
179
+ static const symbol s_2_47[2] = { 'u', 'd' };
180
+ static const symbol s_2_48[4] = { 'a', 't', 'g', 'e' };
181
+ static const symbol s_2_49[3] = { 'b', 'l', 'e' };
182
+ static const symbol s_2_50[4] = { 'a', 'b', 'l', 'e' };
183
+ static const symbol s_2_51[4] = { 'i', 'b', 'l', 'e' };
184
+ static const symbol s_2_52[4] = { 'i', 's', 'm', 'e' };
185
+ static const symbol s_2_53[7] = { 'i', 'a', 'l', 'i', 's', 'm', 'e' };
186
+ static const symbol s_2_54[7] = { 'i', 'o', 'n', 'i', 's', 'm', 'e' };
187
+ static const symbol s_2_55[6] = { 'i', 'v', 'i', 's', 'm', 'e' };
188
+ static const symbol s_2_56[4] = { 'a', 'i', 'r', 'e' };
189
+ static const symbol s_2_57[4] = { 'i', 'c', 't', 'e' };
190
+ static const symbol s_2_58[4] = { 'i', 's', 't', 'e' };
191
+ static const symbol s_2_59[3] = { 'i', 'c', 'i' };
192
+ static const symbol s_2_60[4] = { 0xC3, 0xAD, 'c', 'i' };
193
+ static const symbol s_2_61[4] = { 'l', 'o', 'g', 'i' };
194
+ static const symbol s_2_62[3] = { 'a', 'r', 'i' };
195
+ static const symbol s_2_63[4] = { 't', 'o', 'r', 'i' };
196
+ static const symbol s_2_64[2] = { 'a', 'l' };
197
+ static const symbol s_2_65[2] = { 'i', 'l' };
198
+ static const symbol s_2_66[3] = { 'a', 'l', 'l' };
199
+ static const symbol s_2_67[3] = { 'e', 'l', 'l' };
200
+ static const symbol s_2_68[5] = { 0xC3, 0xAD, 'v', 'o', 'l' };
201
+ static const symbol s_2_69[4] = { 'i', 's', 'a', 'm' };
202
+ static const symbol s_2_70[5] = { 'i', 's', 's', 'e', 'm' };
203
+ static const symbol s_2_71[6] = { 0xC3, 0xAC, 's', 's', 'e', 'm' };
204
+ static const symbol s_2_72[6] = { 0xC3, 0xAD, 's', 's', 'e', 'm' };
205
+ static const symbol s_2_73[6] = { 0xC3, 0xAD, 's', 's', 'i', 'm' };
206
+ static const symbol s_2_74[8] = { 'q', 'u', 0xC3, 0xAD, 's', 's', 'i', 'm' };
207
+ static const symbol s_2_75[4] = { 'a', 'm', 'e', 'n' };
208
+ static const symbol s_2_76[6] = { 0xC3, 0xAC, 's', 's', 'i', 'n' };
209
+ static const symbol s_2_77[2] = { 'a', 'r' };
210
+ static const symbol s_2_78[6] = { 'i', 'f', 'i', 'c', 'a', 'r' };
211
+ static const symbol s_2_79[4] = { 'e', 'g', 'a', 'r' };
212
+ static const symbol s_2_80[4] = { 'e', 'j', 'a', 'r' };
213
+ static const symbol s_2_81[4] = { 'i', 't', 'a', 'r' };
214
+ static const symbol s_2_82[5] = { 'i', 't', 'z', 'a', 'r' };
215
+ static const symbol s_2_83[3] = { 'f', 'e', 'r' };
216
+ static const symbol s_2_84[2] = { 'o', 'r' };
217
+ static const symbol s_2_85[3] = { 'd', 'o', 'r' };
218
+ static const symbol s_2_86[3] = { 'd', 'u', 'r' };
219
+ static const symbol s_2_87[5] = { 'd', 'o', 'r', 'a', 's' };
220
+ static const symbol s_2_88[3] = { 'i', 'c', 's' };
221
+ static const symbol s_2_89[7] = { 'l', 0xC3, 0xB3, 'g', 'i', 'c', 's' };
222
+ static const symbol s_2_90[3] = { 'u', 'd', 's' };
223
+ static const symbol s_2_91[4] = { 'n', 'c', 'e', 's' };
224
+ static const symbol s_2_92[4] = { 'a', 'd', 'e', 's' };
225
+ static const symbol s_2_93[6] = { 'a', 'n', 'c', 'i', 'e', 's' };
226
+ static const symbol s_2_94[6] = { 'e', 'n', 'c', 'i', 'e', 's' };
227
+ static const symbol s_2_95[7] = { 0xC3, 0xA8, 'n', 'c', 'i', 'e', 's' };
228
+ static const symbol s_2_96[6] = { 0xC3, 0xAD, 'c', 'i', 'e', 's' };
229
+ static const symbol s_2_97[6] = { 'l', 'o', 'g', 'i', 'e', 's' };
230
+ static const symbol s_2_98[5] = { 'i', 'n', 'i', 'e', 's' };
231
+ static const symbol s_2_99[6] = { 0xC3, 0xAD, 'n', 'i', 'e', 's' };
232
+ static const symbol s_2_100[5] = { 'e', 'r', 'i', 'e', 's' };
233
+ static const symbol s_2_101[6] = { 0xC3, 0xA0, 'r', 'i', 'e', 's' };
234
+ static const symbol s_2_102[8] = { 'a', 't', 0xC3, 0xB2, 'r', 'i', 'e', 's' };
235
+ static const symbol s_2_103[4] = { 'b', 'l', 'e', 's' };
236
+ static const symbol s_2_104[5] = { 'a', 'b', 'l', 'e', 's' };
237
+ static const symbol s_2_105[5] = { 'i', 'b', 'l', 'e', 's' };
238
+ static const symbol s_2_106[4] = { 'i', 'm', 'e', 's' };
239
+ static const symbol s_2_107[8] = { 0xC3, 0xAD, 's', 's', 'i', 'm', 'e', 's' };
240
+ static const symbol s_2_108[10] = { 'q', 'u', 0xC3, 0xAD, 's', 's', 'i', 'm', 'e', 's' };
241
+ static const symbol s_2_109[6] = { 'f', 'o', 'r', 'm', 'e', 's' };
242
+ static const symbol s_2_110[5] = { 'i', 's', 'm', 'e', 's' };
243
+ static const symbol s_2_111[8] = { 'i', 'a', 'l', 'i', 's', 'm', 'e', 's' };
244
+ static const symbol s_2_112[4] = { 'i', 'n', 'e', 's' };
245
+ static const symbol s_2_113[4] = { 'e', 'r', 'e', 's' };
246
+ static const symbol s_2_114[4] = { 'o', 'r', 'e', 's' };
247
+ static const symbol s_2_115[5] = { 'd', 'o', 'r', 'e', 's' };
248
+ static const symbol s_2_116[6] = { 'i', 'd', 'o', 'r', 'e', 's' };
249
+ static const symbol s_2_117[5] = { 'd', 'u', 'r', 'e', 's' };
250
+ static const symbol s_2_118[4] = { 'e', 's', 'e', 's' };
251
+ static const symbol s_2_119[4] = { 'o', 's', 'e', 's' };
252
+ static const symbol s_2_120[5] = { 'a', 's', 's', 'e', 's' };
253
+ static const symbol s_2_121[5] = { 'i', 'c', 't', 'e', 's' };
254
+ static const symbol s_2_122[4] = { 'i', 't', 'e', 's' };
255
+ static const symbol s_2_123[4] = { 'o', 't', 'e', 's' };
256
+ static const symbol s_2_124[5] = { 'i', 's', 't', 'e', 's' };
257
+ static const symbol s_2_125[8] = { 'i', 'a', 'l', 'i', 's', 't', 'e', 's' };
258
+ static const symbol s_2_126[8] = { 'i', 'o', 'n', 'i', 's', 't', 'e', 's' };
259
+ static const symbol s_2_127[5] = { 'i', 'q', 'u', 'e', 's' };
260
+ static const symbol s_2_128[9] = { 'l', 0xC3, 0xB3, 'g', 'i', 'q', 'u', 'e', 's' };
261
+ static const symbol s_2_129[4] = { 'i', 'v', 'e', 's' };
262
+ static const symbol s_2_130[6] = { 'a', 't', 'i', 'v', 'e', 's' };
263
+ static const symbol s_2_131[7] = { 'l', 'o', 'g', 0xC3, 0xAD, 'e', 's' };
264
+ static const symbol s_2_132[10] = { 'a', 'l', 'l', 'e', 'n', 'g', 0xC3, 0xBC, 'e', 's' };
265
+ static const symbol s_2_133[4] = { 'i', 'c', 'i', 's' };
266
+ static const symbol s_2_134[5] = { 0xC3, 0xAD, 'c', 'i', 's' };
267
+ static const symbol s_2_135[5] = { 'l', 'o', 'g', 'i', 's' };
268
+ static const symbol s_2_136[4] = { 'a', 'r', 'i', 's' };
269
+ static const symbol s_2_137[5] = { 't', 'o', 'r', 'i', 's' };
270
+ static const symbol s_2_138[2] = { 'l', 's' };
271
+ static const symbol s_2_139[3] = { 'a', 'l', 's' };
272
+ static const symbol s_2_140[4] = { 'e', 'l', 'l', 's' };
273
+ static const symbol s_2_141[3] = { 'i', 'm', 's' };
274
+ static const symbol s_2_142[7] = { 0xC3, 0xAD, 's', 's', 'i', 'm', 's' };
275
+ static const symbol s_2_143[9] = { 'q', 'u', 0xC3, 0xAD, 's', 's', 'i', 'm', 's' };
276
+ static const symbol s_2_144[4] = { 'i', 'o', 'n', 's' };
277
+ static const symbol s_2_145[5] = { 'c', 'i', 'o', 'n', 's' };
278
+ static const symbol s_2_146[6] = { 'a', 'c', 'i', 'o', 'n', 's' };
279
+ static const symbol s_2_147[4] = { 'e', 's', 'o', 's' };
280
+ static const symbol s_2_148[4] = { 'o', 's', 'o', 's' };
281
+ static const symbol s_2_149[5] = { 'a', 's', 's', 'o', 's' };
282
+ static const symbol s_2_150[5] = { 'i', 's', 's', 'o', 's' };
283
+ static const symbol s_2_151[3] = { 'e', 'r', 's' };
284
+ static const symbol s_2_152[3] = { 'o', 'r', 's' };
285
+ static const symbol s_2_153[4] = { 'd', 'o', 'r', 's' };
286
+ static const symbol s_2_154[5] = { 'a', 'd', 'o', 'r', 's' };
287
+ static const symbol s_2_155[5] = { 'i', 'd', 'o', 'r', 's' };
288
+ static const symbol s_2_156[3] = { 'a', 't', 's' };
289
+ static const symbol s_2_157[5] = { 'i', 't', 'a', 't', 's' };
290
+ static const symbol s_2_158[8] = { 'b', 'i', 'l', 'i', 't', 'a', 't', 's' };
291
+ static const symbol s_2_159[7] = { 'i', 'v', 'i', 't', 'a', 't', 's' };
292
+ static const symbol s_2_160[9] = { 'a', 't', 'i', 'v', 'i', 't', 'a', 't', 's' };
293
+ static const symbol s_2_161[6] = { 0xC3, 0xAF, 't', 'a', 't', 's' };
294
+ static const symbol s_2_162[3] = { 'e', 't', 's' };
295
+ static const symbol s_2_163[4] = { 'a', 'n', 't', 's' };
296
+ static const symbol s_2_164[4] = { 'e', 'n', 't', 's' };
297
+ static const symbol s_2_165[5] = { 'm', 'e', 'n', 't', 's' };
298
+ static const symbol s_2_166[6] = { 'a', 'm', 'e', 'n', 't', 's' };
299
+ static const symbol s_2_167[3] = { 'o', 't', 's' };
300
+ static const symbol s_2_168[3] = { 'u', 't', 's' };
301
+ static const symbol s_2_169[3] = { 'i', 'u', 's' };
302
+ static const symbol s_2_170[5] = { 't', 'r', 'i', 'u', 's' };
303
+ static const symbol s_2_171[5] = { 'a', 't', 'i', 'u', 's' };
304
+ static const symbol s_2_172[3] = { 0xC3, 0xA8, 's' };
305
+ static const symbol s_2_173[3] = { 0xC3, 0xA9, 's' };
306
+ static const symbol s_2_174[3] = { 0xC3, 0xAD, 's' };
307
+ static const symbol s_2_175[4] = { 'd', 0xC3, 0xAD, 's' };
308
+ static const symbol s_2_176[3] = { 0xC3, 0xB3, 's' };
309
+ static const symbol s_2_177[4] = { 'i', 't', 'a', 't' };
310
+ static const symbol s_2_178[7] = { 'b', 'i', 'l', 'i', 't', 'a', 't' };
311
+ static const symbol s_2_179[6] = { 'i', 'v', 'i', 't', 'a', 't' };
312
+ static const symbol s_2_180[8] = { 'a', 't', 'i', 'v', 'i', 't', 'a', 't' };
313
+ static const symbol s_2_181[5] = { 0xC3, 0xAF, 't', 'a', 't' };
314
+ static const symbol s_2_182[2] = { 'e', 't' };
315
+ static const symbol s_2_183[3] = { 'a', 'n', 't' };
316
+ static const symbol s_2_184[3] = { 'e', 'n', 't' };
317
+ static const symbol s_2_185[4] = { 'i', 'e', 'n', 't' };
318
+ static const symbol s_2_186[4] = { 'm', 'e', 'n', 't' };
319
+ static const symbol s_2_187[5] = { 'a', 'm', 'e', 'n', 't' };
320
+ static const symbol s_2_188[7] = { 'i', 's', 'a', 'm', 'e', 'n', 't' };
321
+ static const symbol s_2_189[2] = { 'o', 't' };
322
+ static const symbol s_2_190[5] = { 'i', 's', 's', 'e', 'u' };
323
+ static const symbol s_2_191[6] = { 0xC3, 0xAC, 's', 's', 'e', 'u' };
324
+ static const symbol s_2_192[6] = { 0xC3, 0xAD, 's', 's', 'e', 'u' };
325
+ static const symbol s_2_193[4] = { 't', 'r', 'i', 'u' };
326
+ static const symbol s_2_194[6] = { 0xC3, 0xAD, 's', 's', 'i', 'u' };
327
+ static const symbol s_2_195[4] = { 'a', 't', 'i', 'u' };
328
+ static const symbol s_2_196[2] = { 0xC3, 0xB3 };
329
+ static const symbol s_2_197[3] = { 'i', 0xC3, 0xB3 };
330
+ static const symbol s_2_198[4] = { 'c', 'i', 0xC3, 0xB3 };
331
+ static const symbol s_2_199[5] = { 'a', 'c', 'i', 0xC3, 0xB3 };
332
+
333
+ static const struct among a_2[200] =
334
+ {
335
+ { 3, s_2_0, -1, 4, 0},
336
+ { 7, s_2_1, 0, 3, 0},
337
+ { 4, s_2_2, -1, 1, 0},
338
+ { 3, s_2_3, -1, 2, 0},
339
+ { 5, s_2_4, -1, 1, 0},
340
+ { 5, s_2_5, -1, 1, 0},
341
+ { 6, s_2_6, -1, 1, 0},
342
+ { 5, s_2_7, -1, 1, 0},
343
+ { 5, s_2_8, -1, 3, 0},
344
+ { 4, s_2_9, -1, 1, 0},
345
+ { 6, s_2_10, 9, 1, 0},
346
+ { 4, s_2_11, -1, 1, 0},
347
+ { 5, s_2_12, -1, 1, 0},
348
+ { 7, s_2_13, -1, 1, 0},
349
+ { 4, s_2_14, -1, 1, 0},
350
+ { 4, s_2_15, -1, 1, 0},
351
+ { 6, s_2_16, -1, 1, 0},
352
+ { 3, s_2_17, -1, 1, 0},
353
+ { 7, s_2_18, 17, 1, 0},
354
+ { 9, s_2_19, 18, 5, 0},
355
+ { 3, s_2_20, -1, 1, 0},
356
+ { 3, s_2_21, -1, 1, 0},
357
+ { 3, s_2_22, -1, 1, 0},
358
+ { 5, s_2_23, 22, 1, 0},
359
+ { 3, s_2_24, -1, 1, 0},
360
+ { 4, s_2_25, 24, 1, 0},
361
+ { 5, s_2_26, 25, 1, 0},
362
+ { 5, s_2_27, -1, 1, 0},
363
+ { 3, s_2_28, -1, 1, 0},
364
+ { 3, s_2_29, -1, 1, 0},
365
+ { 4, s_2_30, -1, 1, 0},
366
+ { 4, s_2_31, -1, 1, 0},
367
+ { 4, s_2_32, -1, 1, 0},
368
+ { 3, s_2_33, -1, 1, 0},
369
+ { 3, s_2_34, -1, 1, 0},
370
+ { 3, s_2_35, -1, 1, 0},
371
+ { 4, s_2_36, -1, 1, 0},
372
+ { 7, s_2_37, 36, 1, 0},
373
+ { 7, s_2_38, 36, 1, 0},
374
+ { 3, s_2_39, -1, 1, 0},
375
+ { 5, s_2_40, 39, 1, 0},
376
+ { 4, s_2_41, -1, 1, 0},
377
+ { 6, s_2_42, -1, 3, 0},
378
+ { 2, s_2_43, -1, 4, 0},
379
+ { 6, s_2_44, 43, 1, 0},
380
+ { 3, s_2_45, -1, 1, 0},
381
+ { 3, s_2_46, -1, 1, 0},
382
+ { 2, s_2_47, -1, 1, 0},
383
+ { 4, s_2_48, -1, 1, 0},
384
+ { 3, s_2_49, -1, 1, 0},
385
+ { 4, s_2_50, 49, 1, 0},
386
+ { 4, s_2_51, 49, 1, 0},
387
+ { 4, s_2_52, -1, 1, 0},
388
+ { 7, s_2_53, 52, 1, 0},
389
+ { 7, s_2_54, 52, 1, 0},
390
+ { 6, s_2_55, 52, 1, 0},
391
+ { 4, s_2_56, -1, 1, 0},
392
+ { 4, s_2_57, -1, 1, 0},
393
+ { 4, s_2_58, -1, 1, 0},
394
+ { 3, s_2_59, -1, 1, 0},
395
+ { 4, s_2_60, -1, 1, 0},
396
+ { 4, s_2_61, -1, 3, 0},
397
+ { 3, s_2_62, -1, 1, 0},
398
+ { 4, s_2_63, -1, 1, 0},
399
+ { 2, s_2_64, -1, 1, 0},
400
+ { 2, s_2_65, -1, 1, 0},
401
+ { 3, s_2_66, -1, 1, 0},
402
+ { 3, s_2_67, -1, 1, 0},
403
+ { 5, s_2_68, -1, 1, 0},
404
+ { 4, s_2_69, -1, 1, 0},
405
+ { 5, s_2_70, -1, 1, 0},
406
+ { 6, s_2_71, -1, 1, 0},
407
+ { 6, s_2_72, -1, 1, 0},
408
+ { 6, s_2_73, -1, 1, 0},
409
+ { 8, s_2_74, 73, 5, 0},
410
+ { 4, s_2_75, -1, 1, 0},
411
+ { 6, s_2_76, -1, 1, 0},
412
+ { 2, s_2_77, -1, 1, 0},
413
+ { 6, s_2_78, 77, 1, 0},
414
+ { 4, s_2_79, 77, 1, 0},
415
+ { 4, s_2_80, 77, 1, 0},
416
+ { 4, s_2_81, 77, 1, 0},
417
+ { 5, s_2_82, 77, 1, 0},
418
+ { 3, s_2_83, -1, 1, 0},
419
+ { 2, s_2_84, -1, 1, 0},
420
+ { 3, s_2_85, 84, 1, 0},
421
+ { 3, s_2_86, -1, 1, 0},
422
+ { 5, s_2_87, -1, 1, 0},
423
+ { 3, s_2_88, -1, 4, 0},
424
+ { 7, s_2_89, 88, 3, 0},
425
+ { 3, s_2_90, -1, 1, 0},
426
+ { 4, s_2_91, -1, 1, 0},
427
+ { 4, s_2_92, -1, 2, 0},
428
+ { 6, s_2_93, -1, 1, 0},
429
+ { 6, s_2_94, -1, 1, 0},
430
+ { 7, s_2_95, -1, 1, 0},
431
+ { 6, s_2_96, -1, 1, 0},
432
+ { 6, s_2_97, -1, 3, 0},
433
+ { 5, s_2_98, -1, 1, 0},
434
+ { 6, s_2_99, -1, 1, 0},
435
+ { 5, s_2_100, -1, 1, 0},
436
+ { 6, s_2_101, -1, 1, 0},
437
+ { 8, s_2_102, -1, 1, 0},
438
+ { 4, s_2_103, -1, 1, 0},
439
+ { 5, s_2_104, 103, 1, 0},
440
+ { 5, s_2_105, 103, 1, 0},
441
+ { 4, s_2_106, -1, 1, 0},
442
+ { 8, s_2_107, 106, 1, 0},
443
+ { 10, s_2_108, 107, 5, 0},
444
+ { 6, s_2_109, -1, 1, 0},
445
+ { 5, s_2_110, -1, 1, 0},
446
+ { 8, s_2_111, 110, 1, 0},
447
+ { 4, s_2_112, -1, 1, 0},
448
+ { 4, s_2_113, -1, 1, 0},
449
+ { 4, s_2_114, -1, 1, 0},
450
+ { 5, s_2_115, 114, 1, 0},
451
+ { 6, s_2_116, 115, 1, 0},
452
+ { 5, s_2_117, -1, 1, 0},
453
+ { 4, s_2_118, -1, 1, 0},
454
+ { 4, s_2_119, -1, 1, 0},
455
+ { 5, s_2_120, -1, 1, 0},
456
+ { 5, s_2_121, -1, 1, 0},
457
+ { 4, s_2_122, -1, 1, 0},
458
+ { 4, s_2_123, -1, 1, 0},
459
+ { 5, s_2_124, -1, 1, 0},
460
+ { 8, s_2_125, 124, 1, 0},
461
+ { 8, s_2_126, 124, 1, 0},
462
+ { 5, s_2_127, -1, 4, 0},
463
+ { 9, s_2_128, 127, 3, 0},
464
+ { 4, s_2_129, -1, 1, 0},
465
+ { 6, s_2_130, 129, 1, 0},
466
+ { 7, s_2_131, -1, 3, 0},
467
+ { 10, s_2_132, -1, 1, 0},
468
+ { 4, s_2_133, -1, 1, 0},
469
+ { 5, s_2_134, -1, 1, 0},
470
+ { 5, s_2_135, -1, 3, 0},
471
+ { 4, s_2_136, -1, 1, 0},
472
+ { 5, s_2_137, -1, 1, 0},
473
+ { 2, s_2_138, -1, 1, 0},
474
+ { 3, s_2_139, 138, 1, 0},
475
+ { 4, s_2_140, 138, 1, 0},
476
+ { 3, s_2_141, -1, 1, 0},
477
+ { 7, s_2_142, 141, 1, 0},
478
+ { 9, s_2_143, 142, 5, 0},
479
+ { 4, s_2_144, -1, 1, 0},
480
+ { 5, s_2_145, 144, 1, 0},
481
+ { 6, s_2_146, 145, 2, 0},
482
+ { 4, s_2_147, -1, 1, 0},
483
+ { 4, s_2_148, -1, 1, 0},
484
+ { 5, s_2_149, -1, 1, 0},
485
+ { 5, s_2_150, -1, 1, 0},
486
+ { 3, s_2_151, -1, 1, 0},
487
+ { 3, s_2_152, -1, 1, 0},
488
+ { 4, s_2_153, 152, 1, 0},
489
+ { 5, s_2_154, 153, 1, 0},
490
+ { 5, s_2_155, 153, 1, 0},
491
+ { 3, s_2_156, -1, 1, 0},
492
+ { 5, s_2_157, 156, 1, 0},
493
+ { 8, s_2_158, 157, 1, 0},
494
+ { 7, s_2_159, 157, 1, 0},
495
+ { 9, s_2_160, 159, 1, 0},
496
+ { 6, s_2_161, 156, 1, 0},
497
+ { 3, s_2_162, -1, 1, 0},
498
+ { 4, s_2_163, -1, 1, 0},
499
+ { 4, s_2_164, -1, 1, 0},
500
+ { 5, s_2_165, 164, 1, 0},
501
+ { 6, s_2_166, 165, 1, 0},
502
+ { 3, s_2_167, -1, 1, 0},
503
+ { 3, s_2_168, -1, 1, 0},
504
+ { 3, s_2_169, -1, 1, 0},
505
+ { 5, s_2_170, 169, 1, 0},
506
+ { 5, s_2_171, 169, 1, 0},
507
+ { 3, s_2_172, -1, 1, 0},
508
+ { 3, s_2_173, -1, 1, 0},
509
+ { 3, s_2_174, -1, 1, 0},
510
+ { 4, s_2_175, 174, 1, 0},
511
+ { 3, s_2_176, -1, 1, 0},
512
+ { 4, s_2_177, -1, 1, 0},
513
+ { 7, s_2_178, 177, 1, 0},
514
+ { 6, s_2_179, 177, 1, 0},
515
+ { 8, s_2_180, 179, 1, 0},
516
+ { 5, s_2_181, -1, 1, 0},
517
+ { 2, s_2_182, -1, 1, 0},
518
+ { 3, s_2_183, -1, 1, 0},
519
+ { 3, s_2_184, -1, 1, 0},
520
+ { 4, s_2_185, 184, 1, 0},
521
+ { 4, s_2_186, 184, 1, 0},
522
+ { 5, s_2_187, 186, 1, 0},
523
+ { 7, s_2_188, 187, 1, 0},
524
+ { 2, s_2_189, -1, 1, 0},
525
+ { 5, s_2_190, -1, 1, 0},
526
+ { 6, s_2_191, -1, 1, 0},
527
+ { 6, s_2_192, -1, 1, 0},
528
+ { 4, s_2_193, -1, 1, 0},
529
+ { 6, s_2_194, -1, 1, 0},
530
+ { 4, s_2_195, -1, 1, 0},
531
+ { 2, s_2_196, -1, 1, 0},
532
+ { 3, s_2_197, 196, 1, 0},
533
+ { 4, s_2_198, 197, 1, 0},
534
+ { 5, s_2_199, 198, 1, 0}
535
+ };
536
+
537
+ static const symbol s_3_0[3] = { 'a', 'b', 'a' };
538
+ static const symbol s_3_1[4] = { 'e', 's', 'c', 'a' };
539
+ static const symbol s_3_2[4] = { 'i', 's', 'c', 'a' };
540
+ static const symbol s_3_3[5] = { 0xC3, 0xAF, 's', 'c', 'a' };
541
+ static const symbol s_3_4[3] = { 'a', 'd', 'a' };
542
+ static const symbol s_3_5[3] = { 'i', 'd', 'a' };
543
+ static const symbol s_3_6[3] = { 'u', 'd', 'a' };
544
+ static const symbol s_3_7[4] = { 0xC3, 0xAF, 'd', 'a' };
545
+ static const symbol s_3_8[2] = { 'i', 'a' };
546
+ static const symbol s_3_9[4] = { 'a', 'r', 'i', 'a' };
547
+ static const symbol s_3_10[4] = { 'i', 'r', 'i', 'a' };
548
+ static const symbol s_3_11[3] = { 'a', 'r', 'a' };
549
+ static const symbol s_3_12[4] = { 'i', 'e', 'r', 'a' };
550
+ static const symbol s_3_13[3] = { 'i', 'r', 'a' };
551
+ static const symbol s_3_14[5] = { 'a', 'd', 'o', 'r', 'a' };
552
+ static const symbol s_3_15[4] = { 0xC3, 0xAF, 'r', 'a' };
553
+ static const symbol s_3_16[3] = { 'a', 'v', 'a' };
554
+ static const symbol s_3_17[3] = { 'i', 'x', 'a' };
555
+ static const symbol s_3_18[4] = { 'i', 't', 'z', 'a' };
556
+ static const symbol s_3_19[3] = { 0xC3, 0xAD, 'a' };
557
+ static const symbol s_3_20[5] = { 'a', 'r', 0xC3, 0xAD, 'a' };
558
+ static const symbol s_3_21[5] = { 'e', 'r', 0xC3, 0xAD, 'a' };
559
+ static const symbol s_3_22[5] = { 'i', 'r', 0xC3, 0xAD, 'a' };
560
+ static const symbol s_3_23[3] = { 0xC3, 0xAF, 'a' };
561
+ static const symbol s_3_24[3] = { 'i', 's', 'c' };
562
+ static const symbol s_3_25[4] = { 0xC3, 0xAF, 's', 'c' };
563
+ static const symbol s_3_26[2] = { 'a', 'd' };
564
+ static const symbol s_3_27[2] = { 'e', 'd' };
565
+ static const symbol s_3_28[2] = { 'i', 'd' };
566
+ static const symbol s_3_29[2] = { 'i', 'e' };
567
+ static const symbol s_3_30[2] = { 'r', 'e' };
568
+ static const symbol s_3_31[3] = { 'd', 'r', 'e' };
569
+ static const symbol s_3_32[3] = { 'a', 's', 'e' };
570
+ static const symbol s_3_33[4] = { 'i', 'e', 's', 'e' };
571
+ static const symbol s_3_34[4] = { 'a', 's', 't', 'e' };
572
+ static const symbol s_3_35[4] = { 'i', 's', 't', 'e' };
573
+ static const symbol s_3_36[2] = { 'i', 'i' };
574
+ static const symbol s_3_37[3] = { 'i', 'n', 'i' };
575
+ static const symbol s_3_38[5] = { 'e', 's', 'q', 'u', 'i' };
576
+ static const symbol s_3_39[4] = { 'e', 'i', 'x', 'i' };
577
+ static const symbol s_3_40[4] = { 'i', 't', 'z', 'i' };
578
+ static const symbol s_3_41[2] = { 'a', 'm' };
579
+ static const symbol s_3_42[2] = { 'e', 'm' };
580
+ static const symbol s_3_43[4] = { 'a', 'r', 'e', 'm' };
581
+ static const symbol s_3_44[4] = { 'i', 'r', 'e', 'm' };
582
+ static const symbol s_3_45[5] = { 0xC3, 0xA0, 'r', 'e', 'm' };
583
+ static const symbol s_3_46[5] = { 0xC3, 0xAD, 'r', 'e', 'm' };
584
+ static const symbol s_3_47[6] = { 0xC3, 0xA0, 's', 's', 'e', 'm' };
585
+ static const symbol s_3_48[6] = { 0xC3, 0xA9, 's', 's', 'e', 'm' };
586
+ static const symbol s_3_49[5] = { 'i', 'g', 'u', 'e', 'm' };
587
+ static const symbol s_3_50[6] = { 0xC3, 0xAF, 'g', 'u', 'e', 'm' };
588
+ static const symbol s_3_51[4] = { 'a', 'v', 'e', 'm' };
589
+ static const symbol s_3_52[5] = { 0xC3, 0xA0, 'v', 'e', 'm' };
590
+ static const symbol s_3_53[5] = { 0xC3, 0xA1, 'v', 'e', 'm' };
591
+ static const symbol s_3_54[6] = { 'i', 'r', 0xC3, 0xAC, 'e', 'm' };
592
+ static const symbol s_3_55[4] = { 0xC3, 0xAD, 'e', 'm' };
593
+ static const symbol s_3_56[6] = { 'a', 'r', 0xC3, 0xAD, 'e', 'm' };
594
+ static const symbol s_3_57[6] = { 'i', 'r', 0xC3, 0xAD, 'e', 'm' };
595
+ static const symbol s_3_58[5] = { 'a', 's', 's', 'i', 'm' };
596
+ static const symbol s_3_59[5] = { 'e', 's', 's', 'i', 'm' };
597
+ static const symbol s_3_60[5] = { 'i', 's', 's', 'i', 'm' };
598
+ static const symbol s_3_61[6] = { 0xC3, 0xA0, 's', 's', 'i', 'm' };
599
+ static const symbol s_3_62[6] = { 0xC3, 0xA8, 's', 's', 'i', 'm' };
600
+ static const symbol s_3_63[6] = { 0xC3, 0xA9, 's', 's', 'i', 'm' };
601
+ static const symbol s_3_64[6] = { 0xC3, 0xAD, 's', 's', 'i', 'm' };
602
+ static const symbol s_3_65[3] = { 0xC3, 0xAF, 'm' };
603
+ static const symbol s_3_66[2] = { 'a', 'n' };
604
+ static const symbol s_3_67[4] = { 'a', 'b', 'a', 'n' };
605
+ static const symbol s_3_68[5] = { 'a', 'r', 'i', 'a', 'n' };
606
+ static const symbol s_3_69[4] = { 'a', 'r', 'a', 'n' };
607
+ static const symbol s_3_70[5] = { 'i', 'e', 'r', 'a', 'n' };
608
+ static const symbol s_3_71[4] = { 'i', 'r', 'a', 'n' };
609
+ static const symbol s_3_72[4] = { 0xC3, 0xAD, 'a', 'n' };
610
+ static const symbol s_3_73[6] = { 'a', 'r', 0xC3, 0xAD, 'a', 'n' };
611
+ static const symbol s_3_74[6] = { 'e', 'r', 0xC3, 0xAD, 'a', 'n' };
612
+ static const symbol s_3_75[6] = { 'i', 'r', 0xC3, 0xAD, 'a', 'n' };
613
+ static const symbol s_3_76[2] = { 'e', 'n' };
614
+ static const symbol s_3_77[3] = { 'i', 'e', 'n' };
615
+ static const symbol s_3_78[5] = { 'a', 'r', 'i', 'e', 'n' };
616
+ static const symbol s_3_79[5] = { 'i', 'r', 'i', 'e', 'n' };
617
+ static const symbol s_3_80[4] = { 'a', 'r', 'e', 'n' };
618
+ static const symbol s_3_81[4] = { 'e', 'r', 'e', 'n' };
619
+ static const symbol s_3_82[4] = { 'i', 'r', 'e', 'n' };
620
+ static const symbol s_3_83[5] = { 0xC3, 0xA0, 'r', 'e', 'n' };
621
+ static const symbol s_3_84[5] = { 0xC3, 0xAF, 'r', 'e', 'n' };
622
+ static const symbol s_3_85[4] = { 'a', 's', 'e', 'n' };
623
+ static const symbol s_3_86[5] = { 'i', 'e', 's', 'e', 'n' };
624
+ static const symbol s_3_87[5] = { 'a', 's', 's', 'e', 'n' };
625
+ static const symbol s_3_88[5] = { 'e', 's', 's', 'e', 'n' };
626
+ static const symbol s_3_89[5] = { 'i', 's', 's', 'e', 'n' };
627
+ static const symbol s_3_90[6] = { 0xC3, 0xA9, 's', 's', 'e', 'n' };
628
+ static const symbol s_3_91[6] = { 0xC3, 0xAF, 's', 's', 'e', 'n' };
629
+ static const symbol s_3_92[6] = { 'e', 's', 'q', 'u', 'e', 'n' };
630
+ static const symbol s_3_93[6] = { 'i', 's', 'q', 'u', 'e', 'n' };
631
+ static const symbol s_3_94[7] = { 0xC3, 0xAF, 's', 'q', 'u', 'e', 'n' };
632
+ static const symbol s_3_95[4] = { 'a', 'v', 'e', 'n' };
633
+ static const symbol s_3_96[4] = { 'i', 'x', 'e', 'n' };
634
+ static const symbol s_3_97[5] = { 'e', 'i', 'x', 'e', 'n' };
635
+ static const symbol s_3_98[5] = { 0xC3, 0xAF, 'x', 'e', 'n' };
636
+ static const symbol s_3_99[4] = { 0xC3, 0xAF, 'e', 'n' };
637
+ static const symbol s_3_100[2] = { 'i', 'n' };
638
+ static const symbol s_3_101[4] = { 'i', 'n', 'i', 'n' };
639
+ static const symbol s_3_102[3] = { 's', 'i', 'n' };
640
+ static const symbol s_3_103[4] = { 'i', 's', 'i', 'n' };
641
+ static const symbol s_3_104[5] = { 'a', 's', 's', 'i', 'n' };
642
+ static const symbol s_3_105[5] = { 'e', 's', 's', 'i', 'n' };
643
+ static const symbol s_3_106[5] = { 'i', 's', 's', 'i', 'n' };
644
+ static const symbol s_3_107[6] = { 0xC3, 0xAF, 's', 's', 'i', 'n' };
645
+ static const symbol s_3_108[6] = { 'e', 's', 'q', 'u', 'i', 'n' };
646
+ static const symbol s_3_109[5] = { 'e', 'i', 'x', 'i', 'n' };
647
+ static const symbol s_3_110[4] = { 'a', 'r', 'o', 'n' };
648
+ static const symbol s_3_111[5] = { 'i', 'e', 'r', 'o', 'n' };
649
+ static const symbol s_3_112[5] = { 'a', 'r', 0xC3, 0xA1, 'n' };
650
+ static const symbol s_3_113[5] = { 'e', 'r', 0xC3, 0xA1, 'n' };
651
+ static const symbol s_3_114[5] = { 'i', 'r', 0xC3, 0xA1, 'n' };
652
+ static const symbol s_3_115[4] = { 'i', 0xC3, 0xAF, 'n' };
653
+ static const symbol s_3_116[3] = { 'a', 'd', 'o' };
654
+ static const symbol s_3_117[3] = { 'i', 'd', 'o' };
655
+ static const symbol s_3_118[4] = { 'a', 'n', 'd', 'o' };
656
+ static const symbol s_3_119[5] = { 'i', 'e', 'n', 'd', 'o' };
657
+ static const symbol s_3_120[2] = { 'i', 'o' };
658
+ static const symbol s_3_121[3] = { 'i', 'x', 'o' };
659
+ static const symbol s_3_122[4] = { 'e', 'i', 'x', 'o' };
660
+ static const symbol s_3_123[4] = { 0xC3, 0xAF, 'x', 'o' };
661
+ static const symbol s_3_124[4] = { 'i', 't', 'z', 'o' };
662
+ static const symbol s_3_125[2] = { 'a', 'r' };
663
+ static const symbol s_3_126[4] = { 't', 'z', 'a', 'r' };
664
+ static const symbol s_3_127[2] = { 'e', 'r' };
665
+ static const symbol s_3_128[5] = { 'e', 'i', 'x', 'e', 'r' };
666
+ static const symbol s_3_129[2] = { 'i', 'r' };
667
+ static const symbol s_3_130[4] = { 'a', 'd', 'o', 'r' };
668
+ static const symbol s_3_131[2] = { 'a', 's' };
669
+ static const symbol s_3_132[4] = { 'a', 'b', 'a', 's' };
670
+ static const symbol s_3_133[4] = { 'a', 'd', 'a', 's' };
671
+ static const symbol s_3_134[4] = { 'i', 'd', 'a', 's' };
672
+ static const symbol s_3_135[4] = { 'a', 'r', 'a', 's' };
673
+ static const symbol s_3_136[5] = { 'i', 'e', 'r', 'a', 's' };
674
+ static const symbol s_3_137[4] = { 0xC3, 0xAD, 'a', 's' };
675
+ static const symbol s_3_138[6] = { 'a', 'r', 0xC3, 0xAD, 'a', 's' };
676
+ static const symbol s_3_139[6] = { 'e', 'r', 0xC3, 0xAD, 'a', 's' };
677
+ static const symbol s_3_140[6] = { 'i', 'r', 0xC3, 0xAD, 'a', 's' };
678
+ static const symbol s_3_141[3] = { 'i', 'd', 's' };
679
+ static const symbol s_3_142[2] = { 'e', 's' };
680
+ static const symbol s_3_143[4] = { 'a', 'd', 'e', 's' };
681
+ static const symbol s_3_144[4] = { 'i', 'd', 'e', 's' };
682
+ static const symbol s_3_145[4] = { 'u', 'd', 'e', 's' };
683
+ static const symbol s_3_146[5] = { 0xC3, 0xAF, 'd', 'e', 's' };
684
+ static const symbol s_3_147[5] = { 'a', 't', 'g', 'e', 's' };
685
+ static const symbol s_3_148[3] = { 'i', 'e', 's' };
686
+ static const symbol s_3_149[5] = { 'a', 'r', 'i', 'e', 's' };
687
+ static const symbol s_3_150[5] = { 'i', 'r', 'i', 'e', 's' };
688
+ static const symbol s_3_151[4] = { 'a', 'r', 'e', 's' };
689
+ static const symbol s_3_152[4] = { 'i', 'r', 'e', 's' };
690
+ static const symbol s_3_153[6] = { 'a', 'd', 'o', 'r', 'e', 's' };
691
+ static const symbol s_3_154[5] = { 0xC3, 0xAF, 'r', 'e', 's' };
692
+ static const symbol s_3_155[4] = { 'a', 's', 'e', 's' };
693
+ static const symbol s_3_156[5] = { 'i', 'e', 's', 'e', 's' };
694
+ static const symbol s_3_157[5] = { 'a', 's', 's', 'e', 's' };
695
+ static const symbol s_3_158[5] = { 'e', 's', 's', 'e', 's' };
696
+ static const symbol s_3_159[5] = { 'i', 's', 's', 'e', 's' };
697
+ static const symbol s_3_160[6] = { 0xC3, 0xAF, 's', 's', 'e', 's' };
698
+ static const symbol s_3_161[4] = { 'q', 'u', 'e', 's' };
699
+ static const symbol s_3_162[6] = { 'e', 's', 'q', 'u', 'e', 's' };
700
+ static const symbol s_3_163[7] = { 0xC3, 0xAF, 's', 'q', 'u', 'e', 's' };
701
+ static const symbol s_3_164[4] = { 'a', 'v', 'e', 's' };
702
+ static const symbol s_3_165[4] = { 'i', 'x', 'e', 's' };
703
+ static const symbol s_3_166[5] = { 'e', 'i', 'x', 'e', 's' };
704
+ static const symbol s_3_167[5] = { 0xC3, 0xAF, 'x', 'e', 's' };
705
+ static const symbol s_3_168[4] = { 0xC3, 0xAF, 'e', 's' };
706
+ static const symbol s_3_169[5] = { 'a', 'b', 'a', 'i', 's' };
707
+ static const symbol s_3_170[5] = { 'a', 'r', 'a', 'i', 's' };
708
+ static const symbol s_3_171[6] = { 'i', 'e', 'r', 'a', 'i', 's' };
709
+ static const symbol s_3_172[5] = { 0xC3, 0xAD, 'a', 'i', 's' };
710
+ static const symbol s_3_173[7] = { 'a', 'r', 0xC3, 0xAD, 'a', 'i', 's' };
711
+ static const symbol s_3_174[7] = { 'e', 'r', 0xC3, 0xAD, 'a', 'i', 's' };
712
+ static const symbol s_3_175[7] = { 'i', 'r', 0xC3, 0xAD, 'a', 'i', 's' };
713
+ static const symbol s_3_176[5] = { 'a', 's', 'e', 'i', 's' };
714
+ static const symbol s_3_177[6] = { 'i', 'e', 's', 'e', 'i', 's' };
715
+ static const symbol s_3_178[6] = { 'a', 's', 't', 'e', 'i', 's' };
716
+ static const symbol s_3_179[6] = { 'i', 's', 't', 'e', 'i', 's' };
717
+ static const symbol s_3_180[4] = { 'i', 'n', 'i', 's' };
718
+ static const symbol s_3_181[3] = { 's', 'i', 's' };
719
+ static const symbol s_3_182[4] = { 'i', 's', 'i', 's' };
720
+ static const symbol s_3_183[5] = { 'a', 's', 's', 'i', 's' };
721
+ static const symbol s_3_184[5] = { 'e', 's', 's', 'i', 's' };
722
+ static const symbol s_3_185[5] = { 'i', 's', 's', 'i', 's' };
723
+ static const symbol s_3_186[6] = { 0xC3, 0xAF, 's', 's', 'i', 's' };
724
+ static const symbol s_3_187[6] = { 'e', 's', 'q', 'u', 'i', 's' };
725
+ static const symbol s_3_188[5] = { 'e', 'i', 'x', 'i', 's' };
726
+ static const symbol s_3_189[5] = { 'i', 't', 'z', 'i', 's' };
727
+ static const symbol s_3_190[4] = { 0xC3, 0xA1, 'i', 's' };
728
+ static const symbol s_3_191[6] = { 'a', 'r', 0xC3, 0xA9, 'i', 's' };
729
+ static const symbol s_3_192[6] = { 'e', 'r', 0xC3, 0xA9, 'i', 's' };
730
+ static const symbol s_3_193[6] = { 'i', 'r', 0xC3, 0xA9, 'i', 's' };
731
+ static const symbol s_3_194[3] = { 'a', 'm', 's' };
732
+ static const symbol s_3_195[4] = { 'a', 'd', 'o', 's' };
733
+ static const symbol s_3_196[4] = { 'i', 'd', 'o', 's' };
734
+ static const symbol s_3_197[4] = { 'a', 'm', 'o', 's' };
735
+ static const symbol s_3_198[7] = { 0xC3, 0xA1, 'b', 'a', 'm', 'o', 's' };
736
+ static const symbol s_3_199[7] = { 0xC3, 0xA1, 'r', 'a', 'm', 'o', 's' };
737
+ static const symbol s_3_200[8] = { 'i', 0xC3, 0xA9, 'r', 'a', 'm', 'o', 's' };
738
+ static const symbol s_3_201[6] = { 0xC3, 0xAD, 'a', 'm', 'o', 's' };
739
+ static const symbol s_3_202[8] = { 'a', 'r', 0xC3, 0xAD, 'a', 'm', 'o', 's' };
740
+ static const symbol s_3_203[8] = { 'e', 'r', 0xC3, 0xAD, 'a', 'm', 'o', 's' };
741
+ static const symbol s_3_204[8] = { 'i', 'r', 0xC3, 0xAD, 'a', 'm', 'o', 's' };
742
+ static const symbol s_3_205[6] = { 'a', 'r', 'e', 'm', 'o', 's' };
743
+ static const symbol s_3_206[6] = { 'e', 'r', 'e', 'm', 'o', 's' };
744
+ static const symbol s_3_207[6] = { 'i', 'r', 'e', 'm', 'o', 's' };
745
+ static const symbol s_3_208[7] = { 0xC3, 0xA1, 's', 'e', 'm', 'o', 's' };
746
+ static const symbol s_3_209[8] = { 'i', 0xC3, 0xA9, 's', 'e', 'm', 'o', 's' };
747
+ static const symbol s_3_210[4] = { 'i', 'm', 'o', 's' };
748
+ static const symbol s_3_211[5] = { 'a', 'd', 'o', 'r', 's' };
749
+ static const symbol s_3_212[3] = { 'a', 's', 's' };
750
+ static const symbol s_3_213[5] = { 'e', 'r', 'a', 's', 's' };
751
+ static const symbol s_3_214[3] = { 'e', 's', 's' };
752
+ static const symbol s_3_215[3] = { 'a', 't', 's' };
753
+ static const symbol s_3_216[3] = { 'i', 't', 's' };
754
+ static const symbol s_3_217[4] = { 'e', 'n', 't', 's' };
755
+ static const symbol s_3_218[3] = { 0xC3, 0xA0, 's' };
756
+ static const symbol s_3_219[5] = { 'a', 'r', 0xC3, 0xA0, 's' };
757
+ static const symbol s_3_220[5] = { 'i', 'r', 0xC3, 0xA0, 's' };
758
+ static const symbol s_3_221[5] = { 'a', 'r', 0xC3, 0xA1, 's' };
759
+ static const symbol s_3_222[5] = { 'e', 'r', 0xC3, 0xA1, 's' };
760
+ static const symbol s_3_223[5] = { 'i', 'r', 0xC3, 0xA1, 's' };
761
+ static const symbol s_3_224[3] = { 0xC3, 0xA9, 's' };
762
+ static const symbol s_3_225[5] = { 'a', 'r', 0xC3, 0xA9, 's' };
763
+ static const symbol s_3_226[3] = { 0xC3, 0xAD, 's' };
764
+ static const symbol s_3_227[4] = { 'i', 0xC3, 0xAF, 's' };
765
+ static const symbol s_3_228[2] = { 'a', 't' };
766
+ static const symbol s_3_229[2] = { 'i', 't' };
767
+ static const symbol s_3_230[3] = { 'a', 'n', 't' };
768
+ static const symbol s_3_231[3] = { 'e', 'n', 't' };
769
+ static const symbol s_3_232[3] = { 'i', 'n', 't' };
770
+ static const symbol s_3_233[2] = { 'u', 't' };
771
+ static const symbol s_3_234[3] = { 0xC3, 0xAF, 't' };
772
+ static const symbol s_3_235[2] = { 'a', 'u' };
773
+ static const symbol s_3_236[4] = { 'e', 'r', 'a', 'u' };
774
+ static const symbol s_3_237[3] = { 'i', 'e', 'u' };
775
+ static const symbol s_3_238[4] = { 'i', 'n', 'e', 'u' };
776
+ static const symbol s_3_239[4] = { 'a', 'r', 'e', 'u' };
777
+ static const symbol s_3_240[4] = { 'i', 'r', 'e', 'u' };
778
+ static const symbol s_3_241[5] = { 0xC3, 0xA0, 'r', 'e', 'u' };
779
+ static const symbol s_3_242[5] = { 0xC3, 0xAD, 'r', 'e', 'u' };
780
+ static const symbol s_3_243[5] = { 'a', 's', 's', 'e', 'u' };
781
+ static const symbol s_3_244[5] = { 'e', 's', 's', 'e', 'u' };
782
+ static const symbol s_3_245[7] = { 'e', 'r', 'e', 's', 's', 'e', 'u' };
783
+ static const symbol s_3_246[6] = { 0xC3, 0xA0, 's', 's', 'e', 'u' };
784
+ static const symbol s_3_247[6] = { 0xC3, 0xA9, 's', 's', 'e', 'u' };
785
+ static const symbol s_3_248[5] = { 'i', 'g', 'u', 'e', 'u' };
786
+ static const symbol s_3_249[6] = { 0xC3, 0xAF, 'g', 'u', 'e', 'u' };
787
+ static const symbol s_3_250[5] = { 0xC3, 0xA0, 'v', 'e', 'u' };
788
+ static const symbol s_3_251[5] = { 0xC3, 0xA1, 'v', 'e', 'u' };
789
+ static const symbol s_3_252[5] = { 'i', 't', 'z', 'e', 'u' };
790
+ static const symbol s_3_253[4] = { 0xC3, 0xAC, 'e', 'u' };
791
+ static const symbol s_3_254[6] = { 'i', 'r', 0xC3, 0xAC, 'e', 'u' };
792
+ static const symbol s_3_255[4] = { 0xC3, 0xAD, 'e', 'u' };
793
+ static const symbol s_3_256[6] = { 'a', 'r', 0xC3, 0xAD, 'e', 'u' };
794
+ static const symbol s_3_257[6] = { 'i', 'r', 0xC3, 0xAD, 'e', 'u' };
795
+ static const symbol s_3_258[5] = { 'a', 's', 's', 'i', 'u' };
796
+ static const symbol s_3_259[5] = { 'i', 's', 's', 'i', 'u' };
797
+ static const symbol s_3_260[6] = { 0xC3, 0xA0, 's', 's', 'i', 'u' };
798
+ static const symbol s_3_261[6] = { 0xC3, 0xA8, 's', 's', 'i', 'u' };
799
+ static const symbol s_3_262[6] = { 0xC3, 0xA9, 's', 's', 'i', 'u' };
800
+ static const symbol s_3_263[6] = { 0xC3, 0xAD, 's', 's', 'i', 'u' };
801
+ static const symbol s_3_264[3] = { 0xC3, 0xAF, 'u' };
802
+ static const symbol s_3_265[2] = { 'i', 'x' };
803
+ static const symbol s_3_266[3] = { 'e', 'i', 'x' };
804
+ static const symbol s_3_267[3] = { 0xC3, 0xAF, 'x' };
805
+ static const symbol s_3_268[3] = { 'i', 't', 'z' };
806
+ static const symbol s_3_269[3] = { 'i', 0xC3, 0xA0 };
807
+ static const symbol s_3_270[4] = { 'a', 'r', 0xC3, 0xA0 };
808
+ static const symbol s_3_271[4] = { 'i', 'r', 0xC3, 0xA0 };
809
+ static const symbol s_3_272[5] = { 'i', 't', 'z', 0xC3, 0xA0 };
810
+ static const symbol s_3_273[4] = { 'a', 'r', 0xC3, 0xA1 };
811
+ static const symbol s_3_274[4] = { 'e', 'r', 0xC3, 0xA1 };
812
+ static const symbol s_3_275[4] = { 'i', 'r', 0xC3, 0xA1 };
813
+ static const symbol s_3_276[4] = { 'i', 'r', 0xC3, 0xA8 };
814
+ static const symbol s_3_277[4] = { 'a', 'r', 0xC3, 0xA9 };
815
+ static const symbol s_3_278[4] = { 'e', 'r', 0xC3, 0xA9 };
816
+ static const symbol s_3_279[4] = { 'i', 'r', 0xC3, 0xA9 };
817
+ static const symbol s_3_280[2] = { 0xC3, 0xAD };
818
+ static const symbol s_3_281[3] = { 'i', 0xC3, 0xAF };
819
+ static const symbol s_3_282[3] = { 'i', 0xC3, 0xB3 };
820
+
821
+ static const struct among a_3[283] =
822
+ {
823
+ { 3, s_3_0, -1, 1, 0},
824
+ { 4, s_3_1, -1, 1, 0},
825
+ { 4, s_3_2, -1, 1, 0},
826
+ { 5, s_3_3, -1, 1, 0},
827
+ { 3, s_3_4, -1, 1, 0},
828
+ { 3, s_3_5, -1, 1, 0},
829
+ { 3, s_3_6, -1, 1, 0},
830
+ { 4, s_3_7, -1, 1, 0},
831
+ { 2, s_3_8, -1, 1, 0},
832
+ { 4, s_3_9, 8, 1, 0},
833
+ { 4, s_3_10, 8, 1, 0},
834
+ { 3, s_3_11, -1, 1, 0},
835
+ { 4, s_3_12, -1, 1, 0},
836
+ { 3, s_3_13, -1, 1, 0},
837
+ { 5, s_3_14, -1, 1, 0},
838
+ { 4, s_3_15, -1, 1, 0},
839
+ { 3, s_3_16, -1, 1, 0},
840
+ { 3, s_3_17, -1, 1, 0},
841
+ { 4, s_3_18, -1, 1, 0},
842
+ { 3, s_3_19, -1, 1, 0},
843
+ { 5, s_3_20, 19, 1, 0},
844
+ { 5, s_3_21, 19, 1, 0},
845
+ { 5, s_3_22, 19, 1, 0},
846
+ { 3, s_3_23, -1, 1, 0},
847
+ { 3, s_3_24, -1, 1, 0},
848
+ { 4, s_3_25, -1, 1, 0},
849
+ { 2, s_3_26, -1, 1, 0},
850
+ { 2, s_3_27, -1, 1, 0},
851
+ { 2, s_3_28, -1, 1, 0},
852
+ { 2, s_3_29, -1, 1, 0},
853
+ { 2, s_3_30, -1, 1, 0},
854
+ { 3, s_3_31, 30, 1, 0},
855
+ { 3, s_3_32, -1, 1, 0},
856
+ { 4, s_3_33, -1, 1, 0},
857
+ { 4, s_3_34, -1, 1, 0},
858
+ { 4, s_3_35, -1, 1, 0},
859
+ { 2, s_3_36, -1, 1, 0},
860
+ { 3, s_3_37, -1, 1, 0},
861
+ { 5, s_3_38, -1, 1, 0},
862
+ { 4, s_3_39, -1, 1, 0},
863
+ { 4, s_3_40, -1, 1, 0},
864
+ { 2, s_3_41, -1, 1, 0},
865
+ { 2, s_3_42, -1, 1, 0},
866
+ { 4, s_3_43, 42, 1, 0},
867
+ { 4, s_3_44, 42, 1, 0},
868
+ { 5, s_3_45, 42, 1, 0},
869
+ { 5, s_3_46, 42, 1, 0},
870
+ { 6, s_3_47, 42, 1, 0},
871
+ { 6, s_3_48, 42, 1, 0},
872
+ { 5, s_3_49, 42, 1, 0},
873
+ { 6, s_3_50, 42, 1, 0},
874
+ { 4, s_3_51, 42, 1, 0},
875
+ { 5, s_3_52, 42, 1, 0},
876
+ { 5, s_3_53, 42, 1, 0},
877
+ { 6, s_3_54, 42, 1, 0},
878
+ { 4, s_3_55, 42, 1, 0},
879
+ { 6, s_3_56, 55, 1, 0},
880
+ { 6, s_3_57, 55, 1, 0},
881
+ { 5, s_3_58, -1, 1, 0},
882
+ { 5, s_3_59, -1, 1, 0},
883
+ { 5, s_3_60, -1, 1, 0},
884
+ { 6, s_3_61, -1, 1, 0},
885
+ { 6, s_3_62, -1, 1, 0},
886
+ { 6, s_3_63, -1, 1, 0},
887
+ { 6, s_3_64, -1, 1, 0},
888
+ { 3, s_3_65, -1, 1, 0},
889
+ { 2, s_3_66, -1, 1, 0},
890
+ { 4, s_3_67, 66, 1, 0},
891
+ { 5, s_3_68, 66, 1, 0},
892
+ { 4, s_3_69, 66, 1, 0},
893
+ { 5, s_3_70, 66, 1, 0},
894
+ { 4, s_3_71, 66, 1, 0},
895
+ { 4, s_3_72, 66, 1, 0},
896
+ { 6, s_3_73, 72, 1, 0},
897
+ { 6, s_3_74, 72, 1, 0},
898
+ { 6, s_3_75, 72, 1, 0},
899
+ { 2, s_3_76, -1, 1, 0},
900
+ { 3, s_3_77, 76, 1, 0},
901
+ { 5, s_3_78, 77, 1, 0},
902
+ { 5, s_3_79, 77, 1, 0},
903
+ { 4, s_3_80, 76, 1, 0},
904
+ { 4, s_3_81, 76, 1, 0},
905
+ { 4, s_3_82, 76, 1, 0},
906
+ { 5, s_3_83, 76, 1, 0},
907
+ { 5, s_3_84, 76, 1, 0},
908
+ { 4, s_3_85, 76, 1, 0},
909
+ { 5, s_3_86, 76, 1, 0},
910
+ { 5, s_3_87, 76, 1, 0},
911
+ { 5, s_3_88, 76, 1, 0},
912
+ { 5, s_3_89, 76, 1, 0},
913
+ { 6, s_3_90, 76, 1, 0},
914
+ { 6, s_3_91, 76, 1, 0},
915
+ { 6, s_3_92, 76, 1, 0},
916
+ { 6, s_3_93, 76, 1, 0},
917
+ { 7, s_3_94, 76, 1, 0},
918
+ { 4, s_3_95, 76, 1, 0},
919
+ { 4, s_3_96, 76, 1, 0},
920
+ { 5, s_3_97, 96, 1, 0},
921
+ { 5, s_3_98, 76, 1, 0},
922
+ { 4, s_3_99, 76, 1, 0},
923
+ { 2, s_3_100, -1, 1, 0},
924
+ { 4, s_3_101, 100, 1, 0},
925
+ { 3, s_3_102, 100, 1, 0},
926
+ { 4, s_3_103, 102, 1, 0},
927
+ { 5, s_3_104, 102, 1, 0},
928
+ { 5, s_3_105, 102, 1, 0},
929
+ { 5, s_3_106, 102, 1, 0},
930
+ { 6, s_3_107, 102, 1, 0},
931
+ { 6, s_3_108, 100, 1, 0},
932
+ { 5, s_3_109, 100, 1, 0},
933
+ { 4, s_3_110, -1, 1, 0},
934
+ { 5, s_3_111, -1, 1, 0},
935
+ { 5, s_3_112, -1, 1, 0},
936
+ { 5, s_3_113, -1, 1, 0},
937
+ { 5, s_3_114, -1, 1, 0},
938
+ { 4, s_3_115, -1, 1, 0},
939
+ { 3, s_3_116, -1, 1, 0},
940
+ { 3, s_3_117, -1, 1, 0},
941
+ { 4, s_3_118, -1, 2, 0},
942
+ { 5, s_3_119, -1, 1, 0},
943
+ { 2, s_3_120, -1, 1, 0},
944
+ { 3, s_3_121, -1, 1, 0},
945
+ { 4, s_3_122, 121, 1, 0},
946
+ { 4, s_3_123, -1, 1, 0},
947
+ { 4, s_3_124, -1, 1, 0},
948
+ { 2, s_3_125, -1, 1, 0},
949
+ { 4, s_3_126, 125, 1, 0},
950
+ { 2, s_3_127, -1, 1, 0},
951
+ { 5, s_3_128, 127, 1, 0},
952
+ { 2, s_3_129, -1, 1, 0},
953
+ { 4, s_3_130, -1, 1, 0},
954
+ { 2, s_3_131, -1, 1, 0},
955
+ { 4, s_3_132, 131, 1, 0},
956
+ { 4, s_3_133, 131, 1, 0},
957
+ { 4, s_3_134, 131, 1, 0},
958
+ { 4, s_3_135, 131, 1, 0},
959
+ { 5, s_3_136, 131, 1, 0},
960
+ { 4, s_3_137, 131, 1, 0},
961
+ { 6, s_3_138, 137, 1, 0},
962
+ { 6, s_3_139, 137, 1, 0},
963
+ { 6, s_3_140, 137, 1, 0},
964
+ { 3, s_3_141, -1, 1, 0},
965
+ { 2, s_3_142, -1, 1, 0},
966
+ { 4, s_3_143, 142, 1, 0},
967
+ { 4, s_3_144, 142, 1, 0},
968
+ { 4, s_3_145, 142, 1, 0},
969
+ { 5, s_3_146, 142, 1, 0},
970
+ { 5, s_3_147, 142, 1, 0},
971
+ { 3, s_3_148, 142, 1, 0},
972
+ { 5, s_3_149, 148, 1, 0},
973
+ { 5, s_3_150, 148, 1, 0},
974
+ { 4, s_3_151, 142, 1, 0},
975
+ { 4, s_3_152, 142, 1, 0},
976
+ { 6, s_3_153, 142, 1, 0},
977
+ { 5, s_3_154, 142, 1, 0},
978
+ { 4, s_3_155, 142, 1, 0},
979
+ { 5, s_3_156, 142, 1, 0},
980
+ { 5, s_3_157, 142, 1, 0},
981
+ { 5, s_3_158, 142, 1, 0},
982
+ { 5, s_3_159, 142, 1, 0},
983
+ { 6, s_3_160, 142, 1, 0},
984
+ { 4, s_3_161, 142, 1, 0},
985
+ { 6, s_3_162, 161, 1, 0},
986
+ { 7, s_3_163, 161, 1, 0},
987
+ { 4, s_3_164, 142, 1, 0},
988
+ { 4, s_3_165, 142, 1, 0},
989
+ { 5, s_3_166, 165, 1, 0},
990
+ { 5, s_3_167, 142, 1, 0},
991
+ { 4, s_3_168, 142, 1, 0},
992
+ { 5, s_3_169, -1, 1, 0},
993
+ { 5, s_3_170, -1, 1, 0},
994
+ { 6, s_3_171, -1, 1, 0},
995
+ { 5, s_3_172, -1, 1, 0},
996
+ { 7, s_3_173, 172, 1, 0},
997
+ { 7, s_3_174, 172, 1, 0},
998
+ { 7, s_3_175, 172, 1, 0},
999
+ { 5, s_3_176, -1, 1, 0},
1000
+ { 6, s_3_177, -1, 1, 0},
1001
+ { 6, s_3_178, -1, 1, 0},
1002
+ { 6, s_3_179, -1, 1, 0},
1003
+ { 4, s_3_180, -1, 1, 0},
1004
+ { 3, s_3_181, -1, 1, 0},
1005
+ { 4, s_3_182, 181, 1, 0},
1006
+ { 5, s_3_183, 181, 1, 0},
1007
+ { 5, s_3_184, 181, 1, 0},
1008
+ { 5, s_3_185, 181, 1, 0},
1009
+ { 6, s_3_186, 181, 1, 0},
1010
+ { 6, s_3_187, -1, 1, 0},
1011
+ { 5, s_3_188, -1, 1, 0},
1012
+ { 5, s_3_189, -1, 1, 0},
1013
+ { 4, s_3_190, -1, 1, 0},
1014
+ { 6, s_3_191, -1, 1, 0},
1015
+ { 6, s_3_192, -1, 1, 0},
1016
+ { 6, s_3_193, -1, 1, 0},
1017
+ { 3, s_3_194, -1, 1, 0},
1018
+ { 4, s_3_195, -1, 1, 0},
1019
+ { 4, s_3_196, -1, 1, 0},
1020
+ { 4, s_3_197, -1, 1, 0},
1021
+ { 7, s_3_198, 197, 1, 0},
1022
+ { 7, s_3_199, 197, 1, 0},
1023
+ { 8, s_3_200, 197, 1, 0},
1024
+ { 6, s_3_201, 197, 1, 0},
1025
+ { 8, s_3_202, 201, 1, 0},
1026
+ { 8, s_3_203, 201, 1, 0},
1027
+ { 8, s_3_204, 201, 1, 0},
1028
+ { 6, s_3_205, -1, 1, 0},
1029
+ { 6, s_3_206, -1, 1, 0},
1030
+ { 6, s_3_207, -1, 1, 0},
1031
+ { 7, s_3_208, -1, 1, 0},
1032
+ { 8, s_3_209, -1, 1, 0},
1033
+ { 4, s_3_210, -1, 1, 0},
1034
+ { 5, s_3_211, -1, 1, 0},
1035
+ { 3, s_3_212, -1, 1, 0},
1036
+ { 5, s_3_213, 212, 1, 0},
1037
+ { 3, s_3_214, -1, 1, 0},
1038
+ { 3, s_3_215, -1, 1, 0},
1039
+ { 3, s_3_216, -1, 1, 0},
1040
+ { 4, s_3_217, -1, 1, 0},
1041
+ { 3, s_3_218, -1, 1, 0},
1042
+ { 5, s_3_219, 218, 1, 0},
1043
+ { 5, s_3_220, 218, 1, 0},
1044
+ { 5, s_3_221, -1, 1, 0},
1045
+ { 5, s_3_222, -1, 1, 0},
1046
+ { 5, s_3_223, -1, 1, 0},
1047
+ { 3, s_3_224, -1, 1, 0},
1048
+ { 5, s_3_225, 224, 1, 0},
1049
+ { 3, s_3_226, -1, 1, 0},
1050
+ { 4, s_3_227, -1, 1, 0},
1051
+ { 2, s_3_228, -1, 1, 0},
1052
+ { 2, s_3_229, -1, 1, 0},
1053
+ { 3, s_3_230, -1, 1, 0},
1054
+ { 3, s_3_231, -1, 1, 0},
1055
+ { 3, s_3_232, -1, 1, 0},
1056
+ { 2, s_3_233, -1, 1, 0},
1057
+ { 3, s_3_234, -1, 1, 0},
1058
+ { 2, s_3_235, -1, 1, 0},
1059
+ { 4, s_3_236, 235, 1, 0},
1060
+ { 3, s_3_237, -1, 1, 0},
1061
+ { 4, s_3_238, -1, 1, 0},
1062
+ { 4, s_3_239, -1, 1, 0},
1063
+ { 4, s_3_240, -1, 1, 0},
1064
+ { 5, s_3_241, -1, 1, 0},
1065
+ { 5, s_3_242, -1, 1, 0},
1066
+ { 5, s_3_243, -1, 1, 0},
1067
+ { 5, s_3_244, -1, 1, 0},
1068
+ { 7, s_3_245, 244, 1, 0},
1069
+ { 6, s_3_246, -1, 1, 0},
1070
+ { 6, s_3_247, -1, 1, 0},
1071
+ { 5, s_3_248, -1, 1, 0},
1072
+ { 6, s_3_249, -1, 1, 0},
1073
+ { 5, s_3_250, -1, 1, 0},
1074
+ { 5, s_3_251, -1, 1, 0},
1075
+ { 5, s_3_252, -1, 1, 0},
1076
+ { 4, s_3_253, -1, 1, 0},
1077
+ { 6, s_3_254, 253, 1, 0},
1078
+ { 4, s_3_255, -1, 1, 0},
1079
+ { 6, s_3_256, 255, 1, 0},
1080
+ { 6, s_3_257, 255, 1, 0},
1081
+ { 5, s_3_258, -1, 1, 0},
1082
+ { 5, s_3_259, -1, 1, 0},
1083
+ { 6, s_3_260, -1, 1, 0},
1084
+ { 6, s_3_261, -1, 1, 0},
1085
+ { 6, s_3_262, -1, 1, 0},
1086
+ { 6, s_3_263, -1, 1, 0},
1087
+ { 3, s_3_264, -1, 1, 0},
1088
+ { 2, s_3_265, -1, 1, 0},
1089
+ { 3, s_3_266, 265, 1, 0},
1090
+ { 3, s_3_267, -1, 1, 0},
1091
+ { 3, s_3_268, -1, 1, 0},
1092
+ { 3, s_3_269, -1, 1, 0},
1093
+ { 4, s_3_270, -1, 1, 0},
1094
+ { 4, s_3_271, -1, 1, 0},
1095
+ { 5, s_3_272, -1, 1, 0},
1096
+ { 4, s_3_273, -1, 1, 0},
1097
+ { 4, s_3_274, -1, 1, 0},
1098
+ { 4, s_3_275, -1, 1, 0},
1099
+ { 4, s_3_276, -1, 1, 0},
1100
+ { 4, s_3_277, -1, 1, 0},
1101
+ { 4, s_3_278, -1, 1, 0},
1102
+ { 4, s_3_279, -1, 1, 0},
1103
+ { 2, s_3_280, -1, 1, 0},
1104
+ { 3, s_3_281, -1, 1, 0},
1105
+ { 3, s_3_282, -1, 1, 0}
1106
+ };
1107
+
1108
+ static const symbol s_4_0[1] = { 'a' };
1109
+ static const symbol s_4_1[1] = { 'e' };
1110
+ static const symbol s_4_2[1] = { 'i' };
1111
+ static const symbol s_4_3[3] = { 0xC3, 0xAF, 'n' };
1112
+ static const symbol s_4_4[1] = { 'o' };
1113
+ static const symbol s_4_5[2] = { 'i', 'r' };
1114
+ static const symbol s_4_6[1] = { 's' };
1115
+ static const symbol s_4_7[2] = { 'i', 's' };
1116
+ static const symbol s_4_8[2] = { 'o', 's' };
1117
+ static const symbol s_4_9[3] = { 0xC3, 0xAF, 's' };
1118
+ static const symbol s_4_10[2] = { 'i', 't' };
1119
+ static const symbol s_4_11[2] = { 'e', 'u' };
1120
+ static const symbol s_4_12[2] = { 'i', 'u' };
1121
+ static const symbol s_4_13[3] = { 'i', 'q', 'u' };
1122
+ static const symbol s_4_14[3] = { 'i', 't', 'z' };
1123
+ static const symbol s_4_15[2] = { 0xC3, 0xA0 };
1124
+ static const symbol s_4_16[2] = { 0xC3, 0xA1 };
1125
+ static const symbol s_4_17[2] = { 0xC3, 0xA9 };
1126
+ static const symbol s_4_18[2] = { 0xC3, 0xAC };
1127
+ static const symbol s_4_19[2] = { 0xC3, 0xAD };
1128
+ static const symbol s_4_20[2] = { 0xC3, 0xAF };
1129
+ static const symbol s_4_21[2] = { 0xC3, 0xB3 };
1130
+
1131
+ static const struct among a_4[22] =
1132
+ {
1133
+ { 1, s_4_0, -1, 1, 0},
1134
+ { 1, s_4_1, -1, 1, 0},
1135
+ { 1, s_4_2, -1, 1, 0},
1136
+ { 3, s_4_3, -1, 1, 0},
1137
+ { 1, s_4_4, -1, 1, 0},
1138
+ { 2, s_4_5, -1, 1, 0},
1139
+ { 1, s_4_6, -1, 1, 0},
1140
+ { 2, s_4_7, 6, 1, 0},
1141
+ { 2, s_4_8, 6, 1, 0},
1142
+ { 3, s_4_9, 6, 1, 0},
1143
+ { 2, s_4_10, -1, 1, 0},
1144
+ { 2, s_4_11, -1, 1, 0},
1145
+ { 2, s_4_12, -1, 1, 0},
1146
+ { 3, s_4_13, -1, 2, 0},
1147
+ { 3, s_4_14, -1, 1, 0},
1148
+ { 2, s_4_15, -1, 1, 0},
1149
+ { 2, s_4_16, -1, 1, 0},
1150
+ { 2, s_4_17, -1, 1, 0},
1151
+ { 2, s_4_18, -1, 1, 0},
1152
+ { 2, s_4_19, -1, 1, 0},
1153
+ { 2, s_4_20, -1, 1, 0},
1154
+ { 2, s_4_21, -1, 1, 0}
1155
+ };
1156
+
1157
+ static const unsigned char g_v[] = { 17, 65, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 128, 129, 81, 6, 10 };
1158
+
1159
+ static const symbol s_0[] = { 'a' };
1160
+ static const symbol s_1[] = { 'e' };
1161
+ static const symbol s_2[] = { 'i' };
1162
+ static const symbol s_3[] = { 'o' };
1163
+ static const symbol s_4[] = { 'u' };
1164
+ static const symbol s_5[] = { '.' };
1165
+ static const symbol s_6[] = { 'l', 'o', 'g' };
1166
+ static const symbol s_7[] = { 'i', 'c' };
1167
+ static const symbol s_8[] = { 'c' };
1168
+ static const symbol s_9[] = { 'i', 'c' };
1169
+
1170
+ static int r_mark_regions(struct SN_env * z) {
1171
+ z->I[1] = z->l;
1172
+ z->I[0] = z->l;
1173
+ { int c1 = z->c;
1174
+ {
1175
+ int ret = out_grouping_U(z, g_v, 97, 252, 1);
1176
+ if (ret < 0) goto lab0;
1177
+ z->c += ret;
1178
+ }
1179
+ {
1180
+ int ret = in_grouping_U(z, g_v, 97, 252, 1);
1181
+ if (ret < 0) goto lab0;
1182
+ z->c += ret;
1183
+ }
1184
+ z->I[1] = z->c;
1185
+ {
1186
+ int ret = out_grouping_U(z, g_v, 97, 252, 1);
1187
+ if (ret < 0) goto lab0;
1188
+ z->c += ret;
1189
+ }
1190
+ {
1191
+ int ret = in_grouping_U(z, g_v, 97, 252, 1);
1192
+ if (ret < 0) goto lab0;
1193
+ z->c += ret;
1194
+ }
1195
+ z->I[0] = z->c;
1196
+ lab0:
1197
+ z->c = c1;
1198
+ }
1199
+ return 1;
1200
+ }
1201
+
1202
+ static int r_cleaning(struct SN_env * z) {
1203
+ int among_var;
1204
+ while(1) {
1205
+ int c1 = z->c;
1206
+ z->bra = z->c;
1207
+ if (z->c + 1 >= z->l || z->p[z->c + 1] >> 5 != 5 || !((344765187 >> (z->p[z->c + 1] & 0x1f)) & 1)) among_var = 7; else
1208
+ among_var = find_among(z, a_0, 13);
1209
+ if (!(among_var)) goto lab0;
1210
+ z->ket = z->c;
1211
+ switch (among_var) {
1212
+ case 1:
1213
+ { int ret = slice_from_s(z, 1, s_0);
1214
+ if (ret < 0) return ret;
1215
+ }
1216
+ break;
1217
+ case 2:
1218
+ { int ret = slice_from_s(z, 1, s_1);
1219
+ if (ret < 0) return ret;
1220
+ }
1221
+ break;
1222
+ case 3:
1223
+ { int ret = slice_from_s(z, 1, s_2);
1224
+ if (ret < 0) return ret;
1225
+ }
1226
+ break;
1227
+ case 4:
1228
+ { int ret = slice_from_s(z, 1, s_3);
1229
+ if (ret < 0) return ret;
1230
+ }
1231
+ break;
1232
+ case 5:
1233
+ { int ret = slice_from_s(z, 1, s_4);
1234
+ if (ret < 0) return ret;
1235
+ }
1236
+ break;
1237
+ case 6:
1238
+ { int ret = slice_from_s(z, 1, s_5);
1239
+ if (ret < 0) return ret;
1240
+ }
1241
+ break;
1242
+ case 7:
1243
+ { int ret = skip_utf8(z->p, z->c, z->l, 1);
1244
+ if (ret < 0) goto lab0;
1245
+ z->c = ret;
1246
+ }
1247
+ break;
1248
+ }
1249
+ continue;
1250
+ lab0:
1251
+ z->c = c1;
1252
+ break;
1253
+ }
1254
+ return 1;
1255
+ }
1256
+
1257
+ static int r_R1(struct SN_env * z) {
1258
+ if (!(z->I[1] <= z->c)) return 0;
1259
+ return 1;
1260
+ }
1261
+
1262
+ static int r_R2(struct SN_env * z) {
1263
+ if (!(z->I[0] <= z->c)) return 0;
1264
+ return 1;
1265
+ }
1266
+
1267
+ static int r_attached_pronoun(struct SN_env * z) {
1268
+ z->ket = z->c;
1269
+ if (z->c - 1 <= z->lb || z->p[z->c - 1] >> 5 != 3 || !((1634850 >> (z->p[z->c - 1] & 0x1f)) & 1)) return 0;
1270
+ if (!(find_among_b(z, a_1, 39))) return 0;
1271
+ z->bra = z->c;
1272
+ { int ret = r_R1(z);
1273
+ if (ret <= 0) return ret;
1274
+ }
1275
+ { int ret = slice_del(z);
1276
+ if (ret < 0) return ret;
1277
+ }
1278
+ return 1;
1279
+ }
1280
+
1281
+ static int r_standard_suffix(struct SN_env * z) {
1282
+ int among_var;
1283
+ z->ket = z->c;
1284
+ among_var = find_among_b(z, a_2, 200);
1285
+ if (!(among_var)) return 0;
1286
+ z->bra = z->c;
1287
+ switch (among_var) {
1288
+ case 1:
1289
+ { int ret = r_R1(z);
1290
+ if (ret <= 0) return ret;
1291
+ }
1292
+ { int ret = slice_del(z);
1293
+ if (ret < 0) return ret;
1294
+ }
1295
+ break;
1296
+ case 2:
1297
+ { int ret = r_R2(z);
1298
+ if (ret <= 0) return ret;
1299
+ }
1300
+ { int ret = slice_del(z);
1301
+ if (ret < 0) return ret;
1302
+ }
1303
+ break;
1304
+ case 3:
1305
+ { int ret = r_R2(z);
1306
+ if (ret <= 0) return ret;
1307
+ }
1308
+ { int ret = slice_from_s(z, 3, s_6);
1309
+ if (ret < 0) return ret;
1310
+ }
1311
+ break;
1312
+ case 4:
1313
+ { int ret = r_R2(z);
1314
+ if (ret <= 0) return ret;
1315
+ }
1316
+ { int ret = slice_from_s(z, 2, s_7);
1317
+ if (ret < 0) return ret;
1318
+ }
1319
+ break;
1320
+ case 5:
1321
+ { int ret = r_R1(z);
1322
+ if (ret <= 0) return ret;
1323
+ }
1324
+ { int ret = slice_from_s(z, 1, s_8);
1325
+ if (ret < 0) return ret;
1326
+ }
1327
+ break;
1328
+ }
1329
+ return 1;
1330
+ }
1331
+
1332
+ static int r_verb_suffix(struct SN_env * z) {
1333
+ int among_var;
1334
+ z->ket = z->c;
1335
+ among_var = find_among_b(z, a_3, 283);
1336
+ if (!(among_var)) return 0;
1337
+ z->bra = z->c;
1338
+ switch (among_var) {
1339
+ case 1:
1340
+ { int ret = r_R1(z);
1341
+ if (ret <= 0) return ret;
1342
+ }
1343
+ { int ret = slice_del(z);
1344
+ if (ret < 0) return ret;
1345
+ }
1346
+ break;
1347
+ case 2:
1348
+ { int ret = r_R2(z);
1349
+ if (ret <= 0) return ret;
1350
+ }
1351
+ { int ret = slice_del(z);
1352
+ if (ret < 0) return ret;
1353
+ }
1354
+ break;
1355
+ }
1356
+ return 1;
1357
+ }
1358
+
1359
+ static int r_residual_suffix(struct SN_env * z) {
1360
+ int among_var;
1361
+ z->ket = z->c;
1362
+ among_var = find_among_b(z, a_4, 22);
1363
+ if (!(among_var)) return 0;
1364
+ z->bra = z->c;
1365
+ switch (among_var) {
1366
+ case 1:
1367
+ { int ret = r_R1(z);
1368
+ if (ret <= 0) return ret;
1369
+ }
1370
+ { int ret = slice_del(z);
1371
+ if (ret < 0) return ret;
1372
+ }
1373
+ break;
1374
+ case 2:
1375
+ { int ret = r_R1(z);
1376
+ if (ret <= 0) return ret;
1377
+ }
1378
+ { int ret = slice_from_s(z, 2, s_9);
1379
+ if (ret < 0) return ret;
1380
+ }
1381
+ break;
1382
+ }
1383
+ return 1;
1384
+ }
1385
+
1386
+ extern int catalan_UTF_8_stem(struct SN_env * z) {
1387
+
1388
+ { int ret = r_mark_regions(z);
1389
+ if (ret < 0) return ret;
1390
+ }
1391
+ z->lb = z->c; z->c = z->l;
1392
+
1393
+ { int m1 = z->l - z->c; (void)m1;
1394
+ { int ret = r_attached_pronoun(z);
1395
+ if (ret < 0) return ret;
1396
+ }
1397
+ z->c = z->l - m1;
1398
+ }
1399
+ { int m2 = z->l - z->c; (void)m2;
1400
+ { int m3 = z->l - z->c; (void)m3;
1401
+ { int ret = r_standard_suffix(z);
1402
+ if (ret == 0) goto lab2;
1403
+ if (ret < 0) return ret;
1404
+ }
1405
+ goto lab1;
1406
+ lab2:
1407
+ z->c = z->l - m3;
1408
+ { int ret = r_verb_suffix(z);
1409
+ if (ret == 0) goto lab0;
1410
+ if (ret < 0) return ret;
1411
+ }
1412
+ }
1413
+ lab1:
1414
+ lab0:
1415
+ z->c = z->l - m2;
1416
+ }
1417
+ { int m4 = z->l - z->c; (void)m4;
1418
+ { int ret = r_residual_suffix(z);
1419
+ if (ret < 0) return ret;
1420
+ }
1421
+ z->c = z->l - m4;
1422
+ }
1423
+ z->c = z->lb;
1424
+ { int c5 = z->c;
1425
+ { int ret = r_cleaning(z);
1426
+ if (ret < 0) return ret;
1427
+ }
1428
+ z->c = c5;
1429
+ }
1430
+ return 1;
1431
+ }
1432
+
1433
+ extern struct SN_env * catalan_UTF_8_create_env(void) { return SN_create_env(0, 2); }
1434
+
1435
+ extern void catalan_UTF_8_close_env(struct SN_env * z) { SN_close_env(z, 0); }
1436
+