-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGerman_Annotation_V028.csv
We can make this file beautiful and searchable if this error is corrected: No commas found in this CSV file in line 0.
1022 lines (1022 loc) · 128 KB
/
German_Annotation_V028.csv
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
ID;Correct_Word;Error_Word;Damerau-Lenventein_Distance;Correct_Word_Freq;Error_Word_ Freq;Correct_Word_Lenght;Error_Word_Lenght;Error_postion;Syllable_Error_position;Correct-word-syllables;correct_syllable;Error_Type;Real_World_Error;First-Letter;Last-Letter;Correct_Letter;Error_Letter;Mirror_correct_letter;Mirror_error_letter;Rotation_correct_letter;Rotation_error_letter;Fuzzy_correct_letters;Fuzzy_error_letter;Error_Phonetic_Feature;;;;;;;;;;;;;;;;;;;;;
1;Bank;Bak;1;305.000.000;436;4;3;3;1;1;CVCC;omission;NO;NO;NO;n;-;Y;N;N;N;Y;N;sound_distinction;;;;;;;;;;;;;;;;;;;;;
2;Bus;Pos;2;283.000.000;32.000.000;3;3;-;-;-;-;multierror;NO;YES;NO;"B;u";"P;o";"N;Y";"N;N";"N;N";"N;N";"N;Y";"N;Y";sound_distinction;;;;;;;;;;;;;;;;;;;;;
3;Bus;Pus;1;283.000.000;419;3;3;1;1;1;CVC;substitution;NO;YES;NO;B;P;N;N;N;N;N;N;sound_distinction;;;;;;;;;;;;;;;;;;;;;
4;Bus;Bos;1;283.000.000;1.020.000;3;3;2;1;1;CVC;substitution;NO;NO;NO;u;o;Y;N;N;N;Y;Y;sound_distinction;;;;;;;;;;;;;;;;;;;;;
5;Nest;Nes;1;11.000.000;21.600.000;4;3;4;1;1;CVCC;omission;NO;NO;YES;t;-;N;N;N;N;N;N;sound_distinction;;;;;;;;;;;;;;;;;;;;;
6;L_we;Lowe;1;8.980.000;458;4;4;2;1;2;CV;substitution;NO;NO;NO;_;o;N;N;N;N;Y;Y;sound_distinction;;;;;;;;;;;;;;;;;;;;;
7;Tisch;T_sch;1;52.000.000;18.9;5;5;2;1;1;CVCCC;substitution;NO;NO;NO;i;_;N;N;N;N;N;Y;sound_distinction;;;;;;;;;;;;;;;;;;;;;
8;Bein;Pain;2;23.100.000;481;4;4;"1;2";1;1;CVVC;multierror;NO;YES;NO;"B;e";"P;a";"N;N";"N;N";"N;N";"N;N";"N;N";"N;Y";sound_distinction;;;;;;;;;;;;;;;;;;;;;
9;Bein;Pein;1;23.100.000;481;4;4;1;1;1;CVVC;substitution;YES;YES;NO;B;P;N;N;N;N;N;N;sound_distinction;;;;;;;;;;;;;;;;;;;;;
10;Bein;Bain;1;23.100.000;584;4;4;2;1;1;CVVC;substitution;NO;NO;NO;e;a;N;N;N;N;N;Y;sound_distinction;;;;;;;;;;;;;;;;;;;;;
11;Material;Mahterial;1;182.000.000;229;8;9;3;1;"1;2";CVCV;addition;NO;NO;NO;-;h;N;N;N;Y;N;Y;lengthening;;;;;;;;;;;;;;;;;;;;;
12;Schmirgelpapier;Schmiergelpapier;1;167;23.2;15;16;3;1;1;CCCCVC;addition;NO;NO;NO;-;e;N;N;N;N;N;N;lengthening;;;;;;;;;;;;;;;;;;;;;
13;Bleistift;Bleischtôft;3;609;5;9;11;-;-;-;-;multierror;NO;NO;NO;"t;i";"c;h;ô";"N;N";"N;N;N";"N;N";"N;Y;N";"N;N";"N;Y;N";sound_distinction;;;;;;;;;;;;;;;;;;;;;
14;Bleistift;Bleischtift;2;609;2.11;9;11;1;1;2;CCVCC;addition;NO;NO;NO;-;"c;h";N;"N;N";N;"N;Y";N;"N;Y";sound_distinction;;;;;;;;;;;;;;;;;;;;;
15;Bleistift;Bleistôft;1;609;138;9;9;7;2;2;CCVCC;substitution;NO;NO;NO;i;ô;N;N;N;N;N;N;sound_distinction;;;;;;;;;;;;;;;;;;;;;
16;Bohrer;bohrer;1;634;634;6;6;1;1;1;CVC;capital_letter;NO;YES;NO;B;b;N;Y;N;Y;N;Y;sound_distinction;;;;;;;;;;;;;;;;;;;;;
17;Holzbrett;Holzbret;1;447;2.04;9;8;8;2;2;CCVCC;omission;NO;NO;YES;t;-;N;N;N;N;N;N;double_consonant;;;;;;;;;;;;;;;;;;;;;
18;schmirgeln;Schmiergeln;2;116;10.3;9;10;"1;6";1;1;CCCCVC;multierror;YES;YES;NO;s;"S;e";N;"N;N";N;"N;N";N;"N;N";sound_sequence;;;;;;;;;;;;;;;;;;;;;
19;schmirgeln;Schmirgeln;1;116;116;9;9;1;1;1;CCCCVC;capital_letter;YES;YES;NO;s;S;N;N;N;N;N;N;sound_distinction;;;;;;;;;;;;;;;;;;;;;
20;schmirgeln;schmiergeln;1;116;10.3;9;10;6;1;1;CCCCVC;addition;NO;NO;NO;-;e;N;N;N;N;N;N;sound_sequence;;;;;;;;;;;;;;;;;;;;;
21;wenn;wen;1;2.010.000.000;68.400.000;4;3;4;1;1;CVCC;omission;YES;NO;YES;n;-;Y;N;N;N;Y;N;double_consonant;;;;;;;;;;;;;;;;;;;;;
22;gemacht;gehmacht;1;165.000.000;6.77;7;8;3;1;"1;2";CVCVCCC;addition;NO;NO;YES;-;h;N;N;N;Y;N;Y;lengthening;;;;;;;;;;;;;;;;;;;;;
23;Vorlage;vorlage;1;21.900.000;21.900.000;7;7;1;1;1;CVC;capital_letter;NO;YES;NO;V;v;N;Y;N;N;N;Y;sound_distinction;;;;;;;;;;;;;;;;;;;;;
24;und male;undmale;1;142;248;8;7;-;-;-;-;split_in;NO;NO;NO;_;/;N;N;N;N;N;N;sound_distinction;;;;;;;;;;;;;;;;;;;;;
25;glôcklich;glôckliech;1;32.800.000;222;9;10;8;2;2;CVCC;addition;NO;NO;NO;-;e;N;N;N;N;N;N;sound_sequence;;;;;;;;;;;;;;;;;;;;;
26;schwierig;schwirig;1;20.300.000;52.3;9;8;6;1;1;CCCCVV;omission;NO;NO;NO;-;e;N;N;N;N;N;N;lengthening;;;;;;;;;;;;;;;;;;;;;
27;Sachen;sachen;1;66.900.000;66.900.000;6;6;1;1;1;CVCCVC;capital_letter;NO;YES;NO;S;s;N;N;N;N;N;N;sound_distinction;;;;;;;;;;;;;;;;;;;;;
28;Hubschrauber;hupschrauber;2;5.860.000;2.71;12;12;-;-;-;-;multierror;NO;YES;NO;"H;b";"h;p";"Y;Y";"N;Y";"Y;Y";"Y;Y";"N;Y";"Y;Y";sound_sequence;;;;;;;;;;;;;;;;;;;;;
29;Hubschrauber;Hupschrauber;1;5.860.000;2.71;12;12;3;1;1;CVC;substitution;NO;NO;NO;b;p;Y;Y;Y;Y;Y;Y;sound_distinction;;;;;;;;;;;;;;;;;;;;;
30;Hubschrauber;hubschrauber;1;5.860.000;5.860.000;12;12;1;1;1;CVC;capital_letter;NO;YES;NO;H;h;Y;N;Y;Y;N;Y;sound_distinction;;;;;;;;;;;;;;;;;;;;;
31;eines;seies;2;407.000.000;28.7;5;5;-;-;-;-;multierror;NO;YES;NO;n;s;Y;N;N;N;Y;N;sound_sequence;;;;;;;;;;;;;;;;;;;;;
32;eines;eies;1;407.000.000;177;5;4;3;2;2;VVCVC;omission;NO;NO;NO;n;-;Y;N;N;N;Y;N;sound_distinction;;;;;;;;;;;;;;;;;;;;;
33;eines;seines;1;407.000.000;54.300.000;5;6;1;1;1;VVCVC;addition;YES;YES;NO;-;s;N;N;N;N;N;N;sound_sequence;;;;;;;;;;;;;;;;;;;;;
34;Idee;Edie;2;140.000.000;359;4;4;-;-;-;-;multierror;YES;YES;NO;"I;e";"E;i";"N;N";"N;N";"N;N";"N;N";"N;N";"N;N";sound_distinction;;;;;;;;;;;;;;;;;;;;;
35;Idee;Idie;1;140.000.000;191;4;4;3;2;1;VCVV;substitution;NO;NO;NO;e;i;N;N;N;N;N;N;sound_distinction;;;;;;;;;;;;;;;;;;;;;
36;Idee;Edee;1;140.000.000;96.7;4;4;1;1;1;VCVV;substitution;NO;YES;NO;I;E;N;N;N;N;N;N;sound_distinction;;;;;;;;;;;;;;;;;;;;;
37;Ideen;ideen;1;62.700.000;62.700.000;5;5;1;1;1;VCVV;capital_letter;NO;YES;NO;I;i;N;N;N;N;N;N;sound_distinction;;;;;;;;;;;;;;;;;;;;;
38;Holz;Olt;3;82.800.000;387;4;3;-;-;-;-;multierror;YES;YES;YES;"H;o;z";"O;t";"Y;N;N";"N;N";"Y;N;N";"N;N";"N;Y;N";"N;N";sound_distinction;;;;;;;;;;;;;;;;;;;;;
39;Holz;Holt;1;82.800.000;53.100.000;4;4;4;1;1;CVCC;substitution;YES;NO;YES;z;t;N;N;N;N;N;N;sound_distinction;;;;;;;;;;;;;;;;;;;;;
40;Holz;Olz;2;82.800.000;203;4;3;1;1;"1;2";CVCC;omission;NO;YES;NO;H;-;Y;N;Y;N;N;N;sound_distinction;;;;;;;;;;;;;;;;;;;;;
41;siehst;sihst;1;12.700.000;17.1;6;5;3;1;1;CVVCCC;omission;NO;NO;NO;e;-;N;N;N;N;N;N;lengthening;;;;;;;;;;;;;;;;;;;;;
42;dir;dier;1;211.000.000;475;3;4;3;1;1;CVC;addition;NO;NO;NO;-;e;N;N;N;N;N;N;lengthening;;;;;;;;;;;;;;;;;;;;;
43;fôhrt;fôrt;1;76.300.000;124;5;4;3;1;1;CVCC;omission;NO;NO;NO;h;-;N;N;Y;N;Y;N;lengthening;;;;;;;;;;;;;;;;;;;;;
44;entgegen;endgegen;1;30.200.000;15.3;8;8;3;1;1;VCC;substitution;NO;NO;NO;t;d;N;Y;N;Y;N;Y;derivation;;;;;;;;;;;;;;;;;;;;;
45;f_llt;f_lt;1;52.100.000;103;5;4;4;2;1;CVC;omission;NO;NO;NO;l;-;N;N;N;N;N;N;double_consonant;;;;;;;;;;;;;;;;;;;;;
46;ihm;im;1;166.000.000;3.160.000.000;3;2;2;1;1;VCC;omission;YES;NO;NO;h;-;N;N;Y;N;Y;N;sound_distinction;;;;;;;;;;;;;;;;;;;;;
47;verkôrzt;verkôrtzt;1;4.300.000;13.4;8;9;7;2;2;CVCCC;addition;NO;NO;NO;-;t;N;N;N;N;N;N;sound_sequence;;;;;;;;;;;;;;;;;;;;;
48;finanziell;Finanziell;1;13.000.000;13.000.000;11;11;1;1;1;CV;no_capital_letter;NO;YES;NO;f;F;N;N;N;N;N;N;sound_distinction;;;;;;;;;;;;;;;;1;;;;;
49;haushalten;Haushalten;1;2.490.000;2.490.000;10;10;1;1;1;CVCC;no_capital_letter;NO;YES;NO;h;H;N;Y;Y;Y;Y;N;sound_distinction;;;;;;;;;;;;;;;;;;;;;
50;w_re;w_hre;1;146.000.000;601;4;5;3;"2;3";"2;3";CVCV;addition;YES;NO;NO;-;h;N;N;N;Y;N;Y;lengthening;;;;;;;;;;;;;;;;;;;;;
51;schnell;schnel;1;185.000.000;422;7;6;6;1;1;CCCCVCC;omission;NO;NO;YES;l;-;N;N;N;N;N;N;double_consonant;;;;;;;;;;;;;;;;;;;;;
52;springen;sbringen;1;27.300.000;1.98;8;8;2;1;1;CCCVC;substitution;NO;NO;NO;p;b;Y;Y;Y;Y;Y;Y;sound_distinction;;;;;;;;;;;;;;;;;;;;;
53;liebt;lipt;2;24.500.000;19.3;5;4;-;-;-;-;multierror;NO;NO;NO;"e;b";p;"N;Y";Y;"N;Y";Y;"N;Y";Y;lengthening;;;;;;;;;;;;;;;;;;;;;
54;liebt;liept;1;24.500.000;4.74;5;5;4;2;1;CVVCC;substitution;NO;NO;NO;b;p;Y;Y;Y;Y;Y;Y;sound_distinction;;;;;;;;;;;;;;;;;;;;;
55;liebt;libt;1;24.500.000;75.3;5;4;3;2;1;CVVCC;omission;NO;NO;NO;e;-;N;N;N;N;N;N;lengthening;;;;;;;;;;;;;;;;;;;;;
56;rennt;rend;2;1.050.000;19.300.000;5;4;-;-;-;-;multierror;NO;NO;NO;"n;t";d;"Y;N";Y;"N;N";Y;"Y;N";Y;double_consonant;;;;;;;;;;;;;;;;;;;;;
57;rennt;rennd;1;1.050.000;5.24;5;5;5;2;2;CVCCC;substitution;NO;NO;NO;t;d;N;Y;N;Y;N;Y;sound_distinction;;;;;;;;;;;;;;;;;;;;;
58;rennt;rent;1;1.050.000;30.600.000;5;4;3;2;2;CVCCC;omission;NO;NO;NO;n;-;Y;N;N;N;Y;N;double_consonant;;;;;;;;;;;;;;;;;;;;;
59;f_hrt;fert;2;24.000.000;413;5;4;-;-;-;-;multierror;NO;NO;NO;"_;h";e;"N;N";N;"N;Y";N;"Y;Y";N;"derivation;lengthening";;;;;;;;;;;;;;;;;;;;;
60;f_hrt;fehrt;1;24.000.000;21;5;5;2;1;1;CVC;substitution;NO;NO;NO;_;e;N;N;N;N;Y;N;derivation;;;;;;;;;;;;;;;;;;;;;
61;f_hrt;f_rt;1;24.000.000;31.4;5;4;3;1;1;CVC;omission;NO;NO;NO;h;-;N;N;Y;N;Y;N;lengthening;;;;;;;;;;;;;;;;;;;;;
62;viel;fiel;1;296.000.000;68.200.000;4;4;1;1;1;CVVC;substitution;YES;YES;NO;v;f;Y;N;N;N;Y;N;v_word;;;;;;;;;;;;;;;;;;;;;
63;schwingen;Schwingen;1;4.190.000;4.190.000;9;9;1;1;1;CCCCVC;no_capital_letter;YES;YES;NO;s;S;N;N;N;N;N;N;sound_distinction;;;;;;;;;;;;;;;;;;;;;
64;backt;bekt;2;589;13.1;5;4;-;-;-;-;multierror;NO;NO;NO;"a;c";e;"N;N";N;"N;N";N;"Y;N";N;sound_distinction;;;;;;;;;;;;;;;;;;;;;
65;backt;beckt;1;589;2.97;5;5;1;1;1;CV;substitution;NO;NO;NO;a;e;N;N;N;N;Y;N;sound_distinction;;;;;;;;;;;;;;;;;;;;;
66;backt;bakt;1;589;95.3;5;4;3;2;2;CCC;omission;NO;NO;NO;c;-;N;N;N;N;N;N;sound_distinction;;;;;;;;;;;;;;;;;;;;;
67;Vogelfutter;vogel futer;3;507;507;11;11;-;-;-;-;multierror;NO;YES;NO;"V;/;t";"v;_";"N;N;N";"Y;N";"N;N;N";"N;N";"N;N;N";"Y;N";sound_distinction;;;;;;;;;;;;;;;;;;;;;
68;Vogelfutter;vogelfutter;1;507;507;11;11;1;1;1;CV;capital_letter;NO;YES;NO;V;v;N;Y;N;N;N;Y;sound_distinction;;;;;;;;;;;;;;;;;;;;;
69;Vogelfutter;Vogel futter;1;507;20.5;11;12;-;-;-;-;split_in;NO ;NO;NO;/;_;N;N;N;N;N;N;sound_distinction;;;;;;;;;;;;;;;;;;;;;
70;Vogelfutter;Vogelfuter;1;507;447;11;10;8;3;3;CVC;omission;NO;NO;NO;t;-;N;N;N;N;N;N;double_consonant;;;;;;;;;;;;;;;;;;;;;
71;trinkt;tringt;1;4.380.000;9.81;6;6;5;2;2;CC;substitution;NO;NO;NO;k;g;N;N;N;Y;N;Y;derivation;;;;;;;;;;;;;;;;;;;;;
72;vertragen;vertagen;1;4.830.000;224;9;8;5;2;2;CCV;omission;YES;NO;NO;r;-;N;N;N;N;N;N;sound_distinction;;;;;;;;;;;;;;;;;;;;;
73;Klassenvertrag;Klassen fertrag;2;2.04;2.04;14;15;-;-;-;-;multierror;NO;NO;NO;"v;/";"_;f";"Y;N";"N;N";"N;N";"N;N";"Y;N";"N;N";v_word;;;;;;;;;;;;;;;;;;;;;
74;Klassenvertrag;Klassen vertrag;1;2.04;150;14;15;-;-;-;-;split_in;NO;NO;NO;/;_;N;N;N;N;N;N;sound_distinction;;;;;;;;;;;;;;;;;;;;;
75;Klassenvertrag;Klassenfertrag;1;2.04;0;14;14;8;3;3;CVC;substitution;NO;NO;NO;v;f;Y;N;N;N;Y;N;v_word;;;;;;;;;;;;;;;;;;;;;
76;Verk_uferin;ferkeufein;3;763;0;11;10;-;-;-;-;multierror;NO;YES;NO;"V;_;r";"f;e";"N;N;N";"N;N";"N;N;N";"N;N";"N;Y;N";"N;N";"v_word;sound_distinction";;;;;;;;;;;;;;;;;;;;;
77;Verk_uferin;Ferk_uferin;1;763;860;11;11;1;1;1;CVC;substitution;NO;YES;NO;V;F;N;N;N;N;N;N;v_word;;;;;;;;;;;;;;;;;;;;;
78;Verk_uferin;verk_uferin;1;763;763;11;11;1;1;1;CVC;capital_letter;NO;YES;NO;V;v;N;Y;N;N;N;Y;sound_distinction;;;;;;;;;;;;;;;;;;;;;
79;Verk_uferin;Verkeuferin;1;763;2.25;11;11;5;2;2;CVV;substitution;NO;NO;NO;_;e;N;N;N;N;Y;N;derivation;;;;;;;;;;;;;;;;;;;;;
80;Verk_uferin;Verk_ufein;1;763;972;11;10;9;4;4;CVC;omission;NO;NO;NO;r;-;N;N;N;N;N;N;sound_distinction;;;;;;;;;;;;;;;;;;;;;
81;Spinne;Spine;1;570;512;6;5;4;1;1;CCVC;omission;NO;NO;NO;n;-;Y;N;N;N;Y;N;double_consonant;;;;;;;;;;;;;;;;;;;;;
82;rutscht;rutst;2;2.030.000;688;7;5;-;-;-;-;multierror;NO;NO;NO;"s;c";-;"N;N";N;"N;N";N;"N;N";N;"sound_distinction;consonants_combination";;;;;;;;;;;;;;;;;;;;;
83;rutscht;rutsht;1;2.030.000;59;7;6;5;2;2;CCCC;omission;NO;NO;NO;c;-;N;N;N;N;N;N;"sound_distinction;consonants_combination";;;;;;;;;;;;;;;;;;;;;
84;rutscht;rutsct;1;2.030.000;615;7;6;6;2;2;CCCC;omission;NO;NO;NO;h;-;N;N;Y;N;Y;N;"sound_distinction;consonants_combination";;;;;;;;;;;;;;;;;;;;;
85;schlank;slank;2;10.600.000;309;7;5;-;-;-;-;multierror;NO;NO;NO;"c;h";-;"N;N";N;"N;Y";N;"N;Y";N;"sound_distinction;consonants_combination";;;;;;;;;;;;;;;;;;;;;
86;schlank;shlank;1;10.600.000;780;7;6;2;1;1;CCCCVCC;omission;NO;NO;NO;c;-;N;N;N;N;N;N;"sound_distinction;consonants_combination";;;;;;;;;;;;;;;;;;;;;
87;schlank;sclank;1;10.600.000;1.73;7;6;3;1;1;CCCCVCC;omission;NO;NO;NO;h;-;N;N;Y;N;Y;N;"sound_distinction;consonants_combination";;;;;;;;;;;;;;;;;;;;;
88;kratzt;kratst;1;442;355;6;6;5;1;1;CCVCCC;substitution;NO;NO;NO;z;s;N;N;N;N;N;N;sound_distinction;;;;;;;;;;;;;;;;;;;;;
89;versprochen;fersbrochen;2;7.920.000;30;11;11;-;-;-;-;multierror;NO;YES;NO;"v;p";"f;b";"Y;Y";"N;Y";"N;Y";"N;Y";"Y;Y";"N;Y";"v_word;sound_distinction";;;;;;;;;;;;;;;;;;;;;
90;versprochen;fersprochen;1;7.920.000;1.48;11;11;1;1;1;CVC;substitution;NO;YES;NO;v;f;Y;N;N;N;Y;N;v_word;;;;;;;;;;;;;;;;;;;;;
91;versprochen;versbrochen;1;7.920.000;240;11;11;5;2;2;CCCV;substitution;NO;NO;NO;p;b;Y;Y;Y;Y;Y;Y;sound_distinction;;;;;;;;;;;;;;;;;;;;;
92;versteht;ferstet;2;26.100.000;1.53;8;7;-;-;-;-;multierror;NO;YES;NO;"v;h";f;"Y;N";N;"N;Y";N;"Y;Y";N;v_word;;;;;;;;;;;;;;;;;;;;;
93;versteht;fersteht;1;26.100.000;2.37;8;8;1;1;1;CVC;substitution;NO;YES;NO;v;f;Y;N;N;N;Y;N;v_word;;;;;;;;;;;;;;;;;;;;;
94;versteht;verstet;1;26.100.000;13.2;8;7;7;3;3;CVC;omission;NO;YES;NO;h;-;N;N;Y;N;Y;N;lengthening;;;;;;;;;;;;;;;;;;;;;
95;klatscht;klatst;2;428;231;8;6;-;-;-;-;multierror;NO;NO;NO;"c;h";-;"N;N";N;"N;Y";N;"N;Y";N;consonants_combination;;;;;;;;;;;;;;;;;;;;;
96;klatscht;klatsht;1;428;107;8;7;6;2;2;CCCVC;omission;NO;NO;NO;c;-;N;N;N;N;N;N;consonants_combination;;;;;;;;;;;;;;;;;;;;;
97;klatscht;klatsct;1;428;76;8;7;7;2;2;CCCVC;omission;NO;NO;NO;h;-;N;N;Y;N;Y;N;consonants_combination;;;;;;;;;;;;;;;;;;;;;
98;Speck;Spek;1;11.300.000;356;5;4;4;1;1;CCVCC;omission;NO;NO;NO;c;-;N;N;N;N;N;N;double_consonant;;;;;;;;;;;;;;;;;;;;;
99;Fr_ulein;freulein;2;619;37.5;8;8;-;-;-;-;multierror;NO;YES;NO;"F;_";"f;e";"N;N";"N;N";"N;N";"N;N";"N;Y";"N;N";sound_distinction;;;;;;;;;;;;;;;;;;;;;
100;Fr_ulein;fr_ulein;1;619;619;8;8;1;1;1;CCVV;capital_letter;NO;YES;NO;F;f;N;N;N;N;N;N;sound_distinction;;;;;;;;;;;;;;;;;;;;;
101;Fr_ulein;Freulein;1;619;37.5;8;8;3;1;1;CCVV;substitution;NO;NO;NO;_;e;N;N;N;N;Y;N;derivation;;;;;;;;;;;;;;;;;;;;;
102;Quadrat;Kwadrat;2;9.520.000;37.9;7;7;-;-;-;-;multierror;NO;YES;NO;"Q;u";"K;w";"N;Y";"N;Y";"N;N";"N;N";"N;Y";"N;Y";sound_distinction;;;;;;;;;;;;;;;;;;;;;
103;Quadrat;Kuadrat;1;9.520.000;3.38;7;7;1;1;1;CVV;substitution;NO;YES;NO;Q;K;N;N;N;N;N;N;sound_distinction;;;;;;;;;;;;;;;;;;;;;
104;Quadrat;Qwadrat;1;9.520.000;928;7;7;2;1;1;CVV;substitution;NO;NO;NO;u;w;Y;Y;N;N;Y;Y;sound_distinction;;;;;;;;;;;;;;;;;;;;;
105;krallt;kralt;1;164;10.2;6;5;4;1;1;CCVC;omission;NO;NO;NO;l;-;N;N;N;N;N;N;double_consonant;;;;;;;;;;;;;;;;;;;;;
106;blank;Blang;2;22.200.000;50.3;5;5;-;-;-;-;multierror;NO;YES;YES;"b;g";"B;g";"Y;N";"N;N";"Y;Y";"N;Y";"Y;Y";"N;Y";sound_distinction;;;;;;;;;;;;;;;;;;;;;
107;blank;Blank;1;22.200.000;22.200.000;5;5;1;1;1;CCVCC;capital_letter;NO;YES;NO;b;B;Y;N;Y;N;Y;N;sound_distinction;;;;;;;;;;;;;;;;;;;;;
108;blank;blang;1;22.200.000;50.3;5;5;5;1;1;CCVCC;substitution;NO;NO;YES;k;g;N;N;N;Y;N;Y;sound_distinction;;;;;;;;;;;;;;;;;;;;;
109;st_rkt;sherkt;2;5.050.000;450;6;6;-;-;-;-;multierror;NO;NO;NO;"t;_";"h;e";"N;N";"N;N";"N;N";"Y;N";"N;Y";"Y;N";sound_distinction;;;;;;;;;;;;;;;;;;;;;
110;st_rkt;sh_rkt;1;5.050.000;2;6;6;2;1;1;CCVC;substitution;NO;NO;NO;t;h;N;N;N;Y;N;Y;sound_distinction;;;;;;;;;;;;;;;;;;;;;
111;st_rkt;sterkt;1;5.050.000;16.9;6;6;3;1;1;CCVC;substitution;NO;NO;NO;_;e;N;N;N;N;Y;N;derivation;;;;;;;;;;;;;;;;;;;;;
112;behandelt;Behandelt;1;30.800.000;30.800.000;9;9;1;1;1;CV;no_capital_letter;NO;YES;NO;b;B;Y;N;Y;N;Y;N;sound_distinction;;;;;;;;;;;;;;;;;;;;;
113;bôcken;Bôken;2;436;8.34;6;5;-;-;-;-;multierror;NO;YES;NO;"b;c";B;"Y;N";N;"Y;N";N;"Y;N";N;sound_distinction;;;;;;;;;;;;;;;;;;;;;
114;bôcken;Bôcken;1;436;437;6;6;1;1;1;CV;no_capital_letter;YES;YES;NO;b;B;Y;N;Y;N;Y;N;sound_distinction;;;;;;;;;;;;;;;;;;;;;
115;bôcken;bôken;1;436;8.34;6;5;3;2;2;CCVC;omission;NO;NO;NO;c;-;N;N;N;N;N;N;double_consonant;;;;;;;;;;;;;;;;;;;;;
116;feucht;Feucht;1;8.770.000;8.770.000;6;6;1;1;1;CVCCCC;no_capital_letter;NO;YES;NO;f;F;N;N;N;N;N;N;sound_distinction;;;;;;;;;;;;;;;;;;;;;
117;W_lder;Welder;1;5.510.000;434;6;6;2;1;1;CVCCVC;substitution;NO;NO;NO;_;e;N;N;N;N;Y;N;derivation;;;;;;;;;;;;;;;;;;;;;
118;zwischen;Zwischen;1;265.000.000;265.000.000;8;8;1;1;1;CCV;no_capital_letter;NO;YES;NO;z;Z;N;N;N;N;N;N;sound_distinction;;;;;;;;;;;;;;;;;;;;;
119;springt;Springt;1;11.200.000;11.200.000;7;7;1;1;1;CCCVC;no_capital_letter;NO;YES;NO;s;S;N;N;N;N;N;N;sound_distinction;;;;;;;;;;;;;;;;;;;;;
120;Kartoffeln;Kattofeln;2;11.000.000;298;10;9;-;-;-;-;multierror;NO;NO;NO;r;t;N;N;N;N;N;N;double_consonant;;;;;;;;;;;;;;;;;;;;;
121;Kartoffeln;Katoffeln;1;11.000.000;8.35;10;9;3;1;1;CVC;omission;NO;NO;NO;r;-;N;N;N;N;N;N;sound_distinction;;;;;;;;;;;;;;;;;;;;;
122;Kartoffeln;Karttoffeln;1;11.000.000;805;10;11;4;2;2;CVC;addition;NO;NO;NO;-;t;N;N;N;N;N;N;sound_sequence;;;;;;;;;;;;;;;;;;;;;
123;spucken;Spugken;2;451;451;7;7;-;-;-;-;multierror;NO;YES;NO;"s;c";"S;g";"N;N";"N;N";"N;N";"N;Y";"N;N";"N;Y";sound_distinction;;;;;;;;;;;;;;;;;;;;;
124;spucken;Spucken;1;451;451;7;7;1;1;1;CCV;no_capital_letter;Yes;YES;NO;s;S;N;N;N;N;N;N;sound_distinction;;;;;;;;;;;;;;;;;;;;;
125;spucken;spugken;1;451;451;7;7;4;2;2;CCVC;substitution;NO;NO;NO;c;g;N;N;N;Y;N;Y;sound_distinction;;;;;;;;;;;;;;;;;;;;;
126;Strumpf;Strumf;1;414;2.56;7;6;6;1;1;CCCVCCC;omission;NO;NO;NO;p;-;Y;N;Y;N;Y;N;sound_distinction;;;;;;;;;;;;;;;;;;;;;
127;Stricknadel;Striknadel;1;184;358;11;10;5;1;1;CCCVCC;omission;NO;NO;NO;c;-;N;N;N;N;N;N;double_consonant;;;;;;;;;;;;;;;;;;;;;
128;erkannt;Erkant;2;17.900.000;52.3;7;6;-;-;-;-;multierror;NO;YES;NO;"e;n";E;"N;Y";N;"N;N";N;"N;Y";N;"sound_distinction;sound_distinction";;;;;;;;;;;;;;;;;;;;;
129;erkannt;Erkannt;1;17.900.000;17.900.000;7;7;1;1;1;VC;no_capital_letter;NO;YES;NO;e;E;N;N;N;N;N;N;sound_distinction;;;;;;;;;;;;;;;;;;;;;
130;erkannt;erkant;1;17.900.000;52.3;7;6;5;2;2;CVCCC;omission;NO;NO;NO;n;-;Y;N;N;N;Y;N;double_consonant;;;;;;;;;;;;;;;;;;;;;
131;k_lter;Kelter;2;1.920.000;406;6;6;-;-;-;-;multierror;YES;YES;NO;"k;_";"K;e";"N;N";"N;N";"N;N";"N;N";"N;Y";"N;N";sound_distinction;;;;;;;;;;;;;;;;;;;;;
132;k_lter;K_lter;1;1.920.000;1.920.000;6;6;1;1;1;CVCCVC;no_capital_letter;NO;YES;NO;k;K;N;N;N;N;N;N;sound_distinction;;;;;;;;;;;;;;;;;;;;;
133;k_lter;kelter;1;1.920.000;406;6;6;2;1;1;CVCCVC;substitution;NO;NO;NO;_;e;N;N;N;N;Y;N;derivation;;;;;;;;;;;;;;;;;;;;;
134;schluckt;Schlukt;2;790;2.88;8;7;-;-;-;-;multierror;NO;YES;NO;"s;c";S;"N;N";N;"N;N";N;"N;N";N;"sound_distinction;derivation";;;;;;;;;;;;;;;;;;;;;
135;schluckt;Schluckt;1;790;790;8;8;1;1;1;CCCCV;no_capital_letter;YES;YES;NO;s;S;N;N;N;N;N;N;sound_distinction;;;;;;;;;;;;;;;;;;;;;
136;schluckt;schlukt;1;790;2.88;8;7;6;2;2;CCC;omission;NO;NO;NO;c;-;N;N;N;N;N;N;derivation;;;;;;;;;;;;;;;;;;;;;
137;beginnt;Begint;2;55.100.000;150;7;6;-;-;-;-;multierror;NO;YES;NO;"b;n";B;"Y;Y";N;"Y;N";N;"Y;Y";N;"sound_distinction;double_conconant";;;;;;;;;;;;;;;;;;;;;
138;beginnt;Beginnt;1;55.100.000;55.100.000;7;7;1;1;1;CV;no_capital_letter;NO;YES;NO;b;B;Y;N;Y;N;Y;N;sound_distinction;;;;;;;;;;;;;;;;;;;;;
139;beginnt;begint;1;55.100.000;878;7;6;6;2;2;CVC;omission;NO;NO;NO;n;-;Y;N;N;N;Y;N;double_consonant;;;;;;;;;;;;;;;;;;;;;
140;klirrt;Klirt;2;70.6;2.54;6;5;-;-;-;-;multierror;NO;YES;NO;"k;r";K;"N;N";N;"N;N";N;"N;N";N;"sound_distinction;double_conconant";;;;;;;;;;;;;;;;;;;;;
141;klirrt;Klirrt;1;70.6;70.6;6;6;1;1;1;CCVCCC;no_capital_letter;NO;YES;NO;k;K;N;N;N;N;N;N;sound_distinction;;;;;;;;;;;;;;;;;;;;;
142;klirrt;klirt;1;70.6;2.54;6;5;5;1;1;CCVCCC;omission;NO;NO;NO;r;-;N;N;N;N;N;N;double_consonant;;;;;;;;;;;;;;;;;;;;;
143;gleich;Gleich;1;163.000.000;163.000.000;6;6;1;1;1;CCVVCC;no_capital_letter;NO;YES;NO;g;G;N;N;Y;N;Y;N;sound_distinction;;;;;;;;;;;;;;;;;;;;;
144;Suppe;Supe;1;12.600.000;287;5;4;3;1;1;CVC;omission;NO;NO;NO;p;-;Y;N;Y;N;Y;N;double_consonant;;;;;;;;;;;;;;;;;;;;;
145;bleibt;Bleibt;1;116.000.000;116.000.000;6;6;1;1;1;CCVVCC;no_capital_letter;NO;YES;NO;b;B;Y;N;Y;N;Y;N;sound_distinction;;;;;;;;;;;;;;;;;;;;;
146;braucht;Braucht;1;61.600.000;61.600.000;7;7;1;1;1;CCVV;no_capital_letter;NO;YES;NO;b;B;Y;N;Y;N;Y;N;sound_distinction;;;;;;;;;;;;;;;;;;;;;
147;sein;Sein;1;589.000.000;589.000.000;4;4;1;1;1;CVVC;no_capital_letter;NO;YES;NO;s;S;N;N;N;N;N;N;sound_distinction;;;;;;;;;;;;;;;;;;;;;
148;gestochen;Gestochehn;2;471;2;9;10;-;-;-;-;multierror;NO;YES;NO;"g;";"G;h";N;"N;N";Y;"N;Y";Y;"N;Y";sound_distinction;;;;;;;;;;;;;;;;;;;;;
149;gestochen;Gestochen;1;471;471;9;9;1;1;1;CV;no_capital_letter;NO;YES;NO;g;G;N;N;Y;N;Y;N;sound_distinction;;;;;;;;;;;;;;;;;;;;;
150;gestochen;gestochehn;1;471;2;9;10;9;3;2;CCVC;addition;NO;NO;NO;-;h;N;N;N;Y;N;Y;sound_distinction;;;;;;;;;;;;;;;;;;;;;
151;Môcke;Môckeh;1;556;44;5;6;6;2;2;CCV;addition;NO;NO;YES;-;h;N;N;N;Y;N;Y;sound_sequence;;;;;;;;;;;;;;;;;;;;;
152;schwimmen;schwômmen;1;20.000.000;795;9;9;5;1;1;CCCCV;substitution;NO;NO;NO;i;ô;N;N;N;N;N;N;sound_distinction;;;;;;;;;;;;;;;;;;;;;
153;w_rmer;wermer;1;3.100.000;23.3;6;6;2;1;1;CVCCVC;substitution;NO;NO;NO;_;e;N;N;N;N;Y;N;derivation;;;;;;;;;;;;;;;;;;;;;
154;Kalb;Kalpp;2;554;1.51;4;5;-;-;-;-;multierror;NO;NO;YES;b;"p;p";Y;"Y;Y";Y;"Y;Y";Y;"Y;Y";sound_sequence;;;;;;;;;;;;;;;;;;;;;
155;Kalb;Kalp;1;554;103;4;4;4;1;1;CVCC;substitution;NO;NO;YES;b;p;Y;Y;Y;Y;Y;Y;sound_distinction;;;;;;;;;;;;;;;;;;;;;
156;Kalb;Kalbp;1;554;334;4;5;5;1;1;CVCC;addition;NO;NO;YES;-;p;N;Y;N;Y;N;Y;sound_sequence;;;;;;;;;;;;;;;;;;;;;
157;streiche;Streiche;1;505;505;8;8;1;1;1;CCCVV;no_capital_letter;NO;YES;NO;s;S;N;N;N;N;N;N;sound_distinction;;;;;;;;;;;;;;;;;;;;;
158;fliegt;Fligt;2;7.300.000;18;6;5;-;-;-;-;multierror;NO;YES;NO;"f;e";F;"N;N";N;"N;N";N;"N;N";N;lengthening;;;;;;;;;;;;;;;;;;;;;
159;fliegt;Fliegt;1;7.300.000;7.300.000;6;6;1;1;1;CCVV;no_capital_letter;NO;YES;NO;f;F;N;N;N;N;N;N;sound_distinction;;;;;;;;;;;;;;;;;;;;;
160;fliegt;fligt;1;7.300.000;18;6;5;4;1;1;CCVV;omission;NO;NO;NO;e;-;N;N;N;N;N;N;lengthening;;;;;;;;;;;;;;;;;;;;;
161;steigen;Steigen;1;16.500.000;16.500.000;7;7;1;1;1;CCVV;no_capital_letter;NO;YES;NO;s;S;N;N;N;N;N;N;sound_distinction;;;;;;;;;;;;;;;;;;;;;
162;tr_gt;Tregt;2;64.300.000;27.4;5;5;-;-;-;-;multierror;NO;YES;NO;"t;_";"T;e";"N;N";"N;N";"N;N";"N;N";"N;Y";"N;N";sound_distinction;;;;;;;;;;;;;;;;;;;;;
163;tr_gt;Tr_gt;1;64.300.000;64.300.000;5;5;1;1;1;CCV;no_capital_letter;NO;YES;NO;t;T;N;N;N;N;N;N;sound_distinction;;;;;;;;;;;;;;;;;;;;;
164;tr_gt;tregt;1;64.300.000;27.4;5;5;3;1;1;CCV;substitution;NO;NO;NO;_;e;N;N;N;N;Y;N;derivation;;;;;;;;;;;;;;;;;;;;;
165;dicker;Dicker;1;10.700.000;10.700.000;6;6;1;1;1;CVCCVC;no_capital_letter;NO;YES;NO;d;D;Y;N;Y;N;Y;N;sound_distinction;;;;;;;;;;;;;;;;;;;;;
166;stopfen;Stopfen;1;448;448;7;7;1;1;1;CCVC;no_capital_letter;YES;YES;NO;s;S;N;N;N;N;N;N;sound_distinction;;;;;;;;;;;;;;;;;;;;;
167;Kind;Kint;1;250.000.000;146;4;4;4;1;1;CVCC;substitution;NO;NO;YES;d;t;Y;N;Y;N;Y;N;sound_distinction;;;;;;;;;;;;;;;;;;;;;
168;Mutter;Moter;2;86.500.000;139;6;5;-;-;-;-;multierror;NO;NO;NO;"u;t";o;"Y;N";N;"N;N";N;"Y;N";Y;-;;;;;;;;;;;;;;;;;;;;;
169;Mutter;Motter;1;86.500.000;66.7;6;6;2;1;1;CVC;substitution;NO;NO;NO;u;o;Y;N;N;N;Y;Y;sound_distinction;;;;;;;;;;;;;;;;;;;;;
170;Mutter;Muter;1;86.500.000;227;6;5;3;1;1;CVC;omission;NO;NO;NO;t;-;N;N;N;N;N;N;double_consonant;;;;;;;;;;;;;;;;;;;;;
171;Vater;Fater;1;59.000.000;589;5;5;1;1;1;CV;substitution;NO;YES;NO;V;F;N;N;N;N;N;N;sound_distinction;;;;;;;;;;;;;;;;;;;;;
172;Katze;Kaze;1;25.100.000;335;5;4;3;1;1;CVC;omission;NO;NO;NO;t;-;N;N;N;N;N;N;sound_distinction;;;;;;;;;;;;;;;;;;;;;
173;h_ren;H_ren;1;49.600.000;49.600.000;5;5;1;1;1;CV;no_capital_letter;NO;YES;NO;h;H;N;Y;Y;Y;Y;N;sound_distinction;;;;;;;;;;;;;;;;;;;;;
174;sprechen;Sprechen;1;47.100.000;47.100.000;8;8;1;1;1;CCCV;no_capital_letter;NO;YES;NO;s;S;N;N;N;N;N;N;sound_distinction;;;;;;;;;;;;;;;;;;;;;
175;sprechen;scprechen;1;47.100.000;947;8;9;2;1;1;CCCV;addition;NO;NO;NO;-;c;N;N;N;N;N;N;consonants_combination;;;;;;;;;;;;;;;;;;;;;
176;sprechen;shprechen;1;47.100.000;265;8;9;2;1;1;CCCV;addition;NO;NO;NO;-;h;N;N;N;Y;N;Y;consonants_combination;;;;;;;;;;;;;;;;;;;;;
177;trocken;Troken;2;24.700.000;32.7;7;6;-;-;-;-;multierror;NO;YES;NO;"t;c";T;"N;N";N;"N;N";N;"N;N";N;consonants_combination;;;;;;;;;;;;;;;;;;;;;
178;trocken;Trocken;1;24.700.000;24.700.000;7;7;1;1;1;CCV;no_capital_letter;NO;YES;NO;t;T;N;N;N;N;N;N;sound_distinction;;;;;;;;;;;;;;;;;;;;;
179;trocken;troken;1;24.700.000;32.7;7;6;4;2;2;CCVC;omission;NO;NO;NO;c;-;N;N;N;N;N;N;double_consonant;;;;;;;;;;;;;;;;;;;;;
180;Menschen;menschen;1;194.000.000;194.000.000;8;8;1;1;1;CVCCCCVC;capital_letter;NO;YES;NO;M;m;N;Y;N;N;N;Y;sound_distinction;;;;;;;;;;;;;;;;;;;;;
181;Spiel;Scpiel;1;112.000.000;1.76;5;6;2;1;1;CCVVC;addition;NO;NO;NO;-;c;N;N;N;N;N;N;consonants_combination;;;;;;;;;;;;;;;;;;;;;
182;Spiel;Shpiel;1;112.000.000;1.39;5;6;2;1;1;CCVVC;addition;NO;NO;NO;-;h;N;N;N;Y;N;Y;consonants_combination;;;;;;;;;;;;;;;;;;;;;
183;Spiel;Spil;1;112.000.000;356;5;4;4;1;1;CCVVC;omission;NO;NO;NO;e;-;N;N;N;N;N;N;lengthening;;;;;;;;;;;;;;;;;;;;;
184;Spiel;Spieln;1;112.000.000;19;5;6;5;1;1;CCVVC;addition;NO;NO;YES;-;n;N;Y;N;N;N;Y;sound_sequence;;;;;;;;;;;;;;;;;;;;;
185;Spiele;spiele;1;113.000.000;113.000.000;6;6;1;1;1;CCVVCV;capital_letter;NO;YES;NO;S;s;N;N;N;N;N;N;sound_distinction;;;;;;;;;;;;;;;;;;;;;
186;laufen;Laufen;1;55.300.000;55.300.000;6;6;1;1;1;CVV;no_capital_letter;NO;YES;NO;l;L;N;N;N;N;N;N;sound_distinction;;;;;;;;;;;;;;;;;;;;;
187;Platz;Plas;2;149.000.000;406;5;4;-;-;-;-;multierror;NO;NO;NO;"t;z";s;"N;N";N;"N;N";N;"N;N";N;sound_sequence;;;;;;;;;;;;;;;;;;;;;
188;Platz;Plats;1;149.000.000;383;5;5;5;1;1;CCVCC;substitution;NO;NO;YES;z;s;N;N;N;N;N;N;sound_sequence;;;;;;;;;;;;;;;;;;;;;
189;Platz;Plazs;2;149.000.000;1.71;5;5;5;1;1;CCVCC;substitution;NO;NO;YES;t;s;N;N;N;N;N;N;sound_sequence;;;;;;;;;;;;;;;;;;;;;
190;pfeift;Pfeift;1;551;551;6;6;1;1;1;CCVVCC;no_capital_letter;NO;YES;NO;p;P;Y;N;Y;N;Y;N;sound_distinction;;;;;;;;;;;;;;;;;;;;;
191;gut;Gut;1;445.000.000;445.000.000;3;3;1;1;1;CVC;no_capital_letter;YES;YES;NO;g;G;N;N;Y;N;Y;N;sound_distinction;;;;;;;;;;;;;;;;;;;;;
192;klatschen;Klaschen;2;446;2.15;9;8;-;-;-;-;multierror;NO;YES;NO;"k;t";K;"N;N";N;"N;N";N;"N;N";N;"sound_distinction;sound_distinction";;;;;;;;;;;;;;;;;;;;;
193;klatschen;Klatschen;1;446;446;9;9;1;1;1;CCVC;no_capital_letter;NO;YES;NO;k;K;N;N;N;N;N;N;sound_distinction;;;;;;;;;;;;;;;;;;;;;
194;klatschen;klaschen;1;446;2.15;9;8;4;1;1;CCVC;omission;NO;NO;NO;t;-;N;N;N;N;N;N;sound_distinction;;;;;;;;;;;;;;;;;;;;;
195;Ballstaffeln;Ball stafeln;2;273;413;12;12;-;-;-;-;multierror;NO;NO;NO;"/;f";_;"N;N";N;"N;N";N;"N;N";N;-;;;;;;;;;;;;;;;;;;;;;
196;Ballstaffeln;Ball staffeln;1;273;413;12;13;-;-;-;-;split_in;NO;NO;NO;/;_;N;N;N;N;N;N;-;;;;;;;;;;;;;;;;;;;;;
197;Ballstaffeln;Ballstafeln;1;273;0;12;11;8;2;2;CCVC;omission;NO;NO;NO;f;-;N;N;N;N;N;N;double_consonant;;;;;;;;;;;;;;;;;;;;;
198;Ball;Bal;1;68.900.000;1.820.000;4;3;4;1;1;CVCC;omission;NO;NO;YES;l;-;N;N;N;N;N;N;double_consonant;;;;;;;;;;;;;;;;;;;;;
199;B_lle;Balle;1;8.580.000;391;5;5;2;1;1;CVCCV;substitution;NO;NO;NO;_;a;N;N;N;N;Y;Y;sound_sequence;;;;;;;;;;;;;;;;;;;;;
200;fliegt;Flkt;4;7.240.000;29.9;6;4;-;-;-;-;multierror;NO;YES;NO;"f;i;e";"F;k";"N;N;N";"N;N";"N;N;N";"N;N";"N;N;N";"N;N";"sound_distinction;lengthening";;;;;;;;;;;;;;;;;;;;;
201;fliegt;Fliegt;1;7.240.000;7.240.000;6;6;1;1;1;CCVV;no_capital_letter;NO;YES;NO;f;F;N;N;N;N;N;N;sound_distinction;;;;;;;;;;;;;;;;;;;;;
202;fliegt;flegt;1;7.240.000;53.8;6;5;3;1;1;CCVV;omission;YES;NO;NO;i;-;N;N;N;N;N;N;lengthening;;;;;;;;;;;;;;;;;;;;;
203;fliegt;fligt;1;7.240.000;17.9;6;5;4;1;1;CCVV;omission;NO;NO;NO;e;-;N;N;N;N;N;N;lengthening;;;;;;;;;;;;;;;;;;;;;
204;Tor;Toar;1;108.000.000;316;3;4;3;1;1;CVC;addition;NO;NO;NO;-;a;N;N;N;N;N;Y;sound_sequence;;;;;;;;;;;;;;;;;;;;;
205;H_nde;h_nde;1;38.300.000;38.300.000;5;5;1;1;1;CVCCV;capital_letter;NO;YES;NO;H;h;Y;N;Y;Y;N;Y;sound_distinction;;;;;;;;;;;;;;;;;;;;;consonant
206;dunklen;dunkelen;1;11.800.000;76.1;7;8;5;2;2;CCVC;addition;NO;NO;NO;-;e;N;N;N;N;N;N;sound_sequence;;;;;;;;;;;;;;;;;;;;;vowel
207;darunter;darunte;1;3.210.000;18.2;8;7;8;3;3;CVC;omission;NO;NO;YES;-;r;N;N;N;N;N;N;sound_sequence;;;;;;;;;;;;;;;;;;;;;consonant
208;Laugengeb_ck;laugengebeck;2;165;32;12;12;-;-;-;-;multierror;NO;YES;NO;"L;_";"l;e";"N;N";"N;N";"N;N";"N;N";"N;Y";"N;N";sound_distinction;;;;;;;;;;;;;;;;;;;;;
209;Laugengeb_ck;Laugengebeck;1;165;32;12;12;10;4;4;CVCC;substitution;NO;NO;NO;_;e;N;N;N;N;Y;N;derivation;;;;;;;;;;;;;;;;;;;;;
210;Laugengeb_ck;laugengeb_ck;1;165;165;12;12;1;1;1;CVV;capital_letter;NO;YES;NO;L;l;N;N;N;N;N;N;sound_distinction;;;;;;;;;;;;;;;;;;;;;
211;hungrig;Hunrig;2;635;5.79;7;6;-;-;-;-;multierror;NO;YES;NO;"h;g";H;"N;N";Y;"Y;Y";Y;"Y;Y";N;"sound_distinction;sound_distinction";;;;;;;;;;;;;;;;;;;;;
212;hungrig;Hungrig;1;635;635;7;7;1;1;1;CVCC;capital_letter;NO;YES;NO;H;h;Y;N;Y;Y;N;Y;sound_distinction;;;;;;;;;;;;;;;;;;;;;
213;hungrig;hunrig;1;635;5.79;7;6;4;1;1;CVCC;omission;NO;NO;NO;g;-;N;N;Y;N;Y;N;sound_distinction;;;;;;;;;;;;;;;;;;;;;
214;_ngstlich;ónstlich;2;584;6.14;9;8;-;-;-;-;multierror;NO;NO;NO;"_;g";ó;"N;N";N;"N;Y";N;"Y;Y";N;"sound_distinction;sound_distinction";;;;;;;;;;;;;;;;;;;;;
215;_ngstlich;óngstlich;1;584;584;9;9;1;1;1;VCCCC;capital_letter;NO;YES;NO;_;ó;N;N;N;N;Y;N;sound_distinction;;;;;;;;;;;;;;;;;;;;;
216;_ngstlich;_nstlich;1;584;6.14;9;8;3;1;1;VCCCC;omission;NO;NO;NO;g;-;N;N;Y;N;Y;N;sound_distinction;;;;;;;;;;;;;;;;;;;;;
217;freundlich;freunlich;1;28.500.000;22.2;10;9;6;1;1;CCVVCC;omission;NO;NO;NO;d;-;Y;N;Y;N;Y;N;sound_distinction;;;;;;;;;;;;;;;;;;;;;
218;_ngstlich;_nkstlich;1;584;31;9;9;3;1;1;VCCCC;substitution;NO;NO;NO;g;k;N;N;Y;N;Y;N;sound_sequence;;;;;;;;;;;;;;;;;;;;;
219;schmutzig;schmuzig;1;618;131;9;8;6;1;1;CCCCVC;omission;NO;NO;NO;t;-;N;N;N;N;N;N;sound_distinction;;;;;;;;;;;;;;;;;;;;;
220;j_hrlich;jehrlich;1;18.400.000;3.83;8;8;2;1;1;CVCC;omission;NO;NO;NO;_;e;N;N;N;N;Y;N;derivation;;;;;;;;;;;;;;;;;;;;;
221;Ketten;keten;2;18.000.000;153;6;5;-;-;-;-;multierror;NO;YES;NO;"K;t";k;"N;N";N;"N;N";N;"N;N";N;"sound_distinction;sound_distinction";;;;;;;;;;;;;;;;;;;;;
222;Ketten;Keten;1;18.000.000;153;6;5;3;1;1;CVC;omission;NO;NO;NO;t;t;N;N;N;N;N;N;double_consonant;;;;;;;;;;;;;;;;;;;;;
223;Ketten;ketten;1;18.000.000;18.000.000;6;6;1;1;1;CVC;capital_letter;Yes;YES;NO;K;k;N;N;N;N;N;N;double_consonant;;;;;;;;;;;;;;;;;;;;;
224;versteckte;ferstekte;2;8.290.000;1.22;10;9;-;-;-;-;multierror;NO;YES;NO;"v;c";f;"Y;N";N;"N;N";N;"Y;N";N;"v_word;sound_distinction";;;;;;;;;;;;;;;;;;;;;
225;versteckte;fersteckte;1;8.290.000;771;10;10;1;1;1;CVC;substitution;NO;YES;NO;v;f;Y;N;N;N;Y;N;v_word;;;;;;;;;;;;;;;;;;;;;
226;versteckte;verstekte;1;8.290.000;9.01;10;9;7;2;2;CCVCCC;omission;NO;NO;NO;c;-;N;N;N;N;N;N;double_consonant;;;;;;;;;;;;;;;;;;;;;
227;schnell;schnel;1;185.000.000;422;7;6;7;1;1;CCCCVCC;omission;NO;NO;YES;l;-;N;N;N;N;N;N;double_consonant;;;;;;;;;;;;;;;;;;;;;
228;legten;leckten;2;5.600.000;68.9;6;7;-;-;-;-;multierror;YES;NO;NO;g;"c;k";N;"N;N";Y;"N;N";Y;"N;N";sound_sequence;;;;;;;;;;;;;;;;;;;;;
229;legten;lecten;1;5.600.000;5.63;6;6;3;2;2;CCVC;substitution;NO;NO;NO;g;c;N;N;Y;N;Y;N;sound_sequence;;;;;;;;;;;;;;;;;;;;;
230;legten;lekten;1;5.600.000;11.1;6;6;3;2;2;CCVC;substitution;NO;NO;NO;g;k;N;N;Y;N;Y;N;sound_distinction;;;;;;;;;;;;;;;;;;;;;
231;schlafen;schllafen;1;23.000.000;739;8;9;4;1;1;CCCCVCVC;addition;NO;NO;NO;-;l;N;N;N;N;N;N;sound_sequence;;;;;;;;;;;;;;;;;;;;;
232;glatt;glat;1;19.700.000;137;5;4;5;1;1;CCVCC;omission;NO;NO;YES;t;-;N;N;N;N;N;N;double_consonant;;;;;;;;;;;;;;;;;;;;;
233;zufrieden;zufriden;1;41.900.000;69.3;9;8;6;2;2;CCVV;omission;NO;NO;NO;e;-;N;N;N;N;N;N;lengthening;;;;;;;;;;;;;;;;;;;;;
234;dick;dieck;1;29.000.000;216;4;5;3;1;1;CVVCC;addition;NO;NO;NO;-;e;N;N;N;N;N;N;lengthening;;;;;;;;;;;;;;;;;;;;;
235;rund;runt;1;167.000.000;289;4;4;4;1;1;CVCC;substitution;NO;NO;YES;d;t;Y;N;Y;N;Y;N;derivation;;;;;;;;;;;;;;;;;;;;;
236;hôbsches;hôpsches;1;553;14.2;8;8;3;1;1;CVCCCCVC;substitution;NO;NO;NO;b;p;Y;Y;Y;Y;Y;Y;sound_distinction;;;;;;;;;;;;;;;;;;;;;
237;Kohlenkeller;Kolenkeler;2;50.5;0;12;10;-;-;-;-;multierror;NO;NO;NO;"h;l";-;"N;N";N;"Y;N";N;"Y;N";N;"sound_distinction;double_consonants";;;;;;;;;;;;;;;;;;;;;
238;Kohlenkeller;Kolenkeller;1;50.5;4;12;11;3;1;1;CVC;omission;NO;NO;NO;h;-;N;N;Y;N;Y;N;lengthening;;;;;;;;;;;;;;;;;;;;;
239;Kohlenkeller;Kohlenkeler;1;50.5;4;12;11;9;3;3;CVC;omission;NO;NO;NO;l;-;N;N;N;N;N;N;double_consonant;;;;;;;;;;;;;;;;;;;;;
240;netten;neten;1;12.800.000;462;6;5;3;1;1;CVCCVC;omission;NO;NO;NO;t;-;N;N;N;N;N;N;double_consonant;;;;;;;;;;;;;;;;;;;;;
241;Gespenster;Gesbenster;1;524;100;10;10;4;2;2;CCVC;substitution;NO;NO;NO;p;b;Y;Y;Y;Y;Y;Y;sound_sequence;;;;;;;;;;;;;;;;;;;;;
242;blitzen;blizten;1;356;2.55;8;7;"4;6";-;-;-;transposition;NO;NO;NO;t-z;z-t;"N;N";"N;N";"N;N";"N;N";"N;N";"N;N";-;;;;;;;;;;;;;;;;;;;;;
243;erz_hlten;erz_lten;1;409;4.8;9;8;5;2;2;CVC;omission;NO;NO;NO;h;-;N;N;Y;N;Y;N;sound_distinction;;;;;;;;;;;;;;;;;;;;;
244;Gruselgeschichten;Grusegschichten;2;194;0;17;15;"6;8";"2;3";"2;3";"CVC;CV";multierror;NO;NO;NO;"l;e";-;"N;N";N;"N;N";N;"N;N";N;sound_sequence;;;;;;;;;;;;;;;;;;;;;
245;Gruselgeschichten;Grusegeschichten;1;194;54;17;16;6;2;2;CVC;omission;NO;NO;NO;l;-;N;N;N;N;N;N;sound_distinction;;;;;;;;;;;;;;;;;;;;;
246;Gruselgeschichten;Gruselgschichten;1;194;372;17;16;8;3;3;CV;omission;NO;NO;NO;e;-;N;N;N;N;N;N;sound_distinction;;;;;;;;;;;;;;;;;;;;;
247;lebte;lepte;1;7.510.000;4.51;5;5;3;2;2;CCV;substitution;NO;NO;NO;b;p;Y;Y;Y;Y;Y;Y;sound_distinction;;;;;;;;;;;;;;;;;;;;;
248;Mitternacht;miternacht;2;20.900.000;3.77;11;10;"1;3";1;1;CVC;multierror;NO;YES;NO;"M;t";m;"N;N";Y;"N;N";N;"N;N";Y;"sound_distinction;sound_distinction";;;;;;;;;;;;;;;;;;;;;
249;Mitternacht;mitternacht;1;20.900.000;20.900.000;11;11;1;1;1;CVC;capital_letter;NO;YES;NO;M;m;N;Y;N;N;N;Y;sound_distinction;;;;;;;;;;;;;;;;;;;;;
250;Mitternacht;Miternacht;1;20.900.000;3.77;11;10;3;1;1;CVC;omission;NO;NO;NO;t;-;N;N;N;N;N;N;double_consonant;;;;;;;;;;;;;;;;;;;;;
251;jetzt;jetz;1;554.000.000;646;5;4;5;1;1;CVCCC;omission;NO;NO;YES;t;-;N;N;N;N;N;N;sound_sequence;;;;;;;;;;;;;;;;;;;;;
252;versteckten;ferstkten;3;3.250.000;0;11;9;-;-;-;-;multierror;NO;YES;NO;"v;e;c";f;"Y;N;N";N;"N;N;N";N;"Y;N;N";N;"v_word;sound_distinction";;;;;;;;;;;;;;;;;;;;;
253;versteckten;fersteckten;1;3.250.000;298;11;11;1;1;1;CVC;substitution;NO;YES;NO;v;f;Y;N;N;N;Y;N;v_word;;;;;;;;;;;;;;;;;;;;;
254;versteckten;verstckten;1;3.250.000;1.31;11;10;6;2;2;CCV;omission;NO;NO;NO;e;-;N;N;N;N;N;N;sound_distinction;;;;;;;;;;;;;;;;;;;;;
255;versteckten;verstekten;1;3.250.000;10.6;11;10;7;3;3;CCVC;omission;NO;NO;NO;c;-;N;N;N;N;N;N;double_consonant;;;;;;;;;;;;;;;;;;;;;
256;ihrem;iren;2;233.000.000;495;5;4;-;-;-;-;multierror;NO;NO;YES;"h;m";n;"N;Y";Y;"Y;N";N;"Y;Y";Y;"sound_distinction;sound_distinction";;;;;;;;;;;;;;;;;;;;;
257;ihrem;irem;1;233.000.000;312;5;4;2;1;1;VCCVC;omission;NO;NO;NO;h;-;N;N;Y;N;Y;N;sound_distinction;;;;;;;;;;;;;;;;;;;;;
258;ihrem;ihren;1;233.000.000;343.000.000;5;5;5;1;2;VCCVC;substitution;NO;NO;YES;m;n;Y;Y;N;N;Y;Y;sound_distinction;;;;;;;;;;;;;;;;;;;;;
259;liest;list;1;16.300.000;167.000.000;5;4;3;1;1;CVVCC;omission;NO;NO;NO;-;e;N;N;N;N;N;N;lengthening;;;;;;;;;;;;;;;;;;;;;
260;liebsten;lipsten;2;19.000.000;505;8;7;-;-;-;-;multierror;NO;NO;NO;"e;b";p;"N;Y";Y;"N;Y";Y;"N;Y";Y;"lengthening;sound_distinction";;;;;;;;;;;;;;;;;;;;;
261;liebsten;libsten;1;19.000.000;7.84;8;7;3;1;1;CVV;omission;NO;NO;NO;e;-;N;N;N;N;N;N;lengthening;;;;;;;;;;;;;;;;;;;;;
262;liebsten;liepsten;1;19.000.000;3.15;8;8;4;2;2;CCCVC;substitution;NO;NO;NO;b;p;Y;Y;Y;Y;Y;Y;sound_distinction;;;;;;;;;;;;;;;;;;;;;
263;G_nge;Genge;1;7.490.000;79;5;5;2;1;1;CVCCV;substitution;NO;NO;NO;_;e;N;N;N;N;Y;N;derivation;;;;;;;;;;;;;;;;;;;;;
264;Buckel;bukel;2;584;4.79;6;5;-;-;-;-;multierror;NO;YES;NO;"B;c";b;"N;N";Y;"N;N";Y;"N;N";Y;"sound_distinction;sound_distinction";;;;;;;;;;;;;;;;;;;;;
265;Buckel;Bukel;1;584;4.79;6;5;3;2;2;CCVC;omission;NO;NO;NO;c;-;N;N;N;N;N;N;double_consonant;;;;;;;;;;;;;;;;;;;;;
266;Buckel;buckel;1;584;584;6;6;1;1;1;CV;capital_letter;NO;YES;NO;B;b;N;Y;N;Y;N;Y;sound_distinction;;;;;;;;;;;;;;;;;;;;;
267;guckt;kokt;3;2.030.000;178;5;4;-;-;-;-;multierror;NO;YES;NO;"g;u;c";k;"N;Y;N";N;"Y;N;N";N;"Y;Y;N";N;sound_sequence;;;;;;;;;;;;;;;;;;;;;
268;guckt;kuckt;1;2.030.000;234;5;5;1;1;1;CV;substitution;NO;YES;NO;g;k;N;N;Y;N;Y;N;sound_distinction;;;;;;;;;;;;;;;;;;;;;
269;guckt;gockt;1;2.030.000;234;5;5;2;1;1;CV;substitution;NO;NO;NO;u;o;Y;N;N;N;Y;Y;sound_distinction;;;;;;;;;;;;;;;;;;;;;
270;guckt;gukt;1;2.030.000;11.6;5;4;3;2;2;CCVC;omission;NO;NO;NO;c;-;N;N;N;N;N;N;double_consonant;;;;;;;;;;;;;;;;;;;;;
271;Narbe;narbe;1;661;661;5;5;1;1;1;CVCCV;capital_letter;NO;YES;NO;N;n;N;Y;N;N;N;Y;sound_distinction;;;;;;;;;;;;;;;;;;;;;
272;Kinn;kin;2;547;14.400.000;4;3;-;-;-;-;multierror;NO;YES;YES;"K;n";k;"N;Y";N;"N;N";N;"N;Y";N;"sound_distinction;sound_distinction";;;;;;;;;;;;;;;;;;;;;
273;Kinn;kinn;1;547;547;4;4;1;1;1;CVCC;capital_letter;NO;YES;NO;K;k;N;N;N;N;N;N;sound_distinction;;;;;;;;;;;;;;;;;;;;;
274;Kinn;Kin;1;547;14.400.000;4;3;4;1;1;CVCC;omission;NO;NO;YES;n;-;Y;N;N;N;Y;N;double_consonant;;;;;;;;;;;;;;;;;;;;;
275;furchterregend;furchteregent;2;141;80;14;13;"8;14";"2;4";"2;4";"VC;CVCC";omission;NO;NO;YES;r;-;N;N;N;N;N;N;double_consonant;;;;;;;;;;;;;;;;;;;;;
276;sieht;sit;2;109.000.000;19.300.000;5;3;-;-;-;-;multierror;NO;NO;NO;"e;h";-;"N;N";N;"N;Y";N;"N;Y";N;"lengthening;sound_distinction";;;;;;;;;;;;;;;;;;;;;
277;sieht;siet;1;109.000.000;274;5;4;4;1;1;CVVCC;omission;NO;NO;NO;h;-;N;N;Y;N;Y;N;sound_distinction;;;;;;;;;;;;;;;;;;;;;
278;sieht;siht;1;109.000.000;138;5;4;3;1;1;CVVCC;omission;NO;NO;NO;e;-;N;N;N;N;N;N;lengthening;;;;;;;;;;;;;;;;;;;;;
279;gef_llt;gefelt;2;93.200.000;28.8;7;6;-;-;-;-;multierror;NO;NO;NO;"_;l";e;"N;N";N;"N;N";N;"Y;N";N;"sound_distinction;sound_distinction";;;;;;;;;;;;;;;;;;;;;
280;gef_llt;gefellt;1;93.200.000;34.7;7;7;4;2;2;CVC;substitution;NO;NO;NO;_;e;N;N;N;N;Y;N;derivation;;;;;;;;;;;;;;;;;;;;;
281;gef_llt;gef_lt;1;93.200.000;106;7;6;5;2;2;CVC;omission;NO;NO;NO;l;-;N;N;N;N;N;N;double_consonant;;;;;;;;;;;;;;;;;;;;;
282;helle;hele;1;32.400.000;443;5;4;3;1;1;CVC;omission;NO;NO;NO;l;-;N;N;N;N;N;N;double_consonant;;;;;;;;;;;;;;;;;;;;;
283;dieser;diser;1;532.000.000;264;6;5;3;1;1;CVVCVC;omission;NO;NO;NO;e;-;N;N;N;N;N;N;lengthening;;;;;;;;;;;;;;;;;;;;;
284;wird;wirt;1;810.000.000;10.700.000;4;4;4;1;1;CVCC;substitution;NO;NO;YES;d;t;Y;N;Y;N;Y;N;derivation;;;;;;;;;;;;;;;;;;;;;
285;wieder;wider;1;407.000.000;84.700.000;6;5;3;1;1;CVVCVC;omission;YES;NO;NO;e;-;N;N;N;N;N;N;lengthening;;;;;;;;;;;;;;;;;;;;;
286;Moos;Mos;1;11.000.000;529;4;3;3;1;1;CVVC;omission;NO;NO;NO;o;-;N;N;N;N;Y;N;lengthening;;;;;;;;;;;;;;;;;;;;;
287;Tulpen;tulpen;1;684;684;6;6;1;1;1;CVC;capital_letter;NO;YES;NO;T;t;N;N;N;N;N;N;sound_distinction;;;;;;;;;;;;;;;;;;;;;
288;sehen;sehn;1;250.000.000;542;5;4;4;2;2;CVC;omission;NO;NO;NO;e;-;N;N;N;N;N;N;sound_distinction;;;;;;;;;;;;;;;;;;;;;
289;Beet;Bet;1;509;12.100.000;4;3;3;1;1;CVVC;omission;NO;NO;NO;e;-;N;N;N;N;N;N;lengthening;;;;;;;;;;;;;;;;;;;;;
290;Erdbeeren;Edberen;2;723;333;9;7;-;-;-;-;multierror;NO;NO;NO;"r;e";-;"N;N";N;"N;N";N;"N;N";N;"sound_distinction;double_consonants";;;;;;;;;;;;;;;;;;;;;
291;Erdbeeren;Erdberen;1;723;6.78;9;8;5;2;2;CVV;omission;NO;NO;NO;e;-;N;N;N;N;N;N;lengthening;;;;;;;;;;;;;;;;;;;;;
292;Erdbeeren;Edbeeren;1;723;2.14;9;8;2;1;1;VCC;omission;NO;NO;NO;r;_;N;N;N;N;N;N;sound_distinction;;;;;;;;;;;;;;;;;;;;;
293;L_cher;locher;2;17.400.000;572;6;6;-;-;-;-;multierror;NO;YES;NO;"L;_";l;"N;N";N;"N;N";N;"N;Y";N;"sound_distinction;umlaut";;;;;;;;;;;;;;;;;;;;;
294;L_cher;Locher;1;17.400.000;572;6;6;2;1;1;CVCCVC;substitution;YES;NO;NO;_;o;N;N;N;N;Y;Y;Umlaut;;;;;;;;;;;;;;;;;;;;;
295;L_cher;l_cher;1;17.400.000;17.400.000;6;6;1;1;1;CVCCVC;capital_letter;NO;YES;NO;L;l;N;N;N;N;N;N;sound_distinction;;;;;;;;;;;;;;;;;;;;;
296;Farbe;fabe;2;108.000.000;364;5;4;-;-;-;-;multierror;NO;YES;NO;"F;r";f;"N;N";N;"N;N";N;"N;N";N;"sound_distinction;sound_distinction";;;;;;;;;;;;;;;;;;;;;
297;Farbe;farbe;1;108.000.000;108.000.000;5;5;1;1;1;CVC;capital_letter;NO;YES;NO;F;f;N;N;N;N;N;N;sound_distinction;;;;;;;;;;;;;;;;;;;;;
298;Farbe;Fabe;1;108.000.000;364;5;4;3;1;1;CVC;omission;NO;NO;NO;r;-;N;N;N;N;N;N;sound_distinction;;;;;;;;;;;;;;;;;;;;;
299;Anleitung;anleitung;1;38.000.000;38.000.000;9;9;1;1;1;VC;capital_letter;NO;YES;NO;A;a;N;N;N;N;N;Y;sound_distinction;;;;;;;;;;;;;;;;;;;;;
300;wollen es;wollens;2;745;256;9;7;-;-;-;-;multierror;YES;NO;NO;"_;e";_;"N;N";N;"N;N";N;"N;N";N;sound_distinction;;;;;;;;;;;;;;;;;;;;;
301;wollen es;wollenes;1;745;26.6;9;8;7;-;-;-;split_in;NO;NO;NO;_;/;N;N;N;N;N;N;-;;;;;;;;;;;;;;;;;;;;;
302;wollen es;wollen s;1;745;51.5;9;8;7;-;-;-;omission;NO;NO;NO;e;-;N;N;N;N;N;N;sound_distinction;;;;;;;;;;;;;;;;;;;;;
303;wollen;wolen;1;182.000.000;58.6;6;5;3;1;1;CVC;omission;NO;NO;NO;l;-;N;N;N;N;N;N;double_consonant;;;;;;;;;;;;;;;;;;;;;
304;runter;ronter;1;20.300.000;1.88;6;6;2;1;1;CVC;substitution;NO;NO;NO;u;o;Y;N;N;N;Y;Y;sound_distinction;;;;;;;;;;;;;;;;;;;;;
305;ihre;ire;1;659.000.000;506;4;3;2;1;1;VCCV;omission;NO;NO;NO;h;-;N;N;Y;N;Y;N;sound_distinction;;;;;;;;;;;;;;;;;;;;;
306;Haare;Hare;1;25.800.000;484;5;4;2;1;1;CVVCV;omission;NO;NO;NO;a;-;N;N;N;N;Y;N;lengthening;;;;;;;;;;;;;;;;;;;;;
307;mussten;musten;1;21.600.000;95;7;6;3;1;1;CVC;omission;NO;NO;NO;s;-;N;N;N;N;N;N;double_consonant;;;;;;;;;;;;;;;;;;;;;
308;n_chsten;n_sten;2;101.000.000;13.6;8;6;-;-;-;-;multierror;NO;NO;NO;"c;h";-;"N;N";N;"N;Y";N;"N;Y";N;sound_sequence;;;;;;;;;;;;;;;;;;;;;
309;n_chsten;n_csten;1;101.000.000;12.7;8;7;4;1;1;CVCCC;omission;NO;NO;NO;h;-;N;N;Y;N;Y;N;consonants_combination;;;;;;;;;;;;;;;;;;;;;
310;n_chsten;n_hsten;1;101.000.000;55.2;8;7;3;1;1;CVCCC;omission;NO;NO;NO;c;-;N;N;N;N;N;N;consonants_combination;;;;;;;;;;;;;;;;;;;;;
311;half;Half;1;45.800.000;45.800.000;4;4;1;1;1;CVCC;capital_letter;NO;YES;NO;h;H;N;Y;Y;Y;Y;N;sound_distinction;;;;;;;;;;;;;;;;;;;;;
312;gehen;Ghen;2;152.000.000;49.3;5;4;-;-;-;-;multierror;NO;YES;NO;"g;e";G;"N;N";N;"Y;N";N;"Y;N";N;-;;;;;;;;;;;;;;;;;;;;;
313;gehen;Gehen;1;152.000.000;152.000.000;5;5;1;1;1;CV;no_capital_letter;NO;YES;NO;g;G;N;N;Y;N;Y;N;sound_distinction;;;;;;;;;;;;;;;;;;;;;
314;gehen;ghen;1;152.000.000;49.3;5;4;2;1;1;CV;omission;NO;NO;NO;e;-;N;N;N;N;N;N;sound_distinction;;;;;;;;;;;;;;;;;;;;;
315;gehen;gen;2;152.000.000;165.000.000;5;3;-;-;-;-;multierror;NO;NO;NO;"h;e";-;"N;N";N;"Y;N";N;"Y;N";N;sound_distinction;;;;;;;;;;;;;;;;;;;;;
316;gehen;geen;1;152.000.000;565;5;4;3;2;2;CVC;omission;NO;NO;NO;h;-;N;N;Y;N;Y;N;sound_distinction;;;;;;;;;;;;;;;;;;;;;
317;gehen;gehn;1;152.000.000;1.020.000;5;4;4;2;2;CVC;omission;NO;NO;NO;e;-;N;N;N;N;N;N;sound_distinction;;;;;;;;;;;;;;;;;;;;;
318;alle;Ale;2;2.080.000.000;13.300.000;4;3;-;-;-;-;multierror;YES;YES;NO;"a;l";A;"N;N";N;"N;N";N;"Y;N";N;double_consonant;;;;;;;;;;;;;;;;;;;;;
319;alle;Alle;1;2.080.000.000;2.080.000.000;4;4;1;1;1;CV;no_capital_letter;NO;YES;NO;a;A;N;N;N;N;Y;N;sound_distinction;;;;;;;;;;;;;;;;;;;;;
320;alle;ale;1;2.080.000.000;13.300.000;4;3;2;1;1;CV;omission;NO;NO;NO;l;-;N;N;N;N;N;N;double_consonant;;;;;;;;;;;;;;;;;;;;;
321;alle;all;1;2.080.000.000;706.000.000;4;3;4;2;2;CV;omission;NO;NO;YES;e;-;N;N;N;N;N;N;sound_distinction;;;;;;;;;;;;;;;;;;;;;
322;Anpfiff;anfif;3;2.100.000;2.68;7;5;-;-;-;-;multierror;NO;YES;YES;"A;p;f";a;"N;Y;N";N;"N;Y;N";N;"N;Y;N";Y;"sound_distinction;sound_distinction;double_consonant";;;;;;;;;;;;;;;;;;;;;
323;Anpfiff;anpfiff;1;2.100.000;2.100.000;7;7;1;1;1;VC;capital_letter;NO;YES;NO;A;a;N;N;N;N;N;Y;sound_distinction;;;;;;;;;;;;;;;;;;;;;
324;Anpfiff;Anfiff;1;2.100.000;728;7;6;3;2;2;CCVCC;omission;NO;NO;NO;p;-;Y;N;Y;N;Y;N;sound_distinction;;;;;;;;;;;;;;;;;;;;;
325;Anpfiff;Anpfif;1;2.100.000;2.13;7;6;7;2;2;CCVCC;omission;NO;NO;YES;f;-;N;N;N;N;N;N;double_consonant;;;;;;;;;;;;;;;;;;;;;
326;stark;sterg;2;188.000.000;7.4;5;5;-;-;-;-;multierror;NO;NO;YES;"a;k";"e;g";"N;N";"N;N";"N;N";"N;Y";"Y;N";"N;Y";"sound_distinction;sound_distinction";;;;;;;;;;;;;;;;;;;;;
327;stark;sterk;1;188.000.000;345;5;5;2;1;1;CCVCC;substitution;NO;NO;NO;a;e;N;N;N;N;Y;N;sound_sequence;;;;;;;;;;;;;;;;;;;;;
328;stark;starg;1;188.000.000;18.5;5;5;5;1;1;CCVCC;substitution;NO;NO;YES;k;g;N;N;N;Y;N;Y;derivation;;;;;;;;;;;;;;;;;;;;;
329;st_rker;sterker;1;22.100.000;42.5;7;7;3;1;1;CCVCCVC;substitution;NO;NO;NO;_;e;N;N;N;N;Y;N;derivation;;;;;;;;;;;;;;;;;;;;;
330;w_hrend;W_rend;2;184.000.000;596;7;6;-;-;-;-;multierror;NO;YES;NO;"w;h";W;"Y;N";N;"N;Y";N;"Y;Y";N;"sound_distinction;sound_distinction";;;;;;;;;;;;;;;;;;;;;
331;w_hrend;W_hrend;1;184.000.000;184.000.000;7;7;1;1;1;CVC;no_capital_letter;NO;YES;NO;w;W;Y;N;N;N;Y;N;sound_distinction;;;;;;;;;;;;;;;;;;;;;
332;w_hrend;w_rend;1;184.000.000;596;7;6;3;1;1;CVC;omission;NO;NO;NO;h;-;N;N;Y;N;Y;N;lengthening;;;;;;;;;;;;;;;;;;;;;
333;kaufm_nnisch;Kaufm_nisch;2;526;4.52;12;11;-;-;-;-;multierror;NO;YES;NO;"k;n";K;"N;Y";N;"N;N";N;"N;Y";N;sound_distinction;;;;;;;;;;;;;;;;;;;;;
334;kaufm_nnisch;Kaufm_nnisch;1;526;526;12;12;1;1;1;CVVC;no_capital_letter;NO;YES;NO;k;K;N;N;N;N;N;N;sound_distinction;;;;;;;;;;;;;;;;;;;;;
335;kaufm_nnisch;kaufm_nisch;1;526;4.52;12;11;7;2;2;CVC;omission;NO;NO;NO;n;-;Y;N;N;N;Y;N;double_consonant;;;;;;;;;;;;;;;;;;;;;
336;haupts_chlich;haupsachlich;2;19.300.000;2.81;13;12;-;-;-;-;multierror;NO;;;"t;_";"t;a";"N;N";"N;N";"N;N";"N;N";"N;Y";"N;Y";Umlaut;;;;;;;;;;;;;;;;;;;;;
337;haupts_chlich;haups_chlich;1;19.300.000;106;13;12;5;1;1;CVVCC;omission;NO;NO;NO;t;-;N;N;N;N;N;N;sound_distinction;;;;;;;;;;;;;;;;;;;;;
338;haupts_chlich;hauptsachlich;1;19.300.000;187;13;13;7;2;2;CVCC;substitution;NO;NO;NO;_;a;N;N;N;N;Y;Y;Umlaut;;;;;;;;;;;;;;;;;;;;;
339;kontrollieren;Kondroliren;4;11.500.000;3;13;11;-;-;-;-;multierror;NO;YES;NO;"k;t;l;e";"K;d";"N;N;N;N";"N;Y";"N;N;N;N";"N;Y";"N;N;N;N";"N;Y";sound_sequence;;;;;;;;;;;;;;;;;;;;;
340;kontrollieren;Kontrollieren;1;11.500.000;11.500.000;13;13;1;1;1;CVC;no_capital_letter;NO;YES;NO;k;K;N;N;N;N;N;N;sound_distinction;;;;;;;;;;;;;;;;;;;;;
341;kontrollieren;kondrollieren;1;11.500.000;47;13;13;4;2;2;CCVC;substitution;NO;NO;NO;t;d;N;Y;N;Y;N;Y;sound_sequence;;;;;;;;;;;;;;;;;;;;;
342;kontrollieren;kontrolieren;1;11.500.000;137;13;12;7;2;2;CCVC;omission;NO;NO;NO;l;-;N;N;N;N;N;N;double_consonant;;;;;;;;;;;;;;;;;;;;;
343;kontrollieren;kontrolliren;1;11.500.000;9.28;13;12;10;3;3;CVV;omission;NO;NO;NO;e;-;N;N;N;N;N;N;lengthening;;;;;;;;;;;;;;;;;;;;;
344;unterschiedlich;underschitlich;3;18.500.000;47;15;14;-;-;-;-;multierror;NO;NO;NO;"t;e;d";"d;t";"N;N;Y";"Y;N";"N;N;Y";"Y;N";"N;N;Y";"Y;N";sound_distinction;;;;;;;;;;;;;;;;;;;;;
345;unterschiedlich;underschiedlich;1;18.500.000;3.94;15;15;3;2;2;CVC;substitution;NO;NO;NO;t;d;N;Y;N;Y;N;Y;sound_sequence;;;;;;;;;;;;;;;;;;;;;
346;unterschiedlich;unterschidlich;1;18.500.000;18;15;14;10;3;3;CCCVVC;omission;NO;NO;NO;e;-;N;N;N;N;N;N;lengthening;;;;;;;;;;;;;;;;;;;;;
347;unterschiedlich;unterschietlich;1;18.500.000;1.54;15;15;11;3;3;CCCVVC;substitution;NO;NO;NO;d;t;Y;N;Y;N;Y;N;derivation;;;;;;;;;;;;;;;;;;;;;
348;Deutschland;deutschland;1;632.000.000;632.000.000;11;11;1;1;1;CVVCCCC;capital_letter;NO;YES;NO;D;d;N;Y;N;Y;N;Y;sound_distinction;;;;;;;;;;;;;;;;;;;;;
349;deutsche;Deutsche;1;278.000.000;278.000.000;8;8;1;1;1;CVVC;no_capital_letter;NO;YES;NO;d;D;Y;N;Y;N;Y;N;sound_distinction;;;;;;;;;;;;;;;;;;;;;
350;englische;Englische;1;26.800.000;26.800.000;9;9;1;1;1;VCC;no_capital_letter;NO;YES;NO;e;E;N;N;N;N;N;N;sound_distinction;;;;;;;;;;;;;;;;;;;;;
351;gehaltvoll;gehaldvol;2;367;0;10;9;-;-;-;-;multierror;NO;NO;YES;"t;l";d;"N;N";Y;"N;N";Y;"N;N";Y;"derivation;double_consonant";;;;;;;;;;;;;;;;;;;;;
352;gehaltvoll;gehaldvoll;1;367;8;10;10;6;2;2;CVCC;substitution;NO;NO;NO;t;d;N;Y;N;Y;N;Y;derivation;;;;;;;;;;;;;;;;;;;;;
353;gehaltvoll;gehaltvol;1;367;2.93;10;9;10;3;3;CVCC;omission;NO;NO;YES;l;-;N;N;N;N;N;N;double_consonant;;;;;;;;;;;;;;;;;;;;;
354;gehabt;gehpt;2;30.500.000;481;6;5;-;-;-;-;multierror;NO;NO;NO;"a;b";p;"N;Y";Y;"N;Y";Y;"Y;Y";Y;-;;;;;;;;;;;;;;;;;;;;;
355;gehabt;gehbt;1;30.500.000;7.71;6;5;4;2;2;CVCC;omission;NO;NO;NO;a;-;N;N;N;N;Y;N;sound_sequence;;;;;;;;;;;;;;;;;;;;;
356;gehabt;gehapt;1;30.500.000;35.3;6;6;5;2;2;CVCC;substitution;NO;NO;NO;b;p;Y;Y;Y;Y;Y;Y;derivation;;;;;;;;;;;;;;;;;;;;;
357;passiv;pasif;2;8.660.000;11.6;6;5;-;-;-;-;multierror;NO;NO;YES;"s;v";f;"N;Y";N;"N;N";N;"N;Y";N;sound_distinction;;;;;;;;;;;;;;;;;;;;;
358;passiv;pasiv;1;8.660.000;30.9;6;5;3;1;1;CVC;omission;NO;NO;NO;s;-;N;N;N;N;N;N;double_consonant;;;;;;;;;;;;;;;;;;;;;
359;passiv;passif;1;8.660.000;144;6;6;6;2;2;CVC;substitution;NO;NO;YES;v;f;Y;N;N;N;Y;N;sound_distinction;;;;;;;;;;;;;;;;;;;;;
360;ôber;uber;1;1.010.000.000;28.000.000;4;4;1;1;1;VCVC;substitution;NO;YES;NO;ô;u;N;Y;N;N;N;Y;Umlaut;;;;;;;;;;;;;;;;;;;;;
361;erstatten;erstaten;1;7.780.000;4.01;9;8;6;2;2;CCVC;omission;NO;NO;NO;t;-;N;N;N;N;N;N;double_consonant;;;;;;;;;;;;;;;;;;;;;
362;vielleicht;vieleicht;1;124000000;650;10;9;4;1;1;CVVC;omission;NO;NO;NO;l;-;N;N;N;N;N;N;double_consonant;;;;;;;;;;;;;;;;;;;;;
363;interessant;indresand;4;61.700.000;403;11;9;-;-;-;-;multierror;NO;NO;YES;"t;e;s;t";"t;d";"N;N;N;N";"N;Y";"N;N;N;N";"N;Y";"N;N;N;N";"N;Y";sound_distinction;;;;;;;;;;;;;;;;;;;;;
364;interessant;inderessant;1;61.700.000;809;11;11;3;2;2;CV;substitution;NO;NO;NO;t;d;N;Y;N;Y;N;Y;sound_sequence;;;;;;;;;;;;;;;;;;;;;
365;interessant;intressant;1;61.700.000;268;11;10;4;2;2;CV;omission;NO;NO;NO;e;-;N;N;N;N;N;N;sound_sequence;;;;;;;;;;;;;;;;;;;;;
366;interessant;interesant;1;61.700.000;218;11;10;7;3;3;CVC;omission;NO;NO;NO;s;-;N;N;N;N;N;N;double_consonant;;;;;;;;;;;;;;;;;;;;;
367;Tr_nen;tr_nen;1;9.990.000;9.990.000;6;6;1;1;1;CCV;capital_letter;NO;YES;NO;T;t;N;N;N;N;N;N;sound_distinction;;;;;;;;;;;;;;;;;;;;;
368;wohnlich;wonlich;1;450;2.68;8;7;3;1;1;CVCC;omission;NO;NO;NO;h;-;N;N;Y;N;Y;N;lengthening;;;;;;;;;;;;;;;;;;;;;
369;vielschichtig;vielschichtlich;3;520;4;13;15;-;-;-;-;multierror;NO;NO;YES;g;"c;h";N;"N;N";Y;"N;Y";Y;"N;Y";sound_sequence;;;;;;;;;;;;;;;;;;;;;
370;vielschichtig;vielschichtigc;1;520;19;13;14;13;3;3;CVC;addition;NO;NO;YES;-;c;N;N;N;N;N;N;sound_sequence;;;;;;;;;;;;;;;;;;;;;
371;vielschichtig;vielschichtigh;1;520;0;13;14;14;3;3;CVC;addition;NO;NO;NO;-;h;N;N;N;Y;N;Y;sound_sequence;;;;;;;;;;;;;;;;;;;;;
372;vielschichtig;vielschichticg;1;520;0;13;14;13;3;3;CVC;addition;NO;NO;NO;-;c;N;N;N;N;N;N;sound_sequence;;;;;;;;;;;;;;;;;;;;;
373;vielschichtig;vielschichtihg;1;520;0;13;14;13;3;3;CVC;addition;NO;NO;NO;-;h;N;N;N;Y;N;Y;sound_sequence;;;;;;;;;;;;;;;;;;;;;
374;vielschichtig;vielschichti;1;520;12.2;13;12;13;3;3;CVC;omission;NO;NO;YES;g;-;N;N;Y;N;Y;N;sound_sequence;;;;;;;;;;;;;;;;;;;;;
375;wôtend;wôtent;1;4.660.000;8.97;6;6;6;2;2;CVCC;substitution;NO;NO;YES;d;t;Y;N;Y;N;Y;N;derivation;;;;;;;;;;;;;;;;;;;;;
376;Erl_uterung;erleuterung;2;6.060.000;31.8;11;11;-;-;-;-;multierror;NO;YES;NO;"E;_";"e;e";"N;N";"N;N";"N;N";"N;N";"N;Y";"N;N";-;;;;;;;;;;;;;;;;;;;;;
377;Erl_uterung;erl_uterung;1;6.060.000;6.060.000;11;11;1;1;1;VC;capital_letter;NO;YES;NO;E;e;N;N;N;N;N;N;sound_distinction;;;;;;;;;;;;;;;;;;;;;
378;Erl_uterung;Erleuterung;1;6.060.000;31.8;11;11;4;2;2;CVV;substitution;NO;NO;NO;a;e;N;N;N;N;Y;N;derivation;;;;;;;;;;;;;;;;;;;;;
379;môhsam;môsam;1;3.940.000;5.53;6;5;3;1;1;CVC;omission;NO;NO;NO;h;-;N;N;Y;N;Y;N;derivation;;;;;;;;;;;;;;;;;;;;;
380;geh_uft;geheuft;1;514;976;7;7;4;2;2;CVVCC;substitution;NO;NO;NO;_;e;N;N;N;N;Y;N;derivation;;;;;;;;;;;;;;;;;;;;;
381;sieht;sieth;1;109.000.000;12.7;5;5;-;1;1;CVVCC;transposition;NO;NO;YES;h-t;t-h;"N;N;N";"N;N;N";"Y;N;N";"N;N;Y";"Y;N;N";"N;N;Y";sound_sequence;;;;;;;;;;;;;;;;;;;;;
382;Stab;stab;1;12.900.000;12.900.000;4;4;1;1;1;CCVC;capital_letter;NO;YES;NO;S;s;N;N;N;N;N;N;-;;;;;;;;;;;;;;;;;;;;;
383;Hof;hof;1;89.100.000;89.100.000;3;3;1;1;1;CVC;capital_letter;NO;YES;NO;H;h;Y;N;Y;Y;N;Y;-;;;;;;;;;;;;;;;;;;;;;
384;gl_nzte;gl_nzde;1;531;743;7;7;6;2;2;CCV;substitution;NO;NO;NO;t;d;N;Y;N;Y;N;Y;sound_sequence;;;;;;;;;;;;;;;;;;;;;
385;Vieh;fie;2;1.460.000;586;4;3;-;-;-;-;multierror;NO;YES;YES;"V;h";f;"N;N";N;"N;Y";N;"N;Y";N;-;;;;;;;;;;;;;;;;;;;;;
386;Vieh;vieh;1;1.460.000;1.460.000;4;4;1;1;1;CVVC;capital_letter;NO;YES;NO;V;v;N;Y;N;N;N;Y;-;;;;;;;;;;;;;;;;;;;;;
387;Vieh;Fieh;1;1.460.000;64.6;4;4;1;1;1;CVVC;substitution;NO;YES;NO;V;F;N;N;N;N;N;N;-;;;;;;;;;;;;;;;;;;;;;
388;Vieh;Vie;1;1.460.000;31.700.000;4;3;4;1;1;CVVC;omission;NO;YES;YES;h;-;N;N;Y;N;Y;N;sound_sequence;;;;;;;;;;;;;;;;;;;;;
389;Proviant;proviejand;4;467;0;8;10;-;-;-;-;multierror;NO;YES;YES;"P;a;d";"p;j;d";"N;N;Y";"Y;N;Y";"N;N;Y";"Y;N;Y";"N;Y;Y";"Y;N;Y";-;;;;;;;;;;;;;;;;;;;;;
390;Proviant;proviant;1;467;467;8;8;1;1;1;CCV;capital_letter;NO;YES;NO;P;p;N;Y;N;Y;N;Y;-;;;;;;;;;;;;;;;;;;;;;
391;Proviant;Provieant;1;467;88;8;9;6;2;2;CV;addition;NO;NO;NO;-;e;N;N;N;N;N;N;-;;;;;;;;;;;;;;;;;;;;;
392;Proviant;Provijant;1;467;116;8;9;6;2;2;CV;addition;NO;NO;NO;-;j;N;N;N;N;N;N;sound_sequence;;;;;;;;;;;;;;;;;;;;;
393;Proviant;Proviand;1;467;7.97;8;8;8;3;3;VCC;substitution;NO;NO;YES;t;d;N;Y;N;Y;N;Y;derivation;;;;;;;;;;;;;;;;;;;;;
394;Fu_ballmannschaft;Fu_balmanchafat;4;462;0;17;15;-;-;-;-;multierror;NO;NO;YES;"l;n;s";a;"N;Y;N";N;"N;N;N";N;"N;Y;N";Y;-;;;;;;;;;;;;;;;;;;;;;
395;Fu_ballmannschaft;Fu_balmannschaft;1;462;304;17;16;6;2;2;CVCC;omission;NO;NO;NO;l;-;N;N;N;N;N;N;double_consonant;;;;;;;;;;;;;;;;;;;;;
396;Fu_ballmannschaft;Fu_ballmanschaft;1;462;14.9;17;16;10;3;3;CVCC;omission;NO;NO;NO;n;-;Y;N;N;N;Y;N;double_consonant;;;;;;;;;;;;;;;;;;;;;
397;Fu_ballmannschaft;Fu_ballmannchaft;1;462;186;17;16;12;4;4;CCCVCC;omission;NO;NO;NO;s;-;N;N;N;N;N;N;sound_sequence;;;;;;;;;;;;;;;;;;;;;
398;Fu_ballmannschaft;Fu_ballmannschafat;1;462;0;17;18;17;4;4;CCCVCC;addition;NO;NO;YES;-;a;N;N;N;N;N;Y;-;;;;;;;;;;;;;;;;;;;;;
399;Mannschaftsspiele;maschtsspiele;5;61.6;0;17;13;-;-;-;-;multierror;NO;YES;NO;"M;n;n;a;f;";-;"N;Y;Y;N;N";N;"N;N;N;N;N";N;"N;Y;Y;Y;N";N;-;;;;;;;;;;;;;;;;;;;;;
400;Mannschaftsspiele;mannschaftsspiele;1;61.6;61.6;17;17;1;1;1;CVCC;capital_letter;NO;YES;NO;M;m;N;Y;N;N;N;Y;-;;;;;;;;;;;;;;;;;;;;;
401;Mannschaftsspiele;Manschaftsspiele;1;61.6;654;17;16;3;1;1;CVCC;omission;NO;NO;NO;n;-;Y;N;N;N;Y;N;double_consonant;;;;;;;;;;;;;;;;;;;;;
402;Fu_ballturnier;Fu_baltunier;2;529;170;14;12;-;-;-;-;multierror;NO;NO;NO;"l;r";-;"N;N";N;"N;N";N;"N;N";N;-;;;;;;;;;;;;;;;;;;;;;
403;Fu_ballturnier;Fu_balturnier;1;529;1.12;14;13;6;2;2;CVCC;omission;NO;NO;NO;l;-;N;N;N;N;N;N;double_consonant;;;;;;;;;;;;;;;;;;;;;
404;Fu_ballturnier;Fu_balltunier;1;529;25.6;14;13;10;3;3;CVC;omission;NO;NO;NO;r;-;N;N;N;N;N;N;sound_sequence;;;;;;;;;;;;;;;;;;;;;
405;Tischtennisschl_ger;Tichtenesschleger;4;257;0;19;17;-;-;-;-;multierror;NO;NO;NO;"s;n;i;_";e;"N;Y;N;N";N;"N;N;N;N";N;"N;Y;N;Y";N;-;;;;;;;;;;;;;;;;;;;;;
406;Tischtennisschl_ger;Tichtennisschl_ger;1;257;243;19;18;3;1;1;CVCCC;omission;NO;NO;NO;s;-;N;N;N;N;N;N;sound_sequence;;;;;;;;;;;;;;;;;;;;;
407;Tischtennisschl_ger;Tischtenisschl_ger;1;257;1.23;19;18;8;3;3;CVC;omission;NO;NO;NO;n;-;Y;N;N;N;Y;N;double_consonant;;;;;;;;;;;;;;;;;;;;;
408;Tischtennisschl_ger;Tischtennesschl_ger;1;257;3;19;19;10;3;3;CVC;substitution;NO;NO;NO;i;e;N;N;N;N;N;N;sound_sequence;;;;;;;;;;;;;;;;;;;;;
409;Tischtennisschl_ger;Tischtennisschleger;1;257;128;19;19;16;4;4;CCCCV;substitution;NO;NO;NO;_;e;N;N;N;N;Y;N;derivation;;;;;;;;;;;;;;;;;;;;;
410;Rei_verschluss;Reisferschlos;4;8.150.000;1;14;13;-;-;-;-;multierror;NO;NO;YES;"_;v;u;s";"s;v;o";"N;Y;Y;N";"N;Y;N";"N;N;N;N";"N;N;N";"N;Y;Y;N";"N;Y;Y";-;;;;;;;;;;;;;;;;;;;;;
411;Rei_verschluss;Reisverschluss;1;8.150.000;387;14;14;4;1;1;CVVC;substitution;NO;NO;NO;_;s;N;N;N;N;N;N;__word;;;;;;;;;;;;;;;;;;;;;
412;Rei_verschluss;Rei_ferschluss;1;8.150.000;994;14;14;5;2;2;CVC;substitution;NO;NO;NO;v;f;Y;N;N;N;Y;N;-;;;;;;;;;;;;;;;;;;;;;
413;Rei_verschluss;Rei_verschloss;1;8.150.000;3.8;14;14;12;3;3;CCCCVCC;substitution;NO;NO;NO;u;s;Y;N;N;N;Y;N;sound_sequence;;;;;;;;;;;;;;;;;;;;;
414;Rei_verschluss;Rei_verschlus;1;8.150.000;70.4;14;13;15;3;3;CCCCVCC;omission;NO;NO;YES;s;-;N;N;N;N;N;N;-;;;;;;;;;;;;;;;;;;;;;
415;Geburtstagsgeschenk;Geburstagegecheng;4;739;0;19;17;-;-;-;-;multierror;NO;NO;YES;"t;s;s;k";"e;g";"N;N;N;N";"N;N";"N;N;N;N";"N;Y";"N;N;N;N";"N;Y";-;;;;;;;;;;;;;;;;;;;;;
416;Geburtstagsgeschenk;Geburstagsgeschenk;1;739;15.4;19;18;6;2;2;CVCCC;omission;NO;NO;NO;t;-;N;N;N;N;N;N;sound_sequence;;;;;;;;;;;;;;;;;;;;;
417;Geburtstagsgeschenk;Geburtstagegeschenk;1;739;1.1;19;19;11;3;3;CVCC;substitution;NO;NO;NO;s;e;N;N;N;N;N;N;sound_sequence;;;;;;;;;;;;;;;;;;;;;
418;Geburtstagsgeschenk;Geburtstagsgechenk;1;739;585;19;18;14;5;5;CCCVCC;omission;NO;NO;NO;s;-;N;N;N;N;N;N;sound_sequence;;;;;;;;;;;;;;;;;;;;;
419;Geburtstagsgeschenk;Geburtstagsgescheng;1;739;394;19;19;19;5;5;CCCVCC;substitution;NO;NO;YES;k;g;N;N;N;Y;N;Y;derivation;;;;;;;;;;;;;;;;;;;;;
420;Fernsehprogramm;Fernseprogrram;3;628;0;15;14;-;-;-;-;multierror;NO;NO;YES;"h;m";r;"N;Y";N;"Y;N";N;"Y;Y";N;-;;;;;;;;;;;;;;;;;;;;;
421;Fernsehprogramm;Fernseprogramm;1;628;1.16;15;14;7;2;2;CVC;omission;NO;NO;NO;h;-;N;N;Y;N;Y;N;derivation;;;;;;;;;;;;;;;;;;;;;
422;Fernsehprogramm;Fernsehprogrramm;1;628;64;15;16;12;4;4;CCVCC;addition;NO;NO;NO;-;r;N;N;N;N;N;N;-;;;;;;;;;;;;;;;;;;;;;
423;Fernsehprogramm;Fernsehprogram;1;628;8.11;15;14;15;4;4;CCVCC;omission;NO;NO;YES;m;-;Y;N;N;N;Y;N;double_consonant;;;;;;;;;;;;;;;;;;;;;
424;Grab;grab;1;18.000.000;18.000.000;4;4;1;1;1;CCVC;capital_letter;NO;YES;NO;G;g;N;N;N;Y;N;Y;-;;;;;;;;;;;;;;;;;;;;;
425;Spinnennetz;Spinnennes;2;450;10;11;10;-;-;-;-;multierror;NO;NO;YES;"t;z";s;"N;N";N;"N;N";N;"N;N";N;-;;;;;;;;;;;;;;;;;;;;;
426;Spinnennetz;Spinnennets;1;450;53;11;11;11;3;3;CVCC;substitution;NO;NO;YES;z;s;N;N;N;N;N;N;sound_sequence;;;;;;;;;;;;;;;;;;;;;
427;Spinnennetz;Spinnennesz;1;450;2;11;11;10;3;3;CVCC;substitution;NO;NO;NO;t;s;N;N;N;N;N;N;sound_sequence;;;;;;;;;;;;;;;;;;;;;
428;Spinnennetz;Spinnennestz;1;450;4;11;12;10;3;3;CVCC;addition;NO;NO;NO;-;s;N;N;N;N;N;N;sound_sequence;;;;;;;;;;;;;;;;;;;;;
429;Spinnennetz;Spinnennetzs;1;450;70;11;12;12;3;3;CVCC;addition;NO;NO;YES;-;s;N;N;N;N;N;N;sound_sequence;;;;;;;;;;;;;;;;;;;;;
430;reagiert;reagirt;1;13.700.000;42.7;8;7;6;2;2;VCVV;omission;NO;NO;NO;e;-;N;N;N;N;N;N;lengthening;;;;;;;;;;;;;;;;;;;;;
431;verschieben;verschiben;1;13.200.000;5.07;11;10;8;2;2;CCCVV;omission;NO;NO;NO;e;-;N;N;N;N;N;N;lengthening;;;;;;;;;;;;;;;;;;;;;
432;gesellt;geselt;1;534;5.26;7;6;5;2;2;CVCCC;omission;NO;NO;NO;l;-;N;N;N;N;N;N;double_consonant;;;;;;;;;;;;;;;;;;;;;
433;trauerten;Trauerten;1;67.4;67.4;9;9;1;1;1;CCVV;no_capital_letter;NO;YES;NO;t;T;N;N;N;N;N;N;-;;;;;;;;;;;;;;;;;;;;;
434;Torwart;Torward;1;5.630.000;5.25;7;7;7;2;2;CVCC;substitution;NO;NO;YES;t;d;N;Y;N;Y;N;Y;derivation;;;;;;;;;;;;;;;;;;;;;
435;Torwandschie_en;Torwandschiesen;1;218;393;15;15;13;4;4;CCCVV;substitution;NO;NO;NO;_;s;N;N;N;N;N;N;__word;;;;;;;;;;;;;;;;;;;;;
436;Schiedsrichter;Schisrechter;3;9.520.000;0;14;12;-;-;-;-;multierror;NO;NO;NO;"e;d;e";"e;d;e";"N;Y;N";"N;Y;N";"N;Y;N";"N;Y;N";"N;Y;N";"N;Y;N";-;;;;;;;;;;;;;;;;;;;;;
437;Schiedsrichter;Schidsrichter;1;9.520.000;3.02;14;13;5;1;1;CCCVVCC;omission;NO;NO;NO;e;-;N;N;N;N;N;N;lengthening;;;;;;;;;;;;;;;;;;;;;
438;Schiedsrichter;Schiesrichter;1;9.520.000;1.74;14;13;6;1;1;CCCVVCC;omission;NO;NO;NO;d;-;Y;N;Y;N;Y;N;sound_sequence;;;;;;;;;;;;;;;;;;;;;
439;Schiedsrichter;Schiedsrechter;1;9.520.000;522;14;14;9;2;2;CVCC;substitution;NO;NO;NO;i;e;N;N;N;N;N;N;sound_sequence;;;;;;;;;;;;;;;;;;;;;
440;Schiedsrichter;schidsricher;3;9.520.000;17;14;12;-;-;-;-;multierror;NO;YES;NO;"S;e;t";"s;e";"N;N;N";"N;N";"N;N;N";"N;N";"N;N;N";"N;N";-;;;;;;;;;;;;;;;;;;;;;
441;Schiedsrichter;schiedsrichter;1;9.520.000;9.510.000;14;14;1;1;1;CCCVVCC;capital_letter;NO;NO;NO;S;s;N;N;N;N;N;N;-;;;;;;;;;;;;;;;;;;;;;
442;Schiedsrichter;Schiedsricher;1;9.520.000;9.54;14;13;11;3;3;CVC;omission;NO;NO;NO;t;-;N;N;N;N;N;N;sound_sequence;;;;;;;;;;;;;;;;;;;;;
443;dauernd;dauernt;1;4.950.000;142;7;7;7;2;2;VCCC;substitution;NO;NO;YES;d;t;Y;N;Y;N;Y;N;derivation;;;;;;;;;;;;;;;;;;;;;
444;doofe;Dove;3;565;8.520.000;5;4;-;-;-;-;multierror;NO;YES;NO;"d;o;v";"D;v";"Y;N;Y";"N;Y";"Y;N;N";"N;N";"Y;Y;Y";"N;Y";-;;;;;;;;;;;;;;;;;;;;;
445;doofe;Doofe;1;565;565;5;5;1;1;1;CVVCV;no_capital_letter;NO;YES;NO;d;D;Y;N;Y;N;Y;N;-;;;;;;;;;;;;;;;;;;;;;
446;doofe;dofe;1;565;27.5;5;4;2;1;1;CVVCV;omission;NO;NO;NO;o;-;N;N;N;N;Y;N;lengthening;;;;;;;;;;;;;;;;;;;;;
447;doofe;doove;1;565;5.16;5;5;4;2;1;CVVCV;substitution;NO;NO;NO;f;v;N;Y;N;N;N;Y;-;;;;;;;;;;;;;;;;;;;;;
448;Computer;Commputer;1;208.000.000;2.75;8;9;3;1;1;CVC;addition;NO;NO;NO;-;m;N;Y;N;N;N;Y;-;;;;;;;;;;;;;;;;;;;;;
449;kaputt;kaput;1;15.200.000;436;6;5;5;2;2;CVCC;omission;NO;NO;YES;t;-;N;N;N;N;N;N;double_consonant;;;;;;;;;;;;;;;;;;;;;
450;pflegt;flegt;1;6.040.000;53.8;6;5;1;1;1;CCCVCC;omission;NO;NO;NO;p;-;Y;N;Y;N;Y;N;sound_sequence;;;;;;;;;;;;;;;;;;;;;
451;Tiger;Tieger;1;24.800.000;145;5;6;3;1;1;CV;addition;NO;NO;NO;-;e;N;N;N;N;N;N;-;;;;;;;;;;;;;;;;;;;;;
452;Geschichten;gechichten;2;30.100.000;25.4;11;10;-;-;-;-;multierror;NO;YES;NO;"G;s";-;"N;N";N;"N;N";N;"N;N";N;-;;;;;;;;;;;;;;;;;;;;;
453;Geschichten;geschichten;1;30.100.000;30.100.000;11;11;1;1;1;CV;capital_letter;NO;YES;NO;G;g;N;N;N;Y;N;Y;-;;;;;;;;;;;;;;;;;;;;;
454;Geschichten;Gechichten;1;30.100.000;25.4;11;10;3;2;2;CCCVCC;omission;NO;NO;NO;s;-;N;N;N;N;N;N;sound_sequence;;;;;;;;;;;;;;;;;;;;;
455;erz_hlen;_rz_len;2;16.700.000;44;8;7;-;-;-;-;multierror;NO;YES;NO;"e;h";_;"N;N";N;"N;Y";N;"N;Y";Y;-;;;;;;;;;;;;;;;;;;;;;
456;erz_hlen;_rz_hlen;1;16.700.000;202;8;8;1;1;1;VC;substitution;NO;YES;NO;e;_;N;N;N;N;N;Y;sound_sequence;;;;;;;;;;;;;;;;;;;;;
457;erz_hlen;erz_len;1;16.700.000;19.3;8;7;5;2;2;CVC;omission;NO;NO;NO;h;-;N;N;Y;N;Y;N;lengthening;;;;;;;;;;;;;;;;;;;;;
458;erz_hlt;erzehlt;1;16.700.000;23.5;7;7;4;2;2;CVC;substitution;NO;NO;NO;_;e;N;N;N;N;Y;N;derivation;;;;;;;;;;;;;;;;;;;;;
459;mutig;muttig;1;4.040.000;2.27;5;6;3;1;1;CVC;addition;NO;NO;NO;-;t;N;N;N;N;N;N;-;;;;;;;;;;;;;;;;;;;;;
460;niemand;nimmand;1;62.800.000;6.63;7;7;-;-;-;-;multierror;NO;NO;NO;e;m;N;Y;N;N;N;Y;-;;;;;;;;;;;;;;;;;;;;;
461;niemand;nimand;1;62.800.000;44.2;7;6;3;1;1;CVV;omission;NO;NO;NO;e;-;N;N;N;N;N;N;lengthening;;;;;;;;;;;;;;;;;;;;;
462;niemand;niemmand;1;62.800.000;1.71;7;8;4;2;2;CVCC;addition;NO;NO;NO;-;m;N;Y;N;N;N;Y;-;;;;;;;;;;;;;;;;;;;;;
463;frôhstôcken;frôchtugen;5;2.370.000;0;11;10;-;-;-;-;multierror;NO;NO;NO;"s;ô;c;k";"c;u;g";"N;N;N;N";"N;Y;N";"N;N;N;N";"N;N;Y";"N;N;N;N";"N;Y;Y";-;;;;;;;;;;;;;;;;;;;;;
464;frôhstôcken;frôchstôcken;1;2.370.000;1.54;11;12;4;1;1;CCVC;addition;NO;NO;NO;-;c;N;N;N;N;N;N;sound_sequence;;;;;;;;;;;;;;;;;;;;;
465;frôhstôcken;frôhtôcken;1;2.370.000;1.92;11;10;5;2;2;CCV;omission;NO;NO;NO;s;-;N;N;N;N;N;N;sound_sequence;;;;;;;;;;;;;;;;;;;;;
466;frôhstôcken;frôhstucken;1;2.370.000;6.35;11;11;7;2;2;CCV;substitution;NO;NO;NO;ô;u;N;Y;N;N;N;Y;sound_sequence;;;;;;;;;;;;;;;;;;;;;
467;frôhstôcken;frôhstôcgen;1;2.370.000;3;11;11;9;3;3;CCVC;substitution;NO;NO;NO;k;g;N;N;N;Y;N;Y;-;;;;;;;;;;;;;;;;;;;;;
468;frôhstôcken;frôhstôgken;1;2.370.000;5;11;11;8;3;3;CCVC;substitution;NO;NO;NO;c;g;N;N;N;Y;N;Y;-;;;;;;;;;;;;;;;;;;;;;
469;zusammen;zusamen;1;162.000.000;238;8;7;5;2;2;CVC;omission;NO;NO;NO;m;-;Y;N;N;N;Y;N;double_consonant;;;;;;;;;;;;;;;;;;;;;
470;zusammen;zu sammen;1;162.000.000;206;8;9;-;-;-;-;split_in;YES;NO;NO;/;_;N;N;N;N;N;N;-;;;;;;;;;;;;;;;;;;;;;
471;sammelten;samelten;1;533;992;9;8;3;1;1;CVC;omission;NO;NO;NO;m;-;Y;N;N;N;Y;N;double_consonant;;;;;;;;;;;;;;;;;;;;;
472;glôcklich;Glôcklich;1;32.900.000;32.900.000;9;9;1;1;1;CCVCC;no_capital_letter;NO;YES;NO;g;G;N;N;Y;N;Y;N;-;;;;;;;;;;;;;;;;;;;;;
473;krômeln;Grômeln;1;183;745;7;7;-;-;-;-;multierror;NO;YES;NO;k;G;N;N;N;N;N;N;sound_sequence;;;;;;;;;;;;;;;;;;;;;
474;krômeln;Krômeln;1;183;183;7;7;1;1;1;CCV;no_capital_letter;NO;YES;NO;k;K;N;N;N;N;N;N;-;;;;;;;;;;;;;;;;;;;;;
475;krômeln;grômeln;1;183;745;7;7;1;1;1;CCV;substitution;NO;YES;NO;k;g;N;N;N;Y;N;Y;sound_sequence;;;;;;;;;;;;;;;;;;;;;
476;knuddeln;knudeln;1;466;10.1;8;7;4;1;1;CCVC;omission;NO;NO;NO;d;-;Y;N;Y;N;Y;N;double_consonant;;;;;;;;;;;;;;;;;;;;;
477;Blume;Blumme;1;15.400.000;13.8;5;6;4;2;2;CV;addition;NO;NO;NO;-;m;N;Y;N;N;N;Y;-;;;;;;;;;;;;;;;;;;;;;
478;rieche;riche;1;449;440;6;5;3;1;1;CVV;omission;NO;NO;NO;e;-;N;N;N;N;N;N;lengthening;;;;;;;;;;;;;;;;;;;;;
479;kennengelernt;kennergelert;2;4.940.000;4;13;12;-;-;-;-;multierror;NO;NO;NO;"n;n";r;"Y;Y";N;"N;N";N;"Y;Y";N;-;;;;;;;;;;;;;;;;;;;;;
480;kennengelernt;kennergelernt;1;4.940.000;4.37;13;13;6;2;2;CVC;substitution;NO;NO;NO;n;r;Y;N;N;N;Y;N;sound_sequence;;;;;;;;;;;;;;;;;;;;;
481;kennengelernt;kennengelert;1;4.940.000;8.47;13;12;12;4;4;CVCCC;omission;NO;NO;NO;n;-;Y;N;N;N;Y;N;sound_sequence;;;;;;;;;;;;;;;;;;;;;
482;Hoffnung;Hofnung;1;26.400.000;79.6;8;7;3;1;1;CVC;omission;NO;NO;NO;f;-;N;N;N;N;N;N;"double_consonant;derivation";;;;;;;;;;;;;;;;;;;;;
483;endlich;entlich;1;80.500.000;384;7;7;3;1;1;VCC;substitution;NO;NO;NO;d;t;Y;N;Y;N;Y;N;derivation;;;;;;;;;;;;;;;;;;;;;
484;waren;varen;1;305.000.000;305.000.000;5;5;1;1;1;CVCVC;substitution;NO;YES;NO;w;v;Y;Y;N;N;Y;Y;-;;;;;;;;;;;;;;;;;;;;;
485;ziemlich;zimlich;1;50.700.000;238;8;7;3;1;1;CVVC;omission;NO;NO;NO;e;-;N;N;N;N;N;N;lengthening;;;;;;;;;;;;;;;;;;;;;
486;Munition;Munditton;2;3.710.000;0;8;9;-;-;-;-;multierror;NO;NO;NO;i;"d;t";N;"Y;N";N;"Y;N";N;"Y;N";-;;;;;;;;;;;;;;;;;;;;;
487;Munition;Mundition;1;3.710.000;323;8;9;4;2;2;CV;addition;NO;NO;NO;-;d;N;Y;N;Y;N;Y;sound_sequence;;;;;;;;;;;;;;;;;;;;;
488;Munition;Munittion;1;3.710.000;3.95;8;9;5;3;3;CV;addition;NO;NO;NO;-;t;N;N;N;N;N;N;-;;;;;;;;;;;;;;;;;;;;;
489;Munition;Muniton;1;3.710.000;13.3;8;7;6;3;3;CV;omission;NO;NO;NO;i;-;N;N;N;N;N;N;sound_sequence;;;;;;;;;;;;;;;;;;;;;
490;bevor;Befor;2;78.900.000;257;5;5;-;-;-;-;multierror;NO;YES;NO;"b;v";"B;f";"Y;Y";"N;N";"Y;N";"N;N";"Y;Y";"N;N";-;;;;;;;;;;;;;;;;;;;;;
491;bevor;Bevor;1;78.900.000;78.900.000;5;5;1;1;1;CV;no_capital_letter;NO;YES;NO;b;B;Y;N;Y;N;Y;N;-;;;;;;;;;;;;;;;;;;;;;
492;bevor;befor;1;78.900.000;257;5;5;3;2;2;CVC;substitution;NO;NO;NO;v;f;Y;N;N;N;Y;N;-;;;;;;;;;;;;;;;;;;;;;
493;fehlte;vehlte;1;6.740.000;277;6;6;1;1;1;CVC;substitution;NO;YES;NO;f;v;N;Y;N;N;N;Y;-;;;;;;;;;;;;;;;;;;;;;
494;Packung;packung;1;13.400.000;13.400.000;7;7;1;1;1;CVCC;capital_letter;NO;YES;NO;P;p;N;Y;N;Y;N;Y;-;;;;;;;;;;;;;;;;;;;;;
495;_sterreichischen;_sterreicheschen;1;56.100.000;1.51;16;16;11;-;-;-;substitution;NO;NO;NO;i;e;N;N;N;N;N;N;sound_sequence;;;;;;;;;;;;;;;;;;;;;
496;weil;weiel;1;217.000.000;12.2;4;5;4;1;1;CVVC;addition;NO;NO;NO;-;e;N;N;N;N;N;N;sound_sequence;;;;;;;;;;;;;;;;;;;;;
497;konnte;konte;1;119.000.000;204;6;5;3;1;1;CVCC;omission;NO;NO;NO;n;-;Y;N;N;N;Y;N;double_consonant;;;;;;;;;;;;;;;;;;;;;
498;arbeiteten;arbeitetten;1;2.640.000;97;10;11;8;-;-;-;addition;NO;NO;NO;-;t;N;N;N;N;N;N;-;;;;;;;;;;;;;;;;;;;;;
499;Ritter;Rrtter;1;26.400.000;1.03;6;6;2;1;1;CVC;substitution;NO;NO;NO;i;r;N;N;N;N;N;N;-;;;;;;;;;;;;;;;;;;;;;
500;abliefern;ablifern;1;537;1.05;9;8;5;2;2;CVV;omission;NO;NO;NO;e;-;N;N;N;N;N;N;lengthening;;;;;;;;;;;;;;;;;;;;;
501;lebten;lebtten;1;865;627;6;7;4;-;-;-;addition;NO;NO;NO;-;t;N;N;N;N;N;N;-;;;;;;;;;;;;;;;;;;;;;
502;M_dchen;Madchen;1;107.000.000;462;7;7;2;1;1;CVC;substitution;NO;NO;NO;_;a;N;N;N;N;Y;Y;-;;;;;;;;;;;;;;;;;;;;;
503;Gestalt;gestalt;1;23.400.000;23.400.000;7;7;1;1;1;CV;capital_letter;NO;YES;NO;G;g;N;N;N;Y;N;Y;-;;;;;;;;;;;;;;;;;;;;;
504;und;unt;1;3.380.000.000;353;3;3;3;1;1;VCC;substitution;NO;NO;YES;d;t;Y;N;Y;N;Y;N;-;;;;;;;;;;;;;;;;;;;;;
505;wirkte;wirgte;1;6.510.000;324;6;6;4;2;2;CVC;substitution;NO;NO;NO;k;g;N;N;N;Y;N;Y;sound_sequence;;;;;;;;;;;;;;;;;;;;;
506;sp_ter;schpeter;3;120.000.000;2.99;6;8;-;-;-;-;multierror;NO;NO;NO;_;"c;h;e";N;"N;N;N";N;"N;Y;N";Y;"N;Y;N";-;;;;;;;;;;;;;;;;;;;;;
507;sp_ter;scp_ter;1;120.000.000;243;6;7;2;1;1;CCVCVC;addition;NO;NO;NO;-;c;N;N;N;N;N;N;-;;;;;;;;;;;;;;;;;;;;;
508;sp_ter;shp_ter;1;120.000.000;57;6;7;2;1;1;CCVCVC;addition;NO;NO;NO;-;h;N;N;N;Y;N;Y;-;;;;;;;;;;;;;;;;;;;;;
509;sp_ter;speter;1;120.000.000;30.8;6;6;3;1;1;CCVCVC;substitution;NO;NO;NO;_;e;N;N;N;N;Y;N;-;;;;;;;;;;;;;;;;;;;;;
510;Essen;essen;1;235.000.000;235.000.000;5;5;1;1;1;VC;capital_letter;YES;YES;NO;E;e;N;N;N;N;N;N;-;;;;;;;;;;;;;;;;;;;;;
511;holst;holzt;1;357;64.5;5;5;4;1;1;CVCC;substitution;YES;NO;NO;s;z;N;N;N;N;N;N;sound_sequence;;;;;;;;;;;;;;;;;;;;;
512;Schlickertôte;Schickertôte;1;801;1;13;12;4;-;-;-;omission;NO;NO;NO;l;-;N;N;N;N;N;N;-;;;;;;;;;;;;;;;;;;;;;
513;ersten;erstehn;1;250.000.000;15.1;6;7;6;-;-;-;addition;NO;NO;NO;-;h;N;N;N;Y;N;Y;false_lengthening;;;;;;;;;;;;;;;;;;;;;
514;Fussball;fussball;1;41.900.000;41.900.000;8;8;1;1;1;CVCC;capital_letter;NO;YES;NO;F;f;N;N;N;N;N;N;-;;;;;;;;;;;;;;;;;;;;;
515;da;dar;1;833.000.000;342.000.000;2;3;3;1;1;CV;omission;NO;NO;YES;-;r;N;N;N;N;N;N;sound_sequence;;;;;;;;;;;;;;;;;;;;;
516;wenn;wen;1;783.000.000;57.300.000;4;3;3;1;1;CVCC;omission;YES;NO;YES;n;-;Y;N;N;N;Y;N;double_consonant;;;;;;;;;;;;;;;;;;;;;
517;Verlierer;Verlirer;1;3.600.000;2.1;9;8;6;2;2;CVV;omission;NO;NO;NO;e;-;N;N;N;N;N;N;lengthening;;;;;;;;;;;;;;;;;;;;;
518;Anstoss;Anschdos;4;446;3;7;8;-;-;-;-;multierror;NO;NO;YES;"t;s";"c;h;d";"N;N";"N;N;Y";"N;N";"N;Y;Y";"N;N";"N;Y;Y";-;;;;;;;;;;;;;;;;;;;;;
519;Anstoss;Ansctoss;1;446;430;7;8;4;2;2;CCVC;addition;NO;NO;NO;-;c;N;N;N;N;N;N;-;;;;;;;;;;;;;;;;;;;;;
520;Anstoss;Anshtoss;1;446;25;7;8;4;2;2;CCVC;addition;NO;NO;NO;-;h;N;N;N;Y;N;Y;-;;;;;;;;;;;;;;;;;;;;;
521;Anstoss;Ansdoss;1;446;61;7;7;4;2;2;CCVC;substitution;NO;NO;NO;t;d;N;Y;N;Y;N;Y;-;;;;;;;;;;;;;;;;;;;;;
522;Anstoss;Anstos;1;446;12.6;7;6;7;2;2;CCVC;omission;NO;NO;YES;s;-;N;N;N;N;N;N;-;;;;;;;;;;;;;;;;;;;;;
523;alle;ale;1;2.050.000.000;13.600.000;4;3;2;1;1;VC;omission;YES;NO;NO;l;-;N;N;N;N;N;N;double_consonant;;;;;;;;;;;;;;;;;;;;;
524;dadurch;dahdurch;1;95.800.000;190;7;8;3;1;1;CV;addition;NO;NO;NO;-;h;N;N;N;Y;N;Y;false_lengthening;;;;;;;;;;;;;;;;;;;;;
525;Sekunden;Sekonnden;2;31.200.000;0;8;9;-;-;-;-;multierror;NO;NO;NO;u;"o;n";Y;"N;Y";N;"N;N";Y;"Y;Y";-;;;;;;;;;;;;;;;;;;;;;
526;Sekunden;Sekonden;1;31.200.000;1.35;8;8;4;2;2;CVC;substitution;NO;NO;NO;u;o;Y;N;N;N;Y;Y;sound_sequence;;;;;;;;;;;;;;;;;;;;;
527;Sekunden;Sekunnden;1;31.200.000;1;8;9;5;2;2;CVC;addition;NO;NO;NO;-;n;N;Y;N;N;N;Y;-;;;;;;;;;;;;;;;;;;;;;
528;stutzt;stuzt;1;191;3.11;6;5;4;1;1;CCVCCC;omission;NO;NO;NO;t;-;N;N;N;N;N;N;sound_sequence;;;;;;;;;;;;;;;;;;;;;
529;anschliessen;antschlizen;4;846;0;12;11;-;-;-;-;multierror;NO;NO;NO;"e;s;s";"t;z";"N;N;N";"N;N";"N;N;N";"N;N";"N;N;N";"N;N";-;;;;;;;;;;;;;;;;;;;;;
530;anschliessen;antschliessen;1;846;28;12;13;3;1;1;VC;addition;NO;NO;NO;-;t;N;N;N;N;N;N;sound_sequence;;;;;;;;;;;;;;;;;;;;;
531;anschliessen;anschlissen;1;846;22.8;12;11;8;2;2;CCCCVV;omission;NO;NO;NO;e;-;N;N;N;N;N;N;lengthening;;;;;;;;;;;;;;;;;;;;;
532;anschliessen;anschliezen;2;846;343;12;11;9;2;2;CCCCVV;substitution;NO;NO;NO;ss;z;"N;N";N;"N;N";N;"N;N";N;sound_sequence;;;;;;;;;;;;;;;;;;;;;
533;wollte;wohlte;1;95.800.000;7.73;6;6;3;1;1;CVC;substitution;NO;NO;NO;l;h;N;N;N;Y;N;Y;double_consonant;;;;;;;;;;;;;;;;;;;;;
534;geschubst;geschupst;1;296;24.6;9;9;7;2;2;CCCVC;substitution;NO;NO;NO;b;p;Y;Y;Y;Y;Y;Y;sound_sequence;;;;;;;;;;;;;;;;;;;;;
535;hatte;hate;1;256.000.000;7.500.000;5;4;3;1;1;CVC;omission;NO;NO;NO;t;-;N;N;N;N;N;N;double_consonant;;;;;;;;;;;;;;;;;;;;;
536;letzte;leste;2;196.000.000;9.380.000;6;5;-;-;-;-;multierror;NO;NO;NO;"t;z";s;"N;N";N;"N;N";N;"N;N";N;-;;;;;;;;;;;;;;;;;;;;;
537;letzte;lezte;1;196.000.000;160;6;5;3;1;1;CVCC;omission;NO;NO;NO;t;-;N;N;N;N;N;N;-;;;;;;;;;;;;;;;;;;;;;
538;letzte;letste;1;196.000.000;31.3;6;6;4;1;1;CVCC;substitution;NO;NO;NO;z;s;N;N;N;N;N;N;sound_sequence;;;;;;;;;;;;;;;;;;;;;
539;Pause;pause;1;54.000.000;54.000.000;5;5;1;1;1;CVV;capital_letter;NO;YES;NO;P;p;N;Y;N;Y;N;Y;-;;;;;;;;;;;;;;;;;;;;;
540;besten;beste;1;217.000.000;234.000.000;6;5;6;2;2;CVC;omission;YES;NO;YES;n;-;Y;N;N;N;Y;N;sound_sequence;;;;;;;;;;;;;;;;;;;;;
541;kam;kamm;1;141.000.000;376;3;4;4;1;1;CVC;addition;NO;NO;YES;-;m;N;Y;N;N;N;Y;false_lengthening;;;;;;;;;;;;;;;;;;;;;
542;Freundin;Freunden;1;28.500.000;50.800.000;8;8;7;2;2;CVC;substitution;YES;NO;NO;i;e;N;N;N;N;N;N;sound_sequence;;;;;;;;;;;;;;;;;;;;;
543;M_dchen;m_dchen;1;108.000.000;108.000.000;7;7;1;1;1;CVC;capital_letter;NO;YES;NO;M;m;N;Y;N;N;N;Y;-;;;;;;;;;;;;;;;;;;;;;
544;versucht;fersucht;1;39.100.000;16.4;8;8;1;1;1;CVC;substitution;NO;YES;NO;v;f;Y;N;N;N;Y;N;-;;;;;;;;;;;;;;;;;;;;;
545;unser Problem;unserbroblem;2;385;1;13;12;-;-;-;-;multierror;NO;NO;NO;"_;P";"/;b";"N;N";"N;Y";"N;N";"N;Y";"N;N";"N;Y";-;;;;;;;;;;;;;;;;;;;;;
546;unser Problem;unserProblem;1;385;455;13;12;-;-;-;-;split_in;NO;NO;NO;_;/;N;N;N;N;N;N;-;;;;;;;;;;;;;;;;;;;;;
547;unser Problem;unser Broblem;1;385;31;13;13;-;-;-;-;substitution;NO;YES;NO;B;P;N;N;N;N;N;N;sound_sequence;;;;;;;;;;;;;;;;;;;;;
548;unser Problem;unser problem;1;385;385;13;13;-;-;-;-;capital_letter;NO;YES;NO;P;p;N;Y;N;Y;N;Y;-;;;;;;;;;;;;;;;;;;;;;
549;Problem;Porblem;1;385;56.3;7;7;-;-;-;-;transposition;NO;NO;NO;o-r;r-o;"N;N;N";"N;N;N";"N;N;N";"N;N;N";"Y;N;N";"N;N;Y";-;;;;;;;;;;;;;;;;;;;;;
550;Brille;brille;1;19.400.000;19.400.000;6;6;1;1;1;CCVC;capital_letter;NO;YES;NO;B;b;N;Y;N;Y;N;Y;-;;;;;;;;;;;;;;;;;;;;;
551;sieht;sit;2;109.000.000;18.300.000;5;3;"3;4";1;1;-;multierror;NO;NO;NO;"e;h";-;"N;N";N;"N;Y";N;"N;Y";N;-;;;;;;;;;;;;;;;;;;;;;
552;sieht;siht;1;109.000.000;139;5;4;3;1;1;CCVC;omission;NO;NO;NO;e;-;N;N;N;N;N;N;-;;;;;;;;;;;;;;;;;;;;;
553;sieht;siet;1;109.000.000;277;5;4;4;1;1;CCVC;omission;NO;NO;NO;h;-;N;N;Y;N;Y;N;lengthening;;;;;;;;;;;;;;;;;;;;;
554;nicht;nich;1;1.270.000.000;20.000.000;5;4;5;1;1;CVCCC;omission;NO;NO;YES;t;-;N;N;N;N;N;N;sound_sequence;;;;;;;;;;;;;;;;;;;;;
555;h_rt;hort;1;42.300.000;11.800.000;4;4;2;1;1;CVCC;substitution;NO;NO;NO;_;o;N;N;N;N;Y;Y;-;;;;;;;;;;;;;;;;;;;;;
556;prôgeln;Brôgelln;2;545;5;7;8;-;"1;2";"1;2";"CVC;CVCC";multierror;NO;YES;NO;p;"B;l";Y;"N;N";Y;"N;N";Y;"N;N";-;;;;;;;;;;;;;;;;;;;;;
557;prôgeln;Brôgeln;1;545;3.88;7;7;1;1;1;CCV;no_capital_letter;NO;YES;NO;p;P;Y;N;Y;N;Y;N;-;;;;;;;;;;;;;;;;;;;;;
558;prôgeln;brôgeln;1;545;3.88;7;7;1;1;1;CCV;substitution;NO;YES;NO;p;b;Y;Y;Y;Y;Y;Y;sound_sequence;;;;;;;;;;;;;;;;;;;;;
559;prôgeln;prôgelln;1;545;184;7;8;6;2;2;CCV;addition;NO;NO;NO;-;l;N;N;N;N;N;N;-;;;;;;;;;;;;;;;;;;;;;
560;Bescheid;bescheit;2;14.400.000;88.4;8;8;"1;8";"1;2";"1;2";"CV;CCCVVC";multierror;NO;YES;YES;"B;d";"b;t";"N;Y";"Y;N";"N;Y";"Y;N";"N;Y";"Y;N";-;;;;;;;;;;;;;;;;;;;;;
561;Bescheid;bescheid;1;14.400.000;14.400.000;8;8;1;1;1;CV;capital_letter;NO;YES;NO;B;b;N;Y;N;Y;N;Y;-;;;;;;;;;;;;;;;;;;;;;
562;Bescheid;Bescheit;1;14.400.000;88.4;8;8;8;2;2;CCCVVC;substitution;NO;NO;YES;d;t;Y;N;Y;N;Y;N;derivation;;;;;;;;;;;;;;;;;;;;;
563;Fahrg_ste;fahrgeste;2;2.390.000;331;9;9;"1;6";"1;2";"1;2";"CVCC;CVCCV";multierror;NO;YES;NO;"F;_";"f;_";"N;N";"N;N";"N;N";"N;N";"N;Y";"N;Y";-;;;;;;;;;;;;;;;;;;;;;
564;Fahrg_ste;fahrg_ste;1;2.390.000;2.390.000;9;9;1;1;1;CVCC;capital_letter;NO;YES;NO;F;f;N;N;N;N;N;N;-;;;;;;;;;;;;;;;;;;;;;
565;Fahrg_ste;Fahrgeste;1;2.390.000;331;9;9;6;2;2;CVCCV;substitution;NO;NO;NO;_;e;N;N;N;N;Y;N;derivation;;;;;;;;;;;;;;;;;;;;;
566;brôllte;brôlte;1;409;1.55;7;6;4;1;1;CCVC;omission;NO;NO;NO;l;-;N;N;N;N;N;N;double_consonant;;;;;;;;;;;;;;;;;;;;;
567;fragte;frgte;1;37.400.000;4.83;6;5;3;1;1;CCV;omission;NO;NO;NO;a;-;N;N;N;N;Y;N;-;;;;;;;;;;;;;;;;;;;;;
568;stellte;schdellte;3;25.300.000;10;7;9;-;-;-;-;multierror;NO;NO;NO;t;"c;h;d";N;"N;N;Y";N;"N;Y;Y";N;"N;Y;Y";-;;;;;;;;;;;;;;;;;;;;;
569;stellte;sctellte;1;25.300.000;6;7;8;2;1;1;CCVC;addition;NO;NO;NO;-;c;N;N;N;N;N;N;-;;;;;;;;;;;;;;;;;;;;;
570;stellte;shtellte;1;25.300.000;3;7;8;2;1;1;CCVC;addition;NO;NO;NO;-;h;N;N;N;Y;N;Y;-;;;;;;;;;;;;;;;;;;;;;
571;Zorn;zorn;1;12.400.000;12.400.000;4;4;1;1;1;CVCC;capital_letter;NO;YES;NO;Z;z ;N;"N;N";N;"N;N";N;"N;N";-;;;;;;;;;;;;;;;;;;;;;
572;G_ttervater;G_tervater;1;67.2;96;11;10;3;1;1;CVC;omission;NO;NO;NO;t;-;N;N;N;N;N;N;double_consonant;;;;;;;;;;;;;;;;;;;;;
573;durchgefôhrt;durchgefôrt;1;28.200.000;24.2;12;11;10;3;3;CVCCC;omission;NO;NO;NO;h;-;N;N;Y;N;Y;N;lengthening;;;;;;;;;;;;;;;;;;;;;
574;Zeit;zeit;1;425.000.000;425.000.000;4;4;1;1;1;CVVC;capital_letter;NO;YES;NO;Z;z ;N;"N;N";N;"N;N";N;"N;N";-;;;;;;;;;;;;;;;;;;;;;
575;allgemeiner;Algemeiner;2;11.300.000;66.4;11;10;"1;2";1;1;CVV;multierror;NO;YES;NO;"a;l";"A;l";"N;N";"N;N";"N;N";"N;N";"Y;N";"N;N";-;;;;;;;;;;;;;;;;;;;;;
576;allgemeiner;Allgemeiner;1;11.300.000;11.300.000;11;11;1;1;1;CVV;no_capital_letter;NO;YES;NO;a;A;N;N;N;N;Y;N;-;;;;;;;;;;;;;;;;;;;;;
577;allgemeiner;algemeiner;1;11.300.000;66.4;11;10;3;1;1;CVV;omission;NO;NO;NO;l;-;N;N;N;N;N;N;-;;;;;;;;;;;;;;;;;;;;;
578;ganz;Ganz;1;403.000.000;403.000.000;4;4;1;1;1;CVCC;no_capital_letter;NO;YES;NO;g;G;N;N;Y;N;Y;N;-;;;;;;;;;;;;;;;;;;;;;
579;teilnehmen;teilnemen;1;18.800.000;4.96;10;9;7;2;2;CVC;omission;NO;NO;NO;h;-;N;N;Y;N;Y;N;-;;;;;;;;;;;;;;;;;;;;;
580;freie;Freie;1;65.000.000;65.000.000;5;5;1;1;1;CCVVV;no_capital_letter;YES;YES;NO;f;F;N;N;N;N;N;N;-;;;;;;;;;;;;;;;;;;;;;
581;Teilnahme;Teilname;1;25.900.000;81.7;9;8;7;2;2;CVC;omission;YES;NO;YES;h;-;N;N;Y;N;Y;N;lengthening;;;;;;;;;;;;;;;;;;;;;
582;Teilnehmer;teilnemer;2;25.900.000;11.7;10;9;"1;7";"1;2";"1;2";"CVVC;CVC";multierror;NO;YES;NO;"T;h";"t;h";"N;N";"N;N";"N;Y";"N;Y";"N;Y";"N;Y";-;;;;;;;;;;;;;;;;;;;;;
583;Teilnehmer;teilnehmer;1;25.900.000;25.900.000;10;10;1;1;1;CVVC;capital_letter;NO;YES;NO;T;t;N;N;N;N;N;N;-;;;;;;;;;;;;;;;;;;;;;
584;Teilnehmer;Teilnemer;1;25.900.000;11.7;10;9;7;2;2;CVC;omission;NO;NO;NO;h;-;N;N;Y;N;Y;N;lengthening;;;;;;;;;;;;;;;;;;;;;
585;galt;gald;1;35.900.000;139;4;4;4;1;1;CVCC;substitution;NO;NO;YES;t;d;N;Y;N;Y;N;Y;derivation;;;;;;;;;;;;;;;;;;;;;
586;Ehre;ehre;1;18.100.000;18.100.000;4;4;1;1;1;VCCV;capital_letter;NO;YES;NO;E;e;N;N;N;N;N;N;-;;;;;;;;;;;;;;;;;;;;;
587;vertrat;Vertrat;1;528;528;7;7;1;1;1;CVC;no_capital_letter;NO;YES;NO;v;V;Y;N;N;N;Y;N;-;;;;;;;;;;;;;;;;;;;;;
588;trainiert;Trainiert;1;1.580.000;1.580.000;9;9;1;1;1;CCVV;no_capital_letter;NO;YES;NO;t;T;N;N;N;N;N;N;-;;;;;;;;;;;;;;;;;;;;;
589;Zuschauer;zuschauer;1;20.700.000;20.700.000;9;9;1;1;1;CV;capital_letter;NO;YES;NO;Z;z;N;N;N;N;N;N;-;;;;;;;;;;;;;;;;;;;;;
590;hervorging;Herforging;2;450;77;10;10;"1;4";"1;2";"1;2";"CVC;CVC";multierror;NO;YES;NO;"h;v";"H;f";"N;Y";"Y;N";"Y;N";"Y;N";"Y;Y";"N;N";-;;;;;;;;;;;;;;;;;;;;;
591;hervorging;Hervorging;1;450;450;10;10;1;1;1;CVC;capital_letter;NO;YES;NO;h;H;N;Y;Y;Y;Y;N;-;;;;;;;;;;;;;;;;;;;;;
592;hervorging;herforging;1;450;77;10;10;4;2;2;CVC;substitution;NO;NO;NO;v;f;Y;N;N;N;Y;N;-;;;;;;;;;;;;;;;;;;;;;
593;ging;gihn;2;88.500.000;9.35;4;4;-;-;-;CVCC;multierror;NO;NO;YES;g;h;N;N;Y;Y;Y;Y;-;;;;;;;;;;;;;;;;;;;;;
594;ging;gihng;1;88.500.000;581;4;5;3;1;1;CVCC;addition;NO;NO;NO;-;h;N;N;N;Y;N;Y;-;;;;;;;;;;;;;;;;;;;;;
595;ging;gin;1;88.500.000;7.470.000;4;3;4;1;1;CVCC;omission;NO;NO;YES;g;-;N;N;Y;N;Y;N;sound_sequence;;;;;;;;;;;;;;;;;;;;;
596;heimkehrten;Heimkehrten;1;31.6;31.6;11;11;1;1;1;CVVC;no_capital_letter;NO;YES;NO;h;H;N;Y;Y;Y;Y;N;-;;;;;;;;;;;;;;;;;;;;;
597;Beweis;beweis;1;14.800.000;14.800.000;6;6;1;1;1;CV;capital_letter;NO;YES;NO;B;b;N;Y;N;Y;N;Y;-;;;;;;;;;;;;;;;;;;;;;
598;atmen;Atmen;1;5.310.000;5.310.000;5;5;1;1;1;VC;no_capital_letter;YES;YES;NO;a;A;N;N;N;N;Y;N;-;;;;;;;;;;;;;;;;;;;;;
599;m_chtige;M_chtige;1;3.470.000;3.470.000;8;8;1;1;1;CVCC;no_capital_letter;YES;YES;NO;m;M;Y;N;N;N;Y;N;-;;;;;;;;;;;;;;;;;;;;;
600;Auftrag;auftrag;1;33.100.000;33.100.000;7;7;1;1;1;VVC;capital_letter;NO;YES;NO;A;a;N;N;N;N;N;Y;-;;;;;;;;;;;;;;;;;;;;;
601;Sôssigkeiten;Sôsigkeiten;1;518;12;12;11;3;1;1;CVC;omission;NO;NO;NO;s;-;N;N;N;N;N;N;double_consonant;;;;;;;;;;;;;;;;;;;;;
602;Sachen;sachen;1;67.200.000;67.200.000;6;6;1;1;1;CV;capital_letter;NO;YES;NO;S;s;N;N;N;N;N;N;-;;;;;;;;;;;;;;;;;;;;;
603;kriegte;krigte;1;269;5.11;7;6;4;1;1;CCVV;omission;NO;NO;NO;e;-;N;N;N;N;N;N;lengthening;;;;;;;;;;;;;;;;;;;;;
604;teilen;Teilen;1;148.000.000;148.000.000;6;6;1;1;1;CVVC;no_capital_letter;YES;YES;NO;t;T;N;N;N;N;N;N;-;;;;;;;;;;;;;;;;;;;;;
605;nahm;nam;1;30.900.000;13.700.000;4;3;3;1;1;CVCC;omission;NO;NO;NO;h;-;N;N;Y;N;Y;N;lengthening;;;;;;;;;;;;;;;;;;;;;
606;Bonbons;Bonbongs;1;454;1.27;7;8;7;2;2;CVC;addition;NO;NO;NO;-;g;N;N;N;Y;N;Y;-;;;;;;;;;;;;;;;;;;;;;
607;das;dass;1;2.940.000.000;543.000.000;3;4;4;1;1;CVC;addition;YES;NO;YES;-;s;N;N;N;N;N;N;-;;;;;;;;;;;;;;;;;;;;;
608;kannst;kanst;1;90.000.000;408;6;5;3;1;1;CVC;omission;NO;NO;NO;n;-;Y;N;N;N;Y;N;double_consonant;;;;;;;;;;;;;;;;;;;;;
609;drau_en;drauzen;1;25.200.000;1.76;7;7;5;2;2;CVC;substitution;NO;NO;NO;_;z;N;N;N;N;N;N;__word;;;;;;;;;;;;;;;;;;;;;
610;au_erdem;ausserden;3;90.800.000;73.5;8;9;-;-;-;-;multierror;NO;NO;YES;"_;m";"s;s;n";"N;Y";"N;N;Y";"N;N";"N;N;N";"N;Y";"N;N;Y";__word;;;;;;;;;;;;;;;;;;;;;
611;au_erdem;au_serdem;1;90.800.000;3.35;8;9;4;2;2;CVC;addition;NO;NO;NO;-;s;N;N;N;N;N;N;sound_sequence;;;;;;;;;;;;;;;;;;;;;
612;au_erdem;auserdem;1;90.800.000;447;8;8;3;2;2;CVC;substitution;NO;NO;NO;_;s;N;N;N;N;N;N;__word;;;;;;;;;;;;;;;;;;;;;
613;au_erdem;au_erden;1;90.800.000;55.6;8;8;8;3;3;CVC;substitution;NO;NO;NO;m;n;Y;Y;N;N;Y;Y;sound_sequence;;;;;;;;;;;;;;;;;;;;;
614;finden;finde;1;510.000.000;11.000.000;6;5;6;2;2;CVC;omission;YES;NO;NO;n;-;Y;N;N;N;Y;N;-;;;;;;;;;;;;;;;;;;;;;
615;und das;unddas;1;198.000.000;83;7;6;-;-;-;-;split_in;NO;NO;NO;_;/;N;N;N;N;N;N;-;;;;;;;;;;;;;;;;;;;;;
616;v_llig;f_lig;2;63.300.000;5.03;6;5;-;-;-;-;multierror;NO;YES;NO;"v;l";f;"Y;N";N;"N;N";N;"Y;N";N;-;;;;;;;;;;;;;;;;;;;;;
617;v_llig;f_llig;1;63.300.000;50.5;6;6;1;1;1;CVC;substitution;NO;YES;NO;v;f;Y;N;N;N;Y;N;-;;;;;;;;;;;;;;;;;;;;;
618;v_llig;v_lig;1;63.300.000;40.5;6;5;3;1;1;CVC;omission;NO;NO;NO;l;-;N;N;N;N;N;N;double_consonant;;;;;;;;;;;;;;;;;;;;;
619;um die;umdie;1;208.000.000;80.3;6;5;-;-;-;-;split_in;NO;NO;NO;_;/;N;N;N;N;N;N;-;;;;;;;;;;;;;;;;;;;;;
620;dann;dan;1;486.000.000;36.600.000;4;3;3;1;1;CVCC;omission;NO;NO;YES;n;-;Y;N;N;N;Y;N;double_consonant;;;;;;;;;;;;;;;;;;;;;
621;presst;prest;1;443;166;6;5;4;1;1;CCVCCC;omission;NO;NO;NO;s;-;N;N;N;N;N;N;double_consonant;;;;;;;;;;;;;;;;;;;;;
622;fôllst;fôlst;1;196;3.44;6;5;3;1;1;CVCCCC;omission;NO;NO;NO;l;-;N;N;N;N;N;N;double_consonant;;;;;;;;;;;;;;;;;;;;;
623;soviel;sofiel;1;14.800.000;4.18;6;6;3;2;2;CVVC;omission;NO;NO;NO;v;f;Y;N;N;N;Y;N;-;;;;;;;;;;;;;;;;;;;;;
624;Flôssigkeit;Flôssikkeit;1;11.300.000;2.19;11;11;7;2;2;CVC;substitution;NO;NO;NO;g;k;N;N;Y;N;Y;N;derivation;;;;;;;;;;;;;;;;;;;;;
625;verdônnten;verdônten;1;377;1.9;10;9;6;2;2;CVCC;omission;NO;NO;YES;n;-;Y;N;N;N;Y;N;double_consonant;;;;;;;;;;;;;;;;;;;;;
626;schôtte;schôte;1;620;33.2;7;6;5;1;1;CCCVC;omission;NO;NO;NO;t;-;N;N;N;N;N;N;double_consonant;;;;;;;;;;;;;;;;;;;;;
627;nimm;nem;2;13.100.000;37.100.000;4;3;-;-;-;-;multierror;NO;NO;NO;"i;m";e;"N;Y";N;"N;N";N;"N;Y";N;-;;;;;;;;;;;;;;;;;;;;;
628;nimm;nim;1;13.100.000;491;4;3;3;1;1;CVCC;omission;NO;NO;NO;m;-;Y;N;N;N;Y;N;double_consonant;;;;;;;;;;;;;;;;;;;;;
629;nimm;nemm;1;13.100.000;56;4;4;2;1;1;CVCC;substitution;NO;NO;NO;i;e;N;N;N;N;N;N;sound_sequence;;;;;;;;;;;;;;;;;;;;;
630;stecke;steke;1;810;13.8;6;5;4;2;2;CCVC;omission;NO;NO;NO;c;-;N;N;N;N;N;N;double_consonant;;;;;;;;;;;;;;;;;;;;;
631;haaren;haren;1;13.500.000;363;6;5;2;1;1;CVV;omission;YES;NO;NO;a;-;N;N;N;N;Y;N;lengthening;;;;;;;;;;;;;;;;;;;;;
632;breiter;Breiter;1;8.630.000;8.630.000;7;7;1;1;1;CCVV;no_capital_letter;NO;YES;NO;b;B;Y;N;Y;N;Y;N;-;;;;;;;;;;;;;;;;;;;;;
633;Mund;mund;1;48.700.000;48.700.000;4;4;1;1;1;CVCC;capital_letter;NO;YES;NO;M;m;N;Y;N;N;N;Y;-;;;;;;;;;;;;;;;;;;;;;
634;Kleid;kleit;2;14.700.000;174;5;5;-;-;-;-;multierror;NO;YES;YES;"K;d";"k;t";"N;Y";"N;N";"N;Y";"N;N";"N;Y";"N;N";-;;;;;;;;;;;;;;;;;;;;;
635;Kleid;kleid;1;14.700.000;14.700.000;5;5;1;1;1;CVCCV;capital_letter;NO;YES;NO;K;k;N;N;N;N;N;N;-;;;;;;;;;;;;;;;;;;;;;
636;Kleid;Kleit;1;14.700.000;174;5;5;5;1;1;CVCCV;substitution;NO;NO;YES;d;t;Y;N;Y;N;Y;N;derivation;;;;;;;;;;;;;;;;;;;;;
637;schwarzen;Schwarzen;1;38.200.000;38.200.000;9;9;1;1;1;CCCCVC;no_capital_letter;NO;YES;NO;s;S;N;N;N;N;N;N;-;;;;;;;;;;;;;;;;;;;;;
638;gelb;Gelb;1;63.500.000;63.500.000;4;4;1;1;1;CVCC;no_capital_letter;NO;YES;NO;g;G;N;N;Y;N;Y;N;-;;;;;;;;;;;;;;;;;;;;;
639;Strumpf;strumpf;1;439;439;7;7;1;1;1;CCCVCCC;capital_letter;NO;YES;NO;S;s;N;N;N;N;N;N;-;;;;;;;;;;;;;;;;;;;;;
640;reitet;Reitet;1;564;564;6;6;1;1;1;CVVC;no_capital_letter;NO;YES;NO;r;R;N;N;N;N;N;N;-;;;;;;;;;;;;;;;;;;;;;
641;Abenteuer;abenteuer;1;33.800.000;33.800.000;9;9;1;1;1;VCVC;capital_letter;NO;YES;NO;A;a;N;N;N;N;N;Y;-;;;;;;;;;;;;;;;;;;;;;
642;Entdeckungsreisen;entdeckungsreisen;1;259;259;17;17;1;1;1;VCC;capital_letter;NO;YES;NO;E;e;N;N;N;N;N;N;-;;;;;;;;;;;;;;;;;;;;;
643;Affen;Afen;1;6.230.000;169;5;4;2;1;1;VC;omission;NO;NO;NO;f;-;N;N;N;N;N;N;double_consonant;;;;;;;;;;;;;;;;;;;;;
644;hat;hatt;1;1.340.000.000;689;3;4;3;1;1;CVC;addition;NO;NO;YES;-;t;N;N;N;N;N;N;-;;;;;;;;;;;;;;;;;;;;;
645;gesch_tzt;geschetzt;1;9.210.000;14.1;9;9;6;2;2;CCCVCCC;substitution;NO;NO;NO;_;e;N;N;N;N;Y;N;derivation;;;;;;;;;;;;;;;;;;;;;
646;offene;ofene;1;29.900.000;25.4;6;5;2;-;-;-;omission;NO;NO;NO;f;-;N;N;N;N;N;N;double_consonant;;;;;;;;;;;;;;;;;;;;;
647;Nase;nase;1;32.300.000;32.300.000;4;4;1;1;1;CVCV;capital_letter;NO;YES;NO;N;n;N;Y;N;N;N;Y;-;;;;;;;;;;;;;;;;;;;;;
648;schmôckt;schmôkt;1;463;2.97;8;7;6;2;2;CCVC;omission;NO;NO;NO;c;-;N;N;N;N;N;N;double_consonant;;;;;;;;;;;;;;;;;;;;;
649;T-Shirt;T-sirt;2;22.900.000;11.9;7;6;-;-;-;-;multierror;NO;YES;NO;"S;h";s;"N;N";N;"N;Y";N;"N;Y";N;-;;;;;;;;;;;;;;;;;;;;;
650;T-Shirt;T-shirt;1;22.900.000;22.900.000;7;7;-;-;-;-;capital_letter;NO;YES;NO;S;s;N;N;N;N;N;N;-;;;;;;;;;;;;;;;;;;;;;
651;T-Shirt;T-Sirt;1;22.900.000;11.9;7;6;-;-;-;-;omission;NO;NO;NO;h;-;N;N;Y;N;Y;N;-;;;;;;;;;;;;;;;;;;;;;
652;sie;sii;1;1.760.000.000;440000;3;3;3;1;1;CVV;substitution;NO;NO;YES;e;i;N;N;N;N;N;N;lengthening;;;;;;;;;;;;;;;;;;;;;
653;Leggings;legins;3;618;73;8;6;-;-;-;-;multierror;NO;YES;NO;"L;g;g";l;"N;N;N";N;"N;Y;Y";N;"N;Y;Y";N;-;;;;;;;;;;;;;;;;;;;;;
654;Leggings;leggings;1;618;618;8;8;1;1;1;CVC;capital_letter;NO;YES;NO;L;l;N;N;N;N;N;N;-;;;;;;;;;;;;;;;;;;;;;
655;Leggings;Legings;1;618;36.1;8;7;3;1;1;CVC;omission;NO;NO;NO;g;-;N;N;Y;N;Y;N;-;;;;;;;;;;;;;;;;;;;;;
656;Leggings;Leggins;1;618;433;8;7;7;2;2;CVCCC;omission;NO;NO;NO;g;-;N;N;Y;N;Y;N;-;;;;;;;;;;;;;;;;;;;;;
657;zielte;zihlte;1;466;1.71;6;6;3;1;1;CVV;omission;NO;NO;NO;e;-;N;N;N;N;N;N;lengthening;;;;;;;;;;;;;;;;;;;;;
658;Zeit;zeit;1;356.000.000;356.000.000;4;4;1;1;1;CVVC;capital_letter;NO;YES;NO;Z;z;N;N;N;N;N;N;-;;;;;;;;;;;;;;;;;;;;;
659;dagestanden;dah gestanden;2;74.2;1;11;13;-;-;-;-;multierror;NO;NO;NO;/;_;N;N;N;N;N;N;-;;;;;;;;;;;;;;;;;;;;;
660;dagestanden;da gestanden;1;74.2;50.8;11;12;-;-;-;-;split_in;NO;NO;NO;/;_;N;N;N;N;N;N;-;;;;;;;;;;;;;;;;;;;;;
661;dagestanden;dahgestanden;1;74.2;7;11;12;3;1;1;CV;addition;NO;NO;NO;-;h;N;N;N;Y;N;Y;-;;;;;;;;;;;;;;;;;;;;;
662;Bewegung;bewegung;1;38.900.000;38.900.000;8;8;1;1;1;CV;capital_letter;NO;YES;NO;B;b;N;Y;N;Y;N;Y;-;;;;;;;;;;;;;;;;;;;;;
663;Revolver;Rewolwer;2;452;3.27;8;8;-;-;-;-;multierror;NO;NO;NO;"v;v";"w;w";"Y;Y";"Y;Y";"N;N";"N;N";"Y;Y";"Y;Y";-;;;;;;;;;;;;;;;;;;;;;
664;Revolver;Rewolver;1;452;4.31;8;8;3;2;2;CVC;substitution;NO;NO;NO;v;w;Y;Y;N;N;Y;Y;-;;;;;;;;;;;;;;;;;;;;;
665;Revolver;Revolwer;1;452;382;8;8;6;3;3;CVC;substitution;NO;NO;NO;v;w;Y;Y;N;N;Y;Y;-;;;;;;;;;;;;;;;;;;;;;
666;anschlie_end;anschli_end;1;43.300.000;12.4;12;11;8;2;2;CCCCVVC;omission;NO;NO;NO;e;-;N;N;N;N;N;N;lengthening;;;;;;;;;;;;;;;;;;;;;
667;hob;Hob;1;20.900.000;20.900.000;3;3;1;1;1;CVC;no_capital_letter;NO;YES;NO;h;H;N;Y;Y;Y;Y;N;-;;;;;;;;;;;;;;;;;;;;;
668;rief;rif;1;13.300.000;429;4;3;3;1;1;CVVC;omission;NO;NO;NO;e;-;N;N;N;N;N;N;lengthening;;;;;;;;;;;;;;;;;;;;;
669;altes;Altes;1;32.200.000;32.200.000;5;5;1;1;1;VCCVC;no_capital_letter;NO;YES;NO;a;A;N;N;N;N;Y;N;-;;;;;;;;;;;;;;;;;;;;;
670;Haus;Hau_;1;247.000.000;471;4;4;4;1;1;CVVC;substitution;NO;NO;YES;s;_;N;N;N;N;N;N;__word;;;;;;;;;;;;;;;;;;;;;
671;wusste;wuste;1;17.300.000;241;6;5;3;1;1;CVC;omission;NO;NO;NO;s;-;N;N;N;N;N;N;-;;;;;;;;;;;;;;;;;;;;;
672;vielleicht;vieleicht;1;12.000.000;555;10;9;4;1;1;CVVC;omission;NO;NO;NO;l;-;N;N;N;N;N;N;-;;;;;;;;;;;;;;;;;;;;;
673;Wettrennen;wettrennen;1;442;442;10;10;1;1;1;CVCC;capital_letter;NO;NO;NO;L;l;N;N;N;N;N;N;-;;;;;;;;;;;;;;;;;;;;;
674;machen;mach;2;290.000.000;45.300.000;6;4;-;-;-;-;multierror;YES;NO;YES;"e;n";-;"N;Y";N;"N;N";N;"N;Y";N;-;;;;;;;;;;;;;;;;;;;;;
675;machen;mache;1;290.000.000;50.100.000;6;5;6;2;2;VC;omission;NO;NO;YES;n;-;Y;N;N;N;Y;N;-;;;;;;;;;;;;;;;;;;;;;
676;machen;machn;1;290.000.000;331;6;5;5;2;2;VC;omission;NO;NO;NO;e;-;N;N;N;N;N;N;-;;;;;;;;;;;;;;;;;;;;;
677;Nachmittag;nachmittag;1;18.900.000;18.900.000;10;10;1;1;1;CVCC;capital_letter;NO;YES;NO;N;n;N;Y;N;N;N;Y;sound_distinction;;;;;;;;;;;;;;;;;;;;;
678;Gewinner;gewinner;1;14.500.000;14.500.000;8;8;1;1;1;CV;capital_letter;NO;YES;NO;G;g;N;N;N;Y;N;Y;sound_distinction;;;;;;;;;;;;;;;;;;;;;
679;Gewinnern;gerwern;5;14.500.000;2.22;9;7;-;-;-;-;multierror;NO;YES;NO;"G;i;n;n";"g;r";"N;N;Y;Y";"N;N";"N;N;N;N";"Y;N";"N;N;Y;Y";"Y;N";-;;;;;;;;;;;;;;;;;;;;;
680;Gewinnern;gewinnern;1;14.500.000;14.500.000;9;9;1;1;1;CV;capital_letter;NO;YES;NO;G;g;N;N;N;Y;N;Y;-;;;;;;;;;;;;;;;;;;;;;
681;Gewinnern;Gerwinnern;1;14.500.000;81;9;10;3;1;1;CV;addition;NO;NO;NO;-;r;N;N;N;N;N;N;sound_sequence;;;;;;;;;;;;;;;;;;;;;
682;Gewinnern;Gewennern;1;14.500.000;3;9;9;4;2;2;CVC;substitution;NO;NO;NO;i;e;N;N;N;N;N;N;sound_sequence;;;;;;;;;;;;;;;;;;;;;
683;Gewinnern;Gewiennern;1;14.500.000;2;9;10;5;2;2;CVC;addition;NO;NO;NO;-;e;N;N;N;N;N;N;false_lengthening;;;;;;;;;;;;;;;;;;;;;
684;Gewinnern;Gewinern;1;14.500.000;771;9;8;5;2;2;CVC;omission;NO;NO;NO;n;-;Y;N;N;N;Y;N;double_consonant;;;;;;;;;;;;;;;;;;;;;
685;Gewinnern;Gewnnern;1;14.500.000;771;9;8;4;2;2;CVC;omission;NO;NO;NO;i;-;N;N;N;N;N;N;sound_sequence;;;;;;;;;;;;;;;;;;;;;
686;Essensvorrat;essensvorrat;1;3.94;3.94;12;12;1;1;1;VC;capital_letter;NO;YES;NO;E;e;N;N;N;N;N;N;-;;;;;;;;;;;;;;;;;;;;;
687;den;denn;1;3.000.000.000;264.000.000;3;4;3;1;1;CVC;addition;YES;NO;YES;-;n;N;Y;N;N;N;Y;-;;;;;;;;;;;;;;;;;;;;;
688;aussah;aus sah;1;553;75.1;6;7;-;-;-;-;split_in;YES;NO;NO;/;_;N;N;N;N;N;N;-;;;;;;;;;;;;;;;;;;;;;
689;umdrehen;um drehen;1;505;18.1;8;9;-;-;-;-;split_in;YES;NO;NO;/;_;N;N;N;N;N;N;-;;;;;;;;;;;;;;;;;;;;;
690;Strecke;strecke;1;23.700.000;23.700.000;7;7;1;1;1;CCCV;capital_letter;YES;YES;NO;S;s;N;N;N;N;N;N;-;;;;;;;;;;;;;;;;;;;;;
691;Start;start;1;404.000.000;404.000.000;5;5;1;1;1;CCVCC;capital_letter;YES;YES;NO;S;s;N;N;N;N;N;N;-;;;;;;;;;;;;;;;;;;;;;
692;starten;staten;1;68.200.000;404.000.000;7;6;4;1;1;CCVC;omission;NO;NO;NO;r;-;N;N;N;N;N;N;sound_sequence;;;;;;;;;;;;;;;;;;;;;
693;Baum;baum;1;48.700.000;48.700.000;4;4;1;1;1;CVVC;capital_letter;NO;YES;NO;B;b;N;Y;N;Y;N;Y;-;;;;;;;;;;;;;;;;;;;;;
694;sieht;sied;2;108.000.000;367;5;4;-;-;-;-;multierror;NO;NO;YES;"h;t";d;"N;N";Y;"Y;N";Y;"Y;N";Y;-;;;;;;;;;;;;;;;;;;;;;
695;sieht;siet;1;108.000.000;277;5;4;4;1;1;CVVCC;omission;NO;NO;NO;h;-;N;N;Y;N;Y;N;derivation;;;;;;;;;;;;;;;;;;;;;
696;sieht;siehd;1;108.000.000;3.95;5;5;5;1;1;CVVCC;substitution;NO;NO;YES;t;d;N;Y;N;Y;N;Y;-;;;;;;;;;;;;;;;;;;;;;
697;M_rchen;M_chen;1;14.700.000;139;7;6;3;1;1;CVC;omission;NO;NO;NO;r;-;N;N;N;N;N;N;sound_sequence;;;;;;;;;;;;;;;;;;;;;
698;schnarchen;schnechen;2;489;1.71;10;9;-;-;-;-;multierror;NO;NO;NO;"a;r";e;"N;N";N;"N;N";N;"Y;N";N;sound_sequence;;;;;;;;;;;;;;;;;;;;;
699;schnarchen;schnachen;1;489;1.11;10;9;6;1;1;CCCCVC;omission;NO;NO;NO;r;-;N;N;N;N;N;N;sound_sequence;;;;;;;;;;;;;;;;;;;;;
700;schnarchen;schnerchen;1;489;121;10;10;5;1;1;CCCCVC;substitution;NO;NO;NO;a;e;N;N;N;N;Y;N;sound_sequence;;;;;;;;;;;;;;;;;;;;;
701;k_nnen;konnen;1;589.000.000;699;6;6;2;1;1;CVC;substitution;NO;NO;NO;_;o;N;N;N;N;Y;Y;sound_sequence;;;;;;;;;;;;;;;;;;;;;
702;k_rnen;k_nnen;1;84.6;589.000.000;6;6;3;1;1;CVC;substitution;NO;NO;NO;n;r;Y;N;N;N;Y;N;sound_sequence;;;;;;;;;;;;;;;;;;;;;
703;Jahre;jahre;1;304.000.000;304.000.000;5;5;1;1;1;CVCCV;capital_letter;NO;YES;NO;J;j;N;N;N;N;N;N;-;;;;;;;;;;;;;;;;;;;;;
704;ratlos;Radlos;2;683;25;6;6;-;-;-;-;multierror;YES;YES;NO;"r;t";"R;d";"N;N";"N;Y";"N;N";"N;Y";"N;N";"N;Y";-;;;;;;;;;;;;;;;;;;;;;
705;ratlos;Ratlos;1;683;683;6;6;1;1;1;CVC;capital_letter;NO;YES;NO;r;R;N;N;N;N;N;N;-;;;;;;;;;;;;;;;;;;;;;
706;ratlos;radlos;1;683;25;6;6;3;1;1;CVC;substitution;NO;NO;NO;t;d;N;Y;N;Y;N;Y;derivation;;;;;;;;;;;;;;;;;;;;;
707;M_dchen;Madchen;1;114.000.000;436;7;7;2;1;1;CVC;substitution;NO;NO;NO;_;a;N;N;N;N;Y;Y;sound_sequence;;;;;;;;;;;;;;;;;;;;;
708;Schokolade;Sokolade;2;17.400.000;1.04;10;8;-;-;-;-;multierror;NO;NO;NO;"c;h";-;"N;N";N;"N;Y";N;"N;Y";N;sound_sequence;;;;;;;;;;;;;;;;;;;;;
709;Schokolade;Scokolade;1;17.400.000;3.31;10;9;3;1;1;CCCV;omission;NO;NO;NO;h;-;N;N;Y;N;Y;N;-;;;;;;;;;;;;;;;;;;;;;
710;Schokolade;Shokolade;1;17.400.000;40.7;10;9;2;1;1;CCCV;omission;NO;NO;NO;c;-;N;N;N;N;N;N;-;;;;;;;;;;;;;;;;;;;;;
711;Schafe;Safe;2;6.150.000;78.100.000;6;4;-;-;-;-;multierror;YES;NO;NO;"c;h";-;"N;N";N;"N;Y";N;"N;Y";N;sound_sequence;;;;;;;;;;;;;;;;;;;;;
712;Schafe;Scafe;1;6.150.000;7.56;6;5;3;1;1;CCCV;omission;NO;NO;NO;h;-;N;N;Y;N;Y;N;-;;;;;;;;;;;;;;;;;;;;;
713;Schafe;Shafe;1;6.150.000;10.7;6;5;2;1;1;CCCV;omission;NO;NO;NO;c;-;N;N;N;N;N;N;-;;;;;;;;;;;;;;;;;;;;;
714;Liebe;Libe;1;215.000.000;351;5;4;3;1;1;CVV;omission;NO;NO;NO;e;-;N;N;N;N;N;N;lengthening;;;;;;;;;;;;;;;;;;;;;
715;vorsichtig;vohrsichtig;1;12.600.000;320;10;11;3;1;1;CVC;addition;NO;NO;NO;-;h;N;N;N;Y;N;Y;false_lengthening;;;;;;;;;;;;;;;;;;;;;
716;Klassenfahrt;Klassenfahrd;1;476;303;12;12;12;3;3;CVCCC;substitution;NO;NO;YES;t;d;N;Y;N;Y;N;Y;derivation;;;;;;;;;;;;;;;;;;;;;
717;Sommer;sommer;1;19.000.000;19.000.000;6;6;1;1;1;CVC;capital_letter;NO;YES;NO;S;s;N;N;N;N;N;N;-;;;;;;;;;;;;;;;;;;;;;
718;Wochenende;wochenende;1;51.700.000;51.700.000;10;10;1;1;1;CVCC;capital_letter;NO;YES;NO;W;w;N;Y;N;N;N;Y;-;;;;;;;;;;;;;;;;;;;;;
719;Bruder;Brutter;2;40.200.000;5.56;6;7;-;-;-;-;multierror;NO;NO;NO;d;"t;t";Y;"N;N";Y;"N;N";Y;"N;N";sound_sequence;;;;;;;;;;;;;;;;;;;;;
720;Bruder;Brudter;1;40.200.000;875;6;7;5;2;2;CVC;addition;NO;NO;NO;-;t;N;N;N;N;N;N;sound_sequence;;;;;;;;;;;;;;;;;;;;;
721;Bruder;Bruter;1;40.200.000;16.7;6;6;4;2;2;CVC;substitution;NO;NO;NO;d;t;Y;N;Y;N;Y;N;sound_sequence;;;;;;;;;;;;;;;;;;;;;
722;richtig;rechdich;4;131.000.000;1.26;7;8;-;-;-;-;multierror;NO;NO;YES;"i;t;g";"e;d;c;h";"N;N;N";"N;Y;N;N";"N;N;Y";"N;Y;N;Y";"N;N;Y";"N;Y;N;Y";-;;;;;;;;;;;;;;;;;;;;;
723;richtig;rechtig;1;131.000.000;21.5;7;7;2;1;1;CVCC;substitution;NO;NO;NO;i;e;N;N;N;N;N;N;sound_sequence;;;;;;;;;;;;;;;;;;;;;
724;richtig;richdig;1;131.000.000;6.01;7;7;5;2;2;CVC;substitution;NO;NO;NO;t;d;N;Y;N;Y;N;Y;sound_sequence;;;;;;;;;;;;;;;;;;;;;
725;richtig;richtic;1;131.000.000;920;7;7;7;2;2;CVC;substitution;NO;NO;YES;g;c;N;N;Y;N;Y;N;sound_sequence;;;;;;;;;;;;;;;;;;;;;
726;richtig;richtih;1;131.000.000;5.64;7;7;7;2;2;CVC;substitution;NO;NO;YES;g;h;N;N;Y;Y;Y;Y;sound_sequence;;;;;;;;;;;;;;;;;;;;;
727;richtig;richticg;1;131.000.000;306;7;8;7;2;2;CVC;addition;NO;NO;NO;-;c;N;N;N;N;N;N;sound_sequence;;;;;;;;;;;;;;;;;;;;;
728;richtig;richtihg;1;131.000.000;2.22;7;8;7;2;2;CVC;addition;NO;NO;NO;-;h;N;N;N;Y;N;Y;sound_sequence;;;;;;;;;;;;;;;;;;;;;
729;richtig;riecht;3;131.000.000;4.570.000;7;6;-;-;-;-;multierror;NO;NO;YES;"i;g";e;"N;N";N;"N;Y";N;"N;Y";N;-;;;;;;;;;;;;;;;;;;;;;
730;richtig;riechtig;1;131.000.000;3.55;7;8;3;1;1;CVCC;addition;NO;NO;NO;-;e;N;N;N;N;N;N;false_lengthening;;;;;;;;;;;;;;;;;;;;;
731;richtig;richtg;1;131.000.000;117;7;6;6;2;2;CVC;omission;NO;NO;NO;i;-;N;N;N;N;N;N;-;;;;;;;;;;;;;;;;;;;;;
732;richtig;richti;1;131.000.000;329;7;6;7;2;2;CVC;omission;NO;NO;YES;g;-;N;N;Y;N;Y;N;-;;;;;;;;;;;;;;;;;;;;;
733;aus Versehen;aus fershen;2;437;254;12;11;-;-;-;-;multierror;NO;NO;NO;"V;e";f;"N;N";N;"N;N";N;"N;N";N;-;;;;;;;;;;;;;;;;;;;;;
734;aus Versehen;ausVersehen;1;437;445;12;11;-;-;-;-;split_in;NO;NO;NO;_;/;N;N;N;N;N;N;-;;;;;;;;;;;;;;;;;;;;;
735;aus Versehen;aus versehen;1;437;437;12;12;5;-;-;-;capital_letter;NO;YES;NO;V;v;N;Y;N;N;N;Y;-;;;;;;;;;;;;;;;;;;;;;
736;aus Versehen;aus Fersehen;1;437;2.67;12;12;5;-;-;-;substitution;NO;YES;NO;V;F;N;N;N;N;N;N;-;;;;;;;;;;;;;;;;;;;;;
737;aus Versehen;aus Vershen;1;437;2.77;12;11;9;-;-;-;omission;NO;NO;NO;e;-;N;N;N;N;N;N;-;;;;;;;;;;;;;;;;;;;;;
738;Buch;buch;1;135.000.000;135.000.000;4;4;1;1;1;CVCC;capital_letter;NO;YES;NO;B;b;N;Y;N;Y;N;Y;-;;;;;;;;;;;;;;;;;;;;;
739;eingepackt;eingebackt;1;562;1.45;10;10;6;3;3;CVCCC;substitution;NO;NO;NO;p;b;Y;Y;Y;Y;Y;Y;sound_sequence;;;;;;;;;;;;;;;;;;;;;
740;sofort;sowohrt;2;232.000.000;6;6;7;-;-;-;-;multierror;NO;NO;NO;f;"w;h";N;"Y;N";N;"N;Y";N;"Y;Y";-;;;;;;;;;;;;;;;;;;;;;
741;sofort;sowort;1;232.000.000;1.78;6;6;3;2;2;CVCC;substitution;NO;NO;NO;f;w;N;Y;N;N;N;Y;sound_sequence;;;;;;;;;;;;;;;;;;;;;
742;sofort;sofohrt;1;232.000.000;1.99;6;7;5;2;2;CVCC;addition;NO;NO;NO;h;-;N;N;Y;N;Y;N;false_lengthening;;;;;;;;;;;;;;;;;;;;;
743;dafôr;darfôr;1;163.000.000;65.7;5;6;3;1;1;CV;addition;NO;NO;NO;-;r;N;N;N;N;N;N;sound_sequence;;;;;;;;;;;;;;;;;;;;;
744;Schal;schal;1;7.610.000;7.610.000;5;5;1;1;1;CCCVC;capital_letter;NO;YES;NO;S;s;N;N;N;N;N;N;-;;;;;;;;;;;;;;;;;;;;;
745;Baumhôtte;baumhôte;2;119;536;9;8;-;-;-;-;multierror;NO;YES;NO;B;b;N;Y;N;Y;N;Y;-;;;;;;;;;;;;;;;;;;;;;
746;Baumhôtte;baumhôtte;1;119;119;9;9;1;1;1;CVVC;capital_letter;NO;YES;NO;B;b;N;Y;N;Y;N;Y;-;;;;;;;;;;;;;;;;;;;;;
747;Baumhôtte;Baumhôte;1;119;536;9;8;7;2;2;CVC;omission;NO;NO;NO;t;-;N;N;N;N;N;N;double_consonant;;;;;;;;;;;;;;;;;;;;;
748;kannst;kanst;1;89.400.000;408;6;5;3;1;1;CVC;omission;NO;NO;NO;n;-;Y;N;N;N;Y;N;double_consonant;;;;;;;;;;;;;;;;;;;;;
749;ihn;in;1;195.000.000;3.690.000.000;3;2;2;1;1;VCC;omission;YES;NO;NO;h;-;N;N;Y;N;Y;N;-;;;;;;;;;;;;;;;;;;;;;
750;hoffentlich;hofendlich;2;16.700.000;2.72;11;10;-;-;-;-;multierror;NO;NO;NO;"f;t";d;"N;N";Y;"N;N";Y;"N;N";Y;-;;;;;;;;;;;;;;;;;;;;;
751;hoffentlich;hofentlich;1;16.700.000;29.5;11;10;3;1;1;CVC;omission;NO;NO;NO;f;-;N;N;N;N;N;N;-;;;;;;;;;;;;;;;;;;;;;
752;hoffentlich;hoffendlich;1;16.700.000;167;11;11;7;2;2;CVCC;substitution;NO;NO;NO;t;d;N;Y;N;Y;N;Y;double_consonant;;;;;;;;;;;;;;;;;;;;;
753;bald;balt;1;175.000.000;266;4;4;4;1;1;CVCC;substitution;NO;NO;YES;d;t;Y;N;Y;N;Y;N;derivation;;;;;;;;;;;;;;;;;;;;;
754;wieder;wider;1;408.000.000;86.500.000;6;5;3;1;1;CVV;omission;NO;NO;NO;e;-;N;N;N;N;N;N;lengthening;;;;;;;;;;;;;;;;;;;;;
755;bis bald;bes balt;2;1.040.000;10;8;8;-;-;-;-;multierror;NO;NO;YES;"i;d";"e;d";"N;Y";"N;Y";"N;Y";"N;Y";"N;Y";"N;Y";-;;;;;;;;;;;;;;;;;;;;;
756;bis bald;bisbald;1;1.040.000;23.3;8;7;-;-;-;-;split_in;NO;NO;NO;_;/;N;N;N;N;N;N;-;;;;;;;;;;;;;;;;;;;;;
757;bis bald;bes bald;1;1.040.000;7.97;8;8;2;-;-;-;substitution;NO;YES;NO;i;e;N;N;N;N;N;N;sound_sequence;;;;;;;;;;;;;;;;;;;;;
758;bis bald;bis balt;1;1.040.000;2.18;8;8;8;-;-;-;substitution;NO;NO;YES;d;t;Y;N;Y;N;Y;N;derivation;;;;;;;;;;;;;;;;;;;;;
759;Bruder;bruder;1;40.200.000;40.200.000;6;6;1;1;1;CCV;capital_letter;NO;YES;NO;B;b;N;Y;N;Y;N;Y;-;;;;;;;;;;;;;;;;;;;;;
760;super;suber;1;187.000.000;120;5;5;3;1;1;CV;substitution;NO;NO;NO;p;b;Y;Y;Y;Y;Y;Y;sound_sequence;;;;;;;;;;;;;;;;;;;;;
761;H_hlenwanderung;holen wanderung;4;13.1;61;15;15;-;-;-;-;multierror;NO;YES;NO;"H;_;h;/";"h;_;_";"Y;N;N;N";"N;N;N";"Y;N;Y;N";"Y;N;N";"N;Y;Y;N";"Y;Y;N";-;;;;;;;;;;;;;;;;;;;;;
762;H_hlenwanderung;h_hlenwanderung;1;13.1;13.1;15;15;1;1;1;CVC;capital_letter;NO;YES;NO;C;c;N;N;N;N;N;N;-;;;;;;;;;;;;;;;;;;;;;
763;H_hlenwanderung;H_hlen wanderung;1;13.1;618;15;16;-;-;-;-;split_in;NO;NO;NO;/;_;N;N;N;N;N;N;-;;;;;;;;;;;;;;;;;;;;;
764;H_hlenwanderung;H_lenwanderung;1;13.1;131;15;14;3;1;1;CVC;omission;NO;NO;NO;h;-;N;N;Y;N;Y;N;false_lengthening;;;;;;;;;;;;;;;;;;;;;
765;H_hlenwanderung;Hohlenwanderung;1;13.1;162;15;15;2;1;1;CVC;substitution;NO;NO;NO;_;o;N;N;N;N;Y;Y;sound_sequence;;;;;;;;;;;;;;;;;;;;;
766;H_hlenwanderung;H_llenwanderung;1;13.1;849;15;15;3;1;1;CVC;substitution;NO;NO;NO;h;l;N;N;Y;N;Y;N;lengthening;;;;;;;;;;;;;;;;;;;;;
767;Spa_;schbas;5;91.000.000;1.08;4;6;-;-;-;-;multierror;NO;YES;YES;"S;p;_";"s;c;h;b;s";"N;Y;N";"N;N;N;Y;N";"N;Y;N";"N;N;Y;Y;N";"N;Y;N";"N;N;Y;Y;N";-;;;;;;;;;;;;;;;;;;;;;
768;Spa_;spa_;1;91.000.000;91.000.000;4;4;1;1;1;CCVC;capital_letter;NO;YES;NO;S;s;N;N;N;N;N;N;-;;;;;;;;;;;;;;;;;;;;;
769;Spa_;Sba_;1;91.000.000;3.48;4;4;2;1;1;CCVC;substitution;NO;NO;NO;p;b;Y;Y;Y;Y;Y;Y;-;;;;;;;;;;;;;;;;;;;;;
770;Spa_;Scpa_;1;91.000.000;137;4;5;2;1;1;CCVC;addition;NO;NO;NO;-;c;N;N;N;N;N;N;-;;;;;;;;;;;;;;;;;;;;;
771;Spa_;Shpa_;1;91.000.000;49;4;5;2;1;1;CCVC;addition;NO;NO;NO;- ;h;"N;N";N;"N;N";Y;"N;N";Y;-;;;;;;;;;;;;;;;;;;;;;
772;Spa_;Spas;1;91.000.000;486;4;4;4;1;1;CCVC;substitution;NO;NO;YES;_;s;N;N;N;N;N;N;-;;;;;;;;;;;;;;;;;;;;;
773;sofort;sufurt;2;232.000.000;2.03;6;6;-;-;-;-;multierror;NO;NO;NO;"o;o";"u;u";"N;N";"Y;Y";"N;N";"N;N";"Y;Y";"Y;Y";sound_sequence;;;;;;;;;;;;;;;;;;;;;
774;sofort;sufort;1;232.000.000;3;6;6;2;1;1;CV;substitution;NO;NO;NO;o;u;N;Y;N;N;Y;Y;sound_sequence;;;;;;;;;;;;;;;;;;;;;
775;sofort;sofurt;1;232.000.000;3.25;6;6;4;2;2;CVCC;substitution;NO;NO;NO;o;u;N;Y;N;N;Y;Y;sound_sequence;;;;;;;;;;;;;;;;;;;;;
776;sofort;sofrt;1;232.000.000;14.6;6;5;4;2;2;CVCC;omission;NO;NO;NO;o;-;N;N;N;N;Y;N;-;;;;;;;;;;;;;;;;;;;;;
777;euer;eure;1;14.300.000;70.600.000;4;4;-;-;-;-;transposition;YES;NO;YES;e-r;r-e;"N;N;N";"N;N;N";"N;N;N";"N;N;N";"N;N;N";"N;N;N";-;;;;;;;;;;;;;;;;;;;;;
778;vergessen;wergesen;2;80.800.000;1.07;9;8;-;-;-;-;multierror;NO;NO;NO;"v;s";w;"Y;N";Y;"N;N";N;"Y;N";Y;-;;;;;;;;;;;;;;;;;;;;;
779;vergessen;wergessen;1;80.800.000;2.35;9;9;1;1;1;CVC;substitution;NO;NO;NO;v;w;Y;Y;N;N;Y;Y;-;;;;;;;;;;;;;;;;;;;;;
780;vergessen;vergesen;1;80.800.000;55.3;9;8;6;2;2;CVC;omission;NO;NO;NO;s;-;N;N;N;N;N;N;sound_sequence;;;;;;;;;;;;;;;;;;;;;
781;schicken;schiken;1;41.200.000;84.8;8;7;5;2;2;CCCV;omission;NO;NO;NO;c;-;N;N;N;N;N;N;double_consonant;;;;;;;;;;;;;;;;;;;;;
782;Jahr;Jah;1;283.000.000;19.600.000;4;3;4;1;1;CVCC;omission;NO;NO;YES;-;r;N;N;N;N;N;N;double_consonant;;;;;;;;;;;;;;;;;;;;;
783;deinem;deinen;1;41.900.000;63.200.000;6;6;6;-;-;-;substitution;NO;NO;YES;m;n;Y;Y;N;N;Y;Y;sound_sequence;;;;;;;;;;;;;;;;;;;;;
784;super;supper;1;187.000.000;525;5;6;3;2;2;CVC;addition;NO;NO;NO;-;d;N;Y;N;Y;N;Y;-;;;;;;;;;;;;;;;;;;;;;
785;meinen;mein;2;127.000.000;439.000.000;6;4;-;-;-;-;multierror;YES;NO;YES;"e;n";-;"N;Y";N;"N;N";N;"N;Y";N;-;;;;;;;;;;;;;;;;;;;;;
786;meinen;meine;1;127.000.000;330.000.000;6;5;5;2;2;CVC;omission;YES;NO;YES;n;-;Y;N;N;N;Y;N;-;;;;;;;;;;;;;;;;;;;;;
787;meinen;meinn;1;127.000.000;38.5;6;5;5;2;2;CVC;omission;NO;NO;NO;e;-;N;N;N;N;N;N;-;;;;;;;;;;;;;;;;;;;;;
788;Schal;Schahl;1;7.610.000;25.9;5;6;5;1;1;CCCVC;addition;NO;NO;NO;-;h;N;N;N;Y;N;Y;false_lengthening;;;;;;;;;;;;;;;;;;;;;
789;hoffentlich;hoffenlich;1;16.700.000;63.9;11;10;7;2;2;CVCC;omission;NO;NO;NO;t;-;N;N;N;N;N;N;sound_sequence;;;;;;;;;;;;;;;;;;;;;
790;Schal;Schall;1;7.610.000;6.430.000;5;6;5;1;1;CCCVC;addition;YES;NO;NO;-;l;N;N;N;N;N;N;-;;;;;;;;;;;;;;;;;;;;;
791;Wunschberuf;Wunsch beruf;1;135;3.01;11;12;-;-;-;-;split_in;NO;NO;NO;/;_;N;N;N;N;N;N;-;;;;;;;;;;;;;;;;;;;;;
792;kriege;krige;1;10.800.000;89.1;6;5;4;1;1;CCVV;omission;NO;NO;NO;e;-;N;N;N;N;N;N;lengthening;;;;;;;;;;;;;;;;;;;;;
793;freuen;Freuen;1;74.500.000;74.500.000;6;6;1;1;1;CCVV;no_capital_letter;NO;YES;NO;f;F;N;N;N;N;N;N;-;;;;;;;;;;;;;;;;;;;;;
794;freundlichen;Freundlichen;1;16.600.000;16.600.000;12;12;1;1;1;CCVVCC;no_capital_letter;NO;YES;NO;f;F;N;N;N;N;N;N;-;;;;;;;;;;;;;;;;;;;;;
795;geehrten;geherrten;2;495;41;8;9;-;-;-;-;multierror;NO;NO;NO;e;r;N;N;N;N;N;N;-;;;;;;;;;;;;;;;;;;;;;
796;geehrten;gehrten;1;495;31.3;8;7;-;-;-;-;omission;NO;NO;NO;e;-;N;N;N;N;N;N;derivation;;;;;;;;;;;;;;;;;;;;;
797;geehrten;geehrrten;1;495;6;8;9;-;-;-;-;addition;NO;NO;NO;-;r;N;N;N;N;N;N;-;;;;;;;;;;;;;;;;;;;;;
798;motivierten;motivirten;1;2.630.000;17.9;11;10;7;3;3;CVVCC;omission;NO;NO;NO;e;-;N;N;N;N;N;N;lengthening;;;;;;;;;;;;;;;;;;;;;
799;Auszubildenden;Auszubildenen;1;2.360.000;48.7;14;13;12;5;5;CV;omission;NO;NO;NO;d;-;Y;N;Y;N;Y;N;-;;;;;;;;;;;;;;;;;;;;;
800;sportlich;Sportlich;1;11.300.000;11.300.000;9;9;1;1;1;CCVCC;no_capital_letter;NO;YES;NO;s;S;N;N;N;N;N;N;-;;;;;;;;;;;;;;;;;;;;;
801;Sportfest;Sprotfest;1;432;361;9;9;-;-;-;-;transposition;NO;NO;NO;o-r;r-o;"N;N;N";"N;N;N";"N;N;N";"N;N;N";"Y;N;N";"N;N;Y";-;;;;;;;;;;;;;;;;;;;;;
802;Sportplatz;Sprotplast;3;6.760.000;1;10;10;-;-;-;-;multierror;NO;NO;YES;"o;r;z";"o;r;s";"N;N;N";"N;N;N";"N;N;N";"N;N;N";"Y;N;N";"Y;N;N";-;;;;;;;;;;;;;;;;;;;;;
803;Sportplatz;Sprotplatz;1;6.760.000;2.23;10;10;-;-;-;-;transposition;NO;NO;NO;o-r;r-o;"N;N;N";"N;N;N";"N;N;N";"N;N;N";"Y;N;N";"N;N;Y";-;;;;;;;;;;;;;;;;;;;;;
804;Sportplatz;Sportplastz;1;6.760.000;31;10;11;9;2;2;CCVCC;addition;NO;NO;NO;-;s;N;N;N;N;N;N;-;;;;;;;;;;;;;;;;;;;;;
805;Sportplatz;Sportplat;1;6.760.000;9.22;10;9;10;2;2;CCVCC;omission;NO;NO;YES;z;-;N;N;N;N;N;N;-;;;;;;;;;;;;;;;;;;;;;
806;Sportplatz;Sportplatsz;1;6.760.000;6.760.000;10;11;10;2;2;CCVCC;addition;NO;NO;NO;-;s;N;N;N;N;N;N;-;;;;;;;;;;;;;;;;;;;;;
807;Sportplatz;Sportplatzs;1;6.760.000;1.01;10;11;11;2;2;CCVCC;addition;NO;NO;YES;-;s;N;N;N;N;N;N;-;;;;;;;;;;;;;;;;;;;;;
808;Fest;fest;1;297.000.000;297.000.000;4;4;1;1;1;CVCC;capital_letter;NO;YES;NO;F;f;N;N;N;N;N;N;-;;;;;;;;;;;;;;;;;;;;;
809;teamf_hig;Teamf_hig;1;445;445;9;9;1;1;1;CVVC;no_capital_letter;NO;YES;NO;t;T;N;N;N;N;N;N;-;;;;;;;;;;;;;;;;;;;;;
810;hinzu kommt;hinzukommt;1;3.720.000;432;11;10;-;-;-;-;split_in;NO;NO;NO;_;/;N;N;N;N;N;N;-;;;;;;;;;;;;;;;;;;;;;
811;bekommen;beckommen;1;109.000.000;28;8;9;3;2;2;CVC;addition;NO;NO;NO;-;c;N;N;N;N;N;N;-;;;;;;;;;;;;;;;;;;;;;
812;Erfahrungen;erfahrungen;1;79.900.000;79.900.000;11;11;1;1;1;VC;capital_letter;NO;YES;NO;E;e;N;N;N;N;N;N;-;;;;;;;;;;;;;;;;;;;;;
813;handwerkliches;Handwerkliches;1;586;586;14;14;1;1;1;CVCC;no_capital_letter;YES;YES;NO;h;H;N;Y;Y;Y;Y;N;-;;;;;;;;;;;;;;;;;;;;;
814;pers_nliches;Pers_nliches;1;12.200.000;12.200.000;12;12;1;1;1;CVC;no_capital_letter;YES;YES;NO;p;P;Y;N;Y;N;Y;N;-;;;;;;;;;;;;;;;;;;;;;
815;seine;sein;1;363.000.000;588.000.000;5;4;5;1;1;CVVCV;omission;YES;NO;YES;e;-;N;N;N;N;N;N;-;;;;;;;;;;;;;;;;;;;;;
816;interessiert;inteessiert;1;34.100.000;3.16;12;11;5;3;3;CVC;omission;NO;NO;NO;r;-;N;N;N;N;N;N;double_consonant;;;;;;;;;;;;;;;;;;;;;
817;trifft;trefft;1;40.400.000;449;6;6;3;1;1;CCVC;substitution;YES;NO;NO;i;e;N;N;N;N;N;N;double_consonant;;;;;;;;;;;;;;;;;;;;;
818;treffen;trefen;1;76.600.000;101;7;6;4;1;1;CCVC;omission;NO;NO;NO;f;-;N;N;N;N;N;N;double_consonant;;;;;;;;;;;;;;;;;;;;;
819;ihm;ihn;1;167.000.000;195.000.000;3;3;3;1;1;VCC;substitution;YES;NO;YES;m;n;Y;Y;N;N;Y;Y;sound_sequence;;;;;;;;;;;;;;;;;;;;;
820;getrenntes;Getrenntes;1;385;385;10;10;1;1;1;CV;no_capital_letter;YES;YES;NO;g;G;N;N;Y;N;Y;N;-;;;;;;;;;;;;;;;;;;;;;
821;Ehepaar;Ehepahr;1;6.830.000;388;7;7;6;2;2;CVVC;substitution;NO;NO;NO;a;h;N;N;N;Y;Y;Y;false_lengthening;;;;;;;;;;;;;;;;;;;;;
822;einem;ein;2;784.000.000;1.570.000.000;5;3;-;-;-;-;multierror;YES;NO;YES;em;-;"N;Y";N;"N;N";N;"N;Y";N;-;;;;;;;;;;;;;;;;;;;;;
823;einem;eine;1;784.000.000;1.310.000.000;5;4;5;2;2;CV;omission;YES;NO;YES;m;-;Y;N;N;N;Y;N;-;;;;;;;;;;;;;;;;;;;;;
824;einem;einm;1;784.000.000;365;5;4;4;2;2;CV;omission;YES;NO;NO;e;-;N;N;N;N;N;N;-;;;;;;;;;;;;;;;;;;;;;
825;sa_en;sahsen;2;4.160.000;13.9;5;6;-;-;-;-;multierror;NO;NO;NO;_;"h;s";N;"N;N";N;"Y;N";N;"Y;N";__word;;;;;;;;;;;;;;;;;;;;;
826;sa_en;sah_en;1;4.160.000;1.63;5;6;3;-;-;-;addition;NO;NO;NO;-;h;N;N;N;Y;N;Y;false_lengthening;;;;;;;;;;;;;;;;;;;;;
827;sa_en;sasen;1;4.160.000;12.3;5;5;3;-;-;-;substitution;NO;NO;NO;_;s;N;N;N;N;N;N;__word;;;;;;;;;;;;;;;;;;;;;
828;Essen;essen;1;191.000.000;191.000.000;5;5;1;1;1;VC;capital_letter;YES;YES;NO;E;e;N;N;N;N;N;N;-;;;;;;;;;;;;;;;;;;;;;
829;Nachbartisch;nachbar Tisch;3;157;1.21;12;13;-;-;-;-;multierror;NO;YES;NO;"N;/;t";"n;_;T";"N;N;N";"Y;N;N";"N;N;N";"N;N;N";"N;N;N";"Y;N;N";-;;;;;;;;;;;;;;;;;;;;;
830;Nachbartisch;Nachbar Tisch;2;157;1.21;12;13;-;-;-;-;split_in;YES;NO;NO;/;_;N;N;N;N;N;N;-;;;;;;;;;;;;;;;;;;;;;
831;Nachbartisch;NachbarTisch;1;157;157;12;12;8;3;3;CVCCC;no_capital_letter;NO;NO;NO;t;T;N;N;N;N;N;N;-;;;;;;;;;;;;;;;;;;;;;
832;Nachbartisch;nachbartisch;1;157;157;12;12;1;1;1;CVCC;capital_letter;NO;YES;NO;N;n;N;Y;N;N;N;Y;-;;;;;;;;;;;;;;;;;;;;;
833;war;WAHR;1;907.000.000;25.100.000;3;4;3;1;1;CVC;addition;YES;NO;NO;-;h;N;N;N;Y;N;Y;false_lengthening;;;;;;;;;;;;;;;;;;;;;
834;hatten;haten;1;99.600.000;337;6;5;3;1;1;CVC;omission;NO;NO;NO;t;-;N;N;N;N;N;N;double_consonant;;;;;;;;;;;;;;;;;;;;;
835;antwortete;Antwortete;1;8.130.000;8.130.000;10;10;1;1;1;VCC;no_capital_letter;NO;YES;NO;a;A;N;N;N;N;Y;N;-;;;;;;;;;;;;;;;;;;;;;
836;fôr;fur;1;2.190.000.000;47.300.000;3;3;2;1;1;CVC;substitution;NO;NO;NO;ô;u;N;Y;N;N;N;Y;-;;;;;;;;;;;;;;;;;;;;;
837;fôr;fôhr;1;2.190.000.000;520;3;4;3;1;1;CVC;addition;NO;NO;NO;-;h;N;N;N;Y;N;Y;false_lengthening;;;;;;;;;;;;;;;;;;;;;
838;wollte;wolte;1;86.000.000;494;6;5;3;1;1;CVC;omission;NO;NO;NO;l;-;N;N;N;N;N;N;double_consonant;;;;;;;;;;;;;;;;;;;;;
839;dorthin;dort hin;1;7.480.000;565;7;8;-;-;-;-;split_in;YES;NO;NO;/;_;N;N;N;N;N;N;-;;;;;;;;;;;;;;;;;;;;;
840;seinem;sein;2;131.000.000;587.000.000;6;4;-;-;-;-;multierror;YES;NO;YES;"e;m";-;"N;Y";N;"N;N";N;"N;Y";N;-;;;;;;;;;;;;;;;;;;;;;
841;seinem;seine;1;131.000.000;363.000.000;6;5;6;2;2;VC;omission;YES;NO;YES;m;-;Y;N;N;N;Y;N;-;;;;;;;;;;;;;;;;;;;;;
842;seinem;seinm;1;131.000.000;27.7;6;5;5;2;2;VC;omission;YES;NO;NO;e;-;N;N;N;N;N;N;-;;;;;;;;;;;;;;;;;;;;;
843;seinem;seiem;1;131.000.000;16;6;5;4;1;1;CVVC;omission;NO;NO;NO;n;-;Y;N;N;N;Y;N;-;;;;;;;;;;;;;;;;;;;;;
844;zu tun;zutuhen;3;42.800.000;24.9;6;7;-;-;-;-;multierror;NO;NO;NO;_;"/;h;e";N;"N;N;N";N;"N;Y;N";N;"N;Y;N";-;;;;;;;;;;;;;;;;;;;;;
845;zu tun;zutun;1;42.800.000;917;6;5;-;-;-;-;split_in;NO;NO;NO;_;/;N;N;N;N;N;N;-;;;;;;;;;;;;;;;;;;;;;
846;zu tun;zu tuhn;1;42.800.000;37.7;6;7;6;-;-;-;addition;NO;NO;NO;-;h;N;N;N;Y;N;Y;-;;;;;;;;;;;;;;;;;;;;;
847;zu tun;zu tuen;1;42.800.000;190;6;7;6;-;-;-;addition;NO;NO;NO;-;e;N;N;N;N;N;N;-;;;;;;;;;;;;;;;;;;;;;
848;veranstaltet;feranstaltet;1;7.540.000;163;12;12;1;1;1;CVC;substitution;NO;YES;NO;v;f;Y;N;N;N;Y;N;-;;;;;;;;;;;;;;;;;;;;;
849;verschiedener;ferschiedener;1;20.000.000;213;13;13;1;1;1;CVC;substitution;NO;YES;NO;v;f;Y;N;N;N;Y;N;-;;;;;;;;;;;;;;;;;;;;;
850;verschiedene;ferschinde;4;96.400.000;6;12;10;-;-;-;-;multierror;NO;YES;NO;"v;e";f;"Y;N";N;"N;N";N;"Y;N";N;-;;;;;;;;;;;;;;;;;;;;;
851;verschiedene;ferschiedene;1;96.400.000;3.17;12;12;1;1;1;CVC;substitution;NO;YES;NO;v;f;Y;N;N;N;Y;N;-;;;;;;;;;;;;;;;;;;;;;
852;verschiedene;verschidene;1;96.400.000;163;12;11;8;2;2;CCCVV;omission;NO;NO;NO;e;-;N;N;N;N;N;N;lengthening;;;;;;;;;;;;;;;;;;;;;
853;verschiedene;verschiendene;1;96.400.000;41.2;12;13;9;2;2;CCCVV;addition;NO;NO;NO;-;n;N;Y;N;N;N;Y;-;;;;;;;;;;;;;;;;;;;;;
854;verschiedene;verschieden;1;96.400.000;12.200.000;12;11;12;-;-;-;omission;NO;NO;YES;e;-;N;N;N;N;N;N;-;;;;;;;;;;;;;;;;;;;;;
855;verschiedene;verschiedne;1;96.400.000;108;12;11;10;-;-;-;omission;NO;NO;NO;e;-;N;N;N;N;N;N;-;;;;;;;;;;;;;;;;;;;;;
856;Turnhalle;Tuhrnhale;2;6.990.000;1;9;9;-;-;-;-;multierror;NO;NO;NO;l;h;N;N;N;Y;N;Y;-;;;;;;;;;;;;;;;;;;;;;
857;Turnhalle;Tuhrnhalle;1;6.990.000;116;9;10;3;1;1;CVCC;addition;NO;NO;NO;-;h;N;N;N;Y;N;Y;double_consonant;;;;;;;;;;;;;;;;;;;;;
858;Turnhalle;Turnhale;1;6.990.000;860;9;8;7;2;2;CVC;omission;NO;NO;NO;l;-;N;N;N;N;N;N;-;;;;;;;;;;;;;;;;;;;;;
859;gr__eren;gro_eren;1;21.200.000;36.4;8;8;3;-;-;-;substitution;YES;NO;NO;_;o;N;N;N;N;Y;Y;sound_sequence;;;;;;;;;;;;;;;;;;;;;
860;Freude;freude;1;51.000.000;51.000.000;6;6;1;1;1;CCVV;capital_letter;NO;YES;NO;F;f;N;N;N;N;N;N;-;;;;;;;;;;;;;;;;;;;;;
861;schnellsten;Schnelsten;2;4.740.000;8.95;11;10;-;-;-;-;multierror;NO;YES;NO;"s;l";S;"N;N";N;"N;N";N;"N;N";N;-;;;;;;;;;;;;;;;;;;;;;
862;schnellsten;Schnellsten;1;4.740.000;4.740.000;11;11;1;1;1;CCCCVC;no_capital_letter;NO;YES;NO;s;S;N;N;N;N;N;N;-;;;;;;;;;;;;;;;;;;;;;
863;schnellsten;schnelsten;1;4.740.000;8.95;11;10;6;1;1;CCCCVC;omission;NO;NO;NO;l;-;N;N;N;N;N;N;double_consonant;;;;;;;;;;;;;;;;;;;;;
864;Hindernislauf;hinderniss Lauf;4;278;20.7;13;15;-;-;-;-;multierror;NO;YES;NO;"H;/;l";"h;s;_;L";"Y;N;N";"N;N;N;N";"Y;N;N";"Y;N;N;N";"N;N;N";"Y;N;N;N";-;;;;;;;;;;;;;;;;;;;;;
865;Hindernislauf;hindernislauf;1;278;278;13;13;1;1;1;CVC;capital_letter;NO;YES;NO;H;h;Y;N;Y;Y;N;Y;-;;;;;;;;;;;;;;;;;;;;;
866;Hindernislauf;Hindernisslauf;1;278;40.7;13;14;9;3;3;CVC;addition;NO;NO;NO;-;s;N;N;N;N;N;N;-;;;;;;;;;;;;;;;;;;;;;
867;Hindernislauf;Hindernis Lauf;2;278;457;13;14;-;-;-;-;split_in;NO;NO;NO;/;_;N;N;N;N;N;N;-;;;;;;;;;;;;;;;;;;;;;
868;Festes;festes;1;11.900.000;11.900.000;6;6;1;1;1;CVCCVC;capital_letter;YES;YES;NO;F;f;N;N;N;N;N;N;-;;;;;;;;;;;;;;;;;;;;;
869;Belohnung;Belonug;2;5.950.000;474;9;7;-;-;-;-;multierror;NO;NO;NO;h;-;N;N;Y;N;Y;N;-;;;;;;;;;;;;;;;;;;;;;
870;Belohnung;Belonung;1;5.950.000;22.3;9;8;5;2;2;CVCC;omission;NO;NO;NO;h;-;N;N;Y;N;Y;N;lengthening;;;;;;;;;;;;;;;;;;;;;
871;Belohnung;Belohnug;1;5.950.000;4.19;9;8;8;3;3;VCC;omission;NO;NO;NO;n;-;Y;N;N;N;Y;N;-;;;;;;;;;;;;;;;;;;;;;
872;vereinbaren;fereinbaren;1;16.600.000;1.59;11;11;1;1;1;CVC;substitution;NO;YES;NO;v;f;Y;N;N;N;Y;N;v_word;;;;;;;;;;;;;;;;;;;;;
873;sitzen;Sizen;2;36.300.000;30.7;6;5;-;-;-;-;multierror;NO;YES;NO;"s;t";S;"N;N";N;"N;N";N;"N;N";N;sound_sequence;;;;;;;;;;;;;;;;;;;;;
874;sitzen;Sitzen;1;36.300.000;36.300.000;6;6;1;1;1;CVC;no_capital_letter;NO;YES;NO;s;s;N;N;N;N;N;N;-;;;;;;;;;;;;;;;;;;;;;
875;sitzen;sizen;1;36.300.000;30.7;6;5;3;1;1;CVC;omission;NO;NO;NO;t;-;N;N;N;N;N;N;-;;;;;;;;;;;;;;;;;;;;;
876;diskutieren;diskotieren;1;20.000.000;3.29;11;11;5;2;2;CV;substitution;NO;NO;NO;u;o;Y;N;N;N;Y;Y;sound_sequence;;;;;;;;;;;;;;;;;;;;;
877;Mitschôler;mischôern;4;343;0;10;9;-;-;-;-;multierror;NO;YES;YES;"M;t;l;n";"m;n";"N;N;N;Y";"Y;Y";"N;N;N;N";"N;N";"N;N;N;Y";"Y;Y";-;;;;;;;;;;;;;;;;;;;;;
878;Mitschôler;mitschôler;1;343;343;10;10;1;1;1;CVC;capital_letter;NO;YES;NO;M;m;N;Y;N;N;N;Y;-;;;;;;;;;;;;;;;;;;;;;
879;Mitschôler;Mischôler;1;343;802;10;9;3;1;1;CVC;omission;NO;NO;NO;t;-;N;N;N;N;N;N;-;;;;;;;;;;;;;;;;;;;;;
880;Mitschôler;Mitschôer;1;343;29;10;9;8;3;3;CCCV;omission;NO;NO;NO;l;-;N;N;N;N;N;N;-;;;;;;;;;;;;;;;;;;;;;
881;Mitschôler;Mitschôlern;1;343;565;10;11;11;3;3;CCCV;omission;YES;NO;YES;-;n;N;Y;N;N;N;Y;-;;;;;;;;;;;;;;;;;;;;;
882;Schôler;schôler;1;61.300.000;61.300.000;7;7;1;1;1;CCCV;capital_letter;NO;YES;NO;S;s;N;N;N;N;N;N;-;;;;;;;;;;;;;;;;;;;;;
883;nach;Nach;1;132.000.000;132.000.000;4;4;1;1;1;CVCC;capital_letter;NO;YES;NO;N;n;N;Y;N;N;N;Y;-;;;;;;;;;;;;;;;;;;;;;
884;der Schule;derchule;2;142.000.000;54.7;10;8;-;-;-;-;multierror;NO;YES;NO;"_;S";/;"N;N";N;"N;N";N;"N;N";N;-;;;;;;;;;;;;;;;;;;;;;
885;der Schule;der schule;1;142.000.000;142.000.000;10;10;5;-;-;-;capital_letter;NO;NO;NO;S;s;N;N;N;N;N;N;-;;;;;;;;;;;;;;;;;;;;;
886;der Schule;derSchule;1;142.000.000;25.100.000;10;9;4;-;-;-;run-on;NO;NO;NO;_;/;N;N;N;N;N;N;-;;;;;;;;;;;;;;;;;;;;;
887;der Schule;der chule;1;142.000.000;142.000.000;10;9;5;-;-;-;omission;NO;YES;NO;S;s;N;N;N;N;N;N;-;;;;;;;;;;;;;;;;;;;;;
888;regelm__ig;regelmazig;2;65.300.000;27;10;10;-;-;-;-;multierror;NO;NO;NO;"_;_";"a;z";"N;N";"N;N";"N;N";"N;N";"Y;N";"Y;N";-;;;;;;;;;;;;;;;;;;;;;
889;regelm__ig;regelma_ig;1;65.300.000;211;10;10;7;3;3;CV;substitution;NO;NO;NO;_;a;N;N;N;N;Y;Y;sound_sequence;;;;;;;;;;;;;;;;;;;;;
890;regelm__ig;regelm_zig;1;65.300.000;650;10;10;8;3;3;CV;substitution;NO;NO;NO;_;z;N;N;N;N;N;N;sound_sequence;;;;;;;;;;;;;;;;;;;;;
891;Regeln;regeln;1;58.500.000;58.500.000;6;6;1;1;1;CV;capital_letter;NO;YES;NO;R;r;N;N;N;N;N;N;-;;;;;;;;;;;;;;;;;;;;;
892;Arbeitsmaterialien;arbeizmateriaien;4;566;0;18;16;-;-;-;-;multierror;NO;YES;NO;"A;t;s;l";"a;z";"N;N;N;N";"N;N";"N;N;N;N";"N;N";"N;N;N;N";"Y;N";-;;;;;;;;;;;;;;;;;;;;;
893;Arbeitsmaterialien;arbeitsmaterialien;1;566;566;18;18;1;1;1;VC;capital_letter;NO;YES;NO;A;a;N;N;N;N;N;Y;-;;;;;;;;;;;;;;;;;;;;;
894;Arbeitsmaterialien;Arbeismaterialien;1;566;407;18;17;6;2;2;CVVCC;omission;NO;NO;NO;t;-;N;N;N;N;N;N;-;;;;;;;;;;;;;;;;;;;;;
895;Arbeitsmaterialien;Arbeitzmaterialien;1;566;566;18;18;7;2;2;CVVCC;substitution;NO;NO;NO;s;z;N;N;N;N;N;N;sound_sequence;;;;;;;;;;;;;;;;;;;;;
896;Arbeitsmaterialien;Arbeitsmateriaien;1;566;35;18;17;15;6;6;VC;omission;NO;NO;NO;l;-;N;N;N;N;N;N;-;;;;;;;;;;;;;;;;;;;;;
897;umgeben;omgeben;1;12.300.000;4.79;7;7;1;1;1;VC;substitution;NO;YES;NO;u;o;Y;N;N;N;Y;Y;sound_sequence;;;;;;;;;;;;;;;;;;;;;
898;gab;gap;1;87.300.000;82.200.000;3;3;3;1;1;CVC;substitution;NO;NO;YES;b;p;Y;Y;Y;Y;Y;Y;derivation;;;;;;;;;;;;;;;;;;;;;
899;st_ren;storen;1;8.330.000;420;6;6;3;1;1;CCV;substitution;NO;NO;NO;_;o;N;N;N;N;Y;Y;sound_sequence;;;;;;;;;;;;;;;;;;;;;
900;nicht _rgern;nichagern;4;764;0;12;9;-;-;-;-;multierror;NO;YES;NO;"t;_;_;r";a;"N;N;N;N";N;"N;N;N;N";N;"N;N;Y;N";Y;-;;;;;;;;;;;;;;;;;;;;;
901;nicht _rgern;nicht_rgern;1;764;295;12;11;5;-;-;-;run-on;NO;NO;NO;_;/;N;N;N;N;N;N;-;;;;;;;;;;;;;;;;;;;;;
902;nicht _rgern;nich _rgern;1;764;298;12;11;5;-;-;-;omission;NO;NO;NO;t;-;N;N;N;N;N;N;-;;;;;;;;;;;;;;;;;;;;;
903;nicht _rgern;nicht _gern;1;764;224;12;11;8;-;-;-;omission;NO;NO;NO;r;-;N;N;N;N;N;N;-;;;;;;;;;;;;;;;;;;;;;
904;nicht _rgern;nicht argern;1;764;217;12;12;7;-;-;-;substitution;NO;YES;NO;_;a;N;N;N;N;Y;Y;-;;;;;;;;;;;;;;;;;;;;;
905;Unfall;Unffall;1;31.700.000;722;6;7;3;2;2;CVCC;addition;NO;NO;NO;-;f;N;N;N;N;N;N;-;;;;;;;;;;;;;;;;;;;;;
906;brach;Bruch;2;11.500.000;14.700.000;5;5;-;-;-;-;multierror;YES;YES;NO;"b;a";"B;u";"Y;N";"N;Y";"Y;N";"N;N";"Y;Y";"N;Y";-;;;;;;;;;;;;;;;;;;;;;
907;brach;Brach;1;11.500.000;11.500.000;5;5;1;1;1;CCVCC;no_capital_letter;NO;YES;NO;b;B;Y;N;Y;N;Y;N;-;;;;;;;;;;;;;;;;;;;;;
908;brach;bruch;1;11.500.000;14.700.000;5;5;3;1;1;CCVCC;substitution;NO;NO;NO;a;u;N;Y;N;N;Y;Y;sound_sequence;;;;;;;;;;;;;;;;;;;;;
909;Krankenwagen;krangenwagen;2;352;403;12;12;-;-;-;-;multierror;NO;YES;NO;"K;k";"K;g";"N;N";"N;N";"N;N";"N;Y";"N;N";"N;Y";-;;;;;;;;;;;;;;;;;;;;;
910;Krankenwagen;krankenwagen;1;352;352;12;12;1;1;1;CCVC;capital_letter;NO;YES;NO;K;k;N;N;N;N;N;N;-;;;;;;;;;;;;;;;;;;;;;
911;Krankenwagen;Krangenwagen;1;352;403;12;12;5;2;2;CVC;substitution;NO;NO;NO;k;g;N;N;N;Y;N;Y;sound_sequence;;;;;;;;;;;;;;;;;;;;;
912;Grundschule;Gundschule;1;26.100.000;15.2;11;10;2;1;1;CCVCC;omission;NO;NO;NO;r;-;N;N;N;N;N;N;-;;;;;;;;;;;;;;;;;;;;;
913;anderen;anderne;1;435.000.000;88.6;7;7;"6;7";-;-;-;transposition;NO;NO;YES;e-n;n-e;"N;N;Y";"Y;N;N";"N;N;N";"N;N;N";"N;N;Y";"Y;N;N";-;;;;;;;;;;;;;;;;;;;;;
914;Krôcken;Gorken;4;554;1.85;7;6;-;-;-;-;multierror;NO;YES;NO;"K;r;ô;c";"G;o;r";"N;N;N;N";"N;N;N";"N;N;N;N";"N;N;N";"N;N;N;N";"N;Y;N";-;;;;;;;;;;;;;;;;;;;;;
915;Krôcken;Grôcken;1;554;1.42;7;7;1;1;1;CCV;substitution;NO;YES;NO;K;G;N;N;N;N;N;N;-;;;;;;;;;;;;;;;;;;;;;
916;Krôcken;Kôcken;1;554;406;7;6;2;1;1;CCV;omission;NO;NO;NO;r;-;N;N;N;N;N;N;-;;;;;;;;;;;;;;;;;;;;;
917;Krôcken;Kôrcken;1;554;1.15;7;7;"2;3";-;-;-;transposition;NO;NO;NO;r-ô;ô-r;"N;N;N";"N;N;N";"N;N;N";"N;N;N";"N;N;N";"N;N;N";-;;;;;;;;;;;;;;;;;;;;;
918;Krôcken;Krocken;1;554;2.64;7;7;3;1;1;CCV;substitution;NO;NO;NO;ô;o;N;N;N;N;N;Y;-;;;;;;;;;;;;;;;;;;;;;
919;Krôcken;Krôken;1;554;7.45;7;6;4;2;2;CCVC;omission;NO;NO;NO;c;-;N;N;N;N;N;N;-;;;;;;;;;;;;;;;;;;;;;
920;Gro_britannien;Gro_birtannien;1;52.400.000;2;14;14;"6;7";2;-;-;transposition;NO;NO;NO;r-i;i-r;"N;N;N";"N;N;N";"N;N;N";"N;N;N";"N;N;N";"N;N;N";-;;;;;;;;;;;;;;;;;;;;;
921;Sprache;sprache;1;149.000.000;149.000.000;7;7;1;1;1;CCVC;capital_letter;NO;YES;NO;S;s;N;N;N;N;N;N;-;;;;;;;;;;;;;;;;;;;;;
922;sind;sient;2;1.180.000.000;20.6;4;5;-;-;-;-;multierror;NO;NO;YES;-;"e;t";N;"N;N";N;"N;N";N;"N;N";false_lengthening;;;;;;;;;;;;;;;;;;;;;
923;sind;siend;1;1.180.000.000;29.2;4;5;3;1;1;CVCC;addition;NO;NO;NO;-;e;N;N;N;N;N;N;-;;;;;;;;;;;;;;;;;;;;;
924;sind;sint;1;1.180.000.000;10.100.000;4;4;4;1;1;CVCC;substitution;NO;NO;YES;d;t;Y;N;Y;N;Y;N;-;;;;;;;;;;;;;;;;;;;;;
925;zum;zumom;2;1.430.000.000;552;3;5;-;-;-;-;multierror;NO;NO;YES;-;"o;m";N;"N;Y";N;"N;N";N;"Y;Y";-;;;;;;;;;;;;;;;;;;;;;
926;zum;zumo;1;1.430.000.000;379;3;4;4;1;1;CVC;addition;NO;NO;YES;-;o;N;N;N;N;N;Y;-;;;;;;;;;;;;;;;;;;;;;
927;zum;zumm;1;1.430.000.000;55.9;3;4;4;1;1;CVC;addition;NO;NO;YES;-;m;N;Y;N;N;N;Y;-;;;;;;;;;;;;;;;;;;;;;
928;Abschied;Arbschet;3;17.100.000;0;8;8;-;-;-;-;multierror;NO;NO;YES;"i;d";"r;t";"N;Y";"N;N";"N;Y";"N;N";"N;Y";"N;N";-;;;;;;;;;;;;;;;;;;;;;
929;Abschied;Arbschied;1;17.100.000;10;8;9;2;1;1;VC;addition;NO;NO;NO;-;r;N;N;N;N;N;N;-;;;;;;;;;;;;;;;;;;;;;
930;Abschied;Absched;1;17.100.000;828;8;7;6;2;2;CCCVVC;omission;NO;NO;NO;i;-;N;N;N;N;N;N;-;;;;;;;;;;;;;;;;;;;;;
931;Abschied;Abschiet;1;17.100.000;17.000.000;8;8;8;2;2;CCCVVC;substitution;NO;NO;YES;d;t;Y;N;Y;N;Y;N;derivation;;;;;;;;;;;;;;;;;;;;;
932;hier;hir;1;1.240.000.000;513;4;3;3;1;1;CVVC;omission;NO;NO;NO;e;-;N;N;N;N;N;N;lengthening;;;;;;;;;;;;;;;;;;;;;
933;Burgherrn;burgherrn;1;274;274;9;9;1;1;1;CVCC;capital_letter;NO;YES;NO;B;b;N;Y;N;Y;N;Y;-;;;;;;;;;;;;;;;;;;;;;
934;gef_hrlichen;gefarlichen;2;1.700.000;7.39;12;11;-;-;-;-;multierror;NO;NO;NO;"_;h;";a;"N;N";N;"N;Y";N;"Y;Y";Y;-;;;;;;;;;;;;;;;;;;;;;
935;gef_hrlichen;gefahrlichen;1;1.700.000;63.3;12;12;4;2;2;CVCC;substitution;NO;NO;NO;_;a;N;N;N;N;Y;Y;sound_sequence;;;;;;;;;;;;;;;;;;;;;
936;gef_hrlichen;gef_rlichen;1;1.700.000;8.2;12;11;5;2;2;CVCC;omission;NO;NO;NO;h;-;N;N;Y;N;Y;N;lengthening;;;;;;;;;;;;;;;;;;;;;
937;Weg;weg;1;347.000.000;347.000.000;3;3;1;1;1;CVC;capital_letter;YES;YES;NO;W;w;N;Y;N;N;N;Y;-;;;;;;;;;;;;;;;;;;;;;
938;verfallene;fervale;5;317;142;10;7;-;-;-;-;multierror;NO;YES;NO;"v;f;l;n;e";"f;v";"Y;N;N;Y;N";"N;Y";"N;N;N;N;N";"N;N";"Y;N;N;Y;N";"N;Y";-;;;;;;;;;;;;;;;;;;;;;
939;verfallene;ferfallene;1;317;50;10;10;1;1;1;CVC;substitution;NO;YES;NO;v;f;Y;N;N;N;Y;N;-;;;;;;;;;;;;;;;;;;;;;
940;verfallene;vervallene;1;317;221;10;10;4;2;2;CVCC;substitution;NO;NO;NO;f;v;N;Y;N;N;N;Y;-;;;;;;;;;;;;;;;;;;;;;
941;verfallene;verfalene;1;317;111;10;9;6;2;2;CVCC;omission;NO;NO;NO;l;-;N;N;N;N;N;N;-;;;;;;;;;;;;;;;;;;;;;
942;verfallene;verfallee;1;317;9;10;9;9;3;3;VCV;omission;NO;NO;NO;n;-;Y;N;N;N;Y;N;-;;;;;;;;;;;;;;;;;;;;;
943;verfallene;verfallen;1;317;4.810.000;10;9;11;3;3;VCV;omission;YES;NO;YES;e;-;N;N;N;N;N;N;-;;;;;;;;;;;;;;;;;;;;;
944;Zugbrôcke;zugbôrge;4;244;8;9;8;-;-;-;-;multierror;NO;YES;NO;"Z;r;c;k";"z;g";"N;N;N;N";"N;N";"N;N;N;N";"N;Y";"N;N;N;N";"N;Y";-;;;;;;;;;;;;;;;;;;;;;
945;Zugbrôcke;zugbrôcke;1;244;244;9;9;1;1;1;CVC;capital_letter;NO;YES;NO;Z;z;N;N;N;N;N;N;-;;;;;;;;;;;;;;;;;;;;;
946;Zugbrôcke;Zugbôrcke;1;244;40;9;9;"5;6";-;-;-;transposition;NO;NO;NO;r-ô;ô-r;"N;N;N";"N;N;N";"N;N;N";"N;N;N";"N;N;N";"N;N;N";-;;;;;;;;;;;;;;;;;;;;;
947;Zugbrôcke;Zugbrôgke;1;244;1;9;9;7;3;3;CCV;substitution;NO;NO;NO;c;g;N;N;N;Y;N;Y;sound_sequence;;;;;;;;;;;;;;;;;;;;;
948;Zugbrôcke;Zugbrôcge;1;244;8;9;9;8;3;3;CCV;substitution;NO;NO;NO;k;g;N;N;N;Y;N;Y;sound_sequence;;;;;;;;;;;;;;;;;;;;;
949;aufgeregt;aufgert;2;4.57;8.45;9;7;-;-;-;-;multierror;NO;NO;NO;"e;g";-;"N;N";N;"N;Y";N;"N;Y";N;-;;;;;;;;;;;;;;;;;;;;;
950;aufgeregt;aufgergt;1;4.57;2.26;9;8;7;3;3;CVCC;omission;NO;NO;NO;e;-;N;N;N;N;N;N;-;;;;;;;;;;;;;;;;;;;;;
951;aufgeregt;aufgeret;1;4.57;1.52;9;8;8;3;3;CVCC;omission;NO;NO;NO;g;-;N;N;Y;N;Y;N;-;;;;;;;;;;;;;;;;;;;;;
952;am;an;1;2.170.000.000;2.910.000.000;2;2;2;1;1;VC;substitution;YES;NO;YES;m;n;Y;Y;N;N;Y;Y;sound_sequence;;;;;;;;;;;;;;;;;;;;;
953;Abend;Arbent;2;74.100.000;4.89;5;6;-;-;-;-;multierror;NO;NO;YES;d;"r;t";Y;"N;N";Y;"N;N";Y;"N;N";-;;;;;;;;;;;;;;;;;;;;;
954;Abend;Arbend;1;74.100.000;10;5;6;2;1;1;CCVCC;addition;NO;NO;NO;-;r;N;N;N;N;N;N;sound_sequence;;;;;;;;;;;;;;;;;;;;;
955;Abend;Abent;1;74.100.000;132;5;5;6;1;1;CCVCC;substitution;NO;NO;YES;d;t;Y;N;Y;N;Y;N;derivation;;;;;;;;;;;;;;;;;;;;;
956;Erlebnis;erlemes;4;26.100.000;10;8;7;-;-;-;-;multierror;NO;YES;YES;"E;b;i";"e;m;e";"N;Y;N";"N;Y;N";"N;Y;N";"N;N;N";"N;Y;N";"N;Y;N";-;;;;;;;;;;;;;;;;;;;;;
957;Erlebnis;erlebnis;1;26.100.000;26.100.000;8;8;1;1;1;VC;capital_letter;NO;YES;NO;E;e;N;N;N;N;N;N;-;;;;;;;;;;;;;;;;;;;;;
958;Erlebnis;Erlenis;1;26.100.000;5.42;8;7;5;2;2;CVC;omission;NO;NO;NO;b;-;Y;N;Y;N;Y;N;-;;;;;;;;;;;;;;;;;;;;;
959;Erlebnis;Erlebmis;1;26.100.000;1.42;8;8;6;3;3;CVC;substitution;NO;NO;NO;n;m;Y;Y;N;N;Y;Y;-;;;;;;;;;;;;;;;;;;;;;
960;ausgew_hlt;ausgew_lt;1;46.800.000;13.6;10;9;8;3;3;CVCCC;omission;NO;NO;NO;h;-;N;N;Y;N;Y;N;lengthening;;;;;;;;;;;;;;;;;;;;;
961;werden;wer den;1;1.090.000.000;1.160.000.000;6;7;-;-;-;-;split_in;YES;NO;NO;/;_;N;N;N;N;N;N;-;;;;;;;;;;;;;;;;;;;;;
962;an einer;aneiner;1;869.000.000;46.000.000;8;7;-;-;-;-;run-on;NO;NO;NO;_;/;N;N;N;N;N;N;-;;;;;;;;;;;;;;;;;;;;;
963;vorher;vor her;1;62.600.000;84.300.000;6;7;-;-;-;-;split_in;YES;NO;NO;/;_;N;N;N;N;N;N;-;;;;;;;;;;;;;;;;;;;;;
964;darôber;dar rôber;2;109.000.000;327;7;9;-;-;-;-;multierror;NO;NO;NO;/;_;N;N;N;N;N;N;-;;;;;;;;;;;;;;;;;;;;;
965;darôber;da rôber;1;109.000.000;1.040.000;7;8;-;-;-;-;split_in;NO;NO;NO;/;_;N;N;N;N;N;N;-;;;;;;;;;;;;;;;;;;;;;
966;darôber;darrôber;1;109.000.000;8.46;7;8;3;2;2;CVCVC;addition;NO;NO;NO;-;r;N;N;N;N;N;N;-;;;;;;;;;;;;;;;;;;;;;
967;abgestimmt;apgestômt;3;12.100.000;1;10;9;-;-;-;-;multierror;NO;NO;NO;"b;i;m";"p;i";"Y;N;Y";"Y;N";"Y;N;N";"Y;N";"Y;N;Y";"Y;N";-;;;;;;;;;;;;;;;;;;;;;
968;abgestimmt;apgestimmt;1;12.100.000;430;10;10;2;1;1;VC;substitution;NO;NO;NO;b;p;Y;Y;Y;Y;Y;Y;-;;;;;;;;;;;;;;;;;;;;;
969;abgestimmt;abgestômmt;1;12.100.000;440;10;10;7;3;3;CCVC;substitution;NO;NO;NO;i;ô;N;N;N;N;N;N;sound_sequence;;;;;;;;;;;;;;;;;;;;;
970;abgestimmt;abgestimt;1;12.100.000;5.52;10;9;8;3;3;CCVC;omission;NO;NO;NO;m;-;Y;N;N;N;Y;N;double_consonant;;;;;;;;;;;;;;;;;;;;;
971;Tischtennisplatten;Tischtinnisplaten;2;268;0;18;17;-;-;-;-;multierror;NO;NO;NO;"e;t";i;"N;N";N;"N;N";N;"N;N";N;-;;;;;;;;;;;;;;;;;;;;;
972;Tischtennisplatten;Tischtinnisplatten;1;268;2;18;18;7;2;2;CVC;substitution;NO;NO;NO;e;i;N;N;N;N;N;N;sound_sequence;;;;;;;;;;;;;;;;;;;;;
973;Tischtennisplatten;Tischtennisplaten;1;268;243;18;17;14;4;4;CCVC;omission;NO;NO;NO;t;-;N;N;N;N;N;N;double_consonant;;;;;;;;;;;;;;;;;;;;;
974;aufgebaut;auf gegebaut;3;17.900.000;3.16;9;12;-;-;-;-;multierror;NO;NO;NO;/;"_;g;e";N;"N;N;N";N;"N;Y;N";N;"N;Y;N";-;;;;;;;;;;;;;;;;;;;;;
975;aufgebaut;auf gebaut;1;17.900.000;33.000.000;9;10;-;-;-;-;split_in;NO;NO;NO;/;_;N;N;N;N;N;N;-;;;;;;;;;;;;;;;;;;;;;
976;aufgebaut;aufgegbaut;1;17.900.000;12.6;9;10;6;2;2;CV;addition;NO;NO;NO;-;g;N;N;N;Y;N;Y;-;;;;;;;;;;;;;;;;;;;;;
977;aufgebaut;aufgeebaut;1;17.900.000;374;9;10;5;2;2;CV;addition;NO;NO;NO;-;e;N;N;N;N;N;N;-;;;;;;;;;;;;;;;;;;;;;
978;Rasen;rasen;1;16.000.000;16.000.000;5;5;1;1;1;CVCVC;capital_letter;NO;YES;NO;R;r;N;N;N;N;N;N;-;;;;;;;;;;;;;;;;;;;;;
979;aufgestellt;auf gestllt;2;12.500.000;8.39;11;11;-;-;-;-;multierror;NO;NO;NO;"/;e";_;"N;N";N;"N;N";N;"N;N";N;-;;;;;;;;;;;;;;;;;;;;;
980;aufgestellt;auf gestellt;1;12.500.000;7.700.000;11;12;-;-;-;-;split_in;NO;NO;NO;/;_;N;N;N;N;N;N;-;;;;;;;;;;;;;;;;;;;;;
981;aufgestellt;aufgestllt;1;12.500.000;2.16;11;10;8;3;3;CCVC;omission;NO;NO;NO;e;-;N;N;N;N;N;N;-;;;;;;;;;;;;;;;;;;;;;
982;mehrere;mehre;2;126.000.000;483;7;5;-;-;-;-;multierror;NO;NO;YES;-;-;N;N;N;N;N;N;-;;;;;;;;;;;;;;;;;;;;;
983;mehrere;mehrer;1;126.000.000;458;7;6;7;-;-;-;omission;NO;NO;NO;e;-;N;N;N;N;N;N;-;;;;;;;;;;;;;;;;;;;;;
984;mehrere;mehree;1;126.000.000;8.66;7;6;6;-;-;-;omission;NO;NO;YES;r;-;N;N;N;N;N;N;-;;;;;;;;;;;;;;;;;;;;;
985;ôberall;ôber al;2;68.300.000;88.300.000;7;7;-;-;-;-;multierror;NO;NO;YES;"/;l";_;"N;N";N;"N;N";N;"N;N";N;-;;;;;;;;;;;;;;;;;;;;;
986;ôberall;ôber all;1;68.300.000;342.000.000;7;8;-;-;-;-;split_in;NO;NO;NO;/;_;N;N;N;N;N;N;-;;;;;;;;;;;;;;;;;;;;;
987;ôberall;ôberal;1;68.300.000;162;7;6;6;2;2;VCC;omission;NO;NO;YES;l;-;N;N;N;N;N;N;double_consonant;;;;;;;;;;;;;;;;;;;;;
988;verteilen;ver teilen;1;13.800.000;50.300.000;9;10;-;-;-;-;split_in;NO;NO;NO;/;_;N;N;N;N;N;N;-;;;;;;;;;;;;;;;;;;;;;
989;bekam;begam;1;25.200.000;13.2;5;5;3;2;2;CVC;substitution;NO;NO;NO;k;g;N;N;N;Y;N;Y;sound_sequence;;;;;;;;;;;;;;;;;;;;;
990;einige;einegen;2;191.000.000;55.2;6;7;-;-;-;-;multierror;NO;NO;YES;"i;n";"e;n";"N;Y";"N;Y";"N;N";"N;N";"N;Y";"N;Y";-;;;;;;;;;;;;;;;;;;;;;
991;einige;einege;1;191.000.000;534;6;6;4;-;-;-;substitution;NO;NO;NO;i;e;N;N;N;N;N;N;-;;;;;;;;;;;;;;;;;;;;;
992;einige;einigen;1;191.000.000;71.700.000;6;7;7;-;-;-;addition;YES;NO;YES;-;n;N;Y;N;N;N;Y;-;;;;;;;;;;;;;;;;;;;;;
993;endet;endtet;1;27.900.000;1.08;5;6;4;-;-;-;addition;NO;NO;NO;-;t;N;N;N;N;N;N;-;;;;;;;;;;;;;;;;;;;;;
994;Pokale;Polkalen;2;422;58;6;8;-;-;-;-;multierror;NO;NO;NO;-;"l;n";N;"N;Y";N;"N;N";N;"N;Y";-;;;;;;;;;;;;;;;;;;;;;
995;Pokale;Polkale;1;422;471;6;7;3;1;1;CV;addition;NO;NO;NO;-;l;N;N;N;N;N;N;-;;;;;;;;;;;;;;;;;;;;;
996;Pokale;Pokalen;1;422;232;6;7;7;2;2;CVCV;addition;YES;NO;YES;-;n;N;Y;N;N;N;Y;-;;;;;;;;;;;;;;;;;;;;;
997;Stra_enbahn;Strassenbahn;2;6.970.000;407;11;12;-;-;-;-;multierror;NO;NO;NO;_;"s;s";N;"N;N";N;"N;N";N;"N;N";-;;;;;;;;;;;;;;;;;;;;;
998;Stra_enbahn;Stras_enbahn;1;6.970.000;282;11;12;5;2;2;CVC;addition;NO;NO;NO;-;s;N;N;N;N;N;N;sound_sequence;;;;;;;;;;;;;;;;;;;;;
999;Stra_enbahn;Stra_senbahn;1;6.970.000;224;11;12;6;2;2;CVC;addition;NO;NO;NO;-;s;N;N;N;N;N;N;sound_sequence;;;;;;;;;;;;;;;;;;;;;