isomorfeus-ferret 0.12.4 → 0.12.5
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/LICENSE +612 -612
- data/README.md +80 -48
- data/ext/isomorfeus_ferret_ext/bm_hash.c +9 -6
- data/ext/isomorfeus_ferret_ext/bm_micro_string.c +4 -2
- data/ext/isomorfeus_ferret_ext/frb_store.c +34 -5
- data/ext/isomorfeus_ferret_ext/frt_posh.h +11 -19
- data/ext/isomorfeus_ferret_ext/frt_q_parser.c +1844 -1911
- data/ext/isomorfeus_ferret_ext/frt_q_phrase.c +7 -7
- data/ext/isomorfeus_ferret_ext/frt_scanner.c +1 -0
- data/ext/isomorfeus_ferret_ext/frt_scanner_mb.c +1 -0
- data/ext/isomorfeus_ferret_ext/frt_scanner_utf8.c +1 -0
- data/ext/isomorfeus_ferret_ext/frt_search.h +1 -1
- data/ext/isomorfeus_ferret_ext/libstemmer.c +14 -11
- data/ext/isomorfeus_ferret_ext/libstemmer.h +4 -9
- data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_basque.c +1167 -0
- data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_basque.h +6 -0
- data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_catalan.c +1433 -0
- data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_catalan.h +6 -0
- data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_danish.c +120 -143
- data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_danish.h +1 -2
- data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_dutch.c +217 -237
- data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_dutch.h +1 -1
- data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_english.c +377 -432
- data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_english.h +1 -1
- data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_finnish.c +298 -342
- data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_finnish.h +1 -2
- data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_french.c +530 -524
- data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_french.h +1 -1
- data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_german.c +201 -214
- data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_german.h +1 -1
- data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_hungarian.c +1 -1
- data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_indonesian.c +394 -0
- data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_indonesian.h +6 -0
- data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_irish.c +457 -0
- data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_irish.h +6 -0
- data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_italian.c +396 -439
- data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_italian.h +1 -1
- data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_norwegian.c +104 -128
- data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_norwegian.h +1 -1
- data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_porter.c +242 -273
- data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_porter.h +1 -1
- data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_portuguese.c +406 -461
- data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_portuguese.h +1 -2
- data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_spanish.c +405 -456
- data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_spanish.h +1 -1
- data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_swedish.c +108 -126
- data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_swedish.h +1 -1
- data/ext/isomorfeus_ferret_ext/stem_ISO_8859_2_hungarian.c +849 -0
- data/ext/isomorfeus_ferret_ext/stem_ISO_8859_2_hungarian.h +6 -0
- data/ext/isomorfeus_ferret_ext/stem_ISO_8859_2_romanian.c +373 -405
- data/ext/isomorfeus_ferret_ext/stem_ISO_8859_2_romanian.h +1 -1
- data/ext/isomorfeus_ferret_ext/stem_KOI8_R_russian.c +288 -305
- data/ext/isomorfeus_ferret_ext/stem_KOI8_R_russian.h +1 -1
- data/ext/isomorfeus_ferret_ext/stem_UTF_8_arabic.c +1651 -0
- data/ext/isomorfeus_ferret_ext/stem_UTF_8_arabic.h +6 -0
- data/ext/isomorfeus_ferret_ext/stem_UTF_8_armenian.c +546 -0
- data/ext/isomorfeus_ferret_ext/stem_UTF_8_armenian.h +6 -0
- data/ext/isomorfeus_ferret_ext/stem_UTF_8_basque.c +1171 -0
- data/ext/isomorfeus_ferret_ext/stem_UTF_8_basque.h +6 -0
- data/ext/isomorfeus_ferret_ext/stem_UTF_8_catalan.c +1436 -0
- data/ext/isomorfeus_ferret_ext/stem_UTF_8_catalan.h +6 -0
- data/ext/isomorfeus_ferret_ext/stem_UTF_8_danish.c +121 -141
- data/ext/isomorfeus_ferret_ext/stem_UTF_8_danish.h +1 -1
- data/ext/isomorfeus_ferret_ext/stem_UTF_8_dutch.c +221 -241
- data/ext/isomorfeus_ferret_ext/stem_UTF_8_dutch.h +1 -1
- data/ext/isomorfeus_ferret_ext/stem_UTF_8_english.c +381 -431
- data/ext/isomorfeus_ferret_ext/stem_UTF_8_english.h +1 -1
- data/ext/isomorfeus_ferret_ext/stem_UTF_8_finnish.c +300 -345
- data/ext/isomorfeus_ferret_ext/stem_UTF_8_finnish.h +1 -1
- data/ext/isomorfeus_ferret_ext/stem_UTF_8_french.c +518 -511
- data/ext/isomorfeus_ferret_ext/stem_UTF_8_french.h +1 -1
- data/ext/isomorfeus_ferret_ext/stem_UTF_8_german.c +201 -209
- data/ext/isomorfeus_ferret_ext/stem_UTF_8_german.h +1 -1
- data/ext/isomorfeus_ferret_ext/stem_UTF_8_greek.c +3660 -0
- data/ext/isomorfeus_ferret_ext/stem_UTF_8_greek.h +6 -0
- data/ext/isomorfeus_ferret_ext/stem_UTF_8_hindi.c +309 -0
- data/ext/isomorfeus_ferret_ext/stem_UTF_8_hindi.h +6 -0
- data/ext/isomorfeus_ferret_ext/stem_UTF_8_hungarian.c +306 -671
- data/ext/isomorfeus_ferret_ext/stem_UTF_8_hungarian.h +1 -1
- data/ext/isomorfeus_ferret_ext/stem_UTF_8_indonesian.c +394 -0
- data/ext/isomorfeus_ferret_ext/stem_UTF_8_indonesian.h +6 -0
- data/ext/isomorfeus_ferret_ext/stem_UTF_8_irish.c +457 -0
- data/ext/isomorfeus_ferret_ext/stem_UTF_8_irish.h +6 -0
- data/ext/isomorfeus_ferret_ext/stem_UTF_8_italian.c +400 -442
- data/ext/isomorfeus_ferret_ext/stem_UTF_8_italian.h +1 -1
- data/ext/isomorfeus_ferret_ext/stem_UTF_8_lithuanian.c +824 -0
- data/ext/isomorfeus_ferret_ext/stem_UTF_8_lithuanian.h +6 -0
- data/ext/isomorfeus_ferret_ext/stem_UTF_8_nepali.c +408 -0
- data/ext/isomorfeus_ferret_ext/stem_UTF_8_nepali.h +6 -0
- data/ext/isomorfeus_ferret_ext/stem_UTF_8_norwegian.c +105 -127
- data/ext/isomorfeus_ferret_ext/stem_UTF_8_norwegian.h +1 -1
- data/ext/isomorfeus_ferret_ext/stem_UTF_8_porter.c +245 -276
- data/ext/isomorfeus_ferret_ext/stem_UTF_8_porter.h +1 -1
- data/ext/isomorfeus_ferret_ext/stem_UTF_8_portuguese.c +409 -464
- data/ext/isomorfeus_ferret_ext/stem_UTF_8_portuguese.h +1 -1
- data/ext/isomorfeus_ferret_ext/stem_UTF_8_romanian.c +376 -408
- data/ext/isomorfeus_ferret_ext/stem_UTF_8_romanian.h +1 -1
- data/ext/isomorfeus_ferret_ext/stem_UTF_8_russian.c +272 -287
- data/ext/isomorfeus_ferret_ext/stem_UTF_8_russian.h +1 -1
- data/ext/isomorfeus_ferret_ext/stem_UTF_8_serbian.c +6530 -0
- data/ext/isomorfeus_ferret_ext/stem_UTF_8_serbian.h +6 -0
- data/ext/isomorfeus_ferret_ext/stem_UTF_8_spanish.c +407 -458
- data/ext/isomorfeus_ferret_ext/stem_UTF_8_spanish.h +1 -1
- data/ext/isomorfeus_ferret_ext/stem_UTF_8_swedish.c +110 -125
- data/ext/isomorfeus_ferret_ext/stem_UTF_8_swedish.h +1 -1
- data/ext/isomorfeus_ferret_ext/stem_UTF_8_tamil.c +1865 -0
- data/ext/isomorfeus_ferret_ext/stem_UTF_8_tamil.h +6 -0
- data/ext/isomorfeus_ferret_ext/stem_UTF_8_turkish.c +698 -806
- data/ext/isomorfeus_ferret_ext/stem_UTF_8_turkish.h +1 -1
- data/ext/isomorfeus_ferret_ext/stem_UTF_8_yiddish.c +1220 -0
- data/ext/isomorfeus_ferret_ext/stem_UTF_8_yiddish.h +6 -0
- data/ext/isomorfeus_ferret_ext/stem_api.c +1 -9
- data/ext/isomorfeus_ferret_ext/stem_api.h +1 -3
- data/ext/isomorfeus_ferret_ext/stem_header.h +30 -26
- data/ext/isomorfeus_ferret_ext/stem_modules.h +113 -26
- data/ext/isomorfeus_ferret_ext/stem_modules.txt +18 -5
- data/ext/isomorfeus_ferret_ext/stem_utilities.c +167 -132
- data/ext/isomorfeus_ferret_ext/test.c +7 -1
- data/ext/isomorfeus_ferret_ext/test_search.c +0 -1
- data/lib/isomorfeus/ferret/version.rb +1 -1
- metadata +39 -4
- data/ext/isomorfeus_ferret_ext/q_parser.y +0 -1366
@@ -0,0 +1,1171 @@
|
|
1
|
+
/* Generated by Snowball 2.2.0 - https://snowballstem.org/ */
|
2
|
+
|
3
|
+
#include "stem_header.h"
|
4
|
+
|
5
|
+
extern int basque_UTF_8_stem(struct SN_env * z);
|
6
|
+
|
7
|
+
static int r_R1(struct SN_env * z);
|
8
|
+
static int r_R2(struct SN_env * z);
|
9
|
+
static int r_RV(struct SN_env * z);
|
10
|
+
static int r_mark_regions(struct SN_env * z);
|
11
|
+
static int r_adjetiboak(struct SN_env * z);
|
12
|
+
static int r_izenak(struct SN_env * z);
|
13
|
+
static int r_aditzak(struct SN_env * z);
|
14
|
+
|
15
|
+
extern struct SN_env * basque_UTF_8_create_env(void);
|
16
|
+
extern void basque_UTF_8_close_env(struct SN_env * z);
|
17
|
+
|
18
|
+
static const symbol s_0_0[4] = { 'i', 'd', 'e', 'a' };
|
19
|
+
static const symbol s_0_1[5] = { 'b', 'i', 'd', 'e', 'a' };
|
20
|
+
static const symbol s_0_2[5] = { 'k', 'i', 'd', 'e', 'a' };
|
21
|
+
static const symbol s_0_3[5] = { 'p', 'i', 'd', 'e', 'a' };
|
22
|
+
static const symbol s_0_4[6] = { 'k', 'u', 'n', 'd', 'e', 'a' };
|
23
|
+
static const symbol s_0_5[5] = { 'g', 'a', 'l', 'e', 'a' };
|
24
|
+
static const symbol s_0_6[6] = { 't', 'a', 'i', 'l', 'e', 'a' };
|
25
|
+
static const symbol s_0_7[7] = { 't', 'z', 'a', 'i', 'l', 'e', 'a' };
|
26
|
+
static const symbol s_0_8[5] = { 'g', 'u', 'n', 'e', 'a' };
|
27
|
+
static const symbol s_0_9[5] = { 'k', 'u', 'n', 'e', 'a' };
|
28
|
+
static const symbol s_0_10[5] = { 't', 'z', 'a', 'g', 'a' };
|
29
|
+
static const symbol s_0_11[4] = { 'g', 'a', 'i', 'a' };
|
30
|
+
static const symbol s_0_12[5] = { 'a', 'l', 'd', 'i', 'a' };
|
31
|
+
static const symbol s_0_13[6] = { 't', 'a', 'l', 'd', 'i', 'a' };
|
32
|
+
static const symbol s_0_14[5] = { 'k', 'a', 'r', 'i', 'a' };
|
33
|
+
static const symbol s_0_15[6] = { 'g', 'a', 'r', 'r', 'i', 'a' };
|
34
|
+
static const symbol s_0_16[6] = { 'k', 'a', 'r', 'r', 'i', 'a' };
|
35
|
+
static const symbol s_0_17[2] = { 'k', 'a' };
|
36
|
+
static const symbol s_0_18[5] = { 't', 'z', 'a', 'k', 'a' };
|
37
|
+
static const symbol s_0_19[2] = { 'l', 'a' };
|
38
|
+
static const symbol s_0_20[4] = { 'm', 'e', 'n', 'a' };
|
39
|
+
static const symbol s_0_21[4] = { 'p', 'e', 'n', 'a' };
|
40
|
+
static const symbol s_0_22[4] = { 'k', 'i', 'n', 'a' };
|
41
|
+
static const symbol s_0_23[5] = { 'e', 'z', 'i', 'n', 'a' };
|
42
|
+
static const symbol s_0_24[6] = { 't', 'e', 'z', 'i', 'n', 'a' };
|
43
|
+
static const symbol s_0_25[4] = { 'k', 'u', 'n', 'a' };
|
44
|
+
static const symbol s_0_26[4] = { 't', 'u', 'n', 'a' };
|
45
|
+
static const symbol s_0_27[6] = { 'k', 'i', 'z', 'u', 'n', 'a' };
|
46
|
+
static const symbol s_0_28[3] = { 'e', 'r', 'a' };
|
47
|
+
static const symbol s_0_29[4] = { 'b', 'e', 'r', 'a' };
|
48
|
+
static const symbol s_0_30[7] = { 'a', 'r', 'a', 'b', 'e', 'r', 'a' };
|
49
|
+
static const symbol s_0_31[4] = { 'k', 'e', 'r', 'a' };
|
50
|
+
static const symbol s_0_32[4] = { 'p', 'e', 'r', 'a' };
|
51
|
+
static const symbol s_0_33[4] = { 'o', 'r', 'r', 'a' };
|
52
|
+
static const symbol s_0_34[5] = { 'k', 'o', 'r', 'r', 'a' };
|
53
|
+
static const symbol s_0_35[4] = { 'd', 'u', 'r', 'a' };
|
54
|
+
static const symbol s_0_36[4] = { 'g', 'u', 'r', 'a' };
|
55
|
+
static const symbol s_0_37[4] = { 'k', 'u', 'r', 'a' };
|
56
|
+
static const symbol s_0_38[4] = { 't', 'u', 'r', 'a' };
|
57
|
+
static const symbol s_0_39[3] = { 'e', 't', 'a' };
|
58
|
+
static const symbol s_0_40[4] = { 'k', 'e', 't', 'a' };
|
59
|
+
static const symbol s_0_41[6] = { 'g', 'a', 'i', 'l', 'u', 'a' };
|
60
|
+
static const symbol s_0_42[3] = { 'e', 'z', 'a' };
|
61
|
+
static const symbol s_0_43[6] = { 'e', 'r', 'r', 'e', 'z', 'a' };
|
62
|
+
static const symbol s_0_44[3] = { 't', 'z', 'a' };
|
63
|
+
static const symbol s_0_45[6] = { 'g', 'a', 'i', 't', 'z', 'a' };
|
64
|
+
static const symbol s_0_46[6] = { 'k', 'a', 'i', 't', 'z', 'a' };
|
65
|
+
static const symbol s_0_47[6] = { 'k', 'u', 'n', 't', 'z', 'a' };
|
66
|
+
static const symbol s_0_48[3] = { 'i', 'd', 'e' };
|
67
|
+
static const symbol s_0_49[4] = { 'b', 'i', 'd', 'e' };
|
68
|
+
static const symbol s_0_50[4] = { 'k', 'i', 'd', 'e' };
|
69
|
+
static const symbol s_0_51[4] = { 'p', 'i', 'd', 'e' };
|
70
|
+
static const symbol s_0_52[5] = { 'k', 'u', 'n', 'd', 'e' };
|
71
|
+
static const symbol s_0_53[5] = { 't', 'z', 'a', 'k', 'e' };
|
72
|
+
static const symbol s_0_54[5] = { 't', 'z', 'e', 'k', 'e' };
|
73
|
+
static const symbol s_0_55[2] = { 'l', 'e' };
|
74
|
+
static const symbol s_0_56[4] = { 'g', 'a', 'l', 'e' };
|
75
|
+
static const symbol s_0_57[5] = { 't', 'a', 'i', 'l', 'e' };
|
76
|
+
static const symbol s_0_58[6] = { 't', 'z', 'a', 'i', 'l', 'e' };
|
77
|
+
static const symbol s_0_59[4] = { 'g', 'u', 'n', 'e' };
|
78
|
+
static const symbol s_0_60[4] = { 'k', 'u', 'n', 'e' };
|
79
|
+
static const symbol s_0_61[3] = { 't', 'z', 'e' };
|
80
|
+
static const symbol s_0_62[4] = { 'a', 't', 'z', 'e' };
|
81
|
+
static const symbol s_0_63[3] = { 'g', 'a', 'i' };
|
82
|
+
static const symbol s_0_64[4] = { 'a', 'l', 'd', 'i' };
|
83
|
+
static const symbol s_0_65[5] = { 't', 'a', 'l', 'd', 'i' };
|
84
|
+
static const symbol s_0_66[2] = { 'k', 'i' };
|
85
|
+
static const symbol s_0_67[3] = { 'a', 'r', 'i' };
|
86
|
+
static const symbol s_0_68[4] = { 'k', 'a', 'r', 'i' };
|
87
|
+
static const symbol s_0_69[4] = { 'l', 'a', 'r', 'i' };
|
88
|
+
static const symbol s_0_70[4] = { 't', 'a', 'r', 'i' };
|
89
|
+
static const symbol s_0_71[5] = { 'e', 't', 'a', 'r', 'i' };
|
90
|
+
static const symbol s_0_72[5] = { 'g', 'a', 'r', 'r', 'i' };
|
91
|
+
static const symbol s_0_73[5] = { 'k', 'a', 'r', 'r', 'i' };
|
92
|
+
static const symbol s_0_74[5] = { 'a', 'r', 'a', 'z', 'i' };
|
93
|
+
static const symbol s_0_75[6] = { 't', 'a', 'r', 'a', 'z', 'i' };
|
94
|
+
static const symbol s_0_76[2] = { 'a', 'n' };
|
95
|
+
static const symbol s_0_77[3] = { 'e', 'a', 'n' };
|
96
|
+
static const symbol s_0_78[4] = { 'r', 'e', 'a', 'n' };
|
97
|
+
static const symbol s_0_79[3] = { 'k', 'a', 'n' };
|
98
|
+
static const symbol s_0_80[4] = { 'e', 't', 'a', 'n' };
|
99
|
+
static const symbol s_0_81[7] = { 'a', 't', 's', 'e', 'd', 'e', 'n' };
|
100
|
+
static const symbol s_0_82[3] = { 'm', 'e', 'n' };
|
101
|
+
static const symbol s_0_83[3] = { 'p', 'e', 'n' };
|
102
|
+
static const symbol s_0_84[3] = { 'k', 'i', 'n' };
|
103
|
+
static const symbol s_0_85[5] = { 'r', 'e', 'k', 'i', 'n' };
|
104
|
+
static const symbol s_0_86[4] = { 'e', 'z', 'i', 'n' };
|
105
|
+
static const symbol s_0_87[5] = { 't', 'e', 'z', 'i', 'n' };
|
106
|
+
static const symbol s_0_88[3] = { 't', 'u', 'n' };
|
107
|
+
static const symbol s_0_89[5] = { 'k', 'i', 'z', 'u', 'n' };
|
108
|
+
static const symbol s_0_90[2] = { 'g', 'o' };
|
109
|
+
static const symbol s_0_91[3] = { 'a', 'g', 'o' };
|
110
|
+
static const symbol s_0_92[3] = { 't', 'i', 'o' };
|
111
|
+
static const symbol s_0_93[4] = { 'd', 'a', 'k', 'o' };
|
112
|
+
static const symbol s_0_94[2] = { 'o', 'r' };
|
113
|
+
static const symbol s_0_95[3] = { 'k', 'o', 'r' };
|
114
|
+
static const symbol s_0_96[4] = { 't', 'z', 'a', 't' };
|
115
|
+
static const symbol s_0_97[2] = { 'd', 'u' };
|
116
|
+
static const symbol s_0_98[5] = { 'g', 'a', 'i', 'l', 'u' };
|
117
|
+
static const symbol s_0_99[2] = { 't', 'u' };
|
118
|
+
static const symbol s_0_100[3] = { 'a', 't', 'u' };
|
119
|
+
static const symbol s_0_101[6] = { 'a', 'l', 'd', 'a', 't', 'u' };
|
120
|
+
static const symbol s_0_102[4] = { 't', 'a', 't', 'u' };
|
121
|
+
static const symbol s_0_103[6] = { 'b', 'a', 'd', 'i', 't', 'u' };
|
122
|
+
static const symbol s_0_104[2] = { 'e', 'z' };
|
123
|
+
static const symbol s_0_105[5] = { 'e', 'r', 'r', 'e', 'z' };
|
124
|
+
static const symbol s_0_106[4] = { 't', 'z', 'e', 'z' };
|
125
|
+
static const symbol s_0_107[5] = { 'g', 'a', 'i', 't', 'z' };
|
126
|
+
static const symbol s_0_108[5] = { 'k', 'a', 'i', 't', 'z' };
|
127
|
+
|
128
|
+
static const struct among a_0[109] =
|
129
|
+
{
|
130
|
+
{ 4, s_0_0, -1, 1, 0},
|
131
|
+
{ 5, s_0_1, 0, 1, 0},
|
132
|
+
{ 5, s_0_2, 0, 1, 0},
|
133
|
+
{ 5, s_0_3, 0, 1, 0},
|
134
|
+
{ 6, s_0_4, -1, 1, 0},
|
135
|
+
{ 5, s_0_5, -1, 1, 0},
|
136
|
+
{ 6, s_0_6, -1, 1, 0},
|
137
|
+
{ 7, s_0_7, -1, 1, 0},
|
138
|
+
{ 5, s_0_8, -1, 1, 0},
|
139
|
+
{ 5, s_0_9, -1, 1, 0},
|
140
|
+
{ 5, s_0_10, -1, 1, 0},
|
141
|
+
{ 4, s_0_11, -1, 1, 0},
|
142
|
+
{ 5, s_0_12, -1, 1, 0},
|
143
|
+
{ 6, s_0_13, 12, 1, 0},
|
144
|
+
{ 5, s_0_14, -1, 1, 0},
|
145
|
+
{ 6, s_0_15, -1, 2, 0},
|
146
|
+
{ 6, s_0_16, -1, 1, 0},
|
147
|
+
{ 2, s_0_17, -1, 1, 0},
|
148
|
+
{ 5, s_0_18, 17, 1, 0},
|
149
|
+
{ 2, s_0_19, -1, 1, 0},
|
150
|
+
{ 4, s_0_20, -1, 1, 0},
|
151
|
+
{ 4, s_0_21, -1, 1, 0},
|
152
|
+
{ 4, s_0_22, -1, 1, 0},
|
153
|
+
{ 5, s_0_23, -1, 1, 0},
|
154
|
+
{ 6, s_0_24, 23, 1, 0},
|
155
|
+
{ 4, s_0_25, -1, 1, 0},
|
156
|
+
{ 4, s_0_26, -1, 1, 0},
|
157
|
+
{ 6, s_0_27, -1, 1, 0},
|
158
|
+
{ 3, s_0_28, -1, 1, 0},
|
159
|
+
{ 4, s_0_29, 28, 1, 0},
|
160
|
+
{ 7, s_0_30, 29, 4, 0},
|
161
|
+
{ 4, s_0_31, 28, 1, 0},
|
162
|
+
{ 4, s_0_32, 28, 1, 0},
|
163
|
+
{ 4, s_0_33, -1, 1, 0},
|
164
|
+
{ 5, s_0_34, 33, 1, 0},
|
165
|
+
{ 4, s_0_35, -1, 1, 0},
|
166
|
+
{ 4, s_0_36, -1, 1, 0},
|
167
|
+
{ 4, s_0_37, -1, 1, 0},
|
168
|
+
{ 4, s_0_38, -1, 1, 0},
|
169
|
+
{ 3, s_0_39, -1, 1, 0},
|
170
|
+
{ 4, s_0_40, 39, 1, 0},
|
171
|
+
{ 6, s_0_41, -1, 1, 0},
|
172
|
+
{ 3, s_0_42, -1, 1, 0},
|
173
|
+
{ 6, s_0_43, 42, 1, 0},
|
174
|
+
{ 3, s_0_44, -1, 2, 0},
|
175
|
+
{ 6, s_0_45, 44, 1, 0},
|
176
|
+
{ 6, s_0_46, 44, 1, 0},
|
177
|
+
{ 6, s_0_47, 44, 1, 0},
|
178
|
+
{ 3, s_0_48, -1, 1, 0},
|
179
|
+
{ 4, s_0_49, 48, 1, 0},
|
180
|
+
{ 4, s_0_50, 48, 1, 0},
|
181
|
+
{ 4, s_0_51, 48, 1, 0},
|
182
|
+
{ 5, s_0_52, -1, 1, 0},
|
183
|
+
{ 5, s_0_53, -1, 1, 0},
|
184
|
+
{ 5, s_0_54, -1, 1, 0},
|
185
|
+
{ 2, s_0_55, -1, 1, 0},
|
186
|
+
{ 4, s_0_56, 55, 1, 0},
|
187
|
+
{ 5, s_0_57, 55, 1, 0},
|
188
|
+
{ 6, s_0_58, 55, 1, 0},
|
189
|
+
{ 4, s_0_59, -1, 1, 0},
|
190
|
+
{ 4, s_0_60, -1, 1, 0},
|
191
|
+
{ 3, s_0_61, -1, 1, 0},
|
192
|
+
{ 4, s_0_62, 61, 1, 0},
|
193
|
+
{ 3, s_0_63, -1, 1, 0},
|
194
|
+
{ 4, s_0_64, -1, 1, 0},
|
195
|
+
{ 5, s_0_65, 64, 1, 0},
|
196
|
+
{ 2, s_0_66, -1, 1, 0},
|
197
|
+
{ 3, s_0_67, -1, 1, 0},
|
198
|
+
{ 4, s_0_68, 67, 1, 0},
|
199
|
+
{ 4, s_0_69, 67, 1, 0},
|
200
|
+
{ 4, s_0_70, 67, 1, 0},
|
201
|
+
{ 5, s_0_71, 70, 1, 0},
|
202
|
+
{ 5, s_0_72, -1, 2, 0},
|
203
|
+
{ 5, s_0_73, -1, 1, 0},
|
204
|
+
{ 5, s_0_74, -1, 1, 0},
|
205
|
+
{ 6, s_0_75, 74, 1, 0},
|
206
|
+
{ 2, s_0_76, -1, 1, 0},
|
207
|
+
{ 3, s_0_77, 76, 1, 0},
|
208
|
+
{ 4, s_0_78, 77, 1, 0},
|
209
|
+
{ 3, s_0_79, 76, 1, 0},
|
210
|
+
{ 4, s_0_80, 76, 1, 0},
|
211
|
+
{ 7, s_0_81, -1, 3, 0},
|
212
|
+
{ 3, s_0_82, -1, 1, 0},
|
213
|
+
{ 3, s_0_83, -1, 1, 0},
|
214
|
+
{ 3, s_0_84, -1, 1, 0},
|
215
|
+
{ 5, s_0_85, 84, 1, 0},
|
216
|
+
{ 4, s_0_86, -1, 1, 0},
|
217
|
+
{ 5, s_0_87, 86, 1, 0},
|
218
|
+
{ 3, s_0_88, -1, 1, 0},
|
219
|
+
{ 5, s_0_89, -1, 1, 0},
|
220
|
+
{ 2, s_0_90, -1, 1, 0},
|
221
|
+
{ 3, s_0_91, 90, 1, 0},
|
222
|
+
{ 3, s_0_92, -1, 1, 0},
|
223
|
+
{ 4, s_0_93, -1, 1, 0},
|
224
|
+
{ 2, s_0_94, -1, 1, 0},
|
225
|
+
{ 3, s_0_95, 94, 1, 0},
|
226
|
+
{ 4, s_0_96, -1, 1, 0},
|
227
|
+
{ 2, s_0_97, -1, 1, 0},
|
228
|
+
{ 5, s_0_98, -1, 1, 0},
|
229
|
+
{ 2, s_0_99, -1, 1, 0},
|
230
|
+
{ 3, s_0_100, 99, 1, 0},
|
231
|
+
{ 6, s_0_101, 100, 1, 0},
|
232
|
+
{ 4, s_0_102, 100, 1, 0},
|
233
|
+
{ 6, s_0_103, 99, 5, 0},
|
234
|
+
{ 2, s_0_104, -1, 1, 0},
|
235
|
+
{ 5, s_0_105, 104, 1, 0},
|
236
|
+
{ 4, s_0_106, 104, 1, 0},
|
237
|
+
{ 5, s_0_107, -1, 1, 0},
|
238
|
+
{ 5, s_0_108, -1, 1, 0}
|
239
|
+
};
|
240
|
+
|
241
|
+
static const symbol s_1_0[3] = { 'a', 'd', 'a' };
|
242
|
+
static const symbol s_1_1[4] = { 'k', 'a', 'd', 'a' };
|
243
|
+
static const symbol s_1_2[4] = { 'a', 'n', 'd', 'a' };
|
244
|
+
static const symbol s_1_3[5] = { 'd', 'e', 'n', 'd', 'a' };
|
245
|
+
static const symbol s_1_4[5] = { 'g', 'a', 'b', 'e', 'a' };
|
246
|
+
static const symbol s_1_5[5] = { 'k', 'a', 'b', 'e', 'a' };
|
247
|
+
static const symbol s_1_6[5] = { 'a', 'l', 'd', 'e', 'a' };
|
248
|
+
static const symbol s_1_7[6] = { 'k', 'a', 'l', 'd', 'e', 'a' };
|
249
|
+
static const symbol s_1_8[6] = { 't', 'a', 'l', 'd', 'e', 'a' };
|
250
|
+
static const symbol s_1_9[5] = { 'o', 'r', 'd', 'e', 'a' };
|
251
|
+
static const symbol s_1_10[5] = { 'z', 'a', 'l', 'e', 'a' };
|
252
|
+
static const symbol s_1_11[6] = { 't', 'z', 'a', 'l', 'e', 'a' };
|
253
|
+
static const symbol s_1_12[5] = { 'g', 'i', 'l', 'e', 'a' };
|
254
|
+
static const symbol s_1_13[4] = { 'e', 'm', 'e', 'a' };
|
255
|
+
static const symbol s_1_14[5] = { 'k', 'u', 'm', 'e', 'a' };
|
256
|
+
static const symbol s_1_15[3] = { 'n', 'e', 'a' };
|
257
|
+
static const symbol s_1_16[4] = { 'e', 'n', 'e', 'a' };
|
258
|
+
static const symbol s_1_17[6] = { 'z', 'i', 'o', 'n', 'e', 'a' };
|
259
|
+
static const symbol s_1_18[4] = { 'u', 'n', 'e', 'a' };
|
260
|
+
static const symbol s_1_19[5] = { 'g', 'u', 'n', 'e', 'a' };
|
261
|
+
static const symbol s_1_20[3] = { 'p', 'e', 'a' };
|
262
|
+
static const symbol s_1_21[6] = { 'a', 'u', 'r', 'r', 'e', 'a' };
|
263
|
+
static const symbol s_1_22[3] = { 't', 'e', 'a' };
|
264
|
+
static const symbol s_1_23[5] = { 'k', 'o', 't', 'e', 'a' };
|
265
|
+
static const symbol s_1_24[5] = { 'a', 'r', 't', 'e', 'a' };
|
266
|
+
static const symbol s_1_25[5] = { 'o', 's', 't', 'e', 'a' };
|
267
|
+
static const symbol s_1_26[5] = { 'e', 't', 'x', 'e', 'a' };
|
268
|
+
static const symbol s_1_27[2] = { 'g', 'a' };
|
269
|
+
static const symbol s_1_28[4] = { 'a', 'n', 'g', 'a' };
|
270
|
+
static const symbol s_1_29[4] = { 'g', 'a', 'i', 'a' };
|
271
|
+
static const symbol s_1_30[5] = { 'a', 'l', 'd', 'i', 'a' };
|
272
|
+
static const symbol s_1_31[6] = { 't', 'a', 'l', 'd', 'i', 'a' };
|
273
|
+
static const symbol s_1_32[6] = { 'h', 'a', 'n', 'd', 'i', 'a' };
|
274
|
+
static const symbol s_1_33[6] = { 'm', 'e', 'n', 'd', 'i', 'a' };
|
275
|
+
static const symbol s_1_34[4] = { 'g', 'e', 'i', 'a' };
|
276
|
+
static const symbol s_1_35[4] = { 'e', 'g', 'i', 'a' };
|
277
|
+
static const symbol s_1_36[5] = { 'd', 'e', 'g', 'i', 'a' };
|
278
|
+
static const symbol s_1_37[5] = { 't', 'e', 'g', 'i', 'a' };
|
279
|
+
static const symbol s_1_38[5] = { 'n', 'a', 'h', 'i', 'a' };
|
280
|
+
static const symbol s_1_39[4] = { 'o', 'h', 'i', 'a' };
|
281
|
+
static const symbol s_1_40[3] = { 'k', 'i', 'a' };
|
282
|
+
static const symbol s_1_41[5] = { 't', 'o', 'k', 'i', 'a' };
|
283
|
+
static const symbol s_1_42[3] = { 'o', 'i', 'a' };
|
284
|
+
static const symbol s_1_43[4] = { 'k', 'o', 'i', 'a' };
|
285
|
+
static const symbol s_1_44[4] = { 'a', 'r', 'i', 'a' };
|
286
|
+
static const symbol s_1_45[5] = { 'k', 'a', 'r', 'i', 'a' };
|
287
|
+
static const symbol s_1_46[5] = { 'l', 'a', 'r', 'i', 'a' };
|
288
|
+
static const symbol s_1_47[5] = { 't', 'a', 'r', 'i', 'a' };
|
289
|
+
static const symbol s_1_48[4] = { 'e', 'r', 'i', 'a' };
|
290
|
+
static const symbol s_1_49[5] = { 'k', 'e', 'r', 'i', 'a' };
|
291
|
+
static const symbol s_1_50[5] = { 't', 'e', 'r', 'i', 'a' };
|
292
|
+
static const symbol s_1_51[6] = { 'g', 'a', 'r', 'r', 'i', 'a' };
|
293
|
+
static const symbol s_1_52[6] = { 'l', 'a', 'r', 'r', 'i', 'a' };
|
294
|
+
static const symbol s_1_53[6] = { 'k', 'i', 'r', 'r', 'i', 'a' };
|
295
|
+
static const symbol s_1_54[5] = { 'd', 'u', 'r', 'i', 'a' };
|
296
|
+
static const symbol s_1_55[4] = { 'a', 's', 'i', 'a' };
|
297
|
+
static const symbol s_1_56[3] = { 't', 'i', 'a' };
|
298
|
+
static const symbol s_1_57[4] = { 'e', 'z', 'i', 'a' };
|
299
|
+
static const symbol s_1_58[5] = { 'b', 'i', 'z', 'i', 'a' };
|
300
|
+
static const symbol s_1_59[6] = { 'o', 'n', 't', 'z', 'i', 'a' };
|
301
|
+
static const symbol s_1_60[2] = { 'k', 'a' };
|
302
|
+
static const symbol s_1_61[4] = { 'j', 'o', 'k', 'a' };
|
303
|
+
static const symbol s_1_62[5] = { 'a', 'u', 'r', 'k', 'a' };
|
304
|
+
static const symbol s_1_63[3] = { 's', 'k', 'a' };
|
305
|
+
static const symbol s_1_64[3] = { 'x', 'k', 'a' };
|
306
|
+
static const symbol s_1_65[3] = { 'z', 'k', 'a' };
|
307
|
+
static const symbol s_1_66[6] = { 'g', 'i', 'b', 'e', 'l', 'a' };
|
308
|
+
static const symbol s_1_67[4] = { 'g', 'e', 'l', 'a' };
|
309
|
+
static const symbol s_1_68[5] = { 'k', 'a', 'i', 'l', 'a' };
|
310
|
+
static const symbol s_1_69[5] = { 's', 'k', 'i', 'l', 'a' };
|
311
|
+
static const symbol s_1_70[4] = { 't', 'i', 'l', 'a' };
|
312
|
+
static const symbol s_1_71[3] = { 'o', 'l', 'a' };
|
313
|
+
static const symbol s_1_72[2] = { 'n', 'a' };
|
314
|
+
static const symbol s_1_73[4] = { 'k', 'a', 'n', 'a' };
|
315
|
+
static const symbol s_1_74[3] = { 'e', 'n', 'a' };
|
316
|
+
static const symbol s_1_75[7] = { 'g', 'a', 'r', 'r', 'e', 'n', 'a' };
|
317
|
+
static const symbol s_1_76[7] = { 'g', 'e', 'r', 'r', 'e', 'n', 'a' };
|
318
|
+
static const symbol s_1_77[6] = { 'u', 'r', 'r', 'e', 'n', 'a' };
|
319
|
+
static const symbol s_1_78[5] = { 'z', 'a', 'i', 'n', 'a' };
|
320
|
+
static const symbol s_1_79[6] = { 't', 'z', 'a', 'i', 'n', 'a' };
|
321
|
+
static const symbol s_1_80[4] = { 'k', 'i', 'n', 'a' };
|
322
|
+
static const symbol s_1_81[4] = { 'm', 'i', 'n', 'a' };
|
323
|
+
static const symbol s_1_82[5] = { 'g', 'a', 'r', 'n', 'a' };
|
324
|
+
static const symbol s_1_83[3] = { 'u', 'n', 'a' };
|
325
|
+
static const symbol s_1_84[4] = { 'd', 'u', 'n', 'a' };
|
326
|
+
static const symbol s_1_85[5] = { 'a', 's', 'u', 'n', 'a' };
|
327
|
+
static const symbol s_1_86[6] = { 't', 'a', 's', 'u', 'n', 'a' };
|
328
|
+
static const symbol s_1_87[5] = { 'o', 'n', 'd', 'o', 'a' };
|
329
|
+
static const symbol s_1_88[6] = { 'k', 'o', 'n', 'd', 'o', 'a' };
|
330
|
+
static const symbol s_1_89[4] = { 'n', 'g', 'o', 'a' };
|
331
|
+
static const symbol s_1_90[4] = { 'z', 'i', 'o', 'a' };
|
332
|
+
static const symbol s_1_91[3] = { 'k', 'o', 'a' };
|
333
|
+
static const symbol s_1_92[5] = { 't', 'a', 'k', 'o', 'a' };
|
334
|
+
static const symbol s_1_93[4] = { 'z', 'k', 'o', 'a' };
|
335
|
+
static const symbol s_1_94[3] = { 'n', 'o', 'a' };
|
336
|
+
static const symbol s_1_95[5] = { 'z', 'i', 'n', 'o', 'a' };
|
337
|
+
static const symbol s_1_96[4] = { 'a', 'r', 'o', 'a' };
|
338
|
+
static const symbol s_1_97[5] = { 't', 'a', 'r', 'o', 'a' };
|
339
|
+
static const symbol s_1_98[5] = { 'z', 'a', 'r', 'o', 'a' };
|
340
|
+
static const symbol s_1_99[4] = { 'e', 'r', 'o', 'a' };
|
341
|
+
static const symbol s_1_100[4] = { 'o', 'r', 'o', 'a' };
|
342
|
+
static const symbol s_1_101[4] = { 'o', 's', 'o', 'a' };
|
343
|
+
static const symbol s_1_102[3] = { 't', 'o', 'a' };
|
344
|
+
static const symbol s_1_103[4] = { 't', 't', 'o', 'a' };
|
345
|
+
static const symbol s_1_104[4] = { 'z', 't', 'o', 'a' };
|
346
|
+
static const symbol s_1_105[4] = { 't', 'x', 'o', 'a' };
|
347
|
+
static const symbol s_1_106[4] = { 't', 'z', 'o', 'a' };
|
348
|
+
static const symbol s_1_107[4] = { 0xC3, 0xB1, 'o', 'a' };
|
349
|
+
static const symbol s_1_108[2] = { 'r', 'a' };
|
350
|
+
static const symbol s_1_109[3] = { 'a', 'r', 'a' };
|
351
|
+
static const symbol s_1_110[4] = { 'd', 'a', 'r', 'a' };
|
352
|
+
static const symbol s_1_111[5] = { 'l', 'i', 'a', 'r', 'a' };
|
353
|
+
static const symbol s_1_112[5] = { 't', 'i', 'a', 'r', 'a' };
|
354
|
+
static const symbol s_1_113[4] = { 't', 'a', 'r', 'a' };
|
355
|
+
static const symbol s_1_114[5] = { 'e', 't', 'a', 'r', 'a' };
|
356
|
+
static const symbol s_1_115[5] = { 't', 'z', 'a', 'r', 'a' };
|
357
|
+
static const symbol s_1_116[4] = { 'b', 'e', 'r', 'a' };
|
358
|
+
static const symbol s_1_117[4] = { 'k', 'e', 'r', 'a' };
|
359
|
+
static const symbol s_1_118[4] = { 'p', 'e', 'r', 'a' };
|
360
|
+
static const symbol s_1_119[3] = { 'o', 'r', 'a' };
|
361
|
+
static const symbol s_1_120[6] = { 't', 'z', 'a', 'r', 'r', 'a' };
|
362
|
+
static const symbol s_1_121[5] = { 'k', 'o', 'r', 'r', 'a' };
|
363
|
+
static const symbol s_1_122[3] = { 't', 'r', 'a' };
|
364
|
+
static const symbol s_1_123[2] = { 's', 'a' };
|
365
|
+
static const symbol s_1_124[3] = { 'o', 's', 'a' };
|
366
|
+
static const symbol s_1_125[2] = { 't', 'a' };
|
367
|
+
static const symbol s_1_126[3] = { 'e', 't', 'a' };
|
368
|
+
static const symbol s_1_127[4] = { 'k', 'e', 't', 'a' };
|
369
|
+
static const symbol s_1_128[3] = { 's', 't', 'a' };
|
370
|
+
static const symbol s_1_129[3] = { 'd', 'u', 'a' };
|
371
|
+
static const symbol s_1_130[6] = { 'm', 'e', 'n', 'd', 'u', 'a' };
|
372
|
+
static const symbol s_1_131[5] = { 'o', 'r', 'd', 'u', 'a' };
|
373
|
+
static const symbol s_1_132[5] = { 'l', 'e', 'k', 'u', 'a' };
|
374
|
+
static const symbol s_1_133[5] = { 'b', 'u', 'r', 'u', 'a' };
|
375
|
+
static const symbol s_1_134[5] = { 'd', 'u', 'r', 'u', 'a' };
|
376
|
+
static const symbol s_1_135[4] = { 't', 's', 'u', 'a' };
|
377
|
+
static const symbol s_1_136[3] = { 't', 'u', 'a' };
|
378
|
+
static const symbol s_1_137[6] = { 'm', 'e', 'n', 't', 'u', 'a' };
|
379
|
+
static const symbol s_1_138[5] = { 'e', 's', 't', 'u', 'a' };
|
380
|
+
static const symbol s_1_139[4] = { 't', 'x', 'u', 'a' };
|
381
|
+
static const symbol s_1_140[3] = { 'z', 'u', 'a' };
|
382
|
+
static const symbol s_1_141[4] = { 't', 'z', 'u', 'a' };
|
383
|
+
static const symbol s_1_142[2] = { 'z', 'a' };
|
384
|
+
static const symbol s_1_143[3] = { 'e', 'z', 'a' };
|
385
|
+
static const symbol s_1_144[5] = { 'e', 'r', 'o', 'z', 'a' };
|
386
|
+
static const symbol s_1_145[3] = { 't', 'z', 'a' };
|
387
|
+
static const symbol s_1_146[6] = { 'k', 'o', 'i', 't', 'z', 'a' };
|
388
|
+
static const symbol s_1_147[5] = { 'a', 'n', 't', 'z', 'a' };
|
389
|
+
static const symbol s_1_148[6] = { 'g', 'i', 'n', 't', 'z', 'a' };
|
390
|
+
static const symbol s_1_149[6] = { 'k', 'i', 'n', 't', 'z', 'a' };
|
391
|
+
static const symbol s_1_150[6] = { 'k', 'u', 'n', 't', 'z', 'a' };
|
392
|
+
static const symbol s_1_151[4] = { 'g', 'a', 'b', 'e' };
|
393
|
+
static const symbol s_1_152[4] = { 'k', 'a', 'b', 'e' };
|
394
|
+
static const symbol s_1_153[4] = { 'k', 'i', 'd', 'e' };
|
395
|
+
static const symbol s_1_154[4] = { 'a', 'l', 'd', 'e' };
|
396
|
+
static const symbol s_1_155[5] = { 'k', 'a', 'l', 'd', 'e' };
|
397
|
+
static const symbol s_1_156[5] = { 't', 'a', 'l', 'd', 'e' };
|
398
|
+
static const symbol s_1_157[4] = { 'o', 'r', 'd', 'e' };
|
399
|
+
static const symbol s_1_158[2] = { 'g', 'e' };
|
400
|
+
static const symbol s_1_159[4] = { 'z', 'a', 'l', 'e' };
|
401
|
+
static const symbol s_1_160[5] = { 't', 'z', 'a', 'l', 'e' };
|
402
|
+
static const symbol s_1_161[4] = { 'g', 'i', 'l', 'e' };
|
403
|
+
static const symbol s_1_162[3] = { 'e', 'm', 'e' };
|
404
|
+
static const symbol s_1_163[4] = { 'k', 'u', 'm', 'e' };
|
405
|
+
static const symbol s_1_164[2] = { 'n', 'e' };
|
406
|
+
static const symbol s_1_165[5] = { 'z', 'i', 'o', 'n', 'e' };
|
407
|
+
static const symbol s_1_166[3] = { 'u', 'n', 'e' };
|
408
|
+
static const symbol s_1_167[4] = { 'g', 'u', 'n', 'e' };
|
409
|
+
static const symbol s_1_168[2] = { 'p', 'e' };
|
410
|
+
static const symbol s_1_169[5] = { 'a', 'u', 'r', 'r', 'e' };
|
411
|
+
static const symbol s_1_170[2] = { 't', 'e' };
|
412
|
+
static const symbol s_1_171[4] = { 'k', 'o', 't', 'e' };
|
413
|
+
static const symbol s_1_172[4] = { 'a', 'r', 't', 'e' };
|
414
|
+
static const symbol s_1_173[4] = { 'o', 's', 't', 'e' };
|
415
|
+
static const symbol s_1_174[4] = { 'e', 't', 'x', 'e' };
|
416
|
+
static const symbol s_1_175[3] = { 'g', 'a', 'i' };
|
417
|
+
static const symbol s_1_176[2] = { 'd', 'i' };
|
418
|
+
static const symbol s_1_177[4] = { 'a', 'l', 'd', 'i' };
|
419
|
+
static const symbol s_1_178[5] = { 't', 'a', 'l', 'd', 'i' };
|
420
|
+
static const symbol s_1_179[5] = { 'g', 'e', 'l', 'd', 'i' };
|
421
|
+
static const symbol s_1_180[5] = { 'h', 'a', 'n', 'd', 'i' };
|
422
|
+
static const symbol s_1_181[5] = { 'm', 'e', 'n', 'd', 'i' };
|
423
|
+
static const symbol s_1_182[3] = { 'g', 'e', 'i' };
|
424
|
+
static const symbol s_1_183[3] = { 'e', 'g', 'i' };
|
425
|
+
static const symbol s_1_184[4] = { 'd', 'e', 'g', 'i' };
|
426
|
+
static const symbol s_1_185[4] = { 't', 'e', 'g', 'i' };
|
427
|
+
static const symbol s_1_186[4] = { 'n', 'a', 'h', 'i' };
|
428
|
+
static const symbol s_1_187[3] = { 'o', 'h', 'i' };
|
429
|
+
static const symbol s_1_188[2] = { 'k', 'i' };
|
430
|
+
static const symbol s_1_189[4] = { 't', 'o', 'k', 'i' };
|
431
|
+
static const symbol s_1_190[2] = { 'o', 'i' };
|
432
|
+
static const symbol s_1_191[3] = { 'g', 'o', 'i' };
|
433
|
+
static const symbol s_1_192[3] = { 'k', 'o', 'i' };
|
434
|
+
static const symbol s_1_193[3] = { 'a', 'r', 'i' };
|
435
|
+
static const symbol s_1_194[4] = { 'k', 'a', 'r', 'i' };
|
436
|
+
static const symbol s_1_195[4] = { 'l', 'a', 'r', 'i' };
|
437
|
+
static const symbol s_1_196[4] = { 't', 'a', 'r', 'i' };
|
438
|
+
static const symbol s_1_197[5] = { 'g', 'a', 'r', 'r', 'i' };
|
439
|
+
static const symbol s_1_198[5] = { 'l', 'a', 'r', 'r', 'i' };
|
440
|
+
static const symbol s_1_199[5] = { 'k', 'i', 'r', 'r', 'i' };
|
441
|
+
static const symbol s_1_200[4] = { 'd', 'u', 'r', 'i' };
|
442
|
+
static const symbol s_1_201[3] = { 'a', 's', 'i' };
|
443
|
+
static const symbol s_1_202[2] = { 't', 'i' };
|
444
|
+
static const symbol s_1_203[5] = { 'o', 'n', 't', 'z', 'i' };
|
445
|
+
static const symbol s_1_204[3] = { 0xC3, 0xB1, 'i' };
|
446
|
+
static const symbol s_1_205[2] = { 'a', 'k' };
|
447
|
+
static const symbol s_1_206[2] = { 'e', 'k' };
|
448
|
+
static const symbol s_1_207[5] = { 't', 'a', 'r', 'i', 'k' };
|
449
|
+
static const symbol s_1_208[5] = { 'g', 'i', 'b', 'e', 'l' };
|
450
|
+
static const symbol s_1_209[3] = { 'a', 'i', 'l' };
|
451
|
+
static const symbol s_1_210[4] = { 'k', 'a', 'i', 'l' };
|
452
|
+
static const symbol s_1_211[3] = { 'k', 'a', 'n' };
|
453
|
+
static const symbol s_1_212[3] = { 't', 'a', 'n' };
|
454
|
+
static const symbol s_1_213[4] = { 'e', 't', 'a', 'n' };
|
455
|
+
static const symbol s_1_214[2] = { 'e', 'n' };
|
456
|
+
static const symbol s_1_215[3] = { 'r', 'e', 'n' };
|
457
|
+
static const symbol s_1_216[6] = { 'g', 'a', 'r', 'r', 'e', 'n' };
|
458
|
+
static const symbol s_1_217[6] = { 'g', 'e', 'r', 'r', 'e', 'n' };
|
459
|
+
static const symbol s_1_218[5] = { 'u', 'r', 'r', 'e', 'n' };
|
460
|
+
static const symbol s_1_219[3] = { 't', 'e', 'n' };
|
461
|
+
static const symbol s_1_220[4] = { 't', 'z', 'e', 'n' };
|
462
|
+
static const symbol s_1_221[4] = { 'z', 'a', 'i', 'n' };
|
463
|
+
static const symbol s_1_222[5] = { 't', 'z', 'a', 'i', 'n' };
|
464
|
+
static const symbol s_1_223[3] = { 'k', 'i', 'n' };
|
465
|
+
static const symbol s_1_224[3] = { 'm', 'i', 'n' };
|
466
|
+
static const symbol s_1_225[3] = { 'd', 'u', 'n' };
|
467
|
+
static const symbol s_1_226[4] = { 'a', 's', 'u', 'n' };
|
468
|
+
static const symbol s_1_227[5] = { 't', 'a', 's', 'u', 'n' };
|
469
|
+
static const symbol s_1_228[5] = { 'a', 'i', 'z', 'u', 'n' };
|
470
|
+
static const symbol s_1_229[4] = { 'o', 'n', 'd', 'o' };
|
471
|
+
static const symbol s_1_230[5] = { 'k', 'o', 'n', 'd', 'o' };
|
472
|
+
static const symbol s_1_231[2] = { 'g', 'o' };
|
473
|
+
static const symbol s_1_232[3] = { 'n', 'g', 'o' };
|
474
|
+
static const symbol s_1_233[3] = { 'z', 'i', 'o' };
|
475
|
+
static const symbol s_1_234[2] = { 'k', 'o' };
|
476
|
+
static const symbol s_1_235[5] = { 't', 'r', 'a', 'k', 'o' };
|
477
|
+
static const symbol s_1_236[4] = { 't', 'a', 'k', 'o' };
|
478
|
+
static const symbol s_1_237[5] = { 'e', 't', 'a', 'k', 'o' };
|
479
|
+
static const symbol s_1_238[3] = { 'e', 'k', 'o' };
|
480
|
+
static const symbol s_1_239[6] = { 't', 'a', 'r', 'i', 'k', 'o' };
|
481
|
+
static const symbol s_1_240[3] = { 's', 'k', 'o' };
|
482
|
+
static const symbol s_1_241[4] = { 't', 'u', 'k', 'o' };
|
483
|
+
static const symbol s_1_242[8] = { 'm', 'i', 'n', 'u', 't', 'u', 'k', 'o' };
|
484
|
+
static const symbol s_1_243[3] = { 'z', 'k', 'o' };
|
485
|
+
static const symbol s_1_244[2] = { 'n', 'o' };
|
486
|
+
static const symbol s_1_245[4] = { 'z', 'i', 'n', 'o' };
|
487
|
+
static const symbol s_1_246[2] = { 'r', 'o' };
|
488
|
+
static const symbol s_1_247[3] = { 'a', 'r', 'o' };
|
489
|
+
static const symbol s_1_248[5] = { 'i', 'g', 'a', 'r', 'o' };
|
490
|
+
static const symbol s_1_249[4] = { 't', 'a', 'r', 'o' };
|
491
|
+
static const symbol s_1_250[4] = { 'z', 'a', 'r', 'o' };
|
492
|
+
static const symbol s_1_251[3] = { 'e', 'r', 'o' };
|
493
|
+
static const symbol s_1_252[4] = { 'g', 'i', 'r', 'o' };
|
494
|
+
static const symbol s_1_253[3] = { 'o', 'r', 'o' };
|
495
|
+
static const symbol s_1_254[3] = { 'o', 's', 'o' };
|
496
|
+
static const symbol s_1_255[2] = { 't', 'o' };
|
497
|
+
static const symbol s_1_256[3] = { 't', 't', 'o' };
|
498
|
+
static const symbol s_1_257[3] = { 'z', 't', 'o' };
|
499
|
+
static const symbol s_1_258[3] = { 't', 'x', 'o' };
|
500
|
+
static const symbol s_1_259[3] = { 't', 'z', 'o' };
|
501
|
+
static const symbol s_1_260[6] = { 'g', 'i', 'n', 't', 'z', 'o' };
|
502
|
+
static const symbol s_1_261[3] = { 0xC3, 0xB1, 'o' };
|
503
|
+
static const symbol s_1_262[2] = { 'z', 'p' };
|
504
|
+
static const symbol s_1_263[2] = { 'a', 'r' };
|
505
|
+
static const symbol s_1_264[3] = { 'd', 'a', 'r' };
|
506
|
+
static const symbol s_1_265[5] = { 'b', 'e', 'h', 'a', 'r' };
|
507
|
+
static const symbol s_1_266[5] = { 'z', 'e', 'h', 'a', 'r' };
|
508
|
+
static const symbol s_1_267[4] = { 'l', 'i', 'a', 'r' };
|
509
|
+
static const symbol s_1_268[4] = { 't', 'i', 'a', 'r' };
|
510
|
+
static const symbol s_1_269[3] = { 't', 'a', 'r' };
|
511
|
+
static const symbol s_1_270[4] = { 't', 'z', 'a', 'r' };
|
512
|
+
static const symbol s_1_271[2] = { 'o', 'r' };
|
513
|
+
static const symbol s_1_272[3] = { 'k', 'o', 'r' };
|
514
|
+
static const symbol s_1_273[2] = { 'o', 's' };
|
515
|
+
static const symbol s_1_274[3] = { 'k', 'e', 't' };
|
516
|
+
static const symbol s_1_275[2] = { 'd', 'u' };
|
517
|
+
static const symbol s_1_276[5] = { 'm', 'e', 'n', 'd', 'u' };
|
518
|
+
static const symbol s_1_277[4] = { 'o', 'r', 'd', 'u' };
|
519
|
+
static const symbol s_1_278[4] = { 'l', 'e', 'k', 'u' };
|
520
|
+
static const symbol s_1_279[4] = { 'b', 'u', 'r', 'u' };
|
521
|
+
static const symbol s_1_280[4] = { 'd', 'u', 'r', 'u' };
|
522
|
+
static const symbol s_1_281[3] = { 't', 's', 'u' };
|
523
|
+
static const symbol s_1_282[2] = { 't', 'u' };
|
524
|
+
static const symbol s_1_283[4] = { 't', 'a', 't', 'u' };
|
525
|
+
static const symbol s_1_284[5] = { 'm', 'e', 'n', 't', 'u' };
|
526
|
+
static const symbol s_1_285[4] = { 'e', 's', 't', 'u' };
|
527
|
+
static const symbol s_1_286[3] = { 't', 'x', 'u' };
|
528
|
+
static const symbol s_1_287[2] = { 'z', 'u' };
|
529
|
+
static const symbol s_1_288[3] = { 't', 'z', 'u' };
|
530
|
+
static const symbol s_1_289[6] = { 'g', 'i', 'n', 't', 'z', 'u' };
|
531
|
+
static const symbol s_1_290[1] = { 'z' };
|
532
|
+
static const symbol s_1_291[2] = { 'e', 'z' };
|
533
|
+
static const symbol s_1_292[4] = { 'e', 'r', 'o', 'z' };
|
534
|
+
static const symbol s_1_293[2] = { 't', 'z' };
|
535
|
+
static const symbol s_1_294[5] = { 'k', 'o', 'i', 't', 'z' };
|
536
|
+
|
537
|
+
static const struct among a_1[295] =
|
538
|
+
{
|
539
|
+
{ 3, s_1_0, -1, 1, 0},
|
540
|
+
{ 4, s_1_1, 0, 1, 0},
|
541
|
+
{ 4, s_1_2, -1, 1, 0},
|
542
|
+
{ 5, s_1_3, -1, 1, 0},
|
543
|
+
{ 5, s_1_4, -1, 1, 0},
|
544
|
+
{ 5, s_1_5, -1, 1, 0},
|
545
|
+
{ 5, s_1_6, -1, 1, 0},
|
546
|
+
{ 6, s_1_7, 6, 1, 0},
|
547
|
+
{ 6, s_1_8, 6, 1, 0},
|
548
|
+
{ 5, s_1_9, -1, 1, 0},
|
549
|
+
{ 5, s_1_10, -1, 1, 0},
|
550
|
+
{ 6, s_1_11, 10, 1, 0},
|
551
|
+
{ 5, s_1_12, -1, 1, 0},
|
552
|
+
{ 4, s_1_13, -1, 1, 0},
|
553
|
+
{ 5, s_1_14, -1, 1, 0},
|
554
|
+
{ 3, s_1_15, -1, 1, 0},
|
555
|
+
{ 4, s_1_16, 15, 1, 0},
|
556
|
+
{ 6, s_1_17, 15, 1, 0},
|
557
|
+
{ 4, s_1_18, 15, 1, 0},
|
558
|
+
{ 5, s_1_19, 18, 1, 0},
|
559
|
+
{ 3, s_1_20, -1, 1, 0},
|
560
|
+
{ 6, s_1_21, -1, 1, 0},
|
561
|
+
{ 3, s_1_22, -1, 1, 0},
|
562
|
+
{ 5, s_1_23, 22, 1, 0},
|
563
|
+
{ 5, s_1_24, 22, 1, 0},
|
564
|
+
{ 5, s_1_25, 22, 1, 0},
|
565
|
+
{ 5, s_1_26, -1, 1, 0},
|
566
|
+
{ 2, s_1_27, -1, 1, 0},
|
567
|
+
{ 4, s_1_28, 27, 1, 0},
|
568
|
+
{ 4, s_1_29, -1, 1, 0},
|
569
|
+
{ 5, s_1_30, -1, 1, 0},
|
570
|
+
{ 6, s_1_31, 30, 1, 0},
|
571
|
+
{ 6, s_1_32, -1, 1, 0},
|
572
|
+
{ 6, s_1_33, -1, 1, 0},
|
573
|
+
{ 4, s_1_34, -1, 1, 0},
|
574
|
+
{ 4, s_1_35, -1, 1, 0},
|
575
|
+
{ 5, s_1_36, 35, 1, 0},
|
576
|
+
{ 5, s_1_37, 35, 1, 0},
|
577
|
+
{ 5, s_1_38, -1, 1, 0},
|
578
|
+
{ 4, s_1_39, -1, 1, 0},
|
579
|
+
{ 3, s_1_40, -1, 1, 0},
|
580
|
+
{ 5, s_1_41, 40, 1, 0},
|
581
|
+
{ 3, s_1_42, -1, 1, 0},
|
582
|
+
{ 4, s_1_43, 42, 1, 0},
|
583
|
+
{ 4, s_1_44, -1, 1, 0},
|
584
|
+
{ 5, s_1_45, 44, 1, 0},
|
585
|
+
{ 5, s_1_46, 44, 1, 0},
|
586
|
+
{ 5, s_1_47, 44, 1, 0},
|
587
|
+
{ 4, s_1_48, -1, 1, 0},
|
588
|
+
{ 5, s_1_49, 48, 1, 0},
|
589
|
+
{ 5, s_1_50, 48, 1, 0},
|
590
|
+
{ 6, s_1_51, -1, 2, 0},
|
591
|
+
{ 6, s_1_52, -1, 1, 0},
|
592
|
+
{ 6, s_1_53, -1, 1, 0},
|
593
|
+
{ 5, s_1_54, -1, 1, 0},
|
594
|
+
{ 4, s_1_55, -1, 1, 0},
|
595
|
+
{ 3, s_1_56, -1, 1, 0},
|
596
|
+
{ 4, s_1_57, -1, 1, 0},
|
597
|
+
{ 5, s_1_58, -1, 1, 0},
|
598
|
+
{ 6, s_1_59, -1, 1, 0},
|
599
|
+
{ 2, s_1_60, -1, 1, 0},
|
600
|
+
{ 4, s_1_61, 60, 3, 0},
|
601
|
+
{ 5, s_1_62, 60, 10, 0},
|
602
|
+
{ 3, s_1_63, 60, 1, 0},
|
603
|
+
{ 3, s_1_64, 60, 1, 0},
|
604
|
+
{ 3, s_1_65, 60, 1, 0},
|
605
|
+
{ 6, s_1_66, -1, 1, 0},
|
606
|
+
{ 4, s_1_67, -1, 1, 0},
|
607
|
+
{ 5, s_1_68, -1, 1, 0},
|
608
|
+
{ 5, s_1_69, -1, 1, 0},
|
609
|
+
{ 4, s_1_70, -1, 1, 0},
|
610
|
+
{ 3, s_1_71, -1, 1, 0},
|
611
|
+
{ 2, s_1_72, -1, 1, 0},
|
612
|
+
{ 4, s_1_73, 72, 1, 0},
|
613
|
+
{ 3, s_1_74, 72, 1, 0},
|
614
|
+
{ 7, s_1_75, 74, 1, 0},
|
615
|
+
{ 7, s_1_76, 74, 1, 0},
|
616
|
+
{ 6, s_1_77, 74, 1, 0},
|
617
|
+
{ 5, s_1_78, 72, 1, 0},
|
618
|
+
{ 6, s_1_79, 78, 1, 0},
|
619
|
+
{ 4, s_1_80, 72, 1, 0},
|
620
|
+
{ 4, s_1_81, 72, 1, 0},
|
621
|
+
{ 5, s_1_82, 72, 1, 0},
|
622
|
+
{ 3, s_1_83, 72, 1, 0},
|
623
|
+
{ 4, s_1_84, 83, 1, 0},
|
624
|
+
{ 5, s_1_85, 83, 1, 0},
|
625
|
+
{ 6, s_1_86, 85, 1, 0},
|
626
|
+
{ 5, s_1_87, -1, 1, 0},
|
627
|
+
{ 6, s_1_88, 87, 1, 0},
|
628
|
+
{ 4, s_1_89, -1, 1, 0},
|
629
|
+
{ 4, s_1_90, -1, 1, 0},
|
630
|
+
{ 3, s_1_91, -1, 1, 0},
|
631
|
+
{ 5, s_1_92, 91, 1, 0},
|
632
|
+
{ 4, s_1_93, 91, 1, 0},
|
633
|
+
{ 3, s_1_94, -1, 1, 0},
|
634
|
+
{ 5, s_1_95, 94, 1, 0},
|
635
|
+
{ 4, s_1_96, -1, 1, 0},
|
636
|
+
{ 5, s_1_97, 96, 1, 0},
|
637
|
+
{ 5, s_1_98, 96, 1, 0},
|
638
|
+
{ 4, s_1_99, -1, 1, 0},
|
639
|
+
{ 4, s_1_100, -1, 1, 0},
|
640
|
+
{ 4, s_1_101, -1, 1, 0},
|
641
|
+
{ 3, s_1_102, -1, 1, 0},
|
642
|
+
{ 4, s_1_103, 102, 1, 0},
|
643
|
+
{ 4, s_1_104, 102, 1, 0},
|
644
|
+
{ 4, s_1_105, -1, 1, 0},
|
645
|
+
{ 4, s_1_106, -1, 1, 0},
|
646
|
+
{ 4, s_1_107, -1, 1, 0},
|
647
|
+
{ 2, s_1_108, -1, 1, 0},
|
648
|
+
{ 3, s_1_109, 108, 1, 0},
|
649
|
+
{ 4, s_1_110, 109, 1, 0},
|
650
|
+
{ 5, s_1_111, 109, 1, 0},
|
651
|
+
{ 5, s_1_112, 109, 1, 0},
|
652
|
+
{ 4, s_1_113, 109, 1, 0},
|
653
|
+
{ 5, s_1_114, 113, 1, 0},
|
654
|
+
{ 5, s_1_115, 109, 1, 0},
|
655
|
+
{ 4, s_1_116, 108, 1, 0},
|
656
|
+
{ 4, s_1_117, 108, 1, 0},
|
657
|
+
{ 4, s_1_118, 108, 1, 0},
|
658
|
+
{ 3, s_1_119, 108, 2, 0},
|
659
|
+
{ 6, s_1_120, 108, 1, 0},
|
660
|
+
{ 5, s_1_121, 108, 1, 0},
|
661
|
+
{ 3, s_1_122, 108, 1, 0},
|
662
|
+
{ 2, s_1_123, -1, 1, 0},
|
663
|
+
{ 3, s_1_124, 123, 1, 0},
|
664
|
+
{ 2, s_1_125, -1, 1, 0},
|
665
|
+
{ 3, s_1_126, 125, 1, 0},
|
666
|
+
{ 4, s_1_127, 126, 1, 0},
|
667
|
+
{ 3, s_1_128, 125, 1, 0},
|
668
|
+
{ 3, s_1_129, -1, 1, 0},
|
669
|
+
{ 6, s_1_130, 129, 1, 0},
|
670
|
+
{ 5, s_1_131, 129, 1, 0},
|
671
|
+
{ 5, s_1_132, -1, 1, 0},
|
672
|
+
{ 5, s_1_133, -1, 1, 0},
|
673
|
+
{ 5, s_1_134, -1, 1, 0},
|
674
|
+
{ 4, s_1_135, -1, 1, 0},
|
675
|
+
{ 3, s_1_136, -1, 1, 0},
|
676
|
+
{ 6, s_1_137, 136, 1, 0},
|
677
|
+
{ 5, s_1_138, 136, 1, 0},
|
678
|
+
{ 4, s_1_139, -1, 1, 0},
|
679
|
+
{ 3, s_1_140, -1, 1, 0},
|
680
|
+
{ 4, s_1_141, 140, 1, 0},
|
681
|
+
{ 2, s_1_142, -1, 1, 0},
|
682
|
+
{ 3, s_1_143, 142, 1, 0},
|
683
|
+
{ 5, s_1_144, 142, 1, 0},
|
684
|
+
{ 3, s_1_145, 142, 2, 0},
|
685
|
+
{ 6, s_1_146, 145, 1, 0},
|
686
|
+
{ 5, s_1_147, 145, 1, 0},
|
687
|
+
{ 6, s_1_148, 145, 1, 0},
|
688
|
+
{ 6, s_1_149, 145, 1, 0},
|
689
|
+
{ 6, s_1_150, 145, 1, 0},
|
690
|
+
{ 4, s_1_151, -1, 1, 0},
|
691
|
+
{ 4, s_1_152, -1, 1, 0},
|
692
|
+
{ 4, s_1_153, -1, 1, 0},
|
693
|
+
{ 4, s_1_154, -1, 1, 0},
|
694
|
+
{ 5, s_1_155, 154, 1, 0},
|
695
|
+
{ 5, s_1_156, 154, 1, 0},
|
696
|
+
{ 4, s_1_157, -1, 1, 0},
|
697
|
+
{ 2, s_1_158, -1, 1, 0},
|
698
|
+
{ 4, s_1_159, -1, 1, 0},
|
699
|
+
{ 5, s_1_160, 159, 1, 0},
|
700
|
+
{ 4, s_1_161, -1, 1, 0},
|
701
|
+
{ 3, s_1_162, -1, 1, 0},
|
702
|
+
{ 4, s_1_163, -1, 1, 0},
|
703
|
+
{ 2, s_1_164, -1, 1, 0},
|
704
|
+
{ 5, s_1_165, 164, 1, 0},
|
705
|
+
{ 3, s_1_166, 164, 1, 0},
|
706
|
+
{ 4, s_1_167, 166, 1, 0},
|
707
|
+
{ 2, s_1_168, -1, 1, 0},
|
708
|
+
{ 5, s_1_169, -1, 1, 0},
|
709
|
+
{ 2, s_1_170, -1, 1, 0},
|
710
|
+
{ 4, s_1_171, 170, 1, 0},
|
711
|
+
{ 4, s_1_172, 170, 1, 0},
|
712
|
+
{ 4, s_1_173, 170, 1, 0},
|
713
|
+
{ 4, s_1_174, -1, 1, 0},
|
714
|
+
{ 3, s_1_175, -1, 1, 0},
|
715
|
+
{ 2, s_1_176, -1, 1, 0},
|
716
|
+
{ 4, s_1_177, 176, 1, 0},
|
717
|
+
{ 5, s_1_178, 177, 1, 0},
|
718
|
+
{ 5, s_1_179, 176, 8, 0},
|
719
|
+
{ 5, s_1_180, 176, 1, 0},
|
720
|
+
{ 5, s_1_181, 176, 1, 0},
|
721
|
+
{ 3, s_1_182, -1, 1, 0},
|
722
|
+
{ 3, s_1_183, -1, 1, 0},
|
723
|
+
{ 4, s_1_184, 183, 1, 0},
|
724
|
+
{ 4, s_1_185, 183, 1, 0},
|
725
|
+
{ 4, s_1_186, -1, 1, 0},
|
726
|
+
{ 3, s_1_187, -1, 1, 0},
|
727
|
+
{ 2, s_1_188, -1, 1, 0},
|
728
|
+
{ 4, s_1_189, 188, 1, 0},
|
729
|
+
{ 2, s_1_190, -1, 1, 0},
|
730
|
+
{ 3, s_1_191, 190, 1, 0},
|
731
|
+
{ 3, s_1_192, 190, 1, 0},
|
732
|
+
{ 3, s_1_193, -1, 1, 0},
|
733
|
+
{ 4, s_1_194, 193, 1, 0},
|
734
|
+
{ 4, s_1_195, 193, 1, 0},
|
735
|
+
{ 4, s_1_196, 193, 1, 0},
|
736
|
+
{ 5, s_1_197, -1, 2, 0},
|
737
|
+
{ 5, s_1_198, -1, 1, 0},
|
738
|
+
{ 5, s_1_199, -1, 1, 0},
|
739
|
+
{ 4, s_1_200, -1, 1, 0},
|
740
|
+
{ 3, s_1_201, -1, 1, 0},
|
741
|
+
{ 2, s_1_202, -1, 1, 0},
|
742
|
+
{ 5, s_1_203, -1, 1, 0},
|
743
|
+
{ 3, s_1_204, -1, 1, 0},
|
744
|
+
{ 2, s_1_205, -1, 1, 0},
|
745
|
+
{ 2, s_1_206, -1, 1, 0},
|
746
|
+
{ 5, s_1_207, -1, 1, 0},
|
747
|
+
{ 5, s_1_208, -1, 1, 0},
|
748
|
+
{ 3, s_1_209, -1, 1, 0},
|
749
|
+
{ 4, s_1_210, 209, 1, 0},
|
750
|
+
{ 3, s_1_211, -1, 1, 0},
|
751
|
+
{ 3, s_1_212, -1, 1, 0},
|
752
|
+
{ 4, s_1_213, 212, 1, 0},
|
753
|
+
{ 2, s_1_214, -1, 4, 0},
|
754
|
+
{ 3, s_1_215, 214, 2, 0},
|
755
|
+
{ 6, s_1_216, 215, 1, 0},
|
756
|
+
{ 6, s_1_217, 215, 1, 0},
|
757
|
+
{ 5, s_1_218, 215, 1, 0},
|
758
|
+
{ 3, s_1_219, 214, 4, 0},
|
759
|
+
{ 4, s_1_220, 214, 4, 0},
|
760
|
+
{ 4, s_1_221, -1, 1, 0},
|
761
|
+
{ 5, s_1_222, 221, 1, 0},
|
762
|
+
{ 3, s_1_223, -1, 1, 0},
|
763
|
+
{ 3, s_1_224, -1, 1, 0},
|
764
|
+
{ 3, s_1_225, -1, 1, 0},
|
765
|
+
{ 4, s_1_226, -1, 1, 0},
|
766
|
+
{ 5, s_1_227, 226, 1, 0},
|
767
|
+
{ 5, s_1_228, -1, 1, 0},
|
768
|
+
{ 4, s_1_229, -1, 1, 0},
|
769
|
+
{ 5, s_1_230, 229, 1, 0},
|
770
|
+
{ 2, s_1_231, -1, 1, 0},
|
771
|
+
{ 3, s_1_232, 231, 1, 0},
|
772
|
+
{ 3, s_1_233, -1, 1, 0},
|
773
|
+
{ 2, s_1_234, -1, 1, 0},
|
774
|
+
{ 5, s_1_235, 234, 5, 0},
|
775
|
+
{ 4, s_1_236, 234, 1, 0},
|
776
|
+
{ 5, s_1_237, 236, 1, 0},
|
777
|
+
{ 3, s_1_238, 234, 1, 0},
|
778
|
+
{ 6, s_1_239, 234, 1, 0},
|
779
|
+
{ 3, s_1_240, 234, 1, 0},
|
780
|
+
{ 4, s_1_241, 234, 1, 0},
|
781
|
+
{ 8, s_1_242, 241, 6, 0},
|
782
|
+
{ 3, s_1_243, 234, 1, 0},
|
783
|
+
{ 2, s_1_244, -1, 1, 0},
|
784
|
+
{ 4, s_1_245, 244, 1, 0},
|
785
|
+
{ 2, s_1_246, -1, 1, 0},
|
786
|
+
{ 3, s_1_247, 246, 1, 0},
|
787
|
+
{ 5, s_1_248, 247, 9, 0},
|
788
|
+
{ 4, s_1_249, 247, 1, 0},
|
789
|
+
{ 4, s_1_250, 247, 1, 0},
|
790
|
+
{ 3, s_1_251, 246, 1, 0},
|
791
|
+
{ 4, s_1_252, 246, 1, 0},
|
792
|
+
{ 3, s_1_253, 246, 1, 0},
|
793
|
+
{ 3, s_1_254, -1, 1, 0},
|
794
|
+
{ 2, s_1_255, -1, 1, 0},
|
795
|
+
{ 3, s_1_256, 255, 1, 0},
|
796
|
+
{ 3, s_1_257, 255, 1, 0},
|
797
|
+
{ 3, s_1_258, -1, 1, 0},
|
798
|
+
{ 3, s_1_259, -1, 1, 0},
|
799
|
+
{ 6, s_1_260, 259, 1, 0},
|
800
|
+
{ 3, s_1_261, -1, 1, 0},
|
801
|
+
{ 2, s_1_262, -1, 1, 0},
|
802
|
+
{ 2, s_1_263, -1, 1, 0},
|
803
|
+
{ 3, s_1_264, 263, 1, 0},
|
804
|
+
{ 5, s_1_265, 263, 1, 0},
|
805
|
+
{ 5, s_1_266, 263, 7, 0},
|
806
|
+
{ 4, s_1_267, 263, 1, 0},
|
807
|
+
{ 4, s_1_268, 263, 1, 0},
|
808
|
+
{ 3, s_1_269, 263, 1, 0},
|
809
|
+
{ 4, s_1_270, 263, 1, 0},
|
810
|
+
{ 2, s_1_271, -1, 2, 0},
|
811
|
+
{ 3, s_1_272, 271, 1, 0},
|
812
|
+
{ 2, s_1_273, -1, 1, 0},
|
813
|
+
{ 3, s_1_274, -1, 1, 0},
|
814
|
+
{ 2, s_1_275, -1, 1, 0},
|
815
|
+
{ 5, s_1_276, 275, 1, 0},
|
816
|
+
{ 4, s_1_277, 275, 1, 0},
|
817
|
+
{ 4, s_1_278, -1, 1, 0},
|
818
|
+
{ 4, s_1_279, -1, 2, 0},
|
819
|
+
{ 4, s_1_280, -1, 1, 0},
|
820
|
+
{ 3, s_1_281, -1, 1, 0},
|
821
|
+
{ 2, s_1_282, -1, 1, 0},
|
822
|
+
{ 4, s_1_283, 282, 4, 0},
|
823
|
+
{ 5, s_1_284, 282, 1, 0},
|
824
|
+
{ 4, s_1_285, 282, 1, 0},
|
825
|
+
{ 3, s_1_286, -1, 1, 0},
|
826
|
+
{ 2, s_1_287, -1, 1, 0},
|
827
|
+
{ 3, s_1_288, 287, 1, 0},
|
828
|
+
{ 6, s_1_289, 288, 1, 0},
|
829
|
+
{ 1, s_1_290, -1, 1, 0},
|
830
|
+
{ 2, s_1_291, 290, 1, 0},
|
831
|
+
{ 4, s_1_292, 290, 1, 0},
|
832
|
+
{ 2, s_1_293, 290, 1, 0},
|
833
|
+
{ 5, s_1_294, 293, 1, 0}
|
834
|
+
};
|
835
|
+
|
836
|
+
static const symbol s_2_0[4] = { 'z', 'l', 'e', 'a' };
|
837
|
+
static const symbol s_2_1[5] = { 'k', 'e', 'r', 'i', 'a' };
|
838
|
+
static const symbol s_2_2[2] = { 'l', 'a' };
|
839
|
+
static const symbol s_2_3[3] = { 'e', 'r', 'a' };
|
840
|
+
static const symbol s_2_4[4] = { 'd', 'a', 'd', 'e' };
|
841
|
+
static const symbol s_2_5[4] = { 't', 'a', 'd', 'e' };
|
842
|
+
static const symbol s_2_6[4] = { 'd', 'a', 't', 'e' };
|
843
|
+
static const symbol s_2_7[4] = { 't', 'a', 't', 'e' };
|
844
|
+
static const symbol s_2_8[2] = { 'g', 'i' };
|
845
|
+
static const symbol s_2_9[2] = { 'k', 'i' };
|
846
|
+
static const symbol s_2_10[2] = { 'i', 'k' };
|
847
|
+
static const symbol s_2_11[5] = { 'l', 'a', 'n', 'i', 'k' };
|
848
|
+
static const symbol s_2_12[3] = { 'r', 'i', 'k' };
|
849
|
+
static const symbol s_2_13[5] = { 'l', 'a', 'r', 'i', 'k' };
|
850
|
+
static const symbol s_2_14[4] = { 'z', 't', 'i', 'k' };
|
851
|
+
static const symbol s_2_15[2] = { 'g', 'o' };
|
852
|
+
static const symbol s_2_16[2] = { 'r', 'o' };
|
853
|
+
static const symbol s_2_17[3] = { 'e', 'r', 'o' };
|
854
|
+
static const symbol s_2_18[2] = { 't', 'o' };
|
855
|
+
|
856
|
+
static const struct among a_2[19] =
|
857
|
+
{
|
858
|
+
{ 4, s_2_0, -1, 2, 0},
|
859
|
+
{ 5, s_2_1, -1, 1, 0},
|
860
|
+
{ 2, s_2_2, -1, 1, 0},
|
861
|
+
{ 3, s_2_3, -1, 1, 0},
|
862
|
+
{ 4, s_2_4, -1, 1, 0},
|
863
|
+
{ 4, s_2_5, -1, 1, 0},
|
864
|
+
{ 4, s_2_6, -1, 1, 0},
|
865
|
+
{ 4, s_2_7, -1, 1, 0},
|
866
|
+
{ 2, s_2_8, -1, 1, 0},
|
867
|
+
{ 2, s_2_9, -1, 1, 0},
|
868
|
+
{ 2, s_2_10, -1, 1, 0},
|
869
|
+
{ 5, s_2_11, 10, 1, 0},
|
870
|
+
{ 3, s_2_12, 10, 1, 0},
|
871
|
+
{ 5, s_2_13, 12, 1, 0},
|
872
|
+
{ 4, s_2_14, 10, 1, 0},
|
873
|
+
{ 2, s_2_15, -1, 1, 0},
|
874
|
+
{ 2, s_2_16, -1, 1, 0},
|
875
|
+
{ 3, s_2_17, 16, 1, 0},
|
876
|
+
{ 2, s_2_18, -1, 1, 0}
|
877
|
+
};
|
878
|
+
|
879
|
+
static const unsigned char g_v[] = { 17, 65, 16 };
|
880
|
+
|
881
|
+
static const symbol s_0[] = { 'a', 't', 's', 'e', 'd', 'e', 'n' };
|
882
|
+
static const symbol s_1[] = { 'a', 'r', 'a', 'b', 'e', 'r', 'a' };
|
883
|
+
static const symbol s_2[] = { 'b', 'a', 'd', 'i', 't', 'u' };
|
884
|
+
static const symbol s_3[] = { 'j', 'o', 'k' };
|
885
|
+
static const symbol s_4[] = { 't', 'r', 'a' };
|
886
|
+
static const symbol s_5[] = { 'm', 'i', 'n', 'u', 't', 'u' };
|
887
|
+
static const symbol s_6[] = { 'z', 'e', 'h', 'a', 'r' };
|
888
|
+
static const symbol s_7[] = { 'g', 'e', 'l', 'd', 'i' };
|
889
|
+
static const symbol s_8[] = { 'i', 'g', 'a', 'r', 'o' };
|
890
|
+
static const symbol s_9[] = { 'a', 'u', 'r', 'k', 'a' };
|
891
|
+
static const symbol s_10[] = { 'z' };
|
892
|
+
|
893
|
+
static int r_mark_regions(struct SN_env * z) {
|
894
|
+
z->I[2] = z->l;
|
895
|
+
z->I[1] = z->l;
|
896
|
+
z->I[0] = z->l;
|
897
|
+
{ int c1 = z->c;
|
898
|
+
{ int c2 = z->c;
|
899
|
+
if (in_grouping_U(z, g_v, 97, 117, 0)) goto lab2;
|
900
|
+
{ int c3 = z->c;
|
901
|
+
if (out_grouping_U(z, g_v, 97, 117, 0)) goto lab4;
|
902
|
+
{
|
903
|
+
int ret = out_grouping_U(z, g_v, 97, 117, 1);
|
904
|
+
if (ret < 0) goto lab4;
|
905
|
+
z->c += ret;
|
906
|
+
}
|
907
|
+
goto lab3;
|
908
|
+
lab4:
|
909
|
+
z->c = c3;
|
910
|
+
if (in_grouping_U(z, g_v, 97, 117, 0)) goto lab2;
|
911
|
+
{
|
912
|
+
int ret = in_grouping_U(z, g_v, 97, 117, 1);
|
913
|
+
if (ret < 0) goto lab2;
|
914
|
+
z->c += ret;
|
915
|
+
}
|
916
|
+
}
|
917
|
+
lab3:
|
918
|
+
goto lab1;
|
919
|
+
lab2:
|
920
|
+
z->c = c2;
|
921
|
+
if (out_grouping_U(z, g_v, 97, 117, 0)) goto lab0;
|
922
|
+
{ int c4 = z->c;
|
923
|
+
if (out_grouping_U(z, g_v, 97, 117, 0)) goto lab6;
|
924
|
+
{
|
925
|
+
int ret = out_grouping_U(z, g_v, 97, 117, 1);
|
926
|
+
if (ret < 0) goto lab6;
|
927
|
+
z->c += ret;
|
928
|
+
}
|
929
|
+
goto lab5;
|
930
|
+
lab6:
|
931
|
+
z->c = c4;
|
932
|
+
if (in_grouping_U(z, g_v, 97, 117, 0)) goto lab0;
|
933
|
+
{ int ret = skip_utf8(z->p, z->c, z->l, 1);
|
934
|
+
if (ret < 0) goto lab0;
|
935
|
+
z->c = ret;
|
936
|
+
}
|
937
|
+
}
|
938
|
+
lab5:
|
939
|
+
;
|
940
|
+
}
|
941
|
+
lab1:
|
942
|
+
z->I[2] = z->c;
|
943
|
+
lab0:
|
944
|
+
z->c = c1;
|
945
|
+
}
|
946
|
+
{ int c5 = z->c;
|
947
|
+
{
|
948
|
+
int ret = out_grouping_U(z, g_v, 97, 117, 1);
|
949
|
+
if (ret < 0) goto lab7;
|
950
|
+
z->c += ret;
|
951
|
+
}
|
952
|
+
{
|
953
|
+
int ret = in_grouping_U(z, g_v, 97, 117, 1);
|
954
|
+
if (ret < 0) goto lab7;
|
955
|
+
z->c += ret;
|
956
|
+
}
|
957
|
+
z->I[1] = z->c;
|
958
|
+
{
|
959
|
+
int ret = out_grouping_U(z, g_v, 97, 117, 1);
|
960
|
+
if (ret < 0) goto lab7;
|
961
|
+
z->c += ret;
|
962
|
+
}
|
963
|
+
{
|
964
|
+
int ret = in_grouping_U(z, g_v, 97, 117, 1);
|
965
|
+
if (ret < 0) goto lab7;
|
966
|
+
z->c += ret;
|
967
|
+
}
|
968
|
+
z->I[0] = z->c;
|
969
|
+
lab7:
|
970
|
+
z->c = c5;
|
971
|
+
}
|
972
|
+
return 1;
|
973
|
+
}
|
974
|
+
|
975
|
+
static int r_RV(struct SN_env * z) {
|
976
|
+
if (!(z->I[2] <= z->c)) return 0;
|
977
|
+
return 1;
|
978
|
+
}
|
979
|
+
|
980
|
+
static int r_R2(struct SN_env * z) {
|
981
|
+
if (!(z->I[0] <= z->c)) return 0;
|
982
|
+
return 1;
|
983
|
+
}
|
984
|
+
|
985
|
+
static int r_R1(struct SN_env * z) {
|
986
|
+
if (!(z->I[1] <= z->c)) return 0;
|
987
|
+
return 1;
|
988
|
+
}
|
989
|
+
|
990
|
+
static int r_aditzak(struct SN_env * z) {
|
991
|
+
int among_var;
|
992
|
+
z->ket = z->c;
|
993
|
+
if (z->c - 1 <= z->lb || z->p[z->c - 1] >> 5 != 3 || !((70566434 >> (z->p[z->c - 1] & 0x1f)) & 1)) return 0;
|
994
|
+
among_var = find_among_b(z, a_0, 109);
|
995
|
+
if (!(among_var)) return 0;
|
996
|
+
z->bra = z->c;
|
997
|
+
switch (among_var) {
|
998
|
+
case 1:
|
999
|
+
{ int ret = r_RV(z);
|
1000
|
+
if (ret <= 0) return ret;
|
1001
|
+
}
|
1002
|
+
{ int ret = slice_del(z);
|
1003
|
+
if (ret < 0) return ret;
|
1004
|
+
}
|
1005
|
+
break;
|
1006
|
+
case 2:
|
1007
|
+
{ int ret = r_R2(z);
|
1008
|
+
if (ret <= 0) return ret;
|
1009
|
+
}
|
1010
|
+
{ int ret = slice_del(z);
|
1011
|
+
if (ret < 0) return ret;
|
1012
|
+
}
|
1013
|
+
break;
|
1014
|
+
case 3:
|
1015
|
+
{ int ret = slice_from_s(z, 7, s_0);
|
1016
|
+
if (ret < 0) return ret;
|
1017
|
+
}
|
1018
|
+
break;
|
1019
|
+
case 4:
|
1020
|
+
{ int ret = slice_from_s(z, 7, s_1);
|
1021
|
+
if (ret < 0) return ret;
|
1022
|
+
}
|
1023
|
+
break;
|
1024
|
+
case 5:
|
1025
|
+
{ int ret = slice_from_s(z, 6, s_2);
|
1026
|
+
if (ret < 0) return ret;
|
1027
|
+
}
|
1028
|
+
break;
|
1029
|
+
}
|
1030
|
+
return 1;
|
1031
|
+
}
|
1032
|
+
|
1033
|
+
static int r_izenak(struct SN_env * z) {
|
1034
|
+
int among_var;
|
1035
|
+
z->ket = z->c;
|
1036
|
+
if (z->c <= z->lb || z->p[z->c - 1] >> 5 != 3 || !((71162402 >> (z->p[z->c - 1] & 0x1f)) & 1)) return 0;
|
1037
|
+
among_var = find_among_b(z, a_1, 295);
|
1038
|
+
if (!(among_var)) return 0;
|
1039
|
+
z->bra = z->c;
|
1040
|
+
switch (among_var) {
|
1041
|
+
case 1:
|
1042
|
+
{ int ret = r_RV(z);
|
1043
|
+
if (ret <= 0) return ret;
|
1044
|
+
}
|
1045
|
+
{ int ret = slice_del(z);
|
1046
|
+
if (ret < 0) return ret;
|
1047
|
+
}
|
1048
|
+
break;
|
1049
|
+
case 2:
|
1050
|
+
{ int ret = r_R2(z);
|
1051
|
+
if (ret <= 0) return ret;
|
1052
|
+
}
|
1053
|
+
{ int ret = slice_del(z);
|
1054
|
+
if (ret < 0) return ret;
|
1055
|
+
}
|
1056
|
+
break;
|
1057
|
+
case 3:
|
1058
|
+
{ int ret = slice_from_s(z, 3, s_3);
|
1059
|
+
if (ret < 0) return ret;
|
1060
|
+
}
|
1061
|
+
break;
|
1062
|
+
case 4:
|
1063
|
+
{ int ret = r_R1(z);
|
1064
|
+
if (ret <= 0) return ret;
|
1065
|
+
}
|
1066
|
+
{ int ret = slice_del(z);
|
1067
|
+
if (ret < 0) return ret;
|
1068
|
+
}
|
1069
|
+
break;
|
1070
|
+
case 5:
|
1071
|
+
{ int ret = slice_from_s(z, 3, s_4);
|
1072
|
+
if (ret < 0) return ret;
|
1073
|
+
}
|
1074
|
+
break;
|
1075
|
+
case 6:
|
1076
|
+
{ int ret = slice_from_s(z, 6, s_5);
|
1077
|
+
if (ret < 0) return ret;
|
1078
|
+
}
|
1079
|
+
break;
|
1080
|
+
case 7:
|
1081
|
+
{ int ret = slice_from_s(z, 5, s_6);
|
1082
|
+
if (ret < 0) return ret;
|
1083
|
+
}
|
1084
|
+
break;
|
1085
|
+
case 8:
|
1086
|
+
{ int ret = slice_from_s(z, 5, s_7);
|
1087
|
+
if (ret < 0) return ret;
|
1088
|
+
}
|
1089
|
+
break;
|
1090
|
+
case 9:
|
1091
|
+
{ int ret = slice_from_s(z, 5, s_8);
|
1092
|
+
if (ret < 0) return ret;
|
1093
|
+
}
|
1094
|
+
break;
|
1095
|
+
case 10:
|
1096
|
+
{ int ret = slice_from_s(z, 5, s_9);
|
1097
|
+
if (ret < 0) return ret;
|
1098
|
+
}
|
1099
|
+
break;
|
1100
|
+
}
|
1101
|
+
return 1;
|
1102
|
+
}
|
1103
|
+
|
1104
|
+
static int r_adjetiboak(struct SN_env * z) {
|
1105
|
+
int among_var;
|
1106
|
+
z->ket = z->c;
|
1107
|
+
if (z->c - 1 <= z->lb || z->p[z->c - 1] >> 5 != 3 || !((35362 >> (z->p[z->c - 1] & 0x1f)) & 1)) return 0;
|
1108
|
+
among_var = find_among_b(z, a_2, 19);
|
1109
|
+
if (!(among_var)) return 0;
|
1110
|
+
z->bra = z->c;
|
1111
|
+
switch (among_var) {
|
1112
|
+
case 1:
|
1113
|
+
{ int ret = r_RV(z);
|
1114
|
+
if (ret <= 0) return ret;
|
1115
|
+
}
|
1116
|
+
{ int ret = slice_del(z);
|
1117
|
+
if (ret < 0) return ret;
|
1118
|
+
}
|
1119
|
+
break;
|
1120
|
+
case 2:
|
1121
|
+
{ int ret = slice_from_s(z, 1, s_10);
|
1122
|
+
if (ret < 0) return ret;
|
1123
|
+
}
|
1124
|
+
break;
|
1125
|
+
}
|
1126
|
+
return 1;
|
1127
|
+
}
|
1128
|
+
|
1129
|
+
extern int basque_UTF_8_stem(struct SN_env * z) {
|
1130
|
+
|
1131
|
+
{ int ret = r_mark_regions(z);
|
1132
|
+
if (ret < 0) return ret;
|
1133
|
+
}
|
1134
|
+
z->lb = z->c; z->c = z->l;
|
1135
|
+
|
1136
|
+
while(1) {
|
1137
|
+
int m1 = z->l - z->c; (void)m1;
|
1138
|
+
{ int ret = r_aditzak(z);
|
1139
|
+
if (ret == 0) goto lab0;
|
1140
|
+
if (ret < 0) return ret;
|
1141
|
+
}
|
1142
|
+
continue;
|
1143
|
+
lab0:
|
1144
|
+
z->c = z->l - m1;
|
1145
|
+
break;
|
1146
|
+
}
|
1147
|
+
while(1) {
|
1148
|
+
int m2 = z->l - z->c; (void)m2;
|
1149
|
+
{ int ret = r_izenak(z);
|
1150
|
+
if (ret == 0) goto lab1;
|
1151
|
+
if (ret < 0) return ret;
|
1152
|
+
}
|
1153
|
+
continue;
|
1154
|
+
lab1:
|
1155
|
+
z->c = z->l - m2;
|
1156
|
+
break;
|
1157
|
+
}
|
1158
|
+
{ int m3 = z->l - z->c; (void)m3;
|
1159
|
+
{ int ret = r_adjetiboak(z);
|
1160
|
+
if (ret < 0) return ret;
|
1161
|
+
}
|
1162
|
+
z->c = z->l - m3;
|
1163
|
+
}
|
1164
|
+
z->c = z->lb;
|
1165
|
+
return 1;
|
1166
|
+
}
|
1167
|
+
|
1168
|
+
extern struct SN_env * basque_UTF_8_create_env(void) { return SN_create_env(0, 3); }
|
1169
|
+
|
1170
|
+
extern void basque_UTF_8_close_env(struct SN_env * z) { SN_close_env(z, 0); }
|
1171
|
+
|