1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
|
/* Generated by Snowball 2.2.0 - https://snowballstem.org/ */
#include "header.h"
#ifdef __cplusplus
extern "C" {
#endif
extern int estonian_UTF_8_stem(struct SN_env * z);
#ifdef __cplusplus
}
#endif
static int r_nu(struct SN_env * z);
static int r_verb(struct SN_env * z);
static int r_verb_exceptions(struct SN_env * z);
static int r_substantive(struct SN_env * z);
static int r_degrees(struct SN_env * z);
static int r_i_plural(struct SN_env * z);
static int r_undouble_kpt(struct SN_env * z);
static int r_plural_three_first_cases(struct SN_env * z);
static int r_emphasis(struct SN_env * z);
static int r_case_ending(struct SN_env * z);
static int r_special_noun_endings(struct SN_env * z);
static int r_LONGV(struct SN_env * z);
static int r_mark_regions(struct SN_env * z);
#ifdef __cplusplus
extern "C" {
#endif
extern struct SN_env * estonian_UTF_8_create_env(void);
extern void estonian_UTF_8_close_env(struct SN_env * z);
#ifdef __cplusplus
}
#endif
static const symbol s_0_0[2] = { 'g', 'i' };
static const symbol s_0_1[2] = { 'k', 'i' };
static const struct among a_0[2] =
{
{ 2, s_0_0, -1, 1, 0},
{ 2, s_0_1, -1, 2, 0}
};
static const symbol s_1_0[2] = { 'd', 'a' };
static const symbol s_1_1[4] = { 'm', 'a', 't', 'a' };
static const symbol s_1_2[1] = { 'b' };
static const symbol s_1_3[4] = { 'k', 's', 'i', 'd' };
static const symbol s_1_4[6] = { 'n', 'u', 'k', 's', 'i', 'd' };
static const symbol s_1_5[2] = { 'm', 'e' };
static const symbol s_1_6[4] = { 's', 'i', 'm', 'e' };
static const symbol s_1_7[5] = { 'k', 's', 'i', 'm', 'e' };
static const symbol s_1_8[7] = { 'n', 'u', 'k', 's', 'i', 'm', 'e' };
static const symbol s_1_9[4] = { 'a', 'k', 's', 'e' };
static const symbol s_1_10[5] = { 'd', 'a', 'k', 's', 'e' };
static const symbol s_1_11[5] = { 't', 'a', 'k', 's', 'e' };
static const symbol s_1_12[4] = { 's', 'i', 't', 'e' };
static const symbol s_1_13[5] = { 'k', 's', 'i', 't', 'e' };
static const symbol s_1_14[7] = { 'n', 'u', 'k', 's', 'i', 't', 'e' };
static const symbol s_1_15[1] = { 'n' };
static const symbol s_1_16[3] = { 's', 'i', 'n' };
static const symbol s_1_17[4] = { 'k', 's', 'i', 'n' };
static const symbol s_1_18[6] = { 'n', 'u', 'k', 's', 'i', 'n' };
static const symbol s_1_19[4] = { 'd', 'a', 'k', 's' };
static const symbol s_1_20[4] = { 't', 'a', 'k', 's' };
static const struct among a_1[21] =
{
{ 2, s_1_0, -1, 3, 0},
{ 4, s_1_1, -1, 1, 0},
{ 1, s_1_2, -1, 3, 0},
{ 4, s_1_3, -1, 1, 0},
{ 6, s_1_4, 3, 1, 0},
{ 2, s_1_5, -1, 3, 0},
{ 4, s_1_6, 5, 1, 0},
{ 5, s_1_7, 6, 1, 0},
{ 7, s_1_8, 7, 1, 0},
{ 4, s_1_9, -1, 2, 0},
{ 5, s_1_10, 9, 1, 0},
{ 5, s_1_11, 9, 1, 0},
{ 4, s_1_12, -1, 1, 0},
{ 5, s_1_13, 12, 1, 0},
{ 7, s_1_14, 13, 1, 0},
{ 1, s_1_15, -1, 3, 0},
{ 3, s_1_16, 15, 1, 0},
{ 4, s_1_17, 16, 1, 0},
{ 6, s_1_18, 17, 1, 0},
{ 4, s_1_19, -1, 1, 0},
{ 4, s_1_20, -1, 1, 0}
};
static const symbol s_2_0[2] = { 'a', 'a' };
static const symbol s_2_1[2] = { 'e', 'e' };
static const symbol s_2_2[2] = { 'i', 'i' };
static const symbol s_2_3[2] = { 'o', 'o' };
static const symbol s_2_4[2] = { 'u', 'u' };
static const symbol s_2_5[4] = { 0xC3, 0xA4, 0xC3, 0xA4 };
static const symbol s_2_6[4] = { 0xC3, 0xB5, 0xC3, 0xB5 };
static const symbol s_2_7[4] = { 0xC3, 0xB6, 0xC3, 0xB6 };
static const symbol s_2_8[4] = { 0xC3, 0xBC, 0xC3, 0xBC };
static const struct among a_2[9] =
{
{ 2, s_2_0, -1, -1, 0},
{ 2, s_2_1, -1, -1, 0},
{ 2, s_2_2, -1, -1, 0},
{ 2, s_2_3, -1, -1, 0},
{ 2, s_2_4, -1, -1, 0},
{ 4, s_2_5, -1, -1, 0},
{ 4, s_2_6, -1, -1, 0},
{ 4, s_2_7, -1, -1, 0},
{ 4, s_2_8, -1, -1, 0}
};
static const symbol s_3_0[1] = { 'i' };
static const struct among a_3[1] =
{
{ 1, s_3_0, -1, 1, 0}
};
static const symbol s_4_0[4] = { 'l', 'a', 'n', 'e' };
static const symbol s_4_1[4] = { 'l', 'i', 'n', 'e' };
static const symbol s_4_2[4] = { 'm', 'i', 'n', 'e' };
static const symbol s_4_3[5] = { 'l', 'a', 's', 's', 'e' };
static const symbol s_4_4[5] = { 'l', 'i', 's', 's', 'e' };
static const symbol s_4_5[5] = { 'm', 'i', 's', 's', 'e' };
static const symbol s_4_6[4] = { 'l', 'a', 's', 'i' };
static const symbol s_4_7[4] = { 'l', 'i', 's', 'i' };
static const symbol s_4_8[4] = { 'm', 'i', 's', 'i' };
static const symbol s_4_9[4] = { 'l', 'a', 's', 't' };
static const symbol s_4_10[4] = { 'l', 'i', 's', 't' };
static const symbol s_4_11[4] = { 'm', 'i', 's', 't' };
static const struct among a_4[12] =
{
{ 4, s_4_0, -1, 1, 0},
{ 4, s_4_1, -1, 3, 0},
{ 4, s_4_2, -1, 2, 0},
{ 5, s_4_3, -1, 1, 0},
{ 5, s_4_4, -1, 3, 0},
{ 5, s_4_5, -1, 2, 0},
{ 4, s_4_6, -1, 1, 0},
{ 4, s_4_7, -1, 3, 0},
{ 4, s_4_8, -1, 2, 0},
{ 4, s_4_9, -1, 1, 0},
{ 4, s_4_10, -1, 3, 0},
{ 4, s_4_11, -1, 2, 0}
};
static const symbol s_5_0[2] = { 'g', 'a' };
static const symbol s_5_1[2] = { 't', 'a' };
static const symbol s_5_2[2] = { 'l', 'e' };
static const symbol s_5_3[3] = { 's', 's', 'e' };
static const symbol s_5_4[1] = { 'l' };
static const symbol s_5_5[1] = { 's' };
static const symbol s_5_6[2] = { 'k', 's' };
static const symbol s_5_7[1] = { 't' };
static const symbol s_5_8[2] = { 'l', 't' };
static const symbol s_5_9[2] = { 's', 't' };
static const struct among a_5[10] =
{
{ 2, s_5_0, -1, 1, 0},
{ 2, s_5_1, -1, 1, 0},
{ 2, s_5_2, -1, 1, 0},
{ 3, s_5_3, -1, 1, 0},
{ 1, s_5_4, -1, 1, 0},
{ 1, s_5_5, -1, 1, 0},
{ 2, s_5_6, 5, 1, 0},
{ 1, s_5_7, -1, 2, 0},
{ 2, s_5_8, 7, 1, 0},
{ 2, s_5_9, 7, 1, 0}
};
static const symbol s_6_1[3] = { 'l', 'a', 's' };
static const symbol s_6_2[3] = { 'l', 'i', 's' };
static const symbol s_6_3[3] = { 'm', 'i', 's' };
static const symbol s_6_4[1] = { 't' };
static const struct among a_6[5] =
{
{ 0, 0, -1, 2, 0},
{ 3, s_6_1, 0, 1, 0},
{ 3, s_6_2, 0, 1, 0},
{ 3, s_6_3, 0, 1, 0},
{ 1, s_6_4, 0, -1, 0}
};
static const symbol s_7_0[1] = { 'd' };
static const symbol s_7_1[3] = { 's', 'i', 'd' };
static const symbol s_7_2[2] = { 'd', 'e' };
static const symbol s_7_3[6] = { 'i', 'k', 'k', 'u', 'd', 'e' };
static const symbol s_7_4[3] = { 'i', 'k', 'e' };
static const symbol s_7_5[4] = { 'i', 'k', 'k', 'e' };
static const symbol s_7_6[2] = { 't', 'e' };
static const struct among a_7[7] =
{
{ 1, s_7_0, -1, 4, 0},
{ 3, s_7_1, 0, 2, 0},
{ 2, s_7_2, -1, 4, 0},
{ 6, s_7_3, 2, 1, 0},
{ 3, s_7_4, -1, 1, 0},
{ 4, s_7_5, -1, 1, 0},
{ 2, s_7_6, -1, 3, 0}
};
static const symbol s_8_0[2] = { 'v', 'a' };
static const symbol s_8_1[2] = { 'd', 'u' };
static const symbol s_8_2[2] = { 'n', 'u' };
static const symbol s_8_3[2] = { 't', 'u' };
static const struct among a_8[4] =
{
{ 2, s_8_0, -1, -1, 0},
{ 2, s_8_1, -1, -1, 0},
{ 2, s_8_2, -1, -1, 0},
{ 2, s_8_3, -1, -1, 0}
};
static const symbol s_9_0[2] = { 'k', 'k' };
static const symbol s_9_1[2] = { 'p', 'p' };
static const symbol s_9_2[2] = { 't', 't' };
static const struct among a_9[3] =
{
{ 2, s_9_0, -1, 1, 0},
{ 2, s_9_1, -1, 2, 0},
{ 2, s_9_2, -1, 3, 0}
};
static const symbol s_10_0[2] = { 'm', 'a' };
static const symbol s_10_1[3] = { 'm', 'a', 'i' };
static const symbol s_10_2[1] = { 'm' };
static const struct among a_10[3] =
{
{ 2, s_10_0, -1, 2, 0},
{ 3, s_10_1, -1, 1, 0},
{ 1, s_10_2, -1, 1, 0}
};
static const symbol s_11_0[4] = { 'j', 'o', 'o', 'b' };
static const symbol s_11_1[4] = { 'j', 'o', 'o', 'd' };
static const symbol s_11_2[8] = { 'j', 'o', 'o', 'd', 'a', 'k', 's', 'e' };
static const symbol s_11_3[5] = { 'j', 'o', 'o', 'm', 'a' };
static const symbol s_11_4[7] = { 'j', 'o', 'o', 'm', 'a', 't', 'a' };
static const symbol s_11_5[5] = { 'j', 'o', 'o', 'm', 'e' };
static const symbol s_11_6[4] = { 'j', 'o', 'o', 'n' };
static const symbol s_11_7[5] = { 'j', 'o', 'o', 't', 'e' };
static const symbol s_11_8[6] = { 'j', 'o', 'o', 'v', 'a', 'd' };
static const symbol s_11_9[4] = { 'j', 'u', 'u', 'a' };
static const symbol s_11_10[7] = { 'j', 'u', 'u', 'a', 'k', 's', 'e' };
static const symbol s_11_11[4] = { 'j', 0xC3, 0xA4, 'i' };
static const symbol s_11_12[5] = { 'j', 0xC3, 0xA4, 'i', 'd' };
static const symbol s_11_13[6] = { 'j', 0xC3, 0xA4, 'i', 'm', 'e' };
static const symbol s_11_14[5] = { 'j', 0xC3, 0xA4, 'i', 'n' };
static const symbol s_11_15[6] = { 'j', 0xC3, 0xA4, 'i', 't', 'e' };
static const symbol s_11_16[6] = { 'j', 0xC3, 0xA4, 0xC3, 0xA4, 'b' };
static const symbol s_11_17[6] = { 'j', 0xC3, 0xA4, 0xC3, 0xA4, 'd' };
static const symbol s_11_18[7] = { 'j', 0xC3, 0xA4, 0xC3, 0xA4, 'd', 'a' };
static const symbol s_11_19[10] = { 'j', 0xC3, 0xA4, 0xC3, 0xA4, 'd', 'a', 'k', 's', 'e' };
static const symbol s_11_20[7] = { 'j', 0xC3, 0xA4, 0xC3, 0xA4, 'd', 'i' };
static const symbol s_11_21[7] = { 'j', 0xC3, 0xA4, 0xC3, 0xA4, 'k', 's' };
static const symbol s_11_22[9] = { 'j', 0xC3, 0xA4, 0xC3, 0xA4, 'k', 's', 'i', 'd' };
static const symbol s_11_23[10] = { 'j', 0xC3, 0xA4, 0xC3, 0xA4, 'k', 's', 'i', 'm', 'e' };
static const symbol s_11_24[9] = { 'j', 0xC3, 0xA4, 0xC3, 0xA4, 'k', 's', 'i', 'n' };
static const symbol s_11_25[10] = { 'j', 0xC3, 0xA4, 0xC3, 0xA4, 'k', 's', 'i', 't', 'e' };
static const symbol s_11_26[7] = { 'j', 0xC3, 0xA4, 0xC3, 0xA4, 'm', 'a' };
static const symbol s_11_27[9] = { 'j', 0xC3, 0xA4, 0xC3, 0xA4, 'm', 'a', 't', 'a' };
static const symbol s_11_28[7] = { 'j', 0xC3, 0xA4, 0xC3, 0xA4, 'm', 'e' };
static const symbol s_11_29[6] = { 'j', 0xC3, 0xA4, 0xC3, 0xA4, 'n' };
static const symbol s_11_30[7] = { 'j', 0xC3, 0xA4, 0xC3, 0xA4, 't', 'e' };
static const symbol s_11_31[8] = { 'j', 0xC3, 0xA4, 0xC3, 0xA4, 'v', 'a', 'd' };
static const symbol s_11_32[4] = { 'j', 0xC3, 0xB5, 'i' };
static const symbol s_11_33[5] = { 'j', 0xC3, 0xB5, 'i', 'd' };
static const symbol s_11_34[6] = { 'j', 0xC3, 0xB5, 'i', 'm', 'e' };
static const symbol s_11_35[5] = { 'j', 0xC3, 0xB5, 'i', 'n' };
static const symbol s_11_36[6] = { 'j', 0xC3, 0xB5, 'i', 't', 'e' };
static const symbol s_11_37[4] = { 'k', 'e', 'e', 'b' };
static const symbol s_11_38[4] = { 'k', 'e', 'e', 'd' };
static const symbol s_11_39[8] = { 'k', 'e', 'e', 'd', 'a', 'k', 's', 'e' };
static const symbol s_11_40[5] = { 'k', 'e', 'e', 'k', 's' };
static const symbol s_11_41[7] = { 'k', 'e', 'e', 'k', 's', 'i', 'd' };
static const symbol s_11_42[8] = { 'k', 'e', 'e', 'k', 's', 'i', 'm', 'e' };
static const symbol s_11_43[7] = { 'k', 'e', 'e', 'k', 's', 'i', 'n' };
static const symbol s_11_44[8] = { 'k', 'e', 'e', 'k', 's', 'i', 't', 'e' };
static const symbol s_11_45[5] = { 'k', 'e', 'e', 'm', 'a' };
static const symbol s_11_46[7] = { 'k', 'e', 'e', 'm', 'a', 't', 'a' };
static const symbol s_11_47[5] = { 'k', 'e', 'e', 'm', 'e' };
static const symbol s_11_48[4] = { 'k', 'e', 'e', 'n' };
static const symbol s_11_49[4] = { 'k', 'e', 'e', 's' };
static const symbol s_11_50[5] = { 'k', 'e', 'e', 't', 'a' };
static const symbol s_11_51[5] = { 'k', 'e', 'e', 't', 'e' };
static const symbol s_11_52[6] = { 'k', 'e', 'e', 'v', 'a', 'd' };
static const symbol s_11_53[5] = { 'k', 0xC3, 0xA4, 'i', 'a' };
static const symbol s_11_54[8] = { 'k', 0xC3, 0xA4, 'i', 'a', 'k', 's', 'e' };
static const symbol s_11_55[5] = { 'k', 0xC3, 0xA4, 'i', 'b' };
static const symbol s_11_56[5] = { 'k', 0xC3, 0xA4, 'i', 'd' };
static const symbol s_11_57[6] = { 'k', 0xC3, 0xA4, 'i', 'd', 'i' };
static const symbol s_11_58[6] = { 'k', 0xC3, 0xA4, 'i', 'k', 's' };
static const symbol s_11_59[8] = { 'k', 0xC3, 0xA4, 'i', 'k', 's', 'i', 'd' };
static const symbol s_11_60[9] = { 'k', 0xC3, 0xA4, 'i', 'k', 's', 'i', 'm', 'e' };
static const symbol s_11_61[8] = { 'k', 0xC3, 0xA4, 'i', 'k', 's', 'i', 'n' };
static const symbol s_11_62[9] = { 'k', 0xC3, 0xA4, 'i', 'k', 's', 'i', 't', 'e' };
static const symbol s_11_63[6] = { 'k', 0xC3, 0xA4, 'i', 'm', 'a' };
static const symbol s_11_64[8] = { 'k', 0xC3, 0xA4, 'i', 'm', 'a', 't', 'a' };
static const symbol s_11_65[6] = { 'k', 0xC3, 0xA4, 'i', 'm', 'e' };
static const symbol s_11_66[5] = { 'k', 0xC3, 0xA4, 'i', 'n' };
static const symbol s_11_67[5] = { 'k', 0xC3, 0xA4, 'i', 's' };
static const symbol s_11_68[6] = { 'k', 0xC3, 0xA4, 'i', 't', 'e' };
static const symbol s_11_69[7] = { 'k', 0xC3, 0xA4, 'i', 'v', 'a', 'd' };
static const symbol s_11_70[4] = { 'l', 'a', 'o', 'b' };
static const symbol s_11_71[4] = { 'l', 'a', 'o', 'd' };
static const symbol s_11_72[5] = { 'l', 'a', 'o', 'k', 's' };
static const symbol s_11_73[7] = { 'l', 'a', 'o', 'k', 's', 'i', 'd' };
static const symbol s_11_74[8] = { 'l', 'a', 'o', 'k', 's', 'i', 'm', 'e' };
static const symbol s_11_75[7] = { 'l', 'a', 'o', 'k', 's', 'i', 'n' };
static const symbol s_11_76[8] = { 'l', 'a', 'o', 'k', 's', 'i', 't', 'e' };
static const symbol s_11_77[5] = { 'l', 'a', 'o', 'm', 'e' };
static const symbol s_11_78[4] = { 'l', 'a', 'o', 'n' };
static const symbol s_11_79[5] = { 'l', 'a', 'o', 't', 'e' };
static const symbol s_11_80[6] = { 'l', 'a', 'o', 'v', 'a', 'd' };
static const symbol s_11_81[4] = { 'l', 'o', 'e', 'b' };
static const symbol s_11_82[4] = { 'l', 'o', 'e', 'd' };
static const symbol s_11_83[5] = { 'l', 'o', 'e', 'k', 's' };
static const symbol s_11_84[7] = { 'l', 'o', 'e', 'k', 's', 'i', 'd' };
static const symbol s_11_85[8] = { 'l', 'o', 'e', 'k', 's', 'i', 'm', 'e' };
static const symbol s_11_86[7] = { 'l', 'o', 'e', 'k', 's', 'i', 'n' };
static const symbol s_11_87[8] = { 'l', 'o', 'e', 'k', 's', 'i', 't', 'e' };
static const symbol s_11_88[5] = { 'l', 'o', 'e', 'm', 'e' };
static const symbol s_11_89[4] = { 'l', 'o', 'e', 'n' };
static const symbol s_11_90[5] = { 'l', 'o', 'e', 't', 'e' };
static const symbol s_11_91[6] = { 'l', 'o', 'e', 'v', 'a', 'd' };
static const symbol s_11_92[4] = { 'l', 'o', 'o', 'b' };
static const symbol s_11_93[4] = { 'l', 'o', 'o', 'd' };
static const symbol s_11_94[5] = { 'l', 'o', 'o', 'd', 'i' };
static const symbol s_11_95[5] = { 'l', 'o', 'o', 'k', 's' };
static const symbol s_11_96[7] = { 'l', 'o', 'o', 'k', 's', 'i', 'd' };
static const symbol s_11_97[8] = { 'l', 'o', 'o', 'k', 's', 'i', 'm', 'e' };
static const symbol s_11_98[7] = { 'l', 'o', 'o', 'k', 's', 'i', 'n' };
static const symbol s_11_99[8] = { 'l', 'o', 'o', 'k', 's', 'i', 't', 'e' };
static const symbol s_11_100[5] = { 'l', 'o', 'o', 'm', 'a' };
static const symbol s_11_101[7] = { 'l', 'o', 'o', 'm', 'a', 't', 'a' };
static const symbol s_11_102[5] = { 'l', 'o', 'o', 'm', 'e' };
static const symbol s_11_103[4] = { 'l', 'o', 'o', 'n' };
static const symbol s_11_104[5] = { 'l', 'o', 'o', 't', 'e' };
static const symbol s_11_105[6] = { 'l', 'o', 'o', 'v', 'a', 'd' };
static const symbol s_11_106[4] = { 'l', 'u', 'u', 'a' };
static const symbol s_11_107[7] = { 'l', 'u', 'u', 'a', 'k', 's', 'e' };
static const symbol s_11_108[4] = { 'l', 0xC3, 0xB5, 'i' };
static const symbol s_11_109[5] = { 'l', 0xC3, 0xB5, 'i', 'd' };
static const symbol s_11_110[6] = { 'l', 0xC3, 0xB5, 'i', 'm', 'e' };
static const symbol s_11_111[5] = { 'l', 0xC3, 0xB5, 'i', 'n' };
static const symbol s_11_112[6] = { 'l', 0xC3, 0xB5, 'i', 't', 'e' };
static const symbol s_11_113[6] = { 'l', 0xC3, 0xB6, 0xC3, 0xB6, 'b' };
static const symbol s_11_114[6] = { 'l', 0xC3, 0xB6, 0xC3, 0xB6, 'd' };
static const symbol s_11_115[10] = { 'l', 0xC3, 0xB6, 0xC3, 0xB6, 'd', 'a', 'k', 's', 'e' };
static const symbol s_11_116[7] = { 'l', 0xC3, 0xB6, 0xC3, 0xB6, 'd', 'i' };
static const symbol s_11_117[7] = { 'l', 0xC3, 0xB6, 0xC3, 0xB6, 'k', 's' };
static const symbol s_11_118[9] = { 'l', 0xC3, 0xB6, 0xC3, 0xB6, 'k', 's', 'i', 'd' };
static const symbol s_11_119[10] = { 'l', 0xC3, 0xB6, 0xC3, 0xB6, 'k', 's', 'i', 'm', 'e' };
static const symbol s_11_120[9] = { 'l', 0xC3, 0xB6, 0xC3, 0xB6, 'k', 's', 'i', 'n' };
static const symbol s_11_121[10] = { 'l', 0xC3, 0xB6, 0xC3, 0xB6, 'k', 's', 'i', 't', 'e' };
static const symbol s_11_122[7] = { 'l', 0xC3, 0xB6, 0xC3, 0xB6, 'm', 'a' };
static const symbol s_11_123[9] = { 'l', 0xC3, 0xB6, 0xC3, 0xB6, 'm', 'a', 't', 'a' };
static const symbol s_11_124[7] = { 'l', 0xC3, 0xB6, 0xC3, 0xB6, 'm', 'e' };
static const symbol s_11_125[6] = { 'l', 0xC3, 0xB6, 0xC3, 0xB6, 'n' };
static const symbol s_11_126[7] = { 'l', 0xC3, 0xB6, 0xC3, 0xB6, 't', 'e' };
static const symbol s_11_127[8] = { 'l', 0xC3, 0xB6, 0xC3, 0xB6, 'v', 'a', 'd' };
static const symbol s_11_128[6] = { 'l', 0xC3, 0xBC, 0xC3, 0xBC, 'a' };
static const symbol s_11_129[9] = { 'l', 0xC3, 0xBC, 0xC3, 0xBC, 'a', 'k', 's', 'e' };
static const symbol s_11_130[6] = { 'm', 0xC3, 0xBC, 0xC3, 0xBC, 'a' };
static const symbol s_11_131[9] = { 'm', 0xC3, 0xBC, 0xC3, 0xBC, 'a', 'k', 's', 'e' };
static const symbol s_11_132[6] = { 'm', 0xC3, 0xBC, 0xC3, 0xBC, 'b' };
static const symbol s_11_133[6] = { 'm', 0xC3, 0xBC, 0xC3, 0xBC, 'd' };
static const symbol s_11_134[7] = { 'm', 0xC3, 0xBC, 0xC3, 0xBC, 'd', 'i' };
static const symbol s_11_135[7] = { 'm', 0xC3, 0xBC, 0xC3, 0xBC, 'k', 's' };
static const symbol s_11_136[9] = { 'm', 0xC3, 0xBC, 0xC3, 0xBC, 'k', 's', 'i', 'd' };
static const symbol s_11_137[10] = { 'm', 0xC3, 0xBC, 0xC3, 0xBC, 'k', 's', 'i', 'm', 'e' };
static const symbol s_11_138[9] = { 'm', 0xC3, 0xBC, 0xC3, 0xBC, 'k', 's', 'i', 'n' };
static const symbol s_11_139[10] = { 'm', 0xC3, 0xBC, 0xC3, 0xBC, 'k', 's', 'i', 't', 'e' };
static const symbol s_11_140[7] = { 'm', 0xC3, 0xBC, 0xC3, 0xBC, 'm', 'a' };
static const symbol s_11_141[9] = { 'm', 0xC3, 0xBC, 0xC3, 0xBC, 'm', 'a', 't', 'a' };
static const symbol s_11_142[7] = { 'm', 0xC3, 0xBC, 0xC3, 0xBC, 'm', 'e' };
static const symbol s_11_143[6] = { 'm', 0xC3, 0xBC, 0xC3, 0xBC, 'n' };
static const symbol s_11_144[6] = { 'm', 0xC3, 0xBC, 0xC3, 0xBC, 's' };
static const symbol s_11_145[7] = { 'm', 0xC3, 0xBC, 0xC3, 0xBC, 't', 'e' };
static const symbol s_11_146[8] = { 'm', 0xC3, 0xBC, 0xC3, 0xBC, 'v', 'a', 'd' };
static const symbol s_11_147[5] = { 'n', 0xC3, 0xA4, 'e', 'b' };
static const symbol s_11_148[5] = { 'n', 0xC3, 0xA4, 'e', 'd' };
static const symbol s_11_149[6] = { 'n', 0xC3, 0xA4, 'e', 'k', 's' };
static const symbol s_11_150[8] = { 'n', 0xC3, 0xA4, 'e', 'k', 's', 'i', 'd' };
static const symbol s_11_151[9] = { 'n', 0xC3, 0xA4, 'e', 'k', 's', 'i', 'm', 'e' };
static const symbol s_11_152[8] = { 'n', 0xC3, 0xA4, 'e', 'k', 's', 'i', 'n' };
static const symbol s_11_153[9] = { 'n', 0xC3, 0xA4, 'e', 'k', 's', 'i', 't', 'e' };
static const symbol s_11_154[6] = { 'n', 0xC3, 0xA4, 'e', 'm', 'e' };
static const symbol s_11_155[5] = { 'n', 0xC3, 0xA4, 'e', 'n' };
static const symbol s_11_156[6] = { 'n', 0xC3, 0xA4, 'e', 't', 'e' };
static const symbol s_11_157[7] = { 'n', 0xC3, 0xA4, 'e', 'v', 'a', 'd' };
static const symbol s_11_158[7] = { 'n', 0xC3, 0xA4, 'g', 'e', 'm', 'a' };
static const symbol s_11_159[9] = { 'n', 0xC3, 0xA4, 'g', 'e', 'm', 'a', 't', 'a' };
static const symbol s_11_160[5] = { 'n', 0xC3, 0xA4, 'h', 'a' };
static const symbol s_11_161[8] = { 'n', 0xC3, 0xA4, 'h', 'a', 'k', 's', 'e' };
static const symbol s_11_162[6] = { 'n', 0xC3, 0xA4, 'h', 't', 'i' };
static const symbol s_11_163[5] = { 'p', 0xC3, 0xB5, 'e', 'b' };
static const symbol s_11_164[5] = { 'p', 0xC3, 0xB5, 'e', 'd' };
static const symbol s_11_165[6] = { 'p', 0xC3, 0xB5, 'e', 'k', 's' };
static const symbol s_11_166[8] = { 'p', 0xC3, 0xB5, 'e', 'k', 's', 'i', 'd' };
static const symbol s_11_167[9] = { 'p', 0xC3, 0xB5, 'e', 'k', 's', 'i', 'm', 'e' };
static const symbol s_11_168[8] = { 'p', 0xC3, 0xB5, 'e', 'k', 's', 'i', 'n' };
static const symbol s_11_169[9] = { 'p', 0xC3, 0xB5, 'e', 'k', 's', 'i', 't', 'e' };
static const symbol s_11_170[6] = { 'p', 0xC3, 0xB5, 'e', 'm', 'e' };
static const symbol s_11_171[5] = { 'p', 0xC3, 0xB5, 'e', 'n' };
static const symbol s_11_172[6] = { 'p', 0xC3, 0xB5, 'e', 't', 'e' };
static const symbol s_11_173[7] = { 'p', 0xC3, 0xB5, 'e', 'v', 'a', 'd' };
static const symbol s_11_174[4] = { 's', 'a', 'a', 'b' };
static const symbol s_11_175[4] = { 's', 'a', 'a', 'd' };
static const symbol s_11_176[5] = { 's', 'a', 'a', 'd', 'a' };
static const symbol s_11_177[8] = { 's', 'a', 'a', 'd', 'a', 'k', 's', 'e' };
static const symbol s_11_178[5] = { 's', 'a', 'a', 'd', 'i' };
static const symbol s_11_179[5] = { 's', 'a', 'a', 'k', 's' };
static const symbol s_11_180[7] = { 's', 'a', 'a', 'k', 's', 'i', 'd' };
static const symbol s_11_181[8] = { 's', 'a', 'a', 'k', 's', 'i', 'm', 'e' };
static const symbol s_11_182[7] = { 's', 'a', 'a', 'k', 's', 'i', 'n' };
static const symbol s_11_183[8] = { 's', 'a', 'a', 'k', 's', 'i', 't', 'e' };
static const symbol s_11_184[5] = { 's', 'a', 'a', 'm', 'a' };
static const symbol s_11_185[7] = { 's', 'a', 'a', 'm', 'a', 't', 'a' };
static const symbol s_11_186[5] = { 's', 'a', 'a', 'm', 'e' };
static const symbol s_11_187[4] = { 's', 'a', 'a', 'n' };
static const symbol s_11_188[5] = { 's', 'a', 'a', 't', 'e' };
static const symbol s_11_189[6] = { 's', 'a', 'a', 'v', 'a', 'd' };
static const symbol s_11_190[3] = { 's', 'a', 'i' };
static const symbol s_11_191[4] = { 's', 'a', 'i', 'd' };
static const symbol s_11_192[5] = { 's', 'a', 'i', 'm', 'e' };
static const symbol s_11_193[4] = { 's', 'a', 'i', 'n' };
static const symbol s_11_194[5] = { 's', 'a', 'i', 't', 'e' };
static const symbol s_11_195[4] = { 's', 0xC3, 0xB5, 'i' };
static const symbol s_11_196[5] = { 's', 0xC3, 0xB5, 'i', 'd' };
static const symbol s_11_197[6] = { 's', 0xC3, 0xB5, 'i', 'm', 'e' };
static const symbol s_11_198[5] = { 's', 0xC3, 0xB5, 'i', 'n' };
static const symbol s_11_199[6] = { 's', 0xC3, 0xB5, 'i', 't', 'e' };
static const symbol s_11_200[6] = { 's', 0xC3, 0xB6, 0xC3, 0xB6, 'b' };
static const symbol s_11_201[6] = { 's', 0xC3, 0xB6, 0xC3, 0xB6, 'd' };
static const symbol s_11_202[10] = { 's', 0xC3, 0xB6, 0xC3, 0xB6, 'd', 'a', 'k', 's', 'e' };
static const symbol s_11_203[7] = { 's', 0xC3, 0xB6, 0xC3, 0xB6, 'd', 'i' };
static const symbol s_11_204[7] = { 's', 0xC3, 0xB6, 0xC3, 0xB6, 'k', 's' };
static const symbol s_11_205[9] = { 's', 0xC3, 0xB6, 0xC3, 0xB6, 'k', 's', 'i', 'd' };
static const symbol s_11_206[10] = { 's', 0xC3, 0xB6, 0xC3, 0xB6, 'k', 's', 'i', 'm', 'e' };
static const symbol s_11_207[9] = { 's', 0xC3, 0xB6, 0xC3, 0xB6, 'k', 's', 'i', 'n' };
static const symbol s_11_208[10] = { 's', 0xC3, 0xB6, 0xC3, 0xB6, 'k', 's', 'i', 't', 'e' };
static const symbol s_11_209[7] = { 's', 0xC3, 0xB6, 0xC3, 0xB6, 'm', 'a' };
static const symbol s_11_210[9] = { 's', 0xC3, 0xB6, 0xC3, 0xB6, 'm', 'a', 't', 'a' };
static const symbol s_11_211[7] = { 's', 0xC3, 0xB6, 0xC3, 0xB6, 'm', 'e' };
static const symbol s_11_212[6] = { 's', 0xC3, 0xB6, 0xC3, 0xB6, 'n' };
static const symbol s_11_213[7] = { 's', 0xC3, 0xB6, 0xC3, 0xB6, 't', 'e' };
static const symbol s_11_214[8] = { 's', 0xC3, 0xB6, 0xC3, 0xB6, 'v', 'a', 'd' };
static const symbol s_11_215[6] = { 's', 0xC3, 0xBC, 0xC3, 0xBC, 'a' };
static const symbol s_11_216[9] = { 's', 0xC3, 0xBC, 0xC3, 0xBC, 'a', 'k', 's', 'e' };
static const symbol s_11_217[4] = { 't', 'e', 'e', 'b' };
static const symbol s_11_218[4] = { 't', 'e', 'e', 'd' };
static const symbol s_11_219[5] = { 't', 'e', 'e', 'k', 's' };
static const symbol s_11_220[7] = { 't', 'e', 'e', 'k', 's', 'i', 'd' };
static const symbol s_11_221[8] = { 't', 'e', 'e', 'k', 's', 'i', 'm', 'e' };
static const symbol s_11_222[7] = { 't', 'e', 'e', 'k', 's', 'i', 'n' };
static const symbol s_11_223[8] = { 't', 'e', 'e', 'k', 's', 'i', 't', 'e' };
static const symbol s_11_224[5] = { 't', 'e', 'e', 'm', 'e' };
static const symbol s_11_225[4] = { 't', 'e', 'e', 'n' };
static const symbol s_11_226[5] = { 't', 'e', 'e', 't', 'e' };
static const symbol s_11_227[6] = { 't', 'e', 'e', 'v', 'a', 'd' };
static const symbol s_11_228[6] = { 't', 'e', 'g', 'e', 'm', 'a' };
static const symbol s_11_229[8] = { 't', 'e', 'g', 'e', 'm', 'a', 't', 'a' };
static const symbol s_11_230[4] = { 't', 'e', 'h', 'a' };
static const symbol s_11_231[7] = { 't', 'e', 'h', 'a', 'k', 's', 'e' };
static const symbol s_11_232[5] = { 't', 'e', 'h', 't', 'i' };
static const symbol s_11_233[4] = { 't', 'o', 'o', 'b' };
static const symbol s_11_234[4] = { 't', 'o', 'o', 'd' };
static const symbol s_11_235[5] = { 't', 'o', 'o', 'd', 'i' };
static const symbol s_11_236[5] = { 't', 'o', 'o', 'k', 's' };
static const symbol s_11_237[7] = { 't', 'o', 'o', 'k', 's', 'i', 'd' };
static const symbol s_11_238[8] = { 't', 'o', 'o', 'k', 's', 'i', 'm', 'e' };
static const symbol s_11_239[7] = { 't', 'o', 'o', 'k', 's', 'i', 'n' };
static const symbol s_11_240[8] = { 't', 'o', 'o', 'k', 's', 'i', 't', 'e' };
static const symbol s_11_241[5] = { 't', 'o', 'o', 'm', 'a' };
static const symbol s_11_242[7] = { 't', 'o', 'o', 'm', 'a', 't', 'a' };
static const symbol s_11_243[5] = { 't', 'o', 'o', 'm', 'e' };
static const symbol s_11_244[4] = { 't', 'o', 'o', 'n' };
static const symbol s_11_245[5] = { 't', 'o', 'o', 't', 'e' };
static const symbol s_11_246[6] = { 't', 'o', 'o', 'v', 'a', 'd' };
static const symbol s_11_247[4] = { 't', 'u', 'u', 'a' };
static const symbol s_11_248[7] = { 't', 'u', 'u', 'a', 'k', 's', 'e' };
static const symbol s_11_249[4] = { 't', 0xC3, 0xB5, 'i' };
static const symbol s_11_250[5] = { 't', 0xC3, 0xB5, 'i', 'd' };
static const symbol s_11_251[6] = { 't', 0xC3, 0xB5, 'i', 'm', 'e' };
static const symbol s_11_252[5] = { 't', 0xC3, 0xB5, 'i', 'n' };
static const symbol s_11_253[6] = { 't', 0xC3, 0xB5, 'i', 't', 'e' };
static const symbol s_11_254[4] = { 'v', 'i', 'i', 'a' };
static const symbol s_11_255[7] = { 'v', 'i', 'i', 'a', 'k', 's', 'e' };
static const symbol s_11_256[4] = { 'v', 'i', 'i', 'b' };
static const symbol s_11_257[4] = { 'v', 'i', 'i', 'd' };
static const symbol s_11_258[5] = { 'v', 'i', 'i', 'd', 'i' };
static const symbol s_11_259[5] = { 'v', 'i', 'i', 'k', 's' };
static const symbol s_11_260[7] = { 'v', 'i', 'i', 'k', 's', 'i', 'd' };
static const symbol s_11_261[8] = { 'v', 'i', 'i', 'k', 's', 'i', 'm', 'e' };
static const symbol s_11_262[7] = { 'v', 'i', 'i', 'k', 's', 'i', 'n' };
static const symbol s_11_263[8] = { 'v', 'i', 'i', 'k', 's', 'i', 't', 'e' };
static const symbol s_11_264[5] = { 'v', 'i', 'i', 'm', 'a' };
static const symbol s_11_265[7] = { 'v', 'i', 'i', 'm', 'a', 't', 'a' };
static const symbol s_11_266[5] = { 'v', 'i', 'i', 'm', 'e' };
static const symbol s_11_267[4] = { 'v', 'i', 'i', 'n' };
static const symbol s_11_268[7] = { 'v', 'i', 'i', 's', 'i', 'm', 'e' };
static const symbol s_11_269[6] = { 'v', 'i', 'i', 's', 'i', 'n' };
static const symbol s_11_270[7] = { 'v', 'i', 'i', 's', 'i', 't', 'e' };
static const symbol s_11_271[5] = { 'v', 'i', 'i', 't', 'e' };
static const symbol s_11_272[6] = { 'v', 'i', 'i', 'v', 'a', 'd' };
static const symbol s_11_273[5] = { 'v', 0xC3, 0xB5, 'i', 'b' };
static const symbol s_11_274[5] = { 'v', 0xC3, 0xB5, 'i', 'd' };
static const symbol s_11_275[6] = { 'v', 0xC3, 0xB5, 'i', 'd', 'a' };
static const symbol s_11_276[9] = { 'v', 0xC3, 0xB5, 'i', 'd', 'a', 'k', 's', 'e' };
static const symbol s_11_277[6] = { 'v', 0xC3, 0xB5, 'i', 'd', 'i' };
static const symbol s_11_278[6] = { 'v', 0xC3, 0xB5, 'i', 'k', 's' };
static const symbol s_11_279[8] = { 'v', 0xC3, 0xB5, 'i', 'k', 's', 'i', 'd' };
static const symbol s_11_280[9] = { 'v', 0xC3, 0xB5, 'i', 'k', 's', 'i', 'm', 'e' };
static const symbol s_11_281[8] = { 'v', 0xC3, 0xB5, 'i', 'k', 's', 'i', 'n' };
static const symbol s_11_282[9] = { 'v', 0xC3, 0xB5, 'i', 'k', 's', 'i', 't', 'e' };
static const symbol s_11_283[6] = { 'v', 0xC3, 0xB5, 'i', 'm', 'a' };
static const symbol s_11_284[8] = { 'v', 0xC3, 0xB5, 'i', 'm', 'a', 't', 'a' };
static const symbol s_11_285[6] = { 'v', 0xC3, 0xB5, 'i', 'm', 'e' };
static const symbol s_11_286[5] = { 'v', 0xC3, 0xB5, 'i', 'n' };
static const symbol s_11_287[5] = { 'v', 0xC3, 0xB5, 'i', 's' };
static const symbol s_11_288[6] = { 'v', 0xC3, 0xB5, 'i', 't', 'e' };
static const symbol s_11_289[7] = { 'v', 0xC3, 0xB5, 'i', 'v', 'a', 'd' };
static const struct among a_11[290] =
{
{ 4, s_11_0, -1, 1, 0},
{ 4, s_11_1, -1, 1, 0},
{ 8, s_11_2, 1, 1, 0},
{ 5, s_11_3, -1, 1, 0},
{ 7, s_11_4, 3, 1, 0},
{ 5, s_11_5, -1, 1, 0},
{ 4, s_11_6, -1, 1, 0},
{ 5, s_11_7, -1, 1, 0},
{ 6, s_11_8, -1, 1, 0},
{ 4, s_11_9, -1, 1, 0},
{ 7, s_11_10, 9, 1, 0},
{ 4, s_11_11, -1, 12, 0},
{ 5, s_11_12, 11, 12, 0},
{ 6, s_11_13, 11, 12, 0},
{ 5, s_11_14, 11, 12, 0},
{ 6, s_11_15, 11, 12, 0},
{ 6, s_11_16, -1, 12, 0},
{ 6, s_11_17, -1, 12, 0},
{ 7, s_11_18, 17, 12, 0},
{ 10, s_11_19, 18, 12, 0},
{ 7, s_11_20, 17, 12, 0},
{ 7, s_11_21, -1, 12, 0},
{ 9, s_11_22, 21, 12, 0},
{ 10, s_11_23, 21, 12, 0},
{ 9, s_11_24, 21, 12, 0},
{ 10, s_11_25, 21, 12, 0},
{ 7, s_11_26, -1, 12, 0},
{ 9, s_11_27, 26, 12, 0},
{ 7, s_11_28, -1, 12, 0},
{ 6, s_11_29, -1, 12, 0},
{ 7, s_11_30, -1, 12, 0},
{ 8, s_11_31, -1, 12, 0},
{ 4, s_11_32, -1, 1, 0},
{ 5, s_11_33, 32, 1, 0},
{ 6, s_11_34, 32, 1, 0},
{ 5, s_11_35, 32, 1, 0},
{ 6, s_11_36, 32, 1, 0},
{ 4, s_11_37, -1, 4, 0},
{ 4, s_11_38, -1, 4, 0},
{ 8, s_11_39, 38, 4, 0},
{ 5, s_11_40, -1, 4, 0},
{ 7, s_11_41, 40, 4, 0},
{ 8, s_11_42, 40, 4, 0},
{ 7, s_11_43, 40, 4, 0},
{ 8, s_11_44, 40, 4, 0},
{ 5, s_11_45, -1, 4, 0},
{ 7, s_11_46, 45, 4, 0},
{ 5, s_11_47, -1, 4, 0},
{ 4, s_11_48, -1, 4, 0},
{ 4, s_11_49, -1, 4, 0},
{ 5, s_11_50, -1, 4, 0},
{ 5, s_11_51, -1, 4, 0},
{ 6, s_11_52, -1, 4, 0},
{ 5, s_11_53, -1, 8, 0},
{ 8, s_11_54, 53, 8, 0},
{ 5, s_11_55, -1, 8, 0},
{ 5, s_11_56, -1, 8, 0},
{ 6, s_11_57, 56, 8, 0},
{ 6, s_11_58, -1, 8, 0},
{ 8, s_11_59, 58, 8, 0},
{ 9, s_11_60, 58, 8, 0},
{ 8, s_11_61, 58, 8, 0},
{ 9, s_11_62, 58, 8, 0},
{ 6, s_11_63, -1, 8, 0},
{ 8, s_11_64, 63, 8, 0},
{ 6, s_11_65, -1, 8, 0},
{ 5, s_11_66, -1, 8, 0},
{ 5, s_11_67, -1, 8, 0},
{ 6, s_11_68, -1, 8, 0},
{ 7, s_11_69, -1, 8, 0},
{ 4, s_11_70, -1, 16, 0},
{ 4, s_11_71, -1, 16, 0},
{ 5, s_11_72, -1, 16, 0},
{ 7, s_11_73, 72, 16, 0},
{ 8, s_11_74, 72, 16, 0},
{ 7, s_11_75, 72, 16, 0},
{ 8, s_11_76, 72, 16, 0},
{ 5, s_11_77, -1, 16, 0},
{ 4, s_11_78, -1, 16, 0},
{ 5, s_11_79, -1, 16, 0},
{ 6, s_11_80, -1, 16, 0},
{ 4, s_11_81, -1, 14, 0},
{ 4, s_11_82, -1, 14, 0},
{ 5, s_11_83, -1, 14, 0},
{ 7, s_11_84, 83, 14, 0},
{ 8, s_11_85, 83, 14, 0},
{ 7, s_11_86, 83, 14, 0},
{ 8, s_11_87, 83, 14, 0},
{ 5, s_11_88, -1, 14, 0},
{ 4, s_11_89, -1, 14, 0},
{ 5, s_11_90, -1, 14, 0},
{ 6, s_11_91, -1, 14, 0},
{ 4, s_11_92, -1, 7, 0},
{ 4, s_11_93, -1, 7, 0},
{ 5, s_11_94, 93, 7, 0},
{ 5, s_11_95, -1, 7, 0},
{ 7, s_11_96, 95, 7, 0},
{ 8, s_11_97, 95, 7, 0},
{ 7, s_11_98, 95, 7, 0},
{ 8, s_11_99, 95, 7, 0},
{ 5, s_11_100, -1, 7, 0},
{ 7, s_11_101, 100, 7, 0},
{ 5, s_11_102, -1, 7, 0},
{ 4, s_11_103, -1, 7, 0},
{ 5, s_11_104, -1, 7, 0},
{ 6, s_11_105, -1, 7, 0},
{ 4, s_11_106, -1, 7, 0},
{ 7, s_11_107, 106, 7, 0},
{ 4, s_11_108, -1, 6, 0},
{ 5, s_11_109, 108, 6, 0},
{ 6, s_11_110, 108, 6, 0},
{ 5, s_11_111, 108, 6, 0},
{ 6, s_11_112, 108, 6, 0},
{ 6, s_11_113, -1, 5, 0},
{ 6, s_11_114, -1, 5, 0},
{ 10, s_11_115, 114, 5, 0},
{ 7, s_11_116, 114, 5, 0},
{ 7, s_11_117, -1, 5, 0},
{ 9, s_11_118, 117, 5, 0},
{ 10, s_11_119, 117, 5, 0},
{ 9, s_11_120, 117, 5, 0},
{ 10, s_11_121, 117, 5, 0},
{ 7, s_11_122, -1, 5, 0},
{ 9, s_11_123, 122, 5, 0},
{ 7, s_11_124, -1, 5, 0},
{ 6, s_11_125, -1, 5, 0},
{ 7, s_11_126, -1, 5, 0},
{ 8, s_11_127, -1, 5, 0},
{ 6, s_11_128, -1, 5, 0},
{ 9, s_11_129, 128, 5, 0},
{ 6, s_11_130, -1, 13, 0},
{ 9, s_11_131, 130, 13, 0},
{ 6, s_11_132, -1, 13, 0},
{ 6, s_11_133, -1, 13, 0},
{ 7, s_11_134, 133, 13, 0},
{ 7, s_11_135, -1, 13, 0},
{ 9, s_11_136, 135, 13, 0},
{ 10, s_11_137, 135, 13, 0},
{ 9, s_11_138, 135, 13, 0},
{ 10, s_11_139, 135, 13, 0},
{ 7, s_11_140, -1, 13, 0},
{ 9, s_11_141, 140, 13, 0},
{ 7, s_11_142, -1, 13, 0},
{ 6, s_11_143, -1, 13, 0},
{ 6, s_11_144, -1, 13, 0},
{ 7, s_11_145, -1, 13, 0},
{ 8, s_11_146, -1, 13, 0},
{ 5, s_11_147, -1, 18, 0},
{ 5, s_11_148, -1, 18, 0},
{ 6, s_11_149, -1, 18, 0},
{ 8, s_11_150, 149, 18, 0},
{ 9, s_11_151, 149, 18, 0},
{ 8, s_11_152, 149, 18, 0},
{ 9, s_11_153, 149, 18, 0},
{ 6, s_11_154, -1, 18, 0},
{ 5, s_11_155, -1, 18, 0},
{ 6, s_11_156, -1, 18, 0},
{ 7, s_11_157, -1, 18, 0},
{ 7, s_11_158, -1, 18, 0},
{ 9, s_11_159, 158, 18, 0},
{ 5, s_11_160, -1, 18, 0},
{ 8, s_11_161, 160, 18, 0},
{ 6, s_11_162, -1, 18, 0},
{ 5, s_11_163, -1, 15, 0},
{ 5, s_11_164, -1, 15, 0},
{ 6, s_11_165, -1, 15, 0},
{ 8, s_11_166, 165, 15, 0},
{ 9, s_11_167, 165, 15, 0},
{ 8, s_11_168, 165, 15, 0},
{ 9, s_11_169, 165, 15, 0},
{ 6, s_11_170, -1, 15, 0},
{ 5, s_11_171, -1, 15, 0},
{ 6, s_11_172, -1, 15, 0},
{ 7, s_11_173, -1, 15, 0},
{ 4, s_11_174, -1, 2, 0},
{ 4, s_11_175, -1, 2, 0},
{ 5, s_11_176, 175, 2, 0},
{ 8, s_11_177, 176, 2, 0},
{ 5, s_11_178, 175, 2, 0},
{ 5, s_11_179, -1, 2, 0},
{ 7, s_11_180, 179, 2, 0},
{ 8, s_11_181, 179, 2, 0},
{ 7, s_11_182, 179, 2, 0},
{ 8, s_11_183, 179, 2, 0},
{ 5, s_11_184, -1, 2, 0},
{ 7, s_11_185, 184, 2, 0},
{ 5, s_11_186, -1, 2, 0},
{ 4, s_11_187, -1, 2, 0},
{ 5, s_11_188, -1, 2, 0},
{ 6, s_11_189, -1, 2, 0},
{ 3, s_11_190, -1, 2, 0},
{ 4, s_11_191, 190, 2, 0},
{ 5, s_11_192, 190, 2, 0},
{ 4, s_11_193, 190, 2, 0},
{ 5, s_11_194, 190, 2, 0},
{ 4, s_11_195, -1, 9, 0},
{ 5, s_11_196, 195, 9, 0},
{ 6, s_11_197, 195, 9, 0},
{ 5, s_11_198, 195, 9, 0},
{ 6, s_11_199, 195, 9, 0},
{ 6, s_11_200, -1, 9, 0},
{ 6, s_11_201, -1, 9, 0},
{ 10, s_11_202, 201, 9, 0},
{ 7, s_11_203, 201, 9, 0},
{ 7, s_11_204, -1, 9, 0},
{ 9, s_11_205, 204, 9, 0},
{ 10, s_11_206, 204, 9, 0},
{ 9, s_11_207, 204, 9, 0},
{ 10, s_11_208, 204, 9, 0},
{ 7, s_11_209, -1, 9, 0},
{ 9, s_11_210, 209, 9, 0},
{ 7, s_11_211, -1, 9, 0},
{ 6, s_11_212, -1, 9, 0},
{ 7, s_11_213, -1, 9, 0},
{ 8, s_11_214, -1, 9, 0},
{ 6, s_11_215, -1, 9, 0},
{ 9, s_11_216, 215, 9, 0},
{ 4, s_11_217, -1, 17, 0},
{ 4, s_11_218, -1, 17, 0},
{ 5, s_11_219, -1, 17, 0},
{ 7, s_11_220, 219, 17, 0},
{ 8, s_11_221, 219, 17, 0},
{ 7, s_11_222, 219, 17, 0},
{ 8, s_11_223, 219, 17, 0},
{ 5, s_11_224, -1, 17, 0},
{ 4, s_11_225, -1, 17, 0},
{ 5, s_11_226, -1, 17, 0},
{ 6, s_11_227, -1, 17, 0},
{ 6, s_11_228, -1, 17, 0},
{ 8, s_11_229, 228, 17, 0},
{ 4, s_11_230, -1, 17, 0},
{ 7, s_11_231, 230, 17, 0},
{ 5, s_11_232, -1, 17, 0},
{ 4, s_11_233, -1, 10, 0},
{ 4, s_11_234, -1, 10, 0},
{ 5, s_11_235, 234, 10, 0},
{ 5, s_11_236, -1, 10, 0},
{ 7, s_11_237, 236, 10, 0},
{ 8, s_11_238, 236, 10, 0},
{ 7, s_11_239, 236, 10, 0},
{ 8, s_11_240, 236, 10, 0},
{ 5, s_11_241, -1, 10, 0},
{ 7, s_11_242, 241, 10, 0},
{ 5, s_11_243, -1, 10, 0},
{ 4, s_11_244, -1, 10, 0},
{ 5, s_11_245, -1, 10, 0},
{ 6, s_11_246, -1, 10, 0},
{ 4, s_11_247, -1, 10, 0},
{ 7, s_11_248, 247, 10, 0},
{ 4, s_11_249, -1, 10, 0},
{ 5, s_11_250, 249, 10, 0},
{ 6, s_11_251, 249, 10, 0},
{ 5, s_11_252, 249, 10, 0},
{ 6, s_11_253, 249, 10, 0},
{ 4, s_11_254, -1, 3, 0},
{ 7, s_11_255, 254, 3, 0},
{ 4, s_11_256, -1, 3, 0},
{ 4, s_11_257, -1, 3, 0},
{ 5, s_11_258, 257, 3, 0},
{ 5, s_11_259, -1, 3, 0},
{ 7, s_11_260, 259, 3, 0},
{ 8, s_11_261, 259, 3, 0},
{ 7, s_11_262, 259, 3, 0},
{ 8, s_11_263, 259, 3, 0},
{ 5, s_11_264, -1, 3, 0},
{ 7, s_11_265, 264, 3, 0},
{ 5, s_11_266, -1, 3, 0},
{ 4, s_11_267, -1, 3, 0},
{ 7, s_11_268, -1, 3, 0},
{ 6, s_11_269, -1, 3, 0},
{ 7, s_11_270, -1, 3, 0},
{ 5, s_11_271, -1, 3, 0},
{ 6, s_11_272, -1, 3, 0},
{ 5, s_11_273, -1, 11, 0},
{ 5, s_11_274, -1, 11, 0},
{ 6, s_11_275, 274, 11, 0},
{ 9, s_11_276, 275, 11, 0},
{ 6, s_11_277, 274, 11, 0},
{ 6, s_11_278, -1, 11, 0},
{ 8, s_11_279, 278, 11, 0},
{ 9, s_11_280, 278, 11, 0},
{ 8, s_11_281, 278, 11, 0},
{ 9, s_11_282, 278, 11, 0},
{ 6, s_11_283, -1, 11, 0},
{ 8, s_11_284, 283, 11, 0},
{ 6, s_11_285, -1, 11, 0},
{ 5, s_11_286, -1, 11, 0},
{ 5, s_11_287, -1, 11, 0},
{ 6, s_11_288, -1, 11, 0},
{ 7, s_11_289, -1, 11, 0}
};
static const unsigned char g_V1[] = { 17, 65, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 48, 8 };
static const unsigned char g_RV[] = { 17, 65, 16 };
static const unsigned char g_KI[] = { 117, 66, 6, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 128, 0, 0, 0, 16 };
static const unsigned char g_GI[] = { 21, 123, 243, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 48, 8 };
static const symbol s_0[] = { 'a' };
static const symbol s_1[] = { 'l', 'a', 's', 'e' };
static const symbol s_2[] = { 'm', 'i', 's', 'e' };
static const symbol s_3[] = { 'l', 'i', 's', 'e' };
static const symbol s_4[] = { 'i', 'k', 'u' };
static const symbol s_5[] = { 'e' };
static const symbol s_6[] = { 't' };
static const symbol s_7[] = { 'k' };
static const symbol s_8[] = { 'p' };
static const symbol s_9[] = { 't' };
static const symbol s_10[] = { 'j', 'o', 'o' };
static const symbol s_11[] = { 's', 'a', 'a' };
static const symbol s_12[] = { 'v', 'i', 'i', 'm', 'a' };
static const symbol s_13[] = { 'k', 'e', 'e', 's', 'i' };
static const symbol s_14[] = { 'l', 0xC3, 0xB6, 0xC3, 0xB6 };
static const symbol s_15[] = { 'l', 0xC3, 0xB5, 'i' };
static const symbol s_16[] = { 'l', 'o', 'o' };
static const symbol s_17[] = { 'k', 0xC3, 0xA4, 'i', 's', 'i' };
static const symbol s_18[] = { 's', 0xC3, 0xB6, 0xC3, 0xB6 };
static const symbol s_19[] = { 't', 'o', 'o' };
static const symbol s_20[] = { 'v', 0xC3, 0xB5, 'i', 's', 'i' };
static const symbol s_21[] = { 'j', 0xC3, 0xA4, 0xC3, 0xA4, 'm', 'a' };
static const symbol s_22[] = { 'm', 0xC3, 0xBC, 0xC3, 0xBC, 's', 'i' };
static const symbol s_23[] = { 'l', 'u', 'g', 'e' };
static const symbol s_24[] = { 'p', 0xC3, 0xB5, 'd', 'e' };
static const symbol s_25[] = { 'l', 'a', 'd', 'u' };
static const symbol s_26[] = { 't', 'e', 'g', 'i' };
static const symbol s_27[] = { 'n', 0xC3, 0xA4, 'g', 'i' };
static int r_mark_regions(struct SN_env * z) {
z->I[0] = z->l;
if (out_grouping_U(z, g_V1, 97, 252, 1) < 0) return 0;
{
int ret = in_grouping_U(z, g_V1, 97, 252, 1);
if (ret < 0) return 0;
z->c += ret;
}
z->I[0] = z->c;
return 1;
}
static int r_emphasis(struct SN_env * z) {
int among_var;
{ int mlimit1;
if (z->c < z->I[0]) return 0;
mlimit1 = z->lb; z->lb = z->I[0];
z->ket = z->c;
if (z->c - 1 <= z->lb || z->p[z->c - 1] != 105) { z->lb = mlimit1; return 0; }
among_var = find_among_b(z, a_0, 2);
if (!among_var) { z->lb = mlimit1; return 0; }
z->bra = z->c;
z->lb = mlimit1;
}
{ int m_test2 = z->l - z->c;
{ int ret = skip_b_utf8(z->p, z->c, z->lb, 4);
if (ret < 0) return 0;
z->c = ret;
}
z->c = z->l - m_test2;
}
switch (among_var) {
case 1:
{ int m3 = z->l - z->c; (void)m3;
if (in_grouping_b_U(z, g_GI, 97, 252, 0)) return 0;
z->c = z->l - m3;
{ int m4 = z->l - z->c; (void)m4;
{ int ret = r_LONGV(z);
if (ret == 0) goto lab0;
if (ret < 0) return ret;
}
return 0;
lab0:
z->c = z->l - m4;
}
}
{ int ret = slice_del(z);
if (ret < 0) return ret;
}
break;
case 2:
if (in_grouping_b_U(z, g_KI, 98, 382, 0)) return 0;
{ int ret = slice_del(z);
if (ret < 0) return ret;
}
break;
}
return 1;
}
static int r_verb(struct SN_env * z) {
int among_var;
{ int mlimit1;
if (z->c < z->I[0]) return 0;
mlimit1 = z->lb; z->lb = z->I[0];
z->ket = z->c;
if (z->c <= z->lb || z->p[z->c - 1] >> 5 != 3 || !((540726 >> (z->p[z->c - 1] & 0x1f)) & 1)) { z->lb = mlimit1; return 0; }
among_var = find_among_b(z, a_1, 21);
if (!among_var) { z->lb = mlimit1; return 0; }
z->bra = z->c;
z->lb = mlimit1;
}
switch (among_var) {
case 1:
{ int ret = slice_del(z);
if (ret < 0) return ret;
}
break;
case 2:
{ int ret = slice_from_s(z, 1, s_0);
if (ret < 0) return ret;
}
break;
case 3:
if (in_grouping_b_U(z, g_V1, 97, 252, 0)) return 0;
{ int ret = slice_del(z);
if (ret < 0) return ret;
}
break;
}
return 1;
}
static int r_LONGV(struct SN_env * z) {
if (!find_among_b(z, a_2, 9)) return 0;
return 1;
}
static int r_i_plural(struct SN_env * z) {
{ int mlimit1;
if (z->c < z->I[0]) return 0;
mlimit1 = z->lb; z->lb = z->I[0];
z->ket = z->c;
if (z->c <= z->lb || z->p[z->c - 1] != 105) { z->lb = mlimit1; return 0; }
if (!find_among_b(z, a_3, 1)) { z->lb = mlimit1; return 0; }
z->bra = z->c;
z->lb = mlimit1;
}
if (in_grouping_b_U(z, g_RV, 97, 117, 0)) return 0;
{ int ret = slice_del(z);
if (ret < 0) return ret;
}
return 1;
}
static int r_special_noun_endings(struct SN_env * z) {
int among_var;
{ int mlimit1;
if (z->c < z->I[0]) return 0;
mlimit1 = z->lb; z->lb = z->I[0];
z->ket = z->c;
if (z->c - 3 <= z->lb || z->p[z->c - 1] >> 5 != 3 || !((1049120 >> (z->p[z->c - 1] & 0x1f)) & 1)) { z->lb = mlimit1; return 0; }
among_var = find_among_b(z, a_4, 12);
if (!among_var) { z->lb = mlimit1; return 0; }
z->bra = z->c;
z->lb = mlimit1;
}
switch (among_var) {
case 1:
{ int ret = slice_from_s(z, 4, s_1);
if (ret < 0) return ret;
}
break;
case 2:
{ int ret = slice_from_s(z, 4, s_2);
if (ret < 0) return ret;
}
break;
case 3:
{ int ret = slice_from_s(z, 4, s_3);
if (ret < 0) return ret;
}
break;
}
return 1;
}
static int r_case_ending(struct SN_env * z) {
int among_var;
{ int mlimit1;
if (z->c < z->I[0]) return 0;
mlimit1 = z->lb; z->lb = z->I[0];
z->ket = z->c;
if (z->c <= z->lb || z->p[z->c - 1] >> 5 != 3 || !((1576994 >> (z->p[z->c - 1] & 0x1f)) & 1)) { z->lb = mlimit1; return 0; }
among_var = find_among_b(z, a_5, 10);
if (!among_var) { z->lb = mlimit1; return 0; }
z->bra = z->c;
z->lb = mlimit1;
}
switch (among_var) {
case 1:
{ int m2 = z->l - z->c; (void)m2;
if (in_grouping_b_U(z, g_RV, 97, 117, 0)) goto lab1;
goto lab0;
lab1:
z->c = z->l - m2;
{ int ret = r_LONGV(z);
if (ret <= 0) return ret;
}
}
lab0:
break;
case 2:
{ int m_test3 = z->l - z->c;
{ int ret = skip_b_utf8(z->p, z->c, z->lb, 4);
if (ret < 0) return 0;
z->c = ret;
}
z->c = z->l - m_test3;
}
break;
}
{ int ret = slice_del(z);
if (ret < 0) return ret;
}
return 1;
}
static int r_plural_three_first_cases(struct SN_env * z) {
int among_var;
{ int mlimit1;
if (z->c < z->I[0]) return 0;
mlimit1 = z->lb; z->lb = z->I[0];
z->ket = z->c;
if (z->c <= z->lb || (z->p[z->c - 1] != 100 && z->p[z->c - 1] != 101)) { z->lb = mlimit1; return 0; }
among_var = find_among_b(z, a_7, 7);
if (!among_var) { z->lb = mlimit1; return 0; }
z->bra = z->c;
z->lb = mlimit1;
}
switch (among_var) {
case 1:
{ int ret = slice_from_s(z, 3, s_4);
if (ret < 0) return ret;
}
break;
case 2:
{ int m2 = z->l - z->c; (void)m2;
{ int ret = r_LONGV(z);
if (ret == 0) goto lab0;
if (ret < 0) return ret;
}
return 0;
lab0:
z->c = z->l - m2;
}
{ int ret = slice_del(z);
if (ret < 0) return ret;
}
break;
case 3:
{ int m3 = z->l - z->c; (void)m3;
{ int m_test4 = z->l - z->c;
{ int ret = skip_b_utf8(z->p, z->c, z->lb, 4);
if (ret < 0) goto lab2;
z->c = ret;
}
z->c = z->l - m_test4;
}
if (z->c <= z->lb || (z->p[z->c - 1] != 115 && z->p[z->c - 1] != 116)) among_var = 2; else
among_var = find_among_b(z, a_6, 5);
switch (among_var) {
case 1:
{ int ret = slice_from_s(z, 1, s_5);
if (ret < 0) return ret;
}
break;
case 2:
{ int ret = slice_del(z);
if (ret < 0) return ret;
}
break;
}
goto lab1;
lab2:
z->c = z->l - m3;
{ int ret = slice_from_s(z, 1, s_6);
if (ret < 0) return ret;
}
}
lab1:
break;
case 4:
{ int m5 = z->l - z->c; (void)m5;
if (in_grouping_b_U(z, g_RV, 97, 117, 0)) goto lab4;
goto lab3;
lab4:
z->c = z->l - m5;
{ int ret = r_LONGV(z);
if (ret <= 0) return ret;
}
}
lab3:
{ int ret = slice_del(z);
if (ret < 0) return ret;
}
break;
}
return 1;
}
static int r_nu(struct SN_env * z) {
{ int mlimit1;
if (z->c < z->I[0]) return 0;
mlimit1 = z->lb; z->lb = z->I[0];
z->ket = z->c;
if (z->c - 1 <= z->lb || (z->p[z->c - 1] != 97 && z->p[z->c - 1] != 117)) { z->lb = mlimit1; return 0; }
if (!find_among_b(z, a_8, 4)) { z->lb = mlimit1; return 0; }
z->bra = z->c;
z->lb = mlimit1;
}
{ int ret = slice_del(z);
if (ret < 0) return ret;
}
return 1;
}
static int r_undouble_kpt(struct SN_env * z) {
int among_var;
if (in_grouping_b_U(z, g_V1, 97, 252, 0)) return 0;
if (z->I[0] > z->c) return 0;
z->ket = z->c;
if (z->c - 1 <= z->lb || z->p[z->c - 1] >> 5 != 3 || !((1116160 >> (z->p[z->c - 1] & 0x1f)) & 1)) return 0;
among_var = find_among_b(z, a_9, 3);
if (!among_var) return 0;
z->bra = z->c;
switch (among_var) {
case 1:
{ int ret = slice_from_s(z, 1, s_7);
if (ret < 0) return ret;
}
break;
case 2:
{ int ret = slice_from_s(z, 1, s_8);
if (ret < 0) return ret;
}
break;
case 3:
{ int ret = slice_from_s(z, 1, s_9);
if (ret < 0) return ret;
}
break;
}
return 1;
}
static int r_degrees(struct SN_env * z) {
int among_var;
{ int mlimit1;
if (z->c < z->I[0]) return 0;
mlimit1 = z->lb; z->lb = z->I[0];
z->ket = z->c;
if (z->c <= z->lb || z->p[z->c - 1] >> 5 != 3 || !((8706 >> (z->p[z->c - 1] & 0x1f)) & 1)) { z->lb = mlimit1; return 0; }
among_var = find_among_b(z, a_10, 3);
if (!among_var) { z->lb = mlimit1; return 0; }
z->bra = z->c;
z->lb = mlimit1;
}
switch (among_var) {
case 1:
if (in_grouping_b_U(z, g_RV, 97, 117, 0)) return 0;
{ int ret = slice_del(z);
if (ret < 0) return ret;
}
break;
case 2:
{ int ret = slice_del(z);
if (ret < 0) return ret;
}
break;
}
return 1;
}
static int r_substantive(struct SN_env * z) {
{ int m1 = z->l - z->c; (void)m1;
{ int ret = r_special_noun_endings(z);
if (ret < 0) return ret;
}
z->c = z->l - m1;
}
{ int m2 = z->l - z->c; (void)m2;
{ int ret = r_case_ending(z);
if (ret < 0) return ret;
}
z->c = z->l - m2;
}
{ int m3 = z->l - z->c; (void)m3;
{ int ret = r_plural_three_first_cases(z);
if (ret < 0) return ret;
}
z->c = z->l - m3;
}
{ int m4 = z->l - z->c; (void)m4;
{ int ret = r_degrees(z);
if (ret < 0) return ret;
}
z->c = z->l - m4;
}
{ int m5 = z->l - z->c; (void)m5;
{ int ret = r_i_plural(z);
if (ret < 0) return ret;
}
z->c = z->l - m5;
}
{ int m6 = z->l - z->c; (void)m6;
{ int ret = r_nu(z);
if (ret < 0) return ret;
}
z->c = z->l - m6;
}
return 1;
}
static int r_verb_exceptions(struct SN_env * z) {
int among_var;
z->bra = z->c;
among_var = find_among(z, a_11, 290);
if (!among_var) return 0;
z->ket = z->c;
if (z->c < z->l) return 0;
switch (among_var) {
case 1:
{ int ret = slice_from_s(z, 3, s_10);
if (ret < 0) return ret;
}
break;
case 2:
{ int ret = slice_from_s(z, 3, s_11);
if (ret < 0) return ret;
}
break;
case 3:
{ int ret = slice_from_s(z, 5, s_12);
if (ret < 0) return ret;
}
break;
case 4:
{ int ret = slice_from_s(z, 5, s_13);
if (ret < 0) return ret;
}
break;
case 5:
{ int ret = slice_from_s(z, 5, s_14);
if (ret < 0) return ret;
}
break;
case 6:
{ int ret = slice_from_s(z, 4, s_15);
if (ret < 0) return ret;
}
break;
case 7:
{ int ret = slice_from_s(z, 3, s_16);
if (ret < 0) return ret;
}
break;
case 8:
{ int ret = slice_from_s(z, 6, s_17);
if (ret < 0) return ret;
}
break;
case 9:
{ int ret = slice_from_s(z, 5, s_18);
if (ret < 0) return ret;
}
break;
case 10:
{ int ret = slice_from_s(z, 3, s_19);
if (ret < 0) return ret;
}
break;
case 11:
{ int ret = slice_from_s(z, 6, s_20);
if (ret < 0) return ret;
}
break;
case 12:
{ int ret = slice_from_s(z, 7, s_21);
if (ret < 0) return ret;
}
break;
case 13:
{ int ret = slice_from_s(z, 7, s_22);
if (ret < 0) return ret;
}
break;
case 14:
{ int ret = slice_from_s(z, 4, s_23);
if (ret < 0) return ret;
}
break;
case 15:
{ int ret = slice_from_s(z, 5, s_24);
if (ret < 0) return ret;
}
break;
case 16:
{ int ret = slice_from_s(z, 4, s_25);
if (ret < 0) return ret;
}
break;
case 17:
{ int ret = slice_from_s(z, 4, s_26);
if (ret < 0) return ret;
}
break;
case 18:
{ int ret = slice_from_s(z, 5, s_27);
if (ret < 0) return ret;
}
break;
}
return 1;
}
extern int estonian_UTF_8_stem(struct SN_env * z) {
{ int c1 = z->c;
{ int ret = r_verb_exceptions(z);
if (ret == 0) goto lab0;
if (ret < 0) return ret;
}
return 0;
lab0:
z->c = c1;
}
{ int c2 = z->c;
{ int ret = r_mark_regions(z);
if (ret < 0) return ret;
}
z->c = c2;
}
z->lb = z->c; z->c = z->l;
{ int m3 = z->l - z->c; (void)m3;
{ int ret = r_emphasis(z);
if (ret < 0) return ret;
}
z->c = z->l - m3;
}
{ int m4 = z->l - z->c; (void)m4;
{ int m5 = z->l - z->c; (void)m5;
{ int ret = r_verb(z);
if (ret == 0) goto lab3;
if (ret < 0) return ret;
}
goto lab2;
lab3:
z->c = z->l - m5;
{ int ret = r_substantive(z);
if (ret < 0) return ret;
}
}
lab2:
z->c = z->l - m4;
}
{ int m6 = z->l - z->c; (void)m6;
{ int ret = r_undouble_kpt(z);
if (ret < 0) return ret;
}
z->c = z->l - m6;
}
z->c = z->lb;
return 1;
}
extern struct SN_env * estonian_UTF_8_create_env(void) { return SN_create_env(0, 1); }
extern void estonian_UTF_8_close_env(struct SN_env * z) { SN_close_env(z, 0); }
|